signal: Explicitly call force_sig_fault on current
Update the calls of force_sig_fault that pass in a variable that is set to current earlier to explicitly use current. This is to make the next change that removes the task parameter from force_sig_fault easier to verify. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Esse commit está contido em:
@@ -560,7 +560,7 @@ static int ieee_fpe_handler(struct pt_regs *regs)
|
||||
task_thread_info(tsk)->status |= TS_USEDFPU;
|
||||
} else {
|
||||
force_sig_fault(SIGFPE, FPE_FLTINV,
|
||||
(void __user *)regs->pc, tsk);
|
||||
(void __user *)regs->pc, current);
|
||||
}
|
||||
|
||||
regs->pc = nextpc;
|
||||
|
Referência em uma nova issue
Block a user