diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-01-29 19:15:33 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-04-29 10:31:57 +0200 |
commit | 9c5a2098af7e79b7a26947ace94fcf6b23b85950 (patch) | |
tree | 6b914772e819556faf0ec9dc238fb7ed287da1e5 | |
parent | 3b09542675a042106bd31a84b7c86b181751d029 (diff) |
arc: mm: Fix build failure
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>
-rw-r--r-- | arch/arc/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/mm/fault.c b/arch/arc/mm/fault.c index 15879a1f864c..01e18b58dfa4 100644 --- a/arch/arc/mm/fault.c +++ b/arch/arc/mm/fault.c @@ -162,7 +162,7 @@ good_area: /* 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_SIGSEGV) goto bad_area; else if (fault & VM_FAULT_SIGBUS) goto do_sigbus; |