diff options
author | Peter Zijlstra <peterz@infradead.org> | 2008-10-15 14:37:23 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-15 14:43:27 -0400 |
commit | 8cd162ce230b154e564a1285bb5f89fcf73f0dce (patch) | |
tree | aaace0250b44a77d71cd650edaa395d9b3f891e7 /kernel/sched.c | |
parent | 5b16a2212f1840b63d6cc476b26ff9349dab185e (diff) |
sched: only update rq->clock while holding rq->lock
Vatsa noticed rq->clock going funny and tracked it down to an update_rq_clock()
outside a rq->lock section.
This is a problem because things like double_rq_lock() update the rq->clock
value for both rqs. Therefore disabling interrupts isn't strong enough.
Reported-by: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 6f230596bd0c..c530b84c7f80 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -4441,12 +4441,8 @@ need_resched_nonpreemptible: | |||
4441 | if (sched_feat(HRTICK)) | 4441 | if (sched_feat(HRTICK)) |
4442 | hrtick_clear(rq); | 4442 | hrtick_clear(rq); |
4443 | 4443 | ||
4444 | /* | 4444 | spin_lock_irq(&rq->lock); |
4445 | * Do the rq-clock update outside the rq lock: | ||
4446 | */ | ||
4447 | local_irq_disable(); | ||
4448 | update_rq_clock(rq); | 4445 | update_rq_clock(rq); |
4449 | spin_lock(&rq->lock); | ||
4450 | clear_tsk_need_resched(prev); | 4446 | clear_tsk_need_resched(prev); |
4451 | 4447 | ||
4452 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { | 4448 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { |