OSDN Git Service

arc: mm: Fix build failure
authorGuenter Roeck <linux@roeck-us.net>
Fri, 30 Jan 2015 03:15:33 +0000 (19:15 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 30 Jan 2015 18:31:14 +0000 (10:31 -0800)
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>
arch/arc/mm/fault.c

index 0f8df3b..563cb27 100644 (file)
@@ -161,7 +161,7 @@ good_area:
 
        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;