blob: 5f6edca4fafd85b59838a048e711b361861f39a6 [file] [log] [blame]
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001/*
2 * Real-Time Scheduling Class (mapped to the SCHED_FIFO and SCHED_RR
3 * policies)
4 */
5
Peter Zijlstra029632f2011-10-25 10:00:11 +02006#include "sched.h"
7
8#include <linux/slab.h>
9
Clark Williamsce0dbbb2013-02-07 09:47:04 -060010int sched_rr_timeslice = RR_TIMESLICE;
11
Peter Zijlstra029632f2011-10-25 10:00:11 +020012static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
13
14struct rt_bandwidth def_rt_bandwidth;
15
16static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
17{
18 struct rt_bandwidth *rt_b =
19 container_of(timer, struct rt_bandwidth, rt_period_timer);
20 ktime_t now;
21 int overrun;
22 int idle = 0;
23
24 for (;;) {
25 now = hrtimer_cb_get_time(timer);
26 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
27
28 if (!overrun)
29 break;
30
31 idle = do_sched_rt_period_timer(rt_b, overrun);
32 }
33
34 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
35}
36
37void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
38{
39 rt_b->rt_period = ns_to_ktime(period);
40 rt_b->rt_runtime = runtime;
41
42 raw_spin_lock_init(&rt_b->rt_runtime_lock);
43
44 hrtimer_init(&rt_b->rt_period_timer,
45 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
46 rt_b->rt_period_timer.function = sched_rt_period_timer;
47}
48
49static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
50{
51 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
52 return;
53
54 if (hrtimer_active(&rt_b->rt_period_timer))
55 return;
56
57 raw_spin_lock(&rt_b->rt_runtime_lock);
58 start_bandwidth_timer(&rt_b->rt_period_timer, rt_b->rt_period);
59 raw_spin_unlock(&rt_b->rt_runtime_lock);
60}
61
62void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
63{
64 struct rt_prio_array *array;
65 int i;
66
67 array = &rt_rq->active;
68 for (i = 0; i < MAX_RT_PRIO; i++) {
69 INIT_LIST_HEAD(array->queue + i);
70 __clear_bit(i, array->bitmap);
71 }
72 /* delimiter for bitsearch: */
73 __set_bit(MAX_RT_PRIO, array->bitmap);
74
75#if defined CONFIG_SMP
76 rt_rq->highest_prio.curr = MAX_RT_PRIO;
77 rt_rq->highest_prio.next = MAX_RT_PRIO;
78 rt_rq->rt_nr_migratory = 0;
79 rt_rq->overloaded = 0;
80 plist_head_init(&rt_rq->pushable_tasks);
81#endif
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +040082 /* We start is dequeued state, because no RT tasks are queued */
83 rt_rq->rt_queued = 0;
Peter Zijlstra029632f2011-10-25 10:00:11 +020084
85 rt_rq->rt_time = 0;
86 rt_rq->rt_throttled = 0;
87 rt_rq->rt_runtime = 0;
88 raw_spin_lock_init(&rt_rq->rt_runtime_lock);
89}
90
Gregory Haskins398a1532009-01-14 09:10:04 -050091#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra029632f2011-10-25 10:00:11 +020092static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
93{
94 hrtimer_cancel(&rt_b->rt_period_timer);
95}
Gregory Haskins398a1532009-01-14 09:10:04 -050096
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +020097#define rt_entity_is_task(rt_se) (!(rt_se)->my_q)
98
Peter Zijlstra8f488942009-07-24 12:25:30 +020099static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
100{
101#ifdef CONFIG_SCHED_DEBUG
102 WARN_ON_ONCE(!rt_entity_is_task(rt_se));
103#endif
104 return container_of(rt_se, struct task_struct, rt);
105}
106
Gregory Haskins398a1532009-01-14 09:10:04 -0500107static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
108{
109 return rt_rq->rq;
110}
111
112static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
113{
114 return rt_se->rt_rq;
115}
116
Kirill Tkhai653d07a2014-03-15 02:14:55 +0400117static inline struct rq *rq_of_rt_se(struct sched_rt_entity *rt_se)
118{
119 struct rt_rq *rt_rq = rt_se->rt_rq;
120
121 return rt_rq->rq;
122}
123
Peter Zijlstra029632f2011-10-25 10:00:11 +0200124void free_rt_sched_group(struct task_group *tg)
125{
126 int i;
127
128 if (tg->rt_se)
129 destroy_rt_bandwidth(&tg->rt_bandwidth);
130
131 for_each_possible_cpu(i) {
132 if (tg->rt_rq)
133 kfree(tg->rt_rq[i]);
134 if (tg->rt_se)
135 kfree(tg->rt_se[i]);
136 }
137
138 kfree(tg->rt_rq);
139 kfree(tg->rt_se);
140}
141
142void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
143 struct sched_rt_entity *rt_se, int cpu,
144 struct sched_rt_entity *parent)
145{
146 struct rq *rq = cpu_rq(cpu);
147
148 rt_rq->highest_prio.curr = MAX_RT_PRIO;
149 rt_rq->rt_nr_boosted = 0;
150 rt_rq->rq = rq;
151 rt_rq->tg = tg;
152
153 tg->rt_rq[cpu] = rt_rq;
154 tg->rt_se[cpu] = rt_se;
155
156 if (!rt_se)
157 return;
158
159 if (!parent)
160 rt_se->rt_rq = &rq->rt;
161 else
162 rt_se->rt_rq = parent->my_q;
163
164 rt_se->my_q = rt_rq;
165 rt_se->parent = parent;
166 INIT_LIST_HEAD(&rt_se->run_list);
167}
168
169int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
170{
171 struct rt_rq *rt_rq;
172 struct sched_rt_entity *rt_se;
173 int i;
174
175 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
176 if (!tg->rt_rq)
177 goto err;
178 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
179 if (!tg->rt_se)
180 goto err;
181
182 init_rt_bandwidth(&tg->rt_bandwidth,
183 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
184
185 for_each_possible_cpu(i) {
186 rt_rq = kzalloc_node(sizeof(struct rt_rq),
187 GFP_KERNEL, cpu_to_node(i));
188 if (!rt_rq)
189 goto err;
190
191 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
192 GFP_KERNEL, cpu_to_node(i));
193 if (!rt_se)
194 goto err_free_rq;
195
196 init_rt_rq(rt_rq, cpu_rq(i));
197 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
198 init_tg_rt_entry(tg, rt_rq, rt_se, i, parent->rt_se[i]);
199 }
200
201 return 1;
202
203err_free_rq:
204 kfree(rt_rq);
205err:
206 return 0;
207}
208
Gregory Haskins398a1532009-01-14 09:10:04 -0500209#else /* CONFIG_RT_GROUP_SCHED */
210
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200211#define rt_entity_is_task(rt_se) (1)
212
Peter Zijlstra8f488942009-07-24 12:25:30 +0200213static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
214{
215 return container_of(rt_se, struct task_struct, rt);
216}
217
Gregory Haskins398a1532009-01-14 09:10:04 -0500218static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
219{
220 return container_of(rt_rq, struct rq, rt);
221}
222
Kirill Tkhai653d07a2014-03-15 02:14:55 +0400223static inline struct rq *rq_of_rt_se(struct sched_rt_entity *rt_se)
Gregory Haskins398a1532009-01-14 09:10:04 -0500224{
225 struct task_struct *p = rt_task_of(rt_se);
Kirill Tkhai653d07a2014-03-15 02:14:55 +0400226
227 return task_rq(p);
228}
229
230static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
231{
232 struct rq *rq = rq_of_rt_se(rt_se);
Gregory Haskins398a1532009-01-14 09:10:04 -0500233
234 return &rq->rt;
235}
236
Peter Zijlstra029632f2011-10-25 10:00:11 +0200237void free_rt_sched_group(struct task_group *tg) { }
238
239int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
240{
241 return 1;
242}
Gregory Haskins398a1532009-01-14 09:10:04 -0500243#endif /* CONFIG_RT_GROUP_SCHED */
244
Steven Rostedt4fd29172008-01-25 21:08:06 +0100245#ifdef CONFIG_SMP
Ingo Molnar84de4272008-01-25 21:08:15 +0100246
Peter Zijlstra38033c32014-01-23 20:32:21 +0100247static int pull_rt_task(struct rq *this_rq);
248
Peter Zijlstradc877342014-02-12 15:47:29 +0100249static inline bool need_pull_rt_task(struct rq *rq, struct task_struct *prev)
250{
251 /* Try to pull RT tasks here if we lower this rq's prio */
252 return rq->rt.highest_prio.curr > prev->prio;
253}
254
Gregory Haskins637f5082008-01-25 21:08:18 +0100255static inline int rt_overloaded(struct rq *rq)
Steven Rostedt4fd29172008-01-25 21:08:06 +0100256{
Gregory Haskins637f5082008-01-25 21:08:18 +0100257 return atomic_read(&rq->rd->rto_count);
Steven Rostedt4fd29172008-01-25 21:08:06 +0100258}
Ingo Molnar84de4272008-01-25 21:08:15 +0100259
Steven Rostedt4fd29172008-01-25 21:08:06 +0100260static inline void rt_set_overload(struct rq *rq)
261{
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -0400262 if (!rq->online)
263 return;
264
Rusty Russellc6c49272008-11-25 02:35:05 +1030265 cpumask_set_cpu(rq->cpu, rq->rd->rto_mask);
Steven Rostedt4fd29172008-01-25 21:08:06 +0100266 /*
267 * Make sure the mask is visible before we set
268 * the overload count. That is checked to determine
269 * if we should look at the mask. It would be a shame
270 * if we looked at the mask, but the mask was not
271 * updated yet.
Peter Zijlstra7c3f2ab2013-10-15 12:35:07 +0200272 *
273 * Matched by the barrier in pull_rt_task().
Steven Rostedt4fd29172008-01-25 21:08:06 +0100274 */
Peter Zijlstra7c3f2ab2013-10-15 12:35:07 +0200275 smp_wmb();
Gregory Haskins637f5082008-01-25 21:08:18 +0100276 atomic_inc(&rq->rd->rto_count);
Steven Rostedt4fd29172008-01-25 21:08:06 +0100277}
Ingo Molnar84de4272008-01-25 21:08:15 +0100278
Steven Rostedt4fd29172008-01-25 21:08:06 +0100279static inline void rt_clear_overload(struct rq *rq)
280{
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -0400281 if (!rq->online)
282 return;
283
Steven Rostedt4fd29172008-01-25 21:08:06 +0100284 /* the order here really doesn't matter */
Gregory Haskins637f5082008-01-25 21:08:18 +0100285 atomic_dec(&rq->rd->rto_count);
Rusty Russellc6c49272008-11-25 02:35:05 +1030286 cpumask_clear_cpu(rq->cpu, rq->rd->rto_mask);
Steven Rostedt4fd29172008-01-25 21:08:06 +0100287}
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100288
Gregory Haskins398a1532009-01-14 09:10:04 -0500289static void update_rt_migration(struct rt_rq *rt_rq)
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100290{
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200291 if (rt_rq->rt_nr_migratory && rt_rq->rt_nr_total > 1) {
Gregory Haskins398a1532009-01-14 09:10:04 -0500292 if (!rt_rq->overloaded) {
293 rt_set_overload(rq_of_rt_rq(rt_rq));
294 rt_rq->overloaded = 1;
Gregory Haskinscdc8eb92008-01-25 21:08:23 +0100295 }
Gregory Haskins398a1532009-01-14 09:10:04 -0500296 } else if (rt_rq->overloaded) {
297 rt_clear_overload(rq_of_rt_rq(rt_rq));
298 rt_rq->overloaded = 0;
Gregory Haskins637f5082008-01-25 21:08:18 +0100299 }
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100300}
Steven Rostedt4fd29172008-01-25 21:08:06 +0100301
Gregory Haskins398a1532009-01-14 09:10:04 -0500302static void inc_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100303{
Peter Zijlstra29baa742012-04-23 12:11:21 +0200304 struct task_struct *p;
305
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200306 if (!rt_entity_is_task(rt_se))
307 return;
308
Peter Zijlstra29baa742012-04-23 12:11:21 +0200309 p = rt_task_of(rt_se);
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200310 rt_rq = &rq_of_rt_rq(rt_rq)->rt;
311
312 rt_rq->rt_nr_total++;
Peter Zijlstra29baa742012-04-23 12:11:21 +0200313 if (p->nr_cpus_allowed > 1)
Gregory Haskins398a1532009-01-14 09:10:04 -0500314 rt_rq->rt_nr_migratory++;
315
316 update_rt_migration(rt_rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100317}
318
Gregory Haskins398a1532009-01-14 09:10:04 -0500319static void dec_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
320{
Peter Zijlstra29baa742012-04-23 12:11:21 +0200321 struct task_struct *p;
322
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200323 if (!rt_entity_is_task(rt_se))
324 return;
325
Peter Zijlstra29baa742012-04-23 12:11:21 +0200326 p = rt_task_of(rt_se);
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200327 rt_rq = &rq_of_rt_rq(rt_rq)->rt;
328
329 rt_rq->rt_nr_total--;
Peter Zijlstra29baa742012-04-23 12:11:21 +0200330 if (p->nr_cpus_allowed > 1)
Gregory Haskins398a1532009-01-14 09:10:04 -0500331 rt_rq->rt_nr_migratory--;
332
333 update_rt_migration(rt_rq);
334}
335
Steven Rostedt5181f4a42011-06-16 21:55:23 -0400336static inline int has_pushable_tasks(struct rq *rq)
337{
338 return !plist_head_empty(&rq->rt.pushable_tasks);
339}
340
Peter Zijlstradc877342014-02-12 15:47:29 +0100341static inline void set_post_schedule(struct rq *rq)
342{
343 /*
344 * We detect this state here so that we can avoid taking the RQ
345 * lock again later if there is no need to push
346 */
347 rq->post_schedule = has_pushable_tasks(rq);
348}
349
Gregory Haskins917b6272008-12-29 09:39:53 -0500350static void enqueue_pushable_task(struct rq *rq, struct task_struct *p)
351{
352 plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks);
353 plist_node_init(&p->pushable_tasks, p->prio);
354 plist_add(&p->pushable_tasks, &rq->rt.pushable_tasks);
Steven Rostedt5181f4a42011-06-16 21:55:23 -0400355
356 /* Update the highest prio pushable task */
357 if (p->prio < rq->rt.highest_prio.next)
358 rq->rt.highest_prio.next = p->prio;
Gregory Haskins917b6272008-12-29 09:39:53 -0500359}
360
361static void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
362{
363 plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks);
Gregory Haskins917b6272008-12-29 09:39:53 -0500364
Steven Rostedt5181f4a42011-06-16 21:55:23 -0400365 /* Update the new highest prio pushable task */
366 if (has_pushable_tasks(rq)) {
367 p = plist_first_entry(&rq->rt.pushable_tasks,
368 struct task_struct, pushable_tasks);
369 rq->rt.highest_prio.next = p->prio;
370 } else
371 rq->rt.highest_prio.next = MAX_RT_PRIO;
Ingo Molnarbcf08df2008-04-19 12:11:10 +0200372}
373
Gregory Haskins917b6272008-12-29 09:39:53 -0500374#else
375
Peter Zijlstraceacc2c2009-01-16 14:46:40 +0100376static inline void enqueue_pushable_task(struct rq *rq, struct task_struct *p)
377{
378}
379
380static inline void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
381{
382}
383
Gregory Haskinsb07430a2009-01-14 08:55:39 -0500384static inline
Peter Zijlstraceacc2c2009-01-16 14:46:40 +0100385void inc_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
386{
387}
388
Gregory Haskinsb07430a2009-01-14 08:55:39 -0500389static inline
Peter Zijlstraceacc2c2009-01-16 14:46:40 +0100390void dec_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
391{
392}
Gregory Haskins917b6272008-12-29 09:39:53 -0500393
Peter Zijlstradc877342014-02-12 15:47:29 +0100394static inline bool need_pull_rt_task(struct rq *rq, struct task_struct *prev)
395{
396 return false;
397}
398
399static inline int pull_rt_task(struct rq *this_rq)
400{
401 return 0;
402}
403
404static inline void set_post_schedule(struct rq *rq)
405{
406}
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200407#endif /* CONFIG_SMP */
408
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400409static void enqueue_top_rt_rq(struct rt_rq *rt_rq);
410static void dequeue_top_rt_rq(struct rt_rq *rt_rq);
411
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100412static inline int on_rt_rq(struct sched_rt_entity *rt_se)
413{
414 return !list_empty(&rt_se->run_list);
415}
416
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100417#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100418
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100419static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100420{
421 if (!rt_rq->tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100422 return RUNTIME_INF;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100423
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200424 return rt_rq->rt_runtime;
425}
426
427static inline u64 sched_rt_period(struct rt_rq *rt_rq)
428{
429 return ktime_to_ns(rt_rq->tg->rt_bandwidth.rt_period);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100430}
431
Cheng Xuec514c42011-05-14 14:20:02 +0800432typedef struct task_group *rt_rq_iter_t;
433
Yong Zhang1c09ab02011-06-28 10:51:31 +0800434static inline struct task_group *next_task_group(struct task_group *tg)
435{
436 do {
437 tg = list_entry_rcu(tg->list.next,
438 typeof(struct task_group), list);
439 } while (&tg->list != &task_groups && task_group_is_autogroup(tg));
440
441 if (&tg->list == &task_groups)
442 tg = NULL;
443
444 return tg;
445}
446
447#define for_each_rt_rq(rt_rq, iter, rq) \
448 for (iter = container_of(&task_groups, typeof(*iter), list); \
449 (iter = next_task_group(iter)) && \
450 (rt_rq = iter->rt_rq[cpu_of(rq)]);)
Cheng Xuec514c42011-05-14 14:20:02 +0800451
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100452#define for_each_sched_rt_entity(rt_se) \
453 for (; rt_se; rt_se = rt_se->parent)
454
455static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
456{
457 return rt_se->my_q;
458}
459
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000460static void enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100461static void dequeue_rt_entity(struct sched_rt_entity *rt_se);
462
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100463static void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100464{
Dario Faggiolif6121f42008-10-03 17:40:46 +0200465 struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr;
Kirill Tkhai88751252014-06-29 00:03:57 +0400466 struct rq *rq = rq_of_rt_rq(rt_rq);
Yong Zhang74b7eb52010-01-29 14:57:52 +0800467 struct sched_rt_entity *rt_se;
468
Kirill Tkhai88751252014-06-29 00:03:57 +0400469 int cpu = cpu_of(rq);
Balbir Singh0c3b9162011-03-03 17:04:35 +0530470
471 rt_se = rt_rq->tg->rt_se[cpu];
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100472
Dario Faggiolif6121f42008-10-03 17:40:46 +0200473 if (rt_rq->rt_nr_running) {
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400474 if (!rt_se)
475 enqueue_top_rt_rq(rt_rq);
476 else if (!on_rt_rq(rt_se))
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000477 enqueue_rt_entity(rt_se, false);
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400478
Gregory Haskinse864c492008-12-29 09:39:49 -0500479 if (rt_rq->highest_prio.curr < curr->prio)
Kirill Tkhai88751252014-06-29 00:03:57 +0400480 resched_curr(rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100481 }
482}
483
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100484static void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100485{
Yong Zhang74b7eb52010-01-29 14:57:52 +0800486 struct sched_rt_entity *rt_se;
Balbir Singh0c3b9162011-03-03 17:04:35 +0530487 int cpu = cpu_of(rq_of_rt_rq(rt_rq));
Yong Zhang74b7eb52010-01-29 14:57:52 +0800488
Balbir Singh0c3b9162011-03-03 17:04:35 +0530489 rt_se = rt_rq->tg->rt_se[cpu];
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100490
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400491 if (!rt_se)
492 dequeue_top_rt_rq(rt_rq);
493 else if (on_rt_rq(rt_se))
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100494 dequeue_rt_entity(rt_se);
495}
496
Kirill Tkhai46383642014-03-15 02:15:07 +0400497static inline int rt_rq_throttled(struct rt_rq *rt_rq)
498{
499 return rt_rq->rt_throttled && !rt_rq->rt_nr_boosted;
500}
501
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100502static int rt_se_boosted(struct sched_rt_entity *rt_se)
503{
504 struct rt_rq *rt_rq = group_rt_rq(rt_se);
505 struct task_struct *p;
506
507 if (rt_rq)
508 return !!rt_rq->rt_nr_boosted;
509
510 p = rt_task_of(rt_se);
511 return p->prio != p->normal_prio;
512}
513
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200514#ifdef CONFIG_SMP
Rusty Russellc6c49272008-11-25 02:35:05 +1030515static inline const struct cpumask *sched_rt_period_mask(void)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200516{
Nathan Zimmer424c93f2013-05-09 11:24:03 -0500517 return this_rq()->rd->span;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200518}
519#else
Rusty Russellc6c49272008-11-25 02:35:05 +1030520static inline const struct cpumask *sched_rt_period_mask(void)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200521{
Rusty Russellc6c49272008-11-25 02:35:05 +1030522 return cpu_online_mask;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200523}
524#endif
525
526static inline
527struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
528{
529 return container_of(rt_b, struct task_group, rt_bandwidth)->rt_rq[cpu];
530}
531
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200532static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
533{
534 return &rt_rq->tg->rt_bandwidth;
535}
536
Dhaval Giani55e12e52008-06-24 23:39:43 +0530537#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100538
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100539static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100540{
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200541 return rt_rq->rt_runtime;
542}
543
544static inline u64 sched_rt_period(struct rt_rq *rt_rq)
545{
546 return ktime_to_ns(def_rt_bandwidth.rt_period);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100547}
548
Cheng Xuec514c42011-05-14 14:20:02 +0800549typedef struct rt_rq *rt_rq_iter_t;
550
551#define for_each_rt_rq(rt_rq, iter, rq) \
552 for ((void) iter, rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
553
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100554#define for_each_sched_rt_entity(rt_se) \
555 for (; rt_se; rt_se = NULL)
556
557static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
558{
559 return NULL;
560}
561
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100562static inline void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100563{
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400564 struct rq *rq = rq_of_rt_rq(rt_rq);
565
566 if (!rt_rq->rt_nr_running)
567 return;
568
569 enqueue_top_rt_rq(rt_rq);
Kirill Tkhai88751252014-06-29 00:03:57 +0400570 resched_curr(rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100571}
572
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100573static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100574{
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400575 dequeue_top_rt_rq(rt_rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100576}
577
Kirill Tkhai46383642014-03-15 02:15:07 +0400578static inline int rt_rq_throttled(struct rt_rq *rt_rq)
579{
580 return rt_rq->rt_throttled;
581}
582
Rusty Russellc6c49272008-11-25 02:35:05 +1030583static inline const struct cpumask *sched_rt_period_mask(void)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200584{
Rusty Russellc6c49272008-11-25 02:35:05 +1030585 return cpu_online_mask;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200586}
587
588static inline
589struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
590{
591 return &cpu_rq(cpu)->rt;
592}
593
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200594static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
595{
596 return &def_rt_bandwidth;
597}
598
Dhaval Giani55e12e52008-06-24 23:39:43 +0530599#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100600
Juri Lellifaa59932014-02-21 11:37:15 +0100601bool sched_rt_bandwidth_account(struct rt_rq *rt_rq)
602{
603 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
604
605 return (hrtimer_active(&rt_b->rt_period_timer) ||
606 rt_rq->rt_time < rt_b->rt_runtime);
607}
608
Peter Zijlstrab79f3832008-06-19 14:22:25 +0200609#ifdef CONFIG_SMP
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200610/*
611 * We ran out of runtime, see if we can borrow some from our neighbours.
612 */
Peter Zijlstrab79f3832008-06-19 14:22:25 +0200613static int do_balance_runtime(struct rt_rq *rt_rq)
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200614{
615 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
Shawn Bohreraa7f6732013-01-14 11:55:31 -0600616 struct root_domain *rd = rq_of_rt_rq(rt_rq)->rd;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200617 int i, weight, more = 0;
618 u64 rt_period;
619
Rusty Russellc6c49272008-11-25 02:35:05 +1030620 weight = cpumask_weight(rd->span);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200621
Thomas Gleixner0986b112009-11-17 15:32:06 +0100622 raw_spin_lock(&rt_b->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200623 rt_period = ktime_to_ns(rt_b->rt_period);
Rusty Russellc6c49272008-11-25 02:35:05 +1030624 for_each_cpu(i, rd->span) {
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200625 struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
626 s64 diff;
627
628 if (iter == rt_rq)
629 continue;
630
Thomas Gleixner0986b112009-11-17 15:32:06 +0100631 raw_spin_lock(&iter->rt_runtime_lock);
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200632 /*
633 * Either all rqs have inf runtime and there's nothing to steal
634 * or __disable_runtime() below sets a specific rq to inf to
635 * indicate its been disabled and disalow stealing.
636 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200637 if (iter->rt_runtime == RUNTIME_INF)
638 goto next;
639
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200640 /*
641 * From runqueues with spare time, take 1/n part of their
642 * spare time, but no more than our period.
643 */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200644 diff = iter->rt_runtime - iter->rt_time;
645 if (diff > 0) {
Peter Zijlstra58838cf2008-07-24 12:43:13 +0200646 diff = div_u64((u64)diff, weight);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200647 if (rt_rq->rt_runtime + diff > rt_period)
648 diff = rt_period - rt_rq->rt_runtime;
649 iter->rt_runtime -= diff;
650 rt_rq->rt_runtime += diff;
651 more = 1;
652 if (rt_rq->rt_runtime == rt_period) {
Thomas Gleixner0986b112009-11-17 15:32:06 +0100653 raw_spin_unlock(&iter->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200654 break;
655 }
656 }
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200657next:
Thomas Gleixner0986b112009-11-17 15:32:06 +0100658 raw_spin_unlock(&iter->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200659 }
Thomas Gleixner0986b112009-11-17 15:32:06 +0100660 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200661
662 return more;
663}
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200664
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200665/*
666 * Ensure this RQ takes back all the runtime it lend to its neighbours.
667 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200668static void __disable_runtime(struct rq *rq)
669{
670 struct root_domain *rd = rq->rd;
Cheng Xuec514c42011-05-14 14:20:02 +0800671 rt_rq_iter_t iter;
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200672 struct rt_rq *rt_rq;
673
674 if (unlikely(!scheduler_running))
675 return;
676
Cheng Xuec514c42011-05-14 14:20:02 +0800677 for_each_rt_rq(rt_rq, iter, rq) {
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200678 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
679 s64 want;
680 int i;
681
Thomas Gleixner0986b112009-11-17 15:32:06 +0100682 raw_spin_lock(&rt_b->rt_runtime_lock);
683 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200684 /*
685 * Either we're all inf and nobody needs to borrow, or we're
686 * already disabled and thus have nothing to do, or we have
687 * exactly the right amount of runtime to take out.
688 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200689 if (rt_rq->rt_runtime == RUNTIME_INF ||
690 rt_rq->rt_runtime == rt_b->rt_runtime)
691 goto balanced;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100692 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200693
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200694 /*
695 * Calculate the difference between what we started out with
696 * and what we current have, that's the amount of runtime
697 * we lend and now have to reclaim.
698 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200699 want = rt_b->rt_runtime - rt_rq->rt_runtime;
700
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200701 /*
702 * Greedy reclaim, take back as much as we can.
703 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030704 for_each_cpu(i, rd->span) {
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200705 struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
706 s64 diff;
707
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200708 /*
709 * Can't reclaim from ourselves or disabled runqueues.
710 */
Peter Zijlstraf1679d02008-08-14 15:49:00 +0200711 if (iter == rt_rq || iter->rt_runtime == RUNTIME_INF)
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200712 continue;
713
Thomas Gleixner0986b112009-11-17 15:32:06 +0100714 raw_spin_lock(&iter->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200715 if (want > 0) {
716 diff = min_t(s64, iter->rt_runtime, want);
717 iter->rt_runtime -= diff;
718 want -= diff;
719 } else {
720 iter->rt_runtime -= want;
721 want -= want;
722 }
Thomas Gleixner0986b112009-11-17 15:32:06 +0100723 raw_spin_unlock(&iter->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200724
725 if (!want)
726 break;
727 }
728
Thomas Gleixner0986b112009-11-17 15:32:06 +0100729 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200730 /*
731 * We cannot be left wanting - that would mean some runtime
732 * leaked out of the system.
733 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200734 BUG_ON(want);
735balanced:
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200736 /*
737 * Disable all the borrow logic by pretending we have inf
738 * runtime - in which case borrowing doesn't make sense.
739 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200740 rt_rq->rt_runtime = RUNTIME_INF;
Peter Boonstoppela4c96ae2012-08-09 15:34:47 -0700741 rt_rq->rt_throttled = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100742 raw_spin_unlock(&rt_rq->rt_runtime_lock);
743 raw_spin_unlock(&rt_b->rt_runtime_lock);
Kirill Tkhai99b62562014-06-25 12:19:48 +0400744
745 /* Make rt_rq available for pick_next_task() */
746 sched_rt_rq_enqueue(rt_rq);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200747 }
748}
749
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200750static void __enable_runtime(struct rq *rq)
751{
Cheng Xuec514c42011-05-14 14:20:02 +0800752 rt_rq_iter_t iter;
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200753 struct rt_rq *rt_rq;
754
755 if (unlikely(!scheduler_running))
756 return;
757
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200758 /*
759 * Reset each runqueue's bandwidth settings
760 */
Cheng Xuec514c42011-05-14 14:20:02 +0800761 for_each_rt_rq(rt_rq, iter, rq) {
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200762 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
763
Thomas Gleixner0986b112009-11-17 15:32:06 +0100764 raw_spin_lock(&rt_b->rt_runtime_lock);
765 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200766 rt_rq->rt_runtime = rt_b->rt_runtime;
767 rt_rq->rt_time = 0;
Zhang, Yanminbaf25732008-09-09 11:26:33 +0800768 rt_rq->rt_throttled = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100769 raw_spin_unlock(&rt_rq->rt_runtime_lock);
770 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200771 }
772}
773
Peter Zijlstraeff65492008-06-19 14:22:26 +0200774static int balance_runtime(struct rt_rq *rt_rq)
775{
776 int more = 0;
777
Peter Zijlstra4a6184c2011-10-06 22:39:14 +0200778 if (!sched_feat(RT_RUNTIME_SHARE))
779 return more;
780
Peter Zijlstraeff65492008-06-19 14:22:26 +0200781 if (rt_rq->rt_time > rt_rq->rt_runtime) {
Thomas Gleixner0986b112009-11-17 15:32:06 +0100782 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraeff65492008-06-19 14:22:26 +0200783 more = do_balance_runtime(rt_rq);
Thomas Gleixner0986b112009-11-17 15:32:06 +0100784 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraeff65492008-06-19 14:22:26 +0200785 }
786
787 return more;
788}
Dhaval Giani55e12e52008-06-24 23:39:43 +0530789#else /* !CONFIG_SMP */
Peter Zijlstraeff65492008-06-19 14:22:26 +0200790static inline int balance_runtime(struct rt_rq *rt_rq)
791{
792 return 0;
793}
Dhaval Giani55e12e52008-06-24 23:39:43 +0530794#endif /* CONFIG_SMP */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100795
796static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun)
797{
Peter Zijlstra42c62a52011-10-18 22:03:48 +0200798 int i, idle = 1, throttled = 0;
Rusty Russellc6c49272008-11-25 02:35:05 +1030799 const struct cpumask *span;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200800
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200801 span = sched_rt_period_mask();
Mike Galbraithe221d022012-08-07 10:02:38 +0200802#ifdef CONFIG_RT_GROUP_SCHED
803 /*
804 * FIXME: isolated CPUs should really leave the root task group,
805 * whether they are isolcpus or were isolated via cpusets, lest
806 * the timer run on a CPU which does not service all runqueues,
807 * potentially leaving other CPUs indefinitely throttled. If
808 * isolation is really required, the user will turn the throttle
809 * off to kill the perturbations it causes anyway. Meanwhile,
810 * this maintains functionality for boot and/or troubleshooting.
811 */
812 if (rt_b == &root_task_group.rt_bandwidth)
813 span = cpu_online_mask;
814#endif
Rusty Russellc6c49272008-11-25 02:35:05 +1030815 for_each_cpu(i, span) {
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200816 int enqueue = 0;
817 struct rt_rq *rt_rq = sched_rt_period_rt_rq(rt_b, i);
818 struct rq *rq = rq_of_rt_rq(rt_rq);
819
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100820 raw_spin_lock(&rq->lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200821 if (rt_rq->rt_time) {
822 u64 runtime;
823
Thomas Gleixner0986b112009-11-17 15:32:06 +0100824 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraeff65492008-06-19 14:22:26 +0200825 if (rt_rq->rt_throttled)
826 balance_runtime(rt_rq);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200827 runtime = rt_rq->rt_runtime;
828 rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime);
829 if (rt_rq->rt_throttled && rt_rq->rt_time < runtime) {
830 rt_rq->rt_throttled = 0;
831 enqueue = 1;
Mike Galbraith61eadef2011-04-29 08:36:50 +0200832
833 /*
834 * Force a clock update if the CPU was idle,
835 * lest wakeup -> unthrottle time accumulate.
836 */
837 if (rt_rq->rt_nr_running && rq->curr == rq->idle)
838 rq->skip_clock_update = -1;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200839 }
840 if (rt_rq->rt_time || rt_rq->rt_nr_running)
841 idle = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100842 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Balbir Singh0c3b9162011-03-03 17:04:35 +0530843 } else if (rt_rq->rt_nr_running) {
Peter Zijlstra8a8cde12008-06-19 14:22:28 +0200844 idle = 0;
Balbir Singh0c3b9162011-03-03 17:04:35 +0530845 if (!rt_rq_throttled(rt_rq))
846 enqueue = 1;
847 }
Peter Zijlstra42c62a52011-10-18 22:03:48 +0200848 if (rt_rq->rt_throttled)
849 throttled = 1;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200850
851 if (enqueue)
852 sched_rt_rq_enqueue(rt_rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100853 raw_spin_unlock(&rq->lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200854 }
855
Peter Zijlstra42c62a52011-10-18 22:03:48 +0200856 if (!throttled && (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF))
857 return 1;
858
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200859 return idle;
860}
861
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100862static inline int rt_se_prio(struct sched_rt_entity *rt_se)
863{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100864#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100865 struct rt_rq *rt_rq = group_rt_rq(rt_se);
866
867 if (rt_rq)
Gregory Haskinse864c492008-12-29 09:39:49 -0500868 return rt_rq->highest_prio.curr;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100869#endif
870
871 return rt_task_of(rt_se)->prio;
872}
873
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100874static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100875{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100876 u64 runtime = sched_rt_runtime(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100877
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100878 if (rt_rq->rt_throttled)
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100879 return rt_rq_throttled(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100880
Shan Hai5b680fd2011-11-29 11:03:56 +0800881 if (runtime >= sched_rt_period(rt_rq))
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200882 return 0;
883
Peter Zijlstrab79f3832008-06-19 14:22:25 +0200884 balance_runtime(rt_rq);
885 runtime = sched_rt_runtime(rt_rq);
886 if (runtime == RUNTIME_INF)
887 return 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200888
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100889 if (rt_rq->rt_time > runtime) {
Peter Zijlstra7abc63b2011-10-18 22:03:48 +0200890 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
891
892 /*
893 * Don't actually throttle groups that have no runtime assigned
894 * but accrue some time due to boosting.
895 */
896 if (likely(rt_b->rt_runtime)) {
897 rt_rq->rt_throttled = 1;
John Stultzc2248152014-06-04 16:11:41 -0700898 printk_deferred_once("sched: RT throttling activated\n");
Peter Zijlstra7abc63b2011-10-18 22:03:48 +0200899 } else {
900 /*
901 * In case we did anyway, make it go away,
902 * replenishment is a joke, since it will replenish us
903 * with exactly 0 ns.
904 */
905 rt_rq->rt_time = 0;
906 }
907
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100908 if (rt_rq_throttled(rt_rq)) {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100909 sched_rt_rq_dequeue(rt_rq);
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100910 return 1;
911 }
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100912 }
913
914 return 0;
915}
916
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200917/*
918 * Update the current task's runtime statistics. Skip current tasks that
919 * are not in our scheduling class.
920 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200921static void update_curr_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200922{
923 struct task_struct *curr = rq->curr;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100924 struct sched_rt_entity *rt_se = &curr->rt;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200925 u64 delta_exec;
926
Peter Zijlstra06c3bc62011-02-02 13:19:48 +0100927 if (curr->sched_class != &rt_sched_class)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200928 return;
929
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200930 delta_exec = rq_clock_task(rq) - curr->se.exec_start;
Kirill Tkhaifc79e242013-01-30 16:50:36 +0400931 if (unlikely((s64)delta_exec <= 0))
932 return;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200933
Peter Zijlstra42c62a52011-10-18 22:03:48 +0200934 schedstat_set(curr->se.statistics.exec_max,
935 max(curr->se.statistics.exec_max, delta_exec));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200936
937 curr->se.sum_exec_runtime += delta_exec;
Frank Mayharf06febc2008-09-12 09:54:39 -0700938 account_group_exec_runtime(curr, delta_exec);
939
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200940 curr->se.exec_start = rq_clock_task(rq);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100941 cpuacct_charge(curr, delta_exec);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100942
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200943 sched_rt_avg_update(rq, delta_exec);
944
Peter Zijlstra0b148fa2008-08-19 12:33:04 +0200945 if (!rt_bandwidth_enabled())
946 return;
947
Dhaval Giani354d60c2008-04-19 19:44:59 +0200948 for_each_sched_rt_entity(rt_se) {
Giedrius Rekasius0b079392014-05-25 15:23:31 +0100949 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
Dhaval Giani354d60c2008-04-19 19:44:59 +0200950
Peter Zijlstracc2991c2008-08-19 12:33:03 +0200951 if (sched_rt_runtime(rt_rq) != RUNTIME_INF) {
Thomas Gleixner0986b112009-11-17 15:32:06 +0100952 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstracc2991c2008-08-19 12:33:03 +0200953 rt_rq->rt_time += delta_exec;
954 if (sched_rt_runtime_exceeded(rt_rq))
Kirill Tkhai88751252014-06-29 00:03:57 +0400955 resched_curr(rq);
Thomas Gleixner0986b112009-11-17 15:32:06 +0100956 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstracc2991c2008-08-19 12:33:03 +0200957 }
Dhaval Giani354d60c2008-04-19 19:44:59 +0200958 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200959}
960
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400961static void
962dequeue_top_rt_rq(struct rt_rq *rt_rq)
963{
964 struct rq *rq = rq_of_rt_rq(rt_rq);
965
966 BUG_ON(&rq->rt != rt_rq);
967
968 if (!rt_rq->rt_queued)
969 return;
970
971 BUG_ON(!rq->nr_running);
972
Kirill Tkhai72465442014-05-09 03:00:14 +0400973 sub_nr_running(rq, rt_rq->rt_nr_running);
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400974 rt_rq->rt_queued = 0;
975}
976
977static void
978enqueue_top_rt_rq(struct rt_rq *rt_rq)
979{
980 struct rq *rq = rq_of_rt_rq(rt_rq);
981
982 BUG_ON(&rq->rt != rt_rq);
983
984 if (rt_rq->rt_queued)
985 return;
986 if (rt_rq_throttled(rt_rq) || !rt_rq->rt_nr_running)
987 return;
988
Kirill Tkhai72465442014-05-09 03:00:14 +0400989 add_nr_running(rq, rt_rq->rt_nr_running);
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +0400990 rt_rq->rt_queued = 1;
991}
992
Gregory Haskins398a1532009-01-14 09:10:04 -0500993#if defined CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500994
Gregory Haskins398a1532009-01-14 09:10:04 -0500995static void
996inc_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio)
Steven Rostedt63489e42008-01-25 21:08:03 +0100997{
Gregory Haskins4d984272008-12-29 09:39:49 -0500998 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins4d984272008-12-29 09:39:49 -0500999
Kirill Tkhai757dfca2013-11-27 19:59:13 +04001000#ifdef CONFIG_RT_GROUP_SCHED
1001 /*
1002 * Change rq's cpupri only if rt_rq is the top queue.
1003 */
1004 if (&rq->rt != rt_rq)
1005 return;
1006#endif
Steven Rostedt5181f4a42011-06-16 21:55:23 -04001007 if (rq->online && prio < prev_prio)
1008 cpupri_set(&rq->rd->cpupri, rq->cpu, prio);
Steven Rostedt63489e42008-01-25 21:08:03 +01001009}
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001010
Gregory Haskins398a1532009-01-14 09:10:04 -05001011static void
1012dec_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio)
Steven Rostedt63489e42008-01-25 21:08:03 +01001013{
Gregory Haskins4d984272008-12-29 09:39:49 -05001014 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001015
Kirill Tkhai757dfca2013-11-27 19:59:13 +04001016#ifdef CONFIG_RT_GROUP_SCHED
1017 /*
1018 * Change rq's cpupri only if rt_rq is the top queue.
1019 */
1020 if (&rq->rt != rt_rq)
1021 return;
1022#endif
Gregory Haskins398a1532009-01-14 09:10:04 -05001023 if (rq->online && rt_rq->highest_prio.curr != prev_prio)
1024 cpupri_set(&rq->rd->cpupri, rq->cpu, rt_rq->highest_prio.curr);
1025}
1026
1027#else /* CONFIG_SMP */
1028
1029static inline
1030void inc_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio) {}
1031static inline
1032void dec_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio) {}
1033
1034#endif /* CONFIG_SMP */
1035
Steven Rostedt63489e42008-01-25 21:08:03 +01001036#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskins398a1532009-01-14 09:10:04 -05001037static void
1038inc_rt_prio(struct rt_rq *rt_rq, int prio)
1039{
1040 int prev_prio = rt_rq->highest_prio.curr;
Steven Rostedt63489e42008-01-25 21:08:03 +01001041
Gregory Haskins398a1532009-01-14 09:10:04 -05001042 if (prio < prev_prio)
1043 rt_rq->highest_prio.curr = prio;
1044
1045 inc_rt_prio_smp(rt_rq, prio, prev_prio);
1046}
1047
1048static void
1049dec_rt_prio(struct rt_rq *rt_rq, int prio)
1050{
1051 int prev_prio = rt_rq->highest_prio.curr;
1052
1053 if (rt_rq->rt_nr_running) {
1054
1055 WARN_ON(prio < prev_prio);
Gregory Haskinse864c492008-12-29 09:39:49 -05001056
1057 /*
Gregory Haskins398a1532009-01-14 09:10:04 -05001058 * This may have been our highest task, and therefore
1059 * we may have some recomputation to do
Gregory Haskinse864c492008-12-29 09:39:49 -05001060 */
Gregory Haskins398a1532009-01-14 09:10:04 -05001061 if (prio == prev_prio) {
Gregory Haskinse864c492008-12-29 09:39:49 -05001062 struct rt_prio_array *array = &rt_rq->active;
1063
1064 rt_rq->highest_prio.curr =
Steven Rostedt764a9d62008-01-25 21:08:04 +01001065 sched_find_first_bit(array->bitmap);
Gregory Haskinse864c492008-12-29 09:39:49 -05001066 }
1067
Steven Rostedt764a9d62008-01-25 21:08:04 +01001068 } else
Gregory Haskinse864c492008-12-29 09:39:49 -05001069 rt_rq->highest_prio.curr = MAX_RT_PRIO;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001070
Gregory Haskins398a1532009-01-14 09:10:04 -05001071 dec_rt_prio_smp(rt_rq, prio, prev_prio);
1072}
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001073
Gregory Haskins398a1532009-01-14 09:10:04 -05001074#else
1075
1076static inline void inc_rt_prio(struct rt_rq *rt_rq, int prio) {}
1077static inline void dec_rt_prio(struct rt_rq *rt_rq, int prio) {}
1078
1079#endif /* CONFIG_SMP || CONFIG_RT_GROUP_SCHED */
1080
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001081#ifdef CONFIG_RT_GROUP_SCHED
Gregory Haskins398a1532009-01-14 09:10:04 -05001082
1083static void
1084inc_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1085{
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001086 if (rt_se_boosted(rt_se))
Steven Rostedt764a9d62008-01-25 21:08:04 +01001087 rt_rq->rt_nr_boosted++;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01001088
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01001089 if (rt_rq->tg)
1090 start_rt_bandwidth(&rt_rq->tg->rt_bandwidth);
Gregory Haskins398a1532009-01-14 09:10:04 -05001091}
1092
1093static void
1094dec_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1095{
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01001096 if (rt_se_boosted(rt_se))
1097 rt_rq->rt_nr_boosted--;
1098
1099 WARN_ON(!rt_rq->rt_nr_running && rt_rq->rt_nr_boosted);
Gregory Haskins398a1532009-01-14 09:10:04 -05001100}
1101
1102#else /* CONFIG_RT_GROUP_SCHED */
1103
1104static void
1105inc_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1106{
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001107 start_rt_bandwidth(&def_rt_bandwidth);
Gregory Haskins398a1532009-01-14 09:10:04 -05001108}
1109
1110static inline
1111void dec_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq) {}
1112
1113#endif /* CONFIG_RT_GROUP_SCHED */
1114
1115static inline
Kirill Tkhai22abdef2014-03-15 02:14:49 +04001116unsigned int rt_se_nr_running(struct sched_rt_entity *rt_se)
1117{
1118 struct rt_rq *group_rq = group_rt_rq(rt_se);
1119
1120 if (group_rq)
1121 return group_rq->rt_nr_running;
1122 else
1123 return 1;
1124}
1125
1126static inline
Gregory Haskins398a1532009-01-14 09:10:04 -05001127void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1128{
1129 int prio = rt_se_prio(rt_se);
1130
1131 WARN_ON(!rt_prio(prio));
Kirill Tkhai22abdef2014-03-15 02:14:49 +04001132 rt_rq->rt_nr_running += rt_se_nr_running(rt_se);
Gregory Haskins398a1532009-01-14 09:10:04 -05001133
1134 inc_rt_prio(rt_rq, prio);
1135 inc_rt_migration(rt_se, rt_rq);
1136 inc_rt_group(rt_se, rt_rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001137}
1138
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01001139static inline
1140void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
1141{
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001142 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001143 WARN_ON(!rt_rq->rt_nr_running);
Kirill Tkhai22abdef2014-03-15 02:14:49 +04001144 rt_rq->rt_nr_running -= rt_se_nr_running(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001145
Gregory Haskins398a1532009-01-14 09:10:04 -05001146 dec_rt_prio(rt_rq, rt_se_prio(rt_se));
1147 dec_rt_migration(rt_se, rt_rq);
1148 dec_rt_group(rt_se, rt_rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001149}
1150
Thomas Gleixner37dad3f2010-01-20 20:59:01 +00001151static void __enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001152{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001153 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
1154 struct rt_prio_array *array = &rt_rq->active;
1155 struct rt_rq *group_rq = group_rt_rq(rt_se);
Dmitry Adamushko20b63312008-06-11 00:58:30 +02001156 struct list_head *queue = array->queue + rt_se_prio(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001157
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001158 /*
1159 * Don't enqueue the group if its throttled, or when empty.
1160 * The latter is a consequence of the former when a child group
1161 * get throttled and the current group doesn't have any other
1162 * active members.
1163 */
1164 if (group_rq && (rt_rq_throttled(group_rq) || !group_rq->rt_nr_running))
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001165 return;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001166
Thomas Gleixner37dad3f2010-01-20 20:59:01 +00001167 if (head)
1168 list_add(&rt_se->run_list, queue);
1169 else
1170 list_add_tail(&rt_se->run_list, queue);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001171 __set_bit(rt_se_prio(rt_se), array->bitmap);
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001172
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001173 inc_rt_tasks(rt_se, rt_rq);
1174}
1175
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001176static void __dequeue_rt_entity(struct sched_rt_entity *rt_se)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001177{
1178 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
1179 struct rt_prio_array *array = &rt_rq->active;
1180
1181 list_del_init(&rt_se->run_list);
1182 if (list_empty(array->queue + rt_se_prio(rt_se)))
1183 __clear_bit(rt_se_prio(rt_se), array->bitmap);
1184
1185 dec_rt_tasks(rt_se, rt_rq);
1186}
1187
1188/*
1189 * Because the prio of an upper entry depends on the lower
1190 * entries, we must remove entries top - down.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001191 */
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001192static void dequeue_rt_stack(struct sched_rt_entity *rt_se)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001193{
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001194 struct sched_rt_entity *back = NULL;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001195
Peter Zijlstra58d6c2d2008-04-19 19:45:00 +02001196 for_each_sched_rt_entity(rt_se) {
1197 rt_se->back = back;
1198 back = rt_se;
1199 }
1200
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +04001201 dequeue_top_rt_rq(rt_rq_of_se(back));
1202
Peter Zijlstra58d6c2d2008-04-19 19:45:00 +02001203 for (rt_se = back; rt_se; rt_se = rt_se->back) {
1204 if (on_rt_rq(rt_se))
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001205 __dequeue_rt_entity(rt_se);
1206 }
1207}
1208
Thomas Gleixner37dad3f2010-01-20 20:59:01 +00001209static void enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head)
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001210{
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +04001211 struct rq *rq = rq_of_rt_se(rt_se);
1212
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001213 dequeue_rt_stack(rt_se);
1214 for_each_sched_rt_entity(rt_se)
Thomas Gleixner37dad3f2010-01-20 20:59:01 +00001215 __enqueue_rt_entity(rt_se, head);
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +04001216 enqueue_top_rt_rq(&rq->rt);
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001217}
1218
1219static void dequeue_rt_entity(struct sched_rt_entity *rt_se)
1220{
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +04001221 struct rq *rq = rq_of_rt_se(rt_se);
1222
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001223 dequeue_rt_stack(rt_se);
1224
1225 for_each_sched_rt_entity(rt_se) {
1226 struct rt_rq *rt_rq = group_rt_rq(rt_se);
1227
1228 if (rt_rq && rt_rq->rt_nr_running)
Thomas Gleixner37dad3f2010-01-20 20:59:01 +00001229 __enqueue_rt_entity(rt_se, false);
Peter Zijlstra58d6c2d2008-04-19 19:45:00 +02001230 }
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +04001231 enqueue_top_rt_rq(&rq->rt);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001232}
1233
1234/*
1235 * Adding/removing a task to/from a priority array:
1236 */
Thomas Gleixnerea87bb72010-01-20 20:58:57 +00001237static void
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001238enqueue_task_rt(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001239{
1240 struct sched_rt_entity *rt_se = &p->rt;
1241
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001242 if (flags & ENQUEUE_WAKEUP)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001243 rt_se->timeout = 0;
1244
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001245 enqueue_rt_entity(rt_se, flags & ENQUEUE_HEAD);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001246
Peter Zijlstra29baa742012-04-23 12:11:21 +02001247 if (!task_current(rq, p) && p->nr_cpus_allowed > 1)
Gregory Haskins917b6272008-12-29 09:39:53 -05001248 enqueue_pushable_task(rq, p);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001249}
1250
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001251static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001252{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001253 struct sched_rt_entity *rt_se = &p->rt;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001254
1255 update_curr_rt(rq);
Peter Zijlstraad2a3f12008-06-19 09:06:57 +02001256 dequeue_rt_entity(rt_se);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001257
Gregory Haskins917b6272008-12-29 09:39:53 -05001258 dequeue_pushable_task(rq, p);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001259}
1260
1261/*
Richard Weinberger60686312011-11-12 18:07:57 +01001262 * Put task to the head or the end of the run list without the overhead of
1263 * dequeue followed by enqueue.
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001264 */
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001265static void
1266requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se, int head)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001267{
Ingo Molnar1cdad712008-06-19 09:09:15 +02001268 if (on_rt_rq(rt_se)) {
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001269 struct rt_prio_array *array = &rt_rq->active;
1270 struct list_head *queue = array->queue + rt_se_prio(rt_se);
1271
1272 if (head)
1273 list_move(&rt_se->run_list, queue);
1274 else
1275 list_move_tail(&rt_se->run_list, queue);
Ingo Molnar1cdad712008-06-19 09:09:15 +02001276 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001277}
1278
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001279static void requeue_task_rt(struct rq *rq, struct task_struct *p, int head)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001280{
1281 struct sched_rt_entity *rt_se = &p->rt;
1282 struct rt_rq *rt_rq;
1283
1284 for_each_sched_rt_entity(rt_se) {
1285 rt_rq = rt_rq_of_se(rt_se);
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001286 requeue_rt_entity(rt_rq, rt_se, head);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001287 }
1288}
1289
1290static void yield_task_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001291{
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001292 requeue_task_rt(rq, rq->curr, 0);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001293}
1294
Gregory Haskinse7693a32008-01-25 21:08:09 +01001295#ifdef CONFIG_SMP
Gregory Haskins318e0892008-01-25 21:08:10 +01001296static int find_lowest_rq(struct task_struct *task);
1297
Peter Zijlstra0017d732010-03-24 18:34:10 +01001298static int
Peter Zijlstraac66f542013-10-07 11:29:16 +01001299select_task_rq_rt(struct task_struct *p, int cpu, int sd_flag, int flags)
Gregory Haskinse7693a32008-01-25 21:08:09 +01001300{
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001301 struct task_struct *curr;
1302 struct rq *rq;
Steven Rostedtc37495f2011-06-16 21:55:22 -04001303
Peter Zijlstra29baa742012-04-23 12:11:21 +02001304 if (p->nr_cpus_allowed == 1)
Mike Galbraith76854c72011-11-22 15:18:24 +01001305 goto out;
1306
Steven Rostedtc37495f2011-06-16 21:55:22 -04001307 /* For anything but wake ups, just return the task_cpu */
1308 if (sd_flag != SD_BALANCE_WAKE && sd_flag != SD_BALANCE_FORK)
1309 goto out;
1310
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001311 rq = cpu_rq(cpu);
1312
1313 rcu_read_lock();
1314 curr = ACCESS_ONCE(rq->curr); /* unlocked access */
1315
Gregory Haskins318e0892008-01-25 21:08:10 +01001316 /*
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001317 * If the current task on @p's runqueue is an RT task, then
Steven Rostedte1f47d82008-01-25 21:08:12 +01001318 * try to see if we can wake this RT task up on another
1319 * runqueue. Otherwise simply start this RT task
1320 * on its current runqueue.
1321 *
Steven Rostedt43fa5462010-09-20 22:40:03 -04001322 * We want to avoid overloading runqueues. If the woken
1323 * task is a higher priority, then it will stay on this CPU
1324 * and the lower prio task should be moved to another CPU.
1325 * Even though this will probably make the lower prio task
1326 * lose its cache, we do not want to bounce a higher task
1327 * around just because it gave up its CPU, perhaps for a
1328 * lock?
1329 *
1330 * For equal prio tasks, we just let the scheduler sort it out.
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001331 *
Gregory Haskins318e0892008-01-25 21:08:10 +01001332 * Otherwise, just let it ride on the affined RQ and the
1333 * post-schedule router will push the preempted task away
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001334 *
1335 * This test is optimistic, if we get it wrong the load-balancer
1336 * will have to sort it out.
Gregory Haskins318e0892008-01-25 21:08:10 +01001337 */
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001338 if (curr && unlikely(rt_task(curr)) &&
Peter Zijlstra29baa742012-04-23 12:11:21 +02001339 (curr->nr_cpus_allowed < 2 ||
Shawn Bohrer6bfa6872013-10-04 14:24:53 -05001340 curr->prio <= p->prio)) {
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001341 int target = find_lowest_rq(p);
1342
1343 if (target != -1)
1344 cpu = target;
1345 }
1346 rcu_read_unlock();
1347
Steven Rostedtc37495f2011-06-16 21:55:22 -04001348out:
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001349 return cpu;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001350}
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001351
1352static void check_preempt_equal_prio(struct rq *rq, struct task_struct *p)
1353{
Peter Zijlstra29baa742012-04-23 12:11:21 +02001354 if (rq->curr->nr_cpus_allowed == 1)
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001355 return;
1356
Peter Zijlstra29baa742012-04-23 12:11:21 +02001357 if (p->nr_cpus_allowed != 1
Rusty Russell13b8bd02009-03-25 15:01:22 +10301358 && cpupri_find(&rq->rd->cpupri, p, NULL))
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001359 return;
1360
Rusty Russell13b8bd02009-03-25 15:01:22 +10301361 if (!cpupri_find(&rq->rd->cpupri, rq->curr, NULL))
1362 return;
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001363
1364 /*
1365 * There appears to be other cpus that can accept
1366 * current and none to run 'p', so lets reschedule
1367 * to try and push current away:
1368 */
1369 requeue_task_rt(rq, p, 1);
Kirill Tkhai88751252014-06-29 00:03:57 +04001370 resched_curr(rq);
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001371}
1372
Gregory Haskinse7693a32008-01-25 21:08:09 +01001373#endif /* CONFIG_SMP */
1374
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001375/*
1376 * Preempt the current task with a newly woken task if needed:
1377 */
Peter Zijlstra7d478722009-09-14 19:55:44 +02001378static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001379{
Gregory Haskins45c01e82008-05-12 21:20:41 +02001380 if (p->prio < rq->curr->prio) {
Kirill Tkhai88751252014-06-29 00:03:57 +04001381 resched_curr(rq);
Gregory Haskins45c01e82008-05-12 21:20:41 +02001382 return;
1383 }
1384
1385#ifdef CONFIG_SMP
1386 /*
1387 * If:
1388 *
1389 * - the newly woken task is of equal priority to the current task
1390 * - the newly woken task is non-migratable while current is migratable
1391 * - current will be preempted on the next reschedule
1392 *
1393 * we should check to see if current can readily move to a different
1394 * cpu. If so, we will reschedule to allow the push logic to try
1395 * to move current somewhere else, making room for our non-migratable
1396 * task.
1397 */
Hillf Danton8dd0de82011-06-14 18:36:24 -04001398 if (p->prio == rq->curr->prio && !test_tsk_need_resched(rq->curr))
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001399 check_preempt_equal_prio(rq, p);
Gregory Haskins45c01e82008-05-12 21:20:41 +02001400#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001401}
1402
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001403static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq,
1404 struct rt_rq *rt_rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001405{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001406 struct rt_prio_array *array = &rt_rq->active;
1407 struct sched_rt_entity *next = NULL;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001408 struct list_head *queue;
1409 int idx;
1410
1411 idx = sched_find_first_bit(array->bitmap);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001412 BUG_ON(idx >= MAX_RT_PRIO);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001413
1414 queue = array->queue + idx;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001415 next = list_entry(queue->next, struct sched_rt_entity, run_list);
Dmitry Adamushko326587b2008-01-25 21:08:34 +01001416
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001417 return next;
1418}
1419
Gregory Haskins917b6272008-12-29 09:39:53 -05001420static struct task_struct *_pick_next_task_rt(struct rq *rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001421{
1422 struct sched_rt_entity *rt_se;
1423 struct task_struct *p;
Peter Zijlstra606dba22012-02-11 06:05:00 +01001424 struct rt_rq *rt_rq = &rq->rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001425
1426 do {
1427 rt_se = pick_next_rt_entity(rq, rt_rq);
Dmitry Adamushko326587b2008-01-25 21:08:34 +01001428 BUG_ON(!rt_se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001429 rt_rq = group_rt_rq(rt_se);
1430 } while (rt_rq);
1431
1432 p = rt_task_of(rt_se);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001433 p->se.exec_start = rq_clock_task(rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05001434
1435 return p;
1436}
1437
Peter Zijlstra606dba22012-02-11 06:05:00 +01001438static struct task_struct *
1439pick_next_task_rt(struct rq *rq, struct task_struct *prev)
Gregory Haskins917b6272008-12-29 09:39:53 -05001440{
Peter Zijlstra606dba22012-02-11 06:05:00 +01001441 struct task_struct *p;
1442 struct rt_rq *rt_rq = &rq->rt;
1443
Peter Zijlstra37e117c2014-02-14 12:25:08 +01001444 if (need_pull_rt_task(rq, prev)) {
Peter Zijlstra38033c32014-01-23 20:32:21 +01001445 pull_rt_task(rq);
Peter Zijlstra37e117c2014-02-14 12:25:08 +01001446 /*
1447 * pull_rt_task() can drop (and re-acquire) rq->lock; this
Kirill Tkhaia1d9a322014-04-10 17:38:36 +04001448 * means a dl or stop task can slip in, in which case we need
1449 * to re-start task selection.
Peter Zijlstra37e117c2014-02-14 12:25:08 +01001450 */
Kirill Tkhaia1d9a322014-04-10 17:38:36 +04001451 if (unlikely((rq->stop && rq->stop->on_rq) ||
1452 rq->dl.dl_nr_running))
Peter Zijlstra37e117c2014-02-14 12:25:08 +01001453 return RETRY_TASK;
1454 }
Peter Zijlstra38033c32014-01-23 20:32:21 +01001455
Kirill Tkhai734ff2a2014-03-04 19:25:46 +04001456 /*
1457 * We may dequeue prev's rt_rq in put_prev_task().
1458 * So, we update time before rt_nr_running check.
1459 */
1460 if (prev->sched_class == &rt_sched_class)
1461 update_curr_rt(rq);
1462
Kirill Tkhaif4ebcbc2014-03-15 02:15:00 +04001463 if (!rt_rq->rt_queued)
Peter Zijlstra606dba22012-02-11 06:05:00 +01001464 return NULL;
1465
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01001466 put_prev_task(rq, prev);
Peter Zijlstra606dba22012-02-11 06:05:00 +01001467
1468 p = _pick_next_task_rt(rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05001469
1470 /* The running task is never eligible for pushing */
1471 if (p)
1472 dequeue_pushable_task(rq, p);
1473
Peter Zijlstradc877342014-02-12 15:47:29 +01001474 set_post_schedule(rq);
Gregory Haskins3f029d32009-07-29 11:08:47 -04001475
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001476 return p;
1477}
1478
Ingo Molnar31ee5292007-08-09 11:16:49 +02001479static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001480{
Ingo Molnarf1e14ef2007-08-09 11:16:48 +02001481 update_curr_rt(rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05001482
1483 /*
1484 * The previous task needs to be made eligible for pushing
1485 * if it is still active
1486 */
Peter Zijlstra29baa742012-04-23 12:11:21 +02001487 if (on_rt_rq(&p->rt) && p->nr_cpus_allowed > 1)
Gregory Haskins917b6272008-12-29 09:39:53 -05001488 enqueue_pushable_task(rq, p);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001489}
1490
Peter Williams681f3e62007-10-24 18:23:51 +02001491#ifdef CONFIG_SMP
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001492
Steven Rostedte8fa1362008-01-25 21:08:05 +01001493/* Only try algorithms three times */
1494#define RT_MAX_TRIES 3
1495
Steven Rostedtf65eda42008-01-25 21:08:07 +01001496static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
1497{
1498 if (!task_running(rq, p) &&
Kirill Tkhai60334ca2013-01-31 18:56:17 +04001499 cpumask_test_cpu(cpu, tsk_cpus_allowed(p)))
Steven Rostedtf65eda42008-01-25 21:08:07 +01001500 return 1;
1501 return 0;
1502}
1503
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001504/*
1505 * Return the highest pushable rq's task, which is suitable to be executed
1506 * on the cpu, NULL otherwise
1507 */
1508static struct task_struct *pick_highest_pushable_task(struct rq *rq, int cpu)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001509{
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001510 struct plist_head *head = &rq->rt.pushable_tasks;
1511 struct task_struct *p;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001512
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001513 if (!has_pushable_tasks(rq))
1514 return NULL;
Peter Zijlstra3d074672010-03-10 17:07:24 +01001515
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001516 plist_for_each_entry(p, head, pushable_tasks) {
1517 if (pick_rt_task(rq, p, cpu))
1518 return p;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001519 }
1520
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001521 return NULL;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001522}
1523
Rusty Russell0e3900e2008-11-25 02:35:13 +10301524static DEFINE_PER_CPU(cpumask_var_t, local_cpu_mask);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001525
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001526static int find_lowest_rq(struct task_struct *task)
1527{
1528 struct sched_domain *sd;
Rusty Russell96f874e22008-11-25 02:35:14 +10301529 struct cpumask *lowest_mask = __get_cpu_var(local_cpu_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001530 int this_cpu = smp_processor_id();
1531 int cpu = task_cpu(task);
1532
Steven Rostedt0da938c2011-06-14 18:36:25 -04001533 /* Make sure the mask is initialized first */
1534 if (unlikely(!lowest_mask))
1535 return -1;
1536
Peter Zijlstra29baa742012-04-23 12:11:21 +02001537 if (task->nr_cpus_allowed == 1)
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001538 return -1; /* No other targets possible */
1539
1540 if (!cpupri_find(&task_rq(task)->rd->cpupri, task, lowest_mask))
Gregory Haskins06f90db2008-01-25 21:08:13 +01001541 return -1; /* No targets found */
1542
1543 /*
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001544 * At this point we have built a mask of cpus representing the
1545 * lowest priority tasks in the system. Now we want to elect
1546 * the best one based on our affinity and topology.
1547 *
1548 * We prioritize the last cpu that the task executed on since
1549 * it is most likely cache-hot in that location.
1550 */
Rusty Russell96f874e22008-11-25 02:35:14 +10301551 if (cpumask_test_cpu(cpu, lowest_mask))
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001552 return cpu;
1553
1554 /*
1555 * Otherwise, we consult the sched_domains span maps to figure
1556 * out which cpu is logically closest to our hot cache data.
1557 */
Rusty Russelle2c88062009-11-03 14:53:15 +10301558 if (!cpumask_test_cpu(this_cpu, lowest_mask))
1559 this_cpu = -1; /* Skip this_cpu opt if not among lowest */
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001560
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001561 rcu_read_lock();
Rusty Russelle2c88062009-11-03 14:53:15 +10301562 for_each_domain(cpu, sd) {
1563 if (sd->flags & SD_WAKE_AFFINE) {
1564 int best_cpu;
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001565
Rusty Russelle2c88062009-11-03 14:53:15 +10301566 /*
1567 * "this_cpu" is cheaper to preempt than a
1568 * remote processor.
1569 */
1570 if (this_cpu != -1 &&
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001571 cpumask_test_cpu(this_cpu, sched_domain_span(sd))) {
1572 rcu_read_unlock();
Rusty Russelle2c88062009-11-03 14:53:15 +10301573 return this_cpu;
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001574 }
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001575
Rusty Russelle2c88062009-11-03 14:53:15 +10301576 best_cpu = cpumask_first_and(lowest_mask,
1577 sched_domain_span(sd));
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001578 if (best_cpu < nr_cpu_ids) {
1579 rcu_read_unlock();
Rusty Russelle2c88062009-11-03 14:53:15 +10301580 return best_cpu;
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001581 }
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001582 }
1583 }
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001584 rcu_read_unlock();
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001585
1586 /*
1587 * And finally, if there were no matches within the domains
1588 * just give the caller *something* to work with from the compatible
1589 * locations.
1590 */
Rusty Russelle2c88062009-11-03 14:53:15 +10301591 if (this_cpu != -1)
1592 return this_cpu;
1593
1594 cpu = cpumask_any(lowest_mask);
1595 if (cpu < nr_cpu_ids)
1596 return cpu;
1597 return -1;
Gregory Haskins07b40322008-01-25 21:08:10 +01001598}
1599
Steven Rostedte8fa1362008-01-25 21:08:05 +01001600/* Will lock the rq it finds */
Ingo Molnar4df64c02008-01-25 21:08:15 +01001601static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001602{
1603 struct rq *lowest_rq = NULL;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001604 int tries;
Ingo Molnar4df64c02008-01-25 21:08:15 +01001605 int cpu;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001606
1607 for (tries = 0; tries < RT_MAX_TRIES; tries++) {
Gregory Haskins07b40322008-01-25 21:08:10 +01001608 cpu = find_lowest_rq(task);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001609
Gregory Haskins2de0b462008-01-25 21:08:10 +01001610 if ((cpu == -1) || (cpu == rq->cpu))
Steven Rostedte8fa1362008-01-25 21:08:05 +01001611 break;
1612
Gregory Haskins07b40322008-01-25 21:08:10 +01001613 lowest_rq = cpu_rq(cpu);
1614
Steven Rostedte8fa1362008-01-25 21:08:05 +01001615 /* if the prio of this runqueue changed, try again */
Gregory Haskins07b40322008-01-25 21:08:10 +01001616 if (double_lock_balance(rq, lowest_rq)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +01001617 /*
1618 * We had to unlock the run queue. In
1619 * the mean time, task could have
1620 * migrated already or had its affinity changed.
1621 * Also make sure that it wasn't scheduled on its rq.
1622 */
Gregory Haskins07b40322008-01-25 21:08:10 +01001623 if (unlikely(task_rq(task) != rq ||
Rusty Russell96f874e22008-11-25 02:35:14 +10301624 !cpumask_test_cpu(lowest_rq->cpu,
Peter Zijlstrafa17b502011-06-16 12:23:22 +02001625 tsk_cpus_allowed(task)) ||
Gregory Haskins07b40322008-01-25 21:08:10 +01001626 task_running(rq, task) ||
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001627 !task->on_rq)) {
Ingo Molnar4df64c02008-01-25 21:08:15 +01001628
Peter Zijlstra7f1b4392012-05-17 21:19:46 +02001629 double_unlock_balance(rq, lowest_rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001630 lowest_rq = NULL;
1631 break;
1632 }
1633 }
1634
1635 /* If this rq is still suitable use it. */
Gregory Haskinse864c492008-12-29 09:39:49 -05001636 if (lowest_rq->rt.highest_prio.curr > task->prio)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001637 break;
1638
1639 /* try again */
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02001640 double_unlock_balance(rq, lowest_rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001641 lowest_rq = NULL;
1642 }
1643
1644 return lowest_rq;
1645}
1646
Gregory Haskins917b6272008-12-29 09:39:53 -05001647static struct task_struct *pick_next_pushable_task(struct rq *rq)
1648{
1649 struct task_struct *p;
1650
1651 if (!has_pushable_tasks(rq))
1652 return NULL;
1653
1654 p = plist_first_entry(&rq->rt.pushable_tasks,
1655 struct task_struct, pushable_tasks);
1656
1657 BUG_ON(rq->cpu != task_cpu(p));
1658 BUG_ON(task_current(rq, p));
Peter Zijlstra29baa742012-04-23 12:11:21 +02001659 BUG_ON(p->nr_cpus_allowed <= 1);
Gregory Haskins917b6272008-12-29 09:39:53 -05001660
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001661 BUG_ON(!p->on_rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05001662 BUG_ON(!rt_task(p));
1663
1664 return p;
1665}
1666
Steven Rostedte8fa1362008-01-25 21:08:05 +01001667/*
1668 * If the current CPU has more than one RT task, see if the non
1669 * running task can migrate over to a CPU that is running a task
1670 * of lesser priority.
1671 */
Gregory Haskins697f0a42008-01-25 21:08:09 +01001672static int push_rt_task(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001673{
1674 struct task_struct *next_task;
1675 struct rq *lowest_rq;
Hillf Danton311e8002011-06-16 21:55:20 -04001676 int ret = 0;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001677
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +01001678 if (!rq->rt.overloaded)
1679 return 0;
1680
Gregory Haskins917b6272008-12-29 09:39:53 -05001681 next_task = pick_next_pushable_task(rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001682 if (!next_task)
1683 return 0;
1684
Peter Zijlstra49246272010-10-17 21:46:10 +02001685retry:
Gregory Haskins697f0a42008-01-25 21:08:09 +01001686 if (unlikely(next_task == rq->curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +01001687 WARN_ON(1);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001688 return 0;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001689 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01001690
1691 /*
1692 * It's possible that the next_task slipped in of
1693 * higher priority than current. If that's the case
1694 * just reschedule current.
1695 */
Gregory Haskins697f0a42008-01-25 21:08:09 +01001696 if (unlikely(next_task->prio < rq->curr->prio)) {
Kirill Tkhai88751252014-06-29 00:03:57 +04001697 resched_curr(rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001698 return 0;
1699 }
1700
Gregory Haskins697f0a42008-01-25 21:08:09 +01001701 /* We might release rq lock */
Steven Rostedte8fa1362008-01-25 21:08:05 +01001702 get_task_struct(next_task);
1703
1704 /* find_lock_lowest_rq locks the rq if found */
Gregory Haskins697f0a42008-01-25 21:08:09 +01001705 lowest_rq = find_lock_lowest_rq(next_task, rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001706 if (!lowest_rq) {
1707 struct task_struct *task;
1708 /*
Hillf Danton311e8002011-06-16 21:55:20 -04001709 * find_lock_lowest_rq releases rq->lock
Gregory Haskins15635132008-12-29 09:39:53 -05001710 * so it is possible that next_task has migrated.
1711 *
1712 * We need to make sure that the task is still on the same
1713 * run-queue and is also still the next task eligible for
1714 * pushing.
Steven Rostedte8fa1362008-01-25 21:08:05 +01001715 */
Gregory Haskins917b6272008-12-29 09:39:53 -05001716 task = pick_next_pushable_task(rq);
Gregory Haskins15635132008-12-29 09:39:53 -05001717 if (task_cpu(next_task) == rq->cpu && task == next_task) {
1718 /*
Hillf Danton311e8002011-06-16 21:55:20 -04001719 * The task hasn't migrated, and is still the next
1720 * eligible task, but we failed to find a run-queue
1721 * to push it to. Do not retry in this case, since
1722 * other cpus will pull from us when ready.
Gregory Haskins15635132008-12-29 09:39:53 -05001723 */
Gregory Haskins15635132008-12-29 09:39:53 -05001724 goto out;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001725 }
Gregory Haskins917b6272008-12-29 09:39:53 -05001726
Gregory Haskins15635132008-12-29 09:39:53 -05001727 if (!task)
1728 /* No more tasks, just exit */
1729 goto out;
1730
Gregory Haskins917b6272008-12-29 09:39:53 -05001731 /*
Gregory Haskins15635132008-12-29 09:39:53 -05001732 * Something has shifted, try again.
Gregory Haskins917b6272008-12-29 09:39:53 -05001733 */
Gregory Haskins15635132008-12-29 09:39:53 -05001734 put_task_struct(next_task);
1735 next_task = task;
1736 goto retry;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001737 }
1738
Gregory Haskins697f0a42008-01-25 21:08:09 +01001739 deactivate_task(rq, next_task, 0);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001740 set_task_cpu(next_task, lowest_rq->cpu);
1741 activate_task(lowest_rq, next_task, 0);
Hillf Danton311e8002011-06-16 21:55:20 -04001742 ret = 1;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001743
Kirill Tkhai88751252014-06-29 00:03:57 +04001744 resched_curr(lowest_rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001745
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02001746 double_unlock_balance(rq, lowest_rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001747
Steven Rostedte8fa1362008-01-25 21:08:05 +01001748out:
1749 put_task_struct(next_task);
1750
Hillf Danton311e8002011-06-16 21:55:20 -04001751 return ret;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001752}
1753
Steven Rostedte8fa1362008-01-25 21:08:05 +01001754static void push_rt_tasks(struct rq *rq)
1755{
1756 /* push_rt_task will return true if it moved an RT */
1757 while (push_rt_task(rq))
1758 ;
1759}
1760
Steven Rostedtf65eda42008-01-25 21:08:07 +01001761static int pull_rt_task(struct rq *this_rq)
1762{
Ingo Molnar80bf3172008-01-25 21:08:17 +01001763 int this_cpu = this_rq->cpu, ret = 0, cpu;
Gregory Haskinsa8728942008-12-29 09:39:49 -05001764 struct task_struct *p;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001765 struct rq *src_rq;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001766
Gregory Haskins637f5082008-01-25 21:08:18 +01001767 if (likely(!rt_overloaded(this_rq)))
Steven Rostedtf65eda42008-01-25 21:08:07 +01001768 return 0;
1769
Peter Zijlstra7c3f2ab2013-10-15 12:35:07 +02001770 /*
1771 * Match the barrier from rt_set_overloaded; this guarantees that if we
1772 * see overloaded we must also see the rto_mask bit.
1773 */
1774 smp_rmb();
1775
Rusty Russellc6c49272008-11-25 02:35:05 +10301776 for_each_cpu(cpu, this_rq->rd->rto_mask) {
Steven Rostedtf65eda42008-01-25 21:08:07 +01001777 if (this_cpu == cpu)
1778 continue;
1779
1780 src_rq = cpu_rq(cpu);
Gregory Haskins74ab8e42008-12-29 09:39:50 -05001781
1782 /*
1783 * Don't bother taking the src_rq->lock if the next highest
1784 * task is known to be lower-priority than our current task.
1785 * This may look racy, but if this value is about to go
1786 * logically higher, the src_rq will push this task away.
1787 * And if its going logically lower, we do not care
1788 */
1789 if (src_rq->rt.highest_prio.next >=
1790 this_rq->rt.highest_prio.curr)
1791 continue;
1792
Steven Rostedtf65eda42008-01-25 21:08:07 +01001793 /*
1794 * We can potentially drop this_rq's lock in
1795 * double_lock_balance, and another CPU could
Gregory Haskinsa8728942008-12-29 09:39:49 -05001796 * alter this_rq
Steven Rostedtf65eda42008-01-25 21:08:07 +01001797 */
Gregory Haskinsa8728942008-12-29 09:39:49 -05001798 double_lock_balance(this_rq, src_rq);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001799
1800 /*
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001801 * We can pull only a task, which is pushable
1802 * on its rq, and no others.
Steven Rostedtf65eda42008-01-25 21:08:07 +01001803 */
Kirill Tkhaie23ee742013-06-07 15:37:43 -04001804 p = pick_highest_pushable_task(src_rq, this_cpu);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001805
1806 /*
1807 * Do we have an RT task that preempts
1808 * the to-be-scheduled task?
1809 */
Gregory Haskinsa8728942008-12-29 09:39:49 -05001810 if (p && (p->prio < this_rq->rt.highest_prio.curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +01001811 WARN_ON(p == src_rq->curr);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001812 WARN_ON(!p->on_rq);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001813
1814 /*
1815 * There's a chance that p is higher in priority
1816 * than what's currently running on its cpu.
1817 * This is just that p is wakeing up and hasn't
1818 * had a chance to schedule. We only pull
1819 * p if it is lower in priority than the
Gregory Haskinsa8728942008-12-29 09:39:49 -05001820 * current task on the run queue
Steven Rostedtf65eda42008-01-25 21:08:07 +01001821 */
Gregory Haskinsa8728942008-12-29 09:39:49 -05001822 if (p->prio < src_rq->curr->prio)
Mike Galbraith614ee1f2008-01-25 21:08:30 +01001823 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001824
1825 ret = 1;
1826
1827 deactivate_task(src_rq, p, 0);
1828 set_task_cpu(p, this_cpu);
1829 activate_task(this_rq, p, 0);
1830 /*
1831 * We continue with the search, just in
1832 * case there's an even higher prio task
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001833 * in another runqueue. (low likelihood
Steven Rostedtf65eda42008-01-25 21:08:07 +01001834 * but possible)
Steven Rostedtf65eda42008-01-25 21:08:07 +01001835 */
Steven Rostedtf65eda42008-01-25 21:08:07 +01001836 }
Peter Zijlstra49246272010-10-17 21:46:10 +02001837skip:
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02001838 double_unlock_balance(this_rq, src_rq);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001839 }
1840
1841 return ret;
1842}
1843
Steven Rostedt9a897c52008-01-25 21:08:22 +01001844static void post_schedule_rt(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001845{
Gregory Haskins967fc042008-12-29 09:39:52 -05001846 push_rt_tasks(rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001847}
1848
Gregory Haskins8ae121a2008-04-23 07:13:29 -04001849/*
1850 * If we are not running and we are not going to reschedule soon, we should
1851 * try to push tasks away now
1852 */
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001853static void task_woken_rt(struct rq *rq, struct task_struct *p)
Steven Rostedt4642daf2008-01-25 21:08:07 +01001854{
Steven Rostedt9a897c52008-01-25 21:08:22 +01001855 if (!task_running(rq, p) &&
Gregory Haskins8ae121a2008-04-23 07:13:29 -04001856 !test_tsk_need_resched(rq->curr) &&
Gregory Haskins917b6272008-12-29 09:39:53 -05001857 has_pushable_tasks(rq) &&
Peter Zijlstra29baa742012-04-23 12:11:21 +02001858 p->nr_cpus_allowed > 1 &&
Juri Lelli1baca4c2013-11-07 14:43:38 +01001859 (dl_task(rq->curr) || rt_task(rq->curr)) &&
Peter Zijlstra29baa742012-04-23 12:11:21 +02001860 (rq->curr->nr_cpus_allowed < 2 ||
Shawn Bohrer3be209a2011-09-12 09:28:04 -05001861 rq->curr->prio <= p->prio))
Steven Rostedt4642daf2008-01-25 21:08:07 +01001862 push_rt_tasks(rq);
1863}
1864
Mike Traviscd8ba7c2008-03-26 14:23:49 -07001865static void set_cpus_allowed_rt(struct task_struct *p,
Rusty Russell96f874e22008-11-25 02:35:14 +10301866 const struct cpumask *new_mask)
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001867{
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001868 struct rq *rq;
1869 int weight;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001870
1871 BUG_ON(!rt_task(p));
1872
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001873 if (!p->on_rq)
1874 return;
1875
1876 weight = cpumask_weight(new_mask);
1877
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001878 /*
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001879 * Only update if the process changes its state from whether it
1880 * can migrate or not.
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001881 */
Peter Zijlstra29baa742012-04-23 12:11:21 +02001882 if ((p->nr_cpus_allowed > 1) == (weight > 1))
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001883 return;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001884
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001885 rq = task_rq(p);
Gregory Haskins917b6272008-12-29 09:39:53 -05001886
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001887 /*
1888 * The process used to be able to migrate OR it can now migrate
1889 */
1890 if (weight <= 1) {
1891 if (!task_current(rq, p))
1892 dequeue_pushable_task(rq, p);
1893 BUG_ON(!rq->rt.rt_nr_migratory);
1894 rq->rt.rt_nr_migratory--;
1895 } else {
1896 if (!task_current(rq, p))
1897 enqueue_pushable_task(rq, p);
1898 rq->rt.rt_nr_migratory++;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001899 }
Kirill Tkhai8d3d5ad2012-04-11 09:06:04 +04001900
1901 update_rt_migration(&rq->rt);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001902}
Ingo Molnardeeeccd2008-01-25 21:08:15 +01001903
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001904/* Assumes rq->lock is held */
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001905static void rq_online_rt(struct rq *rq)
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001906{
1907 if (rq->rt.overloaded)
1908 rt_set_overload(rq);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001909
Peter Zijlstra7def2be2008-06-05 14:49:58 +02001910 __enable_runtime(rq);
1911
Gregory Haskinse864c492008-12-29 09:39:49 -05001912 cpupri_set(&rq->rd->cpupri, rq->cpu, rq->rt.highest_prio.curr);
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001913}
1914
1915/* Assumes rq->lock is held */
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001916static void rq_offline_rt(struct rq *rq)
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001917{
1918 if (rq->rt.overloaded)
1919 rt_clear_overload(rq);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001920
Peter Zijlstra7def2be2008-06-05 14:49:58 +02001921 __disable_runtime(rq);
1922
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001923 cpupri_set(&rq->rd->cpupri, rq->cpu, CPUPRI_INVALID);
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001924}
Steven Rostedtcb469842008-01-25 21:08:22 +01001925
1926/*
1927 * When switch from the rt queue, we bring ourselves to a position
1928 * that we might want to pull RT tasks from other runqueues.
1929 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001930static void switched_from_rt(struct rq *rq, struct task_struct *p)
Steven Rostedtcb469842008-01-25 21:08:22 +01001931{
1932 /*
1933 * If there are other RT tasks then we will reschedule
1934 * and the scheduling of the other RT tasks will handle
1935 * the balancing. But if we are the last RT task
1936 * we may need to handle the pulling of RT tasks
1937 * now.
1938 */
Kirill Tkhai1158ddb2012-11-23 00:02:15 +04001939 if (!p->on_rq || rq->rt.rt_nr_running)
1940 return;
1941
1942 if (pull_rt_task(rq))
Kirill Tkhai88751252014-06-29 00:03:57 +04001943 resched_curr(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01001944}
Rusty Russell3d8cbdf2008-11-25 09:58:41 +10301945
Li Zefan11c785b2014-02-08 14:17:45 +08001946void __init init_sched_rt_class(void)
Rusty Russell3d8cbdf2008-11-25 09:58:41 +10301947{
1948 unsigned int i;
1949
Peter Zijlstra029632f2011-10-25 10:00:11 +02001950 for_each_possible_cpu(i) {
Yinghai Lueaa95842009-06-06 14:51:36 -07001951 zalloc_cpumask_var_node(&per_cpu(local_cpu_mask, i),
Mike Travis6ca09df2008-12-31 18:08:45 -08001952 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra029632f2011-10-25 10:00:11 +02001953 }
Rusty Russell3d8cbdf2008-11-25 09:58:41 +10301954}
Steven Rostedte8fa1362008-01-25 21:08:05 +01001955#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001956
Steven Rostedtcb469842008-01-25 21:08:22 +01001957/*
1958 * When switching a task to RT, we may overload the runqueue
1959 * with RT tasks. In this case we try to push them off to
1960 * other runqueues.
1961 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001962static void switched_to_rt(struct rq *rq, struct task_struct *p)
Steven Rostedtcb469842008-01-25 21:08:22 +01001963{
1964 int check_resched = 1;
1965
1966 /*
1967 * If we are already running, then there's nothing
1968 * that needs to be done. But if we are not running
1969 * we may need to preempt the current running task.
1970 * If that current running task is also an RT task
1971 * then see if we can move to another run queue.
1972 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001973 if (p->on_rq && rq->curr != p) {
Steven Rostedtcb469842008-01-25 21:08:22 +01001974#ifdef CONFIG_SMP
Kirill V Tkhai10447912014-03-12 06:18:33 -04001975 if (p->nr_cpus_allowed > 1 && rq->rt.overloaded &&
Steven Rostedtcb469842008-01-25 21:08:22 +01001976 /* Don't resched if we changed runqueues */
Kirill V Tkhai10447912014-03-12 06:18:33 -04001977 push_rt_task(rq) && rq != task_rq(p))
Steven Rostedtcb469842008-01-25 21:08:22 +01001978 check_resched = 0;
1979#endif /* CONFIG_SMP */
1980 if (check_resched && p->prio < rq->curr->prio)
Kirill Tkhai88751252014-06-29 00:03:57 +04001981 resched_curr(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01001982 }
1983}
1984
1985/*
1986 * Priority of the task has changed. This may cause
1987 * us to initiate a push or pull.
1988 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001989static void
1990prio_changed_rt(struct rq *rq, struct task_struct *p, int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01001991{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001992 if (!p->on_rq)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001993 return;
1994
1995 if (rq->curr == p) {
Steven Rostedtcb469842008-01-25 21:08:22 +01001996#ifdef CONFIG_SMP
1997 /*
1998 * If our priority decreases while running, we
1999 * may need to pull tasks to this runqueue.
2000 */
2001 if (oldprio < p->prio)
2002 pull_rt_task(rq);
2003 /*
2004 * If there's a higher priority task waiting to run
Steven Rostedt6fa46fa2008-03-05 10:00:12 -05002005 * then reschedule. Note, the above pull_rt_task
2006 * can release the rq lock and p could migrate.
2007 * Only reschedule if p is still on the same runqueue.
Steven Rostedtcb469842008-01-25 21:08:22 +01002008 */
Gregory Haskinse864c492008-12-29 09:39:49 -05002009 if (p->prio > rq->rt.highest_prio.curr && rq->curr == p)
Kirill Tkhai88751252014-06-29 00:03:57 +04002010 resched_curr(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01002011#else
2012 /* For UP simply resched on drop of prio */
2013 if (oldprio < p->prio)
Kirill Tkhai88751252014-06-29 00:03:57 +04002014 resched_curr(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01002015#endif /* CONFIG_SMP */
2016 } else {
2017 /*
2018 * This task is not running, but if it is
2019 * greater than the current running task
2020 * then reschedule.
2021 */
2022 if (p->prio < rq->curr->prio)
Kirill Tkhai88751252014-06-29 00:03:57 +04002023 resched_curr(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +01002024 }
2025}
2026
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01002027static void watchdog(struct rq *rq, struct task_struct *p)
2028{
2029 unsigned long soft, hard;
2030
Jiri Slaby78d7d402010-03-05 13:42:54 -08002031 /* max may change after cur was read, this will be fixed next tick */
2032 soft = task_rlimit(p, RLIMIT_RTTIME);
2033 hard = task_rlimit_max(p, RLIMIT_RTTIME);
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01002034
2035 if (soft != RLIM_INFINITY) {
2036 unsigned long next;
2037
Ying Xue57d2aa02012-07-17 15:03:43 +08002038 if (p->rt.watchdog_stamp != jiffies) {
2039 p->rt.timeout++;
2040 p->rt.watchdog_stamp = jiffies;
2041 }
2042
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01002043 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ);
Peter Zijlstra5a52dd52008-01-25 21:08:32 +01002044 if (p->rt.timeout > next)
Frank Mayharf06febc2008-09-12 09:54:39 -07002045 p->cputime_expires.sched_exp = p->se.sum_exec_runtime;
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01002046 }
2047}
Steven Rostedtcb469842008-01-25 21:08:22 +01002048
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002049static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002050{
Colin Cross454c7992012-05-16 21:34:23 -07002051 struct sched_rt_entity *rt_se = &p->rt;
2052
Peter Zijlstra67e2be02007-12-20 15:01:17 +01002053 update_curr_rt(rq);
2054
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01002055 watchdog(rq, p);
2056
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002057 /*
2058 * RR tasks need a special form of timeslice management.
2059 * FIFO tasks have no timeslices.
2060 */
2061 if (p->policy != SCHED_RR)
2062 return;
2063
Peter Zijlstrafa717062008-01-25 21:08:27 +01002064 if (--p->rt.time_slice)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002065 return;
2066
Clark Williamsce0dbbb2013-02-07 09:47:04 -06002067 p->rt.time_slice = sched_rr_timeslice;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002068
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02002069 /*
Li Bine9aa39b2013-10-21 20:15:43 +08002070 * Requeue to the end of queue if we (and all of our ancestors) are not
2071 * the only element on the queue
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02002072 */
Colin Cross454c7992012-05-16 21:34:23 -07002073 for_each_sched_rt_entity(rt_se) {
2074 if (rt_se->run_list.prev != rt_se->run_list.next) {
2075 requeue_task_rt(rq, p, 0);
2076 set_tsk_need_resched(p);
2077 return;
2078 }
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02002079 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002080}
2081
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02002082static void set_curr_task_rt(struct rq *rq)
2083{
2084 struct task_struct *p = rq->curr;
2085
Frederic Weisbecker78becc22013-04-12 01:51:02 +02002086 p->se.exec_start = rq_clock_task(rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05002087
2088 /* The running task is never eligible for pushing */
2089 dequeue_pushable_task(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02002090}
2091
H Hartley Sweeten6d686f42010-01-13 20:21:52 -07002092static unsigned int get_rr_interval_rt(struct rq *rq, struct task_struct *task)
Peter Williams0d721ce2009-09-21 01:31:53 +00002093{
2094 /*
2095 * Time slice is 0 for SCHED_FIFO tasks
2096 */
2097 if (task->policy == SCHED_RR)
Clark Williamsce0dbbb2013-02-07 09:47:04 -06002098 return sched_rr_timeslice;
Peter Williams0d721ce2009-09-21 01:31:53 +00002099 else
2100 return 0;
2101}
2102
Peter Zijlstra029632f2011-10-25 10:00:11 +02002103const struct sched_class rt_sched_class = {
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002104 .next = &fair_sched_class,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002105 .enqueue_task = enqueue_task_rt,
2106 .dequeue_task = dequeue_task_rt,
2107 .yield_task = yield_task_rt,
2108
2109 .check_preempt_curr = check_preempt_curr_rt,
2110
2111 .pick_next_task = pick_next_task_rt,
2112 .put_prev_task = put_prev_task_rt,
2113
Peter Williams681f3e62007-10-24 18:23:51 +02002114#ifdef CONFIG_SMP
Li Zefan4ce72a22008-10-22 15:25:26 +08002115 .select_task_rq = select_task_rq_rt,
2116
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01002117 .set_cpus_allowed = set_cpus_allowed_rt,
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04002118 .rq_online = rq_online_rt,
2119 .rq_offline = rq_offline_rt,
Steven Rostedt9a897c52008-01-25 21:08:22 +01002120 .post_schedule = post_schedule_rt,
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002121 .task_woken = task_woken_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01002122 .switched_from = switched_from_rt,
Peter Williams681f3e62007-10-24 18:23:51 +02002123#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002124
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02002125 .set_curr_task = set_curr_task_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002126 .task_tick = task_tick_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01002127
Peter Williams0d721ce2009-09-21 01:31:53 +00002128 .get_rr_interval = get_rr_interval_rt,
2129
Steven Rostedtcb469842008-01-25 21:08:22 +01002130 .prio_changed = prio_changed_rt,
2131 .switched_to = switched_to_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02002132};
Peter Zijlstraada18de2008-06-19 14:22:24 +02002133
2134#ifdef CONFIG_SCHED_DEBUG
2135extern void print_rt_rq(struct seq_file *m, int cpu, struct rt_rq *rt_rq);
2136
Peter Zijlstra029632f2011-10-25 10:00:11 +02002137void print_rt_stats(struct seq_file *m, int cpu)
Peter Zijlstraada18de2008-06-19 14:22:24 +02002138{
Cheng Xuec514c42011-05-14 14:20:02 +08002139 rt_rq_iter_t iter;
Peter Zijlstraada18de2008-06-19 14:22:24 +02002140 struct rt_rq *rt_rq;
2141
2142 rcu_read_lock();
Cheng Xuec514c42011-05-14 14:20:02 +08002143 for_each_rt_rq(rt_rq, iter, cpu_rq(cpu))
Peter Zijlstraada18de2008-06-19 14:22:24 +02002144 print_rt_rq(m, cpu, rt_rq);
2145 rcu_read_unlock();
2146}
Dhaval Giani55e12e52008-06-24 23:39:43 +05302147#endif /* CONFIG_SCHED_DEBUG */