vm: add VM_FAULT_SIGSEGV handling support
[pandora-kernel.git] / arch / xtensa / mm / fault.c
index e367e30..4439a1d 100644 (file)
@@ -109,6 +109,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();