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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h
index 17810853b4f8..75f3ac01a87c 100644
--- a/include/linux/ftrace_event.h
+++ b/include/linux/ftrace_event.h
@@ -7,6 +7,7 @@
7 7
8struct trace_array; 8struct trace_array;
9struct tracer; 9struct tracer;
10struct dentry;
10 11
11/* 12/*
12 * The trace entry - the most basic unit of tracing. This is what 13 * The trace entry - the most basic unit of tracing. This is what
@@ -87,6 +88,7 @@ struct ftrace_event_call {
87 char *name; 88 char *name;
88 char *system; 89 char *system;
89 struct dentry *dir; 90 struct dentry *dir;
91 struct trace_event *event;
90 int enabled; 92 int enabled;
91 int (*regfunc)(void); 93 int (*regfunc)(void);
92 void (*unregfunc)(void); 94 void (*unregfunc)(void);
@@ -97,6 +99,7 @@ struct ftrace_event_call {
97 struct list_head fields; 99 struct list_head fields;
98 int n_preds; 100 int n_preds;
99 struct filter_pred **preds; 101 struct filter_pred **preds;
102 void *mod;
100 103
101#ifdef CONFIG_EVENT_PROFILE 104#ifdef CONFIG_EVENT_PROFILE
102 atomic_t profile_count; 105 atomic_t profile_count;