Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Guenter Roeck and committed by
Linus Torvalds
e262eb93 1c999c47

+1 -1
+1 -1
arch/arc/mm/fault.c
··· 161 161 162 162 if (fault & VM_FAULT_OOM) 163 163 goto out_of_memory; 164 - else if (fault & VM_FAULT_SIGSEV) 164 + else if (fault & VM_FAULT_SIGSEGV) 165 165 goto bad_area; 166 166 else if (fault & VM_FAULT_SIGBUS) 167 167 goto do_sigbus;