blob: 21a0aa6f810d8580545fbd884a944993f8a2b366 [file] [log] [blame]
Dario Faggioliaab03e02013-11-28 11:14:43 +01001/*
2 * Deadline Scheduling Class (SCHED_DEADLINE)
3 *
4 * Earliest Deadline First (EDF) + Constant Bandwidth Server (CBS).
5 *
6 * Tasks that periodically executes their instances for less than their
7 * runtime won't miss any of their deadlines.
8 * Tasks that are not periodic or sporadic or that tries to execute more
9 * than their reserved bandwidth will be slowed down (and may potentially
10 * miss some of their deadlines), and won't affect any other task.
11 *
12 * Copyright (C) 2012 Dario Faggioli <raistlin@linux.it>,
Juri Lelli1baca4c2013-11-07 14:43:38 +010013 * Juri Lelli <juri.lelli@gmail.com>,
Dario Faggioliaab03e02013-11-28 11:14:43 +010014 * Michael Trimarchi <michael@amarulasolutions.com>,
15 * Fabio Checconi <fchecconi@gmail.com>
16 */
17#include "sched.h"
18
Juri Lelli6bfd6d72013-11-07 14:43:47 +010019#include <linux/slab.h>
20
Dario Faggioli332ac172013-11-07 14:43:45 +010021struct dl_bandwidth def_dl_bandwidth;
22
Dario Faggioliaab03e02013-11-28 11:14:43 +010023static inline struct task_struct *dl_task_of(struct sched_dl_entity *dl_se)
24{
25 return container_of(dl_se, struct task_struct, dl);
26}
27
28static inline struct rq *rq_of_dl_rq(struct dl_rq *dl_rq)
29{
30 return container_of(dl_rq, struct rq, dl);
31}
32
33static inline struct dl_rq *dl_rq_of_se(struct sched_dl_entity *dl_se)
34{
35 struct task_struct *p = dl_task_of(dl_se);
36 struct rq *rq = task_rq(p);
37
38 return &rq->dl;
39}
40
41static inline int on_dl_rq(struct sched_dl_entity *dl_se)
42{
43 return !RB_EMPTY_NODE(&dl_se->rb_node);
44}
45
46static inline int is_leftmost(struct task_struct *p, struct dl_rq *dl_rq)
47{
48 struct sched_dl_entity *dl_se = &p->dl;
49
50 return dl_rq->rb_leftmost == &dl_se->rb_node;
51}
52
Dario Faggioli332ac172013-11-07 14:43:45 +010053void init_dl_bandwidth(struct dl_bandwidth *dl_b, u64 period, u64 runtime)
54{
55 raw_spin_lock_init(&dl_b->dl_runtime_lock);
56 dl_b->dl_period = period;
57 dl_b->dl_runtime = runtime;
58}
59
Dario Faggioli332ac172013-11-07 14:43:45 +010060void init_dl_bw(struct dl_bw *dl_b)
61{
62 raw_spin_lock_init(&dl_b->lock);
63 raw_spin_lock(&def_dl_bandwidth.dl_runtime_lock);
Peter Zijlstra17248132013-12-17 12:44:49 +010064 if (global_rt_runtime() == RUNTIME_INF)
Dario Faggioli332ac172013-11-07 14:43:45 +010065 dl_b->bw = -1;
66 else
Peter Zijlstra17248132013-12-17 12:44:49 +010067 dl_b->bw = to_ratio(global_rt_period(), global_rt_runtime());
Dario Faggioli332ac172013-11-07 14:43:45 +010068 raw_spin_unlock(&def_dl_bandwidth.dl_runtime_lock);
69 dl_b->total_bw = 0;
70}
71
Abel Vesa07c54f72015-03-03 13:50:27 +020072void init_dl_rq(struct dl_rq *dl_rq)
Dario Faggioliaab03e02013-11-28 11:14:43 +010073{
74 dl_rq->rb_root = RB_ROOT;
Juri Lelli1baca4c2013-11-07 14:43:38 +010075
76#ifdef CONFIG_SMP
77 /* zero means no -deadline tasks */
78 dl_rq->earliest_dl.curr = dl_rq->earliest_dl.next = 0;
79
80 dl_rq->dl_nr_migratory = 0;
81 dl_rq->overloaded = 0;
82 dl_rq->pushable_dl_tasks_root = RB_ROOT;
Dario Faggioli332ac172013-11-07 14:43:45 +010083#else
84 init_dl_bw(&dl_rq->dl_bw);
Juri Lelli1baca4c2013-11-07 14:43:38 +010085#endif
Dario Faggioliaab03e02013-11-28 11:14:43 +010086}
87
Juri Lelli1baca4c2013-11-07 14:43:38 +010088#ifdef CONFIG_SMP
89
90static inline int dl_overloaded(struct rq *rq)
91{
92 return atomic_read(&rq->rd->dlo_count);
93}
94
95static inline void dl_set_overload(struct rq *rq)
96{
97 if (!rq->online)
98 return;
99
100 cpumask_set_cpu(rq->cpu, rq->rd->dlo_mask);
101 /*
102 * Must be visible before the overload count is
103 * set (as in sched_rt.c).
104 *
105 * Matched by the barrier in pull_dl_task().
106 */
107 smp_wmb();
108 atomic_inc(&rq->rd->dlo_count);
109}
110
111static inline void dl_clear_overload(struct rq *rq)
112{
113 if (!rq->online)
114 return;
115
116 atomic_dec(&rq->rd->dlo_count);
117 cpumask_clear_cpu(rq->cpu, rq->rd->dlo_mask);
118}
119
120static void update_dl_migration(struct dl_rq *dl_rq)
121{
Kirill Tkhai995b9ea2014-02-18 02:24:13 +0400122 if (dl_rq->dl_nr_migratory && dl_rq->dl_nr_running > 1) {
Juri Lelli1baca4c2013-11-07 14:43:38 +0100123 if (!dl_rq->overloaded) {
124 dl_set_overload(rq_of_dl_rq(dl_rq));
125 dl_rq->overloaded = 1;
126 }
127 } else if (dl_rq->overloaded) {
128 dl_clear_overload(rq_of_dl_rq(dl_rq));
129 dl_rq->overloaded = 0;
130 }
131}
132
133static void inc_dl_migration(struct sched_dl_entity *dl_se, struct dl_rq *dl_rq)
134{
135 struct task_struct *p = dl_task_of(dl_se);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100136
Juri Lelli1baca4c2013-11-07 14:43:38 +0100137 if (p->nr_cpus_allowed > 1)
138 dl_rq->dl_nr_migratory++;
139
140 update_dl_migration(dl_rq);
141}
142
143static void dec_dl_migration(struct sched_dl_entity *dl_se, struct dl_rq *dl_rq)
144{
145 struct task_struct *p = dl_task_of(dl_se);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100146
Juri Lelli1baca4c2013-11-07 14:43:38 +0100147 if (p->nr_cpus_allowed > 1)
148 dl_rq->dl_nr_migratory--;
149
150 update_dl_migration(dl_rq);
151}
152
153/*
154 * The list of pushable -deadline task is not a plist, like in
155 * sched_rt.c, it is an rb-tree with tasks ordered by deadline.
156 */
157static void enqueue_pushable_dl_task(struct rq *rq, struct task_struct *p)
158{
159 struct dl_rq *dl_rq = &rq->dl;
160 struct rb_node **link = &dl_rq->pushable_dl_tasks_root.rb_node;
161 struct rb_node *parent = NULL;
162 struct task_struct *entry;
163 int leftmost = 1;
164
165 BUG_ON(!RB_EMPTY_NODE(&p->pushable_dl_tasks));
166
167 while (*link) {
168 parent = *link;
169 entry = rb_entry(parent, struct task_struct,
170 pushable_dl_tasks);
171 if (dl_entity_preempt(&p->dl, &entry->dl))
172 link = &parent->rb_left;
173 else {
174 link = &parent->rb_right;
175 leftmost = 0;
176 }
177 }
178
Wanpeng Li7d92de32015-12-03 17:42:10 +0800179 if (leftmost) {
Juri Lelli1baca4c2013-11-07 14:43:38 +0100180 dl_rq->pushable_dl_tasks_leftmost = &p->pushable_dl_tasks;
Wanpeng Li7d92de32015-12-03 17:42:10 +0800181 dl_rq->earliest_dl.next = p->dl.deadline;
182 }
Juri Lelli1baca4c2013-11-07 14:43:38 +0100183
184 rb_link_node(&p->pushable_dl_tasks, parent, link);
185 rb_insert_color(&p->pushable_dl_tasks, &dl_rq->pushable_dl_tasks_root);
186}
187
188static void dequeue_pushable_dl_task(struct rq *rq, struct task_struct *p)
189{
190 struct dl_rq *dl_rq = &rq->dl;
191
192 if (RB_EMPTY_NODE(&p->pushable_dl_tasks))
193 return;
194
195 if (dl_rq->pushable_dl_tasks_leftmost == &p->pushable_dl_tasks) {
196 struct rb_node *next_node;
197
198 next_node = rb_next(&p->pushable_dl_tasks);
199 dl_rq->pushable_dl_tasks_leftmost = next_node;
Wanpeng Li7d92de32015-12-03 17:42:10 +0800200 if (next_node) {
201 dl_rq->earliest_dl.next = rb_entry(next_node,
202 struct task_struct, pushable_dl_tasks)->dl.deadline;
203 }
Juri Lelli1baca4c2013-11-07 14:43:38 +0100204 }
205
206 rb_erase(&p->pushable_dl_tasks, &dl_rq->pushable_dl_tasks_root);
207 RB_CLEAR_NODE(&p->pushable_dl_tasks);
208}
209
210static inline int has_pushable_dl_tasks(struct rq *rq)
211{
212 return !RB_EMPTY_ROOT(&rq->dl.pushable_dl_tasks_root);
213}
214
215static int push_dl_task(struct rq *rq);
216
Peter Zijlstradc877342014-02-12 15:47:29 +0100217static inline bool need_pull_dl_task(struct rq *rq, struct task_struct *prev)
218{
219 return dl_task(prev);
220}
221
Peter Zijlstra9916e212015-06-11 14:46:43 +0200222static DEFINE_PER_CPU(struct callback_head, dl_push_head);
223static DEFINE_PER_CPU(struct callback_head, dl_pull_head);
Peter Zijlstrae3fca9e2015-06-11 14:46:37 +0200224
225static void push_dl_tasks(struct rq *);
Peter Zijlstra9916e212015-06-11 14:46:43 +0200226static void pull_dl_task(struct rq *);
Peter Zijlstrae3fca9e2015-06-11 14:46:37 +0200227
228static inline void queue_push_tasks(struct rq *rq)
Peter Zijlstradc877342014-02-12 15:47:29 +0100229{
Peter Zijlstrae3fca9e2015-06-11 14:46:37 +0200230 if (!has_pushable_dl_tasks(rq))
231 return;
232
Peter Zijlstra9916e212015-06-11 14:46:43 +0200233 queue_balance_callback(rq, &per_cpu(dl_push_head, rq->cpu), push_dl_tasks);
234}
235
236static inline void queue_pull_task(struct rq *rq)
237{
238 queue_balance_callback(rq, &per_cpu(dl_pull_head, rq->cpu), pull_dl_task);
Peter Zijlstradc877342014-02-12 15:47:29 +0100239}
240
Wanpeng Lifa9c9d12015-03-27 07:08:35 +0800241static struct rq *find_lock_later_rq(struct task_struct *task, struct rq *rq);
242
Peter Zijlstraa649f232015-06-11 14:46:49 +0200243static struct rq *dl_task_offline_migration(struct rq *rq, struct task_struct *p)
Wanpeng Lifa9c9d12015-03-27 07:08:35 +0800244{
245 struct rq *later_rq = NULL;
246 bool fallback = false;
247
248 later_rq = find_lock_later_rq(p, rq);
249
250 if (!later_rq) {
251 int cpu;
252
253 /*
254 * If we cannot preempt any rq, fall back to pick any
255 * online cpu.
256 */
257 fallback = true;
258 cpu = cpumask_any_and(cpu_active_mask, tsk_cpus_allowed(p));
259 if (cpu >= nr_cpu_ids) {
260 /*
261 * Fail to find any suitable cpu.
262 * The task will never come back!
263 */
264 BUG_ON(dl_bandwidth_enabled());
265
266 /*
267 * If admission control is disabled we
268 * try a little harder to let the task
269 * run.
270 */
271 cpu = cpumask_any(cpu_active_mask);
272 }
273 later_rq = cpu_rq(cpu);
274 double_lock_balance(rq, later_rq);
275 }
276
Peter Zijlstraa649f232015-06-11 14:46:49 +0200277 /*
278 * By now the task is replenished and enqueued; migrate it.
279 */
Wanpeng Lifa9c9d12015-03-27 07:08:35 +0800280 deactivate_task(rq, p, 0);
281 set_task_cpu(p, later_rq->cpu);
Peter Zijlstraa649f232015-06-11 14:46:49 +0200282 activate_task(later_rq, p, 0);
Wanpeng Lifa9c9d12015-03-27 07:08:35 +0800283
284 if (!fallback)
285 resched_curr(later_rq);
286
Peter Zijlstraa649f232015-06-11 14:46:49 +0200287 double_unlock_balance(later_rq, rq);
288
289 return later_rq;
Wanpeng Lifa9c9d12015-03-27 07:08:35 +0800290}
291
Juri Lelli1baca4c2013-11-07 14:43:38 +0100292#else
293
294static inline
295void enqueue_pushable_dl_task(struct rq *rq, struct task_struct *p)
296{
297}
298
299static inline
300void dequeue_pushable_dl_task(struct rq *rq, struct task_struct *p)
301{
302}
303
304static inline
305void inc_dl_migration(struct sched_dl_entity *dl_se, struct dl_rq *dl_rq)
306{
307}
308
309static inline
310void dec_dl_migration(struct sched_dl_entity *dl_se, struct dl_rq *dl_rq)
311{
312}
313
Peter Zijlstradc877342014-02-12 15:47:29 +0100314static inline bool need_pull_dl_task(struct rq *rq, struct task_struct *prev)
315{
316 return false;
317}
318
Peter Zijlstra0ea60c22015-06-11 14:46:42 +0200319static inline void pull_dl_task(struct rq *rq)
Peter Zijlstradc877342014-02-12 15:47:29 +0100320{
Peter Zijlstradc877342014-02-12 15:47:29 +0100321}
322
Peter Zijlstrae3fca9e2015-06-11 14:46:37 +0200323static inline void queue_push_tasks(struct rq *rq)
Peter Zijlstradc877342014-02-12 15:47:29 +0100324{
325}
Peter Zijlstra9916e212015-06-11 14:46:43 +0200326
327static inline void queue_pull_task(struct rq *rq)
Juri Lelli1baca4c2013-11-07 14:43:38 +0100328{
329}
330#endif /* CONFIG_SMP */
331
Dario Faggioliaab03e02013-11-28 11:14:43 +0100332static void enqueue_task_dl(struct rq *rq, struct task_struct *p, int flags);
333static void __dequeue_task_dl(struct rq *rq, struct task_struct *p, int flags);
334static void check_preempt_curr_dl(struct rq *rq, struct task_struct *p,
335 int flags);
336
337/*
338 * We are being explicitly informed that a new instance is starting,
339 * and this means that:
340 * - the absolute deadline of the entity has to be placed at
341 * current time + relative deadline;
342 * - the runtime of the entity has to be set to the maximum value.
343 *
344 * The capability of specifying such event is useful whenever a -deadline
345 * entity wants to (try to!) synchronize its behaviour with the scheduler's
346 * one, and to (try to!) reconcile itself with its own scheduling
347 * parameters.
348 */
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100349static inline void setup_new_dl_entity(struct sched_dl_entity *dl_se,
350 struct sched_dl_entity *pi_se)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100351{
352 struct dl_rq *dl_rq = dl_rq_of_se(dl_se);
353 struct rq *rq = rq_of_dl_rq(dl_rq);
354
355 WARN_ON(!dl_se->dl_new || dl_se->dl_throttled);
356
357 /*
358 * We use the regular wall clock time to set deadlines in the
359 * future; in fact, we must consider execution overheads (time
360 * spent on hardirq context, etc.).
361 */
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100362 dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
363 dl_se->runtime = pi_se->dl_runtime;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100364 dl_se->dl_new = 0;
365}
366
367/*
368 * Pure Earliest Deadline First (EDF) scheduling does not deal with the
369 * possibility of a entity lasting more than what it declared, and thus
370 * exhausting its runtime.
371 *
372 * Here we are interested in making runtime overrun possible, but we do
373 * not want a entity which is misbehaving to affect the scheduling of all
374 * other entities.
375 * Therefore, a budgeting strategy called Constant Bandwidth Server (CBS)
376 * is used, in order to confine each entity within its own bandwidth.
377 *
378 * This function deals exactly with that, and ensures that when the runtime
379 * of a entity is replenished, its deadline is also postponed. That ensures
380 * the overrunning entity can't interfere with other entity in the system and
381 * can't make them miss their deadlines. Reasons why this kind of overruns
382 * could happen are, typically, a entity voluntarily trying to overcome its
xiaofeng.yan1b09d292014-07-07 05:59:04 +0000383 * runtime, or it just underestimated it during sched_setattr().
Dario Faggioliaab03e02013-11-28 11:14:43 +0100384 */
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100385static void replenish_dl_entity(struct sched_dl_entity *dl_se,
386 struct sched_dl_entity *pi_se)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100387{
388 struct dl_rq *dl_rq = dl_rq_of_se(dl_se);
389 struct rq *rq = rq_of_dl_rq(dl_rq);
390
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100391 BUG_ON(pi_se->dl_runtime <= 0);
392
393 /*
394 * This could be the case for a !-dl task that is boosted.
395 * Just go with full inherited parameters.
396 */
397 if (dl_se->dl_deadline == 0) {
398 dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
399 dl_se->runtime = pi_se->dl_runtime;
400 }
401
Dario Faggioliaab03e02013-11-28 11:14:43 +0100402 /*
403 * We keep moving the deadline away until we get some
404 * available runtime for the entity. This ensures correct
405 * handling of situations where the runtime overrun is
406 * arbitrary large.
407 */
408 while (dl_se->runtime <= 0) {
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100409 dl_se->deadline += pi_se->dl_period;
410 dl_se->runtime += pi_se->dl_runtime;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100411 }
412
413 /*
414 * At this point, the deadline really should be "in
415 * the future" with respect to rq->clock. If it's
416 * not, we are, for some reason, lagging too much!
417 * Anyway, after having warn userspace abut that,
418 * we still try to keep the things running by
419 * resetting the deadline and the budget of the
420 * entity.
421 */
422 if (dl_time_before(dl_se->deadline, rq_clock(rq))) {
John Stultzc2248152014-06-04 16:11:41 -0700423 printk_deferred_once("sched: DL replenish lagged to much\n");
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100424 dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
425 dl_se->runtime = pi_se->dl_runtime;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100426 }
Peter Zijlstra1019a352014-11-26 08:44:03 +0800427
428 if (dl_se->dl_yielded)
429 dl_se->dl_yielded = 0;
430 if (dl_se->dl_throttled)
431 dl_se->dl_throttled = 0;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100432}
433
434/*
435 * Here we check if --at time t-- an entity (which is probably being
436 * [re]activated or, in general, enqueued) can use its remaining runtime
437 * and its current deadline _without_ exceeding the bandwidth it is
438 * assigned (function returns true if it can't). We are in fact applying
439 * one of the CBS rules: when a task wakes up, if the residual runtime
440 * over residual deadline fits within the allocated bandwidth, then we
441 * can keep the current (absolute) deadline and residual budget without
442 * disrupting the schedulability of the system. Otherwise, we should
443 * refill the runtime and set the deadline a period in the future,
444 * because keeping the current (absolute) deadline of the task would
Dario Faggioli712e5e32014-01-27 12:20:15 +0100445 * result in breaking guarantees promised to other tasks (refer to
446 * Documentation/scheduler/sched-deadline.txt for more informations).
Dario Faggioliaab03e02013-11-28 11:14:43 +0100447 *
448 * This function returns true if:
449 *
Harald Gustafsson755378a2013-11-07 14:43:40 +0100450 * runtime / (deadline - t) > dl_runtime / dl_period ,
Dario Faggioliaab03e02013-11-28 11:14:43 +0100451 *
452 * IOW we can't recycle current parameters.
Harald Gustafsson755378a2013-11-07 14:43:40 +0100453 *
454 * Notice that the bandwidth check is done against the period. For
455 * task with deadline equal to period this is the same of using
456 * dl_deadline instead of dl_period in the equation above.
Dario Faggioliaab03e02013-11-28 11:14:43 +0100457 */
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100458static bool dl_entity_overflow(struct sched_dl_entity *dl_se,
459 struct sched_dl_entity *pi_se, u64 t)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100460{
461 u64 left, right;
462
463 /*
464 * left and right are the two sides of the equation above,
465 * after a bit of shuffling to use multiplications instead
466 * of divisions.
467 *
468 * Note that none of the time values involved in the two
469 * multiplications are absolute: dl_deadline and dl_runtime
470 * are the relative deadline and the maximum runtime of each
471 * instance, runtime is the runtime left for the last instance
472 * and (deadline - t), since t is rq->clock, is the time left
473 * to the (absolute) deadline. Even if overflowing the u64 type
474 * is very unlikely to occur in both cases, here we scale down
475 * as we want to avoid that risk at all. Scaling down by 10
476 * means that we reduce granularity to 1us. We are fine with it,
477 * since this is only a true/false check and, anyway, thinking
478 * of anything below microseconds resolution is actually fiction
479 * (but still we want to give the user that illusion >;).
480 */
Dario Faggioli332ac172013-11-07 14:43:45 +0100481 left = (pi_se->dl_period >> DL_SCALE) * (dl_se->runtime >> DL_SCALE);
482 right = ((dl_se->deadline - t) >> DL_SCALE) *
483 (pi_se->dl_runtime >> DL_SCALE);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100484
485 return dl_time_before(right, left);
486}
487
488/*
489 * When a -deadline entity is queued back on the runqueue, its runtime and
490 * deadline might need updating.
491 *
492 * The policy here is that we update the deadline of the entity only if:
493 * - the current deadline is in the past,
494 * - using the remaining runtime with the current deadline would make
495 * the entity exceed its bandwidth.
496 */
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100497static void update_dl_entity(struct sched_dl_entity *dl_se,
498 struct sched_dl_entity *pi_se)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100499{
500 struct dl_rq *dl_rq = dl_rq_of_se(dl_se);
501 struct rq *rq = rq_of_dl_rq(dl_rq);
502
503 /*
504 * The arrival of a new instance needs special treatment, i.e.,
505 * the actual scheduling parameters have to be "renewed".
506 */
507 if (dl_se->dl_new) {
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100508 setup_new_dl_entity(dl_se, pi_se);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100509 return;
510 }
511
512 if (dl_time_before(dl_se->deadline, rq_clock(rq)) ||
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100513 dl_entity_overflow(dl_se, pi_se, rq_clock(rq))) {
514 dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
515 dl_se->runtime = pi_se->dl_runtime;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100516 }
517}
518
519/*
520 * If the entity depleted all its runtime, and if we want it to sleep
521 * while waiting for some new execution time to become available, we
522 * set the bandwidth enforcement timer to the replenishment instant
523 * and try to activate it.
524 *
525 * Notice that it is important for the caller to know if the timer
526 * actually started or not (i.e., the replenishment instant is in
527 * the future or in the past).
528 */
Peter Zijlstraa649f232015-06-11 14:46:49 +0200529static int start_dl_timer(struct task_struct *p)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100530{
Peter Zijlstraa649f232015-06-11 14:46:49 +0200531 struct sched_dl_entity *dl_se = &p->dl;
532 struct hrtimer *timer = &dl_se->dl_timer;
533 struct rq *rq = task_rq(p);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100534 ktime_t now, act;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100535 s64 delta;
536
Peter Zijlstraa649f232015-06-11 14:46:49 +0200537 lockdep_assert_held(&rq->lock);
538
Dario Faggioliaab03e02013-11-28 11:14:43 +0100539 /*
540 * We want the timer to fire at the deadline, but considering
541 * that it is actually coming from rq->clock and not from
542 * hrtimer's time base reading.
543 */
544 act = ns_to_ktime(dl_se->deadline);
Peter Zijlstraa649f232015-06-11 14:46:49 +0200545 now = hrtimer_cb_get_time(timer);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100546 delta = ktime_to_ns(now) - rq_clock(rq);
547 act = ktime_add_ns(act, delta);
548
549 /*
550 * If the expiry time already passed, e.g., because the value
551 * chosen as the deadline is too small, don't even try to
552 * start the timer in the past!
553 */
554 if (ktime_us_delta(act, now) < 0)
555 return 0;
556
Peter Zijlstraa649f232015-06-11 14:46:49 +0200557 /*
558 * !enqueued will guarantee another callback; even if one is already in
559 * progress. This ensures a balanced {get,put}_task_struct().
560 *
561 * The race against __run_timer() clearing the enqueued state is
562 * harmless because we're holding task_rq()->lock, therefore the timer
563 * expiring after we've done the check will wait on its task_rq_lock()
564 * and observe our state.
565 */
566 if (!hrtimer_is_queued(timer)) {
567 get_task_struct(p);
568 hrtimer_start(timer, act, HRTIMER_MODE_ABS);
569 }
Dario Faggioliaab03e02013-11-28 11:14:43 +0100570
Thomas Gleixnercc9684d2015-04-14 21:09:06 +0000571 return 1;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100572}
573
574/*
575 * This is the bandwidth enforcement timer callback. If here, we know
576 * a task is not on its dl_rq, since the fact that the timer was running
577 * means the task is throttled and needs a runtime replenishment.
578 *
579 * However, what we actually do depends on the fact the task is active,
580 * (it is on its rq) or has been removed from there by a call to
581 * dequeue_task_dl(). In the former case we must issue the runtime
582 * replenishment and add the task back to the dl_rq; in the latter, we just
583 * do nothing but clearing dl_throttled, so that runtime and deadline
584 * updating (and the queueing back to dl_rq) will be done by the
585 * next call to enqueue_task_dl().
586 */
587static enum hrtimer_restart dl_task_timer(struct hrtimer *timer)
588{
589 struct sched_dl_entity *dl_se = container_of(timer,
590 struct sched_dl_entity,
591 dl_timer);
592 struct task_struct *p = dl_task_of(dl_se);
Peter Zijlstra3960c8c2015-02-17 13:22:25 +0100593 unsigned long flags;
Kirill Tkhai0f397f22014-05-20 13:33:42 +0400594 struct rq *rq;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100595
Juri Lelli4cd57f92015-03-31 09:53:36 +0100596 rq = task_rq_lock(p, &flags);
Kirill Tkhai0f397f22014-05-20 13:33:42 +0400597
Dario Faggioliaab03e02013-11-28 11:14:43 +0100598 /*
Peter Zijlstraa649f232015-06-11 14:46:49 +0200599 * The task might have changed its scheduling policy to something
600 * different than SCHED_DEADLINE (through switched_fromd_dl()).
Dario Faggioliaab03e02013-11-28 11:14:43 +0100601 */
Peter Zijlstraa649f232015-06-11 14:46:49 +0200602 if (!dl_task(p)) {
603 __dl_clear_params(p);
604 goto unlock;
605 }
606
607 /*
608 * This is possible if switched_from_dl() raced against a running
609 * callback that took the above !dl_task() path and we've since then
610 * switched back into SCHED_DEADLINE.
611 *
612 * There's nothing to do except drop our task reference.
613 */
614 if (dl_se->dl_new)
615 goto unlock;
616
617 /*
618 * The task might have been boosted by someone else and might be in the
619 * boosting/deboosting path, its not throttled.
620 */
621 if (dl_se->dl_boosted)
622 goto unlock;
623
624 /*
625 * Spurious timer due to start_dl_timer() race; or we already received
626 * a replenishment from rt_mutex_setprio().
627 */
628 if (!dl_se->dl_throttled)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100629 goto unlock;
630
631 sched_clock_tick();
632 update_rq_clock(rq);
Kirill Tkhaia79ec892015-02-16 15:38:34 +0300633
634 /*
635 * If the throttle happened during sched-out; like:
636 *
637 * schedule()
638 * deactivate_task()
639 * dequeue_task_dl()
640 * update_curr_dl()
641 * start_dl_timer()
642 * __dequeue_task_dl()
643 * prev->on_rq = 0;
644 *
645 * We can be both throttled and !queued. Replenish the counter
646 * but do not enqueue -- wait for our wakeup to do that.
647 */
648 if (!task_on_rq_queued(p)) {
649 replenish_dl_entity(dl_se, dl_se);
650 goto unlock;
651 }
652
Peter Zijlstra1019a352014-11-26 08:44:03 +0800653 enqueue_task_dl(rq, p, ENQUEUE_REPLENISH);
654 if (dl_task(rq->curr))
655 check_preempt_curr_dl(rq, p, 0);
656 else
657 resched_curr(rq);
Peter Zijlstraa649f232015-06-11 14:46:49 +0200658
Juri Lelli1baca4c2013-11-07 14:43:38 +0100659#ifdef CONFIG_SMP
Peter Zijlstra1019a352014-11-26 08:44:03 +0800660 /*
Peter Zijlstraa649f232015-06-11 14:46:49 +0200661 * Perform balancing operations here; after the replenishments. We
662 * cannot drop rq->lock before this, otherwise the assertion in
663 * start_dl_timer() about not missing updates is not true.
664 *
665 * If we find that the rq the task was on is no longer available, we
666 * need to select a new rq.
667 *
668 * XXX figure out if select_task_rq_dl() deals with offline cpus.
669 */
670 if (unlikely(!rq->online))
671 rq = dl_task_offline_migration(rq, p);
672
673 /*
674 * Queueing this task back might have overloaded rq, check if we need
675 * to kick someone away.
Peter Zijlstra1019a352014-11-26 08:44:03 +0800676 */
Peter Zijlstra0aaafaa2015-10-23 11:50:08 +0200677 if (has_pushable_dl_tasks(rq)) {
678 /*
679 * Nothing relies on rq->lock after this, so its safe to drop
680 * rq->lock.
681 */
682 lockdep_unpin_lock(&rq->lock);
Peter Zijlstra1019a352014-11-26 08:44:03 +0800683 push_dl_task(rq);
Peter Zijlstra0aaafaa2015-10-23 11:50:08 +0200684 lockdep_pin_lock(&rq->lock);
685 }
Juri Lelli1baca4c2013-11-07 14:43:38 +0100686#endif
Peter Zijlstraa649f232015-06-11 14:46:49 +0200687
Dario Faggioliaab03e02013-11-28 11:14:43 +0100688unlock:
Juri Lelli4cd57f92015-03-31 09:53:36 +0100689 task_rq_unlock(rq, p, &flags);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100690
Peter Zijlstraa649f232015-06-11 14:46:49 +0200691 /*
692 * This can free the task_struct, including this hrtimer, do not touch
693 * anything related to that after this.
694 */
695 put_task_struct(p);
696
Dario Faggioliaab03e02013-11-28 11:14:43 +0100697 return HRTIMER_NORESTART;
698}
699
700void init_dl_task_timer(struct sched_dl_entity *dl_se)
701{
702 struct hrtimer *timer = &dl_se->dl_timer;
703
Dario Faggioliaab03e02013-11-28 11:14:43 +0100704 hrtimer_init(timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
705 timer->function = dl_task_timer;
706}
707
708static
Zhiqiang Zhang6fab5412015-06-15 11:15:20 +0800709int dl_runtime_exceeded(struct sched_dl_entity *dl_se)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100710{
Luca Abeni269ad802014-12-17 11:50:32 +0100711 return (dl_se->runtime <= 0);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100712}
713
Juri Lellifaa59932014-02-21 11:37:15 +0100714extern bool sched_rt_bandwidth_account(struct rt_rq *rt_rq);
715
Dario Faggioliaab03e02013-11-28 11:14:43 +0100716/*
717 * Update the current task's runtime statistics (provided it is still
718 * a -deadline task and has not been removed from the dl_rq).
719 */
720static void update_curr_dl(struct rq *rq)
721{
722 struct task_struct *curr = rq->curr;
723 struct sched_dl_entity *dl_se = &curr->dl;
724 u64 delta_exec;
725
726 if (!dl_task(curr) || !on_dl_rq(dl_se))
727 return;
728
Rafael J. Wysocki34e2c552016-02-15 20:20:42 +0100729 /* Kick cpufreq (see the comment in linux/cpufreq.h). */
730 if (cpu_of(rq) == smp_processor_id())
731 cpufreq_trigger_update(rq_clock(rq));
732
Dario Faggioliaab03e02013-11-28 11:14:43 +0100733 /*
734 * Consumed budget is computed considering the time as
735 * observed by schedulable tasks (excluding time spent
736 * in hardirq context, etc.). Deadlines are instead
737 * computed using hard walltime. This seems to be the more
738 * natural solution, but the full ramifications of this
739 * approach need further study.
740 */
741 delta_exec = rq_clock_task(rq) - curr->se.exec_start;
Kirill Tkhai734ff2a2014-03-04 19:25:46 +0400742 if (unlikely((s64)delta_exec <= 0))
743 return;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100744
745 schedstat_set(curr->se.statistics.exec_max,
746 max(curr->se.statistics.exec_max, delta_exec));
747
748 curr->se.sum_exec_runtime += delta_exec;
749 account_group_exec_runtime(curr, delta_exec);
750
751 curr->se.exec_start = rq_clock_task(rq);
752 cpuacct_charge(curr, delta_exec);
753
Dario Faggioli239be4a2013-11-07 14:43:39 +0100754 sched_rt_avg_update(rq, delta_exec);
755
Wanpeng Li80496882014-10-31 06:39:32 +0800756 dl_se->runtime -= dl_se->dl_yielded ? 0 : delta_exec;
Zhiqiang Zhang6fab5412015-06-15 11:15:20 +0800757 if (dl_runtime_exceeded(dl_se)) {
Peter Zijlstra1019a352014-11-26 08:44:03 +0800758 dl_se->dl_throttled = 1;
Dario Faggioliaab03e02013-11-28 11:14:43 +0100759 __dequeue_task_dl(rq, curr, 0);
Peter Zijlstraa649f232015-06-11 14:46:49 +0200760 if (unlikely(dl_se->dl_boosted || !start_dl_timer(curr)))
Dario Faggioliaab03e02013-11-28 11:14:43 +0100761 enqueue_task_dl(rq, curr, ENQUEUE_REPLENISH);
762
763 if (!is_leftmost(curr, &rq->dl))
Kirill Tkhai88751252014-06-29 00:03:57 +0400764 resched_curr(rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100765 }
Peter Zijlstra17248132013-12-17 12:44:49 +0100766
767 /*
768 * Because -- for now -- we share the rt bandwidth, we need to
769 * account our runtime there too, otherwise actual rt tasks
770 * would be able to exceed the shared quota.
771 *
772 * Account to the root rt group for now.
773 *
774 * The solution we're working towards is having the RT groups scheduled
775 * using deadline servers -- however there's a few nasties to figure
776 * out before that can happen.
777 */
778 if (rt_bandwidth_enabled()) {
779 struct rt_rq *rt_rq = &rq->rt;
780
781 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstra17248132013-12-17 12:44:49 +0100782 /*
783 * We'll let actual RT tasks worry about the overflow here, we
Juri Lellifaa59932014-02-21 11:37:15 +0100784 * have our own CBS to keep us inline; only account when RT
785 * bandwidth is relevant.
Peter Zijlstra17248132013-12-17 12:44:49 +0100786 */
Juri Lellifaa59932014-02-21 11:37:15 +0100787 if (sched_rt_bandwidth_account(rt_rq))
788 rt_rq->rt_time += delta_exec;
Peter Zijlstra17248132013-12-17 12:44:49 +0100789 raw_spin_unlock(&rt_rq->rt_runtime_lock);
790 }
Dario Faggioliaab03e02013-11-28 11:14:43 +0100791}
792
Juri Lelli1baca4c2013-11-07 14:43:38 +0100793#ifdef CONFIG_SMP
794
Juri Lelli1baca4c2013-11-07 14:43:38 +0100795static void inc_dl_deadline(struct dl_rq *dl_rq, u64 deadline)
796{
797 struct rq *rq = rq_of_dl_rq(dl_rq);
798
799 if (dl_rq->earliest_dl.curr == 0 ||
800 dl_time_before(deadline, dl_rq->earliest_dl.curr)) {
Juri Lelli1baca4c2013-11-07 14:43:38 +0100801 dl_rq->earliest_dl.curr = deadline;
Juri Lelli6bfd6d72013-11-07 14:43:47 +0100802 cpudl_set(&rq->rd->cpudl, rq->cpu, deadline, 1);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100803 }
804}
805
806static void dec_dl_deadline(struct dl_rq *dl_rq, u64 deadline)
807{
808 struct rq *rq = rq_of_dl_rq(dl_rq);
809
810 /*
811 * Since we may have removed our earliest (and/or next earliest)
812 * task we must recompute them.
813 */
814 if (!dl_rq->dl_nr_running) {
815 dl_rq->earliest_dl.curr = 0;
816 dl_rq->earliest_dl.next = 0;
Juri Lelli6bfd6d72013-11-07 14:43:47 +0100817 cpudl_set(&rq->rd->cpudl, rq->cpu, 0, 0);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100818 } else {
819 struct rb_node *leftmost = dl_rq->rb_leftmost;
820 struct sched_dl_entity *entry;
821
822 entry = rb_entry(leftmost, struct sched_dl_entity, rb_node);
823 dl_rq->earliest_dl.curr = entry->deadline;
Juri Lelli6bfd6d72013-11-07 14:43:47 +0100824 cpudl_set(&rq->rd->cpudl, rq->cpu, entry->deadline, 1);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100825 }
826}
827
828#else
829
830static inline void inc_dl_deadline(struct dl_rq *dl_rq, u64 deadline) {}
831static inline void dec_dl_deadline(struct dl_rq *dl_rq, u64 deadline) {}
832
833#endif /* CONFIG_SMP */
834
835static inline
836void inc_dl_tasks(struct sched_dl_entity *dl_se, struct dl_rq *dl_rq)
837{
838 int prio = dl_task_of(dl_se)->prio;
839 u64 deadline = dl_se->deadline;
840
841 WARN_ON(!dl_prio(prio));
842 dl_rq->dl_nr_running++;
Kirill Tkhai72465442014-05-09 03:00:14 +0400843 add_nr_running(rq_of_dl_rq(dl_rq), 1);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100844
845 inc_dl_deadline(dl_rq, deadline);
846 inc_dl_migration(dl_se, dl_rq);
847}
848
849static inline
850void dec_dl_tasks(struct sched_dl_entity *dl_se, struct dl_rq *dl_rq)
851{
852 int prio = dl_task_of(dl_se)->prio;
853
854 WARN_ON(!dl_prio(prio));
855 WARN_ON(!dl_rq->dl_nr_running);
856 dl_rq->dl_nr_running--;
Kirill Tkhai72465442014-05-09 03:00:14 +0400857 sub_nr_running(rq_of_dl_rq(dl_rq), 1);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100858
859 dec_dl_deadline(dl_rq, dl_se->deadline);
860 dec_dl_migration(dl_se, dl_rq);
861}
862
Dario Faggioliaab03e02013-11-28 11:14:43 +0100863static void __enqueue_dl_entity(struct sched_dl_entity *dl_se)
864{
865 struct dl_rq *dl_rq = dl_rq_of_se(dl_se);
866 struct rb_node **link = &dl_rq->rb_root.rb_node;
867 struct rb_node *parent = NULL;
868 struct sched_dl_entity *entry;
869 int leftmost = 1;
870
871 BUG_ON(!RB_EMPTY_NODE(&dl_se->rb_node));
872
873 while (*link) {
874 parent = *link;
875 entry = rb_entry(parent, struct sched_dl_entity, rb_node);
876 if (dl_time_before(dl_se->deadline, entry->deadline))
877 link = &parent->rb_left;
878 else {
879 link = &parent->rb_right;
880 leftmost = 0;
881 }
882 }
883
884 if (leftmost)
885 dl_rq->rb_leftmost = &dl_se->rb_node;
886
887 rb_link_node(&dl_se->rb_node, parent, link);
888 rb_insert_color(&dl_se->rb_node, &dl_rq->rb_root);
889
Juri Lelli1baca4c2013-11-07 14:43:38 +0100890 inc_dl_tasks(dl_se, dl_rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100891}
892
893static void __dequeue_dl_entity(struct sched_dl_entity *dl_se)
894{
895 struct dl_rq *dl_rq = dl_rq_of_se(dl_se);
896
897 if (RB_EMPTY_NODE(&dl_se->rb_node))
898 return;
899
900 if (dl_rq->rb_leftmost == &dl_se->rb_node) {
901 struct rb_node *next_node;
902
903 next_node = rb_next(&dl_se->rb_node);
904 dl_rq->rb_leftmost = next_node;
905 }
906
907 rb_erase(&dl_se->rb_node, &dl_rq->rb_root);
908 RB_CLEAR_NODE(&dl_se->rb_node);
909
Juri Lelli1baca4c2013-11-07 14:43:38 +0100910 dec_dl_tasks(dl_se, dl_rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100911}
912
913static void
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100914enqueue_dl_entity(struct sched_dl_entity *dl_se,
915 struct sched_dl_entity *pi_se, int flags)
Dario Faggioliaab03e02013-11-28 11:14:43 +0100916{
917 BUG_ON(on_dl_rq(dl_se));
918
919 /*
920 * If this is a wakeup or a new instance, the scheduling
921 * parameters of the task might need updating. Otherwise,
922 * we want a replenishment of its runtime.
923 */
Luca Abeni6a503c32014-12-17 11:50:31 +0100924 if (dl_se->dl_new || flags & ENQUEUE_WAKEUP)
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100925 update_dl_entity(dl_se, pi_se);
Luca Abeni6a503c32014-12-17 11:50:31 +0100926 else if (flags & ENQUEUE_REPLENISH)
927 replenish_dl_entity(dl_se, pi_se);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100928
929 __enqueue_dl_entity(dl_se);
930}
931
932static void dequeue_dl_entity(struct sched_dl_entity *dl_se)
933{
934 __dequeue_dl_entity(dl_se);
935}
936
937static void enqueue_task_dl(struct rq *rq, struct task_struct *p, int flags)
938{
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100939 struct task_struct *pi_task = rt_mutex_get_top_task(p);
940 struct sched_dl_entity *pi_se = &p->dl;
941
942 /*
943 * Use the scheduling parameters of the top pi-waiter
Andrea Parriff277d42015-08-05 15:56:19 +0200944 * task if we have one and its (absolute) deadline is
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100945 * smaller than our one... OTW we keep our runtime and
946 * deadline.
947 */
Juri Lelli64be6f12014-10-24 10:16:37 +0100948 if (pi_task && p->dl.dl_boosted && dl_prio(pi_task->normal_prio)) {
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100949 pi_se = &pi_task->dl;
Juri Lelli64be6f12014-10-24 10:16:37 +0100950 } else if (!dl_prio(p->normal_prio)) {
951 /*
952 * Special case in which we have a !SCHED_DEADLINE task
953 * that is going to be deboosted, but exceedes its
954 * runtime while doing so. No point in replenishing
955 * it, as it's going to return back to its original
956 * scheduling class after this.
957 */
958 BUG_ON(!p->dl.dl_boosted || flags != ENQUEUE_REPLENISH);
959 return;
960 }
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100961
Dario Faggioliaab03e02013-11-28 11:14:43 +0100962 /*
963 * If p is throttled, we do nothing. In fact, if it exhausted
964 * its budget it needs a replenishment and, since it now is on
965 * its rq, the bandwidth timer callback (which clearly has not
966 * run yet) will take care of this.
967 */
Peter Zijlstra1019a352014-11-26 08:44:03 +0800968 if (p->dl.dl_throttled && !(flags & ENQUEUE_REPLENISH))
Dario Faggioliaab03e02013-11-28 11:14:43 +0100969 return;
970
Dario Faggioli2d3d8912013-11-07 14:43:44 +0100971 enqueue_dl_entity(&p->dl, pi_se, flags);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100972
973 if (!task_current(rq, p) && p->nr_cpus_allowed > 1)
974 enqueue_pushable_dl_task(rq, p);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100975}
976
977static void __dequeue_task_dl(struct rq *rq, struct task_struct *p, int flags)
978{
979 dequeue_dl_entity(&p->dl);
Juri Lelli1baca4c2013-11-07 14:43:38 +0100980 dequeue_pushable_dl_task(rq, p);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100981}
982
983static void dequeue_task_dl(struct rq *rq, struct task_struct *p, int flags)
984{
985 update_curr_dl(rq);
986 __dequeue_task_dl(rq, p, flags);
Dario Faggioliaab03e02013-11-28 11:14:43 +0100987}
988
989/*
990 * Yield task semantic for -deadline tasks is:
991 *
992 * get off from the CPU until our next instance, with
993 * a new runtime. This is of little use now, since we
994 * don't have a bandwidth reclaiming mechanism. Anyway,
995 * bandwidth reclaiming is planned for the future, and
996 * yield_task_dl will indicate that some spare budget
997 * is available for other task instances to use it.
998 */
999static void yield_task_dl(struct rq *rq)
1000{
1001 struct task_struct *p = rq->curr;
1002
1003 /*
1004 * We make the task go to sleep until its current deadline by
1005 * forcing its runtime to zero. This way, update_curr_dl() stops
1006 * it and the bandwidth timer will wake it up and will give it
Juri Lelli5bfd1262014-04-15 13:49:04 +02001007 * new scheduling parameters (thanks to dl_yielded=1).
Dario Faggioliaab03e02013-11-28 11:14:43 +01001008 */
1009 if (p->dl.runtime > 0) {
Juri Lelli5bfd1262014-04-15 13:49:04 +02001010 rq->curr->dl.dl_yielded = 1;
Dario Faggioliaab03e02013-11-28 11:14:43 +01001011 p->dl.runtime = 0;
1012 }
Kirill Tkhai6f1607f2015-02-04 12:09:32 +03001013 update_rq_clock(rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001014 update_curr_dl(rq);
Wanpeng Li44fb0852015-03-10 12:20:00 +08001015 /*
1016 * Tell update_rq_clock() that we've just updated,
1017 * so we don't do microscopic update in schedule()
1018 * and double the fastpath cost.
1019 */
1020 rq_clock_skip_update(rq, true);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001021}
1022
Juri Lelli1baca4c2013-11-07 14:43:38 +01001023#ifdef CONFIG_SMP
1024
1025static int find_later_rq(struct task_struct *task);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001026
1027static int
1028select_task_rq_dl(struct task_struct *p, int cpu, int sd_flag, int flags)
1029{
1030 struct task_struct *curr;
1031 struct rq *rq;
1032
Wanpeng Li1d7e9742014-10-14 10:22:39 +08001033 if (sd_flag != SD_BALANCE_WAKE)
Juri Lelli1baca4c2013-11-07 14:43:38 +01001034 goto out;
1035
1036 rq = cpu_rq(cpu);
1037
1038 rcu_read_lock();
Jason Low316c1608d2015-04-28 13:00:20 -07001039 curr = READ_ONCE(rq->curr); /* unlocked access */
Juri Lelli1baca4c2013-11-07 14:43:38 +01001040
1041 /*
1042 * If we are dealing with a -deadline task, we must
1043 * decide where to wake it up.
1044 * If it has a later deadline and the current task
1045 * on this rq can't move (provided the waking task
1046 * can!) we prefer to send it somewhere else. On the
1047 * other hand, if it has a shorter deadline, we
1048 * try to make it stay here, it might be important.
1049 */
1050 if (unlikely(dl_task(curr)) &&
1051 (curr->nr_cpus_allowed < 2 ||
1052 !dl_entity_preempt(&p->dl, &curr->dl)) &&
1053 (p->nr_cpus_allowed > 1)) {
1054 int target = find_later_rq(p);
1055
Wanpeng Li9d514262015-05-13 14:01:03 +08001056 if (target != -1 &&
Luca Abeni5aa50502015-10-16 10:06:21 +02001057 (dl_time_before(p->dl.deadline,
1058 cpu_rq(target)->dl.earliest_dl.curr) ||
1059 (cpu_rq(target)->dl.dl_nr_running == 0)))
Juri Lelli1baca4c2013-11-07 14:43:38 +01001060 cpu = target;
1061 }
1062 rcu_read_unlock();
1063
1064out:
1065 return cpu;
1066}
1067
1068static void check_preempt_equal_dl(struct rq *rq, struct task_struct *p)
1069{
1070 /*
1071 * Current can't be migrated, useless to reschedule,
1072 * let's hope p can move out.
1073 */
1074 if (rq->curr->nr_cpus_allowed == 1 ||
Juri Lelli6bfd6d72013-11-07 14:43:47 +01001075 cpudl_find(&rq->rd->cpudl, rq->curr, NULL) == -1)
Juri Lelli1baca4c2013-11-07 14:43:38 +01001076 return;
1077
1078 /*
1079 * p is migratable, so let's not schedule it and
1080 * see if it is pushed or pulled somewhere else.
1081 */
1082 if (p->nr_cpus_allowed != 1 &&
Juri Lelli6bfd6d72013-11-07 14:43:47 +01001083 cpudl_find(&rq->rd->cpudl, p, NULL) != -1)
Juri Lelli1baca4c2013-11-07 14:43:38 +01001084 return;
1085
Kirill Tkhai88751252014-06-29 00:03:57 +04001086 resched_curr(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001087}
1088
1089#endif /* CONFIG_SMP */
1090
Dario Faggioliaab03e02013-11-28 11:14:43 +01001091/*
1092 * Only called when both the current and waking task are -deadline
1093 * tasks.
1094 */
1095static void check_preempt_curr_dl(struct rq *rq, struct task_struct *p,
1096 int flags)
1097{
Juri Lelli1baca4c2013-11-07 14:43:38 +01001098 if (dl_entity_preempt(&p->dl, &rq->curr->dl)) {
Kirill Tkhai88751252014-06-29 00:03:57 +04001099 resched_curr(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001100 return;
1101 }
1102
1103#ifdef CONFIG_SMP
1104 /*
1105 * In the unlikely case current and p have the same deadline
1106 * let us try to decide what's the best thing to do...
1107 */
Dario Faggioli332ac172013-11-07 14:43:45 +01001108 if ((p->dl.deadline == rq->curr->dl.deadline) &&
1109 !test_tsk_need_resched(rq->curr))
Juri Lelli1baca4c2013-11-07 14:43:38 +01001110 check_preempt_equal_dl(rq, p);
1111#endif /* CONFIG_SMP */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001112}
1113
1114#ifdef CONFIG_SCHED_HRTICK
1115static void start_hrtick_dl(struct rq *rq, struct task_struct *p)
1116{
xiaofeng.yan177ef2a2014-08-26 03:15:41 +00001117 hrtick_start(rq, p->dl.runtime);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001118}
Wanpeng Li36ce9882014-11-11 09:52:26 +08001119#else /* !CONFIG_SCHED_HRTICK */
1120static void start_hrtick_dl(struct rq *rq, struct task_struct *p)
1121{
1122}
Dario Faggioliaab03e02013-11-28 11:14:43 +01001123#endif
1124
1125static struct sched_dl_entity *pick_next_dl_entity(struct rq *rq,
1126 struct dl_rq *dl_rq)
1127{
1128 struct rb_node *left = dl_rq->rb_leftmost;
1129
1130 if (!left)
1131 return NULL;
1132
1133 return rb_entry(left, struct sched_dl_entity, rb_node);
1134}
1135
Peter Zijlstra606dba22012-02-11 06:05:00 +01001136struct task_struct *pick_next_task_dl(struct rq *rq, struct task_struct *prev)
Dario Faggioliaab03e02013-11-28 11:14:43 +01001137{
1138 struct sched_dl_entity *dl_se;
1139 struct task_struct *p;
1140 struct dl_rq *dl_rq;
1141
1142 dl_rq = &rq->dl;
1143
Kirill Tkhaia1d9a322014-04-10 17:38:36 +04001144 if (need_pull_dl_task(rq, prev)) {
Peter Zijlstracbce1a62015-06-11 14:46:54 +02001145 /*
1146 * This is OK, because current is on_cpu, which avoids it being
1147 * picked for load-balance and preemption/IRQs are still
1148 * disabled avoiding further scheduler activity on it and we're
1149 * being very careful to re-start the picking loop.
1150 */
1151 lockdep_unpin_lock(&rq->lock);
Peter Zijlstra38033c32014-01-23 20:32:21 +01001152 pull_dl_task(rq);
Peter Zijlstracbce1a62015-06-11 14:46:54 +02001153 lockdep_pin_lock(&rq->lock);
Kirill Tkhaia1d9a322014-04-10 17:38:36 +04001154 /*
1155 * pull_rt_task() can drop (and re-acquire) rq->lock; this
1156 * means a stop task can slip in, in which case we need to
1157 * re-start task selection.
1158 */
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001159 if (rq->stop && task_on_rq_queued(rq->stop))
Kirill Tkhaia1d9a322014-04-10 17:38:36 +04001160 return RETRY_TASK;
1161 }
1162
Kirill Tkhai734ff2a2014-03-04 19:25:46 +04001163 /*
1164 * When prev is DL, we may throttle it in put_prev_task().
1165 * So, we update time before we check for dl_nr_running.
1166 */
1167 if (prev->sched_class == &dl_sched_class)
1168 update_curr_dl(rq);
Peter Zijlstra38033c32014-01-23 20:32:21 +01001169
Dario Faggioliaab03e02013-11-28 11:14:43 +01001170 if (unlikely(!dl_rq->dl_nr_running))
1171 return NULL;
1172
Peter Zijlstra3f1d2a32014-02-12 10:49:30 +01001173 put_prev_task(rq, prev);
Peter Zijlstra606dba22012-02-11 06:05:00 +01001174
Dario Faggioliaab03e02013-11-28 11:14:43 +01001175 dl_se = pick_next_dl_entity(rq, dl_rq);
1176 BUG_ON(!dl_se);
1177
1178 p = dl_task_of(dl_se);
1179 p->se.exec_start = rq_clock_task(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001180
1181 /* Running task will never be pushed. */
Juri Lelli71362652014-01-14 12:03:51 +01001182 dequeue_pushable_dl_task(rq, p);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001183
Dario Faggioliaab03e02013-11-28 11:14:43 +01001184 if (hrtick_enabled(rq))
1185 start_hrtick_dl(rq, p);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001186
Peter Zijlstrae3fca9e2015-06-11 14:46:37 +02001187 queue_push_tasks(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001188
Dario Faggioliaab03e02013-11-28 11:14:43 +01001189 return p;
1190}
1191
1192static void put_prev_task_dl(struct rq *rq, struct task_struct *p)
1193{
1194 update_curr_dl(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001195
1196 if (on_dl_rq(&p->dl) && p->nr_cpus_allowed > 1)
1197 enqueue_pushable_dl_task(rq, p);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001198}
1199
1200static void task_tick_dl(struct rq *rq, struct task_struct *p, int queued)
1201{
1202 update_curr_dl(rq);
1203
Wanpeng Lia7bebf42014-11-26 08:44:01 +08001204 /*
1205 * Even when we have runtime, update_curr_dl() might have resulted in us
1206 * not being the leftmost task anymore. In that case NEED_RESCHED will
1207 * be set and schedule() will start a new hrtick for the next task.
1208 */
1209 if (hrtick_enabled(rq) && queued && p->dl.runtime > 0 &&
1210 is_leftmost(p, &rq->dl))
Dario Faggioliaab03e02013-11-28 11:14:43 +01001211 start_hrtick_dl(rq, p);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001212}
1213
1214static void task_fork_dl(struct task_struct *p)
1215{
1216 /*
1217 * SCHED_DEADLINE tasks cannot fork and this is achieved through
1218 * sched_fork()
1219 */
1220}
1221
1222static void task_dead_dl(struct task_struct *p)
1223{
Dario Faggioli332ac172013-11-07 14:43:45 +01001224 struct dl_bw *dl_b = dl_bw_of(task_cpu(p));
1225
1226 /*
1227 * Since we are TASK_DEAD we won't slip out of the domain!
1228 */
1229 raw_spin_lock_irq(&dl_b->lock);
Peter Zijlstra40767b02015-01-28 15:08:03 +01001230 /* XXX we should retain the bw until 0-lag */
Dario Faggioli332ac172013-11-07 14:43:45 +01001231 dl_b->total_bw -= p->dl.dl_bw;
1232 raw_spin_unlock_irq(&dl_b->lock);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001233}
1234
1235static void set_curr_task_dl(struct rq *rq)
1236{
1237 struct task_struct *p = rq->curr;
1238
1239 p->se.exec_start = rq_clock_task(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001240
1241 /* You can't push away the running task */
1242 dequeue_pushable_dl_task(rq, p);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001243}
1244
Juri Lelli1baca4c2013-11-07 14:43:38 +01001245#ifdef CONFIG_SMP
1246
1247/* Only try algorithms three times */
1248#define DL_MAX_TRIES 3
1249
1250static int pick_dl_task(struct rq *rq, struct task_struct *p, int cpu)
1251{
1252 if (!task_running(rq, p) &&
Kirill Tkhai1ba93d42014-09-12 17:42:20 +04001253 cpumask_test_cpu(cpu, tsk_cpus_allowed(p)))
Juri Lelli1baca4c2013-11-07 14:43:38 +01001254 return 1;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001255 return 0;
1256}
1257
Wanpeng Li8b5e7702015-05-13 14:01:01 +08001258/*
1259 * Return the earliest pushable rq's task, which is suitable to be executed
1260 * on the CPU, NULL otherwise:
1261 */
1262static struct task_struct *pick_earliest_pushable_dl_task(struct rq *rq, int cpu)
1263{
1264 struct rb_node *next_node = rq->dl.pushable_dl_tasks_leftmost;
1265 struct task_struct *p = NULL;
1266
1267 if (!has_pushable_dl_tasks(rq))
1268 return NULL;
1269
1270next_node:
1271 if (next_node) {
1272 p = rb_entry(next_node, struct task_struct, pushable_dl_tasks);
1273
1274 if (pick_dl_task(rq, p, cpu))
1275 return p;
1276
1277 next_node = rb_next(next_node);
1278 goto next_node;
1279 }
1280
1281 return NULL;
1282}
1283
Juri Lelli1baca4c2013-11-07 14:43:38 +01001284static DEFINE_PER_CPU(cpumask_var_t, local_cpu_mask_dl);
1285
1286static int find_later_rq(struct task_struct *task)
1287{
1288 struct sched_domain *sd;
Christoph Lameter4ba29682014-08-26 19:12:21 -05001289 struct cpumask *later_mask = this_cpu_cpumask_var_ptr(local_cpu_mask_dl);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001290 int this_cpu = smp_processor_id();
1291 int best_cpu, cpu = task_cpu(task);
1292
1293 /* Make sure the mask is initialized first */
1294 if (unlikely(!later_mask))
1295 return -1;
1296
1297 if (task->nr_cpus_allowed == 1)
1298 return -1;
1299
Juri Lelli91ec6772014-09-19 10:22:41 +01001300 /*
1301 * We have to consider system topology and task affinity
1302 * first, then we can look for a suitable cpu.
1303 */
Juri Lelli6bfd6d72013-11-07 14:43:47 +01001304 best_cpu = cpudl_find(&task_rq(task)->rd->cpudl,
1305 task, later_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001306 if (best_cpu == -1)
1307 return -1;
1308
1309 /*
1310 * If we are here, some target has been found,
1311 * the most suitable of which is cached in best_cpu.
1312 * This is, among the runqueues where the current tasks
1313 * have later deadlines than the task's one, the rq
1314 * with the latest possible one.
1315 *
1316 * Now we check how well this matches with task's
1317 * affinity and system topology.
1318 *
1319 * The last cpu where the task run is our first
1320 * guess, since it is most likely cache-hot there.
1321 */
1322 if (cpumask_test_cpu(cpu, later_mask))
1323 return cpu;
1324 /*
1325 * Check if this_cpu is to be skipped (i.e., it is
1326 * not in the mask) or not.
1327 */
1328 if (!cpumask_test_cpu(this_cpu, later_mask))
1329 this_cpu = -1;
1330
1331 rcu_read_lock();
1332 for_each_domain(cpu, sd) {
1333 if (sd->flags & SD_WAKE_AFFINE) {
1334
1335 /*
1336 * If possible, preempting this_cpu is
1337 * cheaper than migrating.
1338 */
1339 if (this_cpu != -1 &&
1340 cpumask_test_cpu(this_cpu, sched_domain_span(sd))) {
1341 rcu_read_unlock();
1342 return this_cpu;
1343 }
1344
1345 /*
1346 * Last chance: if best_cpu is valid and is
1347 * in the mask, that becomes our choice.
1348 */
1349 if (best_cpu < nr_cpu_ids &&
1350 cpumask_test_cpu(best_cpu, sched_domain_span(sd))) {
1351 rcu_read_unlock();
1352 return best_cpu;
1353 }
1354 }
1355 }
1356 rcu_read_unlock();
1357
1358 /*
1359 * At this point, all our guesses failed, we just return
1360 * 'something', and let the caller sort the things out.
1361 */
1362 if (this_cpu != -1)
1363 return this_cpu;
1364
1365 cpu = cpumask_any(later_mask);
1366 if (cpu < nr_cpu_ids)
1367 return cpu;
1368
1369 return -1;
1370}
1371
1372/* Locks the rq it finds */
1373static struct rq *find_lock_later_rq(struct task_struct *task, struct rq *rq)
1374{
1375 struct rq *later_rq = NULL;
1376 int tries;
1377 int cpu;
1378
1379 for (tries = 0; tries < DL_MAX_TRIES; tries++) {
1380 cpu = find_later_rq(task);
1381
1382 if ((cpu == -1) || (cpu == rq->cpu))
1383 break;
1384
1385 later_rq = cpu_rq(cpu);
1386
Luca Abeni5aa50502015-10-16 10:06:21 +02001387 if (later_rq->dl.dl_nr_running &&
1388 !dl_time_before(task->dl.deadline,
Wanpeng Li9d514262015-05-13 14:01:03 +08001389 later_rq->dl.earliest_dl.curr)) {
1390 /*
1391 * Target rq has tasks of equal or earlier deadline,
1392 * retrying does not release any lock and is unlikely
1393 * to yield a different result.
1394 */
1395 later_rq = NULL;
1396 break;
1397 }
1398
Juri Lelli1baca4c2013-11-07 14:43:38 +01001399 /* Retry if something changed. */
1400 if (double_lock_balance(rq, later_rq)) {
1401 if (unlikely(task_rq(task) != rq ||
1402 !cpumask_test_cpu(later_rq->cpu,
1403 &task->cpus_allowed) ||
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001404 task_running(rq, task) ||
1405 !task_on_rq_queued(task))) {
Juri Lelli1baca4c2013-11-07 14:43:38 +01001406 double_unlock_balance(rq, later_rq);
1407 later_rq = NULL;
1408 break;
1409 }
1410 }
1411
1412 /*
1413 * If the rq we found has no -deadline task, or
1414 * its earliest one has a later deadline than our
1415 * task, the rq is a good one.
1416 */
1417 if (!later_rq->dl.dl_nr_running ||
1418 dl_time_before(task->dl.deadline,
1419 later_rq->dl.earliest_dl.curr))
1420 break;
1421
1422 /* Otherwise we try again. */
1423 double_unlock_balance(rq, later_rq);
1424 later_rq = NULL;
1425 }
1426
1427 return later_rq;
1428}
1429
1430static struct task_struct *pick_next_pushable_dl_task(struct rq *rq)
1431{
1432 struct task_struct *p;
1433
1434 if (!has_pushable_dl_tasks(rq))
1435 return NULL;
1436
1437 p = rb_entry(rq->dl.pushable_dl_tasks_leftmost,
1438 struct task_struct, pushable_dl_tasks);
1439
1440 BUG_ON(rq->cpu != task_cpu(p));
1441 BUG_ON(task_current(rq, p));
1442 BUG_ON(p->nr_cpus_allowed <= 1);
1443
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001444 BUG_ON(!task_on_rq_queued(p));
Juri Lelli1baca4c2013-11-07 14:43:38 +01001445 BUG_ON(!dl_task(p));
1446
1447 return p;
1448}
1449
1450/*
1451 * See if the non running -deadline tasks on this rq
1452 * can be sent to some other CPU where they can preempt
1453 * and start executing.
1454 */
1455static int push_dl_task(struct rq *rq)
1456{
1457 struct task_struct *next_task;
1458 struct rq *later_rq;
Wanpeng Lic51b8ab2014-11-06 15:22:44 +08001459 int ret = 0;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001460
1461 if (!rq->dl.overloaded)
1462 return 0;
1463
1464 next_task = pick_next_pushable_dl_task(rq);
1465 if (!next_task)
1466 return 0;
1467
1468retry:
1469 if (unlikely(next_task == rq->curr)) {
1470 WARN_ON(1);
1471 return 0;
1472 }
1473
1474 /*
1475 * If next_task preempts rq->curr, and rq->curr
1476 * can move away, it makes sense to just reschedule
1477 * without going further in pushing next_task.
1478 */
1479 if (dl_task(rq->curr) &&
1480 dl_time_before(next_task->dl.deadline, rq->curr->dl.deadline) &&
1481 rq->curr->nr_cpus_allowed > 1) {
Kirill Tkhai88751252014-06-29 00:03:57 +04001482 resched_curr(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001483 return 0;
1484 }
1485
1486 /* We might release rq lock */
1487 get_task_struct(next_task);
1488
1489 /* Will lock the rq it'll find */
1490 later_rq = find_lock_later_rq(next_task, rq);
1491 if (!later_rq) {
1492 struct task_struct *task;
1493
1494 /*
1495 * We must check all this again, since
1496 * find_lock_later_rq releases rq->lock and it is
1497 * then possible that next_task has migrated.
1498 */
1499 task = pick_next_pushable_dl_task(rq);
1500 if (task_cpu(next_task) == rq->cpu && task == next_task) {
1501 /*
1502 * The task is still there. We don't try
1503 * again, some other cpu will pull it when ready.
1504 */
Juri Lelli1baca4c2013-11-07 14:43:38 +01001505 goto out;
1506 }
1507
1508 if (!task)
1509 /* No more tasks */
1510 goto out;
1511
1512 put_task_struct(next_task);
1513 next_task = task;
1514 goto retry;
1515 }
1516
1517 deactivate_task(rq, next_task, 0);
1518 set_task_cpu(next_task, later_rq->cpu);
1519 activate_task(later_rq, next_task, 0);
Wanpeng Lic51b8ab2014-11-06 15:22:44 +08001520 ret = 1;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001521
Kirill Tkhai88751252014-06-29 00:03:57 +04001522 resched_curr(later_rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001523
1524 double_unlock_balance(rq, later_rq);
1525
1526out:
1527 put_task_struct(next_task);
1528
Wanpeng Lic51b8ab2014-11-06 15:22:44 +08001529 return ret;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001530}
1531
1532static void push_dl_tasks(struct rq *rq)
1533{
Andrea Parri4ffa08e2015-08-05 15:56:18 +02001534 /* push_dl_task() will return true if it moved a -deadline task */
Juri Lelli1baca4c2013-11-07 14:43:38 +01001535 while (push_dl_task(rq))
1536 ;
1537}
1538
Peter Zijlstra0ea60c22015-06-11 14:46:42 +02001539static void pull_dl_task(struct rq *this_rq)
Juri Lelli1baca4c2013-11-07 14:43:38 +01001540{
Peter Zijlstra0ea60c22015-06-11 14:46:42 +02001541 int this_cpu = this_rq->cpu, cpu;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001542 struct task_struct *p;
Peter Zijlstra0ea60c22015-06-11 14:46:42 +02001543 bool resched = false;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001544 struct rq *src_rq;
1545 u64 dmin = LONG_MAX;
1546
1547 if (likely(!dl_overloaded(this_rq)))
Peter Zijlstra0ea60c22015-06-11 14:46:42 +02001548 return;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001549
1550 /*
1551 * Match the barrier from dl_set_overloaded; this guarantees that if we
1552 * see overloaded we must also see the dlo_mask bit.
1553 */
1554 smp_rmb();
1555
1556 for_each_cpu(cpu, this_rq->rd->dlo_mask) {
1557 if (this_cpu == cpu)
1558 continue;
1559
1560 src_rq = cpu_rq(cpu);
1561
1562 /*
1563 * It looks racy, abd it is! However, as in sched_rt.c,
1564 * we are fine with this.
1565 */
1566 if (this_rq->dl.dl_nr_running &&
1567 dl_time_before(this_rq->dl.earliest_dl.curr,
1568 src_rq->dl.earliest_dl.next))
1569 continue;
1570
1571 /* Might drop this_rq->lock */
1572 double_lock_balance(this_rq, src_rq);
1573
1574 /*
1575 * If there are no more pullable tasks on the
1576 * rq, we're done with it.
1577 */
1578 if (src_rq->dl.dl_nr_running <= 1)
1579 goto skip;
1580
Wanpeng Li8b5e7702015-05-13 14:01:01 +08001581 p = pick_earliest_pushable_dl_task(src_rq, this_cpu);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001582
1583 /*
1584 * We found a task to be pulled if:
1585 * - it preempts our current (if there's one),
1586 * - it will preempt the last one we pulled (if any).
1587 */
1588 if (p && dl_time_before(p->dl.deadline, dmin) &&
1589 (!this_rq->dl.dl_nr_running ||
1590 dl_time_before(p->dl.deadline,
1591 this_rq->dl.earliest_dl.curr))) {
1592 WARN_ON(p == src_rq->curr);
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001593 WARN_ON(!task_on_rq_queued(p));
Juri Lelli1baca4c2013-11-07 14:43:38 +01001594
1595 /*
1596 * Then we pull iff p has actually an earlier
1597 * deadline than the current task of its runqueue.
1598 */
1599 if (dl_time_before(p->dl.deadline,
1600 src_rq->curr->dl.deadline))
1601 goto skip;
1602
Peter Zijlstra0ea60c22015-06-11 14:46:42 +02001603 resched = true;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001604
1605 deactivate_task(src_rq, p, 0);
1606 set_task_cpu(p, this_cpu);
1607 activate_task(this_rq, p, 0);
1608 dmin = p->dl.deadline;
1609
1610 /* Is there any other task even earlier? */
1611 }
1612skip:
1613 double_unlock_balance(this_rq, src_rq);
1614 }
1615
Peter Zijlstra0ea60c22015-06-11 14:46:42 +02001616 if (resched)
1617 resched_curr(this_rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001618}
1619
1620/*
1621 * Since the task is not running and a reschedule is not going to happen
1622 * anytime soon on its runqueue, we try pushing it away now.
1623 */
1624static void task_woken_dl(struct rq *rq, struct task_struct *p)
1625{
1626 if (!task_running(rq, p) &&
1627 !test_tsk_need_resched(rq->curr) &&
Juri Lelli1baca4c2013-11-07 14:43:38 +01001628 p->nr_cpus_allowed > 1 &&
1629 dl_task(rq->curr) &&
1630 (rq->curr->nr_cpus_allowed < 2 ||
Wanpeng Li6b0a5632014-10-31 06:39:34 +08001631 !dl_entity_preempt(&p->dl, &rq->curr->dl))) {
Juri Lelli1baca4c2013-11-07 14:43:38 +01001632 push_dl_tasks(rq);
1633 }
1634}
1635
1636static void set_cpus_allowed_dl(struct task_struct *p,
1637 const struct cpumask *new_mask)
1638{
Juri Lelli7f514122014-09-19 10:22:40 +01001639 struct root_domain *src_rd;
Peter Zijlstra6c370672015-05-15 17:43:36 +02001640 struct rq *rq;
Juri Lelli1baca4c2013-11-07 14:43:38 +01001641
1642 BUG_ON(!dl_task(p));
1643
Juri Lelli7f514122014-09-19 10:22:40 +01001644 rq = task_rq(p);
1645 src_rd = rq->rd;
1646 /*
1647 * Migrating a SCHED_DEADLINE task between exclusive
1648 * cpusets (different root_domains) entails a bandwidth
1649 * update. We already made space for us in the destination
1650 * domain (see cpuset_can_attach()).
1651 */
1652 if (!cpumask_intersects(src_rd->span, new_mask)) {
1653 struct dl_bw *src_dl_b;
1654
1655 src_dl_b = dl_bw_of(cpu_of(rq));
1656 /*
1657 * We now free resources of the root_domain we are migrating
1658 * off. In the worst case, sched_setattr() may temporary fail
1659 * until we complete the update.
1660 */
1661 raw_spin_lock(&src_dl_b->lock);
1662 __dl_clear(src_dl_b, p->dl.dl_bw);
1663 raw_spin_unlock(&src_dl_b->lock);
1664 }
1665
Peter Zijlstra6c370672015-05-15 17:43:36 +02001666 set_cpus_allowed_common(p, new_mask);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001667}
1668
1669/* Assumes rq->lock is held */
1670static void rq_online_dl(struct rq *rq)
1671{
1672 if (rq->dl.overloaded)
1673 dl_set_overload(rq);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01001674
Xunlei Pang16b26942015-01-19 04:49:36 +00001675 cpudl_set_freecpu(&rq->rd->cpudl, rq->cpu);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01001676 if (rq->dl.dl_nr_running > 0)
1677 cpudl_set(&rq->rd->cpudl, rq->cpu, rq->dl.earliest_dl.curr, 1);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001678}
1679
1680/* Assumes rq->lock is held */
1681static void rq_offline_dl(struct rq *rq)
1682{
1683 if (rq->dl.overloaded)
1684 dl_clear_overload(rq);
Juri Lelli6bfd6d72013-11-07 14:43:47 +01001685
1686 cpudl_set(&rq->rd->cpudl, rq->cpu, 0, 0);
Xunlei Pang16b26942015-01-19 04:49:36 +00001687 cpudl_clear_freecpu(&rq->rd->cpudl, rq->cpu);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001688}
1689
Wanpeng Lia6c0e742015-05-13 14:01:02 +08001690void __init init_sched_dl_class(void)
Juri Lelli1baca4c2013-11-07 14:43:38 +01001691{
1692 unsigned int i;
1693
1694 for_each_possible_cpu(i)
1695 zalloc_cpumask_var_node(&per_cpu(local_cpu_mask_dl, i),
1696 GFP_KERNEL, cpu_to_node(i));
1697}
1698
1699#endif /* CONFIG_SMP */
1700
Dario Faggioliaab03e02013-11-28 11:14:43 +01001701static void switched_from_dl(struct rq *rq, struct task_struct *p)
1702{
Peter Zijlstraa649f232015-06-11 14:46:49 +02001703 /*
1704 * Start the deadline timer; if we switch back to dl before this we'll
1705 * continue consuming our current CBS slice. If we stay outside of
1706 * SCHED_DEADLINE until the deadline passes, the timer will reset the
1707 * task.
1708 */
1709 if (!start_dl_timer(p))
1710 __dl_clear_params(p);
Juri Lellia5e7be32014-09-19 10:22:39 +01001711
Juri Lelli1baca4c2013-11-07 14:43:38 +01001712 /*
1713 * Since this might be the only -deadline task on the rq,
1714 * this is the right place to try to pull some other one
1715 * from an overloaded cpu, if any.
1716 */
Wanpeng Licd660912014-10-31 06:39:35 +08001717 if (!task_on_rq_queued(p) || rq->dl.dl_nr_running)
1718 return;
1719
Peter Zijlstra9916e212015-06-11 14:46:43 +02001720 queue_pull_task(rq);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001721}
1722
Juri Lelli1baca4c2013-11-07 14:43:38 +01001723/*
1724 * When switching to -deadline, we may overload the rq, then
1725 * we try to push someone off, if possible.
1726 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001727static void switched_to_dl(struct rq *rq, struct task_struct *p)
1728{
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001729 if (task_on_rq_queued(p) && rq->curr != p) {
Juri Lelli1baca4c2013-11-07 14:43:38 +01001730#ifdef CONFIG_SMP
Peter Zijlstra9916e212015-06-11 14:46:43 +02001731 if (p->nr_cpus_allowed > 1 && rq->dl.overloaded)
1732 queue_push_tasks(rq);
1733#else
1734 if (dl_task(rq->curr))
1735 check_preempt_curr_dl(rq, p, 0);
1736 else
1737 resched_curr(rq);
1738#endif
Dario Faggioliaab03e02013-11-28 11:14:43 +01001739 }
1740}
1741
Juri Lelli1baca4c2013-11-07 14:43:38 +01001742/*
1743 * If the scheduling parameters of a -deadline task changed,
1744 * a push or pull operation might be needed.
1745 */
Dario Faggioliaab03e02013-11-28 11:14:43 +01001746static void prio_changed_dl(struct rq *rq, struct task_struct *p,
1747 int oldprio)
1748{
Kirill Tkhaida0c1e62014-08-20 13:47:32 +04001749 if (task_on_rq_queued(p) || rq->curr == p) {
Dario Faggioliaab03e02013-11-28 11:14:43 +01001750#ifdef CONFIG_SMP
Juri Lelli1baca4c2013-11-07 14:43:38 +01001751 /*
1752 * This might be too much, but unfortunately
1753 * we don't have the old deadline value, and
1754 * we can't argue if the task is increasing
1755 * or lowering its prio, so...
1756 */
1757 if (!rq->dl.overloaded)
Peter Zijlstra9916e212015-06-11 14:46:43 +02001758 queue_pull_task(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001759
1760 /*
1761 * If we now have a earlier deadline task than p,
1762 * then reschedule, provided p is still on this
1763 * runqueue.
1764 */
Peter Zijlstra9916e212015-06-11 14:46:43 +02001765 if (dl_time_before(rq->dl.earliest_dl.curr, p->dl.deadline))
Kirill Tkhai88751252014-06-29 00:03:57 +04001766 resched_curr(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001767#else
1768 /*
1769 * Again, we don't know if p has a earlier
1770 * or later deadline, so let's blindly set a
1771 * (maybe not needed) rescheduling point.
1772 */
Kirill Tkhai88751252014-06-29 00:03:57 +04001773 resched_curr(rq);
Juri Lelli1baca4c2013-11-07 14:43:38 +01001774#endif /* CONFIG_SMP */
1775 } else
1776 switched_to_dl(rq, p);
Dario Faggioliaab03e02013-11-28 11:14:43 +01001777}
Dario Faggioliaab03e02013-11-28 11:14:43 +01001778
1779const struct sched_class dl_sched_class = {
1780 .next = &rt_sched_class,
1781 .enqueue_task = enqueue_task_dl,
1782 .dequeue_task = dequeue_task_dl,
1783 .yield_task = yield_task_dl,
1784
1785 .check_preempt_curr = check_preempt_curr_dl,
1786
1787 .pick_next_task = pick_next_task_dl,
1788 .put_prev_task = put_prev_task_dl,
1789
1790#ifdef CONFIG_SMP
1791 .select_task_rq = select_task_rq_dl,
Juri Lelli1baca4c2013-11-07 14:43:38 +01001792 .set_cpus_allowed = set_cpus_allowed_dl,
1793 .rq_online = rq_online_dl,
1794 .rq_offline = rq_offline_dl,
Juri Lelli1baca4c2013-11-07 14:43:38 +01001795 .task_woken = task_woken_dl,
Dario Faggioliaab03e02013-11-28 11:14:43 +01001796#endif
1797
1798 .set_curr_task = set_curr_task_dl,
1799 .task_tick = task_tick_dl,
1800 .task_fork = task_fork_dl,
1801 .task_dead = task_dead_dl,
1802
1803 .prio_changed = prio_changed_dl,
1804 .switched_from = switched_from_dl,
1805 .switched_to = switched_to_dl,
Stanislaw Gruszka6e998912014-11-12 16:58:44 +01001806
1807 .update_curr = update_curr_dl,
Dario Faggioliaab03e02013-11-28 11:14:43 +01001808};
Wanpeng Liacb32132014-10-31 06:39:33 +08001809
1810#ifdef CONFIG_SCHED_DEBUG
1811extern void print_dl_rq(struct seq_file *m, int cpu, struct dl_rq *dl_rq);
1812
1813void print_dl_stats(struct seq_file *m, int cpu)
1814{
1815 print_dl_rq(m, cpu, &cpu_rq(cpu)->dl);
1816}
1817#endif /* CONFIG_SCHED_DEBUG */