diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2010-11-17 19:46:57 -0500 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2010-11-18 08:37:42 -0500 |
commit | 1ed0c5971159974185653170543a764cc061c857 (patch) | |
tree | 5887072ddc1c87776886c9a1b6ef61836f1ae925 /include/trace | |
parent | 61c32659b12c44e62de32fbf99f7e4ca783dc38b (diff) |
tracing: New macro to set up initial event flags value
This introduces the new TRACE_EVENT_FLAGS() macro in order
to set up initial event flags value.
This macro must simply follow the definition of a trace event
and take the event name and the flag value as parameters:
TRACE_EVENT(my_event, .....
....
);
TRACE_EVENT_FLAGS(my_event, 1)
This will set up 1 as the initial my_event->flags value.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Li Zefan <lizf@cn.fujitsu.com>
Cc: Jason Baron <jbaron@redhat.com>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/ftrace.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h index a9377c0083ad..6f540123d43e 100644 --- a/include/trace/ftrace.h +++ b/include/trace/ftrace.h | |||
@@ -82,6 +82,15 @@ | |||
82 | TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \ | 82 | TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \ |
83 | PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \ | 83 | PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \ |
84 | 84 | ||
85 | #undef TRACE_EVENT_FLAGS | ||
86 | #define TRACE_EVENT_FLAGS(name, value) \ | ||
87 | static int __init trace_init_flags_##name(void) \ | ||
88 | { \ | ||
89 | event_##name.flags = value; \ | ||
90 | return 0; \ | ||
91 | } \ | ||
92 | early_initcall(trace_init_flags_##name); | ||
93 | |||
85 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) | 94 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
86 | 95 | ||
87 | 96 | ||
@@ -129,6 +138,9 @@ | |||
129 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ | 138 | #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ |
130 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) | 139 | DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) |
131 | 140 | ||
141 | #undef TRACE_EVENT_FLAGS | ||
142 | #define TRACE_EVENT_FLAGS(event, flag) | ||
143 | |||
132 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) | 144 | #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) |
133 | 145 | ||
134 | /* | 146 | /* |