aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_rt.c
diff options
context:
space:
mode:
authorGregory Haskins <ghaskins@novell.com>2008-01-25 15:08:10 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-25 15:08:10 -0500
commit318e0893ce3f524ca045f9fd9dfd567c0a6f9446 (patch)
tree94eb9b03fc51033e87bc222861a5906233abae67 /kernel/sched_rt.c
parent2de0b4639f4b1b6bfe31f795e5855f041f177170 (diff)
sched: pre-route RT tasks on wakeup
In the original patch series that Steven Rostedt and I worked on together, we both took different approaches to low-priority wakeup path. I utilized "pre-routing" (push the task away to a less important RQ before activating) approach, while Steve utilized a "post-routing" approach. The advantage of my approach is that you avoid the overhead of a wasted activate/deactivate cycle and peripherally related burdens. The advantage of Steve's method is that it neatly solves an issue preventing a "pull" optimization from being deployed. In the end, we ended up deploying Steve's idea. But it later dawned on me that we could get the best of both worlds by deploying both ideas together, albeit slightly modified. The idea is simple: Use a "light-weight" lookup for pre-routing, since we only need to approximate a good home for the task. And we also retain the post-routing push logic to clean up any inaccuracies caused by a condition of "priority mistargeting" caused by the lightweight lookup. Most of the time, the pre-routing should work and yield lower overhead. In the cases where it doesnt, the post-router will bat cleanup. Signed-off-by: Gregory Haskins <ghaskins@novell.com> 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.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c
index 95f36f61ae1d..ac7d06786454 100644
--- a/kernel/sched_rt.c
+++ b/kernel/sched_rt.c
@@ -151,8 +151,27 @@ yield_task_rt(struct rq *rq)
151} 151}
152 152
153#ifdef CONFIG_SMP 153#ifdef CONFIG_SMP
154static int find_lowest_rq(struct task_struct *task);
155
154static int select_task_rq_rt(struct task_struct *p, int sync) 156static int select_task_rq_rt(struct task_struct *p, int sync)
155{ 157{
158 struct rq *rq = task_rq(p);
159
160 /*
161 * If the task will not preempt the RQ, try to find a better RQ
162 * before we even activate the task
163 */
164 if ((p->prio >= rq->rt.highest_prio)
165 && (p->nr_cpus_allowed > 1)) {
166 int cpu = find_lowest_rq(p);
167
168 return (cpu == -1) ? task_cpu(p) : cpu;
169 }
170
171 /*
172 * Otherwise, just let it ride on the affined RQ and the
173 * post-schedule router will push the preempted task away
174 */
156 return task_cpu(p); 175 return task_cpu(p);
157} 176}
158#endif /* CONFIG_SMP */ 177#endif /* CONFIG_SMP */