提交 725e7580 编写于 作者: R Rik van Riel 提交者: Ingo Molnar

sched: Check the right ->nr_running in yield_task_fair()

With CONFIG_FAIR_GROUP_SCHED, each task_group has its own cfs_rq.
Yielding to a task from another cfs_rq may be worthwhile, since
a process calling yield typically cannot use the CPU right now.

Therefor, we want to check the per-cpu nr_running, not the
cgroup local one.
Signed-off-by: NRik van Riel <riel@redhat.com>
Signed-off-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <20110201094715.798c4f86@annuminas.surriel.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 6ea72f12
...@@ -1331,7 +1331,7 @@ static void yield_task_fair(struct rq *rq) ...@@ -1331,7 +1331,7 @@ static void yield_task_fair(struct rq *rq)
/* /*
* Are we the only task in the tree? * Are we the only task in the tree?
*/ */
if (unlikely(cfs_rq->nr_running == 1)) if (unlikely(rq->nr_running == 1))
return; return;
clear_buddies(cfs_rq, se); clear_buddies(cfs_rq, se);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册