aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace
diff options
context:
space:
mode:
authorSteven Rostedt <rostedt@goodmis.org>2008-10-06 19:06:13 -0400
committerIngo Molnar <mingo@elte.hu>2008-10-20 18:27:04 +0200
commit3ce83aea86bf46fd1bff59d2e6d16f48fdce22fc (patch)
treec4fc8ba118adbadb463564cbc94db8aa540b011d /kernel/trace
parentftrace: rename FTRACE to FUNCTION_TRACER (diff)
downloadlinux-dev-3ce83aea86bf46fd1bff59d2e6d16f48fdce22fc.tar.xz
linux-dev-3ce83aea86bf46fd1bff59d2e6d16f48fdce22fc.zip
ftrace: rename the ftrace tracer to function
To avoid further confusion between the ftrace infrastructure and the function tracer. This patch renames the "ftrace" function tracer to "function". Now in available_tracers, instead of "ftrace" there will be "function". This makes more sense, since people will not know exactly what the "ftrace" tracer does. Signed-off-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace')
-rw-r--r--kernel/trace/trace_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_functions.c b/kernel/trace/trace_functions.c
index e90eb0c2c56c..0f85a64003d3 100644
--- a/kernel/trace/trace_functions.c
+++ b/kernel/trace/trace_functions.c
@@ -64,7 +64,7 @@ static void function_trace_ctrl_update(struct trace_array *tr)
static struct tracer function_trace __read_mostly =
{
- .name = "ftrace",
+ .name = "function",
.init = function_trace_init,
.reset = function_trace_reset,
.ctrl_update = function_trace_ctrl_update,