Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 145987
b: refs/heads/master
c: dcef788
h: refs/heads/master
i:
  145985: 0343b03
  145983: 7c4841e
v: v3
  • Loading branch information
Zhaolei authored and Ingo Molnar committed Apr 7, 2009
1 parent 2997b65 commit af68652
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 597af81537654097b67fd7a0c92775e66d4a86fe
refs/heads/master: dcef788eb9659b61a2110284fcce3ca6e63480d2
10 changes: 5 additions & 5 deletions trunk/kernel/trace/trace_sched_switch.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ probe_sched_switch(struct rq *__rq, struct task_struct *prev,
int cpu;
int pc;

if (!sched_ref || sched_stopped)
if (unlikely(!sched_ref))
return;

tracing_record_cmdline(prev);
tracing_record_cmdline(next);

if (!tracer_enabled)
if (!tracer_enabled || sched_stopped)
return;

pc = preempt_count();
Expand All @@ -56,15 +56,15 @@ probe_sched_wakeup(struct rq *__rq, struct task_struct *wakee, int success)
unsigned long flags;
int cpu, pc;

if (!likely(tracer_enabled))
if (unlikely(!sched_ref))
return;

pc = preempt_count();
tracing_record_cmdline(current);

if (sched_stopped)
if (!tracer_enabled || sched_stopped)
return;

pc = preempt_count();
local_irq_save(flags);
cpu = raw_smp_processor_id();
data = ctx_trace->data[cpu];
Expand Down

0 comments on commit af68652

Please sign in to comment.