diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-05-12 15:20:53 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-23 15:07:57 -0400 |
commit | d9af56fbd8b37181bffaad060f74aa2e17382874 (patch) | |
tree | 265ac086e53c8191e8bc19fef98b2dea8cc93723 /kernel/trace/trace_sched_switch.c | |
parent | 36dfe9252bd4c9b55e8454363fb7e444c92c5030 (diff) |
ftrace: fix cmdline tracing
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/trace/trace_sched_switch.c')
-rw-r--r-- | kernel/trace/trace_sched_switch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/trace/trace_sched_switch.c b/kernel/trace/trace_sched_switch.c index 5555b906a666..5a217e863586 100644 --- a/kernel/trace/trace_sched_switch.c +++ b/kernel/trace/trace_sched_switch.c | |||
@@ -29,6 +29,8 @@ ctx_switch_func(void *__rq, struct task_struct *prev, struct task_struct *next) | |||
29 | if (!tracer_enabled) | 29 | if (!tracer_enabled) |
30 | return; | 30 | return; |
31 | 31 | ||
32 | tracing_record_cmdline(prev); | ||
33 | |||
32 | local_irq_save(flags); | 34 | local_irq_save(flags); |
33 | cpu = raw_smp_processor_id(); | 35 | cpu = raw_smp_processor_id(); |
34 | data = tr->data[cpu]; | 36 | data = tr->data[cpu]; |
@@ -56,6 +58,8 @@ wakeup_func(void *__rq, struct task_struct *wakee, struct task_struct *curr) | |||
56 | if (!tracer_enabled) | 58 | if (!tracer_enabled) |
57 | return; | 59 | return; |
58 | 60 | ||
61 | tracing_record_cmdline(curr); | ||
62 | |||
59 | local_irq_save(flags); | 63 | local_irq_save(flags); |
60 | cpu = raw_smp_processor_id(); | 64 | cpu = raw_smp_processor_id(); |
61 | data = tr->data[cpu]; | 65 | data = tr->data[cpu]; |
@@ -75,8 +79,6 @@ void | |||
75 | ftrace_ctx_switch(void *__rq, struct task_struct *prev, | 79 | ftrace_ctx_switch(void *__rq, struct task_struct *prev, |
76 | struct task_struct *next) | 80 | struct task_struct *next) |
77 | { | 81 | { |
78 | tracing_record_cmdline(prev); | ||
79 | |||
80 | /* | 82 | /* |
81 | * If tracer_switch_func only points to the local | 83 | * If tracer_switch_func only points to the local |
82 | * switch func, it still needs the ptr passed to it. | 84 | * switch func, it still needs the ptr passed to it. |
@@ -93,8 +95,6 @@ void | |||
93 | ftrace_wake_up_task(void *__rq, struct task_struct *wakee, | 95 | ftrace_wake_up_task(void *__rq, struct task_struct *wakee, |
94 | struct task_struct *curr) | 96 | struct task_struct *curr) |
95 | { | 97 | { |
96 | tracing_record_cmdline(curr); | ||
97 | |||
98 | wakeup_func(__rq, wakee, curr); | 98 | wakeup_func(__rq, wakee, curr); |
99 | 99 | ||
100 | /* | 100 | /* |