dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Heiko Carstens 2010-05-17 10:00:13 +02:00 committed by Martin Schwidefsky
parent 10d3858950
commit 6ea5096827
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}