提交 1020387f 编写于 作者: P Peter Zijlstra 提交者: Ingo Molnar

sched: rt-group: reduce rescheduling

Only reschedule if the new group has a higher prio task.
Signed-off-by: NPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 37bb6cb4
......@@ -94,8 +94,11 @@ static void sched_rt_ratio_enqueue(struct rt_rq *rt_rq)
struct sched_rt_entity *rt_se = rt_rq->rt_se;
if (rt_se && !on_rt_rq(rt_se) && rt_rq->rt_nr_running) {
struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr;
enqueue_rt_entity(rt_se);
resched_task(rq_of_rt_rq(rt_rq)->curr);
if (rt_rq->highest_prio < curr->prio)
resched_task(curr);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册