aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2010-05-17 10:00:13 +0200
committerMartin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com>2010-05-17 10:00:16 +0200
commit6ea50968274673ea7b58695efec2eeb55ca2f5dd (patch)
tree3b9127cc6fea6c940633c5c82af1fed72633c046 /arch/s390
parent[S390] topology: expose core identifier (diff)
downloadlinux-dev-6ea50968274673ea7b58695efec2eeb55ca2f5dd.tar.xz
linux-dev-6ea50968274673ea7b58695efec2eeb55ca2f5dd.zip
[S390] user space fault: report fault before calling do_exit
Report user space faults before calling do_exit, since do_exit does not return and therefore we will never see the fault message on the console. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/kernel/traps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/traps.c b/arch/s390/kernel/traps.c
index 6e7ad63854c0..e605f070610c 100644
--- a/arch/s390/kernel/traps.c
+++ b/arch/s390/kernel/traps.c
@@ -390,8 +390,8 @@ static void default_trap_handler(struct pt_regs * regs, long interruption_code)
{
if (regs->psw.mask & PSW_MASK_PSTATE) {
local_irq_enable();
- do_exit(SIGSEGV);
report_user_fault(interruption_code, regs);
+ do_exit(SIGSEGV);
} else
die("Unknown program exception", regs, interruption_code);
}