]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tracing: Fix compile issue for trace_sched_wakeup.c
authorSteven Rostedt <srostedt@redhat.com>
Tue, 19 Oct 2010 14:56:19 +0000 (10:56 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 19 Oct 2010 14:56:19 +0000 (10:56 -0400)
The function start_func_tracer() was incorrectly added in the
 #ifdef CONFIG_FUNCTION_TRACER condition, but is still used even
when function tracing is not enabled.

The calls to register_ftrace_function() and register_ftrace_graph()
become nops (and their arguments are even ignored), thus there is
no reason to hide start_func_tracer() when function tracing is
not enabled.

Reported-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace_sched_wakeup.c

index 31689d2df7f353334451f48e1b52269714d9aa28..7319559ed59f0a10197a15dc9d62a99a1fa7aeb7 100644 (file)
@@ -130,6 +130,7 @@ static struct ftrace_ops trace_ops __read_mostly =
 {
        .func = wakeup_tracer_call,
 };
+#endif /* CONFIG_FUNCTION_TRACER */
 
 static int start_func_tracer(int graph)
 {
@@ -159,8 +160,6 @@ static void stop_func_tracer(int graph)
                unregister_ftrace_graph();
 }
 
-#endif /* CONFIG_FUNCTION_TRACER */
-
 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
 static int wakeup_set_flag(u32 old_flags, u32 bit, int set)
 {