diff options
author | Gregory Haskins <ghaskins@novell.com> | 2008-12-29 09:39:50 -0500 |
---|---|---|
committer | Gregory Haskins <ghaskins@novell.com> | 2008-12-29 09:39:50 -0500 |
commit | 777c2f389e463428fd7e2871051a84d7fe84b172 (patch) | |
tree | ba82f0105ba069ac6ba724f85f98144459e0c436 /kernel/sched_rt.c | |
parent | 74ab8e4f6412c0b2d730fe5de28dc21de8b92c01 (diff) |
sched: only try to push a task on wakeup if it is migratable
There is no sense in wasting time trying to push a task away that
cannot move anywhere else. We gain no benefit from trying to push
other tasks at this point, so if the task being woken up is non
migratable, just skip the whole operation. This reduces overhead
in the wakeup path for certain tasks.
Signed-off-by: Gregory Haskins <ghaskins@novell.com>
Diffstat (limited to 'kernel/sched_rt.c')
-rw-r--r-- | kernel/sched_rt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c index d047f288c411..8d33843cb2c4 100644 --- a/kernel/sched_rt.c +++ b/kernel/sched_rt.c | |||
@@ -1314,7 +1314,8 @@ static void task_wake_up_rt(struct rq *rq, struct task_struct *p) | |||
1314 | { | 1314 | { |
1315 | if (!task_running(rq, p) && | 1315 | if (!task_running(rq, p) && |
1316 | !test_tsk_need_resched(rq->curr) && | 1316 | !test_tsk_need_resched(rq->curr) && |
1317 | rq->rt.overloaded) | 1317 | rq->rt.overloaded && |
1318 | p->rt.nr_cpus_allowed > 1) | ||
1318 | push_rt_tasks(rq); | 1319 | push_rt_tasks(rq); |
1319 | } | 1320 | } |
1320 | 1321 | ||