mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
nios2: fix unhandled signals
Follow other architectures for user fault handling. Signed-off-by: Chung-Ling Tang <cltang@codesourcery.com> Acked-by: Ley Foon Tan <lftan@altera.com>
This commit is contained in:
parent
e36f014edf
commit
a3248d609b
@ -159,9 +159,11 @@ bad_area:
|
||||
bad_area_nosemaphore:
|
||||
/* User mode accesses just cause a SIGSEGV */
|
||||
if (user_mode(regs)) {
|
||||
pr_alert("%s: unhandled page fault (%d) at 0x%08lx, "
|
||||
"cause %ld\n", current->comm, SIGSEGV, address, cause);
|
||||
show_regs(regs);
|
||||
if (unhandled_signal(current, SIGSEGV) && printk_ratelimit()) {
|
||||
pr_info("%s: unhandled page fault (%d) at 0x%08lx, "
|
||||
"cause %ld\n", current->comm, SIGSEGV, address, cause);
|
||||
show_regs(regs);
|
||||
}
|
||||
_exception(SIGSEGV, regs, code, address);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user