]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ftrace: make ftrace_printk usable with the other tracers
authorPeter Zijlstra <peterz@infradead.org>
Thu, 4 Sep 2008 08:24:14 +0000 (10:24 +0200)
committerIngo Molnar <mingo@elte.hu>
Tue, 14 Oct 2008 08:36:45 +0000 (10:36 +0200)
Currently ftrace_printk only works with the ftrace tracer, switch it to an
iter_ctrl setting so we can make us of them with other tracers too.

[rostedt@redhat.com: tweak to the disable condition]

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/trace/trace.c
kernel/trace/trace.h

index d24101cfc42551266f045b475882a52f3b0c5b83..8a00d6c5c0f5eab2d2318ae66e3d513870e4fbd4 100644 (file)
@@ -235,6 +235,7 @@ static const char *trace_options[] = {
        "block",
        "stacktrace",
        "sched-tree",
+       "ftrace_printk",
        NULL
 };
 
@@ -3091,9 +3092,10 @@ static __init void tracer_init_debugfs(void)
 
 int __ftrace_printk(unsigned long ip, const char *fmt, ...)
 {
-       struct trace_array *tr = &global_trace;
        static DEFINE_SPINLOCK(trace_buf_lock);
        static char trace_buf[TRACE_BUF_SIZE];
+
+       struct trace_array *tr = &global_trace;
        struct trace_array_cpu *data;
        struct trace_entry *entry;
        unsigned long flags;
@@ -3101,7 +3103,7 @@ int __ftrace_printk(unsigned long ip, const char *fmt, ...)
        va_list ap;
        int cpu, len = 0, write, written = 0;
 
-       if (likely(!ftrace_function_enabled))
+       if (!(trace_flags & TRACE_ITER_PRINTK) || !tr->ctrl || tracing_disabled)
                return 0;
 
        local_irq_save(flags);
@@ -3109,7 +3111,7 @@ int __ftrace_printk(unsigned long ip, const char *fmt, ...)
        data = tr->data[cpu];
        disabled = atomic_inc_return(&data->disabled);
 
-       if (unlikely(disabled != 1 || !ftrace_function_enabled))
+       if (unlikely(disabled != 1))
                goto out;
 
        spin_lock(&trace_buf_lock);
index 50b6d7a6f01aa160d433f5dcc6817083f5abc3f9..5f54c875c8be2ebbe1f16663667168bde1e5cb31 100644 (file)
@@ -356,6 +356,7 @@ enum trace_iterator_flags {
        TRACE_ITER_BLOCK                = 0x80,
        TRACE_ITER_STACKTRACE           = 0x100,
        TRACE_ITER_SCHED_TREE           = 0x200,
+       TRACE_ITER_PRINTK               = 0x400,
 };
 
 #endif /* _LINUX_KERNEL_TRACE_H */