diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2015-05-05 14:18:11 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2015-05-13 14:06:41 -0400 |
commit | 892c505aac2bdded3c8ec2ec27abc6d74fd210f5 (patch) | |
tree | 10fe9d8fa127bd84f4829103f31c3693c03fe3ab /include/trace/perf.h | |
parent | 3f795dcfc7364cd811c3f6f03d115fcefbbdc1ca (diff) | |
download | linux-892c505aac2bdded3c8ec2ec27abc6d74fd210f5.tar.gz linux-892c505aac2bdded3c8ec2ec27abc6d74fd210f5.tar.bz2 linux-892c505aac2bdded3c8ec2ec27abc6d74fd210f5.zip |
tracing: Rename ftrace_output functions to trace_output
The name "ftrace" really refers to the function hook infrastructure. It
is not about the trace_events. The ftrace_output_*() and ftrace_raw_output_*()
functions represent the trace_event code. Rename them to just trace_output
or trace_raw_output.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/trace/perf.h')
-rw-r--r-- | include/trace/perf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/perf.h b/include/trace/perf.h index b1d7399df449..0dbdbfe0ec41 100644 --- a/include/trace/perf.h +++ b/include/trace/perf.h @@ -58,7 +58,7 @@ * } * * static struct trace_event ftrace_event_type_<call> = { - * .trace = ftrace_raw_output_<call>, <-- stage 2 + * .trace = trace_raw_output_<call>, <-- stage 2 * }; * * static char print_fmt_<call>[] = <TP_printk>; |