From: Heiko Carstens Date: Tue, 27 Dec 2011 10:27:31 +0000 (+0100) Subject: [S390] Enable exception traces by default X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=02834eece0786b6e9c77029f0bfb597052a2e86f;p=linux-beck.git [S390] Enable exception traces by default Enable exception traces by default so that early user space breakage (e.g. broken code in initrd) can be easily indentified. If not needed afterwards it can be disabled by writing '0' in one of these two files: /proc/sys/kernel/userprocess_debug /proc/sys/debug/exception-trace Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/arch/s390/kernel/traps.c b/arch/s390/kernel/traps.c index dc6cc1b0ae66..5ce3750b181f 100644 --- a/arch/s390/kernel/traps.c +++ b/arch/s390/kernel/traps.c @@ -45,7 +45,7 @@ void (*pgm_check_table[128])(struct pt_regs *regs); -int show_unhandled_signals; +int show_unhandled_signals = 1; #define stack_pointer ({ void **sp; asm("la %0,0(15)" : "=&d" (sp)); sp; })