blob: f54792b175b26a331df3e133a8b7f854122eefdf [file] [log] [blame]
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001/*
2 * Real-Time Scheduling Class (mapped to the SCHED_FIFO and SCHED_RR
3 * policies)
4 */
5
Steven Rostedt4fd29172008-01-25 21:08:06 +01006#ifdef CONFIG_SMP
Ingo Molnar84de4272008-01-25 21:08:15 +01007
Gregory Haskins637f5082008-01-25 21:08:18 +01008static inline int rt_overloaded(struct rq *rq)
Steven Rostedt4fd29172008-01-25 21:08:06 +01009{
Gregory Haskins637f5082008-01-25 21:08:18 +010010 return atomic_read(&rq->rd->rto_count);
Steven Rostedt4fd29172008-01-25 21:08:06 +010011}
Ingo Molnar84de4272008-01-25 21:08:15 +010012
Steven Rostedt4fd29172008-01-25 21:08:06 +010013static inline void rt_set_overload(struct rq *rq)
14{
Gregory Haskins637f5082008-01-25 21:08:18 +010015 cpu_set(rq->cpu, rq->rd->rto_mask);
Steven Rostedt4fd29172008-01-25 21:08:06 +010016 /*
17 * Make sure the mask is visible before we set
18 * the overload count. That is checked to determine
19 * if we should look at the mask. It would be a shame
20 * if we looked at the mask, but the mask was not
21 * updated yet.
22 */
23 wmb();
Gregory Haskins637f5082008-01-25 21:08:18 +010024 atomic_inc(&rq->rd->rto_count);
Steven Rostedt4fd29172008-01-25 21:08:06 +010025}
Ingo Molnar84de4272008-01-25 21:08:15 +010026
Steven Rostedt4fd29172008-01-25 21:08:06 +010027static inline void rt_clear_overload(struct rq *rq)
28{
29 /* the order here really doesn't matter */
Gregory Haskins637f5082008-01-25 21:08:18 +010030 atomic_dec(&rq->rd->rto_count);
31 cpu_clear(rq->cpu, rq->rd->rto_mask);
Steven Rostedt4fd29172008-01-25 21:08:06 +010032}
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010033
34static void update_rt_migration(struct rq *rq)
35{
Gregory Haskins637f5082008-01-25 21:08:18 +010036 if (rq->rt.rt_nr_migratory && (rq->rt.rt_nr_running > 1)) {
Gregory Haskinscdc8eb92008-01-25 21:08:23 +010037 if (!rq->rt.overloaded) {
38 rt_set_overload(rq);
39 rq->rt.overloaded = 1;
40 }
41 } else if (rq->rt.overloaded) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010042 rt_clear_overload(rq);
Gregory Haskins637f5082008-01-25 21:08:18 +010043 rq->rt.overloaded = 0;
44 }
Gregory Haskins73fe6aa2008-01-25 21:08:07 +010045}
Steven Rostedt4fd29172008-01-25 21:08:06 +010046#endif /* CONFIG_SMP */
47
Peter Zijlstra6f505b12008-01-25 21:08:30 +010048static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +010049{
Peter Zijlstra6f505b12008-01-25 21:08:30 +010050 return container_of(rt_se, struct task_struct, rt);
51}
52
53static inline int on_rt_rq(struct sched_rt_entity *rt_se)
54{
55 return !list_empty(&rt_se->run_list);
56}
57
Peter Zijlstra052f1dc2008-02-13 15:45:40 +010058#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +010059
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010060static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010061{
62 if (!rt_rq->tg)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010063 return RUNTIME_INF;
Peter Zijlstra6f505b12008-01-25 21:08:30 +010064
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010065 return rt_rq->tg->rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +010066}
67
68#define for_each_leaf_rt_rq(rt_rq, rq) \
69 list_for_each_entry(rt_rq, &rq->leaf_rt_rq_list, leaf_rt_rq_list)
70
71static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
72{
73 return rt_rq->rq;
74}
75
76static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
77{
78 return rt_se->rt_rq;
79}
80
81#define for_each_sched_rt_entity(rt_se) \
82 for (; rt_se; rt_se = rt_se->parent)
83
84static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
85{
86 return rt_se->my_q;
87}
88
89static void enqueue_rt_entity(struct sched_rt_entity *rt_se);
90static void dequeue_rt_entity(struct sched_rt_entity *rt_se);
91
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +010092static void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +010093{
94 struct sched_rt_entity *rt_se = rt_rq->rt_se;
95
96 if (rt_se && !on_rt_rq(rt_se) && rt_rq->rt_nr_running) {
Peter Zijlstra10203872008-01-25 21:08:32 +010097 struct task_struct *curr = rq_of_rt_rq(rt_rq)->curr;
98
Peter Zijlstra6f505b12008-01-25 21:08:30 +010099 enqueue_rt_entity(rt_se);
Peter Zijlstra10203872008-01-25 21:08:32 +0100100 if (rt_rq->highest_prio < curr->prio)
101 resched_task(curr);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100102 }
103}
104
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100105static void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100106{
107 struct sched_rt_entity *rt_se = rt_rq->rt_se;
108
109 if (rt_se && on_rt_rq(rt_se))
110 dequeue_rt_entity(rt_se);
111}
112
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100113static inline int rt_rq_throttled(struct rt_rq *rt_rq)
114{
115 return rt_rq->rt_throttled && !rt_rq->rt_nr_boosted;
116}
117
118static int rt_se_boosted(struct sched_rt_entity *rt_se)
119{
120 struct rt_rq *rt_rq = group_rt_rq(rt_se);
121 struct task_struct *p;
122
123 if (rt_rq)
124 return !!rt_rq->rt_nr_boosted;
125
126 p = rt_task_of(rt_se);
127 return p->prio != p->normal_prio;
128}
129
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100130#else
131
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100132static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100133{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100134 if (sysctl_sched_rt_runtime == -1)
135 return RUNTIME_INF;
136
137 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100138}
139
140#define for_each_leaf_rt_rq(rt_rq, rq) \
141 for (rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
142
143static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
144{
145 return container_of(rt_rq, struct rq, rt);
146}
147
148static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
149{
150 struct task_struct *p = rt_task_of(rt_se);
151 struct rq *rq = task_rq(p);
152
153 return &rq->rt;
154}
155
156#define for_each_sched_rt_entity(rt_se) \
157 for (; rt_se; rt_se = NULL)
158
159static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
160{
161 return NULL;
162}
163
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100164static inline void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100165{
166}
167
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100168static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100169{
170}
171
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100172static inline int rt_rq_throttled(struct rt_rq *rt_rq)
173{
174 return rt_rq->rt_throttled;
175}
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100176#endif
177
178static inline int rt_se_prio(struct sched_rt_entity *rt_se)
179{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100180#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100181 struct rt_rq *rt_rq = group_rt_rq(rt_se);
182
183 if (rt_rq)
184 return rt_rq->highest_prio;
185#endif
186
187 return rt_task_of(rt_se)->prio;
188}
189
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100190static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100191{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100192 u64 runtime = sched_rt_runtime(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100193
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100194 if (runtime == RUNTIME_INF)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100195 return 0;
196
197 if (rt_rq->rt_throttled)
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100198 return rt_rq_throttled(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100199
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100200 if (rt_rq->rt_time > runtime) {
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100201 struct rq *rq = rq_of_rt_rq(rt_rq);
202
203 rq->rt_throttled = 1;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100204 rt_rq->rt_throttled = 1;
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100205
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100206 if (rt_rq_throttled(rt_rq)) {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100207 sched_rt_rq_dequeue(rt_rq);
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100208 return 1;
209 }
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100210 }
211
212 return 0;
213}
214
215static void update_sched_rt_period(struct rq *rq)
216{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100217 struct rt_rq *rt_rq;
218 u64 period;
219
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100220 while (rq->clock > rq->rt_period_expire) {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100221 period = (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100222 rq->rt_period_expire += period;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100223
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100224 for_each_leaf_rt_rq(rt_rq, rq) {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100225 u64 runtime = sched_rt_runtime(rt_rq);
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100226
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100227 rt_rq->rt_time -= min(rt_rq->rt_time, runtime);
228 if (rt_rq->rt_throttled && rt_rq->rt_time < runtime) {
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100229 rt_rq->rt_throttled = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100230 sched_rt_rq_enqueue(rt_rq);
Peter Zijlstra48d5e252008-01-25 21:08:31 +0100231 }
232 }
233
234 rq->rt_throttled = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100235 }
236}
237
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200238/*
239 * Update the current task's runtime statistics. Skip current tasks that
240 * are not in our scheduling class.
241 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200242static void update_curr_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200243{
244 struct task_struct *curr = rq->curr;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100245 struct sched_rt_entity *rt_se = &curr->rt;
246 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200247 u64 delta_exec;
248
249 if (!task_has_rt_policy(curr))
250 return;
251
Ingo Molnard2819182007-08-09 11:16:47 +0200252 delta_exec = rq->clock - curr->se.exec_start;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200253 if (unlikely((s64)delta_exec < 0))
254 delta_exec = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200255
256 schedstat_set(curr->se.exec_max, max(curr->se.exec_max, delta_exec));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200257
258 curr->se.sum_exec_runtime += delta_exec;
Ingo Molnard2819182007-08-09 11:16:47 +0200259 curr->se.exec_start = rq->clock;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100260 cpuacct_charge(curr, delta_exec);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100261
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100262 rt_rq->rt_time += delta_exec;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100263 if (sched_rt_runtime_exceeded(rt_rq))
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100264 resched_task(curr);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200265}
266
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100267static inline
268void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
Steven Rostedt63489e42008-01-25 21:08:03 +0100269{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100270 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
271 rt_rq->rt_nr_running++;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100272#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100273 if (rt_se_prio(rt_se) < rt_rq->highest_prio)
274 rt_rq->highest_prio = rt_se_prio(rt_se);
275#endif
Steven Rostedt764a9d62008-01-25 21:08:04 +0100276#ifdef CONFIG_SMP
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100277 if (rt_se->nr_cpus_allowed > 1) {
278 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100279 rq->rt.rt_nr_migratory++;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100280 }
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100281
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100282 update_rt_migration(rq_of_rt_rq(rt_rq));
283#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100284#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100285 if (rt_se_boosted(rt_se))
286 rt_rq->rt_nr_boosted++;
287#endif
Steven Rostedt63489e42008-01-25 21:08:03 +0100288}
289
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100290static inline
291void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
Steven Rostedt63489e42008-01-25 21:08:03 +0100292{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100293 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
294 WARN_ON(!rt_rq->rt_nr_running);
295 rt_rq->rt_nr_running--;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100296#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100297 if (rt_rq->rt_nr_running) {
Steven Rostedt764a9d62008-01-25 21:08:04 +0100298 struct rt_prio_array *array;
299
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100300 WARN_ON(rt_se_prio(rt_se) < rt_rq->highest_prio);
301 if (rt_se_prio(rt_se) == rt_rq->highest_prio) {
Steven Rostedt764a9d62008-01-25 21:08:04 +0100302 /* recalculate */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100303 array = &rt_rq->active;
304 rt_rq->highest_prio =
Steven Rostedt764a9d62008-01-25 21:08:04 +0100305 sched_find_first_bit(array->bitmap);
306 } /* otherwise leave rq->highest prio alone */
307 } else
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100308 rt_rq->highest_prio = MAX_RT_PRIO;
309#endif
310#ifdef CONFIG_SMP
311 if (rt_se->nr_cpus_allowed > 1) {
312 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100313 rq->rt.rt_nr_migratory--;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100314 }
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100315
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100316 update_rt_migration(rq_of_rt_rq(rt_rq));
Steven Rostedt764a9d62008-01-25 21:08:04 +0100317#endif /* CONFIG_SMP */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100318#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100319 if (rt_se_boosted(rt_se))
320 rt_rq->rt_nr_boosted--;
321
322 WARN_ON(!rt_rq->rt_nr_running && rt_rq->rt_nr_boosted);
323#endif
Steven Rostedt63489e42008-01-25 21:08:03 +0100324}
325
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100326static void enqueue_rt_entity(struct sched_rt_entity *rt_se)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200327{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100328 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
329 struct rt_prio_array *array = &rt_rq->active;
330 struct rt_rq *group_rq = group_rt_rq(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200331
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100332 if (group_rq && rt_rq_throttled(group_rq))
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100333 return;
Steven Rostedt63489e42008-01-25 21:08:03 +0100334
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100335 list_add_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se));
336 __set_bit(rt_se_prio(rt_se), array->bitmap);
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +0100337
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100338 inc_rt_tasks(rt_se, rt_rq);
339}
340
341static void dequeue_rt_entity(struct sched_rt_entity *rt_se)
342{
343 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
344 struct rt_prio_array *array = &rt_rq->active;
345
346 list_del_init(&rt_se->run_list);
347 if (list_empty(array->queue + rt_se_prio(rt_se)))
348 __clear_bit(rt_se_prio(rt_se), array->bitmap);
349
350 dec_rt_tasks(rt_se, rt_rq);
351}
352
353/*
354 * Because the prio of an upper entry depends on the lower
355 * entries, we must remove entries top - down.
356 *
357 * XXX: O(1/2 h^2) because we can only walk up, not down the chain.
358 * doesn't matter much for now, as h=2 for GROUP_SCHED.
359 */
360static void dequeue_rt_stack(struct task_struct *p)
361{
362 struct sched_rt_entity *rt_se, *top_se;
363
364 /*
365 * dequeue all, top - down.
366 */
367 do {
368 rt_se = &p->rt;
369 top_se = NULL;
370 for_each_sched_rt_entity(rt_se) {
371 if (on_rt_rq(rt_se))
372 top_se = rt_se;
373 }
374 if (top_se)
375 dequeue_rt_entity(top_se);
376 } while (top_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200377}
378
379/*
380 * Adding/removing a task to/from a priority array:
381 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100382static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup)
383{
384 struct sched_rt_entity *rt_se = &p->rt;
385
386 if (wakeup)
387 rt_se->timeout = 0;
388
389 dequeue_rt_stack(p);
390
391 /*
392 * enqueue everybody, bottom - up.
393 */
394 for_each_sched_rt_entity(rt_se)
395 enqueue_rt_entity(rt_se);
396
397 inc_cpu_load(rq, p->se.load.weight);
398}
399
Ingo Molnarf02231e2007-08-09 11:16:48 +0200400static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200401{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100402 struct sched_rt_entity *rt_se = &p->rt;
403 struct rt_rq *rt_rq;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200404
Ingo Molnarf1e14ef2007-08-09 11:16:48 +0200405 update_curr_rt(rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200406
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100407 dequeue_rt_stack(p);
Steven Rostedt63489e42008-01-25 21:08:03 +0100408
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100409 /*
410 * re-enqueue all non-empty rt_rq entities.
411 */
412 for_each_sched_rt_entity(rt_se) {
413 rt_rq = group_rt_rq(rt_se);
414 if (rt_rq && rt_rq->rt_nr_running)
415 enqueue_rt_entity(rt_se);
416 }
417
418 dec_cpu_load(rq, p->se.load.weight);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200419}
420
421/*
422 * Put task to the end of the run list without the overhead of dequeue
423 * followed by enqueue.
424 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100425static
426void requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200427{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100428 struct rt_prio_array *array = &rt_rq->active;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200429
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100430 list_move_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200431}
432
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100433static void requeue_task_rt(struct rq *rq, struct task_struct *p)
434{
435 struct sched_rt_entity *rt_se = &p->rt;
436 struct rt_rq *rt_rq;
437
438 for_each_sched_rt_entity(rt_se) {
439 rt_rq = rt_rq_of_se(rt_se);
440 requeue_rt_entity(rt_rq, rt_se);
441 }
442}
443
444static void yield_task_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200445{
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +0200446 requeue_task_rt(rq, rq->curr);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200447}
448
Gregory Haskinse7693a32008-01-25 21:08:09 +0100449#ifdef CONFIG_SMP
Gregory Haskins318e0892008-01-25 21:08:10 +0100450static int find_lowest_rq(struct task_struct *task);
451
Gregory Haskinse7693a32008-01-25 21:08:09 +0100452static int select_task_rq_rt(struct task_struct *p, int sync)
453{
Gregory Haskins318e0892008-01-25 21:08:10 +0100454 struct rq *rq = task_rq(p);
455
456 /*
Steven Rostedte1f47d82008-01-25 21:08:12 +0100457 * If the current task is an RT task, then
458 * try to see if we can wake this RT task up on another
459 * runqueue. Otherwise simply start this RT task
460 * on its current runqueue.
461 *
462 * We want to avoid overloading runqueues. Even if
463 * the RT task is of higher priority than the current RT task.
464 * RT tasks behave differently than other tasks. If
465 * one gets preempted, we try to push it off to another queue.
466 * So trying to keep a preempting RT task on the same
467 * cache hot CPU will force the running RT task to
468 * a cold CPU. So we waste all the cache for the lower
469 * RT task in hopes of saving some of a RT task
470 * that is just being woken and probably will have
471 * cold cache anyway.
Gregory Haskins318e0892008-01-25 21:08:10 +0100472 */
Gregory Haskins17b32792008-01-25 21:08:13 +0100473 if (unlikely(rt_task(rq->curr)) &&
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100474 (p->rt.nr_cpus_allowed > 1)) {
Gregory Haskins318e0892008-01-25 21:08:10 +0100475 int cpu = find_lowest_rq(p);
476
477 return (cpu == -1) ? task_cpu(p) : cpu;
478 }
479
480 /*
481 * Otherwise, just let it ride on the affined RQ and the
482 * post-schedule router will push the preempted task away
483 */
Gregory Haskinse7693a32008-01-25 21:08:09 +0100484 return task_cpu(p);
485}
486#endif /* CONFIG_SMP */
487
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200488/*
489 * Preempt the current task with a newly woken task if needed:
490 */
491static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p)
492{
493 if (p->prio < rq->curr->prio)
494 resched_task(rq->curr);
495}
496
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100497static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq,
498 struct rt_rq *rt_rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200499{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100500 struct rt_prio_array *array = &rt_rq->active;
501 struct sched_rt_entity *next = NULL;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200502 struct list_head *queue;
503 int idx;
504
505 idx = sched_find_first_bit(array->bitmap);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100506 BUG_ON(idx >= MAX_RT_PRIO);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200507
508 queue = array->queue + idx;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100509 next = list_entry(queue->next, struct sched_rt_entity, run_list);
Dmitry Adamushko326587b2008-01-25 21:08:34 +0100510
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200511 return next;
512}
513
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100514static struct task_struct *pick_next_task_rt(struct rq *rq)
515{
516 struct sched_rt_entity *rt_se;
517 struct task_struct *p;
518 struct rt_rq *rt_rq;
519
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100520 rt_rq = &rq->rt;
521
522 if (unlikely(!rt_rq->rt_nr_running))
523 return NULL;
524
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100525 if (rt_rq_throttled(rt_rq))
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100526 return NULL;
527
528 do {
529 rt_se = pick_next_rt_entity(rq, rt_rq);
Dmitry Adamushko326587b2008-01-25 21:08:34 +0100530 BUG_ON(!rt_se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100531 rt_rq = group_rt_rq(rt_se);
532 } while (rt_rq);
533
534 p = rt_task_of(rt_se);
535 p->se.exec_start = rq->clock;
536 return p;
537}
538
Ingo Molnar31ee5292007-08-09 11:16:49 +0200539static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200540{
Ingo Molnarf1e14ef2007-08-09 11:16:48 +0200541 update_curr_rt(rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200542 p->se.exec_start = 0;
543}
544
Peter Williams681f3e62007-10-24 18:23:51 +0200545#ifdef CONFIG_SMP
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100546
Steven Rostedte8fa1362008-01-25 21:08:05 +0100547/* Only try algorithms three times */
548#define RT_MAX_TRIES 3
549
550static int double_lock_balance(struct rq *this_rq, struct rq *busiest);
551static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep);
552
Steven Rostedtf65eda42008-01-25 21:08:07 +0100553static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
554{
555 if (!task_running(rq, p) &&
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100556 (cpu < 0 || cpu_isset(cpu, p->cpus_allowed)) &&
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100557 (p->rt.nr_cpus_allowed > 1))
Steven Rostedtf65eda42008-01-25 21:08:07 +0100558 return 1;
559 return 0;
560}
561
Steven Rostedte8fa1362008-01-25 21:08:05 +0100562/* Return the second highest RT task, NULL otherwise */
Ingo Molnar79064fb2008-01-25 21:08:14 +0100563static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100564{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100565 struct task_struct *next = NULL;
566 struct sched_rt_entity *rt_se;
567 struct rt_prio_array *array;
568 struct rt_rq *rt_rq;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100569 int idx;
570
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100571 for_each_leaf_rt_rq(rt_rq, rq) {
572 array = &rt_rq->active;
573 idx = sched_find_first_bit(array->bitmap);
574 next_idx:
575 if (idx >= MAX_RT_PRIO)
576 continue;
577 if (next && next->prio < idx)
578 continue;
579 list_for_each_entry(rt_se, array->queue + idx, run_list) {
580 struct task_struct *p = rt_task_of(rt_se);
581 if (pick_rt_task(rq, p, cpu)) {
582 next = p;
583 break;
584 }
585 }
586 if (!next) {
587 idx = find_next_bit(array->bitmap, MAX_RT_PRIO, idx+1);
588 goto next_idx;
589 }
Steven Rostedte8fa1362008-01-25 21:08:05 +0100590 }
591
Steven Rostedte8fa1362008-01-25 21:08:05 +0100592 return next;
593}
594
595static DEFINE_PER_CPU(cpumask_t, local_cpu_mask);
596
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100597static int find_lowest_cpus(struct task_struct *task, cpumask_t *lowest_mask)
Gregory Haskins07b40322008-01-25 21:08:10 +0100598{
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100599 int lowest_prio = -1;
Steven Rostedt610bf052008-01-25 21:08:13 +0100600 int lowest_cpu = -1;
Gregory Haskins06f90db2008-01-25 21:08:13 +0100601 int count = 0;
Steven Rostedt610bf052008-01-25 21:08:13 +0100602 int cpu;
Gregory Haskins07b40322008-01-25 21:08:10 +0100603
Gregory Haskins637f5082008-01-25 21:08:18 +0100604 cpus_and(*lowest_mask, task_rq(task)->rd->online, task->cpus_allowed);
Gregory Haskins07b40322008-01-25 21:08:10 +0100605
606 /*
607 * Scan each rq for the lowest prio.
608 */
Steven Rostedt610bf052008-01-25 21:08:13 +0100609 for_each_cpu_mask(cpu, *lowest_mask) {
Gregory Haskins07b40322008-01-25 21:08:10 +0100610 struct rq *rq = cpu_rq(cpu);
611
Gregory Haskins07b40322008-01-25 21:08:10 +0100612 /* We look for lowest RT prio or non-rt CPU */
613 if (rq->rt.highest_prio >= MAX_RT_PRIO) {
Steven Rostedt610bf052008-01-25 21:08:13 +0100614 /*
615 * if we already found a low RT queue
616 * and now we found this non-rt queue
617 * clear the mask and set our bit.
618 * Otherwise just return the queue as is
619 * and the count==1 will cause the algorithm
620 * to use the first bit found.
621 */
622 if (lowest_cpu != -1) {
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100623 cpus_clear(*lowest_mask);
Steven Rostedt610bf052008-01-25 21:08:13 +0100624 cpu_set(rq->cpu, *lowest_mask);
625 }
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100626 return 1;
Gregory Haskins07b40322008-01-25 21:08:10 +0100627 }
628
629 /* no locking for now */
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100630 if ((rq->rt.highest_prio > task->prio)
631 && (rq->rt.highest_prio >= lowest_prio)) {
632 if (rq->rt.highest_prio > lowest_prio) {
633 /* new low - clear old data */
634 lowest_prio = rq->rt.highest_prio;
Steven Rostedt610bf052008-01-25 21:08:13 +0100635 lowest_cpu = cpu;
636 count = 0;
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100637 }
Gregory Haskins06f90db2008-01-25 21:08:13 +0100638 count++;
Steven Rostedt610bf052008-01-25 21:08:13 +0100639 } else
640 cpu_clear(cpu, *lowest_mask);
641 }
642
643 /*
644 * Clear out all the set bits that represent
645 * runqueues that were of higher prio than
646 * the lowest_prio.
647 */
648 if (lowest_cpu > 0) {
649 /*
650 * Perhaps we could add another cpumask op to
651 * zero out bits. Like cpu_zero_bits(cpumask, nrbits);
652 * Then that could be optimized to use memset and such.
653 */
654 for_each_cpu_mask(cpu, *lowest_mask) {
655 if (cpu >= lowest_cpu)
656 break;
657 cpu_clear(cpu, *lowest_mask);
Gregory Haskins07b40322008-01-25 21:08:10 +0100658 }
659 }
660
Gregory Haskins06f90db2008-01-25 21:08:13 +0100661 return count;
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100662}
663
664static inline int pick_optimal_cpu(int this_cpu, cpumask_t *mask)
665{
666 int first;
667
668 /* "this_cpu" is cheaper to preempt than a remote processor */
669 if ((this_cpu != -1) && cpu_isset(this_cpu, *mask))
670 return this_cpu;
671
672 first = first_cpu(*mask);
673 if (first != NR_CPUS)
674 return first;
675
676 return -1;
677}
678
679static int find_lowest_rq(struct task_struct *task)
680{
681 struct sched_domain *sd;
682 cpumask_t *lowest_mask = &__get_cpu_var(local_cpu_mask);
683 int this_cpu = smp_processor_id();
684 int cpu = task_cpu(task);
Gregory Haskins06f90db2008-01-25 21:08:13 +0100685 int count = find_lowest_cpus(task, lowest_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100686
Gregory Haskins06f90db2008-01-25 21:08:13 +0100687 if (!count)
688 return -1; /* No targets found */
689
690 /*
691 * There is no sense in performing an optimal search if only one
692 * target is found.
693 */
694 if (count == 1)
695 return first_cpu(*lowest_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100696
697 /*
698 * At this point we have built a mask of cpus representing the
699 * lowest priority tasks in the system. Now we want to elect
700 * the best one based on our affinity and topology.
701 *
702 * We prioritize the last cpu that the task executed on since
703 * it is most likely cache-hot in that location.
704 */
705 if (cpu_isset(cpu, *lowest_mask))
706 return cpu;
707
708 /*
709 * Otherwise, we consult the sched_domains span maps to figure
710 * out which cpu is logically closest to our hot cache data.
711 */
712 if (this_cpu == cpu)
713 this_cpu = -1; /* Skip this_cpu opt if the same */
714
715 for_each_domain(cpu, sd) {
716 if (sd->flags & SD_WAKE_AFFINE) {
717 cpumask_t domain_mask;
718 int best_cpu;
719
720 cpus_and(domain_mask, sd->span, *lowest_mask);
721
722 best_cpu = pick_optimal_cpu(this_cpu,
723 &domain_mask);
724 if (best_cpu != -1)
725 return best_cpu;
726 }
727 }
728
729 /*
730 * And finally, if there were no matches within the domains
731 * just give the caller *something* to work with from the compatible
732 * locations.
733 */
734 return pick_optimal_cpu(this_cpu, lowest_mask);
Gregory Haskins07b40322008-01-25 21:08:10 +0100735}
736
Steven Rostedte8fa1362008-01-25 21:08:05 +0100737/* Will lock the rq it finds */
Ingo Molnar4df64c02008-01-25 21:08:15 +0100738static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100739{
740 struct rq *lowest_rq = NULL;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100741 int tries;
Ingo Molnar4df64c02008-01-25 21:08:15 +0100742 int cpu;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100743
744 for (tries = 0; tries < RT_MAX_TRIES; tries++) {
Gregory Haskins07b40322008-01-25 21:08:10 +0100745 cpu = find_lowest_rq(task);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100746
Gregory Haskins2de0b462008-01-25 21:08:10 +0100747 if ((cpu == -1) || (cpu == rq->cpu))
Steven Rostedte8fa1362008-01-25 21:08:05 +0100748 break;
749
Gregory Haskins07b40322008-01-25 21:08:10 +0100750 lowest_rq = cpu_rq(cpu);
751
Steven Rostedte8fa1362008-01-25 21:08:05 +0100752 /* if the prio of this runqueue changed, try again */
Gregory Haskins07b40322008-01-25 21:08:10 +0100753 if (double_lock_balance(rq, lowest_rq)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +0100754 /*
755 * We had to unlock the run queue. In
756 * the mean time, task could have
757 * migrated already or had its affinity changed.
758 * Also make sure that it wasn't scheduled on its rq.
759 */
Gregory Haskins07b40322008-01-25 21:08:10 +0100760 if (unlikely(task_rq(task) != rq ||
Ingo Molnar4df64c02008-01-25 21:08:15 +0100761 !cpu_isset(lowest_rq->cpu,
762 task->cpus_allowed) ||
Gregory Haskins07b40322008-01-25 21:08:10 +0100763 task_running(rq, task) ||
Steven Rostedte8fa1362008-01-25 21:08:05 +0100764 !task->se.on_rq)) {
Ingo Molnar4df64c02008-01-25 21:08:15 +0100765
Steven Rostedte8fa1362008-01-25 21:08:05 +0100766 spin_unlock(&lowest_rq->lock);
767 lowest_rq = NULL;
768 break;
769 }
770 }
771
772 /* If this rq is still suitable use it. */
773 if (lowest_rq->rt.highest_prio > task->prio)
774 break;
775
776 /* try again */
777 spin_unlock(&lowest_rq->lock);
778 lowest_rq = NULL;
779 }
780
781 return lowest_rq;
782}
783
784/*
785 * If the current CPU has more than one RT task, see if the non
786 * running task can migrate over to a CPU that is running a task
787 * of lesser priority.
788 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100789static int push_rt_task(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100790{
791 struct task_struct *next_task;
792 struct rq *lowest_rq;
793 int ret = 0;
794 int paranoid = RT_MAX_TRIES;
795
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100796 if (!rq->rt.overloaded)
797 return 0;
798
Gregory Haskins697f0a42008-01-25 21:08:09 +0100799 next_task = pick_next_highest_task_rt(rq, -1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100800 if (!next_task)
801 return 0;
802
803 retry:
Gregory Haskins697f0a42008-01-25 21:08:09 +0100804 if (unlikely(next_task == rq->curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +0100805 WARN_ON(1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100806 return 0;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100807 }
Steven Rostedte8fa1362008-01-25 21:08:05 +0100808
809 /*
810 * It's possible that the next_task slipped in of
811 * higher priority than current. If that's the case
812 * just reschedule current.
813 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100814 if (unlikely(next_task->prio < rq->curr->prio)) {
815 resched_task(rq->curr);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100816 return 0;
817 }
818
Gregory Haskins697f0a42008-01-25 21:08:09 +0100819 /* We might release rq lock */
Steven Rostedte8fa1362008-01-25 21:08:05 +0100820 get_task_struct(next_task);
821
822 /* find_lock_lowest_rq locks the rq if found */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100823 lowest_rq = find_lock_lowest_rq(next_task, rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100824 if (!lowest_rq) {
825 struct task_struct *task;
826 /*
Gregory Haskins697f0a42008-01-25 21:08:09 +0100827 * find lock_lowest_rq releases rq->lock
Steven Rostedte8fa1362008-01-25 21:08:05 +0100828 * so it is possible that next_task has changed.
829 * If it has, then try again.
830 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100831 task = pick_next_highest_task_rt(rq, -1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100832 if (unlikely(task != next_task) && task && paranoid--) {
833 put_task_struct(next_task);
834 next_task = task;
835 goto retry;
836 }
837 goto out;
838 }
839
Gregory Haskins697f0a42008-01-25 21:08:09 +0100840 deactivate_task(rq, next_task, 0);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100841 set_task_cpu(next_task, lowest_rq->cpu);
842 activate_task(lowest_rq, next_task, 0);
843
844 resched_task(lowest_rq->curr);
845
846 spin_unlock(&lowest_rq->lock);
847
848 ret = 1;
849out:
850 put_task_struct(next_task);
851
852 return ret;
853}
854
855/*
856 * TODO: Currently we just use the second highest prio task on
857 * the queue, and stop when it can't migrate (or there's
858 * no more RT tasks). There may be a case where a lower
859 * priority RT task has a different affinity than the
860 * higher RT task. In this case the lower RT task could
861 * possibly be able to migrate where as the higher priority
862 * RT task could not. We currently ignore this issue.
863 * Enhancements are welcome!
864 */
865static void push_rt_tasks(struct rq *rq)
866{
867 /* push_rt_task will return true if it moved an RT */
868 while (push_rt_task(rq))
869 ;
870}
871
Steven Rostedtf65eda42008-01-25 21:08:07 +0100872static int pull_rt_task(struct rq *this_rq)
873{
Ingo Molnar80bf3172008-01-25 21:08:17 +0100874 int this_cpu = this_rq->cpu, ret = 0, cpu;
875 struct task_struct *p, *next;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100876 struct rq *src_rq;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100877
Gregory Haskins637f5082008-01-25 21:08:18 +0100878 if (likely(!rt_overloaded(this_rq)))
Steven Rostedtf65eda42008-01-25 21:08:07 +0100879 return 0;
880
881 next = pick_next_task_rt(this_rq);
882
Gregory Haskins637f5082008-01-25 21:08:18 +0100883 for_each_cpu_mask(cpu, this_rq->rd->rto_mask) {
Steven Rostedtf65eda42008-01-25 21:08:07 +0100884 if (this_cpu == cpu)
885 continue;
886
887 src_rq = cpu_rq(cpu);
Steven Rostedtf65eda42008-01-25 21:08:07 +0100888 /*
889 * We can potentially drop this_rq's lock in
890 * double_lock_balance, and another CPU could
891 * steal our next task - hence we must cause
892 * the caller to recalculate the next task
893 * in that case:
894 */
895 if (double_lock_balance(this_rq, src_rq)) {
896 struct task_struct *old_next = next;
Ingo Molnar80bf3172008-01-25 21:08:17 +0100897
Steven Rostedtf65eda42008-01-25 21:08:07 +0100898 next = pick_next_task_rt(this_rq);
899 if (next != old_next)
900 ret = 1;
901 }
902
903 /*
904 * Are there still pullable RT tasks?
905 */
Mike Galbraith614ee1f2008-01-25 21:08:30 +0100906 if (src_rq->rt.rt_nr_running <= 1)
907 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100908
Steven Rostedtf65eda42008-01-25 21:08:07 +0100909 p = pick_next_highest_task_rt(src_rq, this_cpu);
910
911 /*
912 * Do we have an RT task that preempts
913 * the to-be-scheduled task?
914 */
915 if (p && (!next || (p->prio < next->prio))) {
916 WARN_ON(p == src_rq->curr);
917 WARN_ON(!p->se.on_rq);
918
919 /*
920 * There's a chance that p is higher in priority
921 * than what's currently running on its cpu.
922 * This is just that p is wakeing up and hasn't
923 * had a chance to schedule. We only pull
924 * p if it is lower in priority than the
925 * current task on the run queue or
926 * this_rq next task is lower in prio than
927 * the current task on that rq.
928 */
929 if (p->prio < src_rq->curr->prio ||
930 (next && next->prio < src_rq->curr->prio))
Mike Galbraith614ee1f2008-01-25 21:08:30 +0100931 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100932
933 ret = 1;
934
935 deactivate_task(src_rq, p, 0);
936 set_task_cpu(p, this_cpu);
937 activate_task(this_rq, p, 0);
938 /*
939 * We continue with the search, just in
940 * case there's an even higher prio task
941 * in another runqueue. (low likelyhood
942 * but possible)
Ingo Molnar80bf3172008-01-25 21:08:17 +0100943 *
Steven Rostedtf65eda42008-01-25 21:08:07 +0100944 * Update next so that we won't pick a task
945 * on another cpu with a priority lower (or equal)
946 * than the one we just picked.
947 */
948 next = p;
949
950 }
Mike Galbraith614ee1f2008-01-25 21:08:30 +0100951 skip:
Steven Rostedtf65eda42008-01-25 21:08:07 +0100952 spin_unlock(&src_rq->lock);
953 }
954
955 return ret;
956}
957
Steven Rostedt9a897c52008-01-25 21:08:22 +0100958static void pre_schedule_rt(struct rq *rq, struct task_struct *prev)
Steven Rostedtf65eda42008-01-25 21:08:07 +0100959{
960 /* Try to pull RT tasks here if we lower this rq's prio */
Ingo Molnar7f51f292008-01-25 21:08:17 +0100961 if (unlikely(rt_task(prev)) && rq->rt.highest_prio > prev->prio)
Steven Rostedtf65eda42008-01-25 21:08:07 +0100962 pull_rt_task(rq);
963}
964
Steven Rostedt9a897c52008-01-25 21:08:22 +0100965static void post_schedule_rt(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100966{
967 /*
968 * If we have more than one rt_task queued, then
969 * see if we can push the other rt_tasks off to other CPUS.
970 * Note we may release the rq lock, and since
971 * the lock was owned by prev, we need to release it
972 * first via finish_lock_switch and then reaquire it here.
973 */
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100974 if (unlikely(rq->rt.overloaded)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +0100975 spin_lock_irq(&rq->lock);
976 push_rt_tasks(rq);
977 spin_unlock_irq(&rq->lock);
978 }
979}
980
Steven Rostedt4642daf2008-01-25 21:08:07 +0100981
Steven Rostedt9a897c52008-01-25 21:08:22 +0100982static void task_wake_up_rt(struct rq *rq, struct task_struct *p)
Steven Rostedt4642daf2008-01-25 21:08:07 +0100983{
Steven Rostedt9a897c52008-01-25 21:08:22 +0100984 if (!task_running(rq, p) &&
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100985 (p->prio >= rq->rt.highest_prio) &&
986 rq->rt.overloaded)
Steven Rostedt4642daf2008-01-25 21:08:07 +0100987 push_rt_tasks(rq);
988}
989
Peter Williams43010652007-08-09 11:16:46 +0200990static unsigned long
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200991load_balance_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamse1d14842007-10-24 18:23:51 +0200992 unsigned long max_load_move,
993 struct sched_domain *sd, enum cpu_idle_type idle,
994 int *all_pinned, int *this_best_prio)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200995{
Steven Rostedtc7a1e462008-01-25 21:08:07 +0100996 /* don't touch RT tasks */
997 return 0;
Peter Williamse1d14842007-10-24 18:23:51 +0200998}
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200999
Peter Williamse1d14842007-10-24 18:23:51 +02001000static int
1001move_one_task_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
1002 struct sched_domain *sd, enum cpu_idle_type idle)
1003{
Steven Rostedtc7a1e462008-01-25 21:08:07 +01001004 /* don't touch RT tasks */
1005 return 0;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001006}
Ingo Molnardeeeccd2008-01-25 21:08:15 +01001007
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001008static void set_cpus_allowed_rt(struct task_struct *p, cpumask_t *new_mask)
1009{
1010 int weight = cpus_weight(*new_mask);
1011
1012 BUG_ON(!rt_task(p));
1013
1014 /*
1015 * Update the migration status of the RQ if we have an RT task
1016 * which is running AND changing its weight value.
1017 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001018 if (p->se.on_rq && (weight != p->rt.nr_cpus_allowed)) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001019 struct rq *rq = task_rq(p);
1020
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001021 if ((p->rt.nr_cpus_allowed <= 1) && (weight > 1)) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001022 rq->rt.rt_nr_migratory++;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001023 } else if ((p->rt.nr_cpus_allowed > 1) && (weight <= 1)) {
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001024 BUG_ON(!rq->rt.rt_nr_migratory);
1025 rq->rt.rt_nr_migratory--;
1026 }
1027
1028 update_rt_migration(rq);
1029 }
1030
1031 p->cpus_allowed = *new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001032 p->rt.nr_cpus_allowed = weight;
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001033}
Ingo Molnardeeeccd2008-01-25 21:08:15 +01001034
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001035/* Assumes rq->lock is held */
1036static void join_domain_rt(struct rq *rq)
1037{
1038 if (rq->rt.overloaded)
1039 rt_set_overload(rq);
1040}
1041
1042/* Assumes rq->lock is held */
1043static void leave_domain_rt(struct rq *rq)
1044{
1045 if (rq->rt.overloaded)
1046 rt_clear_overload(rq);
1047}
Steven Rostedtcb469842008-01-25 21:08:22 +01001048
1049/*
1050 * When switch from the rt queue, we bring ourselves to a position
1051 * that we might want to pull RT tasks from other runqueues.
1052 */
1053static void switched_from_rt(struct rq *rq, struct task_struct *p,
1054 int running)
1055{
1056 /*
1057 * If there are other RT tasks then we will reschedule
1058 * and the scheduling of the other RT tasks will handle
1059 * the balancing. But if we are the last RT task
1060 * we may need to handle the pulling of RT tasks
1061 * now.
1062 */
1063 if (!rq->rt.rt_nr_running)
1064 pull_rt_task(rq);
1065}
Steven Rostedte8fa1362008-01-25 21:08:05 +01001066#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001067
Steven Rostedtcb469842008-01-25 21:08:22 +01001068/*
1069 * When switching a task to RT, we may overload the runqueue
1070 * with RT tasks. In this case we try to push them off to
1071 * other runqueues.
1072 */
1073static void switched_to_rt(struct rq *rq, struct task_struct *p,
1074 int running)
1075{
1076 int check_resched = 1;
1077
1078 /*
1079 * If we are already running, then there's nothing
1080 * that needs to be done. But if we are not running
1081 * we may need to preempt the current running task.
1082 * If that current running task is also an RT task
1083 * then see if we can move to another run queue.
1084 */
1085 if (!running) {
1086#ifdef CONFIG_SMP
1087 if (rq->rt.overloaded && push_rt_task(rq) &&
1088 /* Don't resched if we changed runqueues */
1089 rq != task_rq(p))
1090 check_resched = 0;
1091#endif /* CONFIG_SMP */
1092 if (check_resched && p->prio < rq->curr->prio)
1093 resched_task(rq->curr);
1094 }
1095}
1096
1097/*
1098 * Priority of the task has changed. This may cause
1099 * us to initiate a push or pull.
1100 */
1101static void prio_changed_rt(struct rq *rq, struct task_struct *p,
1102 int oldprio, int running)
1103{
1104 if (running) {
1105#ifdef CONFIG_SMP
1106 /*
1107 * If our priority decreases while running, we
1108 * may need to pull tasks to this runqueue.
1109 */
1110 if (oldprio < p->prio)
1111 pull_rt_task(rq);
1112 /*
1113 * If there's a higher priority task waiting to run
1114 * then reschedule.
1115 */
1116 if (p->prio > rq->rt.highest_prio)
1117 resched_task(p);
1118#else
1119 /* For UP simply resched on drop of prio */
1120 if (oldprio < p->prio)
1121 resched_task(p);
1122#endif /* CONFIG_SMP */
1123 } else {
1124 /*
1125 * This task is not running, but if it is
1126 * greater than the current running task
1127 * then reschedule.
1128 */
1129 if (p->prio < rq->curr->prio)
1130 resched_task(rq->curr);
1131 }
1132}
1133
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001134static void watchdog(struct rq *rq, struct task_struct *p)
1135{
1136 unsigned long soft, hard;
1137
1138 if (!p->signal)
1139 return;
1140
1141 soft = p->signal->rlim[RLIMIT_RTTIME].rlim_cur;
1142 hard = p->signal->rlim[RLIMIT_RTTIME].rlim_max;
1143
1144 if (soft != RLIM_INFINITY) {
1145 unsigned long next;
1146
1147 p->rt.timeout++;
1148 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ);
Peter Zijlstra5a52dd52008-01-25 21:08:32 +01001149 if (p->rt.timeout > next)
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001150 p->it_sched_expires = p->se.sum_exec_runtime;
1151 }
1152}
Steven Rostedtcb469842008-01-25 21:08:22 +01001153
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001154static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001155{
Peter Zijlstra67e2be02007-12-20 15:01:17 +01001156 update_curr_rt(rq);
1157
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001158 watchdog(rq, p);
1159
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001160 /*
1161 * RR tasks need a special form of timeslice management.
1162 * FIFO tasks have no timeslices.
1163 */
1164 if (p->policy != SCHED_RR)
1165 return;
1166
Peter Zijlstrafa717062008-01-25 21:08:27 +01001167 if (--p->rt.time_slice)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001168 return;
1169
Peter Zijlstrafa717062008-01-25 21:08:27 +01001170 p->rt.time_slice = DEF_TIMESLICE;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001171
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02001172 /*
1173 * Requeue to the end of queue if we are not the only element
1174 * on the queue:
1175 */
Peter Zijlstrafa717062008-01-25 21:08:27 +01001176 if (p->rt.run_list.prev != p->rt.run_list.next) {
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02001177 requeue_task_rt(rq, p);
1178 set_tsk_need_resched(p);
1179 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001180}
1181
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001182static void set_curr_task_rt(struct rq *rq)
1183{
1184 struct task_struct *p = rq->curr;
1185
1186 p->se.exec_start = rq->clock;
1187}
1188
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001189const struct sched_class rt_sched_class = {
1190 .next = &fair_sched_class,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001191 .enqueue_task = enqueue_task_rt,
1192 .dequeue_task = dequeue_task_rt,
1193 .yield_task = yield_task_rt,
Gregory Haskinse7693a32008-01-25 21:08:09 +01001194#ifdef CONFIG_SMP
1195 .select_task_rq = select_task_rq_rt,
1196#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001197
1198 .check_preempt_curr = check_preempt_curr_rt,
1199
1200 .pick_next_task = pick_next_task_rt,
1201 .put_prev_task = put_prev_task_rt,
1202
Peter Williams681f3e62007-10-24 18:23:51 +02001203#ifdef CONFIG_SMP
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001204 .load_balance = load_balance_rt,
Peter Williamse1d14842007-10-24 18:23:51 +02001205 .move_one_task = move_one_task_rt,
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01001206 .set_cpus_allowed = set_cpus_allowed_rt,
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001207 .join_domain = join_domain_rt,
1208 .leave_domain = leave_domain_rt,
Steven Rostedt9a897c52008-01-25 21:08:22 +01001209 .pre_schedule = pre_schedule_rt,
1210 .post_schedule = post_schedule_rt,
1211 .task_wake_up = task_wake_up_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01001212 .switched_from = switched_from_rt,
Peter Williams681f3e62007-10-24 18:23:51 +02001213#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001214
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001215 .set_curr_task = set_curr_task_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001216 .task_tick = task_tick_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01001217
1218 .prio_changed = prio_changed_rt,
1219 .switched_to = switched_to_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001220};