All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Add check of sched_stopped for probe_sched_wakeup
@ 2009-03-31  3:59 Zhaolei
  2009-03-31  4:00 ` [PATCH 2/2] ftrace: Clean up enable logic for sched_switch Zhaolei
  0 siblings, 1 reply; 3+ messages in thread
From: Zhaolei @ 2009-03-31  3:59 UTC (permalink / raw)
  To: Steven Rostedt ;; +Cc: linux-kernel

We need check sched_stopped in probe_sched_wakeup() to stop tracing when an
user stops it.

But current code can also do the right thing(stop tracing after
echo 0 > tracing_enabled) just because tracing_sched_wakeup_trace() can return
on buffer->record_disabled.

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
---
 kernel/trace/trace_sched_switch.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/kernel/trace/trace_sched_switch.c b/kernel/trace/trace_sched_switch.c
index de35f20..9117cea 100644
--- a/kernel/trace/trace_sched_switch.c
+++ b/kernel/trace/trace_sched_switch.c
@@ -62,6 +62,9 @@ probe_sched_wakeup(struct rq *__rq, struct task_struct *wakee, int success)
 	pc = preempt_count();
 	tracing_record_cmdline(current);
 
+	if (sched_stopped)
+		return;
+
 	local_irq_save(flags);
 	cpu = raw_smp_processor_id();
 	data = ctx_trace->data[cpu];
-- 
1.5.5.3



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-03-31  4:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-31  3:59 [PATCH 1/2] Add check of sched_stopped for probe_sched_wakeup Zhaolei
2009-03-31  4:00 ` [PATCH 2/2] ftrace: Clean up enable logic for sched_switch Zhaolei
2009-03-31  4:12   ` Steven Rostedt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.