vm: add VM_FAULT_SIGSEGV handling support
[pandora-kernel.git] / arch / avr32 / mm / fault.c
index f7040a1..632b649 100644 (file)
@@ -136,6 +136,8 @@ good_area:
        if (unlikely(fault & VM_FAULT_ERROR)) {
                if (fault & VM_FAULT_OOM)
                        goto out_of_memory;
+               else if (fault & VM_FAULT_SIGSEGV)
+                       goto bad_area;
                else if (fault & VM_FAULT_SIGBUS)
                        goto do_sigbus;
                BUG();