summaryrefslogtreecommitdiffstats
path: root/arch/arc
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2019-02-07 10:25:08 -0500
committerEric W. Biederman <ebiederm@xmission.com>2019-05-29 10:31:43 -0400
commit351b6825b3a9f70bab080fba67aec104ff9a41d6 (patch)
tree8d46d573a342393df13a874fabd20af264cae458 /arch/arc
parentec74e9205e064af6a7076faabe649335acc78b69 (diff)
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>
Diffstat (limited to 'arch/arc')
-rw-r--r--arch/arc/kernel/traps.c2
-rw-r--r--arch/arc/mm/fault.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/arc/kernel/traps.c b/arch/arc/kernel/traps.c
index a7fcbc0d3943..e618fbb3e28d 100644
--- a/arch/arc/kernel/traps.c
+++ b/arch/arc/kernel/traps.c
@@ -50,7 +50,7 @@ unhandled_exception(const char *str, struct pt_regs *regs,
50 50
51 tsk->thread.fault_address = (__force unsigned int)addr; 51 tsk->thread.fault_address = (__force unsigned int)addr;
52 52
53 force_sig_fault(signo, si_code, addr, tsk); 53 force_sig_fault(signo, si_code, addr, current);
54 54
55 } else { 55 } else {
56 /* If not due to copy_(to|from)_user, we are doomed */ 56 /* If not due to copy_(to|from)_user, we are doomed */
diff --git a/arch/arc/mm/fault.c b/arch/arc/mm/fault.c
index 8df1638259f3..d5d4758d7e75 100644
--- a/arch/arc/mm/fault.c
+++ b/arch/arc/mm/fault.c
@@ -202,7 +202,7 @@ bad_area_nosemaphore:
202 /* User mode accesses just cause a SIGSEGV */ 202 /* User mode accesses just cause a SIGSEGV */
203 if (user_mode(regs)) { 203 if (user_mode(regs)) {
204 tsk->thread.fault_address = address; 204 tsk->thread.fault_address = address;
205 force_sig_fault(SIGSEGV, si_code, (void __user *)address, tsk); 205 force_sig_fault(SIGSEGV, si_code, (void __user *)address, current);
206 return; 206 return;
207 } 207 }
208 208
@@ -237,5 +237,5 @@ do_sigbus:
237 goto no_context; 237 goto no_context;
238 238
239 tsk->thread.fault_address = address; 239 tsk->thread.fault_address = address;
240 force_sig_fault(SIGBUS, BUS_ADRERR, (void __user *)address, tsk); 240 force_sig_fault(SIGBUS, BUS_ADRERR, (void __user *)address, current);
241} 241}