aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/kernel/ptrace.c
diff options
context:
space:
mode:
authorKyle McMartin <kyle@mcmartin.ca>2009-07-05 14:36:16 -0400
committerKyle McMartin <kyle@ihatethathostname.lab.bos.redhat.com>2009-09-27 23:07:22 -0400
commit2798af1abb5d560b926fd07ec58c5dcc6d3484d8 (patch)
tree1c3d953ce653784ed8055fad82ef34499c036f27 /arch/parisc/kernel/ptrace.c
parent5837d42f8ae9874fd93928c6784b2224f0edd4c9 (diff)
parisc: split syscall_trace into two halves
Instead of fiddling with gr[20], restructure code to return whether or not to -ENOSYS. (Also do a bit of fiddling to let them take pt_regs directly instead of re-computing it.) Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/kernel/ptrace.c')
-rw-r--r--arch/parisc/kernel/ptrace.c25
1 files changed, 12 insertions, 13 deletions
diff --git a/arch/parisc/kernel/ptrace.c b/arch/parisc/kernel/ptrace.c
index 2118ed02e886..08f6d2cbf0e0 100644
--- a/arch/parisc/kernel/ptrace.c
+++ b/arch/parisc/kernel/ptrace.c
@@ -264,20 +264,19 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
264} 264}
265#endif 265#endif
266 266
267long do_syscall_trace_enter(struct pt_regs *regs)
268{
269 if (test_thread_flag(TIF_SYSCALL_TRACE) &&
270 tracehook_report_syscall_entry(regs))
271 return -1L;
272
273 return regs->gr[20];
274}
267 275
268void syscall_trace(int why) 276void do_syscall_trace_exit(struct pt_regs *regs)
269{ 277{
270 struct pt_regs *regs = &current->thread.regs; 278 int stepping = !!(current->ptrace & (PT_SINGLESTEP|PT_BLOCKSTEP));
271 279
272 if (!test_thread_flag(TIF_SYSCALL_TRACE)) 280 if (stepping || test_thread_flag(TIF_SYSCALL_TRACE))
273 return; 281 tracehook_report_syscall_exit(regs, stepping);
274 /*
275 * Report the system call for tracing. Entry tracing can
276 * decide to abort the call. We handle that by setting an
277 * invalid syscall number (-1) to force an ENOSYS error.
278 */
279 if (why)
280 tracehook_report_syscall_exit(regs, 0);
281 else if (tracehook_report_syscall_entry(regs))
282 regs->gr[20] = -1; /* force ENOSYS */
283} 282}