Commit b9fa0365 authored by Khalid Aziz's avatar Khalid Aziz Committed by David S. Miller

sparc64: Update signal delivery to use new helper functions

Commit f8ec6601 ("signal: Add send_sig_fault and force_sig_fault")
added new helper functions to streamline signal delivery. This patch
updates signal delivery for new/updated handlers for ADI related
exceptions to use the helper function.
Signed-off-by: default avatarKhalid Aziz <khalid.aziz@oracle.com>
Cc: Khalid Aziz <khalid@gonehiking.org>
Acked-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 74a04967
...@@ -362,7 +362,6 @@ void sun4v_data_access_exception(struct pt_regs *regs, unsigned long addr, unsig ...@@ -362,7 +362,6 @@ void sun4v_data_access_exception(struct pt_regs *regs, unsigned long addr, unsig
{ {
unsigned short type = (type_ctx >> 16); unsigned short type = (type_ctx >> 16);
unsigned short ctx = (type_ctx & 0xffff); unsigned short ctx = (type_ctx & 0xffff);
siginfo_t info;
if (notify_die(DIE_TRAP, "data access exception", regs, if (notify_die(DIE_TRAP, "data access exception", regs,
0, 0x8, SIGTRAP) == NOTIFY_STOP) 0, 0x8, SIGTRAP) == NOTIFY_STOP)
...@@ -406,24 +405,18 @@ void sun4v_data_access_exception(struct pt_regs *regs, unsigned long addr, unsig ...@@ -406,24 +405,18 @@ void sun4v_data_access_exception(struct pt_regs *regs, unsigned long addr, unsig
* kerbel by HV as data access exception with fault type set to * kerbel by HV as data access exception with fault type set to
* HV_FAULT_TYPE_INV_ASI. * HV_FAULT_TYPE_INV_ASI.
*/ */
info.si_errno = 0;
info.si_addr = (void __user *) addr;
info.si_trapno = 0;
switch (type) { switch (type) {
case HV_FAULT_TYPE_INV_ASI: case HV_FAULT_TYPE_INV_ASI:
info.si_signo = SIGILL; force_sig_fault(SIGILL, ILL_ILLADR, (void __user *)addr, 0,
info.si_code = ILL_ILLADR; current);
force_sig_info(SIGILL, &info, current);
break; break;
case HV_FAULT_TYPE_MCD_DIS: case HV_FAULT_TYPE_MCD_DIS:
info.si_signo = SIGSEGV; force_sig_fault(SIGSEGV, SEGV_ACCADI, (void __user *)addr, 0,
info.si_code = SEGV_ACCADI; current);
force_sig_info(SIGSEGV, &info, current);
break; break;
default: default:
info.si_signo = SIGSEGV; force_sig_fault(SIGSEGV, SEGV_MAPERR, (void __user *)addr, 0,
info.si_code = SEGV_MAPERR; current);
force_sig_info(SIGSEGV, &info, current);
break; break;
} }
} }
...@@ -2073,8 +2066,6 @@ static void sun4v_log_error(struct pt_regs *regs, struct sun4v_error_entry *ent, ...@@ -2073,8 +2066,6 @@ static void sun4v_log_error(struct pt_regs *regs, struct sun4v_error_entry *ent,
*/ */
void do_mcd_err(struct pt_regs *regs, struct sun4v_error_entry ent) void do_mcd_err(struct pt_regs *regs, struct sun4v_error_entry ent)
{ {
siginfo_t info;
if (notify_die(DIE_TRAP, "MCD error", regs, 0, 0x34, if (notify_die(DIE_TRAP, "MCD error", regs, 0, 0x34,
SIGSEGV) == NOTIFY_STOP) SIGSEGV) == NOTIFY_STOP)
return; return;
...@@ -2110,12 +2101,8 @@ void do_mcd_err(struct pt_regs *regs, struct sun4v_error_entry ent) ...@@ -2110,12 +2101,8 @@ void do_mcd_err(struct pt_regs *regs, struct sun4v_error_entry ent)
/* Send SIGSEGV to the userspace process with the right signal /* Send SIGSEGV to the userspace process with the right signal
* code * code
*/ */
info.si_signo = SIGSEGV; force_sig_fault(SIGSEGV, SEGV_ADIDERR, (void __user *)ent.err_raddr,
info.si_errno = 0; 0, current);
info.si_code = SEGV_ADIDERR;
info.si_addr = (void __user *)ent.err_raddr;
info.si_trapno = 0;
force_sig_info(SIGSEGV, &info, current);
} }
/* We run with %pil set to PIL_NORMAL_MAX and PSTATE_IE enabled in %pstate. /* We run with %pil set to PIL_NORMAL_MAX and PSTATE_IE enabled in %pstate.
...@@ -2748,8 +2735,6 @@ void sun4v_do_mna(struct pt_regs *regs, unsigned long addr, unsigned long type_c ...@@ -2748,8 +2735,6 @@ void sun4v_do_mna(struct pt_regs *regs, unsigned long addr, unsigned long type_c
void sun4v_mem_corrupt_detect_precise(struct pt_regs *regs, unsigned long addr, void sun4v_mem_corrupt_detect_precise(struct pt_regs *regs, unsigned long addr,
unsigned long context) unsigned long context)
{ {
siginfo_t info;
if (notify_die(DIE_TRAP, "memory corruption precise exception", regs, if (notify_die(DIE_TRAP, "memory corruption precise exception", regs,
0, 0x8, SIGSEGV) == NOTIFY_STOP) 0, 0x8, SIGSEGV) == NOTIFY_STOP)
return; return;
...@@ -2784,12 +2769,7 @@ void sun4v_mem_corrupt_detect_precise(struct pt_regs *regs, unsigned long addr, ...@@ -2784,12 +2769,7 @@ void sun4v_mem_corrupt_detect_precise(struct pt_regs *regs, unsigned long addr,
regs->tpc &= 0xffffffff; regs->tpc &= 0xffffffff;
regs->tnpc &= 0xffffffff; regs->tnpc &= 0xffffffff;
} }
info.si_signo = SIGSEGV; force_sig_fault(SIGSEGV, SEGV_ADIPERR, (void __user *)addr, 0, current);
info.si_code = SEGV_ADIPERR;
info.si_errno = 0;
info.si_addr = (void __user *) addr;
info.si_trapno = 0;
force_sig_info(SIGSEGV, &info, current);
} }
void do_privop(struct pt_regs *regs) void do_privop(struct pt_regs *regs)
......
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