tracing/ftrace: fix the check of ftrace_trace_task
authorFrederic Weisbecker <fweisbec@gmail.com>
Thu, 4 Dec 2008 22:49:47 +0000 (23:49 +0100)
committerIngo Molnar <mingo@elte.hu>
Fri, 5 Dec 2008 13:47:43 +0000 (14:47 +0100)
Impact: fix default empty traces on function-graph-tracer

The actual ftrace_trace_task() checks if ftrace_pid_trace is allocated
and return 1 if it is true.
If it is NULL, it will check the bit of pid tracing flag for the current
task (which are not set by default).
So by default, a task is not traced.
Actually all tasks should be traced by default and filter_by_pid when
ftrace_pid_trace is allocated.

The appropriate condition should be to return 1 if filter_by_pid is
set.

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acke-dby: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/trace/trace.h

index a71bbe0..5ac6970 100644 (file)
@@ -551,7 +551,7 @@ extern struct pid *ftrace_pid_trace;
 
 static inline int ftrace_trace_task(struct task_struct *task)
 {
-       if (ftrace_pid_trace)
+       if (!ftrace_pid_trace)
                return 1;
 
        return test_tsk_trace_trace(task);