commit | 2fb7635c4cea310992a39580133099dd99ad151c | [log] [tgz] |
---|---|---|
author | Peter Zijlstra <peterz@infradead.org> | Wed Oct 08 09:16:04 2008 +0200 |
committer | Ingo Molnar <mingo@elte.hu> | Wed Oct 08 12:20:26 2008 +0200 |
tree | e898c690d05c3dfeaa733fb3472eff400669be3a | |
parent | 990d0f2ced23052abc7efa09bd05bff34e00cf73 [diff] |
sched: sync wakeups vs avg_overlap While looking at the code I wondered why we always do: sync && avg_overlap < migration_cost Which is a bit odd, since the overlap test was meant to detect sync wakeups so using it to specialize sync wakeups doesn't make much sense. Hence change the code to do: sync || avg_overlap < migration_cost Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>