|
@@ -526,9 +526,7 @@ static void do_syscall_trace(void)
|
|
|
|
|
|
void do_syscall_trace_enter(struct pt_regs *regs)
|
|
|
{
|
|
|
-#ifdef CONFIG_PPC64
|
|
|
secure_computing(regs->gpr[0]);
|
|
|
-#endif
|
|
|
|
|
|
if (test_thread_flag(TIF_SYSCALL_TRACE)
|
|
|
&& (current->ptrace & PT_PTRACED))
|
|
@@ -548,10 +546,6 @@ void do_syscall_trace_enter(struct pt_regs *regs)
|
|
|
|
|
|
void do_syscall_trace_leave(struct pt_regs *regs)
|
|
|
{
|
|
|
-#ifdef CONFIG_PPC32
|
|
|
- secure_computing(regs->gpr[0]);
|
|
|
-#endif
|
|
|
-
|
|
|
if (unlikely(current->audit_context))
|
|
|
audit_syscall_exit((regs->ccr&0x10000000)?AUDITSC_FAILURE:AUDITSC_SUCCESS,
|
|
|
regs->result);
|
|
@@ -561,8 +555,3 @@ void do_syscall_trace_leave(struct pt_regs *regs)
|
|
|
&& (current->ptrace & PT_PTRACED))
|
|
|
do_syscall_trace();
|
|
|
}
|
|
|
-
|
|
|
-#ifdef CONFIG_PPC32
|
|
|
-EXPORT_SYMBOL(do_syscall_trace_enter);
|
|
|
-EXPORT_SYMBOL(do_syscall_trace_leave);
|
|
|
-#endif
|