aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/ptrace.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/ptrace.c')
-rw-r--r--arch/x86/kernel/ptrace.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c
index 34dd6f15185..8d7d5c9c1be 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
40DEFINE_TRACE(syscall_enter);
41DEFINE_TRACE(syscall_exit);
42
43#include "tls.h" 38#include "tls.h"
44 39
40#define CREATE_TRACE_POINTS
41#include <trace/events/syscalls.h>
42
45enum x86_regset { 43enum x86_regset {
46 REGSET_GENERAL, 44 REGSET_GENERAL,
47 REGSET_FP, 45 REGSET_FP,
@@ -1500,8 +1498,8 @@ asmregparm long syscall_trace_enter(struct pt_regs *regs)
1500 tracehook_report_syscall_entry(regs)) 1498 tracehook_report_syscall_entry(regs))
1501 ret = -1L; 1499 ret = -1L;
1502 1500
1503 if (unlikely(test_thread_flag(TIF_SYSCALL_FTRACE))) 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)
@@ -1526,8 +1524,8 @@ asmregparm void syscall_trace_leave(struct pt_regs *regs)
1526 if (unlikely(current->audit_context)) 1524 if (unlikely(current->audit_context))
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_FTRACE))) 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);