Commit 6ea50968 authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky

[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: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 10d38589
...@@ -390,8 +390,8 @@ static void default_trap_handler(struct pt_regs * regs, long interruption_code) ...@@ -390,8 +390,8 @@ static void default_trap_handler(struct pt_regs * regs, long interruption_code)
{ {
if (regs->psw.mask & PSW_MASK_PSTATE) { if (regs->psw.mask & PSW_MASK_PSTATE) {
local_irq_enable(); local_irq_enable();
do_exit(SIGSEGV);
report_user_fault(interruption_code, regs); report_user_fault(interruption_code, regs);
do_exit(SIGSEGV);
} else } else
die("Unknown program exception", regs, interruption_code); die("Unknown program exception", regs, interruption_code);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment