]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ftrace: remove static from function tracer functions
authorSteven Rostedt <srostedt@redhat.com>
Fri, 16 Jan 2009 04:06:03 +0000 (23:06 -0500)
committerIngo Molnar <mingo@elte.hu>
Fri, 16 Jan 2009 11:17:58 +0000 (12:17 +0100)
Impact: clean up

After reorganizing the functions in trace.c and trace_function.c,
they no longer need to be in global context. This patch makes the
functions and one variable into static.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/trace/trace.c
kernel/trace/trace.h
kernel/trace/trace_functions.c

index 2585ffb6c6b5fd05e7110c27408eeb77a4589d7f..7de6a94063dd77f727f4aed30dc92686ea5a271e 100644 (file)
@@ -187,9 +187,6 @@ int tracing_is_enabled(void)
        return tracer_enabled;
 }
 
-/* function tracing enabled */
-int                            ftrace_function_enabled;
-
 /*
  * trace_buf_size is the size in bytes that is allocated
  * for a buffer. Note, the number of bytes is always rounded
index bf39a369e4b30b2647e06d82d7abf326076642ea..54b72781e920692e54ac267e3950c575a30cc8a0 100644 (file)
@@ -464,16 +464,6 @@ void __trace_stack(struct trace_array *tr,
 
 extern cycle_t ftrace_now(int cpu);
 
-#ifdef CONFIG_FUNCTION_TRACER
-void tracing_start_function_trace(void);
-void tracing_stop_function_trace(void);
-#else
-# define tracing_start_function_trace()                do { } while (0)
-# define tracing_stop_function_trace()         do { } while (0)
-#endif
-
-extern int ftrace_function_enabled;
-
 #ifdef CONFIG_CONTEXT_SWITCH_TRACER
 typedef void
 (*tracer_switch_func_t)(void *private,
index 61d0b73dabf57953895b081c5a67a9af04868ddb..b3a320f8aba7ee251024284dd07754e7da052ad5 100644 (file)
 
 #include "trace.h"
 
+/* function tracing enabled */
+static int                     ftrace_function_enabled;
+
 static struct trace_array      *func_trace;
 
+static void tracing_start_function_trace(void);
+static void tracing_stop_function_trace(void);
+
 static void start_function_trace(struct trace_array *tr)
 {
        func_trace = tr;
@@ -177,7 +183,7 @@ static struct tracer_flags func_flags = {
        .opts = func_opts
 };
 
-void tracing_start_function_trace(void)
+static void tracing_start_function_trace(void)
 {
        ftrace_function_enabled = 0;
 
@@ -194,7 +200,7 @@ void tracing_start_function_trace(void)
        ftrace_function_enabled = 1;
 }
 
-void tracing_stop_function_trace(void)
+static void tracing_stop_function_trace(void)
 {
        ftrace_function_enabled = 0;
        /* OK if they are not registered */