blob: 8bc176136666fe4a9e8c60d01976e8646c7af1e5 [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 Haskins73fe6aae2008-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 Haskins73fe6aae2008-01-25 21:08:07 +010042 rt_clear_overload(rq);
Gregory Haskins637f5082008-01-25 21:08:18 +010043 rq->rt.overloaded = 0;
44 }
Gregory Haskins73fe6aae2008-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 Zijlstrad0b27fa2008-04-19 19:44:57 +020065 return rt_rq->tg->rt_bandwidth.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 Zijlstrad0b27fa2008-04-19 19:44:57 +0200130#ifdef CONFIG_SMP
131static inline cpumask_t sched_rt_period_mask(void)
132{
133 return cpu_rq(smp_processor_id())->rd->span;
134}
135#else
136static inline cpumask_t sched_rt_period_mask(void)
137{
138 return cpu_online_map;
139}
140#endif
141
142static inline
143struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
144{
145 return container_of(rt_b, struct task_group, rt_bandwidth)->rt_rq[cpu];
146}
147
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100148#else
149
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100150static inline u64 sched_rt_runtime(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100151{
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200152 return def_rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100153}
154
155#define for_each_leaf_rt_rq(rt_rq, rq) \
156 for (rt_rq = &rq->rt; rt_rq; rt_rq = NULL)
157
158static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
159{
160 return container_of(rt_rq, struct rq, rt);
161}
162
163static inline struct rt_rq *rt_rq_of_se(struct sched_rt_entity *rt_se)
164{
165 struct task_struct *p = rt_task_of(rt_se);
166 struct rq *rq = task_rq(p);
167
168 return &rq->rt;
169}
170
171#define for_each_sched_rt_entity(rt_se) \
172 for (; rt_se; rt_se = NULL)
173
174static inline struct rt_rq *group_rt_rq(struct sched_rt_entity *rt_se)
175{
176 return NULL;
177}
178
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100179static inline void sched_rt_rq_enqueue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100180{
181}
182
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100183static inline void sched_rt_rq_dequeue(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100184{
185}
186
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100187static inline int rt_rq_throttled(struct rt_rq *rt_rq)
188{
189 return rt_rq->rt_throttled;
190}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200191
192static inline cpumask_t sched_rt_period_mask(void)
193{
194 return cpu_online_map;
195}
196
197static inline
198struct rt_rq *sched_rt_period_rt_rq(struct rt_bandwidth *rt_b, int cpu)
199{
200 return &cpu_rq(cpu)->rt;
201}
202
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100203#endif
204
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200205static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun)
206{
207 int i, idle = 1;
208 cpumask_t span;
209
210 if (rt_b->rt_runtime == RUNTIME_INF)
211 return 1;
212
213 span = sched_rt_period_mask();
214 for_each_cpu_mask(i, span) {
215 int enqueue = 0;
216 struct rt_rq *rt_rq = sched_rt_period_rt_rq(rt_b, i);
217 struct rq *rq = rq_of_rt_rq(rt_rq);
218
219 spin_lock(&rq->lock);
220 if (rt_rq->rt_time) {
221 u64 runtime = rt_b->rt_runtime;
222
223 rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime);
224 if (rt_rq->rt_throttled && rt_rq->rt_time < runtime) {
225 rt_rq->rt_throttled = 0;
226 enqueue = 1;
227 }
228 if (rt_rq->rt_time || rt_rq->rt_nr_running)
229 idle = 0;
230 }
231
232 if (enqueue)
233 sched_rt_rq_enqueue(rt_rq);
234 spin_unlock(&rq->lock);
235 }
236
237 return idle;
238}
239
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100240static inline int rt_se_prio(struct sched_rt_entity *rt_se)
241{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100242#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100243 struct rt_rq *rt_rq = group_rt_rq(rt_se);
244
245 if (rt_rq)
246 return rt_rq->highest_prio;
247#endif
248
249 return rt_task_of(rt_se)->prio;
250}
251
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100252static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100253{
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100254 u64 runtime = sched_rt_runtime(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100255
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100256 if (runtime == RUNTIME_INF)
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100257 return 0;
258
259 if (rt_rq->rt_throttled)
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100260 return rt_rq_throttled(rt_rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100261
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100262 if (rt_rq->rt_time > runtime) {
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100263 rt_rq->rt_throttled = 1;
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100264 if (rt_rq_throttled(rt_rq)) {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100265 sched_rt_rq_dequeue(rt_rq);
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100266 return 1;
267 }
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100268 }
269
270 return 0;
271}
272
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200273/*
274 * Update the current task's runtime statistics. Skip current tasks that
275 * are not in our scheduling class.
276 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200277static void update_curr_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200278{
279 struct task_struct *curr = rq->curr;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100280 struct sched_rt_entity *rt_se = &curr->rt;
281 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200282 u64 delta_exec;
283
284 if (!task_has_rt_policy(curr))
285 return;
286
Ingo Molnard2819182007-08-09 11:16:47 +0200287 delta_exec = rq->clock - curr->se.exec_start;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200288 if (unlikely((s64)delta_exec < 0))
289 delta_exec = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200290
291 schedstat_set(curr->se.exec_max, max(curr->se.exec_max, delta_exec));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200292
293 curr->se.sum_exec_runtime += delta_exec;
Ingo Molnard2819182007-08-09 11:16:47 +0200294 curr->se.exec_start = rq->clock;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100295 cpuacct_charge(curr, delta_exec);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100296
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100297 rt_rq->rt_time += delta_exec;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100298 if (sched_rt_runtime_exceeded(rt_rq))
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100299 resched_task(curr);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200300}
301
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100302static inline
303void inc_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
Steven Rostedt63489e42008-01-25 21:08:03 +0100304{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100305 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
306 rt_rq->rt_nr_running++;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100307#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100308 if (rt_se_prio(rt_se) < rt_rq->highest_prio)
309 rt_rq->highest_prio = rt_se_prio(rt_se);
310#endif
Steven Rostedt764a9d62008-01-25 21:08:04 +0100311#ifdef CONFIG_SMP
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100312 if (rt_se->nr_cpus_allowed > 1) {
313 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins73fe6aae2008-01-25 21:08:07 +0100314 rq->rt.rt_nr_migratory++;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100315 }
Gregory Haskins73fe6aae2008-01-25 21:08:07 +0100316
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100317 update_rt_migration(rq_of_rt_rq(rt_rq));
318#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100319#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100320 if (rt_se_boosted(rt_se))
321 rt_rq->rt_nr_boosted++;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200322
323 if (rt_rq->tg)
324 start_rt_bandwidth(&rt_rq->tg->rt_bandwidth);
325#else
326 start_rt_bandwidth(&def_rt_bandwidth);
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100327#endif
Steven Rostedt63489e42008-01-25 21:08:03 +0100328}
329
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100330static inline
331void dec_rt_tasks(struct sched_rt_entity *rt_se, struct rt_rq *rt_rq)
Steven Rostedt63489e42008-01-25 21:08:03 +0100332{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100333 WARN_ON(!rt_prio(rt_se_prio(rt_se)));
334 WARN_ON(!rt_rq->rt_nr_running);
335 rt_rq->rt_nr_running--;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100336#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100337 if (rt_rq->rt_nr_running) {
Steven Rostedt764a9d62008-01-25 21:08:04 +0100338 struct rt_prio_array *array;
339
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100340 WARN_ON(rt_se_prio(rt_se) < rt_rq->highest_prio);
341 if (rt_se_prio(rt_se) == rt_rq->highest_prio) {
Steven Rostedt764a9d62008-01-25 21:08:04 +0100342 /* recalculate */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100343 array = &rt_rq->active;
344 rt_rq->highest_prio =
Steven Rostedt764a9d62008-01-25 21:08:04 +0100345 sched_find_first_bit(array->bitmap);
346 } /* otherwise leave rq->highest prio alone */
347 } else
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100348 rt_rq->highest_prio = MAX_RT_PRIO;
349#endif
350#ifdef CONFIG_SMP
351 if (rt_se->nr_cpus_allowed > 1) {
352 struct rq *rq = rq_of_rt_rq(rt_rq);
Gregory Haskins73fe6aae2008-01-25 21:08:07 +0100353 rq->rt.rt_nr_migratory--;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100354 }
Gregory Haskins73fe6aae2008-01-25 21:08:07 +0100355
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100356 update_rt_migration(rq_of_rt_rq(rt_rq));
Steven Rostedt764a9d62008-01-25 21:08:04 +0100357#endif /* CONFIG_SMP */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100358#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100359 if (rt_se_boosted(rt_se))
360 rt_rq->rt_nr_boosted--;
361
362 WARN_ON(!rt_rq->rt_nr_running && rt_rq->rt_nr_boosted);
363#endif
Steven Rostedt63489e42008-01-25 21:08:03 +0100364}
365
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100366static void enqueue_rt_entity(struct sched_rt_entity *rt_se)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200367{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100368 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
369 struct rt_prio_array *array = &rt_rq->active;
370 struct rt_rq *group_rq = group_rt_rq(rt_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200371
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100372 if (group_rq && rt_rq_throttled(group_rq))
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100373 return;
Steven Rostedt63489e42008-01-25 21:08:03 +0100374
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100375 list_add_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se));
376 __set_bit(rt_se_prio(rt_se), array->bitmap);
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +0100377
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100378 inc_rt_tasks(rt_se, rt_rq);
379}
380
381static void dequeue_rt_entity(struct sched_rt_entity *rt_se)
382{
383 struct rt_rq *rt_rq = rt_rq_of_se(rt_se);
384 struct rt_prio_array *array = &rt_rq->active;
385
386 list_del_init(&rt_se->run_list);
387 if (list_empty(array->queue + rt_se_prio(rt_se)))
388 __clear_bit(rt_se_prio(rt_se), array->bitmap);
389
390 dec_rt_tasks(rt_se, rt_rq);
391}
392
393/*
394 * Because the prio of an upper entry depends on the lower
395 * entries, we must remove entries top - down.
396 *
397 * XXX: O(1/2 h^2) because we can only walk up, not down the chain.
398 * doesn't matter much for now, as h=2 for GROUP_SCHED.
399 */
400static void dequeue_rt_stack(struct task_struct *p)
401{
402 struct sched_rt_entity *rt_se, *top_se;
403
404 /*
405 * dequeue all, top - down.
406 */
407 do {
408 rt_se = &p->rt;
409 top_se = NULL;
410 for_each_sched_rt_entity(rt_se) {
411 if (on_rt_rq(rt_se))
412 top_se = rt_se;
413 }
414 if (top_se)
415 dequeue_rt_entity(top_se);
416 } while (top_se);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200417}
418
419/*
420 * Adding/removing a task to/from a priority array:
421 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100422static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup)
423{
424 struct sched_rt_entity *rt_se = &p->rt;
425
426 if (wakeup)
427 rt_se->timeout = 0;
428
429 dequeue_rt_stack(p);
430
431 /*
432 * enqueue everybody, bottom - up.
433 */
434 for_each_sched_rt_entity(rt_se)
435 enqueue_rt_entity(rt_se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100436}
437
Ingo Molnarf02231e2007-08-09 11:16:48 +0200438static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200439{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100440 struct sched_rt_entity *rt_se = &p->rt;
441 struct rt_rq *rt_rq;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200442
Ingo Molnarf1e14ef2007-08-09 11:16:48 +0200443 update_curr_rt(rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200444
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100445 dequeue_rt_stack(p);
Steven Rostedt63489e42008-01-25 21:08:03 +0100446
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100447 /*
448 * re-enqueue all non-empty rt_rq entities.
449 */
450 for_each_sched_rt_entity(rt_se) {
451 rt_rq = group_rt_rq(rt_se);
452 if (rt_rq && rt_rq->rt_nr_running)
453 enqueue_rt_entity(rt_se);
454 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200455}
456
457/*
458 * Put task to the end of the run list without the overhead of dequeue
459 * followed by enqueue.
460 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100461static
462void requeue_rt_entity(struct rt_rq *rt_rq, struct sched_rt_entity *rt_se)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200463{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100464 struct rt_prio_array *array = &rt_rq->active;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200465
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100466 list_move_tail(&rt_se->run_list, array->queue + rt_se_prio(rt_se));
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200467}
468
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100469static void requeue_task_rt(struct rq *rq, struct task_struct *p)
470{
471 struct sched_rt_entity *rt_se = &p->rt;
472 struct rt_rq *rt_rq;
473
474 for_each_sched_rt_entity(rt_se) {
475 rt_rq = rt_rq_of_se(rt_se);
476 requeue_rt_entity(rt_rq, rt_se);
477 }
478}
479
480static void yield_task_rt(struct rq *rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200481{
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +0200482 requeue_task_rt(rq, rq->curr);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200483}
484
Gregory Haskinse7693a32008-01-25 21:08:09 +0100485#ifdef CONFIG_SMP
Gregory Haskins318e0892008-01-25 21:08:10 +0100486static int find_lowest_rq(struct task_struct *task);
487
Gregory Haskinse7693a32008-01-25 21:08:09 +0100488static int select_task_rq_rt(struct task_struct *p, int sync)
489{
Gregory Haskins318e0892008-01-25 21:08:10 +0100490 struct rq *rq = task_rq(p);
491
492 /*
Steven Rostedte1f47d82008-01-25 21:08:12 +0100493 * If the current task is an RT task, then
494 * try to see if we can wake this RT task up on another
495 * runqueue. Otherwise simply start this RT task
496 * on its current runqueue.
497 *
498 * We want to avoid overloading runqueues. Even if
499 * the RT task is of higher priority than the current RT task.
500 * RT tasks behave differently than other tasks. If
501 * one gets preempted, we try to push it off to another queue.
502 * So trying to keep a preempting RT task on the same
503 * cache hot CPU will force the running RT task to
504 * a cold CPU. So we waste all the cache for the lower
505 * RT task in hopes of saving some of a RT task
506 * that is just being woken and probably will have
507 * cold cache anyway.
Gregory Haskins318e0892008-01-25 21:08:10 +0100508 */
Gregory Haskins17b32792008-01-25 21:08:13 +0100509 if (unlikely(rt_task(rq->curr)) &&
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100510 (p->rt.nr_cpus_allowed > 1)) {
Gregory Haskins318e0892008-01-25 21:08:10 +0100511 int cpu = find_lowest_rq(p);
512
513 return (cpu == -1) ? task_cpu(p) : cpu;
514 }
515
516 /*
517 * Otherwise, just let it ride on the affined RQ and the
518 * post-schedule router will push the preempted task away
519 */
Gregory Haskinse7693a32008-01-25 21:08:09 +0100520 return task_cpu(p);
521}
522#endif /* CONFIG_SMP */
523
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200524/*
525 * Preempt the current task with a newly woken task if needed:
526 */
527static void check_preempt_curr_rt(struct rq *rq, struct task_struct *p)
528{
529 if (p->prio < rq->curr->prio)
530 resched_task(rq->curr);
531}
532
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100533static struct sched_rt_entity *pick_next_rt_entity(struct rq *rq,
534 struct rt_rq *rt_rq)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200535{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100536 struct rt_prio_array *array = &rt_rq->active;
537 struct sched_rt_entity *next = NULL;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200538 struct list_head *queue;
539 int idx;
540
541 idx = sched_find_first_bit(array->bitmap);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100542 BUG_ON(idx >= MAX_RT_PRIO);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200543
544 queue = array->queue + idx;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100545 next = list_entry(queue->next, struct sched_rt_entity, run_list);
Dmitry Adamushko326587b2008-01-25 21:08:34 +0100546
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200547 return next;
548}
549
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100550static struct task_struct *pick_next_task_rt(struct rq *rq)
551{
552 struct sched_rt_entity *rt_se;
553 struct task_struct *p;
554 struct rt_rq *rt_rq;
555
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100556 rt_rq = &rq->rt;
557
558 if (unlikely(!rt_rq->rt_nr_running))
559 return NULL;
560
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100561 if (rt_rq_throttled(rt_rq))
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100562 return NULL;
563
564 do {
565 rt_se = pick_next_rt_entity(rq, rt_rq);
Dmitry Adamushko326587b2008-01-25 21:08:34 +0100566 BUG_ON(!rt_se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100567 rt_rq = group_rt_rq(rt_se);
568 } while (rt_rq);
569
570 p = rt_task_of(rt_se);
571 p->se.exec_start = rq->clock;
572 return p;
573}
574
Ingo Molnar31ee5292007-08-09 11:16:49 +0200575static void put_prev_task_rt(struct rq *rq, struct task_struct *p)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200576{
Ingo Molnarf1e14ef2007-08-09 11:16:48 +0200577 update_curr_rt(rq);
Ingo Molnarbb44e5d2007-07-09 18:51:58 +0200578 p->se.exec_start = 0;
579}
580
Peter Williams681f3e62007-10-24 18:23:51 +0200581#ifdef CONFIG_SMP
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100582
Steven Rostedte8fa1362008-01-25 21:08:05 +0100583/* Only try algorithms three times */
584#define RT_MAX_TRIES 3
585
586static int double_lock_balance(struct rq *this_rq, struct rq *busiest);
587static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep);
588
Steven Rostedtf65eda42008-01-25 21:08:07 +0100589static int pick_rt_task(struct rq *rq, struct task_struct *p, int cpu)
590{
591 if (!task_running(rq, p) &&
Gregory Haskins73fe6aae2008-01-25 21:08:07 +0100592 (cpu < 0 || cpu_isset(cpu, p->cpus_allowed)) &&
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100593 (p->rt.nr_cpus_allowed > 1))
Steven Rostedtf65eda42008-01-25 21:08:07 +0100594 return 1;
595 return 0;
596}
597
Steven Rostedte8fa1362008-01-25 21:08:05 +0100598/* Return the second highest RT task, NULL otherwise */
Ingo Molnar79064fb2008-01-25 21:08:14 +0100599static struct task_struct *pick_next_highest_task_rt(struct rq *rq, int cpu)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100600{
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100601 struct task_struct *next = NULL;
602 struct sched_rt_entity *rt_se;
603 struct rt_prio_array *array;
604 struct rt_rq *rt_rq;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100605 int idx;
606
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100607 for_each_leaf_rt_rq(rt_rq, rq) {
608 array = &rt_rq->active;
609 idx = sched_find_first_bit(array->bitmap);
610 next_idx:
611 if (idx >= MAX_RT_PRIO)
612 continue;
613 if (next && next->prio < idx)
614 continue;
615 list_for_each_entry(rt_se, array->queue + idx, run_list) {
616 struct task_struct *p = rt_task_of(rt_se);
617 if (pick_rt_task(rq, p, cpu)) {
618 next = p;
619 break;
620 }
621 }
622 if (!next) {
623 idx = find_next_bit(array->bitmap, MAX_RT_PRIO, idx+1);
624 goto next_idx;
625 }
Steven Rostedte8fa1362008-01-25 21:08:05 +0100626 }
627
Steven Rostedte8fa1362008-01-25 21:08:05 +0100628 return next;
629}
630
631static DEFINE_PER_CPU(cpumask_t, local_cpu_mask);
632
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100633static int find_lowest_cpus(struct task_struct *task, cpumask_t *lowest_mask)
Gregory Haskins07b40322008-01-25 21:08:10 +0100634{
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100635 int lowest_prio = -1;
Steven Rostedt610bf052008-01-25 21:08:13 +0100636 int lowest_cpu = -1;
Gregory Haskins06f90db2008-01-25 21:08:13 +0100637 int count = 0;
Steven Rostedt610bf052008-01-25 21:08:13 +0100638 int cpu;
Gregory Haskins07b40322008-01-25 21:08:10 +0100639
Gregory Haskins637f5082008-01-25 21:08:18 +0100640 cpus_and(*lowest_mask, task_rq(task)->rd->online, task->cpus_allowed);
Gregory Haskins07b40322008-01-25 21:08:10 +0100641
642 /*
643 * Scan each rq for the lowest prio.
644 */
Steven Rostedt610bf052008-01-25 21:08:13 +0100645 for_each_cpu_mask(cpu, *lowest_mask) {
Gregory Haskins07b40322008-01-25 21:08:10 +0100646 struct rq *rq = cpu_rq(cpu);
647
Gregory Haskins07b40322008-01-25 21:08:10 +0100648 /* We look for lowest RT prio or non-rt CPU */
649 if (rq->rt.highest_prio >= MAX_RT_PRIO) {
Steven Rostedt610bf052008-01-25 21:08:13 +0100650 /*
651 * if we already found a low RT queue
652 * and now we found this non-rt queue
653 * clear the mask and set our bit.
654 * Otherwise just return the queue as is
655 * and the count==1 will cause the algorithm
656 * to use the first bit found.
657 */
658 if (lowest_cpu != -1) {
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100659 cpus_clear(*lowest_mask);
Steven Rostedt610bf052008-01-25 21:08:13 +0100660 cpu_set(rq->cpu, *lowest_mask);
661 }
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100662 return 1;
Gregory Haskins07b40322008-01-25 21:08:10 +0100663 }
664
665 /* no locking for now */
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100666 if ((rq->rt.highest_prio > task->prio)
667 && (rq->rt.highest_prio >= lowest_prio)) {
668 if (rq->rt.highest_prio > lowest_prio) {
669 /* new low - clear old data */
670 lowest_prio = rq->rt.highest_prio;
Steven Rostedt610bf052008-01-25 21:08:13 +0100671 lowest_cpu = cpu;
672 count = 0;
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100673 }
Gregory Haskins06f90db2008-01-25 21:08:13 +0100674 count++;
Steven Rostedt610bf052008-01-25 21:08:13 +0100675 } else
676 cpu_clear(cpu, *lowest_mask);
677 }
678
679 /*
680 * Clear out all the set bits that represent
681 * runqueues that were of higher prio than
682 * the lowest_prio.
683 */
684 if (lowest_cpu > 0) {
685 /*
686 * Perhaps we could add another cpumask op to
687 * zero out bits. Like cpu_zero_bits(cpumask, nrbits);
688 * Then that could be optimized to use memset and such.
689 */
690 for_each_cpu_mask(cpu, *lowest_mask) {
691 if (cpu >= lowest_cpu)
692 break;
693 cpu_clear(cpu, *lowest_mask);
Gregory Haskins07b40322008-01-25 21:08:10 +0100694 }
695 }
696
Gregory Haskins06f90db2008-01-25 21:08:13 +0100697 return count;
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100698}
699
700static inline int pick_optimal_cpu(int this_cpu, cpumask_t *mask)
701{
702 int first;
703
704 /* "this_cpu" is cheaper to preempt than a remote processor */
705 if ((this_cpu != -1) && cpu_isset(this_cpu, *mask))
706 return this_cpu;
707
708 first = first_cpu(*mask);
709 if (first != NR_CPUS)
710 return first;
711
712 return -1;
713}
714
715static int find_lowest_rq(struct task_struct *task)
716{
717 struct sched_domain *sd;
718 cpumask_t *lowest_mask = &__get_cpu_var(local_cpu_mask);
719 int this_cpu = smp_processor_id();
720 int cpu = task_cpu(task);
Gregory Haskins06f90db2008-01-25 21:08:13 +0100721 int count = find_lowest_cpus(task, lowest_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100722
Gregory Haskins06f90db2008-01-25 21:08:13 +0100723 if (!count)
724 return -1; /* No targets found */
725
726 /*
727 * There is no sense in performing an optimal search if only one
728 * target is found.
729 */
730 if (count == 1)
731 return first_cpu(*lowest_mask);
Gregory Haskins6e1254d2008-01-25 21:08:11 +0100732
733 /*
734 * At this point we have built a mask of cpus representing the
735 * lowest priority tasks in the system. Now we want to elect
736 * the best one based on our affinity and topology.
737 *
738 * We prioritize the last cpu that the task executed on since
739 * it is most likely cache-hot in that location.
740 */
741 if (cpu_isset(cpu, *lowest_mask))
742 return cpu;
743
744 /*
745 * Otherwise, we consult the sched_domains span maps to figure
746 * out which cpu is logically closest to our hot cache data.
747 */
748 if (this_cpu == cpu)
749 this_cpu = -1; /* Skip this_cpu opt if the same */
750
751 for_each_domain(cpu, sd) {
752 if (sd->flags & SD_WAKE_AFFINE) {
753 cpumask_t domain_mask;
754 int best_cpu;
755
756 cpus_and(domain_mask, sd->span, *lowest_mask);
757
758 best_cpu = pick_optimal_cpu(this_cpu,
759 &domain_mask);
760 if (best_cpu != -1)
761 return best_cpu;
762 }
763 }
764
765 /*
766 * And finally, if there were no matches within the domains
767 * just give the caller *something* to work with from the compatible
768 * locations.
769 */
770 return pick_optimal_cpu(this_cpu, lowest_mask);
Gregory Haskins07b40322008-01-25 21:08:10 +0100771}
772
Steven Rostedte8fa1362008-01-25 21:08:05 +0100773/* Will lock the rq it finds */
Ingo Molnar4df64c02008-01-25 21:08:15 +0100774static struct rq *find_lock_lowest_rq(struct task_struct *task, struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100775{
776 struct rq *lowest_rq = NULL;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100777 int tries;
Ingo Molnar4df64c02008-01-25 21:08:15 +0100778 int cpu;
Steven Rostedte8fa1362008-01-25 21:08:05 +0100779
780 for (tries = 0; tries < RT_MAX_TRIES; tries++) {
Gregory Haskins07b40322008-01-25 21:08:10 +0100781 cpu = find_lowest_rq(task);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100782
Gregory Haskins2de0b462008-01-25 21:08:10 +0100783 if ((cpu == -1) || (cpu == rq->cpu))
Steven Rostedte8fa1362008-01-25 21:08:05 +0100784 break;
785
Gregory Haskins07b40322008-01-25 21:08:10 +0100786 lowest_rq = cpu_rq(cpu);
787
Steven Rostedte8fa1362008-01-25 21:08:05 +0100788 /* if the prio of this runqueue changed, try again */
Gregory Haskins07b40322008-01-25 21:08:10 +0100789 if (double_lock_balance(rq, lowest_rq)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +0100790 /*
791 * We had to unlock the run queue. In
792 * the mean time, task could have
793 * migrated already or had its affinity changed.
794 * Also make sure that it wasn't scheduled on its rq.
795 */
Gregory Haskins07b40322008-01-25 21:08:10 +0100796 if (unlikely(task_rq(task) != rq ||
Ingo Molnar4df64c02008-01-25 21:08:15 +0100797 !cpu_isset(lowest_rq->cpu,
798 task->cpus_allowed) ||
Gregory Haskins07b40322008-01-25 21:08:10 +0100799 task_running(rq, task) ||
Steven Rostedte8fa1362008-01-25 21:08:05 +0100800 !task->se.on_rq)) {
Ingo Molnar4df64c02008-01-25 21:08:15 +0100801
Steven Rostedte8fa1362008-01-25 21:08:05 +0100802 spin_unlock(&lowest_rq->lock);
803 lowest_rq = NULL;
804 break;
805 }
806 }
807
808 /* If this rq is still suitable use it. */
809 if (lowest_rq->rt.highest_prio > task->prio)
810 break;
811
812 /* try again */
813 spin_unlock(&lowest_rq->lock);
814 lowest_rq = NULL;
815 }
816
817 return lowest_rq;
818}
819
820/*
821 * If the current CPU has more than one RT task, see if the non
822 * running task can migrate over to a CPU that is running a task
823 * of lesser priority.
824 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100825static int push_rt_task(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +0100826{
827 struct task_struct *next_task;
828 struct rq *lowest_rq;
829 int ret = 0;
830 int paranoid = RT_MAX_TRIES;
831
Gregory Haskinsa22d7fc12008-01-25 21:08:12 +0100832 if (!rq->rt.overloaded)
833 return 0;
834
Gregory Haskins697f0a42008-01-25 21:08:09 +0100835 next_task = pick_next_highest_task_rt(rq, -1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100836 if (!next_task)
837 return 0;
838
839 retry:
Gregory Haskins697f0a42008-01-25 21:08:09 +0100840 if (unlikely(next_task == rq->curr)) {
Steven Rostedtf65eda42008-01-25 21:08:07 +0100841 WARN_ON(1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100842 return 0;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100843 }
Steven Rostedte8fa1362008-01-25 21:08:05 +0100844
845 /*
846 * It's possible that the next_task slipped in of
847 * higher priority than current. If that's the case
848 * just reschedule current.
849 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100850 if (unlikely(next_task->prio < rq->curr->prio)) {
851 resched_task(rq->curr);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100852 return 0;
853 }
854
Gregory Haskins697f0a42008-01-25 21:08:09 +0100855 /* We might release rq lock */
Steven Rostedte8fa1362008-01-25 21:08:05 +0100856 get_task_struct(next_task);
857
858 /* find_lock_lowest_rq locks the rq if found */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100859 lowest_rq = find_lock_lowest_rq(next_task, rq);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100860 if (!lowest_rq) {
861 struct task_struct *task;
862 /*
Gregory Haskins697f0a42008-01-25 21:08:09 +0100863 * find lock_lowest_rq releases rq->lock
Steven Rostedte8fa1362008-01-25 21:08:05 +0100864 * so it is possible that next_task has changed.
865 * If it has, then try again.
866 */
Gregory Haskins697f0a42008-01-25 21:08:09 +0100867 task = pick_next_highest_task_rt(rq, -1);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100868 if (unlikely(task != next_task) && task && paranoid--) {
869 put_task_struct(next_task);
870 next_task = task;
871 goto retry;
872 }
873 goto out;
874 }
875
Gregory Haskins697f0a42008-01-25 21:08:09 +0100876 deactivate_task(rq, next_task, 0);
Steven Rostedte8fa1362008-01-25 21:08:05 +0100877 set_task_cpu(next_task, lowest_rq->cpu);
878 activate_task(lowest_rq, next_task, 0);
879
880 resched_task(lowest_rq->curr);
881
882 spin_unlock(&lowest_rq->lock);
883
884 ret = 1;
885out:
886 put_task_struct(next_task);
887
888 return ret;
889}
890
891/*
892 * TODO: Currently we just use the second highest prio task on
893 * the queue, and stop when it can't migrate (or there's
894 * no more RT tasks). There may be a case where a lower
895 * priority RT task has a different affinity than the
896 * higher RT task. In this case the lower RT task could
897 * possibly be able to migrate where as the higher priority
898 * RT task could not. We currently ignore this issue.
899 * Enhancements are welcome!
900 */
901static void push_rt_tasks(struct rq *rq)
902{
903 /* push_rt_task will return true if it moved an RT */
904 while (push_rt_task(rq))
905 ;
906}
907
Steven Rostedtf65eda42008-01-25 21:08:07 +0100908static int pull_rt_task(struct rq *this_rq)
909{
Ingo Molnar80bf3172008-01-25 21:08:17 +0100910 int this_cpu = this_rq->cpu, ret = 0, cpu;
911 struct task_struct *p, *next;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100912 struct rq *src_rq;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100913
Gregory Haskins637f5082008-01-25 21:08:18 +0100914 if (likely(!rt_overloaded(this_rq)))
Steven Rostedtf65eda42008-01-25 21:08:07 +0100915 return 0;
916
917 next = pick_next_task_rt(this_rq);
918
Gregory Haskins637f5082008-01-25 21:08:18 +0100919 for_each_cpu_mask(cpu, this_rq->rd->rto_mask) {
Steven Rostedtf65eda42008-01-25 21:08:07 +0100920 if (this_cpu == cpu)
921 continue;
922
923 src_rq = cpu_rq(cpu);
Steven Rostedtf65eda42008-01-25 21:08:07 +0100924 /*
925 * We can potentially drop this_rq's lock in
926 * double_lock_balance, and another CPU could
927 * steal our next task - hence we must cause
928 * the caller to recalculate the next task
929 * in that case:
930 */
931 if (double_lock_balance(this_rq, src_rq)) {
932 struct task_struct *old_next = next;
Ingo Molnar80bf3172008-01-25 21:08:17 +0100933
Steven Rostedtf65eda42008-01-25 21:08:07 +0100934 next = pick_next_task_rt(this_rq);
935 if (next != old_next)
936 ret = 1;
937 }
938
939 /*
940 * Are there still pullable RT tasks?
941 */
Mike Galbraith614ee1f2008-01-25 21:08:30 +0100942 if (src_rq->rt.rt_nr_running <= 1)
943 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100944
Steven Rostedtf65eda42008-01-25 21:08:07 +0100945 p = pick_next_highest_task_rt(src_rq, this_cpu);
946
947 /*
948 * Do we have an RT task that preempts
949 * the to-be-scheduled task?
950 */
951 if (p && (!next || (p->prio < next->prio))) {
952 WARN_ON(p == src_rq->curr);
953 WARN_ON(!p->se.on_rq);
954
955 /*
956 * There's a chance that p is higher in priority
957 * than what's currently running on its cpu.
958 * This is just that p is wakeing up and hasn't
959 * had a chance to schedule. We only pull
960 * p if it is lower in priority than the
961 * current task on the run queue or
962 * this_rq next task is lower in prio than
963 * the current task on that rq.
964 */
965 if (p->prio < src_rq->curr->prio ||
966 (next && next->prio < src_rq->curr->prio))
Mike Galbraith614ee1f2008-01-25 21:08:30 +0100967 goto skip;
Steven Rostedtf65eda42008-01-25 21:08:07 +0100968
969 ret = 1;
970
971 deactivate_task(src_rq, p, 0);
972 set_task_cpu(p, this_cpu);
973 activate_task(this_rq, p, 0);
974 /*
975 * We continue with the search, just in
976 * case there's an even higher prio task
977 * in another runqueue. (low likelyhood
978 * but possible)
Ingo Molnar80bf3172008-01-25 21:08:17 +0100979 *
Steven Rostedtf65eda42008-01-25 21:08:07 +0100980 * Update next so that we won't pick a task
981 * on another cpu with a priority lower (or equal)
982 * than the one we just picked.
983 */
984 next = p;
985
986 }
Mike Galbraith614ee1f2008-01-25 21:08:30 +0100987 skip:
Steven Rostedtf65eda42008-01-25 21:08:07 +0100988 spin_unlock(&src_rq->lock);
989 }
990
991 return ret;
992}
993
Steven Rostedt9a897c52008-01-25 21:08:22 +0100994static void pre_schedule_rt(struct rq *rq, struct task_struct *prev)
Steven Rostedtf65eda42008-01-25 21:08:07 +0100995{
996 /* Try to pull RT tasks here if we lower this rq's prio */
Ingo Molnar7f51f292008-01-25 21:08:17 +0100997 if (unlikely(rt_task(prev)) && rq->rt.highest_prio > prev->prio)
Steven Rostedtf65eda42008-01-25 21:08:07 +0100998 pull_rt_task(rq);
999}
1000
Steven Rostedt9a897c52008-01-25 21:08:22 +01001001static void post_schedule_rt(struct rq *rq)
Steven Rostedte8fa1362008-01-25 21:08:05 +01001002{
1003 /*
1004 * If we have more than one rt_task queued, then
1005 * see if we can push the other rt_tasks off to other CPUS.
1006 * Note we may release the rq lock, and since
1007 * the lock was owned by prev, we need to release it
1008 * first via finish_lock_switch and then reaquire it here.
1009 */
Gregory Haskinsa22d7fc12008-01-25 21:08:12 +01001010 if (unlikely(rq->rt.overloaded)) {
Steven Rostedte8fa1362008-01-25 21:08:05 +01001011 spin_lock_irq(&rq->lock);
1012 push_rt_tasks(rq);
1013 spin_unlock_irq(&rq->lock);
1014 }
1015}
1016
Steven Rostedt4642daf2008-01-25 21:08:07 +01001017
Steven Rostedt9a897c52008-01-25 21:08:22 +01001018static void task_wake_up_rt(struct rq *rq, struct task_struct *p)
Steven Rostedt4642daf2008-01-25 21:08:07 +01001019{
Steven Rostedt9a897c52008-01-25 21:08:22 +01001020 if (!task_running(rq, p) &&
Gregory Haskinsa22d7fc12008-01-25 21:08:12 +01001021 (p->prio >= rq->rt.highest_prio) &&
1022 rq->rt.overloaded)
Steven Rostedt4642daf2008-01-25 21:08:07 +01001023 push_rt_tasks(rq);
1024}
1025
Peter Williams43010652007-08-09 11:16:46 +02001026static unsigned long
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001027load_balance_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02001028 unsigned long max_load_move,
1029 struct sched_domain *sd, enum cpu_idle_type idle,
1030 int *all_pinned, int *this_best_prio)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001031{
Steven Rostedtc7a1e462008-01-25 21:08:07 +01001032 /* don't touch RT tasks */
1033 return 0;
Peter Williamse1d14842007-10-24 18:23:51 +02001034}
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001035
Peter Williamse1d14842007-10-24 18:23:51 +02001036static int
1037move_one_task_rt(struct rq *this_rq, int this_cpu, struct rq *busiest,
1038 struct sched_domain *sd, enum cpu_idle_type idle)
1039{
Steven Rostedtc7a1e462008-01-25 21:08:07 +01001040 /* don't touch RT tasks */
1041 return 0;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001042}
Ingo Molnardeeeccd2008-01-25 21:08:15 +01001043
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01001044static void set_cpus_allowed_rt(struct task_struct *p, cpumask_t *new_mask)
1045{
1046 int weight = cpus_weight(*new_mask);
1047
1048 BUG_ON(!rt_task(p));
1049
1050 /*
1051 * Update the migration status of the RQ if we have an RT task
1052 * which is running AND changing its weight value.
1053 */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001054 if (p->se.on_rq && (weight != p->rt.nr_cpus_allowed)) {
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01001055 struct rq *rq = task_rq(p);
1056
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001057 if ((p->rt.nr_cpus_allowed <= 1) && (weight > 1)) {
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01001058 rq->rt.rt_nr_migratory++;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001059 } else if ((p->rt.nr_cpus_allowed > 1) && (weight <= 1)) {
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01001060 BUG_ON(!rq->rt.rt_nr_migratory);
1061 rq->rt.rt_nr_migratory--;
1062 }
1063
1064 update_rt_migration(rq);
1065 }
1066
1067 p->cpus_allowed = *new_mask;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001068 p->rt.nr_cpus_allowed = weight;
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01001069}
Ingo Molnardeeeccd2008-01-25 21:08:15 +01001070
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001071/* Assumes rq->lock is held */
1072static void join_domain_rt(struct rq *rq)
1073{
1074 if (rq->rt.overloaded)
1075 rt_set_overload(rq);
1076}
1077
1078/* Assumes rq->lock is held */
1079static void leave_domain_rt(struct rq *rq)
1080{
1081 if (rq->rt.overloaded)
1082 rt_clear_overload(rq);
1083}
Steven Rostedtcb469842008-01-25 21:08:22 +01001084
1085/*
1086 * When switch from the rt queue, we bring ourselves to a position
1087 * that we might want to pull RT tasks from other runqueues.
1088 */
1089static void switched_from_rt(struct rq *rq, struct task_struct *p,
1090 int running)
1091{
1092 /*
1093 * If there are other RT tasks then we will reschedule
1094 * and the scheduling of the other RT tasks will handle
1095 * the balancing. But if we are the last RT task
1096 * we may need to handle the pulling of RT tasks
1097 * now.
1098 */
1099 if (!rq->rt.rt_nr_running)
1100 pull_rt_task(rq);
1101}
Steven Rostedte8fa1362008-01-25 21:08:05 +01001102#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001103
Steven Rostedtcb469842008-01-25 21:08:22 +01001104/*
1105 * When switching a task to RT, we may overload the runqueue
1106 * with RT tasks. In this case we try to push them off to
1107 * other runqueues.
1108 */
1109static void switched_to_rt(struct rq *rq, struct task_struct *p,
1110 int running)
1111{
1112 int check_resched = 1;
1113
1114 /*
1115 * If we are already running, then there's nothing
1116 * that needs to be done. But if we are not running
1117 * we may need to preempt the current running task.
1118 * If that current running task is also an RT task
1119 * then see if we can move to another run queue.
1120 */
1121 if (!running) {
1122#ifdef CONFIG_SMP
1123 if (rq->rt.overloaded && push_rt_task(rq) &&
1124 /* Don't resched if we changed runqueues */
1125 rq != task_rq(p))
1126 check_resched = 0;
1127#endif /* CONFIG_SMP */
1128 if (check_resched && p->prio < rq->curr->prio)
1129 resched_task(rq->curr);
1130 }
1131}
1132
1133/*
1134 * Priority of the task has changed. This may cause
1135 * us to initiate a push or pull.
1136 */
1137static void prio_changed_rt(struct rq *rq, struct task_struct *p,
1138 int oldprio, int running)
1139{
1140 if (running) {
1141#ifdef CONFIG_SMP
1142 /*
1143 * If our priority decreases while running, we
1144 * may need to pull tasks to this runqueue.
1145 */
1146 if (oldprio < p->prio)
1147 pull_rt_task(rq);
1148 /*
1149 * If there's a higher priority task waiting to run
Steven Rostedt6fa46fa2008-03-05 10:00:12 -05001150 * then reschedule. Note, the above pull_rt_task
1151 * can release the rq lock and p could migrate.
1152 * Only reschedule if p is still on the same runqueue.
Steven Rostedtcb469842008-01-25 21:08:22 +01001153 */
Steven Rostedt6fa46fa2008-03-05 10:00:12 -05001154 if (p->prio > rq->rt.highest_prio && rq->curr == p)
Steven Rostedtcb469842008-01-25 21:08:22 +01001155 resched_task(p);
1156#else
1157 /* For UP simply resched on drop of prio */
1158 if (oldprio < p->prio)
1159 resched_task(p);
1160#endif /* CONFIG_SMP */
1161 } else {
1162 /*
1163 * This task is not running, but if it is
1164 * greater than the current running task
1165 * then reschedule.
1166 */
1167 if (p->prio < rq->curr->prio)
1168 resched_task(rq->curr);
1169 }
1170}
1171
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001172static void watchdog(struct rq *rq, struct task_struct *p)
1173{
1174 unsigned long soft, hard;
1175
1176 if (!p->signal)
1177 return;
1178
1179 soft = p->signal->rlim[RLIMIT_RTTIME].rlim_cur;
1180 hard = p->signal->rlim[RLIMIT_RTTIME].rlim_max;
1181
1182 if (soft != RLIM_INFINITY) {
1183 unsigned long next;
1184
1185 p->rt.timeout++;
1186 next = DIV_ROUND_UP(min(soft, hard), USEC_PER_SEC/HZ);
Peter Zijlstra5a52dd52008-01-25 21:08:32 +01001187 if (p->rt.timeout > next)
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001188 p->it_sched_expires = p->se.sum_exec_runtime;
1189 }
1190}
Steven Rostedtcb469842008-01-25 21:08:22 +01001191
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001192static void task_tick_rt(struct rq *rq, struct task_struct *p, int queued)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001193{
Peter Zijlstra67e2be02007-12-20 15:01:17 +01001194 update_curr_rt(rq);
1195
Peter Zijlstra78f2c7d2008-01-25 21:08:27 +01001196 watchdog(rq, p);
1197
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001198 /*
1199 * RR tasks need a special form of timeslice management.
1200 * FIFO tasks have no timeslices.
1201 */
1202 if (p->policy != SCHED_RR)
1203 return;
1204
Peter Zijlstrafa717062008-01-25 21:08:27 +01001205 if (--p->rt.time_slice)
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001206 return;
1207
Peter Zijlstrafa717062008-01-25 21:08:27 +01001208 p->rt.time_slice = DEF_TIMESLICE;
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001209
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02001210 /*
1211 * Requeue to the end of queue if we are not the only element
1212 * on the queue:
1213 */
Peter Zijlstrafa717062008-01-25 21:08:27 +01001214 if (p->rt.run_list.prev != p->rt.run_list.next) {
Dmitry Adamushko98fbc792007-08-24 20:39:10 +02001215 requeue_task_rt(rq, p);
1216 set_tsk_need_resched(p);
1217 }
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001218}
1219
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001220static void set_curr_task_rt(struct rq *rq)
1221{
1222 struct task_struct *p = rq->curr;
1223
1224 p->se.exec_start = rq->clock;
1225}
1226
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001227const struct sched_class rt_sched_class = {
1228 .next = &fair_sched_class,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001229 .enqueue_task = enqueue_task_rt,
1230 .dequeue_task = dequeue_task_rt,
1231 .yield_task = yield_task_rt,
Gregory Haskinse7693a32008-01-25 21:08:09 +01001232#ifdef CONFIG_SMP
1233 .select_task_rq = select_task_rq_rt,
1234#endif /* CONFIG_SMP */
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001235
1236 .check_preempt_curr = check_preempt_curr_rt,
1237
1238 .pick_next_task = pick_next_task_rt,
1239 .put_prev_task = put_prev_task_rt,
1240
Peter Williams681f3e62007-10-24 18:23:51 +02001241#ifdef CONFIG_SMP
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001242 .load_balance = load_balance_rt,
Peter Williamse1d14842007-10-24 18:23:51 +02001243 .move_one_task = move_one_task_rt,
Gregory Haskins73fe6aae2008-01-25 21:08:07 +01001244 .set_cpus_allowed = set_cpus_allowed_rt,
Ingo Molnarbdd7c812008-01-25 21:08:18 +01001245 .join_domain = join_domain_rt,
1246 .leave_domain = leave_domain_rt,
Steven Rostedt9a897c52008-01-25 21:08:22 +01001247 .pre_schedule = pre_schedule_rt,
1248 .post_schedule = post_schedule_rt,
1249 .task_wake_up = task_wake_up_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01001250 .switched_from = switched_from_rt,
Peter Williams681f3e62007-10-24 18:23:51 +02001251#endif
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001252
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001253 .set_curr_task = set_curr_task_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001254 .task_tick = task_tick_rt,
Steven Rostedtcb469842008-01-25 21:08:22 +01001255
1256 .prio_changed = prio_changed_rt,
1257 .switched_to = switched_to_rt,
Ingo Molnarbb44e5d2007-07-09 18:51:58 +02001258};