aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ftrace_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/ftrace_event.h')
-rw-r--r--include/linux/ftrace_event.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h
index 5c093ffc655b..26d3673d5143 100644
--- a/include/linux/ftrace_event.h
+++ b/include/linux/ftrace_event.h
@@ -101,6 +101,8 @@ void trace_current_buffer_discard_commit(struct ring_buffer_event *event);
101 101
102void tracing_record_cmdline(struct task_struct *tsk); 102void tracing_record_cmdline(struct task_struct *tsk);
103 103
104struct event_filter;
105
104struct ftrace_event_call { 106struct ftrace_event_call {
105 struct list_head list; 107 struct list_head list;
106 char *name; 108 char *name;
@@ -116,7 +118,7 @@ struct ftrace_event_call {
116 int (*define_fields)(void); 118 int (*define_fields)(void);
117 struct list_head fields; 119 struct list_head fields;
118 int filter_active; 120 int filter_active;
119 void *filter; 121 struct event_filter *filter;
120 void *mod; 122 void *mod;
121 123
122#ifdef CONFIG_EVENT_PROFILE 124#ifdef CONFIG_EVENT_PROFILE