aboutsummaryrefslogtreecommitdiffstats
path: root/include/trace
diff options
context:
space:
mode:
authorLi Zefan <lizf@cn.fujitsu.com>2009-08-19 03:54:51 -0400
committerIngo Molnar <mingo@elte.hu>2009-08-19 09:02:24 -0400
commit540b7b8d65575c80162f2a0f38e1d313c92a6042 (patch)
tree664bdd01ce8fce990e634a304f9b3ab51e50970c /include/trace
parente647d6b314266adb904d4b84973eda0afa856946 (diff)
tracing/syscalls: Add filtering support
Add filtering support for syscall events: # echo 'mode == 0666' > events/syscalls/sys_enter_open # echo 'ret == 0' > events/syscalls/sys_exit_open # echo 1 > events/syscalls/sys_enter_open # echo 1 > events/syscalls/sys_exit_open # cat trace ... modprobe-3084 [001] 117.463140: sys_open(filename: 917d3e8, flags: 0, mode: 1b6) modprobe-3084 [001] 117.463176: sys_open -> 0x0 less-3086 [001] 117.510455: sys_open(filename: 9c6bdb8, flags: 8000, mode: 1b6) sendmail-2574 [001] 122.145840: sys_open(filename: b807a365, flags: 0, mode: 1b6) ... Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Cc: Jason Baron <jbaron@redhat.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> LKML-Reference: <4A8BAFCB.1040006@cn.fujitsu.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/syscall.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/trace/syscall.h b/include/trace/syscall.h
index 5ce85d75d31b..9661dd406b93 100644
--- a/include/trace/syscall.h
+++ b/include/trace/syscall.h
@@ -34,6 +34,8 @@ DECLARE_TRACE_WITH_CALLBACK(syscall_exit,
34 * @args: list of args as strings (args[i] matches types[i]) 34 * @args: list of args as strings (args[i] matches types[i])
35 * @enter_id: associated ftrace enter event id 35 * @enter_id: associated ftrace enter event id
36 * @exit_id: associated ftrace exit event id 36 * @exit_id: associated ftrace exit event id
37 * @enter_event: associated syscall_enter trace event
38 * @exit_event: associated syscall_exit trace event
37 */ 39 */
38struct syscall_metadata { 40struct syscall_metadata {
39 const char *name; 41 const char *name;
@@ -42,6 +44,9 @@ struct syscall_metadata {
42 const char **args; 44 const char **args;
43 int enter_id; 45 int enter_id;
44 int exit_id; 46 int exit_id;
47
48 struct ftrace_event_call *enter_event;
49 struct ftrace_event_call *exit_event;
45}; 50};
46 51
47#ifdef CONFIG_FTRACE_SYSCALLS 52#ifdef CONFIG_FTRACE_SYSCALLS
@@ -59,6 +64,8 @@ extern int syscall_enter_format(struct ftrace_event_call *call,
59 struct trace_seq *s); 64 struct trace_seq *s);
60extern int syscall_exit_format(struct ftrace_event_call *call, 65extern int syscall_exit_format(struct ftrace_event_call *call,
61 struct trace_seq *s); 66 struct trace_seq *s);
67extern int syscall_enter_define_fields(struct ftrace_event_call *call);
68extern int syscall_exit_define_fields(struct ftrace_event_call *call);
62enum print_line_t print_syscall_enter(struct trace_iterator *iter, int flags); 69enum print_line_t print_syscall_enter(struct trace_iterator *iter, int flags);
63enum print_line_t print_syscall_exit(struct trace_iterator *iter, int flags); 70enum print_line_t print_syscall_exit(struct trace_iterator *iter, int flags);
64#endif 71#endif