aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/trace/trace.h')
-rw-r--r--kernel/trace/trace.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h
index 8cb215b239d5..f69f86788c2b 100644
--- a/kernel/trace/trace.h
+++ b/kernel/trace/trace.h
@@ -223,8 +223,6 @@ void trace_function(struct trace_array *tr,
223 unsigned long parent_ip, 223 unsigned long parent_ip,
224 unsigned long flags); 224 unsigned long flags);
225 225
226void tracing_start_function_trace(void);
227void tracing_stop_function_trace(void);
228void tracing_start_cmdline_record(void); 226void tracing_start_cmdline_record(void);
229void tracing_stop_cmdline_record(void); 227void tracing_stop_cmdline_record(void);
230int register_tracer(struct tracer *type); 228int register_tracer(struct tracer *type);
@@ -241,6 +239,14 @@ void update_max_tr_single(struct trace_array *tr,
241 239
242extern cycle_t ftrace_now(int cpu); 240extern cycle_t ftrace_now(int cpu);
243 241
242#ifdef CONFIG_FTRACE
243void tracing_start_function_trace(void);
244void tracing_stop_function_trace(void);
245#else
246# define tracing_start_function_trace() do { } while (0)
247# define tracing_stop_function_trace() do { } while (0)
248#endif
249
244#ifdef CONFIG_CONTEXT_SWITCH_TRACER 250#ifdef CONFIG_CONTEXT_SWITCH_TRACER
245typedef void 251typedef void
246(*tracer_switch_func_t)(void *private, 252(*tracer_switch_func_t)(void *private,