Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
0dfb8ec7
Commit
0dfb8ec7
authored
Oct 13, 2014
by
Vineet Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARC: rename unhandled exception handler
Signed-off-by:
Vineet Gupta
<
vgupta@synopsys.com
>
parent
dc9e234f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
arch/arc/kernel/traps.c
arch/arc/kernel/traps.c
+2
-2
No files found.
arch/arc/kernel/traps.c
View file @
0dfb8ec7
...
...
@@ -42,7 +42,7 @@ void die(const char *str, struct pt_regs *regs, unsigned long address)
* -for kernel, chk if due to copy_(to|from)_user, otherwise die()
*/
static
noinline
int
handle
_exception
(
const
char
*
str
,
struct
pt_regs
*
regs
,
siginfo_t
*
info
)
unhandled
_exception
(
const
char
*
str
,
struct
pt_regs
*
regs
,
siginfo_t
*
info
)
{
if
(
user_mode
(
regs
))
{
struct
task_struct
*
tsk
=
current
;
...
...
@@ -71,7 +71,7 @@ int name(unsigned long address, struct pt_regs *regs) \
.si_code = sicode, \
.si_addr = (void __user *)address, \
}; \
return
handle
_exception(str, regs, &info);\
return
unhandled
_exception(str, regs, &info);\
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment