sched/walt: Accounting for number of irqs pending on each core
[firefly-linux-kernel-4.4.55.git] / kernel / sched / rt.c
1 /*
2  * Real-Time Scheduling Class (mapped to the SCHED_FIFO and SCHED_RR
3  * policies)
4  */
5
6 #include "sched.h"
7
8 #include <linux/slab.h>
9 #include <linux/irq_work.h>
10
11 #include "walt.h"
12
13 int sched_rr_timeslice = RR_TIMESLICE;
14
15 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
16
17 struct rt_bandwidth def_rt_bandwidth;
18
19 static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
20 {
21         struct rt_bandwidth *rt_b =
22                 container_of(timer, struct rt_bandwidth, rt_period_timer);
23         int idle = 0;
24         int overrun;
25
26         raw_spin_lock(&rt_b->rt_runtime_lock);
27         for (;;) {
28                 overrun = hrtimer_forward_now(timer, rt_b->rt_period);
29                 if (!overrun)
30                         break;
31
32                 raw_spin_unlock(&rt_b->rt_runtime_lock);
33                 idle = do_sched_rt_period_timer(rt_b, overrun);
34                 raw_spin_lock(&rt_b->rt_runtime_lock);
35         }
36         if (idle)
37                 rt_b->rt_period_active = 0;
38         raw_spin_unlock(&rt_b->rt_runtime_lock);
39
40         return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
41 }
42
43 void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
44 {
45         rt_b->rt_period = ns_to_ktime(period);
46         rt_b->rt_runtime = runtime;
47
48         raw_spin_lock_init(&rt_b->rt_runtime_lock);
49
50         hrtimer_init(&rt_b->rt_period_timer,
51                         CLOCK_MONOTONIC, HRTIMER_MODE_REL);
52         rt_b->rt_period_timer.function = sched_rt_period_timer;
53 }
54
55 static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
56 {
57         if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
58                 return;
59
60         raw_spin_lock(&rt_b->rt_runtime_lock);
61         if (!rt_b->rt_period_active) {
62                 rt_b->rt_period_active = 1;
63                 hrtimer_forward_now(&rt_b->rt_period_timer, rt_b->rt_period);
64                 hrtimer_start_expires(&rt_b->rt_period_timer, HRTIMER_MODE_ABS_PINNED);
65         }
66         raw_spin_unlock(&rt_b->rt_runtime_lock);
67 }
68
69 #if defined(CONFIG_SMP) && defined(HAVE_RT_PUSH_IPI)
70 static void push_irq_work_func(struct irq_work *work);
71 #endif
72
73 void init_rt_rq(struct rt_rq *rt_rq)
74 {
75         struct rt_prio_array *array;
76         int i;
77
78         array = &rt_rq->active;
79         for (i = 0; i < MAX_RT_PRIO; i++) {
80                 INIT_LIST_HEAD(array->queue + i);
81                 __clear_bit(i, array->bitmap);
82         }
83         /* delimiter for bitsearch: */
84         __set_bit(MAX_RT_PRIO, array->bitmap);
85
86 #if defined CONFIG_SMP
87         rt_rq->highest_prio.curr = MAX_RT_PRIO;
88         rt_rq->highest_prio.next = MAX_RT_PRIO;
89         rt_rq->rt_nr_migratory = 0;
90         rt_rq->overloaded = 0;
91         plist_head_init(&rt_rq->pushable_tasks);
92
93 #ifdef HAVE_RT_PUSH_IPI
94         rt_rq->push_flags = 0;
95         rt_rq->push_cpu = nr_cpu_ids;
96         raw_spin_lock_init(&rt_rq->push_lock);
97         init_irq_work(&rt_rq->push_work, push_irq_work_func);
98 #endif
99 #endif /* CONFIG_SMP */
100         /* We start is dequeued state, because no RT tasks are queued */
101         rt_rq->rt_queued = 0;
102
103         rt_rq->rt_time = 0;
104         rt_rq->rt_throttled = 0;
105         rt_rq->rt_runtime = 0;
106         raw_spin_lock_init(&rt_rq->rt_runtime_lock);
107 }
108
109 #ifdef CONFIG_RT_GROUP_SCHED
110 static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
111 {
112         hrtimer_cancel(&rt_b->rt_period_timer);
113 }
114
115 #define rt_entity_is_task(rt_se) (!(rt_se)->my_q)
116
117 static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
118 {
119 #ifdef CONFIG_SCHED_DEBUG
120         WARN_ON_ONCE(!rt_entity_is_task(rt_se));
121 #endif
122         return container_of(rt_se, struct task_struct, rt);
123 }
124
125 static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
126 {
127         return rt_rq->rq;
128 }
129
130 static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
131 {
132         return rt_se->rt_rq;
133 }
134
135 static inline struct rq *rq_of_rt_se(struct sched_rt_entity *rt_se)
136 {
137         struct rt_rq *rt_rq = rt_se->rt_rq;
138
139         return rt_rq->rq;
140 }
141
142 void free_rt_sched_group(struct task_group *tg)
143 {
144         int i;
145
146         if (tg->rt_se)
147                 destroy_rt_bandwidth(&tg->rt_bandwidth);
148
149         for_each_possible_cpu(i) {
150                 if (tg->rt_rq)
151                         kfree(tg->rt_rq[i]);
152                 if (tg->rt_se)
153                         kfree(tg->rt_se[i]);
154         }
155
156         kfree(tg->rt_rq);
157         kfree(tg->rt_se);
158 }
159
160 void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
161                 struct sched_rt_entity *rt_se, int cpu,
162                 struct sched_rt_entity *parent)
163 {
164         struct rq *rq = cpu_rq(cpu);
165
166         rt_rq->highest_prio.curr = MAX_RT_PRIO;
167         rt_rq->rt_nr_boosted = 0;
168         rt_rq->rq = rq;
169         rt_rq->tg = tg;
170
171         tg->rt_rq[cpu] = rt_rq;
172         tg->rt_se[cpu] = rt_se;
173
174         if (!rt_se)
175                 return;
176
177         if (!parent)
178                 rt_se->rt_rq = &rq->rt;
179         else
180                 rt_se->rt_rq = parent->my_q;
181
182         rt_se->my_q = rt_rq;
183         rt_se->parent = parent;
184         INIT_LIST_HEAD(&rt_se->run_list);
185 }
186
187 int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
188 {
189         struct rt_rq *rt_rq;
190         struct sched_rt_entity *rt_se;
191         int i;
192
193         tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
194         if (!tg->rt_rq)
195                 goto err;
196         tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
197         if (!tg->rt_se)
198                 goto err;
199
200         init_rt_bandwidth(&tg->rt_bandwidth,
201                         ktime_to_ns(def_rt_bandwidth.rt_period), 0);
202
203         for_each_possible_cpu(i) {
204                 rt_rq = kzalloc_node(sizeof(struct rt_rq),
205                                      GFP_KERNEL, cpu_to_node(i));
206                 if (!rt_rq)
207                         goto err;
208
209                 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
210                                      GFP_KERNEL, cpu_to_node(i));
211                 if (!rt_se)
212                         goto err_free_rq;
213
214                 init_rt_rq(rt_rq);
215                 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
216                 init_tg_rt_entry(tg, rt_rq, rt_se, i, parent->rt_se[i]);
217         }
218
219         return 1;
220
221 err_free_rq:
222         kfree(rt_rq);
223 err:
224         return 0;
225 }
226
227 #else /* CONFIG_RT_GROUP_SCHED */
228
229 #define rt_entity_is_task(rt_se) (1)
230
231 static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
232 {
233         return container_of(rt_se, struct task_struct, rt);
234 }
235
236 static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
237 {
238         return container_of(rt_rq, struct rq, rt);
239 }
240
241 static inline struct rq *rq_of_rt_se(struct sched_rt_entity *rt_se)
242 {
243         struct task_struct *p = rt_task_of(rt_se);
244
245         return task_rq(p);
246 }
247
248 static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
249 {
250         struct rq *rq = rq_of_rt_se(rt_se);
251
252         return &rq->rt;
253 }
254
255 void free_rt_sched_group(struct task_group *tg) { }
256
257 int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
258 {
259         return 1;
260 }
261 #endif /* CONFIG_RT_GROUP_SCHED */
262
263 #ifdef CONFIG_SMP
264
265 static void pull_rt_task(struct rq *this_rq);
266
267 static inline bool need_pull_rt_task(struct rq *rq, struct task_struct *prev)
268 {
269         /* Try to pull RT tasks here if we lower this rq's prio */
270         return rq->rt.highest_prio.curr > prev->prio;
271 }
272
273 static inline int rt_overloaded(struct rq *rq)
274 {
275         return atomic_read(&rq->rd->rto_count);
276 }
277
278 static inline void rt_set_overload(struct rq *rq)
279 {
280         if (!rq->online)
281                 return;
282
283         cpumask_set_cpu(rq->cpu, rq->rd->rto_mask);
284         /*
285          * Make sure the mask is visible before we set
286          * the overload count. That is checked to determine
287          * if we should look at the mask. It would be a shame
288          * if we looked at the mask, but the mask was not
289          * updated yet.
290          *
291          * Matched by the barrier in pull_rt_task().
292          */
293         smp_wmb();
294         atomic_inc(&rq->rd->rto_count);
295 }
296
297 static inline void rt_clear_overload(struct rq *rq)
298 {
299         if (!rq->online)
300                 return;
301
302         /* the order here really doesn't matter */
303         atomic_dec(&rq->rd->rto_count);
304         cpumask_clear_cpu(rq->cpu, rq->rd->rto_mask);
305 }
306
307 static void update_rt_migration(struct rt_rq *rt_rq)
308 {
309         if (rt_rq->rt_nr_migratory && rt_rq->rt_nr_total > 1) {
310                 if (!rt_rq->overloaded) {
311                         rt_set_overload(rq_of_rt_rq(rt_rq));
312                         rt_rq->overloaded = 1;
313                 }
314         } else if (rt_rq->overloaded) {
315                 rt_clear_overload(rq_of_rt_rq(rt_rq));
316                 rt_rq->overloaded = 0;
317         }
318 }
319
320 static void inc_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
321 {
322         struct task_struct *p;
323
324         if (!rt_entity_is_task(rt_se))
325                 return;
326
327         p = rt_task_of(rt_se);
328         rt_rq = &rq_of_rt_rq(rt_rq)->rt;
329
330         rt_rq->rt_nr_total++;
331         if (p->nr_cpus_allowed > 1)
332                 rt_rq->rt_nr_migratory++;
333
334         update_rt_migration(rt_rq);
335 }
336
337 static void dec_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
338 {
339         struct task_struct *p;
340
341         if (!rt_entity_is_task(rt_se))
342                 return;
343
344         p = rt_task_of(rt_se);
345         rt_rq = &rq_of_rt_rq(rt_rq)->rt;
346
347         rt_rq->rt_nr_total--;
348         if (p->nr_cpus_allowed > 1)
349                 rt_rq->rt_nr_migratory--;
350
351         update_rt_migration(rt_rq);
352 }
353
354 static inline int has_pushable_tasks(struct rq *rq)
355 {
356         return !plist_head_empty(&rq->rt.pushable_tasks);
357 }
358
359 static DEFINE_PER_CPU(struct callback_head, rt_push_head);
360 static DEFINE_PER_CPU(struct callback_head, rt_pull_head);
361
362 static void push_rt_tasks(struct rq *);
363 static void pull_rt_task(struct rq *);
364
365 static inline void queue_push_tasks(struct rq *rq)
366 {
367         if (!has_pushable_tasks(rq))
368                 return;
369
370         queue_balance_callback(rq, &per_cpu(rt_push_head, rq->cpu), push_rt_tasks);
371 }
372
373 static inline void queue_pull_task(struct rq *rq)
374 {
375         queue_balance_callback(rq, &per_cpu(rt_pull_head, rq->cpu), pull_rt_task);
376 }
377
378 static void enqueue_pushable_task(struct rq *rq, struct task_struct *p)
379 {
380         plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks);
381         plist_node_init(&p->pushable_tasks, p->prio);
382         plist_add(&p->pushable_tasks, &rq->rt.pushable_tasks);
383
384         /* Update the highest prio pushable task */
385         if (p->prio < rq->rt.highest_prio.next)
386                 rq->rt.highest_prio.next = p->prio;
387 }
388
389 static void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
390 {
391         plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks);
392
393         /* Update the new highest prio pushable task */
394         if (has_pushable_tasks(rq)) {
395                 p = plist_first_entry(&rq->rt.pushable_tasks,
396                                       struct task_struct, pushable_tasks);
397                 rq->rt.highest_prio.next = p->prio;
398         } else
399                 rq->rt.highest_prio.next = MAX_RT_PRIO;
400 }
401
402 #else
403
404 static inline void enqueue_pushable_task(struct rq *rq, struct task_struct *p)
405 {
406 }
407
408 static inline void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
409 {
410 }
411
412 static inline
413 void inc_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
414 {
415 }
416
417 static inline
418 void dec_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
419 {
420 }
421
422 static inline bool need_pull_rt_task(struct rq *rq, struct task_struct *prev)
423 {
424         return false;
425 }
426
427 static inline void pull_rt_task(struct rq *this_rq)
428 {
429 }
430
431 static inline void queue_push_tasks(struct rq *rq)
432 {
433 }
434 #endif /* CONFIG_SMP */
435
436 static void enqueue_top_rt_rq(struct rt_rq *rt_rq);
437 static void dequeue_top_rt_rq(struct rt_rq *rt_rq);
438
439 static inline int on_rt_rq(struct sched_rt_entity *rt_se)
440 {
441         return !list_empty(&rt_se->run_list);
442 }
443
444 #ifdef CONFIG_RT_GROUP_SCHED
445
446 static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
447 {
448         if (!rt_rq->tg)
449                 return RUNTIME_INF;
450
451         return rt_rq->rt_runtime;
452 }
453
454 static inline u64 sched_rt_period(struct rt_rq *rt_rq)
455 {
456         return ktime_to_ns(rt_rq->tg->rt_bandwidth.rt_period);
457 }
458
459 typedef struct task_group *rt_rq_iter_t;
460
461 static inline struct task_group *next_task_group(struct task_group *tg)
462 {
463         do {
464                 tg = list_entry_rcu(tg->list.next,
465                         typeof(struct task_group), list);
466         } while (&tg->list != &task_groups && task_group_is_autogroup(tg));
467
468         if (&tg->list == &task_groups)
469                 tg = NULL;
470
471         return tg;
472 }
473
474 #define for_each_rt_rq(rt_rq, iter, rq)                                 \
475         for (iter = container_of(&task_groups, typeof(*iter), list);    \
476                 (iter = next_task_group(iter)) &&                       \
477                 (rt_rq = iter->rt_rq[cpu_of(rq)]);)
478
479 #define for_each_sched_rt_entity(rt_se) \
480         for (; rt_se; rt_se = rt_se->parent)
481
482 static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
483 {
484         return rt_se->my_q;
485 }
486
487 static void enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head);
488 static void dequeue_rt_entity(struct sched_rt_entity *rt_se);
489
490 static void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
491 {
492         struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr;
493         struct rq *rq = rq_of_rt_rq(rt_rq);
494         struct sched_rt_entity *rt_se;
495
496         int cpu = cpu_of(rq);
497
498         rt_se = rt_rq->tg->rt_se[cpu];
499
500         if (rt_rq->rt_nr_running) {
501                 if (!rt_se)
502                         enqueue_top_rt_rq(rt_rq);
503                 else if (!on_rt_rq(rt_se))
504                         enqueue_rt_entity(rt_se, false);
505
506                 if (rt_rq->highest_prio.curr < curr->prio)
507                         resched_curr(rq);
508         }
509 }
510
511 static void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
512 {
513         struct sched_rt_entity *rt_se;
514         int cpu = cpu_of(rq_of_rt_rq(rt_rq));
515
516         rt_se = rt_rq->tg->rt_se[cpu];
517
518         if (!rt_se)
519                 dequeue_top_rt_rq(rt_rq);
520         else if (on_rt_rq(rt_se))
521                 dequeue_rt_entity(rt_se);
522 }
523
524 static inline int rt_rq_throttled(struct rt_rq *rt_rq)
525 {
526         return rt_rq->rt_throttled && !rt_rq->rt_nr_boosted;
527 }
528
529 static int rt_se_boosted(struct sched_rt_entity *rt_se)
530 {
531         struct rt_rq *rt_rq = group_rt_rq(rt_se);
532         struct task_struct *p;
533
534         if (rt_rq)
535                 return !!rt_rq->rt_nr_boosted;
536
537         p = rt_task_of(rt_se);
538         return p->prio != p->normal_prio;
539 }
540
541 #ifdef CONFIG_SMP
542 static inline const struct cpumask *sched_rt_period_mask(void)
543 {
544         return this_rq()->rd->span;
545 }
546 #else
547 static inline const struct cpumask *sched_rt_period_mask(void)
548 {
549         return cpu_online_mask;
550 }
551 #endif
552
553 static inline
554 struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
555 {
556         return container_of(rt_b, struct task_group, rt_bandwidth)->rt_rq[cpu];
557 }
558
559 static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
560 {
561         return &rt_rq->tg->rt_bandwidth;
562 }
563
564 #else /* !CONFIG_RT_GROUP_SCHED */
565
566 static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
567 {
568         return rt_rq->rt_runtime;
569 }
570
571 static inline u64 sched_rt_period(struct rt_rq *rt_rq)
572 {
573         return ktime_to_ns(def_rt_bandwidth.rt_period);
574 }
575
576 typedef struct rt_rq *rt_rq_iter_t;
577
578 #define for_each_rt_rq(rt_rq, iter, rq) \
579         for ((void) iter, rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
580
581 #define for_each_sched_rt_entity(rt_se) \
582         for (; rt_se; rt_se = NULL)
583
584 static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
585 {
586         return NULL;
587 }
588
589 static inline void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
590 {
591         struct rq *rq = rq_of_rt_rq(rt_rq);
592
593         if (!rt_rq->rt_nr_running)
594                 return;
595
596         enqueue_top_rt_rq(rt_rq);
597         resched_curr(rq);
598 }
599
600 static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
601 {
602         dequeue_top_rt_rq(rt_rq);
603 }
604
605 static inline int rt_rq_throttled(struct rt_rq *rt_rq)
606 {
607         return rt_rq->rt_throttled;
608 }
609
610 static inline const struct cpumask *sched_rt_period_mask(void)
611 {
612         return cpu_online_mask;
613 }
614
615 static inline
616 struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
617 {
618         return &cpu_rq(cpu)->rt;
619 }
620
621 static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
622 {
623         return &def_rt_bandwidth;
624 }
625
626 #endif /* CONFIG_RT_GROUP_SCHED */
627
628 bool sched_rt_bandwidth_account(struct rt_rq *rt_rq)
629 {
630         struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
631
632         return (hrtimer_active(&rt_b->rt_period_timer) ||
633                 rt_rq->rt_time < rt_b->rt_runtime);
634 }
635
636 #ifdef CONFIG_SMP
637 /*
638  * We ran out of runtime, see if we can borrow some from our neighbours.
639  */
640 static void do_balance_runtime(struct rt_rq *rt_rq)
641 {
642         struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
643         struct root_domain *rd = rq_of_rt_rq(rt_rq)->rd;
644         int i, weight;
645         u64 rt_period;
646
647         weight = cpumask_weight(rd->span);
648
649         raw_spin_lock(&rt_b->rt_runtime_lock);
650         rt_period = ktime_to_ns(rt_b->rt_period);
651         for_each_cpu(i, rd->span) {
652                 struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
653                 s64 diff;
654
655                 if (iter == rt_rq)
656                         continue;
657
658                 raw_spin_lock(&iter->rt_runtime_lock);
659                 /*
660                  * Either all rqs have inf runtime and there's nothing to steal
661                  * or __disable_runtime() below sets a specific rq to inf to
662                  * indicate its been disabled and disalow stealing.
663                  */
664                 if (iter->rt_runtime == RUNTIME_INF)
665                         goto next;
666
667                 /*
668                  * From runqueues with spare time, take 1/n part of their
669                  * spare time, but no more than our period.
670                  */
671                 diff = iter->rt_runtime - iter->rt_time;
672                 if (diff > 0) {
673                         diff = div_u64((u64)diff, weight);
674                         if (rt_rq->rt_runtime + diff > rt_period)
675                                 diff = rt_period - rt_rq->rt_runtime;
676                         iter->rt_runtime -= diff;
677                         rt_rq->rt_runtime += diff;
678                         if (rt_rq->rt_runtime == rt_period) {
679                                 raw_spin_unlock(&iter->rt_runtime_lock);
680                                 break;
681                         }
682                 }
683 next:
684                 raw_spin_unlock(&iter->rt_runtime_lock);
685         }
686         raw_spin_unlock(&rt_b->rt_runtime_lock);
687 }
688
689 /*
690  * Ensure this RQ takes back all the runtime it lend to its neighbours.
691  */
692 static void __disable_runtime(struct rq *rq)
693 {
694         struct root_domain *rd = rq->rd;
695         rt_rq_iter_t iter;
696         struct rt_rq *rt_rq;
697
698         if (unlikely(!scheduler_running))
699                 return;
700
701         for_each_rt_rq(rt_rq, iter, rq) {
702                 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
703                 s64 want;
704                 int i;
705
706                 raw_spin_lock(&rt_b->rt_runtime_lock);
707                 raw_spin_lock(&rt_rq->rt_runtime_lock);
708                 /*
709                  * Either we're all inf and nobody needs to borrow, or we're
710                  * already disabled and thus have nothing to do, or we have
711                  * exactly the right amount of runtime to take out.
712                  */
713                 if (rt_rq->rt_runtime == RUNTIME_INF ||
714                                 rt_rq->rt_runtime == rt_b->rt_runtime)
715                         goto balanced;
716                 raw_spin_unlock(&rt_rq->rt_runtime_lock);
717
718                 /*
719                  * Calculate the difference between what we started out with
720                  * and what we current have, that's the amount of runtime
721                  * we lend and now have to reclaim.
722                  */
723                 want = rt_b->rt_runtime - rt_rq->rt_runtime;
724
725                 /*
726                  * Greedy reclaim, take back as much as we can.
727                  */
728                 for_each_cpu(i, rd->span) {
729                         struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
730                         s64 diff;
731
732                         /*
733                          * Can't reclaim from ourselves or disabled runqueues.
734                          */
735                         if (iter == rt_rq || iter->rt_runtime == RUNTIME_INF)
736                                 continue;
737
738                         raw_spin_lock(&iter->rt_runtime_lock);
739                         if (want > 0) {
740                                 diff = min_t(s64, iter->rt_runtime, want);
741                                 iter->rt_runtime -= diff;
742                                 want -= diff;
743                         } else {
744                                 iter->rt_runtime -= want;
745                                 want -= want;
746                         }
747                         raw_spin_unlock(&iter->rt_runtime_lock);
748
749                         if (!want)
750                                 break;
751                 }
752
753                 raw_spin_lock(&rt_rq->rt_runtime_lock);
754                 /*
755                  * We cannot be left wanting - that would mean some runtime
756                  * leaked out of the system.
757                  */
758                 BUG_ON(want);
759 balanced:
760                 /*
761                  * Disable all the borrow logic by pretending we have inf
762                  * runtime - in which case borrowing doesn't make sense.
763                  */
764                 rt_rq->rt_runtime = RUNTIME_INF;
765                 rt_rq->rt_throttled = 0;
766                 raw_spin_unlock(&rt_rq->rt_runtime_lock);
767                 raw_spin_unlock(&rt_b->rt_runtime_lock);
768
769                 /* Make rt_rq available for pick_next_task() */
770                 sched_rt_rq_enqueue(rt_rq);
771         }
772 }
773
774 static void __enable_runtime(struct rq *rq)
775 {
776         rt_rq_iter_t iter;
777         struct rt_rq *rt_rq;
778
779         if (unlikely(!scheduler_running))
780                 return;
781
782         /*
783          * Reset each runqueue's bandwidth settings
784          */
785         for_each_rt_rq(rt_rq, iter, rq) {
786                 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
787
788                 raw_spin_lock(&rt_b->rt_runtime_lock);
789                 raw_spin_lock(&rt_rq->rt_runtime_lock);
790                 rt_rq->rt_runtime = rt_b->rt_runtime;
791                 rt_rq->rt_time = 0;
792                 rt_rq->rt_throttled = 0;
793                 raw_spin_unlock(&rt_rq->rt_runtime_lock);
794                 raw_spin_unlock(&rt_b->rt_runtime_lock);
795         }
796 }
797
798 static void balance_runtime(struct rt_rq *rt_rq)
799 {
800         if (!sched_feat(RT_RUNTIME_SHARE))
801                 return;
802
803         if (rt_rq->rt_time > rt_rq->rt_runtime) {
804                 raw_spin_unlock(&rt_rq->rt_runtime_lock);
805                 do_balance_runtime(rt_rq);
806                 raw_spin_lock(&rt_rq->rt_runtime_lock);
807         }
808 }
809 #else /* !CONFIG_SMP */
810 static inline void balance_runtime(struct rt_rq *rt_rq) {}
811 #endif /* CONFIG_SMP */
812
813 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun)
814 {
815         int i, idle = 1, throttled = 0;
816         const struct cpumask *span;
817
818         span = sched_rt_period_mask();
819 #ifdef CONFIG_RT_GROUP_SCHED
820         /*
821          * FIXME: isolated CPUs should really leave the root task group,
822          * whether they are isolcpus or were isolated via cpusets, lest
823          * the timer run on a CPU which does not service all runqueues,
824          * potentially leaving other CPUs indefinitely throttled.  If
825          * isolation is really required, the user will turn the throttle
826          * off to kill the perturbations it causes anyway.  Meanwhile,
827          * this maintains functionality for boot and/or troubleshooting.
828          */
829         if (rt_b == &root_task_group.rt_bandwidth)
830                 span = cpu_online_mask;
831 #endif
832         for_each_cpu(i, span) {
833                 int enqueue = 0;
834                 struct rt_rq *rt_rq = sched_rt_period_rt_rq(rt_b, i);
835                 struct rq *rq = rq_of_rt_rq(rt_rq);
836
837                 raw_spin_lock(&rq->lock);
838                 if (rt_rq->rt_time) {
839                         u64 runtime;
840
841                         raw_spin_lock(&rt_rq->rt_runtime_lock);
842                         if (rt_rq->rt_throttled)
843                                 balance_runtime(rt_rq);
844                         runtime = rt_rq->rt_runtime;
845                         rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime);
846                         if (rt_rq->rt_throttled && rt_rq->rt_time < runtime) {
847                                 rt_rq->rt_throttled = 0;
848                                 enqueue = 1;
849
850                                 /*
851                                  * When we're idle and a woken (rt) task is
852                                  * throttled check_preempt_curr() will set
853                                  * skip_update and the time between the wakeup
854                                  * and this unthrottle will get accounted as
855                                  * 'runtime'.
856                                  */
857                                 if (rt_rq->rt_nr_running && rq->curr == rq->idle)
858                                         rq_clock_skip_update(rq, false);
859                         }
860                         if (rt_rq->rt_time || rt_rq->rt_nr_running)
861                                 idle = 0;
862                         raw_spin_unlock(&rt_rq->rt_runtime_lock);
863                 } else if (rt_rq->rt_nr_running) {
864                         idle = 0;
865                         if (!rt_rq_throttled(rt_rq))
866                                 enqueue = 1;
867                 }
868                 if (rt_rq->rt_throttled)
869                         throttled = 1;
870
871                 if (enqueue)
872                         sched_rt_rq_enqueue(rt_rq);
873                 raw_spin_unlock(&rq->lock);
874         }
875
876         if (!throttled && (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF))
877                 return 1;
878
879         return idle;
880 }
881
882 static inline int rt_se_prio(struct sched_rt_entity *rt_se)
883 {
884 #ifdef CONFIG_RT_GROUP_SCHED
885         struct rt_rq *rt_rq = group_rt_rq(rt_se);
886
887         if (rt_rq)
888                 return rt_rq->highest_prio.curr;
889 #endif
890
891         return rt_task_of(rt_se)->prio;
892 }
893
894 static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
895 {
896         u64 runtime = sched_rt_runtime(rt_rq);
897
898         if (rt_rq->rt_throttled)
899                 return rt_rq_throttled(rt_rq);
900
901         if (runtime >= sched_rt_period(rt_rq))
902                 return 0;
903
904         balance_runtime(rt_rq);
905         runtime = sched_rt_runtime(rt_rq);
906         if (runtime == RUNTIME_INF)
907                 return 0;
908
909         if (rt_rq->rt_time > runtime) {
910                 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
911
912                 /*
913                  * Don't actually throttle groups that have no runtime assigned
914                  * but accrue some time due to boosting.
915                  */
916                 if (likely(rt_b->rt_runtime)) {
917                         rt_rq->rt_throttled = 1;
918                         printk_deferred_once("sched: RT throttling activated\n");
919                 } else {
920                         /*
921                          * In case we did anyway, make it go away,
922                          * replenishment is a joke, since it will replenish us
923                          * with exactly 0 ns.
924                          */
925                         rt_rq->rt_time = 0;
926                 }
927
928                 if (rt_rq_throttled(rt_rq)) {
929                         sched_rt_rq_dequeue(rt_rq);
930                         return 1;
931                 }
932         }
933
934         return 0;
935 }
936
937 /*
938  * Update the current task's runtime statistics. Skip current tasks that
939  * are not in our scheduling class.
940  */
941 static void update_curr_rt(struct rq *rq)
942 {
943         struct task_struct *curr = rq->curr;
944         struct sched_rt_entity *rt_se = &curr->rt;
945         u64 delta_exec;
946
947         if (curr->sched_class != &rt_sched_class)
948                 return;
949
950         delta_exec = rq_clock_task(rq) - curr->se.exec_start;
951         if (unlikely((s64)delta_exec <= 0))
952                 return;
953
954         schedstat_set(curr->se.statistics.exec_max,
955                       max(curr->se.statistics.exec_max, delta_exec));
956
957         curr->se.sum_exec_runtime += delta_exec;
958         account_group_exec_runtime(curr, delta_exec);
959
960         curr->se.exec_start = rq_clock_task(rq);
961         cpuacct_charge(curr, delta_exec);
962
963         sched_rt_avg_update(rq, delta_exec);
964
965         if (!rt_bandwidth_enabled())
966                 return;
967
968         for_each_sched_rt_entity(rt_se) {
969                 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
970
971                 if (sched_rt_runtime(rt_rq) != RUNTIME_INF) {
972                         raw_spin_lock(&rt_rq->rt_runtime_lock);
973                         rt_rq->rt_time += delta_exec;
974                         if (sched_rt_runtime_exceeded(rt_rq))
975                                 resched_curr(rq);
976                         raw_spin_unlock(&rt_rq->rt_runtime_lock);
977                 }
978         }
979 }
980
981 static void
982 dequeue_top_rt_rq(struct rt_rq *rt_rq)
983 {
984         struct rq *rq = rq_of_rt_rq(rt_rq);
985
986         BUG_ON(&rq->rt != rt_rq);
987
988         if (!rt_rq->rt_queued)
989                 return;
990
991         BUG_ON(!rq->nr_running);
992
993         sub_nr_running(rq, rt_rq->rt_nr_running);
994         rt_rq->rt_queued = 0;
995 }
996
997 static void
998 enqueue_top_rt_rq(struct rt_rq *rt_rq)
999 {
1000         struct rq *rq = rq_of_rt_rq(rt_rq);
1001
1002         BUG_ON(&rq->rt != rt_rq);
1003
1004         if (rt_rq->rt_queued)
1005                 return;
1006         if (rt_rq_throttled(rt_rq) || !rt_rq->rt_nr_running)
1007                 return;
1008
1009         add_nr_running(rq, rt_rq->rt_nr_running);
1010         rt_rq->rt_queued = 1;
1011 }
1012
1013 #if defined CONFIG_SMP
1014
1015 static void
1016 inc_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio)
1017 {
1018         struct rq *rq = rq_of_rt_rq(rt_rq);
1019
1020 #ifdef CONFIG_RT_GROUP_SCHED
1021         /*
1022          * Change rq's cpupri only if rt_rq is the top queue.
1023          */
1024         if (&rq->rt != rt_rq)
1025                 return;
1026 #endif
1027         if (rq->online && prio < prev_prio)
1028                 cpupri_set(&rq->rd->cpupri, rq->cpu, prio);
1029 }
1030
1031 static void
1032 dec_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio)
1033 {
1034         struct rq *rq = rq_of_rt_rq(rt_rq);
1035
1036 #ifdef CONFIG_RT_GROUP_SCHED
1037         /*
1038          * Change rq's cpupri only if rt_rq is the top queue.
1039          */
1040         if (&rq->rt != rt_rq)
1041                 return;
1042 #endif
1043         if (rq->online && rt_rq->highest_prio.curr != prev_prio)
1044                 cpupri_set(&rq->rd->cpupri, rq->cpu, rt_rq->highest_prio.curr);
1045 }
1046
1047 #else /* CONFIG_SMP */
1048
1049 static inline
1050 void inc_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio) {}
1051 static inline
1052 void dec_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio) {}
1053
1054 #endif /* CONFIG_SMP */
1055
1056 #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
1057 static void
1058 inc_rt_prio(struct rt_rq *rt_rq, int prio)
1059 {
1060         int prev_prio = rt_rq->highest_prio.curr;
1061
1062         if (prio < prev_prio)
1063                 rt_rq->highest_prio.curr = prio;
1064
1065         inc_rt_prio_smp(rt_rq, prio, prev_prio);
1066 }
1067
1068 static void
1069 dec_rt_prio(struct rt_rq *rt_rq, int prio)
1070 {
1071         int prev_prio = rt_rq->highest_prio.curr;
1072
1073         if (rt_rq->rt_nr_running) {
1074
1075                 WARN_ON(prio < prev_prio);
1076
1077                 /*
1078                  * This may have been our highest task, and therefore
1079                  * we may have some recomputation to do
1080                  */
1081                 if (prio == prev_prio) {
1082                         struct rt_prio_array *array = &rt_rq->active;
1083
1084                         rt_rq->highest_prio.curr =
1085                                 sched_find_first_bit(array->bitmap);
1086                 }
1087
1088         } else
1089                 rt_rq->highest_prio.curr = MAX_RT_PRIO;
1090
1091         dec_rt_prio_smp(rt_rq, prio, prev_prio);
1092 }
1093
1094 #else
1095
1096 static inline void inc_rt_prio(struct rt_rq *rt_rq, int prio) {}
1097 static inline void dec_rt_prio(struct rt_rq *rt_rq, int prio) {}
1098
1099 #endif /* CONFIG_SMP || CONFIG_RT_GROUP_SCHED */
1100
1101 #ifdef CONFIG_RT_GROUP_SCHED
1102
1103 static void
1104 inc_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1105 {
1106         if (rt_se_boosted(rt_se))
1107                 rt_rq->rt_nr_boosted++;
1108
1109         if (rt_rq->tg)
1110                 start_rt_bandwidth(&rt_rq->tg->rt_bandwidth);
1111 }
1112
1113 static void
1114 dec_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1115 {
1116         if (rt_se_boosted(rt_se))
1117                 rt_rq->rt_nr_boosted--;
1118
1119         WARN_ON(!rt_rq->rt_nr_running && rt_rq->rt_nr_boosted);
1120 }
1121
1122 #else /* CONFIG_RT_GROUP_SCHED */
1123
1124 static void
1125 inc_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1126 {
1127         start_rt_bandwidth(&def_rt_bandwidth);
1128 }
1129
1130 static inline
1131 void dec_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq) {}
1132
1133 #endif /* CONFIG_RT_GROUP_SCHED */
1134
1135 static inline
1136 unsigned int rt_se_nr_running(struct sched_rt_entity *rt_se)
1137 {
1138         struct rt_rq *group_rq = group_rt_rq(rt_se);
1139
1140         if (group_rq)
1141                 return group_rq->rt_nr_running;
1142         else
1143                 return 1;
1144 }
1145
1146 static inline
1147 void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1148 {
1149         int prio = rt_se_prio(rt_se);
1150
1151         WARN_ON(!rt_prio(prio));
1152         rt_rq->rt_nr_running += rt_se_nr_running(rt_se);
1153
1154         inc_rt_prio(rt_rq, prio);
1155         inc_rt_migration(rt_se, rt_rq);
1156         inc_rt_group(rt_se, rt_rq);
1157 }
1158
1159 static inline
1160 void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1161 {
1162         WARN_ON(!rt_prio(rt_se_prio(rt_se)));
1163         WARN_ON(!rt_rq->rt_nr_running);
1164         rt_rq->rt_nr_running -= rt_se_nr_running(rt_se);
1165
1166         dec_rt_prio(rt_rq, rt_se_prio(rt_se));
1167         dec_rt_migration(rt_se, rt_rq);
1168         dec_rt_group(rt_se, rt_rq);
1169 }
1170
1171 static void __enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head)
1172 {
1173         struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
1174         struct rt_prio_array *array = &rt_rq->active;
1175         struct rt_rq *group_rq = group_rt_rq(rt_se);
1176         struct list_head *queue = array->queue + rt_se_prio(rt_se);
1177
1178         /*
1179          * Don't enqueue the group if its throttled, or when empty.
1180          * The latter is a consequence of the former when a child group
1181          * get throttled and the current group doesn't have any other
1182          * active members.
1183          */
1184         if (group_rq && (rt_rq_throttled(group_rq) || !group_rq->rt_nr_running))
1185                 return;
1186
1187         if (head)
1188                 list_add(&rt_se->run_list, queue);
1189         else
1190                 list_add_tail(&rt_se->run_list, queue);
1191         __set_bit(rt_se_prio(rt_se), array->bitmap);
1192
1193         inc_rt_tasks(rt_se, rt_rq);
1194 }
1195
1196 static void __dequeue_rt_entity(struct sched_rt_entity *rt_se)
1197 {
1198         struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
1199         struct rt_prio_array *array = &rt_rq->active;
1200
1201         list_del_init(&rt_se->run_list);
1202         if (list_empty(array->queue + rt_se_prio(rt_se)))
1203                 __clear_bit(rt_se_prio(rt_se), array->bitmap);
1204
1205         dec_rt_tasks(rt_se, rt_rq);
1206 }
1207
1208 /*
1209  * Because the prio of an upper entry depends on the lower
1210  * entries, we must remove entries top - down.
1211  */
1212 static void dequeue_rt_stack(struct sched_rt_entity *rt_se)
1213 {
1214         struct sched_rt_entity *back = NULL;
1215
1216         for_each_sched_rt_entity(rt_se) {
1217                 rt_se->back = back;
1218                 back = rt_se;
1219         }
1220
1221         dequeue_top_rt_rq(rt_rq_of_se(back));
1222
1223         for (rt_se = back; rt_se; rt_se = rt_se->back) {
1224                 if (on_rt_rq(rt_se))
1225                         __dequeue_rt_entity(rt_se);
1226         }
1227 }
1228
1229 static void enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head)
1230 {
1231         struct rq *rq = rq_of_rt_se(rt_se);
1232
1233         dequeue_rt_stack(rt_se);
1234         for_each_sched_rt_entity(rt_se)
1235                 __enqueue_rt_entity(rt_se, head);
1236         enqueue_top_rt_rq(&rq->rt);
1237 }
1238
1239 static void dequeue_rt_entity(struct sched_rt_entity *rt_se)
1240 {
1241         struct rq *rq = rq_of_rt_se(rt_se);
1242
1243         dequeue_rt_stack(rt_se);
1244
1245         for_each_sched_rt_entity(rt_se) {
1246                 struct rt_rq *rt_rq = group_rt_rq(rt_se);
1247
1248                 if (rt_rq && rt_rq->rt_nr_running)
1249                         __enqueue_rt_entity(rt_se, false);
1250         }
1251         enqueue_top_rt_rq(&rq->rt);
1252 }
1253
1254 /*
1255  * Adding/removing a task to/from a priority array:
1256  */
1257 static void
1258 enqueue_task_rt(struct rq *rq, struct task_struct *p, int flags)
1259 {
1260         struct sched_rt_entity *rt_se = &p->rt;
1261
1262         if (flags & ENQUEUE_WAKEUP)
1263                 rt_se->timeout = 0;
1264
1265         enqueue_rt_entity(rt_se, flags & ENQUEUE_HEAD);
1266         walt_inc_cumulative_runnable_avg(rq, p);
1267
1268         if (!task_current(rq, p) && p->nr_cpus_allowed > 1)
1269                 enqueue_pushable_task(rq, p);
1270 }
1271
1272 static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int flags)
1273 {
1274         struct sched_rt_entity *rt_se = &p->rt;
1275
1276         update_curr_rt(rq);
1277         dequeue_rt_entity(rt_se);
1278         walt_dec_cumulative_runnable_avg(rq, p);
1279
1280         dequeue_pushable_task(rq, p);
1281 }
1282
1283 /*
1284  * Put task to the head or the end of the run list without the overhead of
1285  * dequeue followed by enqueue.
1286  */
1287 static void
1288 requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se, int head)
1289 {
1290         if (on_rt_rq(rt_se)) {
1291                 struct rt_prio_array *array = &rt_rq->active;
1292                 struct list_head *queue = array->queue + rt_se_prio(rt_se);
1293
1294                 if (head)
1295                         list_move(&rt_se->run_list, queue);
1296                 else
1297                         list_move_tail(&rt_se->run_list, queue);
1298         }
1299 }
1300
1301 static void requeue_task_rt(struct rq *rq, struct task_struct *p, int head)
1302 {
1303         struct sched_rt_entity *rt_se = &p->rt;
1304         struct rt_rq *rt_rq;
1305
1306         for_each_sched_rt_entity(rt_se) {
1307                 rt_rq = rt_rq_of_se(rt_se);
1308                 requeue_rt_entity(rt_rq, rt_se, head);
1309         }
1310 }
1311
1312 static void yield_task_rt(struct rq *rq)
1313 {
1314         requeue_task_rt(rq, rq->curr, 0);
1315 }
1316
1317 #ifdef CONFIG_SMP
1318 static int find_lowest_rq(struct task_struct *task);
1319
1320 static int
1321 select_task_rq_rt(struct task_struct *p, int cpu, int sd_flag, int flags)
1322 {
1323         struct task_struct *curr;
1324         struct rq *rq;
1325
1326         /* For anything but wake ups, just return the task_cpu */
1327         if (sd_flag != SD_BALANCE_WAKE && sd_flag != SD_BALANCE_FORK)
1328                 goto out;
1329
1330         rq = cpu_rq(cpu);
1331
1332         rcu_read_lock();
1333         curr = READ_ONCE(rq->curr); /* unlocked access */
1334
1335         /*
1336          * If the current task on @p's runqueue is an RT task, then
1337          * try to see if we can wake this RT task up on another
1338          * runqueue. Otherwise simply start this RT task
1339          * on its current runqueue.
1340          *
1341          * We want to avoid overloading runqueues. If the woken
1342          * task is a higher priority, then it will stay on this CPU
1343          * and the lower prio task should be moved to another CPU.
1344          * Even though this will probably make the lower prio task
1345          * lose its cache, we do not want to bounce a higher task
1346          * around just because it gave up its CPU, perhaps for a
1347          * lock?
1348          *
1349          * For equal prio tasks, we just let the scheduler sort it out.
1350          *
1351          * Otherwise, just let it ride on the affined RQ and the
1352          * post-schedule router will push the preempted task away
1353          *
1354          * This test is optimistic, if we get it wrong the load-balancer
1355          * will have to sort it out.
1356          */
1357         if (curr && unlikely(rt_task(curr)) &&
1358             (curr->nr_cpus_allowed < 2 ||
1359              curr->prio <= p->prio)) {
1360                 int target = find_lowest_rq(p);
1361
1362                 /*
1363                  * Don't bother moving it if the destination CPU is
1364                  * not running a lower priority task.
1365                  */
1366                 if (target != -1 &&
1367                     p->prio < cpu_rq(target)->rt.highest_prio.curr)
1368                         cpu = target;
1369         }
1370         rcu_read_unlock();
1371
1372 out:
1373         return cpu;
1374 }
1375
1376 static void check_preempt_equal_prio(struct rq *rq, struct task_struct *p)
1377 {
1378         /*
1379          * Current can't be migrated, useless to reschedule,
1380          * let's hope p can move out.
1381          */
1382         if (rq->curr->nr_cpus_allowed == 1 ||
1383             !cpupri_find(&rq->rd->cpupri, rq->curr, NULL))
1384                 return;
1385
1386         /*
1387          * p is migratable, so let's not schedule it and
1388          * see if it is pushed or pulled somewhere else.
1389          */
1390         if (p->nr_cpus_allowed != 1
1391             && cpupri_find(&rq->rd->cpupri, p, NULL))
1392                 return;
1393
1394         /*
1395          * There appears to be other cpus that can accept
1396          * current and none to run 'p', so lets reschedule
1397          * to try and push current away:
1398          */
1399         requeue_task_rt(rq, p, 1);
1400         resched_curr(rq);
1401 }
1402
1403 #endif /* CONFIG_SMP */
1404
1405 /*
1406  * Preempt the current task with a newly woken task if needed:
1407  */
1408 static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p, int flags)
1409 {
1410         if (p->prio < rq->curr->prio) {
1411                 resched_curr(rq);
1412                 return;
1413         }
1414
1415 #ifdef CONFIG_SMP
1416         /*
1417          * If:
1418          *
1419          * - the newly woken task is of equal priority to the current task
1420          * - the newly woken task is non-migratable while current is migratable
1421          * - current will be preempted on the next reschedule
1422          *
1423          * we should check to see if current can readily move to a different
1424          * cpu.  If so, we will reschedule to allow the push logic to try
1425          * to move current somewhere else, making room for our non-migratable
1426          * task.
1427          */
1428         if (p->prio == rq->curr->prio && !test_tsk_need_resched(rq->curr))
1429                 check_preempt_equal_prio(rq, p);
1430 #endif
1431 }
1432
1433 #ifdef CONFIG_SMP
1434 static void sched_rt_update_capacity_req(struct rq *rq)
1435 {
1436         u64 total, used, age_stamp, avg;
1437         s64 delta;
1438
1439         if (!sched_freq())
1440                 return;
1441
1442         sched_avg_update(rq);
1443         /*
1444          * Since we're reading these variables without serialization make sure
1445          * we read them once before doing sanity checks on them.
1446          */
1447         age_stamp = READ_ONCE(rq->age_stamp);
1448         avg = READ_ONCE(rq->rt_avg);
1449         delta = rq_clock(rq) - age_stamp;
1450
1451         if (unlikely(delta < 0))
1452                 delta = 0;
1453
1454         total = sched_avg_period() + delta;
1455
1456         used = div_u64(avg, total);
1457         if (unlikely(used > SCHED_CAPACITY_SCALE))
1458                 used = SCHED_CAPACITY_SCALE;
1459
1460         set_rt_cpu_capacity(rq->cpu, 1, (unsigned long)(used));
1461 }
1462 #else
1463 static inline void sched_rt_update_capacity_req(struct rq *rq)
1464 { }
1465
1466 #endif
1467
1468 static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq,
1469                                                    struct rt_rq *rt_rq)
1470 {
1471         struct rt_prio_array *array = &rt_rq->active;
1472         struct sched_rt_entity *next = NULL;
1473         struct list_head *queue;
1474         int idx;
1475
1476         idx = sched_find_first_bit(array->bitmap);
1477         BUG_ON(idx >= MAX_RT_PRIO);
1478
1479         queue = array->queue + idx;
1480         next = list_entry(queue->next, struct sched_rt_entity, run_list);
1481
1482         return next;
1483 }
1484
1485 static struct task_struct *_pick_next_task_rt(struct rq *rq)
1486 {
1487         struct sched_rt_entity *rt_se;
1488         struct task_struct *p;
1489         struct rt_rq *rt_rq  = &rq->rt;
1490
1491         do {
1492                 rt_se = pick_next_rt_entity(rq, rt_rq);
1493                 BUG_ON(!rt_se);
1494                 rt_rq = group_rt_rq(rt_se);
1495         } while (rt_rq);
1496
1497         p = rt_task_of(rt_se);
1498         p->se.exec_start = rq_clock_task(rq);
1499
1500         return p;
1501 }
1502
1503 static struct task_struct *
1504 pick_next_task_rt(struct rq *rq, struct task_struct *prev)
1505 {
1506         struct task_struct *p;
1507         struct rt_rq *rt_rq = &rq->rt;
1508
1509         if (need_pull_rt_task(rq, prev)) {
1510                 /*
1511                  * This is OK, because current is on_cpu, which avoids it being
1512                  * picked for load-balance and preemption/IRQs are still
1513                  * disabled avoiding further scheduler activity on it and we're
1514                  * being very careful to re-start the picking loop.
1515                  */
1516                 lockdep_unpin_lock(&rq->lock);
1517                 pull_rt_task(rq);
1518                 lockdep_pin_lock(&rq->lock);
1519                 /*
1520                  * pull_rt_task() can drop (and re-acquire) rq->lock; this
1521                  * means a dl or stop task can slip in, in which case we need
1522                  * to re-start task selection.
1523                  */
1524                 if (unlikely((rq->stop && task_on_rq_queued(rq->stop)) ||
1525                              rq->dl.dl_nr_running))
1526                         return RETRY_TASK;
1527         }
1528
1529         /*
1530          * We may dequeue prev's rt_rq in put_prev_task().
1531          * So, we update time before rt_nr_running check.
1532          */
1533         if (prev->sched_class == &rt_sched_class)
1534                 update_curr_rt(rq);
1535
1536         if (!rt_rq->rt_queued) {
1537                 /*
1538                  * The next task to be picked on this rq will have a lower
1539                  * priority than rt tasks so we can spend some time to update
1540                  * the capacity used by rt tasks based on the last activity.
1541                  * This value will be the used as an estimation of the next
1542                  * activity.
1543                  */
1544                 sched_rt_update_capacity_req(rq);
1545                 return NULL;
1546         }
1547
1548         put_prev_task(rq, prev);
1549
1550         p = _pick_next_task_rt(rq);
1551
1552         /* The running task is never eligible for pushing */
1553         dequeue_pushable_task(rq, p);
1554
1555         queue_push_tasks(rq);
1556
1557         return p;
1558 }
1559
1560 static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
1561 {
1562         update_curr_rt(rq);
1563
1564         /*
1565          * The previous task needs to be made eligible for pushing
1566          * if it is still active
1567          */
1568         if (on_rt_rq(&p->rt) && p->nr_cpus_allowed > 1)
1569                 enqueue_pushable_task(rq, p);
1570 }
1571
1572 #ifdef CONFIG_SMP
1573
1574 /* Only try algorithms three times */
1575 #define RT_MAX_TRIES 3
1576
1577 static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
1578 {
1579         if (!task_running(rq, p) &&
1580             cpumask_test_cpu(cpu, tsk_cpus_allowed(p)))
1581                 return 1;
1582         return 0;
1583 }
1584
1585 /*
1586  * Return the highest pushable rq's task, which is suitable to be executed
1587  * on the cpu, NULL otherwise
1588  */
1589 static struct task_struct *pick_highest_pushable_task(struct rq *rq, int cpu)
1590 {
1591         struct plist_head *head = &rq->rt.pushable_tasks;
1592         struct task_struct *p;
1593
1594         if (!has_pushable_tasks(rq))
1595                 return NULL;
1596
1597         plist_for_each_entry(p, head, pushable_tasks) {
1598                 if (pick_rt_task(rq, p, cpu))
1599                         return p;
1600         }
1601
1602         return NULL;
1603 }
1604
1605 static DEFINE_PER_CPU(cpumask_var_t, local_cpu_mask);
1606
1607 static int find_lowest_rq(struct task_struct *task)
1608 {
1609         struct sched_domain *sd;
1610         struct cpumask *lowest_mask = this_cpu_cpumask_var_ptr(local_cpu_mask);
1611         int this_cpu = smp_processor_id();
1612         int cpu      = task_cpu(task);
1613
1614         /* Make sure the mask is initialized first */
1615         if (unlikely(!lowest_mask))
1616                 return -1;
1617
1618         if (task->nr_cpus_allowed == 1)
1619                 return -1; /* No other targets possible */
1620
1621         if (!cpupri_find(&task_rq(task)->rd->cpupri, task, lowest_mask))
1622                 return -1; /* No targets found */
1623
1624         /*
1625          * At this point we have built a mask of cpus representing the
1626          * lowest priority tasks in the system.  Now we want to elect
1627          * the best one based on our affinity and topology.
1628          *
1629          * We prioritize the last cpu that the task executed on since
1630          * it is most likely cache-hot in that location.
1631          */
1632         if (cpumask_test_cpu(cpu, lowest_mask))
1633                 return cpu;
1634
1635         /*
1636          * Otherwise, we consult the sched_domains span maps to figure
1637          * out which cpu is logically closest to our hot cache data.
1638          */
1639         if (!cpumask_test_cpu(this_cpu, lowest_mask))
1640                 this_cpu = -1; /* Skip this_cpu opt if not among lowest */
1641
1642         rcu_read_lock();
1643         for_each_domain(cpu, sd) {
1644                 if (sd->flags & SD_WAKE_AFFINE) {
1645                         int best_cpu;
1646
1647                         /*
1648                          * "this_cpu" is cheaper to preempt than a
1649                          * remote processor.
1650                          */
1651                         if (this_cpu != -1 &&
1652                             cpumask_test_cpu(this_cpu, sched_domain_span(sd))) {
1653                                 rcu_read_unlock();
1654                                 return this_cpu;
1655                         }
1656
1657                         best_cpu = cpumask_first_and(lowest_mask,
1658                                                      sched_domain_span(sd));
1659                         if (best_cpu < nr_cpu_ids) {
1660                                 rcu_read_unlock();
1661                                 return best_cpu;
1662                         }
1663                 }
1664         }
1665         rcu_read_unlock();
1666
1667         /*
1668          * And finally, if there were no matches within the domains
1669          * just give the caller *something* to work with from the compatible
1670          * locations.
1671          */
1672         if (this_cpu != -1)
1673                 return this_cpu;
1674
1675         cpu = cpumask_any(lowest_mask);
1676         if (cpu < nr_cpu_ids)
1677                 return cpu;
1678         return -1;
1679 }
1680
1681 /* Will lock the rq it finds */
1682 static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
1683 {
1684         struct rq *lowest_rq = NULL;
1685         int tries;
1686         int cpu;
1687
1688         for (tries = 0; tries < RT_MAX_TRIES; tries++) {
1689                 cpu = find_lowest_rq(task);
1690
1691                 if ((cpu == -1) || (cpu == rq->cpu))
1692                         break;
1693
1694                 lowest_rq = cpu_rq(cpu);
1695
1696                 if (lowest_rq->rt.highest_prio.curr <= task->prio) {
1697                         /*
1698                          * Target rq has tasks of equal or higher priority,
1699                          * retrying does not release any lock and is unlikely
1700                          * to yield a different result.
1701                          */
1702                         lowest_rq = NULL;
1703                         break;
1704                 }
1705
1706                 /* if the prio of this runqueue changed, try again */
1707                 if (double_lock_balance(rq, lowest_rq)) {
1708                         /*
1709                          * We had to unlock the run queue. In
1710                          * the mean time, task could have
1711                          * migrated already or had its affinity changed.
1712                          * Also make sure that it wasn't scheduled on its rq.
1713                          */
1714                         if (unlikely(task_rq(task) != rq ||
1715                                      !cpumask_test_cpu(lowest_rq->cpu,
1716                                                        tsk_cpus_allowed(task)) ||
1717                                      task_running(rq, task) ||
1718                                      !task_on_rq_queued(task))) {
1719
1720                                 double_unlock_balance(rq, lowest_rq);
1721                                 lowest_rq = NULL;
1722                                 break;
1723                         }
1724                 }
1725
1726                 /* If this rq is still suitable use it. */
1727                 if (lowest_rq->rt.highest_prio.curr > task->prio)
1728                         break;
1729
1730                 /* try again */
1731                 double_unlock_balance(rq, lowest_rq);
1732                 lowest_rq = NULL;
1733         }
1734
1735         return lowest_rq;
1736 }
1737
1738 static struct task_struct *pick_next_pushable_task(struct rq *rq)
1739 {
1740         struct task_struct *p;
1741
1742         if (!has_pushable_tasks(rq))
1743                 return NULL;
1744
1745         p = plist_first_entry(&rq->rt.pushable_tasks,
1746                               struct task_struct, pushable_tasks);
1747
1748         BUG_ON(rq->cpu != task_cpu(p));
1749         BUG_ON(task_current(rq, p));
1750         BUG_ON(p->nr_cpus_allowed <= 1);
1751
1752         BUG_ON(!task_on_rq_queued(p));
1753         BUG_ON(!rt_task(p));
1754
1755         return p;
1756 }
1757
1758 /*
1759  * If the current CPU has more than one RT task, see if the non
1760  * running task can migrate over to a CPU that is running a task
1761  * of lesser priority.
1762  */
1763 static int push_rt_task(struct rq *rq)
1764 {
1765         struct task_struct *next_task;
1766         struct rq *lowest_rq;
1767         int ret = 0;
1768
1769         if (!rq->rt.overloaded)
1770                 return 0;
1771
1772         next_task = pick_next_pushable_task(rq);
1773         if (!next_task)
1774                 return 0;
1775
1776 retry:
1777         if (unlikely(next_task == rq->curr)) {
1778                 WARN_ON(1);
1779                 return 0;
1780         }
1781
1782         /*
1783          * It's possible that the next_task slipped in of
1784          * higher priority than current. If that's the case
1785          * just reschedule current.
1786          */
1787         if (unlikely(next_task->prio < rq->curr->prio)) {
1788                 resched_curr(rq);
1789                 return 0;
1790         }
1791
1792         /* We might release rq lock */
1793         get_task_struct(next_task);
1794
1795         /* find_lock_lowest_rq locks the rq if found */
1796         lowest_rq = find_lock_lowest_rq(next_task, rq);
1797         if (!lowest_rq) {
1798                 struct task_struct *task;
1799                 /*
1800                  * find_lock_lowest_rq releases rq->lock
1801                  * so it is possible that next_task has migrated.
1802                  *
1803                  * We need to make sure that the task is still on the same
1804                  * run-queue and is also still the next task eligible for
1805                  * pushing.
1806                  */
1807                 task = pick_next_pushable_task(rq);
1808                 if (task_cpu(next_task) == rq->cpu && task == next_task) {
1809                         /*
1810                          * The task hasn't migrated, and is still the next
1811                          * eligible task, but we failed to find a run-queue
1812                          * to push it to.  Do not retry in this case, since
1813                          * other cpus will pull from us when ready.
1814                          */
1815                         goto out;
1816                 }
1817
1818                 if (!task)
1819                         /* No more tasks, just exit */
1820                         goto out;
1821
1822                 /*
1823                  * Something has shifted, try again.
1824                  */
1825                 put_task_struct(next_task);
1826                 next_task = task;
1827                 goto retry;
1828         }
1829
1830         deactivate_task(rq, next_task, 0);
1831         set_task_cpu(next_task, lowest_rq->cpu);
1832         activate_task(lowest_rq, next_task, 0);
1833         ret = 1;
1834
1835         resched_curr(lowest_rq);
1836
1837         double_unlock_balance(rq, lowest_rq);
1838
1839 out:
1840         put_task_struct(next_task);
1841
1842         return ret;
1843 }
1844
1845 static void push_rt_tasks(struct rq *rq)
1846 {
1847         /* push_rt_task will return true if it moved an RT */
1848         while (push_rt_task(rq))
1849                 ;
1850 }
1851
1852 #ifdef HAVE_RT_PUSH_IPI
1853 /*
1854  * The search for the next cpu always starts at rq->cpu and ends
1855  * when we reach rq->cpu again. It will never return rq->cpu.
1856  * This returns the next cpu to check, or nr_cpu_ids if the loop
1857  * is complete.
1858  *
1859  * rq->rt.push_cpu holds the last cpu returned by this function,
1860  * or if this is the first instance, it must hold rq->cpu.
1861  */
1862 static int rto_next_cpu(struct rq *rq)
1863 {
1864         int prev_cpu = rq->rt.push_cpu;
1865         int cpu;
1866
1867         cpu = cpumask_next(prev_cpu, rq->rd->rto_mask);
1868
1869         /*
1870          * If the previous cpu is less than the rq's CPU, then it already
1871          * passed the end of the mask, and has started from the beginning.
1872          * We end if the next CPU is greater or equal to rq's CPU.
1873          */
1874         if (prev_cpu < rq->cpu) {
1875                 if (cpu >= rq->cpu)
1876                         return nr_cpu_ids;
1877
1878         } else if (cpu >= nr_cpu_ids) {
1879                 /*
1880                  * We passed the end of the mask, start at the beginning.
1881                  * If the result is greater or equal to the rq's CPU, then
1882                  * the loop is finished.
1883                  */
1884                 cpu = cpumask_first(rq->rd->rto_mask);
1885                 if (cpu >= rq->cpu)
1886                         return nr_cpu_ids;
1887         }
1888         rq->rt.push_cpu = cpu;
1889
1890         /* Return cpu to let the caller know if the loop is finished or not */
1891         return cpu;
1892 }
1893
1894 static int find_next_push_cpu(struct rq *rq)
1895 {
1896         struct rq *next_rq;
1897         int cpu;
1898
1899         while (1) {
1900                 cpu = rto_next_cpu(rq);
1901                 if (cpu >= nr_cpu_ids)
1902                         break;
1903                 next_rq = cpu_rq(cpu);
1904
1905                 /* Make sure the next rq can push to this rq */
1906                 if (next_rq->rt.highest_prio.next < rq->rt.highest_prio.curr)
1907                         break;
1908         }
1909
1910         return cpu;
1911 }
1912
1913 #define RT_PUSH_IPI_EXECUTING           1
1914 #define RT_PUSH_IPI_RESTART             2
1915
1916 static void tell_cpu_to_push(struct rq *rq)
1917 {
1918         int cpu;
1919
1920         if (rq->rt.push_flags & RT_PUSH_IPI_EXECUTING) {
1921                 raw_spin_lock(&rq->rt.push_lock);
1922                 /* Make sure it's still executing */
1923                 if (rq->rt.push_flags & RT_PUSH_IPI_EXECUTING) {
1924                         /*
1925                          * Tell the IPI to restart the loop as things have
1926                          * changed since it started.
1927                          */
1928                         rq->rt.push_flags |= RT_PUSH_IPI_RESTART;
1929                         raw_spin_unlock(&rq->rt.push_lock);
1930                         return;
1931                 }
1932                 raw_spin_unlock(&rq->rt.push_lock);
1933         }
1934
1935         /* When here, there's no IPI going around */
1936
1937         rq->rt.push_cpu = rq->cpu;
1938         cpu = find_next_push_cpu(rq);
1939         if (cpu >= nr_cpu_ids)
1940                 return;
1941
1942         rq->rt.push_flags = RT_PUSH_IPI_EXECUTING;
1943
1944         irq_work_queue_on(&rq->rt.push_work, cpu);
1945 }
1946
1947 /* Called from hardirq context */
1948 static void try_to_push_tasks(void *arg)
1949 {
1950         struct rt_rq *rt_rq = arg;
1951         struct rq *rq, *src_rq;
1952         int this_cpu;
1953         int cpu;
1954
1955         this_cpu = rt_rq->push_cpu;
1956
1957         /* Paranoid check */
1958         BUG_ON(this_cpu != smp_processor_id());
1959
1960         rq = cpu_rq(this_cpu);
1961         src_rq = rq_of_rt_rq(rt_rq);
1962
1963 again:
1964         if (has_pushable_tasks(rq)) {
1965                 raw_spin_lock(&rq->lock);
1966                 push_rt_task(rq);
1967                 raw_spin_unlock(&rq->lock);
1968         }
1969
1970         /* Pass the IPI to the next rt overloaded queue */
1971         raw_spin_lock(&rt_rq->push_lock);
1972         /*
1973          * If the source queue changed since the IPI went out,
1974          * we need to restart the search from that CPU again.
1975          */
1976         if (rt_rq->push_flags & RT_PUSH_IPI_RESTART) {
1977                 rt_rq->push_flags &= ~RT_PUSH_IPI_RESTART;
1978                 rt_rq->push_cpu = src_rq->cpu;
1979         }
1980
1981         cpu = find_next_push_cpu(src_rq);
1982
1983         if (cpu >= nr_cpu_ids)
1984                 rt_rq->push_flags &= ~RT_PUSH_IPI_EXECUTING;
1985         raw_spin_unlock(&rt_rq->push_lock);
1986
1987         if (cpu >= nr_cpu_ids)
1988                 return;
1989
1990         /*
1991          * It is possible that a restart caused this CPU to be
1992          * chosen again. Don't bother with an IPI, just see if we
1993          * have more to push.
1994          */
1995         if (unlikely(cpu == rq->cpu))
1996                 goto again;
1997
1998         /* Try the next RT overloaded CPU */
1999         irq_work_queue_on(&rt_rq->push_work, cpu);
2000 }
2001
2002 static void push_irq_work_func(struct irq_work *work)
2003 {
2004         struct rt_rq *rt_rq = container_of(work, struct rt_rq, push_work);
2005
2006         try_to_push_tasks(rt_rq);
2007 }
2008 #endif /* HAVE_RT_PUSH_IPI */
2009
2010 static void pull_rt_task(struct rq *this_rq)
2011 {
2012         int this_cpu = this_rq->cpu, cpu;
2013         bool resched = false;
2014         struct task_struct *p;
2015         struct rq *src_rq;
2016
2017         if (likely(!rt_overloaded(this_rq)))
2018                 return;
2019
2020         /*
2021          * Match the barrier from rt_set_overloaded; this guarantees that if we
2022          * see overloaded we must also see the rto_mask bit.
2023          */
2024         smp_rmb();
2025
2026 #ifdef HAVE_RT_PUSH_IPI
2027         if (sched_feat(RT_PUSH_IPI)) {
2028                 tell_cpu_to_push(this_rq);
2029                 return;
2030         }
2031 #endif
2032
2033         for_each_cpu(cpu, this_rq->rd->rto_mask) {
2034                 if (this_cpu == cpu)
2035                         continue;
2036
2037                 src_rq = cpu_rq(cpu);
2038
2039                 /*
2040                  * Don't bother taking the src_rq->lock if the next highest
2041                  * task is known to be lower-priority than our current task.
2042                  * This may look racy, but if this value is about to go
2043                  * logically higher, the src_rq will push this task away.
2044                  * And if its going logically lower, we do not care
2045                  */
2046                 if (src_rq->rt.highest_prio.next >=
2047                     this_rq->rt.highest_prio.curr)
2048                         continue;
2049
2050                 /*
2051                  * We can potentially drop this_rq's lock in
2052                  * double_lock_balance, and another CPU could
2053                  * alter this_rq
2054                  */
2055                 double_lock_balance(this_rq, src_rq);
2056
2057                 /*
2058                  * We can pull only a task, which is pushable
2059                  * on its rq, and no others.
2060                  */
2061                 p = pick_highest_pushable_task(src_rq, this_cpu);
2062
2063                 /*
2064                  * Do we have an RT task that preempts
2065                  * the to-be-scheduled task?
2066                  */
2067                 if (p && (p->prio < this_rq->rt.highest_prio.curr)) {
2068                         WARN_ON(p == src_rq->curr);
2069                         WARN_ON(!task_on_rq_queued(p));
2070
2071                         /*
2072                          * There's a chance that p is higher in priority
2073                          * than what's currently running on its cpu.
2074                          * This is just that p is wakeing up and hasn't
2075                          * had a chance to schedule. We only pull
2076                          * p if it is lower in priority than the
2077                          * current task on the run queue
2078                          */
2079                         if (p->prio < src_rq->curr->prio)
2080                                 goto skip;
2081
2082                         resched = true;
2083
2084                         deactivate_task(src_rq, p, 0);
2085                         set_task_cpu(p, this_cpu);
2086                         activate_task(this_rq, p, 0);
2087                         /*
2088                          * We continue with the search, just in
2089                          * case there's an even higher prio task
2090                          * in another runqueue. (low likelihood
2091                          * but possible)
2092                          */
2093                 }
2094 skip:
2095                 double_unlock_balance(this_rq, src_rq);
2096         }
2097
2098         if (resched)
2099                 resched_curr(this_rq);
2100 }
2101
2102 /*
2103  * If we are not running and we are not going to reschedule soon, we should
2104  * try to push tasks away now
2105  */
2106 static void task_woken_rt(struct rq *rq, struct task_struct *p)
2107 {
2108         if (!task_running(rq, p) &&
2109             !test_tsk_need_resched(rq->curr) &&
2110             p->nr_cpus_allowed > 1 &&
2111             (dl_task(rq->curr) || rt_task(rq->curr)) &&
2112             (rq->curr->nr_cpus_allowed < 2 ||
2113              rq->curr->prio <= p->prio))
2114                 push_rt_tasks(rq);
2115 }
2116
2117 /* Assumes rq->lock is held */
2118 static void rq_online_rt(struct rq *rq)
2119 {
2120         if (rq->rt.overloaded)
2121                 rt_set_overload(rq);
2122
2123         __enable_runtime(rq);
2124
2125         cpupri_set(&rq->rd->cpupri, rq->cpu, rq->rt.highest_prio.curr);
2126 }
2127
2128 /* Assumes rq->lock is held */
2129 static void rq_offline_rt(struct rq *rq)
2130 {
2131         if (rq->rt.overloaded)
2132                 rt_clear_overload(rq);
2133
2134         __disable_runtime(rq);
2135
2136         cpupri_set(&rq->rd->cpupri, rq->cpu, CPUPRI_INVALID);
2137 }
2138
2139 /*
2140  * When switch from the rt queue, we bring ourselves to a position
2141  * that we might want to pull RT tasks from other runqueues.
2142  */
2143 static void switched_from_rt(struct rq *rq, struct task_struct *p)
2144 {
2145         /*
2146          * If there are other RT tasks then we will reschedule
2147          * and the scheduling of the other RT tasks will handle
2148          * the balancing. But if we are the last RT task
2149          * we may need to handle the pulling of RT tasks
2150          * now.
2151          */
2152         if (!task_on_rq_queued(p) || rq->rt.rt_nr_running)
2153                 return;
2154
2155         queue_pull_task(rq);
2156 }
2157
2158 void __init init_sched_rt_class(void)
2159 {
2160         unsigned int i;
2161
2162         for_each_possible_cpu(i) {
2163                 zalloc_cpumask_var_node(&per_cpu(local_cpu_mask, i),
2164                                         GFP_KERNEL, cpu_to_node(i));
2165         }
2166 }
2167 #endif /* CONFIG_SMP */
2168
2169 /*
2170  * When switching a task to RT, we may overload the runqueue
2171  * with RT tasks. In this case we try to push them off to
2172  * other runqueues.
2173  */
2174 static void switched_to_rt(struct rq *rq, struct task_struct *p)
2175 {
2176         /*
2177          * If we are already running, then there's nothing
2178          * that needs to be done. But if we are not running
2179          * we may need to preempt the current running task.
2180          * If that current running task is also an RT task
2181          * then see if we can move to another run queue.
2182          */
2183         if (task_on_rq_queued(p) && rq->curr != p) {
2184 #ifdef CONFIG_SMP
2185                 if (p->nr_cpus_allowed > 1 && rq->rt.overloaded)
2186                         queue_push_tasks(rq);
2187 #else
2188                 if (p->prio < rq->curr->prio)
2189                         resched_curr(rq);
2190 #endif /* CONFIG_SMP */
2191         }
2192 }
2193
2194 /*
2195  * Priority of the task has changed. This may cause
2196  * us to initiate a push or pull.
2197  */
2198 static void
2199 prio_changed_rt(struct rq *rq, struct task_struct *p, int oldprio)
2200 {
2201         if (!task_on_rq_queued(p))
2202                 return;
2203
2204         if (rq->curr == p) {
2205 #ifdef CONFIG_SMP
2206                 /*
2207                  * If our priority decreases while running, we
2208                  * may need to pull tasks to this runqueue.
2209                  */
2210                 if (oldprio < p->prio)
2211                         queue_pull_task(rq);
2212
2213                 /*
2214                  * If there's a higher priority task waiting to run
2215                  * then reschedule.
2216                  */
2217                 if (p->prio > rq->rt.highest_prio.curr)
2218                         resched_curr(rq);
2219 #else
2220                 /* For UP simply resched on drop of prio */
2221                 if (oldprio < p->prio)
2222                         resched_curr(rq);
2223 #endif /* CONFIG_SMP */
2224         } else {
2225                 /*
2226                  * This task is not running, but if it is
2227                  * greater than the current running task
2228                  * then reschedule.
2229                  */
2230                 if (p->prio < rq->curr->prio)
2231                         resched_curr(rq);
2232         }
2233 }
2234
2235 static void watchdog(struct rq *rq, struct task_struct *p)
2236 {
2237         unsigned long soft, hard;
2238
2239         /* max may change after cur was read, this will be fixed next tick */
2240         soft = task_rlimit(p, RLIMIT_RTTIME);
2241         hard = task_rlimit_max(p, RLIMIT_RTTIME);
2242
2243         if (soft != RLIM_INFINITY) {
2244                 unsigned long next;
2245
2246                 if (p->rt.watchdog_stamp != jiffies) {
2247                         p->rt.timeout++;
2248                         p->rt.watchdog_stamp = jiffies;
2249                 }
2250
2251                 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ);
2252                 if (p->rt.timeout > next)
2253                         p->cputime_expires.sched_exp = p->se.sum_exec_runtime;
2254         }
2255 }
2256
2257 static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued)
2258 {
2259         struct sched_rt_entity *rt_se = &p->rt;
2260
2261         update_curr_rt(rq);
2262
2263         if (rq->rt.rt_nr_running)
2264                 sched_rt_update_capacity_req(rq);
2265
2266         watchdog(rq, p);
2267
2268         /*
2269          * RR tasks need a special form of timeslice management.
2270          * FIFO tasks have no timeslices.
2271          */
2272         if (p->policy != SCHED_RR)
2273                 return;
2274
2275         if (--p->rt.time_slice)
2276                 return;
2277
2278         p->rt.time_slice = sched_rr_timeslice;
2279
2280         /*
2281          * Requeue to the end of queue if we (and all of our ancestors) are not
2282          * the only element on the queue
2283          */
2284         for_each_sched_rt_entity(rt_se) {
2285                 if (rt_se->run_list.prev != rt_se->run_list.next) {
2286                         requeue_task_rt(rq, p, 0);
2287                         resched_curr(rq);
2288                         return;
2289                 }
2290         }
2291 }
2292
2293 static void set_curr_task_rt(struct rq *rq)
2294 {
2295         struct task_struct *p = rq->curr;
2296
2297         p->se.exec_start = rq_clock_task(rq);
2298
2299         /* The running task is never eligible for pushing */
2300         dequeue_pushable_task(rq, p);
2301 }
2302
2303 static unsigned int get_rr_interval_rt(struct rq *rq, struct task_struct *task)
2304 {
2305         /*
2306          * Time slice is 0 for SCHED_FIFO tasks
2307          */
2308         if (task->policy == SCHED_RR)
2309                 return sched_rr_timeslice;
2310         else
2311                 return 0;
2312 }
2313
2314 const struct sched_class rt_sched_class = {
2315         .next                   = &fair_sched_class,
2316         .enqueue_task           = enqueue_task_rt,
2317         .dequeue_task           = dequeue_task_rt,
2318         .yield_task             = yield_task_rt,
2319
2320         .check_preempt_curr     = check_preempt_curr_rt,
2321
2322         .pick_next_task         = pick_next_task_rt,
2323         .put_prev_task          = put_prev_task_rt,
2324
2325 #ifdef CONFIG_SMP
2326         .select_task_rq         = select_task_rq_rt,
2327
2328         .set_cpus_allowed       = set_cpus_allowed_common,
2329         .rq_online              = rq_online_rt,
2330         .rq_offline             = rq_offline_rt,
2331         .task_woken             = task_woken_rt,
2332         .switched_from          = switched_from_rt,
2333 #endif
2334
2335         .set_curr_task          = set_curr_task_rt,
2336         .task_tick              = task_tick_rt,
2337
2338         .get_rr_interval        = get_rr_interval_rt,
2339
2340         .prio_changed           = prio_changed_rt,
2341         .switched_to            = switched_to_rt,
2342
2343         .update_curr            = update_curr_rt,
2344 };
2345
2346 #ifdef CONFIG_SCHED_DEBUG
2347 extern void print_rt_rq(struct seq_file *m, int cpu, struct rt_rq *rt_rq);
2348
2349 void print_rt_stats(struct seq_file *m, int cpu)
2350 {
2351         rt_rq_iter_t iter;
2352         struct rt_rq *rt_rq;
2353
2354         rcu_read_lock();
2355         for_each_rt_rq(rt_rq, iter, cpu_rq(cpu))
2356                 print_rt_rq(m, cpu, rt_rq);
2357         rcu_read_unlock();
2358 }
2359 #endif /* CONFIG_SCHED_DEBUG */