projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc9e234
)
ARC: rename unhandled exception handler
author
Vineet Gupta
<vgupta@synopsys.com>
Mon, 13 Oct 2014 09:59:50 +0000
(15:29 +0530)
committer
Vineet Gupta
<vgupta@synopsys.com>
Mon, 13 Apr 2015 09:44:57 +0000
(15:14 +0530)
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
arch/arc/kernel/traps.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arc/kernel/traps.c
b/arch/arc/kernel/traps.c
index 3eadfdabc32295008aa899d74dab4057173ea19e..c927aa84e652e0ac80d37a632c60e1c0201b6d0d 100644
(file)
--- a/
arch/arc/kernel/traps.c
+++ b/
arch/arc/kernel/traps.c
@@
-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);\
}
/*