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>
This commit is contained in:
Eric W. Biederman
2019-02-07 09:25:08 -06:00
parent ec74e9205e
commit 351b6825b3
14 changed files with 21 additions and 21 deletions

View File

@@ -124,7 +124,7 @@ static void __do_user_fault(unsigned long addr, unsigned int fsr,
tsk->thread.address = addr;
tsk->thread.error_code = fsr;
tsk->thread.trap_no = 14;
force_sig_fault(sig, code, (void __user *)addr, tsk);
force_sig_fault(sig, code, (void __user *)addr, current);
}
void do_bad_area(unsigned long addr, unsigned int fsr, struct pt_regs *regs)