diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2015-05-13 15:35:44 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2015-05-13 21:48:59 -0400 |
commit | 3ad017bac94ac86edf18d0e2218ebafe71e23d45 (patch) | |
tree | 76eefee0bf10e110058ad16b3d1dc2cd9d840224 /include/trace/trace_events.h | |
parent | 62323a148fbeb0258be2c92854d758572bee2a46 (diff) | |
download | talos-obmc-linux-3ad017bac94ac86edf18d0e2218ebafe71e23d45.tar.gz talos-obmc-linux-3ad017bac94ac86edf18d0e2218ebafe71e23d45.zip |
tracing: Rename ftrace_event_type_funcs_##call to trace_event_type_funcs_##call
The name "ftrace" really refers to the function hook infrastructure. It
is not about the trace_events. The structure ftrace_event_type_funcs_##call
is used to define how the trace_events will be printed. It has nothing to
do with function tracing. Rename it.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/trace/trace_events.h')
-rw-r--r-- | include/trace/trace_events.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/trace_events.h b/include/trace/trace_events.h index 18c7c0248aeb..d88bd0f0844d 100644 --- a/include/trace/trace_events.h +++ b/include/trace/trace_events.h @@ -322,7 +322,7 @@ trace_raw_output_##call(struct trace_iterator *iter, int flags, \ \ return trace_handle_return(s); \ } \ -static struct trace_event_functions ftrace_event_type_funcs_##call = { \ +static struct trace_event_functions trace_event_type_funcs_##call = { \ .trace = trace_raw_output_##call, \ }; @@ -348,7 +348,7 @@ trace_raw_output_##call(struct trace_iterator *iter, int flags, \ trace_seq_init(p); \ return trace_output_call(iter, #call, print); \ } \ -static struct trace_event_functions ftrace_event_type_funcs_##call = { \ +static struct trace_event_functions trace_event_type_funcs_##call = { \ .trace = trace_raw_output_##call, \ }; |