2 #define TRACE_SYSTEM raw_syscalls
3 #define TRACE_INCLUDE_FILE syscalls
5 #if !defined(_TRACE_EVENTS_SYSCALLS_H) || defined(TRACE_HEADER_MULTI_READ)
6 #define _TRACE_EVENTS_SYSCALLS_H
8 #include <linux/tracepoint.h>
10 #include <asm/ptrace.h>
11 #include <asm/syscall.h>
14 #ifdef CONFIG_HAVE_SYSCALL_TRACEPOINTS
16 TRACE_EVENT_FN(sys_enter
,
18 TP_PROTO(struct pt_regs
*regs
, long id
),
24 __array( unsigned long, args
, 6 )
29 syscall_get_arguments(current
, regs
, 0, 6, __entry
->args
);
32 TP_printk("NR %ld (%lx, %lx, %lx, %lx, %lx, %lx)",
34 __entry
->args
[0], __entry
->args
[1], __entry
->args
[2],
35 __entry
->args
[3], __entry
->args
[4], __entry
->args
[5]),
37 syscall_regfunc
, syscall_unregfunc
40 TRACE_EVENT_FLAGS(sys_enter
, TRACE_EVENT_FL_CAP_ANY
)
42 TRACE_EVENT_FN(sys_exit
,
44 TP_PROTO(struct pt_regs
*regs
, long ret
),
54 __entry
->id
= syscall_get_nr(current
, regs
);
58 TP_printk("NR %ld = %ld",
59 __entry
->id
, __entry
->ret
),
61 syscall_regfunc
, syscall_unregfunc
64 TRACE_EVENT_FLAGS(sys_exit
, TRACE_EVENT_FL_CAP_ANY
)
66 #endif /* CONFIG_HAVE_SYSCALL_TRACEPOINTS */
68 #endif /* _TRACE_EVENTS_SYSCALLS_H */
70 /* This part must be outside protection */
71 #include <trace/define_trace.h>