blob: 2153a87e6157291308bb2ae91c85c3e9fee85035 [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
Gregory Haskins398a1532009-01-14 09:10:04 -05006#ifdef CONFIG_RT_GROUP_SCHED
7
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +02008#define rt_entity_is_task(rt_se) (!(rt_se)->my_q)
9
Peter Zijlstra8f488942009-07-24 12:25:30 +020010static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
11{
12#ifdef CONFIG_SCHED_DEBUG
13 WARN_ON_ONCE(!rt_entity_is_task(rt_se));
14#endif
15 return container_of(rt_se, struct task_struct, rt);
16}
17
Gregory Haskins398a1532009-01-14 09:10:04 -050018static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
19{
20 return rt_rq->rq;
21}
22
23static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
24{
25 return rt_se->rt_rq;
26}
27
28#else /* CONFIG_RT_GROUP_SCHED */
29
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +020030#define rt_entity_is_task(rt_se) (1)
31
Peter Zijlstra8f488942009-07-24 12:25:30 +020032static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
33{
34 return container_of(rt_se, struct task_struct, rt);
35}
36
Gregory Haskins398a1532009-01-14 09:10:04 -050037static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
38{
39 return container_of(rt_rq, struct rq, rt);
40}
41
42static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
43{
44 struct task_struct *p = rt_task_of(rt_se);
45 struct rq *rq = task_rq(p);
46
47 return &rq->rt;
48}
49
50#endif /* CONFIG_RT_GROUP_SCHED */
51
Steven Rostedt4fd29172008-01-25 21:08:06 +010052#ifdef CONFIG_SMP
Ingo Molnar84de4272008-01-25 21:08:15 +010053
Gregory Haskins637f5082008-01-25 21:08:18 +010054static inline int rt_overloaded(struct rq *rq)
Steven Rostedt4fd29172008-01-25 21:08:06 +010055{
Gregory Haskins637f5082008-01-25 21:08:18 +010056 return atomic_read(&rq->rd->rto_count);
Steven Rostedt4fd29172008-01-25 21:08:06 +010057}
Ingo Molnar84de4272008-01-25 21:08:15 +010058
Steven Rostedt4fd29172008-01-25 21:08:06 +010059static inline void rt_set_overload(struct rq *rq)
60{
Gregory Haskins1f11eb62008-06-04 15:04:05 -040061 if (!rq->online)
62 return;
63
Rusty Russellc6c49272008-11-25 02:35:05 +103064 cpumask_set_cpu(rq->cpu, rq->rd->rto_mask);
Steven Rostedt4fd29172008-01-25 21:08:06 +010065 /*
66 * Make sure the mask is visible before we set
67 * the overload count. That is checked to determine
68 * if we should look at the mask. It would be a shame
69 * if we looked at the mask, but the mask was not
70 * updated yet.
71 */
72 wmb();
Gregory Haskins637f5082008-01-25 21:08:18 +010073 atomic_inc(&rq->rd->rto_count);
Steven Rostedt4fd29172008-01-25 21:08:06 +010074}
Ingo Molnar84de4272008-01-25 21:08:15 +010075
Steven Rostedt4fd29172008-01-25 21:08:06 +010076static inline void rt_clear_overload(struct rq *rq)
77{
Gregory Haskins1f11eb62008-06-04 15:04:05 -040078 if (!rq->online)
79 return;
80
Steven Rostedt4fd29172008-01-25 21:08:06 +010081 /* the order here really doesn't matter */
Gregory Haskins637f5082008-01-25 21:08:18 +010082 atomic_dec(&rq->rd->rto_count);
Rusty Russellc6c49272008-11-25 02:35:05 +103083 cpumask_clear_cpu(rq->cpu, rq->rd->rto_mask);
Steven Rostedt4fd29172008-01-25 21:08:06 +010084}
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010085
Gregory Haskins398a1532009-01-14 09:10:04 -050086static void update_rt_migration(struct rt_rq *rt_rq)
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010087{
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +020088 if (rt_rq->rt_nr_migratory && rt_rq->rt_nr_total > 1) {
Gregory Haskins398a1532009-01-14 09:10:04 -050089 if (!rt_rq->overloaded) {
90 rt_set_overload(rq_of_rt_rq(rt_rq));
91 rt_rq->overloaded = 1;
Gregory Haskinscdc8eb92008-01-25 21:08:23 +010092 }
Gregory Haskins398a1532009-01-14 09:10:04 -050093 } else if (rt_rq->overloaded) {
94 rt_clear_overload(rq_of_rt_rq(rt_rq));
95 rt_rq->overloaded = 0;
Gregory Haskins637f5082008-01-25 21:08:18 +010096 }
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010097}
Steven Rostedt4fd29172008-01-25 21:08:06 +010098
Gregory Haskins398a1532009-01-14 09:10:04 -050099static void inc_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100100{
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200101 if (!rt_entity_is_task(rt_se))
102 return;
103
104 rt_rq = &rq_of_rt_rq(rt_rq)->rt;
105
106 rt_rq->rt_nr_total++;
Gregory Haskins398a1532009-01-14 09:10:04 -0500107 if (rt_se->nr_cpus_allowed > 1)
108 rt_rq->rt_nr_migratory++;
109
110 update_rt_migration(rt_rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100111}
112
Gregory Haskins398a1532009-01-14 09:10:04 -0500113static void dec_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
114{
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200115 if (!rt_entity_is_task(rt_se))
116 return;
117
118 rt_rq = &rq_of_rt_rq(rt_rq)->rt;
119
120 rt_rq->rt_nr_total--;
Gregory Haskins398a1532009-01-14 09:10:04 -0500121 if (rt_se->nr_cpus_allowed > 1)
122 rt_rq->rt_nr_migratory--;
123
124 update_rt_migration(rt_rq);
125}
126
Gregory Haskins917b6272008-12-29 09:39:53 -0500127static void enqueue_pushable_task(struct rq *rq, struct task_struct *p)
128{
129 plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks);
130 plist_node_init(&p->pushable_tasks, p->prio);
131 plist_add(&p->pushable_tasks, &rq->rt.pushable_tasks);
132}
133
134static void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
135{
136 plist_del(&p->pushable_tasks, &rq->rt.pushable_tasks);
137}
138
Ingo Molnarbcf08df2008-04-19 12:11:10 +0200139static inline int has_pushable_tasks(struct rq *rq)
140{
141 return !plist_head_empty(&rq->rt.pushable_tasks);
142}
143
Gregory Haskins917b6272008-12-29 09:39:53 -0500144#else
145
Peter Zijlstraceacc2c2009-01-16 14:46:40 +0100146static inline void enqueue_pushable_task(struct rq *rq, struct task_struct *p)
147{
148}
149
150static inline void dequeue_pushable_task(struct rq *rq, struct task_struct *p)
151{
152}
153
Gregory Haskinsb07430a2009-01-14 08:55:39 -0500154static inline
Peter Zijlstraceacc2c2009-01-16 14:46:40 +0100155void inc_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
156{
157}
158
Gregory Haskinsb07430a2009-01-14 08:55:39 -0500159static inline
Peter Zijlstraceacc2c2009-01-16 14:46:40 +0100160void dec_rt_migration(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
161{
162}
Gregory Haskins917b6272008-12-29 09:39:53 -0500163
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200164#endif /* CONFIG_SMP */
165
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100166static inline int on_rt_rq(struct sched_rt_entity *rt_se)
167{
168 return !list_empty(&rt_se->run_list);
169}
170
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100171#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100172
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100173static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100174{
175 if (!rt_rq->tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100176 return RUNTIME_INF;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100177
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200178 return rt_rq->rt_runtime;
179}
180
181static inline u64 sched_rt_period(struct rt_rq *rt_rq)
182{
183 return ktime_to_ns(rt_rq->tg->rt_bandwidth.rt_period);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100184}
185
Cheng Xuec514c42011-05-14 14:20:02 +0800186typedef struct task_group *rt_rq_iter_t;
187
Yong Zhang1c09ab02011-06-28 10:51:31 +0800188static inline struct task_group *next_task_group(struct task_group *tg)
189{
190 do {
191 tg = list_entry_rcu(tg->list.next,
192 typeof(struct task_group), list);
193 } while (&tg->list != &task_groups && task_group_is_autogroup(tg));
194
195 if (&tg->list == &task_groups)
196 tg = NULL;
197
198 return tg;
199}
200
201#define for_each_rt_rq(rt_rq, iter, rq) \
202 for (iter = container_of(&task_groups, typeof(*iter), list); \
203 (iter = next_task_group(iter)) && \
204 (rt_rq = iter->rt_rq[cpu_of(rq)]);)
Cheng Xuec514c42011-05-14 14:20:02 +0800205
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800206static inline void list_add_leaf_rt_rq(struct rt_rq *rt_rq)
207{
208 list_add_rcu(&rt_rq->leaf_rt_rq_list,
209 &rq_of_rt_rq(rt_rq)->leaf_rt_rq_list);
210}
211
212static inline void list_del_leaf_rt_rq(struct rt_rq *rt_rq)
213{
214 list_del_rcu(&rt_rq->leaf_rt_rq_list);
215}
216
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100217#define for_each_leaf_rt_rq(rt_rq, rq) \
Bharata B Rao80f40ee2008-12-15 11:56:48 +0530218 list_for_each_entry_rcu(rt_rq, &rq->leaf_rt_rq_list, leaf_rt_rq_list)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100219
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100220#define for_each_sched_rt_entity(rt_se) \
221 for (; rt_se; rt_se = rt_se->parent)
222
223static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
224{
225 return rt_se->my_q;
226}
227
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000228static void enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100229static void dequeue_rt_entity(struct sched_rt_entity *rt_se);
230
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100231static void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100232{
Dario Faggiolif6121f42008-10-03 17:40:46 +0200233 struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr;
Yong Zhang74b7eb52010-01-29 14:57:52 +0800234 struct sched_rt_entity *rt_se;
235
Balbir Singh0c3b9162011-03-03 17:04:35 +0530236 int cpu = cpu_of(rq_of_rt_rq(rt_rq));
237
238 rt_se = rt_rq->tg->rt_se[cpu];
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100239
Dario Faggiolif6121f42008-10-03 17:40:46 +0200240 if (rt_rq->rt_nr_running) {
241 if (rt_se && !on_rt_rq(rt_se))
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000242 enqueue_rt_entity(rt_se, false);
Gregory Haskinse864c492008-12-29 09:39:49 -0500243 if (rt_rq->highest_prio.curr < curr->prio)
Peter Zijlstra10203872008-01-25 21:08:32 +0100244 resched_task(curr);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100245 }
246}
247
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100248static void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100249{
Yong Zhang74b7eb52010-01-29 14:57:52 +0800250 struct sched_rt_entity *rt_se;
Balbir Singh0c3b9162011-03-03 17:04:35 +0530251 int cpu = cpu_of(rq_of_rt_rq(rt_rq));
Yong Zhang74b7eb52010-01-29 14:57:52 +0800252
Balbir Singh0c3b9162011-03-03 17:04:35 +0530253 rt_se = rt_rq->tg->rt_se[cpu];
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100254
255 if (rt_se && on_rt_rq(rt_se))
256 dequeue_rt_entity(rt_se);
257}
258
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100259static inline int rt_rq_throttled(struct rt_rq *rt_rq)
260{
261 return rt_rq->rt_throttled && !rt_rq->rt_nr_boosted;
262}
263
264static int rt_se_boosted(struct sched_rt_entity *rt_se)
265{
266 struct rt_rq *rt_rq = group_rt_rq(rt_se);
267 struct task_struct *p;
268
269 if (rt_rq)
270 return !!rt_rq->rt_nr_boosted;
271
272 p = rt_task_of(rt_se);
273 return p->prio != p->normal_prio;
274}
275
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200276#ifdef CONFIG_SMP
Rusty Russellc6c49272008-11-25 02:35:05 +1030277static inline const struct cpumask *sched_rt_period_mask(void)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200278{
279 return cpu_rq(smp_processor_id())->rd->span;
280}
281#else
Rusty Russellc6c49272008-11-25 02:35:05 +1030282static inline const struct cpumask *sched_rt_period_mask(void)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200283{
Rusty Russellc6c49272008-11-25 02:35:05 +1030284 return cpu_online_mask;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200285}
286#endif
287
288static inline
289struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
290{
291 return container_of(rt_b, struct task_group, rt_bandwidth)->rt_rq[cpu];
292}
293
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200294static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
295{
296 return &rt_rq->tg->rt_bandwidth;
297}
298
Dhaval Giani55e12e52008-06-24 23:39:43 +0530299#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100300
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100301static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100302{
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200303 return rt_rq->rt_runtime;
304}
305
306static inline u64 sched_rt_period(struct rt_rq *rt_rq)
307{
308 return ktime_to_ns(def_rt_bandwidth.rt_period);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100309}
310
Cheng Xuec514c42011-05-14 14:20:02 +0800311typedef struct rt_rq *rt_rq_iter_t;
312
313#define for_each_rt_rq(rt_rq, iter, rq) \
314 for ((void) iter, rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
315
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800316static inline void list_add_leaf_rt_rq(struct rt_rq *rt_rq)
317{
318}
319
320static inline void list_del_leaf_rt_rq(struct rt_rq *rt_rq)
321{
322}
323
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100324#define for_each_leaf_rt_rq(rt_rq, rq) \
325 for (rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
326
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100327#define for_each_sched_rt_entity(rt_se) \
328 for (; rt_se; rt_se = NULL)
329
330static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
331{
332 return NULL;
333}
334
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100335static inline void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100336{
John Blackwoodf3ade832008-08-26 15:09:43 -0400337 if (rt_rq->rt_nr_running)
338 resched_task(rq_of_rt_rq(rt_rq)->curr);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100339}
340
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100341static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100342{
343}
344
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100345static inline int rt_rq_throttled(struct rt_rq *rt_rq)
346{
347 return rt_rq->rt_throttled;
348}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200349
Rusty Russellc6c49272008-11-25 02:35:05 +1030350static inline const struct cpumask *sched_rt_period_mask(void)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200351{
Rusty Russellc6c49272008-11-25 02:35:05 +1030352 return cpu_online_mask;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200353}
354
355static inline
356struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
357{
358 return &cpu_rq(cpu)->rt;
359}
360
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200361static inline struct rt_bandwidth *sched_rt_bandwidth(struct rt_rq *rt_rq)
362{
363 return &def_rt_bandwidth;
364}
365
Dhaval Giani55e12e52008-06-24 23:39:43 +0530366#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100367
Peter Zijlstrab79f3832008-06-19 14:22:25 +0200368#ifdef CONFIG_SMP
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200369/*
370 * We ran out of runtime, see if we can borrow some from our neighbours.
371 */
Peter Zijlstrab79f3832008-06-19 14:22:25 +0200372static int do_balance_runtime(struct rt_rq *rt_rq)
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200373{
374 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
375 struct root_domain *rd = cpu_rq(smp_processor_id())->rd;
376 int i, weight, more = 0;
377 u64 rt_period;
378
Rusty Russellc6c49272008-11-25 02:35:05 +1030379 weight = cpumask_weight(rd->span);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200380
Thomas Gleixner0986b112009-11-17 15:32:06 +0100381 raw_spin_lock(&rt_b->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200382 rt_period = ktime_to_ns(rt_b->rt_period);
Rusty Russellc6c49272008-11-25 02:35:05 +1030383 for_each_cpu(i, rd->span) {
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200384 struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
385 s64 diff;
386
387 if (iter == rt_rq)
388 continue;
389
Thomas Gleixner0986b112009-11-17 15:32:06 +0100390 raw_spin_lock(&iter->rt_runtime_lock);
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200391 /*
392 * Either all rqs have inf runtime and there's nothing to steal
393 * or __disable_runtime() below sets a specific rq to inf to
394 * indicate its been disabled and disalow stealing.
395 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200396 if (iter->rt_runtime == RUNTIME_INF)
397 goto next;
398
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200399 /*
400 * From runqueues with spare time, take 1/n part of their
401 * spare time, but no more than our period.
402 */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200403 diff = iter->rt_runtime - iter->rt_time;
404 if (diff > 0) {
Peter Zijlstra58838cf2008-07-24 12:43:13 +0200405 diff = div_u64((u64)diff, weight);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200406 if (rt_rq->rt_runtime + diff > rt_period)
407 diff = rt_period - rt_rq->rt_runtime;
408 iter->rt_runtime -= diff;
409 rt_rq->rt_runtime += diff;
410 more = 1;
411 if (rt_rq->rt_runtime == rt_period) {
Thomas Gleixner0986b112009-11-17 15:32:06 +0100412 raw_spin_unlock(&iter->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200413 break;
414 }
415 }
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200416next:
Thomas Gleixner0986b112009-11-17 15:32:06 +0100417 raw_spin_unlock(&iter->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200418 }
Thomas Gleixner0986b112009-11-17 15:32:06 +0100419 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200420
421 return more;
422}
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200423
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200424/*
425 * Ensure this RQ takes back all the runtime it lend to its neighbours.
426 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200427static void __disable_runtime(struct rq *rq)
428{
429 struct root_domain *rd = rq->rd;
Cheng Xuec514c42011-05-14 14:20:02 +0800430 rt_rq_iter_t iter;
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200431 struct rt_rq *rt_rq;
432
433 if (unlikely(!scheduler_running))
434 return;
435
Cheng Xuec514c42011-05-14 14:20:02 +0800436 for_each_rt_rq(rt_rq, iter, rq) {
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200437 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
438 s64 want;
439 int i;
440
Thomas Gleixner0986b112009-11-17 15:32:06 +0100441 raw_spin_lock(&rt_b->rt_runtime_lock);
442 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200443 /*
444 * Either we're all inf and nobody needs to borrow, or we're
445 * already disabled and thus have nothing to do, or we have
446 * exactly the right amount of runtime to take out.
447 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200448 if (rt_rq->rt_runtime == RUNTIME_INF ||
449 rt_rq->rt_runtime == rt_b->rt_runtime)
450 goto balanced;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100451 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200452
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200453 /*
454 * Calculate the difference between what we started out with
455 * and what we current have, that's the amount of runtime
456 * we lend and now have to reclaim.
457 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200458 want = rt_b->rt_runtime - rt_rq->rt_runtime;
459
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200460 /*
461 * Greedy reclaim, take back as much as we can.
462 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030463 for_each_cpu(i, rd->span) {
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200464 struct rt_rq *iter = sched_rt_period_rt_rq(rt_b, i);
465 s64 diff;
466
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200467 /*
468 * Can't reclaim from ourselves or disabled runqueues.
469 */
Peter Zijlstraf1679d02008-08-14 15:49:00 +0200470 if (iter == rt_rq || iter->rt_runtime == RUNTIME_INF)
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200471 continue;
472
Thomas Gleixner0986b112009-11-17 15:32:06 +0100473 raw_spin_lock(&iter->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200474 if (want > 0) {
475 diff = min_t(s64, iter->rt_runtime, want);
476 iter->rt_runtime -= diff;
477 want -= diff;
478 } else {
479 iter->rt_runtime -= want;
480 want -= want;
481 }
Thomas Gleixner0986b112009-11-17 15:32:06 +0100482 raw_spin_unlock(&iter->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200483
484 if (!want)
485 break;
486 }
487
Thomas Gleixner0986b112009-11-17 15:32:06 +0100488 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200489 /*
490 * We cannot be left wanting - that would mean some runtime
491 * leaked out of the system.
492 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200493 BUG_ON(want);
494balanced:
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200495 /*
496 * Disable all the borrow logic by pretending we have inf
497 * runtime - in which case borrowing doesn't make sense.
498 */
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200499 rt_rq->rt_runtime = RUNTIME_INF;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100500 raw_spin_unlock(&rt_rq->rt_runtime_lock);
501 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200502 }
503}
504
505static void disable_runtime(struct rq *rq)
506{
507 unsigned long flags;
508
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100509 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200510 __disable_runtime(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100511 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200512}
513
514static void __enable_runtime(struct rq *rq)
515{
Cheng Xuec514c42011-05-14 14:20:02 +0800516 rt_rq_iter_t iter;
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200517 struct rt_rq *rt_rq;
518
519 if (unlikely(!scheduler_running))
520 return;
521
Peter Zijlstra78333cd2008-09-23 15:33:43 +0200522 /*
523 * Reset each runqueue's bandwidth settings
524 */
Cheng Xuec514c42011-05-14 14:20:02 +0800525 for_each_rt_rq(rt_rq, iter, rq) {
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200526 struct rt_bandwidth *rt_b = sched_rt_bandwidth(rt_rq);
527
Thomas Gleixner0986b112009-11-17 15:32:06 +0100528 raw_spin_lock(&rt_b->rt_runtime_lock);
529 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200530 rt_rq->rt_runtime = rt_b->rt_runtime;
531 rt_rq->rt_time = 0;
Zhang, Yanminbaf25732008-09-09 11:26:33 +0800532 rt_rq->rt_throttled = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100533 raw_spin_unlock(&rt_rq->rt_runtime_lock);
534 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200535 }
536}
537
538static void enable_runtime(struct rq *rq)
539{
540 unsigned long flags;
541
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100542 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200543 __enable_runtime(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100544 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra7def2be2008-06-05 14:49:58 +0200545}
546
Peter Zijlstraeff65492008-06-19 14:22:26 +0200547static int balance_runtime(struct rt_rq *rt_rq)
548{
549 int more = 0;
550
551 if (rt_rq->rt_time > rt_rq->rt_runtime) {
Thomas Gleixner0986b112009-11-17 15:32:06 +0100552 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraeff65492008-06-19 14:22:26 +0200553 more = do_balance_runtime(rt_rq);
Thomas Gleixner0986b112009-11-17 15:32:06 +0100554 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraeff65492008-06-19 14:22:26 +0200555 }
556
557 return more;
558}
Dhaval Giani55e12e52008-06-24 23:39:43 +0530559#else /* !CONFIG_SMP */
Peter Zijlstraeff65492008-06-19 14:22:26 +0200560static inline int balance_runtime(struct rt_rq *rt_rq)
561{
562 return 0;
563}
Dhaval Giani55e12e52008-06-24 23:39:43 +0530564#endif /* CONFIG_SMP */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100565
566static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun)
567{
568 int i, idle = 1;
Rusty Russellc6c49272008-11-25 02:35:05 +1030569 const struct cpumask *span;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200570
Peter Zijlstra0b148fa2008-08-19 12:33:04 +0200571 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200572 return 1;
573
574 span = sched_rt_period_mask();
Rusty Russellc6c49272008-11-25 02:35:05 +1030575 for_each_cpu(i, span) {
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200576 int enqueue = 0;
577 struct rt_rq *rt_rq = sched_rt_period_rt_rq(rt_b, i);
578 struct rq *rq = rq_of_rt_rq(rt_rq);
579
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100580 raw_spin_lock(&rq->lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200581 if (rt_rq->rt_time) {
582 u64 runtime;
583
Thomas Gleixner0986b112009-11-17 15:32:06 +0100584 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraeff65492008-06-19 14:22:26 +0200585 if (rt_rq->rt_throttled)
586 balance_runtime(rt_rq);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200587 runtime = rt_rq->rt_runtime;
588 rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime);
589 if (rt_rq->rt_throttled && rt_rq->rt_time < runtime) {
590 rt_rq->rt_throttled = 0;
591 enqueue = 1;
Mike Galbraith61eadef2011-04-29 08:36:50 +0200592
593 /*
594 * Force a clock update if the CPU was idle,
595 * lest wakeup -> unthrottle time accumulate.
596 */
597 if (rt_rq->rt_nr_running && rq->curr == rq->idle)
598 rq->skip_clock_update = -1;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200599 }
600 if (rt_rq->rt_time || rt_rq->rt_nr_running)
601 idle = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +0100602 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Balbir Singh0c3b9162011-03-03 17:04:35 +0530603 } else if (rt_rq->rt_nr_running) {
Peter Zijlstra8a8cde12008-06-19 14:22:28 +0200604 idle = 0;
Balbir Singh0c3b9162011-03-03 17:04:35 +0530605 if (!rt_rq_throttled(rt_rq))
606 enqueue = 1;
607 }
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200608
609 if (enqueue)
610 sched_rt_rq_enqueue(rt_rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100611 raw_spin_unlock(&rq->lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200612 }
613
614 return idle;
615}
616
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100617static inline int rt_se_prio(struct sched_rt_entity *rt_se)
618{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100619#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100620 struct rt_rq *rt_rq = group_rt_rq(rt_se);
621
622 if (rt_rq)
Gregory Haskinse864c492008-12-29 09:39:49 -0500623 return rt_rq->highest_prio.curr;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100624#endif
625
626 return rt_task_of(rt_se)->prio;
627}
628
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100629static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100630{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100631 u64 runtime = sched_rt_runtime(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100632
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100633 if (rt_rq->rt_throttled)
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100634 return rt_rq_throttled(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100635
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200636 if (sched_rt_runtime(rt_rq) >= sched_rt_period(rt_rq))
637 return 0;
638
Peter Zijlstrab79f3832008-06-19 14:22:25 +0200639 balance_runtime(rt_rq);
640 runtime = sched_rt_runtime(rt_rq);
641 if (runtime == RUNTIME_INF)
642 return 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200643
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100644 if (rt_rq->rt_time > runtime) {
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100645 rt_rq->rt_throttled = 1;
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100646 if (rt_rq_throttled(rt_rq)) {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100647 sched_rt_rq_dequeue(rt_rq);
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100648 return 1;
649 }
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100650 }
651
652 return 0;
653}
654
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200655/*
656 * Update the current task's runtime statistics. Skip current tasks that
657 * are not in our scheduling class.
658 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200659static void update_curr_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200660{
661 struct task_struct *curr = rq->curr;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100662 struct sched_rt_entity *rt_se = &curr->rt;
663 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200664 u64 delta_exec;
665
Peter Zijlstra06c3bc62011-02-02 13:19:48 +0100666 if (curr->sched_class != &rt_sched_class)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200667 return;
668
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700669 delta_exec = rq->clock_task - curr->se.exec_start;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200670 if (unlikely((s64)delta_exec < 0))
671 delta_exec = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200672
Lucas De Marchi41acab82010-03-10 23:37:45 -0300673 schedstat_set(curr->se.statistics.exec_max, max(curr->se.statistics.exec_max, delta_exec));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200674
675 curr->se.sum_exec_runtime += delta_exec;
Frank Mayharf06febc2008-09-12 09:54:39 -0700676 account_group_exec_runtime(curr, delta_exec);
677
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700678 curr->se.exec_start = rq->clock_task;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100679 cpuacct_charge(curr, delta_exec);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100680
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200681 sched_rt_avg_update(rq, delta_exec);
682
Peter Zijlstra0b148fa2008-08-19 12:33:04 +0200683 if (!rt_bandwidth_enabled())
684 return;
685
Dhaval Giani354d60c2008-04-19 19:44:59 +0200686 for_each_sched_rt_entity(rt_se) {
687 rt_rq = rt_rq_of_se(rt_se);
688
Peter Zijlstracc2991c2008-08-19 12:33:03 +0200689 if (sched_rt_runtime(rt_rq) != RUNTIME_INF) {
Thomas Gleixner0986b112009-11-17 15:32:06 +0100690 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstracc2991c2008-08-19 12:33:03 +0200691 rt_rq->rt_time += delta_exec;
692 if (sched_rt_runtime_exceeded(rt_rq))
693 resched_task(curr);
Thomas Gleixner0986b112009-11-17 15:32:06 +0100694 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstracc2991c2008-08-19 12:33:03 +0200695 }
Dhaval Giani354d60c2008-04-19 19:44:59 +0200696 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200697}
698
Gregory Haskins398a1532009-01-14 09:10:04 -0500699#if defined CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500700
701static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu);
702
703static inline int next_prio(struct rq *rq)
Steven Rostedt63489e42008-01-25 21:08:03 +0100704{
Gregory Haskinse864c492008-12-29 09:39:49 -0500705 struct task_struct *next = pick_next_highest_task_rt(rq, rq->cpu);
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400706
Hillf Danton67d95532011-06-16 21:55:18 -0400707 if (next)
Gregory Haskinse864c492008-12-29 09:39:49 -0500708 return next->prio;
709 else
710 return MAX_RT_PRIO;
711}
Gregory Haskinse864c492008-12-29 09:39:49 -0500712
Gregory Haskins398a1532009-01-14 09:10:04 -0500713static void
714inc_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200715{
Gregory Haskins4d984272008-12-29 09:39:49 -0500716 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins4d984272008-12-29 09:39:49 -0500717
Gregory Haskins398a1532009-01-14 09:10:04 -0500718 if (prio < prev_prio) {
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100719
Gregory Haskinse864c492008-12-29 09:39:49 -0500720 /*
721 * If the new task is higher in priority than anything on the
Gregory Haskins398a1532009-01-14 09:10:04 -0500722 * run-queue, we know that the previous high becomes our
723 * next-highest.
Gregory Haskinse864c492008-12-29 09:39:49 -0500724 */
Gregory Haskins398a1532009-01-14 09:10:04 -0500725 rt_rq->highest_prio.next = prev_prio;
726
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400727 if (rq->online)
Gregory Haskins4d984272008-12-29 09:39:49 -0500728 cpupri_set(&rq->rd->cpupri, rq->cpu, prio);
Ingo Molnar1100ac92008-06-05 12:25:37 +0200729
Gregory Haskinse864c492008-12-29 09:39:49 -0500730 } else if (prio == rt_rq->highest_prio.curr)
731 /*
732 * If the next task is equal in priority to the highest on
733 * the run-queue, then we implicitly know that the next highest
734 * task cannot be any lower than current
735 */
736 rt_rq->highest_prio.next = prio;
737 else if (prio < rt_rq->highest_prio.next)
738 /*
739 * Otherwise, we need to recompute next-highest
740 */
741 rt_rq->highest_prio.next = next_prio(rq);
Steven Rostedt63489e42008-01-25 21:08:03 +0100742}
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100743
Gregory Haskins398a1532009-01-14 09:10:04 -0500744static void
745dec_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio)
Steven Rostedt63489e42008-01-25 21:08:03 +0100746{
Gregory Haskins4d984272008-12-29 09:39:49 -0500747 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200748
Gregory Haskins398a1532009-01-14 09:10:04 -0500749 if (rt_rq->rt_nr_running && (prio <= rt_rq->highest_prio.next))
750 rt_rq->highest_prio.next = next_prio(rq);
751
752 if (rq->online && rt_rq->highest_prio.curr != prev_prio)
753 cpupri_set(&rq->rd->cpupri, rq->cpu, rt_rq->highest_prio.curr);
754}
755
756#else /* CONFIG_SMP */
757
758static inline
759void inc_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio) {}
760static inline
761void dec_rt_prio_smp(struct rt_rq *rt_rq, int prio, int prev_prio) {}
762
763#endif /* CONFIG_SMP */
764
Steven Rostedt63489e42008-01-25 21:08:03 +0100765#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskins398a1532009-01-14 09:10:04 -0500766static void
767inc_rt_prio(struct rt_rq *rt_rq, int prio)
768{
769 int prev_prio = rt_rq->highest_prio.curr;
Steven Rostedt63489e42008-01-25 21:08:03 +0100770
Gregory Haskins398a1532009-01-14 09:10:04 -0500771 if (prio < prev_prio)
772 rt_rq->highest_prio.curr = prio;
773
774 inc_rt_prio_smp(rt_rq, prio, prev_prio);
775}
776
777static void
778dec_rt_prio(struct rt_rq *rt_rq, int prio)
779{
780 int prev_prio = rt_rq->highest_prio.curr;
781
782 if (rt_rq->rt_nr_running) {
783
784 WARN_ON(prio < prev_prio);
Gregory Haskinse864c492008-12-29 09:39:49 -0500785
786 /*
Gregory Haskins398a1532009-01-14 09:10:04 -0500787 * This may have been our highest task, and therefore
788 * we may have some recomputation to do
Gregory Haskinse864c492008-12-29 09:39:49 -0500789 */
Gregory Haskins398a1532009-01-14 09:10:04 -0500790 if (prio == prev_prio) {
Gregory Haskinse864c492008-12-29 09:39:49 -0500791 struct rt_prio_array *array = &rt_rq->active;
792
793 rt_rq->highest_prio.curr =
Steven Rostedt764a9d62008-01-25 21:08:04 +0100794 sched_find_first_bit(array->bitmap);
Gregory Haskinse864c492008-12-29 09:39:49 -0500795 }
796
Steven Rostedt764a9d62008-01-25 21:08:04 +0100797 } else
Gregory Haskinse864c492008-12-29 09:39:49 -0500798 rt_rq->highest_prio.curr = MAX_RT_PRIO;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100799
Gregory Haskins398a1532009-01-14 09:10:04 -0500800 dec_rt_prio_smp(rt_rq, prio, prev_prio);
801}
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400802
Gregory Haskins398a1532009-01-14 09:10:04 -0500803#else
804
805static inline void inc_rt_prio(struct rt_rq *rt_rq, int prio) {}
806static inline void dec_rt_prio(struct rt_rq *rt_rq, int prio) {}
807
808#endif /* CONFIG_SMP || CONFIG_RT_GROUP_SCHED */
809
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100810#ifdef CONFIG_RT_GROUP_SCHED
Gregory Haskins398a1532009-01-14 09:10:04 -0500811
812static void
813inc_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
814{
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100815 if (rt_se_boosted(rt_se))
Steven Rostedt764a9d62008-01-25 21:08:04 +0100816 rt_rq->rt_nr_boosted++;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100817
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100818 if (rt_rq->tg)
819 start_rt_bandwidth(&rt_rq->tg->rt_bandwidth);
Gregory Haskins398a1532009-01-14 09:10:04 -0500820}
821
822static void
823dec_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
824{
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100825 if (rt_se_boosted(rt_se))
826 rt_rq->rt_nr_boosted--;
827
828 WARN_ON(!rt_rq->rt_nr_running && rt_rq->rt_nr_boosted);
Gregory Haskins398a1532009-01-14 09:10:04 -0500829}
830
831#else /* CONFIG_RT_GROUP_SCHED */
832
833static void
834inc_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
835{
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200836 start_rt_bandwidth(&def_rt_bandwidth);
Gregory Haskins398a1532009-01-14 09:10:04 -0500837}
838
839static inline
840void dec_rt_group(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq) {}
841
842#endif /* CONFIG_RT_GROUP_SCHED */
843
844static inline
845void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
846{
847 int prio = rt_se_prio(rt_se);
848
849 WARN_ON(!rt_prio(prio));
850 rt_rq->rt_nr_running++;
851
852 inc_rt_prio(rt_rq, prio);
853 inc_rt_migration(rt_se, rt_rq);
854 inc_rt_group(rt_se, rt_rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200855}
856
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100857static inline
858void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
859{
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200860 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100861 WARN_ON(!rt_rq->rt_nr_running);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200862 rt_rq->rt_nr_running--;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200863
Gregory Haskins398a1532009-01-14 09:10:04 -0500864 dec_rt_prio(rt_rq, rt_se_prio(rt_se));
865 dec_rt_migration(rt_se, rt_rq);
866 dec_rt_group(rt_se, rt_rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200867}
868
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000869static void __enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200870{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100871 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
872 struct rt_prio_array *array = &rt_rq->active;
873 struct rt_rq *group_rq = group_rt_rq(rt_se);
Dmitry Adamushko20b63312008-06-11 00:58:30 +0200874 struct list_head *queue = array->queue + rt_se_prio(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200875
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200876 /*
877 * Don't enqueue the group if its throttled, or when empty.
878 * The latter is a consequence of the former when a child group
879 * get throttled and the current group doesn't have any other
880 * active members.
881 */
882 if (group_rq && (rt_rq_throttled(group_rq) || !group_rq->rt_nr_running))
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100883 return;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200884
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800885 if (!rt_rq->rt_nr_running)
886 list_add_leaf_rt_rq(rt_rq);
887
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000888 if (head)
889 list_add(&rt_se->run_list, queue);
890 else
891 list_add_tail(&rt_se->run_list, queue);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100892 __set_bit(rt_se_prio(rt_se), array->bitmap);
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +0100893
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100894 inc_rt_tasks(rt_se, rt_rq);
895}
896
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200897static void __dequeue_rt_entity(struct sched_rt_entity *rt_se)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100898{
899 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
900 struct rt_prio_array *array = &rt_rq->active;
901
902 list_del_init(&rt_se->run_list);
903 if (list_empty(array->queue + rt_se_prio(rt_se)))
904 __clear_bit(rt_se_prio(rt_se), array->bitmap);
905
906 dec_rt_tasks(rt_se, rt_rq);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800907 if (!rt_rq->rt_nr_running)
908 list_del_leaf_rt_rq(rt_rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100909}
910
911/*
912 * Because the prio of an upper entry depends on the lower
913 * entries, we must remove entries top - down.
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100914 */
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200915static void dequeue_rt_stack(struct sched_rt_entity *rt_se)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100916{
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200917 struct sched_rt_entity *back = NULL;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100918
Peter Zijlstra58d6c2d2008-04-19 19:45:00 +0200919 for_each_sched_rt_entity(rt_se) {
920 rt_se->back = back;
921 back = rt_se;
922 }
923
924 for (rt_se = back; rt_se; rt_se = rt_se->back) {
925 if (on_rt_rq(rt_se))
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200926 __dequeue_rt_entity(rt_se);
927 }
928}
929
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000930static void enqueue_rt_entity(struct sched_rt_entity *rt_se, bool head)
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200931{
932 dequeue_rt_stack(rt_se);
933 for_each_sched_rt_entity(rt_se)
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000934 __enqueue_rt_entity(rt_se, head);
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200935}
936
937static void dequeue_rt_entity(struct sched_rt_entity *rt_se)
938{
939 dequeue_rt_stack(rt_se);
940
941 for_each_sched_rt_entity(rt_se) {
942 struct rt_rq *rt_rq = group_rt_rq(rt_se);
943
944 if (rt_rq && rt_rq->rt_nr_running)
Thomas Gleixner37dad3f2010-01-20 20:59:01 +0000945 __enqueue_rt_entity(rt_se, false);
Peter Zijlstra58d6c2d2008-04-19 19:45:00 +0200946 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200947}
948
949/*
950 * Adding/removing a task to/from a priority array:
951 */
Thomas Gleixnerea87bb72010-01-20 20:58:57 +0000952static void
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100953enqueue_task_rt(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100954{
955 struct sched_rt_entity *rt_se = &p->rt;
956
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100957 if (flags & ENQUEUE_WAKEUP)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100958 rt_se->timeout = 0;
959
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100960 enqueue_rt_entity(rt_se, flags & ENQUEUE_HEAD);
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200961
Gregory Haskins917b6272008-12-29 09:39:53 -0500962 if (!task_current(rq, p) && p->rt.nr_cpus_allowed > 1)
963 enqueue_pushable_task(rq, p);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100964}
965
Peter Zijlstra371fd7e2010-03-24 16:38:48 +0100966static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200967{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100968 struct sched_rt_entity *rt_se = &p->rt;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200969
970 update_curr_rt(rq);
Peter Zijlstraad2a3f12008-06-19 09:06:57 +0200971 dequeue_rt_entity(rt_se);
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200972
Gregory Haskins917b6272008-12-29 09:39:53 -0500973 dequeue_pushable_task(rq, p);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200974}
975
976/*
977 * Put task to the end of the run list without the overhead of dequeue
978 * followed by enqueue.
979 */
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +0200980static void
981requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se, int head)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200982{
Ingo Molnar1cdad712008-06-19 09:09:15 +0200983 if (on_rt_rq(rt_se)) {
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +0200984 struct rt_prio_array *array = &rt_rq->active;
985 struct list_head *queue = array->queue + rt_se_prio(rt_se);
986
987 if (head)
988 list_move(&rt_se->run_list, queue);
989 else
990 list_move_tail(&rt_se->run_list, queue);
Ingo Molnar1cdad712008-06-19 09:09:15 +0200991 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200992}
993
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +0200994static void requeue_task_rt(struct rq *rq, struct task_struct *p, int head)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100995{
996 struct sched_rt_entity *rt_se = &p->rt;
997 struct rt_rq *rt_rq;
998
999 for_each_sched_rt_entity(rt_se) {
1000 rt_rq = rt_rq_of_se(rt_se);
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001001 requeue_rt_entity(rt_rq, rt_se, head);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001002 }
1003}
1004
1005static void yield_task_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001006{
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001007 requeue_task_rt(rq, rq->curr, 0);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001008}
1009
Gregory Haskinse7693a32008-01-25 21:08:09 +01001010#ifdef CONFIG_SMP
Gregory Haskins318e0892008-01-25 21:08:10 +01001011static int find_lowest_rq(struct task_struct *task);
1012
Peter Zijlstra0017d732010-03-24 18:34:10 +01001013static int
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001014select_task_rq_rt(struct task_struct *p, int sd_flag, int flags)
Gregory Haskinse7693a32008-01-25 21:08:09 +01001015{
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001016 struct task_struct *curr;
1017 struct rq *rq;
1018 int cpu;
1019
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001020 cpu = task_cpu(p);
Steven Rostedtc37495f2011-06-16 21:55:22 -04001021
1022 /* For anything but wake ups, just return the task_cpu */
1023 if (sd_flag != SD_BALANCE_WAKE && sd_flag != SD_BALANCE_FORK)
1024 goto out;
1025
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001026 rq = cpu_rq(cpu);
1027
1028 rcu_read_lock();
1029 curr = ACCESS_ONCE(rq->curr); /* unlocked access */
1030
Gregory Haskins318e0892008-01-25 21:08:10 +01001031 /*
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001032 * If the current task on @p's runqueue is an RT task, then
Steven Rostedte1f47d82008-01-25 21:08:12 +01001033 * try to see if we can wake this RT task up on another
1034 * runqueue. Otherwise simply start this RT task
1035 * on its current runqueue.
1036 *
Steven Rostedt43fa5462010-09-20 22:40:03 -04001037 * We want to avoid overloading runqueues. If the woken
1038 * task is a higher priority, then it will stay on this CPU
1039 * and the lower prio task should be moved to another CPU.
1040 * Even though this will probably make the lower prio task
1041 * lose its cache, we do not want to bounce a higher task
1042 * around just because it gave up its CPU, perhaps for a
1043 * lock?
1044 *
1045 * For equal prio tasks, we just let the scheduler sort it out.
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001046 *
Gregory Haskins318e0892008-01-25 21:08:10 +01001047 * Otherwise, just let it ride on the affined RQ and the
1048 * post-schedule router will push the preempted task away
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001049 *
1050 * This test is optimistic, if we get it wrong the load-balancer
1051 * will have to sort it out.
Gregory Haskins318e0892008-01-25 21:08:10 +01001052 */
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001053 if (curr && unlikely(rt_task(curr)) &&
1054 (curr->rt.nr_cpus_allowed < 2 ||
1055 curr->prio < p->prio) &&
1056 (p->rt.nr_cpus_allowed > 1)) {
1057 int target = find_lowest_rq(p);
1058
1059 if (target != -1)
1060 cpu = target;
1061 }
1062 rcu_read_unlock();
1063
Steven Rostedtc37495f2011-06-16 21:55:22 -04001064out:
Peter Zijlstra7608dec2011-04-05 17:23:46 +02001065 return cpu;
Gregory Haskinse7693a32008-01-25 21:08:09 +01001066}
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001067
1068static void check_preempt_equal_prio(struct rq *rq, struct task_struct *p)
1069{
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001070 if (rq->curr->rt.nr_cpus_allowed == 1)
1071 return;
1072
Rusty Russell13b8bd02009-03-25 15:01:22 +10301073 if (p->rt.nr_cpus_allowed != 1
1074 && cpupri_find(&rq->rd->cpupri, p, NULL))
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001075 return;
1076
Rusty Russell13b8bd02009-03-25 15:01:22 +10301077 if (!cpupri_find(&rq->rd->cpupri, rq->curr, NULL))
1078 return;
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001079
1080 /*
1081 * There appears to be other cpus that can accept
1082 * current and none to run 'p', so lets reschedule
1083 * to try and push current away:
1084 */
1085 requeue_task_rt(rq, p, 1);
1086 resched_task(rq->curr);
1087}
1088
Gregory Haskinse7693a32008-01-25 21:08:09 +01001089#endif /* CONFIG_SMP */
1090
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001091/*
1092 * Preempt the current task with a newly woken task if needed:
1093 */
Peter Zijlstra7d478722009-09-14 19:55:44 +02001094static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001095{
Gregory Haskins45c01e82008-05-12 21:20:41 +02001096 if (p->prio < rq->curr->prio) {
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001097 resched_task(rq->curr);
Gregory Haskins45c01e82008-05-12 21:20:41 +02001098 return;
1099 }
1100
1101#ifdef CONFIG_SMP
1102 /*
1103 * If:
1104 *
1105 * - the newly woken task is of equal priority to the current task
1106 * - the newly woken task is non-migratable while current is migratable
1107 * - current will be preempted on the next reschedule
1108 *
1109 * we should check to see if current can readily move to a different
1110 * cpu. If so, we will reschedule to allow the push logic to try
1111 * to move current somewhere else, making room for our non-migratable
1112 * task.
1113 */
Hillf Danton8dd0de82011-06-14 18:36:24 -04001114 if (p->prio == rq->curr->prio && !test_tsk_need_resched(rq->curr))
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001115 check_preempt_equal_prio(rq, p);
Gregory Haskins45c01e82008-05-12 21:20:41 +02001116#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001117}
1118
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001119static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq,
1120 struct rt_rq *rt_rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001121{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001122 struct rt_prio_array *array = &rt_rq->active;
1123 struct sched_rt_entity *next = NULL;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001124 struct list_head *queue;
1125 int idx;
1126
1127 idx = sched_find_first_bit(array->bitmap);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001128 BUG_ON(idx >= MAX_RT_PRIO);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001129
1130 queue = array->queue + idx;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001131 next = list_entry(queue->next, struct sched_rt_entity, run_list);
Dmitry Adamushko326587b2008-01-25 21:08:34 +01001132
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001133 return next;
1134}
1135
Gregory Haskins917b6272008-12-29 09:39:53 -05001136static struct task_struct *_pick_next_task_rt(struct rq *rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001137{
1138 struct sched_rt_entity *rt_se;
1139 struct task_struct *p;
1140 struct rt_rq *rt_rq;
1141
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001142 rt_rq = &rq->rt;
1143
Steven Rostedt8e54a2c2010-12-06 11:28:30 -05001144 if (!rt_rq->rt_nr_running)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001145 return NULL;
1146
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01001147 if (rt_rq_throttled(rt_rq))
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001148 return NULL;
1149
1150 do {
1151 rt_se = pick_next_rt_entity(rq, rt_rq);
Dmitry Adamushko326587b2008-01-25 21:08:34 +01001152 BUG_ON(!rt_se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001153 rt_rq = group_rt_rq(rt_se);
1154 } while (rt_rq);
1155
1156 p = rt_task_of(rt_se);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001157 p->se.exec_start = rq->clock_task;
Gregory Haskins917b6272008-12-29 09:39:53 -05001158
1159 return p;
1160}
1161
1162static struct task_struct *pick_next_task_rt(struct rq *rq)
1163{
1164 struct task_struct *p = _pick_next_task_rt(rq);
1165
1166 /* The running task is never eligible for pushing */
1167 if (p)
1168 dequeue_pushable_task(rq, p);
1169
Ingo Molnarbcf08df2008-04-19 12:11:10 +02001170#ifdef CONFIG_SMP
Gregory Haskins3f029d32009-07-29 11:08:47 -04001171 /*
1172 * We detect this state here so that we can avoid taking the RQ
1173 * lock again later if there is no need to push
1174 */
1175 rq->post_schedule = has_pushable_tasks(rq);
Ingo Molnarbcf08df2008-04-19 12:11:10 +02001176#endif
Gregory Haskins3f029d32009-07-29 11:08:47 -04001177
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001178 return p;
1179}
1180
Ingo Molnar31ee5292007-08-09 11:16:49 +02001181static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001182{
Ingo Molnarf1e14ef2007-08-09 11:16:48 +02001183 update_curr_rt(rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05001184
1185 /*
1186 * The previous task needs to be made eligible for pushing
1187 * if it is still active
1188 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001189 if (on_rt_rq(&p->rt) && p->rt.nr_cpus_allowed > 1)
Gregory Haskins917b6272008-12-29 09:39:53 -05001190 enqueue_pushable_task(rq, p);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001191}
1192
Peter Williams681f3e62007-10-24 18:23:51 +02001193#ifdef CONFIG_SMP
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001194
Steven Rostedte8fa1362008-01-25 21:08:05 +01001195/* Only try algorithms three times */
1196#define RT_MAX_TRIES 3
1197
Steven Rostedte8fa1362008-01-25 21:08:05 +01001198static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep);
1199
Steven Rostedtf65eda42008-01-25 21:08:07 +01001200static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
1201{
1202 if (!task_running(rq, p) &&
Rusty Russell96f874e2008-11-25 02:35:14 +10301203 (cpu < 0 || cpumask_test_cpu(cpu, &p->cpus_allowed)) &&
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001204 (p->rt.nr_cpus_allowed > 1))
Steven Rostedtf65eda42008-01-25 21:08:07 +01001205 return 1;
1206 return 0;
1207}
1208
Steven Rostedte8fa1362008-01-25 21:08:05 +01001209/* Return the second highest RT task, NULL otherwise */
Ingo Molnar79064fb2008-01-25 21:08:14 +01001210static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001211{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001212 struct task_struct *next = NULL;
1213 struct sched_rt_entity *rt_se;
1214 struct rt_prio_array *array;
1215 struct rt_rq *rt_rq;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001216 int idx;
1217
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001218 for_each_leaf_rt_rq(rt_rq, rq) {
1219 array = &rt_rq->active;
1220 idx = sched_find_first_bit(array->bitmap);
Peter Zijlstra49246272010-10-17 21:46:10 +02001221next_idx:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001222 if (idx >= MAX_RT_PRIO)
1223 continue;
1224 if (next && next->prio < idx)
1225 continue;
1226 list_for_each_entry(rt_se, array->queue + idx, run_list) {
Peter Zijlstra3d074672010-03-10 17:07:24 +01001227 struct task_struct *p;
1228
1229 if (!rt_entity_is_task(rt_se))
1230 continue;
1231
1232 p = rt_task_of(rt_se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001233 if (pick_rt_task(rq, p, cpu)) {
1234 next = p;
1235 break;
1236 }
1237 }
1238 if (!next) {
1239 idx = find_next_bit(array->bitmap, MAX_RT_PRIO, idx+1);
1240 goto next_idx;
1241 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01001242 }
1243
Steven Rostedte8fa1362008-01-25 21:08:05 +01001244 return next;
1245}
1246
Rusty Russell0e3900e2008-11-25 02:35:13 +10301247static DEFINE_PER_CPU(cpumask_var_t, local_cpu_mask);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001248
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001249static int find_lowest_rq(struct task_struct *task)
1250{
1251 struct sched_domain *sd;
Rusty Russell96f874e2008-11-25 02:35:14 +10301252 struct cpumask *lowest_mask = __get_cpu_var(local_cpu_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001253 int this_cpu = smp_processor_id();
1254 int cpu = task_cpu(task);
1255
Steven Rostedt0da938c2011-06-14 18:36:25 -04001256 /* Make sure the mask is initialized first */
1257 if (unlikely(!lowest_mask))
1258 return -1;
1259
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001260 if (task->rt.nr_cpus_allowed == 1)
1261 return -1; /* No other targets possible */
1262
1263 if (!cpupri_find(&task_rq(task)->rd->cpupri, task, lowest_mask))
Gregory Haskins06f90db2008-01-25 21:08:13 +01001264 return -1; /* No targets found */
1265
1266 /*
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001267 * At this point we have built a mask of cpus representing the
1268 * lowest priority tasks in the system. Now we want to elect
1269 * the best one based on our affinity and topology.
1270 *
1271 * We prioritize the last cpu that the task executed on since
1272 * it is most likely cache-hot in that location.
1273 */
Rusty Russell96f874e2008-11-25 02:35:14 +10301274 if (cpumask_test_cpu(cpu, lowest_mask))
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001275 return cpu;
1276
1277 /*
1278 * Otherwise, we consult the sched_domains span maps to figure
1279 * out which cpu is logically closest to our hot cache data.
1280 */
Rusty Russelle2c88062009-11-03 14:53:15 +10301281 if (!cpumask_test_cpu(this_cpu, lowest_mask))
1282 this_cpu = -1; /* Skip this_cpu opt if not among lowest */
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001283
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001284 rcu_read_lock();
Rusty Russelle2c88062009-11-03 14:53:15 +10301285 for_each_domain(cpu, sd) {
1286 if (sd->flags & SD_WAKE_AFFINE) {
1287 int best_cpu;
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001288
Rusty Russelle2c88062009-11-03 14:53:15 +10301289 /*
1290 * "this_cpu" is cheaper to preempt than a
1291 * remote processor.
1292 */
1293 if (this_cpu != -1 &&
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001294 cpumask_test_cpu(this_cpu, sched_domain_span(sd))) {
1295 rcu_read_unlock();
Rusty Russelle2c88062009-11-03 14:53:15 +10301296 return this_cpu;
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001297 }
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001298
Rusty Russelle2c88062009-11-03 14:53:15 +10301299 best_cpu = cpumask_first_and(lowest_mask,
1300 sched_domain_span(sd));
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001301 if (best_cpu < nr_cpu_ids) {
1302 rcu_read_unlock();
Rusty Russelle2c88062009-11-03 14:53:15 +10301303 return best_cpu;
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001304 }
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001305 }
1306 }
Xiaotian Fengcd4ae6a2011-04-22 18:53:54 +08001307 rcu_read_unlock();
Gregory Haskins6e1254d2008-01-25 21:08:11 +01001308
1309 /*
1310 * And finally, if there were no matches within the domains
1311 * just give the caller *something* to work with from the compatible
1312 * locations.
1313 */
Rusty Russelle2c88062009-11-03 14:53:15 +10301314 if (this_cpu != -1)
1315 return this_cpu;
1316
1317 cpu = cpumask_any(lowest_mask);
1318 if (cpu < nr_cpu_ids)
1319 return cpu;
1320 return -1;
Gregory Haskins07b40322008-01-25 21:08:10 +01001321}
1322
Steven Rostedte8fa1362008-01-25 21:08:05 +01001323/* Will lock the rq it finds */
Ingo Molnar4df64c02008-01-25 21:08:15 +01001324static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001325{
1326 struct rq *lowest_rq = NULL;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001327 int tries;
Ingo Molnar4df64c02008-01-25 21:08:15 +01001328 int cpu;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001329
1330 for (tries = 0; tries < RT_MAX_TRIES; tries++) {
Gregory Haskins07b40322008-01-25 21:08:10 +01001331 cpu = find_lowest_rq(task);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001332
Gregory Haskins2de0b462008-01-25 21:08:10 +01001333 if ((cpu == -1) || (cpu == rq->cpu))
Steven Rostedte8fa1362008-01-25 21:08:05 +01001334 break;
1335
Gregory Haskins07b40322008-01-25 21:08:10 +01001336 lowest_rq = cpu_rq(cpu);
1337
Steven Rostedte8fa1362008-01-25 21:08:05 +01001338 /* if the prio of this runqueue changed, try again */
Gregory Haskins07b40322008-01-25 21:08:10 +01001339 if (double_lock_balance(rq, lowest_rq)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +01001340 /*
1341 * We had to unlock the run queue. In
1342 * the mean time, task could have
1343 * migrated already or had its affinity changed.
1344 * Also make sure that it wasn't scheduled on its rq.
1345 */
Gregory Haskins07b40322008-01-25 21:08:10 +01001346 if (unlikely(task_rq(task) != rq ||
Rusty Russell96f874e2008-11-25 02:35:14 +10301347 !cpumask_test_cpu(lowest_rq->cpu,
1348 &task->cpus_allowed) ||
Gregory Haskins07b40322008-01-25 21:08:10 +01001349 task_running(rq, task) ||
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001350 !task->on_rq)) {
Ingo Molnar4df64c02008-01-25 21:08:15 +01001351
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001352 raw_spin_unlock(&lowest_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001353 lowest_rq = NULL;
1354 break;
1355 }
1356 }
1357
1358 /* If this rq is still suitable use it. */
Gregory Haskinse864c492008-12-29 09:39:49 -05001359 if (lowest_rq->rt.highest_prio.curr > task->prio)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001360 break;
1361
1362 /* try again */
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02001363 double_unlock_balance(rq, lowest_rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001364 lowest_rq = NULL;
1365 }
1366
1367 return lowest_rq;
1368}
1369
Gregory Haskins917b6272008-12-29 09:39:53 -05001370static struct task_struct *pick_next_pushable_task(struct rq *rq)
1371{
1372 struct task_struct *p;
1373
1374 if (!has_pushable_tasks(rq))
1375 return NULL;
1376
1377 p = plist_first_entry(&rq->rt.pushable_tasks,
1378 struct task_struct, pushable_tasks);
1379
1380 BUG_ON(rq->cpu != task_cpu(p));
1381 BUG_ON(task_current(rq, p));
1382 BUG_ON(p->rt.nr_cpus_allowed <= 1);
1383
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001384 BUG_ON(!p->on_rq);
Gregory Haskins917b6272008-12-29 09:39:53 -05001385 BUG_ON(!rt_task(p));
1386
1387 return p;
1388}
1389
Steven Rostedte8fa1362008-01-25 21:08:05 +01001390/*
1391 * If the current CPU has more than one RT task, see if the non
1392 * running task can migrate over to a CPU that is running a task
1393 * of lesser priority.
1394 */
Gregory Haskins697f0a42008-01-25 21:08:09 +01001395static int push_rt_task(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001396{
1397 struct task_struct *next_task;
1398 struct rq *lowest_rq;
Hillf Danton311e8002011-06-16 21:55:20 -04001399 int ret = 0;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001400
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +01001401 if (!rq->rt.overloaded)
1402 return 0;
1403
Gregory Haskins917b6272008-12-29 09:39:53 -05001404 next_task = pick_next_pushable_task(rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001405 if (!next_task)
1406 return 0;
1407
Peter Zijlstra49246272010-10-17 21:46:10 +02001408retry:
Gregory Haskins697f0a42008-01-25 21:08:09 +01001409 if (unlikely(next_task == rq->curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +01001410 WARN_ON(1);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001411 return 0;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001412 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01001413
1414 /*
1415 * It's possible that the next_task slipped in of
1416 * higher priority than current. If that's the case
1417 * just reschedule current.
1418 */
Gregory Haskins697f0a42008-01-25 21:08:09 +01001419 if (unlikely(next_task->prio < rq->curr->prio)) {
1420 resched_task(rq->curr);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001421 return 0;
1422 }
1423
Gregory Haskins697f0a42008-01-25 21:08:09 +01001424 /* We might release rq lock */
Steven Rostedte8fa1362008-01-25 21:08:05 +01001425 get_task_struct(next_task);
1426
1427 /* find_lock_lowest_rq locks the rq if found */
Gregory Haskins697f0a42008-01-25 21:08:09 +01001428 lowest_rq = find_lock_lowest_rq(next_task, rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001429 if (!lowest_rq) {
1430 struct task_struct *task;
1431 /*
Hillf Danton311e8002011-06-16 21:55:20 -04001432 * find_lock_lowest_rq releases rq->lock
Gregory Haskins15635132008-12-29 09:39:53 -05001433 * so it is possible that next_task has migrated.
1434 *
1435 * We need to make sure that the task is still on the same
1436 * run-queue and is also still the next task eligible for
1437 * pushing.
Steven Rostedte8fa1362008-01-25 21:08:05 +01001438 */
Gregory Haskins917b6272008-12-29 09:39:53 -05001439 task = pick_next_pushable_task(rq);
Gregory Haskins15635132008-12-29 09:39:53 -05001440 if (task_cpu(next_task) == rq->cpu && task == next_task) {
1441 /*
Hillf Danton311e8002011-06-16 21:55:20 -04001442 * The task hasn't migrated, and is still the next
1443 * eligible task, but we failed to find a run-queue
1444 * to push it to. Do not retry in this case, since
1445 * other cpus will pull from us when ready.
Gregory Haskins15635132008-12-29 09:39:53 -05001446 */
Gregory Haskins15635132008-12-29 09:39:53 -05001447 goto out;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001448 }
Gregory Haskins917b6272008-12-29 09:39:53 -05001449
Gregory Haskins15635132008-12-29 09:39:53 -05001450 if (!task)
1451 /* No more tasks, just exit */
1452 goto out;
1453
Gregory Haskins917b6272008-12-29 09:39:53 -05001454 /*
Gregory Haskins15635132008-12-29 09:39:53 -05001455 * Something has shifted, try again.
Gregory Haskins917b6272008-12-29 09:39:53 -05001456 */
Gregory Haskins15635132008-12-29 09:39:53 -05001457 put_task_struct(next_task);
1458 next_task = task;
1459 goto retry;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001460 }
1461
Gregory Haskins697f0a42008-01-25 21:08:09 +01001462 deactivate_task(rq, next_task, 0);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001463 set_task_cpu(next_task, lowest_rq->cpu);
1464 activate_task(lowest_rq, next_task, 0);
Hillf Danton311e8002011-06-16 21:55:20 -04001465 ret = 1;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001466
1467 resched_task(lowest_rq->curr);
1468
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02001469 double_unlock_balance(rq, lowest_rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001470
Steven Rostedte8fa1362008-01-25 21:08:05 +01001471out:
1472 put_task_struct(next_task);
1473
Hillf Danton311e8002011-06-16 21:55:20 -04001474 return ret;
Steven Rostedte8fa1362008-01-25 21:08:05 +01001475}
1476
Steven Rostedte8fa1362008-01-25 21:08:05 +01001477static void push_rt_tasks(struct rq *rq)
1478{
1479 /* push_rt_task will return true if it moved an RT */
1480 while (push_rt_task(rq))
1481 ;
1482}
1483
Steven Rostedtf65eda42008-01-25 21:08:07 +01001484static int pull_rt_task(struct rq *this_rq)
1485{
Ingo Molnar80bf3172008-01-25 21:08:17 +01001486 int this_cpu = this_rq->cpu, ret = 0, cpu;
Gregory Haskinsa8728942008-12-29 09:39:49 -05001487 struct task_struct *p;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001488 struct rq *src_rq;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001489
Gregory Haskins637f5082008-01-25 21:08:18 +01001490 if (likely(!rt_overloaded(this_rq)))
Steven Rostedtf65eda42008-01-25 21:08:07 +01001491 return 0;
1492
Rusty Russellc6c49272008-11-25 02:35:05 +10301493 for_each_cpu(cpu, this_rq->rd->rto_mask) {
Steven Rostedtf65eda42008-01-25 21:08:07 +01001494 if (this_cpu == cpu)
1495 continue;
1496
1497 src_rq = cpu_rq(cpu);
Gregory Haskins74ab8e42008-12-29 09:39:50 -05001498
1499 /*
1500 * Don't bother taking the src_rq->lock if the next highest
1501 * task is known to be lower-priority than our current task.
1502 * This may look racy, but if this value is about to go
1503 * logically higher, the src_rq will push this task away.
1504 * And if its going logically lower, we do not care
1505 */
1506 if (src_rq->rt.highest_prio.next >=
1507 this_rq->rt.highest_prio.curr)
1508 continue;
1509
Steven Rostedtf65eda42008-01-25 21:08:07 +01001510 /*
1511 * We can potentially drop this_rq's lock in
1512 * double_lock_balance, and another CPU could
Gregory Haskinsa8728942008-12-29 09:39:49 -05001513 * alter this_rq
Steven Rostedtf65eda42008-01-25 21:08:07 +01001514 */
Gregory Haskinsa8728942008-12-29 09:39:49 -05001515 double_lock_balance(this_rq, src_rq);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001516
1517 /*
1518 * Are there still pullable RT tasks?
1519 */
Mike Galbraith614ee1f2008-01-25 21:08:30 +01001520 if (src_rq->rt.rt_nr_running <= 1)
1521 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001522
Steven Rostedtf65eda42008-01-25 21:08:07 +01001523 p = pick_next_highest_task_rt(src_rq, this_cpu);
1524
1525 /*
1526 * Do we have an RT task that preempts
1527 * the to-be-scheduled task?
1528 */
Gregory Haskinsa8728942008-12-29 09:39:49 -05001529 if (p && (p->prio < this_rq->rt.highest_prio.curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +01001530 WARN_ON(p == src_rq->curr);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001531 WARN_ON(!p->on_rq);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001532
1533 /*
1534 * There's a chance that p is higher in priority
1535 * than what's currently running on its cpu.
1536 * This is just that p is wakeing up and hasn't
1537 * had a chance to schedule. We only pull
1538 * p if it is lower in priority than the
Gregory Haskinsa8728942008-12-29 09:39:49 -05001539 * current task on the run queue
Steven Rostedtf65eda42008-01-25 21:08:07 +01001540 */
Gregory Haskinsa8728942008-12-29 09:39:49 -05001541 if (p->prio < src_rq->curr->prio)
Mike Galbraith614ee1f2008-01-25 21:08:30 +01001542 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +01001543
1544 ret = 1;
1545
1546 deactivate_task(src_rq, p, 0);
1547 set_task_cpu(p, this_cpu);
1548 activate_task(this_rq, p, 0);
1549 /*
1550 * We continue with the search, just in
1551 * case there's an even higher prio task
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001552 * in another runqueue. (low likelihood
Steven Rostedtf65eda42008-01-25 21:08:07 +01001553 * but possible)
Steven Rostedtf65eda42008-01-25 21:08:07 +01001554 */
Steven Rostedtf65eda42008-01-25 21:08:07 +01001555 }
Peter Zijlstra49246272010-10-17 21:46:10 +02001556skip:
Peter Zijlstra1b12bbc2008-08-11 09:30:22 +02001557 double_unlock_balance(this_rq, src_rq);
Steven Rostedtf65eda42008-01-25 21:08:07 +01001558 }
1559
1560 return ret;
1561}
1562
Steven Rostedt9a897c52008-01-25 21:08:22 +01001563static void pre_schedule_rt(struct rq *rq, struct task_struct *prev)
Steven Rostedtf65eda42008-01-25 21:08:07 +01001564{
1565 /* Try to pull RT tasks here if we lower this rq's prio */
Yong Zhang33c3d6c2010-02-09 14:43:59 -05001566 if (rq->rt.highest_prio.curr > prev->prio)
Steven Rostedtf65eda42008-01-25 21:08:07 +01001567 pull_rt_task(rq);
1568}
1569
Steven Rostedt9a897c52008-01-25 21:08:22 +01001570static void post_schedule_rt(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001571{
Gregory Haskins967fc042008-12-29 09:39:52 -05001572 push_rt_tasks(rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +01001573}
1574
Gregory Haskins8ae121a2008-04-23 07:13:29 -04001575/*
1576 * If we are not running and we are not going to reschedule soon, we should
1577 * try to push tasks away now
1578 */
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001579static void task_woken_rt(struct rq *rq, struct task_struct *p)
Steven Rostedt4642daf2008-01-25 21:08:07 +01001580{
Steven Rostedt9a897c52008-01-25 21:08:22 +01001581 if (!task_running(rq, p) &&
Gregory Haskins8ae121a2008-04-23 07:13:29 -04001582 !test_tsk_need_resched(rq->curr) &&
Gregory Haskins917b6272008-12-29 09:39:53 -05001583 has_pushable_tasks(rq) &&
Steven Rostedtb3bc2112010-09-20 22:40:04 -04001584 p->rt.nr_cpus_allowed > 1 &&
Steven Rostedt43fa5462010-09-20 22:40:03 -04001585 rt_task(rq->curr) &&
Steven Rostedtb3bc2112010-09-20 22:40:04 -04001586 (rq->curr->rt.nr_cpus_allowed < 2 ||
1587 rq->curr->prio < p->prio))
Steven Rostedt4642daf2008-01-25 21:08:07 +01001588 push_rt_tasks(rq);
1589}
1590
Mike Traviscd8ba7c2008-03-26 14:23:49 -07001591static void set_cpus_allowed_rt(struct task_struct *p,
Rusty Russell96f874e2008-11-25 02:35:14 +10301592 const struct cpumask *new_mask)
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001593{
Rusty Russell96f874e2008-11-25 02:35:14 +10301594 int weight = cpumask_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001595
1596 BUG_ON(!rt_task(p));
1597
1598 /*
1599 * Update the migration status of the RQ if we have an RT task
1600 * which is running AND changing its weight value.
1601 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001602 if (p->on_rq && (weight != p->rt.nr_cpus_allowed)) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001603 struct rq *rq = task_rq(p);
1604
Gregory Haskins917b6272008-12-29 09:39:53 -05001605 if (!task_current(rq, p)) {
1606 /*
1607 * Make sure we dequeue this task from the pushable list
1608 * before going further. It will either remain off of
1609 * the list because we are no longer pushable, or it
1610 * will be requeued.
1611 */
1612 if (p->rt.nr_cpus_allowed > 1)
1613 dequeue_pushable_task(rq, p);
1614
1615 /*
1616 * Requeue if our weight is changing and still > 1
1617 */
1618 if (weight > 1)
1619 enqueue_pushable_task(rq, p);
1620
1621 }
1622
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001623 if ((p->rt.nr_cpus_allowed <= 1) && (weight > 1)) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001624 rq->rt.rt_nr_migratory++;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001625 } else if ((p->rt.nr_cpus_allowed > 1) && (weight <= 1)) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001626 BUG_ON(!rq->rt.rt_nr_migratory);
1627 rq->rt.rt_nr_migratory--;
1628 }
1629
Gregory Haskins398a1532009-01-14 09:10:04 -05001630 update_rt_migration(&rq->rt);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001631 }
1632
Rusty Russell96f874e2008-11-25 02:35:14 +10301633 cpumask_copy(&p->cpus_allowed, new_mask);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001634 p->rt.nr_cpus_allowed = weight;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001635}
Ingo Molnardeeeccd2008-01-25 21:08:15 +01001636
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001637/* Assumes rq->lock is held */
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001638static void rq_online_rt(struct rq *rq)
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001639{
1640 if (rq->rt.overloaded)
1641 rt_set_overload(rq);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001642
Peter Zijlstra7def2be2008-06-05 14:49:58 +02001643 __enable_runtime(rq);
1644
Gregory Haskinse864c492008-12-29 09:39:49 -05001645 cpupri_set(&rq->rd->cpupri, rq->cpu, rq->rt.highest_prio.curr);
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001646}
1647
1648/* Assumes rq->lock is held */
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001649static void rq_offline_rt(struct rq *rq)
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001650{
1651 if (rq->rt.overloaded)
1652 rt_clear_overload(rq);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001653
Peter Zijlstra7def2be2008-06-05 14:49:58 +02001654 __disable_runtime(rq);
1655
Gregory Haskins6e0534f2008-05-12 21:21:01 +02001656 cpupri_set(&rq->rd->cpupri, rq->cpu, CPUPRI_INVALID);
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001657}
Steven Rostedtcb469842008-01-25 21:08:22 +01001658
1659/*
1660 * When switch from the rt queue, we bring ourselves to a position
1661 * that we might want to pull RT tasks from other runqueues.
1662 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001663static void switched_from_rt(struct rq *rq, struct task_struct *p)
Steven Rostedtcb469842008-01-25 21:08:22 +01001664{
1665 /*
1666 * If there are other RT tasks then we will reschedule
1667 * and the scheduling of the other RT tasks will handle
1668 * the balancing. But if we are the last RT task
1669 * we may need to handle the pulling of RT tasks
1670 * now.
1671 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001672 if (p->on_rq && !rq->rt.rt_nr_running)
Steven Rostedtcb469842008-01-25 21:08:22 +01001673 pull_rt_task(rq);
1674}
Rusty Russell3d8cbdf2008-11-25 09:58:41 +10301675
1676static inline void init_sched_rt_class(void)
1677{
1678 unsigned int i;
1679
1680 for_each_possible_cpu(i)
Yinghai Lueaa95842009-06-06 14:51:36 -07001681 zalloc_cpumask_var_node(&per_cpu(local_cpu_mask, i),
Mike Travis6ca09df2008-12-31 18:08:45 -08001682 GFP_KERNEL, cpu_to_node(i));
Rusty Russell3d8cbdf2008-11-25 09:58:41 +10301683}
Steven Rostedte8fa1362008-01-25 21:08:05 +01001684#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001685
Steven Rostedtcb469842008-01-25 21:08:22 +01001686/*
1687 * When switching a task to RT, we may overload the runqueue
1688 * with RT tasks. In this case we try to push them off to
1689 * other runqueues.
1690 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001691static void switched_to_rt(struct rq *rq, struct task_struct *p)
Steven Rostedtcb469842008-01-25 21:08:22 +01001692{
1693 int check_resched = 1;
1694
1695 /*
1696 * If we are already running, then there's nothing
1697 * that needs to be done. But if we are not running
1698 * we may need to preempt the current running task.
1699 * If that current running task is also an RT task
1700 * then see if we can move to another run queue.
1701 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001702 if (p->on_rq && rq->curr != p) {
Steven Rostedtcb469842008-01-25 21:08:22 +01001703#ifdef CONFIG_SMP
1704 if (rq->rt.overloaded && push_rt_task(rq) &&
1705 /* Don't resched if we changed runqueues */
1706 rq != task_rq(p))
1707 check_resched = 0;
1708#endif /* CONFIG_SMP */
1709 if (check_resched && p->prio < rq->curr->prio)
1710 resched_task(rq->curr);
1711 }
1712}
1713
1714/*
1715 * Priority of the task has changed. This may cause
1716 * us to initiate a push or pull.
1717 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001718static void
1719prio_changed_rt(struct rq *rq, struct task_struct *p, int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01001720{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02001721 if (!p->on_rq)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01001722 return;
1723
1724 if (rq->curr == p) {
Steven Rostedtcb469842008-01-25 21:08:22 +01001725#ifdef CONFIG_SMP
1726 /*
1727 * If our priority decreases while running, we
1728 * may need to pull tasks to this runqueue.
1729 */
1730 if (oldprio < p->prio)
1731 pull_rt_task(rq);
1732 /*
1733 * If there's a higher priority task waiting to run
Steven Rostedt6fa46fa2008-03-05 10:00:12 -05001734 * then reschedule. Note, the above pull_rt_task
1735 * can release the rq lock and p could migrate.
1736 * Only reschedule if p is still on the same runqueue.
Steven Rostedtcb469842008-01-25 21:08:22 +01001737 */
Gregory Haskinse864c492008-12-29 09:39:49 -05001738 if (p->prio > rq->rt.highest_prio.curr && rq->curr == p)
Steven Rostedtcb469842008-01-25 21:08:22 +01001739 resched_task(p);
1740#else
1741 /* For UP simply resched on drop of prio */
1742 if (oldprio < p->prio)
1743 resched_task(p);
1744#endif /* CONFIG_SMP */
1745 } else {
1746 /*
1747 * This task is not running, but if it is
1748 * greater than the current running task
1749 * then reschedule.
1750 */
1751 if (p->prio < rq->curr->prio)
1752 resched_task(rq->curr);
1753 }
1754}
1755
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001756static void watchdog(struct rq *rq, struct task_struct *p)
1757{
1758 unsigned long soft, hard;
1759
Jiri Slaby78d7d402010-03-05 13:42:54 -08001760 /* max may change after cur was read, this will be fixed next tick */
1761 soft = task_rlimit(p, RLIMIT_RTTIME);
1762 hard = task_rlimit_max(p, RLIMIT_RTTIME);
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001763
1764 if (soft != RLIM_INFINITY) {
1765 unsigned long next;
1766
1767 p->rt.timeout++;
1768 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ);
Peter Zijlstra5a52dd52008-01-25 21:08:32 +01001769 if (p->rt.timeout > next)
Frank Mayharf06febc2008-09-12 09:54:39 -07001770 p->cputime_expires.sched_exp = p->se.sum_exec_runtime;
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001771 }
1772}
Steven Rostedtcb469842008-01-25 21:08:22 +01001773
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001774static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001775{
Peter Zijlstra67e2be02007-12-20 15:01:17 +01001776 update_curr_rt(rq);
1777
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001778 watchdog(rq, p);
1779
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001780 /*
1781 * RR tasks need a special form of timeslice management.
1782 * FIFO tasks have no timeslices.
1783 */
1784 if (p->policy != SCHED_RR)
1785 return;
1786
Peter Zijlstrafa717062008-01-25 21:08:27 +01001787 if (--p->rt.time_slice)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001788 return;
1789
Peter Zijlstrafa717062008-01-25 21:08:27 +01001790 p->rt.time_slice = DEF_TIMESLICE;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001791
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02001792 /*
1793 * Requeue to the end of queue if we are not the only element
1794 * on the queue:
1795 */
Peter Zijlstrafa717062008-01-25 21:08:27 +01001796 if (p->rt.run_list.prev != p->rt.run_list.next) {
Dmitry Adamushko7ebefa82008-07-01 23:32:15 +02001797 requeue_task_rt(rq, p, 0);
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02001798 set_tsk_need_resched(p);
1799 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001800}
1801
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001802static void set_curr_task_rt(struct rq *rq)
1803{
1804 struct task_struct *p = rq->curr;
1805
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001806 p->se.exec_start = rq->clock_task;
Gregory Haskins917b6272008-12-29 09:39:53 -05001807
1808 /* The running task is never eligible for pushing */
1809 dequeue_pushable_task(rq, p);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001810}
1811
H Hartley Sweeten6d686f42010-01-13 20:21:52 -07001812static unsigned int get_rr_interval_rt(struct rq *rq, struct task_struct *task)
Peter Williams0d721ce2009-09-21 01:31:53 +00001813{
1814 /*
1815 * Time slice is 0 for SCHED_FIFO tasks
1816 */
1817 if (task->policy == SCHED_RR)
1818 return DEF_TIMESLICE;
1819 else
1820 return 0;
1821}
1822
Harvey Harrison2abdad02008-04-25 10:53:13 -07001823static const struct sched_class rt_sched_class = {
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001824 .next = &fair_sched_class,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001825 .enqueue_task = enqueue_task_rt,
1826 .dequeue_task = dequeue_task_rt,
1827 .yield_task = yield_task_rt,
1828
1829 .check_preempt_curr = check_preempt_curr_rt,
1830
1831 .pick_next_task = pick_next_task_rt,
1832 .put_prev_task = put_prev_task_rt,
1833
Peter Williams681f3e62007-10-24 18:23:51 +02001834#ifdef CONFIG_SMP
Li Zefan4ce72a22008-10-22 15:25:26 +08001835 .select_task_rq = select_task_rq_rt,
1836
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001837 .set_cpus_allowed = set_cpus_allowed_rt,
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001838 .rq_online = rq_online_rt,
1839 .rq_offline = rq_offline_rt,
Steven Rostedt9a897c52008-01-25 21:08:22 +01001840 .pre_schedule = pre_schedule_rt,
1841 .post_schedule = post_schedule_rt,
Peter Zijlstraefbbd052009-12-16 18:04:40 +01001842 .task_woken = task_woken_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01001843 .switched_from = switched_from_rt,
Peter Williams681f3e62007-10-24 18:23:51 +02001844#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001845
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001846 .set_curr_task = set_curr_task_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001847 .task_tick = task_tick_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01001848
Peter Williams0d721ce2009-09-21 01:31:53 +00001849 .get_rr_interval = get_rr_interval_rt,
1850
Steven Rostedtcb469842008-01-25 21:08:22 +01001851 .prio_changed = prio_changed_rt,
1852 .switched_to = switched_to_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001853};
Peter Zijlstraada18de2008-06-19 14:22:24 +02001854
1855#ifdef CONFIG_SCHED_DEBUG
1856extern void print_rt_rq(struct seq_file *m, int cpu, struct rt_rq *rt_rq);
1857
1858static void print_rt_stats(struct seq_file *m, int cpu)
1859{
Cheng Xuec514c42011-05-14 14:20:02 +08001860 rt_rq_iter_t iter;
Peter Zijlstraada18de2008-06-19 14:22:24 +02001861 struct rt_rq *rt_rq;
1862
1863 rcu_read_lock();
Cheng Xuec514c42011-05-14 14:20:02 +08001864 for_each_rt_rq(rt_rq, iter, cpu_rq(cpu))
Peter Zijlstraada18de2008-06-19 14:22:24 +02001865 print_rt_rq(m, cpu, rt_rq);
1866 rcu_read_unlock();
1867}
Dhaval Giani55e12e52008-06-24 23:39:43 +05301868#endif /* CONFIG_SCHED_DEBUG */
Rusty Russell0e3900e2008-11-25 02:35:13 +10301869