blob: 9becc3710b609c6b6ae44ce9c413287503c80c49 [file] [log] [blame]
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001/*
2 * Real-Time Scheduling Class (mapped to the SCHED_FIFO and SCHED_RR
3 * policies)
4 */
5
Steven Rostedt4fd29172008-01-25 21:08:06 +01006#ifdef CONFIG_SMP
7static cpumask_t rt_overload_mask;
8static atomic_t rto_count;
9static inline int rt_overloaded(void)
10{
11 return atomic_read(&rto_count);
12}
13static inline cpumask_t *rt_overload(void)
14{
15 return &rt_overload_mask;
16}
17static inline void rt_set_overload(struct rq *rq)
18{
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +010019 rq->rt.overloaded = 1;
Steven Rostedt4fd29172008-01-25 21:08:06 +010020 cpu_set(rq->cpu, rt_overload_mask);
21 /*
22 * Make sure the mask is visible before we set
23 * the overload count. That is checked to determine
24 * if we should look at the mask. It would be a shame
25 * if we looked at the mask, but the mask was not
26 * updated yet.
27 */
28 wmb();
29 atomic_inc(&rto_count);
30}
31static inline void rt_clear_overload(struct rq *rq)
32{
33 /* the order here really doesn't matter */
34 atomic_dec(&rto_count);
35 cpu_clear(rq->cpu, rt_overload_mask);
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +010036 rq->rt.overloaded = 0;
Steven Rostedt4fd29172008-01-25 21:08:06 +010037}
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010038
39static void update_rt_migration(struct rq *rq)
40{
41 if (rq->rt.rt_nr_migratory && (rq->rt.rt_nr_running > 1))
42 rt_set_overload(rq);
43 else
44 rt_clear_overload(rq);
45}
Steven Rostedt4fd29172008-01-25 21:08:06 +010046#endif /* CONFIG_SMP */
47
Ingo Molnarbb44e5d2007-07-09 18:51:58 +020048/*
49 * Update the current task's runtime statistics. Skip current tasks that
50 * are not in our scheduling class.
51 */
Alexey Dobriyana9957442007-10-15 17:00:13 +020052static void update_curr_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +020053{
54 struct task_struct *curr = rq->curr;
55 u64 delta_exec;
56
57 if (!task_has_rt_policy(curr))
58 return;
59
Ingo Molnard2819182007-08-09 11:16:47 +020060 delta_exec = rq->clock - curr->se.exec_start;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +020061 if (unlikely((s64)delta_exec < 0))
62 delta_exec = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +020063
64 schedstat_set(curr->se.exec_max, max(curr->se.exec_max, delta_exec));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +020065
66 curr->se.sum_exec_runtime += delta_exec;
Ingo Molnard2819182007-08-09 11:16:47 +020067 curr->se.exec_start = rq->clock;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +010068 cpuacct_charge(curr, delta_exec);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +020069}
70
Steven Rostedt63489e42008-01-25 21:08:03 +010071static inline void inc_rt_tasks(struct task_struct *p, struct rq *rq)
72{
73 WARN_ON(!rt_task(p));
74 rq->rt.rt_nr_running++;
Steven Rostedt764a9d62008-01-25 21:08:04 +010075#ifdef CONFIG_SMP
76 if (p->prio < rq->rt.highest_prio)
77 rq->rt.highest_prio = p->prio;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010078 if (p->nr_cpus_allowed > 1)
79 rq->rt.rt_nr_migratory++;
80
81 update_rt_migration(rq);
Steven Rostedt764a9d62008-01-25 21:08:04 +010082#endif /* CONFIG_SMP */
Steven Rostedt63489e42008-01-25 21:08:03 +010083}
84
85static inline void dec_rt_tasks(struct task_struct *p, struct rq *rq)
86{
87 WARN_ON(!rt_task(p));
88 WARN_ON(!rq->rt.rt_nr_running);
89 rq->rt.rt_nr_running--;
Steven Rostedt764a9d62008-01-25 21:08:04 +010090#ifdef CONFIG_SMP
91 if (rq->rt.rt_nr_running) {
92 struct rt_prio_array *array;
93
94 WARN_ON(p->prio < rq->rt.highest_prio);
95 if (p->prio == rq->rt.highest_prio) {
96 /* recalculate */
97 array = &rq->rt.active;
98 rq->rt.highest_prio =
99 sched_find_first_bit(array->bitmap);
100 } /* otherwise leave rq->highest prio alone */
101 } else
102 rq->rt.highest_prio = MAX_RT_PRIO;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100103 if (p->nr_cpus_allowed > 1)
104 rq->rt.rt_nr_migratory--;
105
106 update_rt_migration(rq);
Steven Rostedt764a9d62008-01-25 21:08:04 +0100107#endif /* CONFIG_SMP */
Steven Rostedt63489e42008-01-25 21:08:03 +0100108}
109
Ingo Molnarfd390f62007-08-09 11:16:48 +0200110static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200111{
112 struct rt_prio_array *array = &rq->rt.active;
113
114 list_add_tail(&p->run_list, array->queue + p->prio);
115 __set_bit(p->prio, array->bitmap);
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +0100116 inc_cpu_load(rq, p->se.load.weight);
Steven Rostedt63489e42008-01-25 21:08:03 +0100117
118 inc_rt_tasks(p, rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200119}
120
121/*
122 * Adding/removing a task to/from a priority array:
123 */
Ingo Molnarf02231e2007-08-09 11:16:48 +0200124static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200125{
126 struct rt_prio_array *array = &rq->rt.active;
127
Ingo Molnarf1e14ef2007-08-09 11:16:48 +0200128 update_curr_rt(rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200129
130 list_del(&p->run_list);
131 if (list_empty(array->queue + p->prio))
132 __clear_bit(p->prio, array->bitmap);
Srivatsa Vaddagiri58e2d4c2008-01-25 21:08:00 +0100133 dec_cpu_load(rq, p->se.load.weight);
Steven Rostedt63489e42008-01-25 21:08:03 +0100134
135 dec_rt_tasks(p, rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200136}
137
138/*
139 * Put task to the end of the run list without the overhead of dequeue
140 * followed by enqueue.
141 */
142static void requeue_task_rt(struct rq *rq, struct task_struct *p)
143{
144 struct rt_prio_array *array = &rq->rt.active;
145
146 list_move_tail(&p->run_list, array->queue + p->prio);
147}
148
149static void
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +0200150yield_task_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200151{
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +0200152 requeue_task_rt(rq, rq->curr);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200153}
154
Gregory Haskinse7693a32008-01-25 21:08:09 +0100155#ifdef CONFIG_SMP
Gregory Haskins318e0892008-01-25 21:08:10 +0100156static int find_lowest_rq(struct task_struct *task);
157
Gregory Haskinse7693a32008-01-25 21:08:09 +0100158static int select_task_rq_rt(struct task_struct *p, int sync)
159{
Gregory Haskins318e0892008-01-25 21:08:10 +0100160 struct rq *rq = task_rq(p);
161
162 /*
Steven Rostedte1f47d82008-01-25 21:08:12 +0100163 * If the current task is an RT task, then
164 * try to see if we can wake this RT task up on another
165 * runqueue. Otherwise simply start this RT task
166 * on its current runqueue.
167 *
168 * We want to avoid overloading runqueues. Even if
169 * the RT task is of higher priority than the current RT task.
170 * RT tasks behave differently than other tasks. If
171 * one gets preempted, we try to push it off to another queue.
172 * So trying to keep a preempting RT task on the same
173 * cache hot CPU will force the running RT task to
174 * a cold CPU. So we waste all the cache for the lower
175 * RT task in hopes of saving some of a RT task
176 * that is just being woken and probably will have
177 * cold cache anyway.
Gregory Haskins318e0892008-01-25 21:08:10 +0100178 */
Steven Rostedte1f47d82008-01-25 21:08:12 +0100179 if (unlikely(rt_task(rq->curr))) {
Gregory Haskins318e0892008-01-25 21:08:10 +0100180 int cpu = find_lowest_rq(p);
181
182 return (cpu == -1) ? task_cpu(p) : cpu;
183 }
184
185 /*
186 * Otherwise, just let it ride on the affined RQ and the
187 * post-schedule router will push the preempted task away
188 */
Gregory Haskinse7693a32008-01-25 21:08:09 +0100189 return task_cpu(p);
190}
191#endif /* CONFIG_SMP */
192
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200193/*
194 * Preempt the current task with a newly woken task if needed:
195 */
196static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p)
197{
198 if (p->prio < rq->curr->prio)
199 resched_task(rq->curr);
200}
201
Ingo Molnarfb8d4722007-08-09 11:16:48 +0200202static struct task_struct *pick_next_task_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200203{
204 struct rt_prio_array *array = &rq->rt.active;
205 struct task_struct *next;
206 struct list_head *queue;
207 int idx;
208
209 idx = sched_find_first_bit(array->bitmap);
210 if (idx >= MAX_RT_PRIO)
211 return NULL;
212
213 queue = array->queue + idx;
214 next = list_entry(queue->next, struct task_struct, run_list);
215
Ingo Molnard2819182007-08-09 11:16:47 +0200216 next->se.exec_start = rq->clock;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200217
218 return next;
219}
220
Ingo Molnar31ee5292007-08-09 11:16:49 +0200221static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200222{
Ingo Molnarf1e14ef2007-08-09 11:16:48 +0200223 update_curr_rt(rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200224 p->se.exec_start = 0;
225}
226
Peter Williams681f3e62007-10-24 18:23:51 +0200227#ifdef CONFIG_SMP
Steven Rostedte8fa1362008-01-25 21:08:05 +0100228/* Only try algorithms three times */
229#define RT_MAX_TRIES 3
230
231static int double_lock_balance(struct rq *this_rq, struct rq *busiest);
232static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep);
233
Steven Rostedtf65eda42008-01-25 21:08:07 +0100234static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
235{
236 if (!task_running(rq, p) &&
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100237 (cpu < 0 || cpu_isset(cpu, p->cpus_allowed)) &&
238 (p->nr_cpus_allowed > 1))
Steven Rostedtf65eda42008-01-25 21:08:07 +0100239 return 1;
240 return 0;
241}
242
Steven Rostedte8fa1362008-01-25 21:08:05 +0100243/* Return the second highest RT task, NULL otherwise */
Steven Rostedtf65eda42008-01-25 21:08:07 +0100244static struct task_struct *pick_next_highest_task_rt(struct rq *rq,
245 int cpu)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100246{
247 struct rt_prio_array *array = &rq->rt.active;
248 struct task_struct *next;
249 struct list_head *queue;
250 int idx;
251
252 assert_spin_locked(&rq->lock);
253
254 if (likely(rq->rt.rt_nr_running < 2))
255 return NULL;
256
257 idx = sched_find_first_bit(array->bitmap);
258 if (unlikely(idx >= MAX_RT_PRIO)) {
259 WARN_ON(1); /* rt_nr_running is bad */
260 return NULL;
261 }
262
263 queue = array->queue + idx;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100264 BUG_ON(list_empty(queue));
265
Steven Rostedte8fa1362008-01-25 21:08:05 +0100266 next = list_entry(queue->next, struct task_struct, run_list);
Steven Rostedtf65eda42008-01-25 21:08:07 +0100267 if (unlikely(pick_rt_task(rq, next, cpu)))
268 goto out;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100269
270 if (queue->next->next != queue) {
271 /* same prio task */
272 next = list_entry(queue->next->next, struct task_struct, run_list);
Steven Rostedtf65eda42008-01-25 21:08:07 +0100273 if (pick_rt_task(rq, next, cpu))
274 goto out;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100275 }
276
Steven Rostedtf65eda42008-01-25 21:08:07 +0100277 retry:
Steven Rostedte8fa1362008-01-25 21:08:05 +0100278 /* slower, but more flexible */
279 idx = find_next_bit(array->bitmap, MAX_RT_PRIO, idx+1);
Steven Rostedtf65eda42008-01-25 21:08:07 +0100280 if (unlikely(idx >= MAX_RT_PRIO))
Steven Rostedte8fa1362008-01-25 21:08:05 +0100281 return NULL;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100282
283 queue = array->queue + idx;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100284 BUG_ON(list_empty(queue));
Steven Rostedte8fa1362008-01-25 21:08:05 +0100285
Steven Rostedtf65eda42008-01-25 21:08:07 +0100286 list_for_each_entry(next, queue, run_list) {
287 if (pick_rt_task(rq, next, cpu))
288 goto out;
289 }
290
291 goto retry;
292
293 out:
Steven Rostedte8fa1362008-01-25 21:08:05 +0100294 return next;
295}
296
297static DEFINE_PER_CPU(cpumask_t, local_cpu_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100298static DEFINE_PER_CPU(cpumask_t, valid_cpu_mask);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100299
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100300static int find_lowest_cpus(struct task_struct *task, cpumask_t *lowest_mask)
Gregory Haskins07b40322008-01-25 21:08:10 +0100301{
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100302 int cpu;
303 cpumask_t *valid_mask = &__get_cpu_var(valid_cpu_mask);
304 int lowest_prio = -1;
305 int ret = 0;
Gregory Haskins07b40322008-01-25 21:08:10 +0100306
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100307 cpus_clear(*lowest_mask);
308 cpus_and(*valid_mask, cpu_online_map, task->cpus_allowed);
Gregory Haskins07b40322008-01-25 21:08:10 +0100309
310 /*
311 * Scan each rq for the lowest prio.
312 */
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100313 for_each_cpu_mask(cpu, *valid_mask) {
Gregory Haskins07b40322008-01-25 21:08:10 +0100314 struct rq *rq = cpu_rq(cpu);
315
Gregory Haskins07b40322008-01-25 21:08:10 +0100316 /* We look for lowest RT prio or non-rt CPU */
317 if (rq->rt.highest_prio >= MAX_RT_PRIO) {
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100318 if (ret)
319 cpus_clear(*lowest_mask);
320 cpu_set(rq->cpu, *lowest_mask);
321 return 1;
Gregory Haskins07b40322008-01-25 21:08:10 +0100322 }
323
324 /* no locking for now */
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100325 if ((rq->rt.highest_prio > task->prio)
326 && (rq->rt.highest_prio >= lowest_prio)) {
327 if (rq->rt.highest_prio > lowest_prio) {
328 /* new low - clear old data */
329 lowest_prio = rq->rt.highest_prio;
330 cpus_clear(*lowest_mask);
331 }
332 cpu_set(rq->cpu, *lowest_mask);
333 ret = 1;
Gregory Haskins07b40322008-01-25 21:08:10 +0100334 }
335 }
336
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100337 return ret;
338}
339
340static inline int pick_optimal_cpu(int this_cpu, cpumask_t *mask)
341{
342 int first;
343
344 /* "this_cpu" is cheaper to preempt than a remote processor */
345 if ((this_cpu != -1) && cpu_isset(this_cpu, *mask))
346 return this_cpu;
347
348 first = first_cpu(*mask);
349 if (first != NR_CPUS)
350 return first;
351
352 return -1;
353}
354
355static int find_lowest_rq(struct task_struct *task)
356{
357 struct sched_domain *sd;
358 cpumask_t *lowest_mask = &__get_cpu_var(local_cpu_mask);
359 int this_cpu = smp_processor_id();
360 int cpu = task_cpu(task);
361
362 if (!find_lowest_cpus(task, lowest_mask))
363 return -1;
364
365 /*
366 * At this point we have built a mask of cpus representing the
367 * lowest priority tasks in the system. Now we want to elect
368 * the best one based on our affinity and topology.
369 *
370 * We prioritize the last cpu that the task executed on since
371 * it is most likely cache-hot in that location.
372 */
373 if (cpu_isset(cpu, *lowest_mask))
374 return cpu;
375
376 /*
377 * Otherwise, we consult the sched_domains span maps to figure
378 * out which cpu is logically closest to our hot cache data.
379 */
380 if (this_cpu == cpu)
381 this_cpu = -1; /* Skip this_cpu opt if the same */
382
383 for_each_domain(cpu, sd) {
384 if (sd->flags & SD_WAKE_AFFINE) {
385 cpumask_t domain_mask;
386 int best_cpu;
387
388 cpus_and(domain_mask, sd->span, *lowest_mask);
389
390 best_cpu = pick_optimal_cpu(this_cpu,
391 &domain_mask);
392 if (best_cpu != -1)
393 return best_cpu;
394 }
395 }
396
397 /*
398 * And finally, if there were no matches within the domains
399 * just give the caller *something* to work with from the compatible
400 * locations.
401 */
402 return pick_optimal_cpu(this_cpu, lowest_mask);
Gregory Haskins07b40322008-01-25 21:08:10 +0100403}
404
Steven Rostedte8fa1362008-01-25 21:08:05 +0100405/* Will lock the rq it finds */
406static struct rq *find_lock_lowest_rq(struct task_struct *task,
Gregory Haskins07b40322008-01-25 21:08:10 +0100407 struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100408{
409 struct rq *lowest_rq = NULL;
410 int cpu;
411 int tries;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100412
413 for (tries = 0; tries < RT_MAX_TRIES; tries++) {
Gregory Haskins07b40322008-01-25 21:08:10 +0100414 cpu = find_lowest_rq(task);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100415
Gregory Haskins2de0b462008-01-25 21:08:10 +0100416 if ((cpu == -1) || (cpu == rq->cpu))
Steven Rostedte8fa1362008-01-25 21:08:05 +0100417 break;
418
Gregory Haskins07b40322008-01-25 21:08:10 +0100419 lowest_rq = cpu_rq(cpu);
420
Steven Rostedte8fa1362008-01-25 21:08:05 +0100421 /* if the prio of this runqueue changed, try again */
Gregory Haskins07b40322008-01-25 21:08:10 +0100422 if (double_lock_balance(rq, lowest_rq)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +0100423 /*
424 * We had to unlock the run queue. In
425 * the mean time, task could have
426 * migrated already or had its affinity changed.
427 * Also make sure that it wasn't scheduled on its rq.
428 */
Gregory Haskins07b40322008-01-25 21:08:10 +0100429 if (unlikely(task_rq(task) != rq ||
Steven Rostedte8fa1362008-01-25 21:08:05 +0100430 !cpu_isset(lowest_rq->cpu, task->cpus_allowed) ||
Gregory Haskins07b40322008-01-25 21:08:10 +0100431 task_running(rq, task) ||
Steven Rostedte8fa1362008-01-25 21:08:05 +0100432 !task->se.on_rq)) {
433 spin_unlock(&lowest_rq->lock);
434 lowest_rq = NULL;
435 break;
436 }
437 }
438
439 /* If this rq is still suitable use it. */
440 if (lowest_rq->rt.highest_prio > task->prio)
441 break;
442
443 /* try again */
444 spin_unlock(&lowest_rq->lock);
445 lowest_rq = NULL;
446 }
447
448 return lowest_rq;
449}
450
451/*
452 * If the current CPU has more than one RT task, see if the non
453 * running task can migrate over to a CPU that is running a task
454 * of lesser priority.
455 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100456static int push_rt_task(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100457{
458 struct task_struct *next_task;
459 struct rq *lowest_rq;
460 int ret = 0;
461 int paranoid = RT_MAX_TRIES;
462
Gregory Haskins697f0a42008-01-25 21:08:09 +0100463 assert_spin_locked(&rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100464
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100465 if (!rq->rt.overloaded)
466 return 0;
467
Gregory Haskins697f0a42008-01-25 21:08:09 +0100468 next_task = pick_next_highest_task_rt(rq, -1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100469 if (!next_task)
470 return 0;
471
472 retry:
Gregory Haskins697f0a42008-01-25 21:08:09 +0100473 if (unlikely(next_task == rq->curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +0100474 WARN_ON(1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100475 return 0;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100476 }
Steven Rostedte8fa1362008-01-25 21:08:05 +0100477
478 /*
479 * It's possible that the next_task slipped in of
480 * higher priority than current. If that's the case
481 * just reschedule current.
482 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100483 if (unlikely(next_task->prio < rq->curr->prio)) {
484 resched_task(rq->curr);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100485 return 0;
486 }
487
Gregory Haskins697f0a42008-01-25 21:08:09 +0100488 /* We might release rq lock */
Steven Rostedte8fa1362008-01-25 21:08:05 +0100489 get_task_struct(next_task);
490
491 /* find_lock_lowest_rq locks the rq if found */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100492 lowest_rq = find_lock_lowest_rq(next_task, rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100493 if (!lowest_rq) {
494 struct task_struct *task;
495 /*
Gregory Haskins697f0a42008-01-25 21:08:09 +0100496 * find lock_lowest_rq releases rq->lock
Steven Rostedte8fa1362008-01-25 21:08:05 +0100497 * so it is possible that next_task has changed.
498 * If it has, then try again.
499 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100500 task = pick_next_highest_task_rt(rq, -1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100501 if (unlikely(task != next_task) && task && paranoid--) {
502 put_task_struct(next_task);
503 next_task = task;
504 goto retry;
505 }
506 goto out;
507 }
508
509 assert_spin_locked(&lowest_rq->lock);
510
Gregory Haskins697f0a42008-01-25 21:08:09 +0100511 deactivate_task(rq, next_task, 0);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100512 set_task_cpu(next_task, lowest_rq->cpu);
513 activate_task(lowest_rq, next_task, 0);
514
515 resched_task(lowest_rq->curr);
516
517 spin_unlock(&lowest_rq->lock);
518
519 ret = 1;
520out:
521 put_task_struct(next_task);
522
523 return ret;
524}
525
526/*
527 * TODO: Currently we just use the second highest prio task on
528 * the queue, and stop when it can't migrate (or there's
529 * no more RT tasks). There may be a case where a lower
530 * priority RT task has a different affinity than the
531 * higher RT task. In this case the lower RT task could
532 * possibly be able to migrate where as the higher priority
533 * RT task could not. We currently ignore this issue.
534 * Enhancements are welcome!
535 */
536static void push_rt_tasks(struct rq *rq)
537{
538 /* push_rt_task will return true if it moved an RT */
539 while (push_rt_task(rq))
540 ;
541}
542
Steven Rostedtf65eda42008-01-25 21:08:07 +0100543static int pull_rt_task(struct rq *this_rq)
544{
545 struct task_struct *next;
546 struct task_struct *p;
547 struct rq *src_rq;
548 cpumask_t *rto_cpumask;
549 int this_cpu = this_rq->cpu;
550 int cpu;
551 int ret = 0;
552
553 assert_spin_locked(&this_rq->lock);
554
555 /*
556 * If cpusets are used, and we have overlapping
557 * run queue cpusets, then this algorithm may not catch all.
558 * This is just the price you pay on trying to keep
559 * dirtying caches down on large SMP machines.
560 */
561 if (likely(!rt_overloaded()))
562 return 0;
563
564 next = pick_next_task_rt(this_rq);
565
566 rto_cpumask = rt_overload();
567
568 for_each_cpu_mask(cpu, *rto_cpumask) {
569 if (this_cpu == cpu)
570 continue;
571
572 src_rq = cpu_rq(cpu);
573 if (unlikely(src_rq->rt.rt_nr_running <= 1)) {
574 /*
575 * It is possible that overlapping cpusets
576 * will miss clearing a non overloaded runqueue.
577 * Clear it now.
578 */
579 if (double_lock_balance(this_rq, src_rq)) {
580 /* unlocked our runqueue lock */
581 struct task_struct *old_next = next;
582 next = pick_next_task_rt(this_rq);
583 if (next != old_next)
584 ret = 1;
585 }
586 if (likely(src_rq->rt.rt_nr_running <= 1))
587 /*
588 * Small chance that this_rq->curr changed
589 * but it's really harmless here.
590 */
591 rt_clear_overload(this_rq);
592 else
593 /*
594 * Heh, the src_rq is now overloaded, since
595 * we already have the src_rq lock, go straight
596 * to pulling tasks from it.
597 */
598 goto try_pulling;
599 spin_unlock(&src_rq->lock);
600 continue;
601 }
602
603 /*
604 * We can potentially drop this_rq's lock in
605 * double_lock_balance, and another CPU could
606 * steal our next task - hence we must cause
607 * the caller to recalculate the next task
608 * in that case:
609 */
610 if (double_lock_balance(this_rq, src_rq)) {
611 struct task_struct *old_next = next;
612 next = pick_next_task_rt(this_rq);
613 if (next != old_next)
614 ret = 1;
615 }
616
617 /*
618 * Are there still pullable RT tasks?
619 */
620 if (src_rq->rt.rt_nr_running <= 1) {
621 spin_unlock(&src_rq->lock);
622 continue;
623 }
624
625 try_pulling:
626 p = pick_next_highest_task_rt(src_rq, this_cpu);
627
628 /*
629 * Do we have an RT task that preempts
630 * the to-be-scheduled task?
631 */
632 if (p && (!next || (p->prio < next->prio))) {
633 WARN_ON(p == src_rq->curr);
634 WARN_ON(!p->se.on_rq);
635
636 /*
637 * There's a chance that p is higher in priority
638 * than what's currently running on its cpu.
639 * This is just that p is wakeing up and hasn't
640 * had a chance to schedule. We only pull
641 * p if it is lower in priority than the
642 * current task on the run queue or
643 * this_rq next task is lower in prio than
644 * the current task on that rq.
645 */
646 if (p->prio < src_rq->curr->prio ||
647 (next && next->prio < src_rq->curr->prio))
648 goto bail;
649
650 ret = 1;
651
652 deactivate_task(src_rq, p, 0);
653 set_task_cpu(p, this_cpu);
654 activate_task(this_rq, p, 0);
655 /*
656 * We continue with the search, just in
657 * case there's an even higher prio task
658 * in another runqueue. (low likelyhood
659 * but possible)
660 */
661
662 /*
663 * Update next so that we won't pick a task
664 * on another cpu with a priority lower (or equal)
665 * than the one we just picked.
666 */
667 next = p;
668
669 }
670 bail:
671 spin_unlock(&src_rq->lock);
672 }
673
674 return ret;
675}
676
677static void schedule_balance_rt(struct rq *rq,
678 struct task_struct *prev)
679{
680 /* Try to pull RT tasks here if we lower this rq's prio */
681 if (unlikely(rt_task(prev)) &&
682 rq->rt.highest_prio > prev->prio)
683 pull_rt_task(rq);
684}
685
Steven Rostedte8fa1362008-01-25 21:08:05 +0100686static void schedule_tail_balance_rt(struct rq *rq)
687{
688 /*
689 * If we have more than one rt_task queued, then
690 * see if we can push the other rt_tasks off to other CPUS.
691 * Note we may release the rq lock, and since
692 * the lock was owned by prev, we need to release it
693 * first via finish_lock_switch and then reaquire it here.
694 */
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100695 if (unlikely(rq->rt.overloaded)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +0100696 spin_lock_irq(&rq->lock);
697 push_rt_tasks(rq);
698 spin_unlock_irq(&rq->lock);
699 }
700}
701
Steven Rostedt4642daf2008-01-25 21:08:07 +0100702
703static void wakeup_balance_rt(struct rq *rq, struct task_struct *p)
704{
705 if (unlikely(rt_task(p)) &&
706 !task_running(rq, p) &&
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100707 (p->prio >= rq->rt.highest_prio) &&
708 rq->rt.overloaded)
Steven Rostedt4642daf2008-01-25 21:08:07 +0100709 push_rt_tasks(rq);
710}
711
Peter Williams43010652007-08-09 11:16:46 +0200712static unsigned long
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200713load_balance_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamse1d14842007-10-24 18:23:51 +0200714 unsigned long max_load_move,
715 struct sched_domain *sd, enum cpu_idle_type idle,
716 int *all_pinned, int *this_best_prio)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200717{
Steven Rostedtc7a1e462008-01-25 21:08:07 +0100718 /* don't touch RT tasks */
719 return 0;
Peter Williamse1d14842007-10-24 18:23:51 +0200720}
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200721
Peter Williamse1d14842007-10-24 18:23:51 +0200722static int
723move_one_task_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
724 struct sched_domain *sd, enum cpu_idle_type idle)
725{
Steven Rostedtc7a1e462008-01-25 21:08:07 +0100726 /* don't touch RT tasks */
727 return 0;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200728}
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100729static void set_cpus_allowed_rt(struct task_struct *p, cpumask_t *new_mask)
730{
731 int weight = cpus_weight(*new_mask);
732
733 BUG_ON(!rt_task(p));
734
735 /*
736 * Update the migration status of the RQ if we have an RT task
737 * which is running AND changing its weight value.
738 */
739 if (p->se.on_rq && (weight != p->nr_cpus_allowed)) {
740 struct rq *rq = task_rq(p);
741
742 if ((p->nr_cpus_allowed <= 1) && (weight > 1))
743 rq->rt.rt_nr_migratory++;
744 else if((p->nr_cpus_allowed > 1) && (weight <= 1)) {
745 BUG_ON(!rq->rt.rt_nr_migratory);
746 rq->rt.rt_nr_migratory--;
747 }
748
749 update_rt_migration(rq);
750 }
751
752 p->cpus_allowed = *new_mask;
753 p->nr_cpus_allowed = weight;
754}
Steven Rostedte8fa1362008-01-25 21:08:05 +0100755#else /* CONFIG_SMP */
756# define schedule_tail_balance_rt(rq) do { } while (0)
Steven Rostedtf65eda42008-01-25 21:08:07 +0100757# define schedule_balance_rt(rq, prev) do { } while (0)
Steven Rostedt4642daf2008-01-25 21:08:07 +0100758# define wakeup_balance_rt(rq, p) do { } while (0)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100759#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200760
761static void task_tick_rt(struct rq *rq, struct task_struct *p)
762{
Peter Zijlstra67e2be02007-12-20 15:01:17 +0100763 update_curr_rt(rq);
764
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200765 /*
766 * RR tasks need a special form of timeslice management.
767 * FIFO tasks have no timeslices.
768 */
769 if (p->policy != SCHED_RR)
770 return;
771
772 if (--p->time_slice)
773 return;
774
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200775 p->time_slice = DEF_TIMESLICE;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200776
Dmitry Adamushko98fbc792007-08-24 20:39:10 +0200777 /*
778 * Requeue to the end of queue if we are not the only element
779 * on the queue:
780 */
781 if (p->run_list.prev != p->run_list.next) {
782 requeue_task_rt(rq, p);
783 set_tsk_need_resched(p);
784 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200785}
786
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200787static void set_curr_task_rt(struct rq *rq)
788{
789 struct task_struct *p = rq->curr;
790
791 p->se.exec_start = rq->clock;
792}
793
Ingo Molnar5522d5d2007-10-15 17:00:12 +0200794const struct sched_class rt_sched_class = {
795 .next = &fair_sched_class,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200796 .enqueue_task = enqueue_task_rt,
797 .dequeue_task = dequeue_task_rt,
798 .yield_task = yield_task_rt,
Gregory Haskinse7693a32008-01-25 21:08:09 +0100799#ifdef CONFIG_SMP
800 .select_task_rq = select_task_rq_rt,
801#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200802
803 .check_preempt_curr = check_preempt_curr_rt,
804
805 .pick_next_task = pick_next_task_rt,
806 .put_prev_task = put_prev_task_rt,
807
Peter Williams681f3e62007-10-24 18:23:51 +0200808#ifdef CONFIG_SMP
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200809 .load_balance = load_balance_rt,
Peter Williamse1d14842007-10-24 18:23:51 +0200810 .move_one_task = move_one_task_rt,
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100811 .set_cpus_allowed = set_cpus_allowed_rt,
Peter Williams681f3e62007-10-24 18:23:51 +0200812#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200813
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +0200814 .set_curr_task = set_curr_task_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200815 .task_tick = task_tick_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200816};