diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-01-15 23:06:03 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-16 06:17:58 -0500 |
commit | a225cdd263f340c864febb1992802fb5b08bc328 (patch) | |
tree | a457f609c0071216c37f255cbaba00217bf1a7ed /kernel/trace/trace.h | |
parent | 3eb36aa05329a47cbe201c151fd0024a4a3649cd (diff) |
ftrace: remove static from function tracer functions
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>
Diffstat (limited to 'kernel/trace/trace.h')
-rw-r--r-- | kernel/trace/trace.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index bf39a369e4b3..54b72781e920 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
@@ -464,16 +464,6 @@ void __trace_stack(struct trace_array *tr, | |||
464 | 464 | ||
465 | extern cycle_t ftrace_now(int cpu); | 465 | extern cycle_t ftrace_now(int cpu); |
466 | 466 | ||
467 | #ifdef CONFIG_FUNCTION_TRACER | ||
468 | void tracing_start_function_trace(void); | ||
469 | void tracing_stop_function_trace(void); | ||
470 | #else | ||
471 | # define tracing_start_function_trace() do { } while (0) | ||
472 | # define tracing_stop_function_trace() do { } while (0) | ||
473 | #endif | ||
474 | |||
475 | extern int ftrace_function_enabled; | ||
476 | |||
477 | #ifdef CONFIG_CONTEXT_SWITCH_TRACER | 467 | #ifdef CONFIG_CONTEXT_SWITCH_TRACER |
478 | typedef void | 468 | typedef void |
479 | (*tracer_switch_func_t)(void *private, | 469 | (*tracer_switch_func_t)(void *private, |