sched: debug: add some debug code to handle the full hierarchy
[linux-block.git] / kernel / sched_rt.c
CommitLineData
bb44e5d1
IM
1/*
2 * Real-Time Scheduling Class (mapped to the SCHED_FIFO and SCHED_RR
3 * policies)
4 */
5
4fd29176 6#ifdef CONFIG_SMP
84de4274 7
637f5085 8static inline int rt_overloaded(struct rq *rq)
4fd29176 9{
637f5085 10 return atomic_read(&rq->rd->rto_count);
4fd29176 11}
84de4274 12
4fd29176
SR
13static inline void rt_set_overload(struct rq *rq)
14{
637f5085 15 cpu_set(rq->cpu, rq->rd->rto_mask);
4fd29176
SR
16 /*
17 * Make sure the mask is visible before we set
18 * the overload count. That is checked to determine
19 * if we should look at the mask. It would be a shame
20 * if we looked at the mask, but the mask was not
21 * updated yet.
22 */
23 wmb();
637f5085 24 atomic_inc(&rq->rd->rto_count);
4fd29176 25}
84de4274 26
4fd29176
SR
27static inline void rt_clear_overload(struct rq *rq)
28{
29 /* the order here really doesn't matter */
637f5085
GH
30 atomic_dec(&rq->rd->rto_count);
31 cpu_clear(rq->cpu, rq->rd->rto_mask);
4fd29176 32}
73fe6aae
GH
33
34static void update_rt_migration(struct rq *rq)
35{
637f5085 36 if (rq->rt.rt_nr_migratory && (rq->rt.rt_nr_running > 1)) {
cdc8eb98
GH
37 if (!rq->rt.overloaded) {
38 rt_set_overload(rq);
39 rq->rt.overloaded = 1;
40 }
41 } else if (rq->rt.overloaded) {
73fe6aae 42 rt_clear_overload(rq);
637f5085
GH
43 rq->rt.overloaded = 0;
44 }
73fe6aae 45}
4fd29176
SR
46#endif /* CONFIG_SMP */
47
6f505b16 48static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
fa85ae24 49{
6f505b16
PZ
50 return container_of(rt_se, struct task_struct, rt);
51}
52
53static inline int on_rt_rq(struct sched_rt_entity *rt_se)
54{
55 return !list_empty(&rt_se->run_list);
56}
57
052f1dc7 58#ifdef CONFIG_RT_GROUP_SCHED
6f505b16 59
9f0c1e56 60static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
6f505b16
PZ
61{
62 if (!rt_rq->tg)
9f0c1e56 63 return RUNTIME_INF;
6f505b16 64
ac086bc2
PZ
65 return rt_rq->rt_runtime;
66}
67
68static inline u64 sched_rt_period(struct rt_rq *rt_rq)
69{
70 return ktime_to_ns(rt_rq->tg->rt_bandwidth.rt_period);
6f505b16
PZ
71}
72
73#define for_each_leaf_rt_rq(rt_rq, rq) \
74 list_for_each_entry(rt_rq, &rq->leaf_rt_rq_list, leaf_rt_rq_list)
75
76static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
77{
78 return rt_rq->rq;
79}
80
81static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
82{
83 return rt_se->rt_rq;
84}
85
86#define for_each_sched_rt_entity(rt_se) \
87 for (; rt_se; rt_se = rt_se->parent)
88
89static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
90{
91 return rt_se->my_q;
92}
93
94static void enqueue_rt_entity(struct sched_rt_entity *rt_se);
95static void dequeue_rt_entity(struct sched_rt_entity *rt_se);
96
9f0c1e56 97static void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
6f505b16
PZ
98{
99 struct sched_rt_entity *rt_se = rt_rq->rt_se;
100
101 if (rt_se && !on_rt_rq(rt_se) && rt_rq->rt_nr_running) {
1020387f
PZ
102 struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr;
103
6f505b16 104 enqueue_rt_entity(rt_se);
1020387f
PZ
105 if (rt_rq->highest_prio < curr->prio)
106 resched_task(curr);
6f505b16
PZ
107 }
108}
109
9f0c1e56 110static void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
6f505b16
PZ
111{
112 struct sched_rt_entity *rt_se = rt_rq->rt_se;
113
114 if (rt_se && on_rt_rq(rt_se))
115 dequeue_rt_entity(rt_se);
116}
117
23b0fdfc
PZ
118static inline int rt_rq_throttled(struct rt_rq *rt_rq)
119{
120 return rt_rq->rt_throttled && !rt_rq->rt_nr_boosted;
121}
122
123static int rt_se_boosted(struct sched_rt_entity *rt_se)
124{
125 struct rt_rq *rt_rq = group_rt_rq(rt_se);
126 struct task_struct *p;
127
128 if (rt_rq)
129 return !!rt_rq->rt_nr_boosted;
130
131 p = rt_task_of(rt_se);
132 return p->prio != p->normal_prio;
133}
134
d0b27fa7
PZ
135#ifdef CONFIG_SMP
136static inline cpumask_t sched_rt_period_mask(void)
137{
138 return cpu_rq(smp_processor_id())->rd->span;
139}
6f505b16 140#else
d0b27fa7
PZ
141static inline cpumask_t sched_rt_period_mask(void)
142{
143 return cpu_online_map;
144}
145#endif
6f505b16 146
d0b27fa7
PZ
147static inline
148struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
6f505b16 149{
d0b27fa7
PZ
150 return container_of(rt_b, struct task_group, rt_bandwidth)->rt_rq[cpu];
151}
9f0c1e56 152
ac086bc2
PZ
153static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
154{
155 return &rt_rq->tg->rt_bandwidth;
156}
157
d0b27fa7
PZ
158#else
159
160static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
161{
ac086bc2
PZ
162 return rt_rq->rt_runtime;
163}
164
165static inline u64 sched_rt_period(struct rt_rq *rt_rq)
166{
167 return ktime_to_ns(def_rt_bandwidth.rt_period);
6f505b16
PZ
168}
169
170#define for_each_leaf_rt_rq(rt_rq, rq) \
171 for (rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
172
173static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
174{
175 return container_of(rt_rq, struct rq, rt);
176}
177
178static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
179{
180 struct task_struct *p = rt_task_of(rt_se);
181 struct rq *rq = task_rq(p);
182
183 return &rq->rt;
184}
185
186#define for_each_sched_rt_entity(rt_se) \
187 for (; rt_se; rt_se = NULL)
188
189static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
190{
191 return NULL;
192}
193
9f0c1e56 194static inline void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
6f505b16
PZ
195{
196}
197
9f0c1e56 198static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
6f505b16
PZ
199{
200}
201
23b0fdfc
PZ
202static inline int rt_rq_throttled(struct rt_rq *rt_rq)
203{
204 return rt_rq->rt_throttled;
205}
d0b27fa7
PZ
206
207static inline cpumask_t sched_rt_period_mask(void)
208{
209 return cpu_online_map;
210}
211
212static inline
213struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
214{
215 return &cpu_rq(cpu)->rt;
216}
217
ac086bc2
PZ
218static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
219{
220 return &def_rt_bandwidth;
221}
222
6f505b16
PZ
223#endif
224
d0b27fa7
PZ
225static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun)
226{
227 int i, idle = 1;
228 cpumask_t span;
229
230 if (rt_b->rt_runtime == RUNTIME_INF)
231 return 1;
232
233 span = sched_rt_period_mask();
234 for_each_cpu_mask(i, span) {
235 int enqueue = 0;
236 struct rt_rq *rt_rq = sched_rt_period_rt_rq(rt_b, i);
237 struct rq *rq = rq_of_rt_rq(rt_rq);
238
239 spin_lock(&rq->lock);
240 if (rt_rq->rt_time) {
ac086bc2 241 u64 runtime;
d0b27fa7 242
ac086bc2
PZ
243 spin_lock(&rt_rq->rt_runtime_lock);
244 runtime = rt_rq->rt_runtime;
d0b27fa7
PZ
245 rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime);
246 if (rt_rq->rt_throttled && rt_rq->rt_time < runtime) {
247 rt_rq->rt_throttled = 0;
248 enqueue = 1;
249 }
250 if (rt_rq->rt_time || rt_rq->rt_nr_running)
251 idle = 0;
ac086bc2 252 spin_unlock(&rt_rq->rt_runtime_lock);
d0b27fa7
PZ
253 }
254
255 if (enqueue)
256 sched_rt_rq_enqueue(rt_rq);
257 spin_unlock(&rq->lock);
258 }
259
260 return idle;
261}
262
ac086bc2
PZ
263#ifdef CONFIG_SMP
264static int balance_runtime(struct rt_rq *rt_rq)
265{
266 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
267 struct root_domain *rd = cpu_rq(smp_processor_id())->rd;
268 int i, weight, more = 0;
269 u64 rt_period;
270
271 weight = cpus_weight(rd->span);
272
273 spin_lock(&rt_b->rt_runtime_lock);
274 rt_period = ktime_to_ns(rt_b->rt_period);
275 for_each_cpu_mask(i, rd->span) {
276 struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
277 s64 diff;
278
279 if (iter == rt_rq)
280 continue;
281
282 spin_lock(&iter->rt_runtime_lock);
283 diff = iter->rt_runtime - iter->rt_time;
284 if (diff > 0) {
285 do_div(diff, weight);
286 if (rt_rq->rt_runtime + diff > rt_period)
287 diff = rt_period - rt_rq->rt_runtime;
288 iter->rt_runtime -= diff;
289 rt_rq->rt_runtime += diff;
290 more = 1;
291 if (rt_rq->rt_runtime == rt_period) {
292 spin_unlock(&iter->rt_runtime_lock);
293 break;
294 }
295 }
296 spin_unlock(&iter->rt_runtime_lock);
297 }
298 spin_unlock(&rt_b->rt_runtime_lock);
299
300 return more;
301}
302#endif
303
6f505b16
PZ
304static inline int rt_se_prio(struct sched_rt_entity *rt_se)
305{
052f1dc7 306#ifdef CONFIG_RT_GROUP_SCHED
6f505b16
PZ
307 struct rt_rq *rt_rq = group_rt_rq(rt_se);
308
309 if (rt_rq)
310 return rt_rq->highest_prio;
311#endif
312
313 return rt_task_of(rt_se)->prio;
314}
315
9f0c1e56 316static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
6f505b16 317{
9f0c1e56 318 u64 runtime = sched_rt_runtime(rt_rq);
fa85ae24 319
9f0c1e56 320 if (runtime == RUNTIME_INF)
fa85ae24
PZ
321 return 0;
322
323 if (rt_rq->rt_throttled)
23b0fdfc 324 return rt_rq_throttled(rt_rq);
fa85ae24 325
ac086bc2
PZ
326 if (sched_rt_runtime(rt_rq) >= sched_rt_period(rt_rq))
327 return 0;
328
329#ifdef CONFIG_SMP
330 if (rt_rq->rt_time > runtime) {
331 int more;
332
333 spin_unlock(&rt_rq->rt_runtime_lock);
334 more = balance_runtime(rt_rq);
335 spin_lock(&rt_rq->rt_runtime_lock);
336
337 if (more)
338 runtime = sched_rt_runtime(rt_rq);
339 }
340#endif
341
9f0c1e56 342 if (rt_rq->rt_time > runtime) {
6f505b16 343 rt_rq->rt_throttled = 1;
23b0fdfc 344 if (rt_rq_throttled(rt_rq)) {
9f0c1e56 345 sched_rt_rq_dequeue(rt_rq);
23b0fdfc
PZ
346 return 1;
347 }
fa85ae24
PZ
348 }
349
350 return 0;
351}
352
bb44e5d1
IM
353/*
354 * Update the current task's runtime statistics. Skip current tasks that
355 * are not in our scheduling class.
356 */
a9957449 357static void update_curr_rt(struct rq *rq)
bb44e5d1
IM
358{
359 struct task_struct *curr = rq->curr;
6f505b16
PZ
360 struct sched_rt_entity *rt_se = &curr->rt;
361 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
bb44e5d1
IM
362 u64 delta_exec;
363
364 if (!task_has_rt_policy(curr))
365 return;
366
d281918d 367 delta_exec = rq->clock - curr->se.exec_start;
bb44e5d1
IM
368 if (unlikely((s64)delta_exec < 0))
369 delta_exec = 0;
6cfb0d5d
IM
370
371 schedstat_set(curr->se.exec_max, max(curr->se.exec_max, delta_exec));
bb44e5d1
IM
372
373 curr->se.sum_exec_runtime += delta_exec;
d281918d 374 curr->se.exec_start = rq->clock;
d842de87 375 cpuacct_charge(curr, delta_exec);
fa85ae24 376
354d60c2
DG
377 for_each_sched_rt_entity(rt_se) {
378 rt_rq = rt_rq_of_se(rt_se);
379
380 spin_lock(&rt_rq->rt_runtime_lock);
381 rt_rq->rt_time += delta_exec;
382 if (sched_rt_runtime_exceeded(rt_rq))
383 resched_task(curr);
384 spin_unlock(&rt_rq->rt_runtime_lock);
385 }
bb44e5d1
IM
386}
387
6f505b16
PZ
388static inline
389void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
63489e45 390{
6f505b16
PZ
391 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
392 rt_rq->rt_nr_running++;
052f1dc7 393#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
6f505b16
PZ
394 if (rt_se_prio(rt_se) < rt_rq->highest_prio)
395 rt_rq->highest_prio = rt_se_prio(rt_se);
396#endif
764a9d6f 397#ifdef CONFIG_SMP
6f505b16
PZ
398 if (rt_se->nr_cpus_allowed > 1) {
399 struct rq *rq = rq_of_rt_rq(rt_rq);
73fe6aae 400 rq->rt.rt_nr_migratory++;
6f505b16 401 }
73fe6aae 402
6f505b16
PZ
403 update_rt_migration(rq_of_rt_rq(rt_rq));
404#endif
052f1dc7 405#ifdef CONFIG_RT_GROUP_SCHED
23b0fdfc
PZ
406 if (rt_se_boosted(rt_se))
407 rt_rq->rt_nr_boosted++;
d0b27fa7
PZ
408
409 if (rt_rq->tg)
410 start_rt_bandwidth(&rt_rq->tg->rt_bandwidth);
411#else
412 start_rt_bandwidth(&def_rt_bandwidth);
23b0fdfc 413#endif
63489e45
SR
414}
415
6f505b16
PZ
416static inline
417void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
63489e45 418{
6f505b16
PZ
419 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
420 WARN_ON(!rt_rq->rt_nr_running);
421 rt_rq->rt_nr_running--;
052f1dc7 422#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
6f505b16 423 if (rt_rq->rt_nr_running) {
764a9d6f
SR
424 struct rt_prio_array *array;
425
6f505b16
PZ
426 WARN_ON(rt_se_prio(rt_se) < rt_rq->highest_prio);
427 if (rt_se_prio(rt_se) == rt_rq->highest_prio) {
764a9d6f 428 /* recalculate */
6f505b16
PZ
429 array = &rt_rq->active;
430 rt_rq->highest_prio =
764a9d6f
SR
431 sched_find_first_bit(array->bitmap);
432 } /* otherwise leave rq->highest prio alone */
433 } else
6f505b16
PZ
434 rt_rq->highest_prio = MAX_RT_PRIO;
435#endif
436#ifdef CONFIG_SMP
437 if (rt_se->nr_cpus_allowed > 1) {
438 struct rq *rq = rq_of_rt_rq(rt_rq);
73fe6aae 439 rq->rt.rt_nr_migratory--;
6f505b16 440 }
73fe6aae 441
6f505b16 442 update_rt_migration(rq_of_rt_rq(rt_rq));
764a9d6f 443#endif /* CONFIG_SMP */
052f1dc7 444#ifdef CONFIG_RT_GROUP_SCHED
23b0fdfc
PZ
445 if (rt_se_boosted(rt_se))
446 rt_rq->rt_nr_boosted--;
447
448 WARN_ON(!rt_rq->rt_nr_running && rt_rq->rt_nr_boosted);
449#endif
63489e45
SR
450}
451
6f505b16 452static void enqueue_rt_entity(struct sched_rt_entity *rt_se)
bb44e5d1 453{
6f505b16
PZ
454 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
455 struct rt_prio_array *array = &rt_rq->active;
456 struct rt_rq *group_rq = group_rt_rq(rt_se);
bb44e5d1 457
23b0fdfc 458 if (group_rq && rt_rq_throttled(group_rq))
6f505b16 459 return;
63489e45 460
6f505b16
PZ
461 list_add_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se));
462 __set_bit(rt_se_prio(rt_se), array->bitmap);
78f2c7db 463
6f505b16
PZ
464 inc_rt_tasks(rt_se, rt_rq);
465}
466
467static void dequeue_rt_entity(struct sched_rt_entity *rt_se)
468{
469 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
470 struct rt_prio_array *array = &rt_rq->active;
471
472 list_del_init(&rt_se->run_list);
473 if (list_empty(array->queue + rt_se_prio(rt_se)))
474 __clear_bit(rt_se_prio(rt_se), array->bitmap);
475
476 dec_rt_tasks(rt_se, rt_rq);
477}
478
479/*
480 * Because the prio of an upper entry depends on the lower
481 * entries, we must remove entries top - down.
482 *
483 * XXX: O(1/2 h^2) because we can only walk up, not down the chain.
6f505b16
PZ
484 */
485static void dequeue_rt_stack(struct task_struct *p)
486{
487 struct sched_rt_entity *rt_se, *top_se;
488
489 /*
490 * dequeue all, top - down.
491 */
492 do {
493 rt_se = &p->rt;
494 top_se = NULL;
495 for_each_sched_rt_entity(rt_se) {
496 if (on_rt_rq(rt_se))
497 top_se = rt_se;
498 }
499 if (top_se)
500 dequeue_rt_entity(top_se);
501 } while (top_se);
bb44e5d1
IM
502}
503
504/*
505 * Adding/removing a task to/from a priority array:
506 */
6f505b16
PZ
507static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup)
508{
509 struct sched_rt_entity *rt_se = &p->rt;
510
511 if (wakeup)
512 rt_se->timeout = 0;
513
514 dequeue_rt_stack(p);
515
516 /*
517 * enqueue everybody, bottom - up.
518 */
519 for_each_sched_rt_entity(rt_se)
520 enqueue_rt_entity(rt_se);
18d95a28
PZ
521
522 inc_cpu_load(rq, p->se.load.weight);
6f505b16
PZ
523}
524
f02231e5 525static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep)
bb44e5d1 526{
6f505b16
PZ
527 struct sched_rt_entity *rt_se = &p->rt;
528 struct rt_rq *rt_rq;
bb44e5d1 529
f1e14ef6 530 update_curr_rt(rq);
bb44e5d1 531
6f505b16
PZ
532 dequeue_rt_stack(p);
533
534 /*
535 * re-enqueue all non-empty rt_rq entities.
536 */
537 for_each_sched_rt_entity(rt_se) {
538 rt_rq = group_rt_rq(rt_se);
539 if (rt_rq && rt_rq->rt_nr_running)
540 enqueue_rt_entity(rt_se);
541 }
18d95a28
PZ
542
543 dec_cpu_load(rq, p->se.load.weight);
bb44e5d1
IM
544}
545
546/*
547 * Put task to the end of the run list without the overhead of dequeue
548 * followed by enqueue.
549 */
6f505b16
PZ
550static
551void requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se)
552{
553 struct rt_prio_array *array = &rt_rq->active;
554
555 list_move_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se));
556}
557
bb44e5d1
IM
558static void requeue_task_rt(struct rq *rq, struct task_struct *p)
559{
6f505b16
PZ
560 struct sched_rt_entity *rt_se = &p->rt;
561 struct rt_rq *rt_rq;
bb44e5d1 562
6f505b16
PZ
563 for_each_sched_rt_entity(rt_se) {
564 rt_rq = rt_rq_of_se(rt_se);
565 requeue_rt_entity(rt_rq, rt_se);
566 }
bb44e5d1
IM
567}
568
6f505b16 569static void yield_task_rt(struct rq *rq)
bb44e5d1 570{
4530d7ab 571 requeue_task_rt(rq, rq->curr);
bb44e5d1
IM
572}
573
e7693a36 574#ifdef CONFIG_SMP
318e0893
GH
575static int find_lowest_rq(struct task_struct *task);
576
e7693a36
GH
577static int select_task_rq_rt(struct task_struct *p, int sync)
578{
318e0893
GH
579 struct rq *rq = task_rq(p);
580
581 /*
e1f47d89
SR
582 * If the current task is an RT task, then
583 * try to see if we can wake this RT task up on another
584 * runqueue. Otherwise simply start this RT task
585 * on its current runqueue.
586 *
587 * We want to avoid overloading runqueues. Even if
588 * the RT task is of higher priority than the current RT task.
589 * RT tasks behave differently than other tasks. If
590 * one gets preempted, we try to push it off to another queue.
591 * So trying to keep a preempting RT task on the same
592 * cache hot CPU will force the running RT task to
593 * a cold CPU. So we waste all the cache for the lower
594 * RT task in hopes of saving some of a RT task
595 * that is just being woken and probably will have
596 * cold cache anyway.
318e0893 597 */
17b3279b 598 if (unlikely(rt_task(rq->curr)) &&
6f505b16 599 (p->rt.nr_cpus_allowed > 1)) {
318e0893
GH
600 int cpu = find_lowest_rq(p);
601
602 return (cpu == -1) ? task_cpu(p) : cpu;
603 }
604
605 /*
606 * Otherwise, just let it ride on the affined RQ and the
607 * post-schedule router will push the preempted task away
608 */
e7693a36
GH
609 return task_cpu(p);
610}
611#endif /* CONFIG_SMP */
612
bb44e5d1
IM
613/*
614 * Preempt the current task with a newly woken task if needed:
615 */
616static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p)
617{
618 if (p->prio < rq->curr->prio)
619 resched_task(rq->curr);
620}
621
6f505b16
PZ
622static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq,
623 struct rt_rq *rt_rq)
bb44e5d1 624{
6f505b16
PZ
625 struct rt_prio_array *array = &rt_rq->active;
626 struct sched_rt_entity *next = NULL;
bb44e5d1
IM
627 struct list_head *queue;
628 int idx;
629
630 idx = sched_find_first_bit(array->bitmap);
6f505b16 631 BUG_ON(idx >= MAX_RT_PRIO);
bb44e5d1
IM
632
633 queue = array->queue + idx;
6f505b16 634 next = list_entry(queue->next, struct sched_rt_entity, run_list);
326587b8 635
6f505b16
PZ
636 return next;
637}
bb44e5d1 638
6f505b16
PZ
639static struct task_struct *pick_next_task_rt(struct rq *rq)
640{
641 struct sched_rt_entity *rt_se;
642 struct task_struct *p;
643 struct rt_rq *rt_rq;
bb44e5d1 644
6f505b16
PZ
645 rt_rq = &rq->rt;
646
647 if (unlikely(!rt_rq->rt_nr_running))
648 return NULL;
649
23b0fdfc 650 if (rt_rq_throttled(rt_rq))
6f505b16
PZ
651 return NULL;
652
653 do {
654 rt_se = pick_next_rt_entity(rq, rt_rq);
326587b8 655 BUG_ON(!rt_se);
6f505b16
PZ
656 rt_rq = group_rt_rq(rt_se);
657 } while (rt_rq);
658
659 p = rt_task_of(rt_se);
660 p->se.exec_start = rq->clock;
661 return p;
bb44e5d1
IM
662}
663
31ee529c 664static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
bb44e5d1 665{
f1e14ef6 666 update_curr_rt(rq);
bb44e5d1
IM
667 p->se.exec_start = 0;
668}
669
681f3e68 670#ifdef CONFIG_SMP
6f505b16 671
e8fa1362
SR
672/* Only try algorithms three times */
673#define RT_MAX_TRIES 3
674
675static int double_lock_balance(struct rq *this_rq, struct rq *busiest);
676static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep);
677
f65eda4f
SR
678static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
679{
680 if (!task_running(rq, p) &&
73fe6aae 681 (cpu < 0 || cpu_isset(cpu, p->cpus_allowed)) &&
6f505b16 682 (p->rt.nr_cpus_allowed > 1))
f65eda4f
SR
683 return 1;
684 return 0;
685}
686
e8fa1362 687/* Return the second highest RT task, NULL otherwise */
79064fbf 688static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu)
e8fa1362 689{
6f505b16
PZ
690 struct task_struct *next = NULL;
691 struct sched_rt_entity *rt_se;
692 struct rt_prio_array *array;
693 struct rt_rq *rt_rq;
e8fa1362
SR
694 int idx;
695
6f505b16
PZ
696 for_each_leaf_rt_rq(rt_rq, rq) {
697 array = &rt_rq->active;
698 idx = sched_find_first_bit(array->bitmap);
699 next_idx:
700 if (idx >= MAX_RT_PRIO)
701 continue;
702 if (next && next->prio < idx)
703 continue;
704 list_for_each_entry(rt_se, array->queue + idx, run_list) {
705 struct task_struct *p = rt_task_of(rt_se);
706 if (pick_rt_task(rq, p, cpu)) {
707 next = p;
708 break;
709 }
710 }
711 if (!next) {
712 idx = find_next_bit(array->bitmap, MAX_RT_PRIO, idx+1);
713 goto next_idx;
714 }
f65eda4f
SR
715 }
716
e8fa1362
SR
717 return next;
718}
719
720static DEFINE_PER_CPU(cpumask_t, local_cpu_mask);
721
6e1254d2 722static int find_lowest_cpus(struct task_struct *task, cpumask_t *lowest_mask)
e8fa1362 723{
6e1254d2 724 int lowest_prio = -1;
610bf056 725 int lowest_cpu = -1;
06f90dbd 726 int count = 0;
610bf056 727 int cpu;
e8fa1362 728
637f5085 729 cpus_and(*lowest_mask, task_rq(task)->rd->online, task->cpus_allowed);
e8fa1362 730
07b4032c
GH
731 /*
732 * Scan each rq for the lowest prio.
733 */
610bf056 734 for_each_cpu_mask(cpu, *lowest_mask) {
07b4032c 735 struct rq *rq = cpu_rq(cpu);
e8fa1362 736
07b4032c
GH
737 /* We look for lowest RT prio or non-rt CPU */
738 if (rq->rt.highest_prio >= MAX_RT_PRIO) {
610bf056
SR
739 /*
740 * if we already found a low RT queue
741 * and now we found this non-rt queue
742 * clear the mask and set our bit.
743 * Otherwise just return the queue as is
744 * and the count==1 will cause the algorithm
745 * to use the first bit found.
746 */
747 if (lowest_cpu != -1) {
6e1254d2 748 cpus_clear(*lowest_mask);
610bf056
SR
749 cpu_set(rq->cpu, *lowest_mask);
750 }
6e1254d2 751 return 1;
07b4032c
GH
752 }
753
754 /* no locking for now */
6e1254d2
GH
755 if ((rq->rt.highest_prio > task->prio)
756 && (rq->rt.highest_prio >= lowest_prio)) {
757 if (rq->rt.highest_prio > lowest_prio) {
758 /* new low - clear old data */
759 lowest_prio = rq->rt.highest_prio;
610bf056
SR
760 lowest_cpu = cpu;
761 count = 0;
6e1254d2 762 }
06f90dbd 763 count++;
610bf056
SR
764 } else
765 cpu_clear(cpu, *lowest_mask);
766 }
767
768 /*
769 * Clear out all the set bits that represent
770 * runqueues that were of higher prio than
771 * the lowest_prio.
772 */
773 if (lowest_cpu > 0) {
774 /*
775 * Perhaps we could add another cpumask op to
776 * zero out bits. Like cpu_zero_bits(cpumask, nrbits);
777 * Then that could be optimized to use memset and such.
778 */
779 for_each_cpu_mask(cpu, *lowest_mask) {
780 if (cpu >= lowest_cpu)
781 break;
782 cpu_clear(cpu, *lowest_mask);
e8fa1362 783 }
07b4032c
GH
784 }
785
06f90dbd 786 return count;
6e1254d2
GH
787}
788
789static inline int pick_optimal_cpu(int this_cpu, cpumask_t *mask)
790{
791 int first;
792
793 /* "this_cpu" is cheaper to preempt than a remote processor */
794 if ((this_cpu != -1) && cpu_isset(this_cpu, *mask))
795 return this_cpu;
796
797 first = first_cpu(*mask);
798 if (first != NR_CPUS)
799 return first;
800
801 return -1;
802}
803
804static int find_lowest_rq(struct task_struct *task)
805{
806 struct sched_domain *sd;
807 cpumask_t *lowest_mask = &__get_cpu_var(local_cpu_mask);
808 int this_cpu = smp_processor_id();
809 int cpu = task_cpu(task);
06f90dbd
GH
810 int count = find_lowest_cpus(task, lowest_mask);
811
812 if (!count)
813 return -1; /* No targets found */
6e1254d2 814
06f90dbd
GH
815 /*
816 * There is no sense in performing an optimal search if only one
817 * target is found.
818 */
819 if (count == 1)
820 return first_cpu(*lowest_mask);
6e1254d2
GH
821
822 /*
823 * At this point we have built a mask of cpus representing the
824 * lowest priority tasks in the system. Now we want to elect
825 * the best one based on our affinity and topology.
826 *
827 * We prioritize the last cpu that the task executed on since
828 * it is most likely cache-hot in that location.
829 */
830 if (cpu_isset(cpu, *lowest_mask))
831 return cpu;
832
833 /*
834 * Otherwise, we consult the sched_domains span maps to figure
835 * out which cpu is logically closest to our hot cache data.
836 */
837 if (this_cpu == cpu)
838 this_cpu = -1; /* Skip this_cpu opt if the same */
839
840 for_each_domain(cpu, sd) {
841 if (sd->flags & SD_WAKE_AFFINE) {
842 cpumask_t domain_mask;
843 int best_cpu;
844
845 cpus_and(domain_mask, sd->span, *lowest_mask);
846
847 best_cpu = pick_optimal_cpu(this_cpu,
848 &domain_mask);
849 if (best_cpu != -1)
850 return best_cpu;
851 }
852 }
853
854 /*
855 * And finally, if there were no matches within the domains
856 * just give the caller *something* to work with from the compatible
857 * locations.
858 */
859 return pick_optimal_cpu(this_cpu, lowest_mask);
07b4032c
GH
860}
861
862/* Will lock the rq it finds */
4df64c0b 863static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
07b4032c
GH
864{
865 struct rq *lowest_rq = NULL;
07b4032c 866 int tries;
4df64c0b 867 int cpu;
e8fa1362 868
07b4032c
GH
869 for (tries = 0; tries < RT_MAX_TRIES; tries++) {
870 cpu = find_lowest_rq(task);
871
2de0b463 872 if ((cpu == -1) || (cpu == rq->cpu))
e8fa1362
SR
873 break;
874
07b4032c
GH
875 lowest_rq = cpu_rq(cpu);
876
e8fa1362 877 /* if the prio of this runqueue changed, try again */
07b4032c 878 if (double_lock_balance(rq, lowest_rq)) {
e8fa1362
SR
879 /*
880 * We had to unlock the run queue. In
881 * the mean time, task could have
882 * migrated already or had its affinity changed.
883 * Also make sure that it wasn't scheduled on its rq.
884 */
07b4032c 885 if (unlikely(task_rq(task) != rq ||
4df64c0b
IM
886 !cpu_isset(lowest_rq->cpu,
887 task->cpus_allowed) ||
07b4032c 888 task_running(rq, task) ||
e8fa1362 889 !task->se.on_rq)) {
4df64c0b 890
e8fa1362
SR
891 spin_unlock(&lowest_rq->lock);
892 lowest_rq = NULL;
893 break;
894 }
895 }
896
897 /* If this rq is still suitable use it. */
898 if (lowest_rq->rt.highest_prio > task->prio)
899 break;
900
901 /* try again */
902 spin_unlock(&lowest_rq->lock);
903 lowest_rq = NULL;
904 }
905
906 return lowest_rq;
907}
908
909/*
910 * If the current CPU has more than one RT task, see if the non
911 * running task can migrate over to a CPU that is running a task
912 * of lesser priority.
913 */
697f0a48 914static int push_rt_task(struct rq *rq)
e8fa1362
SR
915{
916 struct task_struct *next_task;
917 struct rq *lowest_rq;
918 int ret = 0;
919 int paranoid = RT_MAX_TRIES;
920
a22d7fc1
GH
921 if (!rq->rt.overloaded)
922 return 0;
923
697f0a48 924 next_task = pick_next_highest_task_rt(rq, -1);
e8fa1362
SR
925 if (!next_task)
926 return 0;
927
928 retry:
697f0a48 929 if (unlikely(next_task == rq->curr)) {
f65eda4f 930 WARN_ON(1);
e8fa1362 931 return 0;
f65eda4f 932 }
e8fa1362
SR
933
934 /*
935 * It's possible that the next_task slipped in of
936 * higher priority than current. If that's the case
937 * just reschedule current.
938 */
697f0a48
GH
939 if (unlikely(next_task->prio < rq->curr->prio)) {
940 resched_task(rq->curr);
e8fa1362
SR
941 return 0;
942 }
943
697f0a48 944 /* We might release rq lock */
e8fa1362
SR
945 get_task_struct(next_task);
946
947 /* find_lock_lowest_rq locks the rq if found */
697f0a48 948 lowest_rq = find_lock_lowest_rq(next_task, rq);
e8fa1362
SR
949 if (!lowest_rq) {
950 struct task_struct *task;
951 /*
697f0a48 952 * find lock_lowest_rq releases rq->lock
e8fa1362
SR
953 * so it is possible that next_task has changed.
954 * If it has, then try again.
955 */
697f0a48 956 task = pick_next_highest_task_rt(rq, -1);
e8fa1362
SR
957 if (unlikely(task != next_task) && task && paranoid--) {
958 put_task_struct(next_task);
959 next_task = task;
960 goto retry;
961 }
962 goto out;
963 }
964
697f0a48 965 deactivate_task(rq, next_task, 0);
e8fa1362
SR
966 set_task_cpu(next_task, lowest_rq->cpu);
967 activate_task(lowest_rq, next_task, 0);
968
969 resched_task(lowest_rq->curr);
970
971 spin_unlock(&lowest_rq->lock);
972
973 ret = 1;
974out:
975 put_task_struct(next_task);
976
977 return ret;
978}
979
980/*
981 * TODO: Currently we just use the second highest prio task on
982 * the queue, and stop when it can't migrate (or there's
983 * no more RT tasks). There may be a case where a lower
984 * priority RT task has a different affinity than the
985 * higher RT task. In this case the lower RT task could
986 * possibly be able to migrate where as the higher priority
987 * RT task could not. We currently ignore this issue.
988 * Enhancements are welcome!
989 */
990static void push_rt_tasks(struct rq *rq)
991{
992 /* push_rt_task will return true if it moved an RT */
993 while (push_rt_task(rq))
994 ;
995}
996
f65eda4f
SR
997static int pull_rt_task(struct rq *this_rq)
998{
80bf3171
IM
999 int this_cpu = this_rq->cpu, ret = 0, cpu;
1000 struct task_struct *p, *next;
f65eda4f 1001 struct rq *src_rq;
f65eda4f 1002
637f5085 1003 if (likely(!rt_overloaded(this_rq)))
f65eda4f
SR
1004 return 0;
1005
1006 next = pick_next_task_rt(this_rq);
1007
637f5085 1008 for_each_cpu_mask(cpu, this_rq->rd->rto_mask) {
f65eda4f
SR
1009 if (this_cpu == cpu)
1010 continue;
1011
1012 src_rq = cpu_rq(cpu);
f65eda4f
SR
1013 /*
1014 * We can potentially drop this_rq's lock in
1015 * double_lock_balance, and another CPU could
1016 * steal our next task - hence we must cause
1017 * the caller to recalculate the next task
1018 * in that case:
1019 */
1020 if (double_lock_balance(this_rq, src_rq)) {
1021 struct task_struct *old_next = next;
80bf3171 1022
f65eda4f
SR
1023 next = pick_next_task_rt(this_rq);
1024 if (next != old_next)
1025 ret = 1;
1026 }
1027
1028 /*
1029 * Are there still pullable RT tasks?
1030 */
614ee1f6
MG
1031 if (src_rq->rt.rt_nr_running <= 1)
1032 goto skip;
f65eda4f 1033
f65eda4f
SR
1034 p = pick_next_highest_task_rt(src_rq, this_cpu);
1035
1036 /*
1037 * Do we have an RT task that preempts
1038 * the to-be-scheduled task?
1039 */
1040 if (p && (!next || (p->prio < next->prio))) {
1041 WARN_ON(p == src_rq->curr);
1042 WARN_ON(!p->se.on_rq);
1043
1044 /*
1045 * There's a chance that p is higher in priority
1046 * than what's currently running on its cpu.
1047 * This is just that p is wakeing up and hasn't
1048 * had a chance to schedule. We only pull
1049 * p if it is lower in priority than the
1050 * current task on the run queue or
1051 * this_rq next task is lower in prio than
1052 * the current task on that rq.
1053 */
1054 if (p->prio < src_rq->curr->prio ||
1055 (next && next->prio < src_rq->curr->prio))
614ee1f6 1056 goto skip;
f65eda4f
SR
1057
1058 ret = 1;
1059
1060 deactivate_task(src_rq, p, 0);
1061 set_task_cpu(p, this_cpu);
1062 activate_task(this_rq, p, 0);
1063 /*
1064 * We continue with the search, just in
1065 * case there's an even higher prio task
1066 * in another runqueue. (low likelyhood
1067 * but possible)
80bf3171 1068 *
f65eda4f
SR
1069 * Update next so that we won't pick a task
1070 * on another cpu with a priority lower (or equal)
1071 * than the one we just picked.
1072 */
1073 next = p;
1074
1075 }
614ee1f6 1076 skip:
f65eda4f
SR
1077 spin_unlock(&src_rq->lock);
1078 }
1079
1080 return ret;
1081}
1082
9a897c5a 1083static void pre_schedule_rt(struct rq *rq, struct task_struct *prev)
f65eda4f
SR
1084{
1085 /* Try to pull RT tasks here if we lower this rq's prio */
7f51f298 1086 if (unlikely(rt_task(prev)) && rq->rt.highest_prio > prev->prio)
f65eda4f
SR
1087 pull_rt_task(rq);
1088}
1089
9a897c5a 1090static void post_schedule_rt(struct rq *rq)
e8fa1362
SR
1091{
1092 /*
1093 * If we have more than one rt_task queued, then
1094 * see if we can push the other rt_tasks off to other CPUS.
1095 * Note we may release the rq lock, and since
1096 * the lock was owned by prev, we need to release it
1097 * first via finish_lock_switch and then reaquire it here.
1098 */
a22d7fc1 1099 if (unlikely(rq->rt.overloaded)) {
e8fa1362
SR
1100 spin_lock_irq(&rq->lock);
1101 push_rt_tasks(rq);
1102 spin_unlock_irq(&rq->lock);
1103 }
1104}
1105
4642dafd 1106
9a897c5a 1107static void task_wake_up_rt(struct rq *rq, struct task_struct *p)
4642dafd 1108{
9a897c5a 1109 if (!task_running(rq, p) &&
a22d7fc1
GH
1110 (p->prio >= rq->rt.highest_prio) &&
1111 rq->rt.overloaded)
4642dafd
SR
1112 push_rt_tasks(rq);
1113}
1114
43010659 1115static unsigned long
bb44e5d1 1116load_balance_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
e1d1484f
PW
1117 unsigned long max_load_move,
1118 struct sched_domain *sd, enum cpu_idle_type idle,
1119 int *all_pinned, int *this_best_prio)
bb44e5d1 1120{
c7a1e46a
SR
1121 /* don't touch RT tasks */
1122 return 0;
e1d1484f
PW
1123}
1124
1125static int
1126move_one_task_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
1127 struct sched_domain *sd, enum cpu_idle_type idle)
1128{
c7a1e46a
SR
1129 /* don't touch RT tasks */
1130 return 0;
bb44e5d1 1131}
deeeccd4 1132
cd8ba7cd
MT
1133static void set_cpus_allowed_rt(struct task_struct *p,
1134 const cpumask_t *new_mask)
73fe6aae
GH
1135{
1136 int weight = cpus_weight(*new_mask);
1137
1138 BUG_ON(!rt_task(p));
1139
1140 /*
1141 * Update the migration status of the RQ if we have an RT task
1142 * which is running AND changing its weight value.
1143 */
6f505b16 1144 if (p->se.on_rq && (weight != p->rt.nr_cpus_allowed)) {
73fe6aae
GH
1145 struct rq *rq = task_rq(p);
1146
6f505b16 1147 if ((p->rt.nr_cpus_allowed <= 1) && (weight > 1)) {
73fe6aae 1148 rq->rt.rt_nr_migratory++;
6f505b16 1149 } else if ((p->rt.nr_cpus_allowed > 1) && (weight <= 1)) {
73fe6aae
GH
1150 BUG_ON(!rq->rt.rt_nr_migratory);
1151 rq->rt.rt_nr_migratory--;
1152 }
1153
1154 update_rt_migration(rq);
1155 }
1156
1157 p->cpus_allowed = *new_mask;
6f505b16 1158 p->rt.nr_cpus_allowed = weight;
73fe6aae 1159}
deeeccd4 1160
bdd7c81b
IM
1161/* Assumes rq->lock is held */
1162static void join_domain_rt(struct rq *rq)
1163{
1164 if (rq->rt.overloaded)
1165 rt_set_overload(rq);
1166}
1167
1168/* Assumes rq->lock is held */
1169static void leave_domain_rt(struct rq *rq)
1170{
1171 if (rq->rt.overloaded)
1172 rt_clear_overload(rq);
1173}
cb469845
SR
1174
1175/*
1176 * When switch from the rt queue, we bring ourselves to a position
1177 * that we might want to pull RT tasks from other runqueues.
1178 */
1179static void switched_from_rt(struct rq *rq, struct task_struct *p,
1180 int running)
1181{
1182 /*
1183 * If there are other RT tasks then we will reschedule
1184 * and the scheduling of the other RT tasks will handle
1185 * the balancing. But if we are the last RT task
1186 * we may need to handle the pulling of RT tasks
1187 * now.
1188 */
1189 if (!rq->rt.rt_nr_running)
1190 pull_rt_task(rq);
1191}
1192#endif /* CONFIG_SMP */
1193
1194/*
1195 * When switching a task to RT, we may overload the runqueue
1196 * with RT tasks. In this case we try to push them off to
1197 * other runqueues.
1198 */
1199static void switched_to_rt(struct rq *rq, struct task_struct *p,
1200 int running)
1201{
1202 int check_resched = 1;
1203
1204 /*
1205 * If we are already running, then there's nothing
1206 * that needs to be done. But if we are not running
1207 * we may need to preempt the current running task.
1208 * If that current running task is also an RT task
1209 * then see if we can move to another run queue.
1210 */
1211 if (!running) {
1212#ifdef CONFIG_SMP
1213 if (rq->rt.overloaded && push_rt_task(rq) &&
1214 /* Don't resched if we changed runqueues */
1215 rq != task_rq(p))
1216 check_resched = 0;
1217#endif /* CONFIG_SMP */
1218 if (check_resched && p->prio < rq->curr->prio)
1219 resched_task(rq->curr);
1220 }
1221}
1222
1223/*
1224 * Priority of the task has changed. This may cause
1225 * us to initiate a push or pull.
1226 */
1227static void prio_changed_rt(struct rq *rq, struct task_struct *p,
1228 int oldprio, int running)
1229{
1230 if (running) {
1231#ifdef CONFIG_SMP
1232 /*
1233 * If our priority decreases while running, we
1234 * may need to pull tasks to this runqueue.
1235 */
1236 if (oldprio < p->prio)
1237 pull_rt_task(rq);
1238 /*
1239 * If there's a higher priority task waiting to run
6fa46fa5
SR
1240 * then reschedule. Note, the above pull_rt_task
1241 * can release the rq lock and p could migrate.
1242 * Only reschedule if p is still on the same runqueue.
cb469845 1243 */
6fa46fa5 1244 if (p->prio > rq->rt.highest_prio && rq->curr == p)
cb469845
SR
1245 resched_task(p);
1246#else
1247 /* For UP simply resched on drop of prio */
1248 if (oldprio < p->prio)
1249 resched_task(p);
e8fa1362 1250#endif /* CONFIG_SMP */
cb469845
SR
1251 } else {
1252 /*
1253 * This task is not running, but if it is
1254 * greater than the current running task
1255 * then reschedule.
1256 */
1257 if (p->prio < rq->curr->prio)
1258 resched_task(rq->curr);
1259 }
1260}
1261
78f2c7db
PZ
1262static void watchdog(struct rq *rq, struct task_struct *p)
1263{
1264 unsigned long soft, hard;
1265
1266 if (!p->signal)
1267 return;
1268
1269 soft = p->signal->rlim[RLIMIT_RTTIME].rlim_cur;
1270 hard = p->signal->rlim[RLIMIT_RTTIME].rlim_max;
1271
1272 if (soft != RLIM_INFINITY) {
1273 unsigned long next;
1274
1275 p->rt.timeout++;
1276 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ);
5a52dd50 1277 if (p->rt.timeout > next)
78f2c7db
PZ
1278 p->it_sched_expires = p->se.sum_exec_runtime;
1279 }
1280}
bb44e5d1 1281
8f4d37ec 1282static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued)
bb44e5d1 1283{
67e2be02
PZ
1284 update_curr_rt(rq);
1285
78f2c7db
PZ
1286 watchdog(rq, p);
1287
bb44e5d1
IM
1288 /*
1289 * RR tasks need a special form of timeslice management.
1290 * FIFO tasks have no timeslices.
1291 */
1292 if (p->policy != SCHED_RR)
1293 return;
1294
fa717060 1295 if (--p->rt.time_slice)
bb44e5d1
IM
1296 return;
1297
fa717060 1298 p->rt.time_slice = DEF_TIMESLICE;
bb44e5d1 1299
98fbc798
DA
1300 /*
1301 * Requeue to the end of queue if we are not the only element
1302 * on the queue:
1303 */
fa717060 1304 if (p->rt.run_list.prev != p->rt.run_list.next) {
98fbc798
DA
1305 requeue_task_rt(rq, p);
1306 set_tsk_need_resched(p);
1307 }
bb44e5d1
IM
1308}
1309
83b699ed
SV
1310static void set_curr_task_rt(struct rq *rq)
1311{
1312 struct task_struct *p = rq->curr;
1313
1314 p->se.exec_start = rq->clock;
1315}
1316
5522d5d5
IM
1317const struct sched_class rt_sched_class = {
1318 .next = &fair_sched_class,
bb44e5d1
IM
1319 .enqueue_task = enqueue_task_rt,
1320 .dequeue_task = dequeue_task_rt,
1321 .yield_task = yield_task_rt,
e7693a36
GH
1322#ifdef CONFIG_SMP
1323 .select_task_rq = select_task_rq_rt,
1324#endif /* CONFIG_SMP */
bb44e5d1
IM
1325
1326 .check_preempt_curr = check_preempt_curr_rt,
1327
1328 .pick_next_task = pick_next_task_rt,
1329 .put_prev_task = put_prev_task_rt,
1330
681f3e68 1331#ifdef CONFIG_SMP
bb44e5d1 1332 .load_balance = load_balance_rt,
e1d1484f 1333 .move_one_task = move_one_task_rt,
73fe6aae 1334 .set_cpus_allowed = set_cpus_allowed_rt,
bdd7c81b
IM
1335 .join_domain = join_domain_rt,
1336 .leave_domain = leave_domain_rt,
9a897c5a
SR
1337 .pre_schedule = pre_schedule_rt,
1338 .post_schedule = post_schedule_rt,
1339 .task_wake_up = task_wake_up_rt,
cb469845 1340 .switched_from = switched_from_rt,
681f3e68 1341#endif
bb44e5d1 1342
83b699ed 1343 .set_curr_task = set_curr_task_rt,
bb44e5d1 1344 .task_tick = task_tick_rt,
cb469845
SR
1345
1346 .prio_changed = prio_changed_rt,
1347 .switched_to = switched_to_rt,
bb44e5d1 1348};