diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-01-29 22:15:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-01-30 13:31:14 -0500 |
commit | e262eb9381ad51b5de7a9e762ee773bbd25ce650 (patch) | |
tree | 7ecab619cee0bb01f324a342627a024002bcfa93 /arch/arc | |
parent | 1c999c47a9f1772e6d53028b6bf965c6ddb743bd (diff) |
arc: mm: Fix build failure
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>
Diffstat (limited to 'arch/arc')
-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 0f8df3b5b1b3..563cb27e37f5 100644 --- a/arch/arc/mm/fault.c +++ b/arch/arc/mm/fault.c | |||
@@ -161,7 +161,7 @@ good_area: | |||
161 | 161 | ||
162 | if (fault & VM_FAULT_OOM) | 162 | if (fault & VM_FAULT_OOM) |
163 | goto out_of_memory; | 163 | goto out_of_memory; |
164 | else if (fault & VM_FAULT_SIGSEV) | 164 | else if (fault & VM_FAULT_SIGSEGV) |
165 | goto bad_area; | 165 | goto bad_area; |
166 | else if (fault & VM_FAULT_SIGBUS) | 166 | else if (fault & VM_FAULT_SIGBUS) |
167 | goto do_sigbus; | 167 | goto do_sigbus; |