[PATCH] ix86: log unhandled signals from do_trap() just like x86-64 does

From: Jan Beulich
Date: Fri Jan 23 2015 - 03:14:10 EST


There not being a similar difference in page fault handling, I can't
see why 32- and 64-bit should differ in behavior here.

Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
---
arch/x86/kernel/traps.c | 2 --
1 file changed, 2 deletions(-)

--- 3.19-rc5/arch/x86/kernel/traps.c
+++ 3.19-rc5-ix86-show-unhandled-signals/arch/x86/kernel/traps.c
@@ -190,7 +190,6 @@ do_trap(int trapnr, int signr, char *str
tsk->thread.error_code = error_code;
tsk->thread.trap_nr = trapnr;

-#ifdef CONFIG_X86_64
if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
printk_ratelimit()) {
pr_info("%s[%d] trap %s ip:%lx sp:%lx error:%lx",
@@ -199,7 +198,6 @@ do_trap(int trapnr, int signr, char *str
print_vma_addr(" in ", regs->ip);
pr_cont("\n");
}
-#endif

force_sig_info(signr, info ?: SEND_SIG_PRIV, tsk);
}



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/