diff options
Diffstat (limited to 'arch/arm/mm/fault.c')
| -rw-r--r-- | arch/arm/mm/fault.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c index 5bdff5c3e6c..9055b5a84ec 100644 --- a/arch/arm/mm/fault.c +++ b/arch/arm/mm/fault.c @@ -165,7 +165,8 @@ __do_user_fault(struct task_struct *tsk, unsigned long addr,  	struct siginfo si;  #ifdef CONFIG_DEBUG_USER -	if (user_debug & UDBG_SEGV) { +	if (((user_debug & UDBG_SEGV) && (sig == SIGSEGV)) || +	    ((user_debug & UDBG_BUS)  && (sig == SIGBUS))) {  		printk(KERN_DEBUG "%s: unhandled page fault (%d) at 0x%08lx, code 0x%03x\n",  		       tsk->comm, sig, addr, fsr);  		show_pte(tsk->mm, addr);  |