aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_rt.c
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2008-01-25 15:08:07 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-25 15:08:07 -0500
commit4642dafdf93dc7d66ee33437b93a5e6b8cea20d2 (patch)
tree4e3fd9c95be1ed14e9f40b2dcf232c40e5ab8fef /kernel/sched_rt.c
parentf65eda4f789168ba5ff3fa75546c29efeed19f58 (diff)
sched: push RT tasks from overloaded CPUs
This patch adds pushing of overloaded RT tasks from a runqueue that is having tasks (most likely RT tasks) added to the run queue. TODO: We don't cover the case of waking of new RT tasks (yet). Signed-off-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched_rt.c')
-rw-r--r--kernel/sched_rt.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c
index bacb32039e95..d38a8a559aa5 100644
--- a/kernel/sched_rt.c
+++ b/kernel/sched_rt.c
@@ -558,6 +558,15 @@ static void schedule_tail_balance_rt(struct rq *rq)
558 } 558 }
559} 559}
560 560
561
562static void wakeup_balance_rt(struct rq *rq, struct task_struct *p)
563{
564 if (unlikely(rt_task(p)) &&
565 !task_running(rq, p) &&
566 (p->prio >= rq->curr->prio))
567 push_rt_tasks(rq);
568}
569
561/* 570/*
562 * Load-balancing iterator. Note: while the runqueue stays locked 571 * Load-balancing iterator. Note: while the runqueue stays locked
563 * during the whole iteration, the current task might be 572 * during the whole iteration, the current task might be
@@ -665,6 +674,7 @@ move_one_task_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
665#else /* CONFIG_SMP */ 674#else /* CONFIG_SMP */
666# define schedule_tail_balance_rt(rq) do { } while (0) 675# define schedule_tail_balance_rt(rq) do { } while (0)
667# define schedule_balance_rt(rq, prev) do { } while (0) 676# define schedule_balance_rt(rq, prev) do { } while (0)
677# define wakeup_balance_rt(rq, p) do { } while (0)
668#endif /* CONFIG_SMP */ 678#endif /* CONFIG_SMP */
669 679
670static void task_tick_rt(struct rq *rq, struct task_struct *p) 680static void task_tick_rt(struct rq *rq, struct task_struct *p)