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>
このコミットが含まれているのは:
Kyle McMartin
2009-07-05 14:36:16 -04:00
committed by Kyle McMartin
コミット 2798af1abb
2個のファイルの変更26行の追加23行の削除

ファイルの表示

@@ -264,20 +264,19 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
}
#endif
void syscall_trace(int why)
long do_syscall_trace_enter(struct pt_regs *regs)
{
struct pt_regs *regs = &current->thread.regs;
if (test_thread_flag(TIF_SYSCALL_TRACE) &&
tracehook_report_syscall_entry(regs))
return -1L;
if (!test_thread_flag(TIF_SYSCALL_TRACE))
return;
/*
* Report the system call for tracing. Entry tracing can
* decide to abort the call. We handle that by setting an
* invalid syscall number (-1) to force an ENOSYS error.
*/
if (why)
tracehook_report_syscall_exit(regs, 0);
else if (tracehook_report_syscall_entry(regs))
regs->gr[20] = -1; /* force ENOSYS */
return regs->gr[20];
}
void do_syscall_trace_exit(struct pt_regs *regs)
{
int stepping = !!(current->ptrace & (PT_SINGLESTEP|PT_BLOCKSTEP));
if (stepping || test_thread_flag(TIF_SYSCALL_TRACE))
tracehook_report_syscall_exit(regs, stepping);
}