diff options
Diffstat (limited to 'arch/x86/kernel/ptrace.c')
-rw-r--r-- | arch/x86/kernel/ptrace.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c index 31e9b97ec4d6..8d7d5c9c1be3 100644 --- a/arch/x86/kernel/ptrace.c +++ b/arch/x86/kernel/ptrace.c | |||
@@ -35,13 +35,11 @@ | |||
35 | #include <asm/proto.h> | 35 | #include <asm/proto.h> |
36 | #include <asm/ds.h> | 36 | #include <asm/ds.h> |
37 | 37 | ||
38 | #include <trace/syscall.h> | ||
39 | |||
40 | DEFINE_TRACE_FN(syscall_enter, syscall_regfunc, syscall_unregfunc); | ||
41 | DEFINE_TRACE_FN(syscall_exit, syscall_regfunc, syscall_unregfunc); | ||
42 | |||
43 | #include "tls.h" | 38 | #include "tls.h" |
44 | 39 | ||
40 | #define CREATE_TRACE_POINTS | ||
41 | #include <trace/events/syscalls.h> | ||
42 | |||
45 | enum x86_regset { | 43 | enum x86_regset { |
46 | REGSET_GENERAL, | 44 | REGSET_GENERAL, |
47 | REGSET_FP, | 45 | REGSET_FP, |
@@ -1501,7 +1499,7 @@ asmregparm long syscall_trace_enter(struct pt_regs *regs) | |||
1501 | ret = -1L; | 1499 | ret = -1L; |
1502 | 1500 | ||
1503 | if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) | 1501 | if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) |
1504 | trace_syscall_enter(regs, regs->orig_ax); | 1502 | trace_sys_enter(regs, regs->orig_ax); |
1505 | 1503 | ||
1506 | if (unlikely(current->audit_context)) { | 1504 | if (unlikely(current->audit_context)) { |
1507 | if (IS_IA32) | 1505 | if (IS_IA32) |
@@ -1527,7 +1525,7 @@ asmregparm void syscall_trace_leave(struct pt_regs *regs) | |||
1527 | audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax); | 1525 | audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax); |
1528 | 1526 | ||
1529 | if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) | 1527 | if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT))) |
1530 | trace_syscall_exit(regs, regs->ax); | 1528 | trace_sys_exit(regs, regs->ax); |
1531 | 1529 | ||
1532 | if (test_thread_flag(TIF_SYSCALL_TRACE)) | 1530 | if (test_thread_flag(TIF_SYSCALL_TRACE)) |
1533 | tracehook_report_syscall_exit(regs, 0); | 1531 | tracehook_report_syscall_exit(regs, 0); |