diff options
Diffstat (limited to 'arch/mips/mm/fault.c')
| -rw-r--r-- | arch/mips/mm/fault.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/arch/mips/mm/fault.c b/arch/mips/mm/fault.c index becc42bb1849..70ab5d664332 100644 --- a/arch/mips/mm/fault.c +++ b/arch/mips/mm/fault.c @@ -158,6 +158,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(); |