projects
/
wrapfs-5.10.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b09542
)
arc: mm: Fix build failure
author
Guenter Roeck
<linux@roeck-us.net>
Fri, 30 Jan 2015 03:15:33 +0000
(19:15 -0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 29 Apr 2015 08:31:57 +0000
(10:31 +0200)
commit
e262eb9381ad51b5de7a9e762ee773bbd25ce650
upstream.
Fix misspelled define.
Fixes: 33692f27597f ("vm: add VM_FAULT_SIGSEGV handling support")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arc/mm/fault.c
patch
|
blob
|
history
diff --git
a/arch/arc/mm/fault.c
b/arch/arc/mm/fault.c
index 15879a1f864cca5b9249370cb22917aac792636a..01e18b58dfa4cce7f3f79a22bbbf8512d0b7f2fa 100644
(file)
--- a/
arch/arc/mm/fault.c
+++ b/
arch/arc/mm/fault.c
@@
-162,7
+162,7
@@
void do_page_fault(unsigned long address, struct pt_regs *regs)
/* TBD: switch to pagefault_out_of_memory() */
if (fault & VM_FAULT_OOM)
goto out_of_memory;
- else if (fault & VM_FAULT_SIGSEV)
+ else if (fault & VM_FAULT_SIGSE
G
V)
goto bad_area;
else if (fault & VM_FAULT_SIGBUS)
goto do_sigbus;