diff options
author | Ingo Molnar <mingo@kernel.org> | 2012-03-22 09:17:57 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-03-22 09:17:57 +0100 |
commit | 6605f9ac69593d480324ba5fa05f64cfebf4db2f (patch) | |
tree | 4c64d89d04ad24911d0eca7f3feb0012e4014dae /include/linux/kernel.h | |
parent | ad2a8e6078a16d3b61b530f1447110841c36ae56 (diff) | |
parent | 93d68e52295fb8b65ded6db49e32e63b6a203e0b (diff) |
Merge branch 'tip/perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace into perf/urgent
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index d801acb5e68..5582c798556 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -427,16 +427,10 @@ extern int __must_check hex2bin(u8 *dst, const char *src, size_t count); * Most likely, you want to use tracing_on/tracing_off. */ #ifdef CONFIG_RING_BUFFER -void tracing_on(void); -void tracing_off(void); /* trace_off_permanent stops recording with no way to bring it back */ void tracing_off_permanent(void); -int tracing_is_on(void); #else -static inline void tracing_on(void) { } -static inline void tracing_off(void) { } static inline void tracing_off_permanent(void) { } -static inline int tracing_is_on(void) { return 0; } #endif enum ftrace_dump_mode { @@ -446,6 +440,10 @@ enum ftrace_dump_mode { }; #ifdef CONFIG_TRACING +void tracing_on(void); +void tracing_off(void); +int tracing_is_on(void); + extern void tracing_start(void); extern void tracing_stop(void); extern void ftrace_off_permanent(void); @@ -530,6 +528,11 @@ static inline void tracing_start(void) { } static inline void tracing_stop(void) { } static inline void ftrace_off_permanent(void) { } static inline void trace_dump_stack(void) { } + +static inline void tracing_on(void) { } +static inline void tracing_off(void) { } +static inline int tracing_is_on(void) { return 0; } + static inline int trace_printk(const char *fmt, ...) { |