blob: 37e895a941ab34fcf029761e9b2227d4382837d5 [file] [log] [blame]
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001/*
2 * Completely Fair Scheduling (CFS) Class (SCHED_NORMAL/SCHED_BATCH)
3 *
4 * Copyright (C) 2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
5 *
6 * Interactivity improvements by Mike Galbraith
7 * (C) 2007 Mike Galbraith <efault@gmx.de>
8 *
9 * Various enhancements by Dmitry Adamushko.
10 * (C) 2007 Dmitry Adamushko <dmitry.adamushko@gmail.com>
11 *
12 * Group scheduling enhancements by Srivatsa Vaddagiri
13 * Copyright IBM Corporation, 2007
14 * Author: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
15 *
16 * Scaled math optimizations by Thomas Gleixner
17 * Copyright (C) 2007, Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra21805082007-08-25 18:41:53 +020018 *
19 * Adaptive scheduling granularity, math enhancements by Peter Zijlstra
20 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020021 */
22
Arjan van de Ven97455122008-01-25 21:08:34 +010023#include <linux/latencytop.h>
Christian Ehrhardt1983a922009-11-30 12:16:47 +010024#include <linux/sched.h>
Sisir Koppaka3436ae12011-03-26 18:22:55 +053025#include <linux/cpumask.h>
Peter Zijlstra029632f2011-10-25 10:00:11 +020026#include <linux/slab.h>
27#include <linux/profile.h>
28#include <linux/interrupt.h>
Peter Zijlstracbee9f82012-10-25 14:16:43 +020029#include <linux/mempolicy.h>
Mel Gormane14808b2012-11-19 10:59:15 +000030#include <linux/migrate.h>
Peter Zijlstracbee9f82012-10-25 14:16:43 +020031#include <linux/task_work.h>
Peter Zijlstra029632f2011-10-25 10:00:11 +020032
33#include <trace/events/sched.h>
34
35#include "sched.h"
Arjan van de Ven97455122008-01-25 21:08:34 +010036
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020037/*
Peter Zijlstra21805082007-08-25 18:41:53 +020038 * Targeted preemption latency for CPU-bound tasks:
Takuya Yoshikawa864616e2010-10-14 16:09:13 +090039 * (default: 6ms * (1 + ilog(ncpus)), units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020040 *
Peter Zijlstra21805082007-08-25 18:41:53 +020041 * NOTE: this latency value is not the same as the concept of
Ingo Molnard274a4c2007-10-15 17:00:14 +020042 * 'timeslice length' - timeslices in CFS are of variable length
43 * and have no persistent notion like in traditional, time-slice
44 * based scheduling concepts.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020045 *
Ingo Molnard274a4c2007-10-15 17:00:14 +020046 * (to see the precise effective timeslice length of your workload,
47 * run vmstat and monitor the context-switches (cs) field)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020048 */
Mike Galbraith21406922010-03-11 17:17:15 +010049unsigned int sysctl_sched_latency = 6000000ULL;
50unsigned int normalized_sysctl_sched_latency = 6000000ULL;
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020051
52/*
Christian Ehrhardt1983a922009-11-30 12:16:47 +010053 * The initial- and re-scaling of tunables is configurable
54 * (default SCHED_TUNABLESCALING_LOG = *(1+ilog(ncpus))
55 *
56 * Options are:
57 * SCHED_TUNABLESCALING_NONE - unscaled, always *1
58 * SCHED_TUNABLESCALING_LOG - scaled logarithmical, *1+ilog(ncpus)
59 * SCHED_TUNABLESCALING_LINEAR - scaled linear, *ncpus
60 */
61enum sched_tunable_scaling sysctl_sched_tunable_scaling
62 = SCHED_TUNABLESCALING_LOG;
63
64/*
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010065 * Minimal preemption granularity for CPU-bound tasks:
Takuya Yoshikawa864616e2010-10-14 16:09:13 +090066 * (default: 0.75 msec * (1 + ilog(ncpus)), units: nanoseconds)
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010067 */
Ingo Molnar0bf377b2010-09-12 08:14:52 +020068unsigned int sysctl_sched_min_granularity = 750000ULL;
69unsigned int normalized_sysctl_sched_min_granularity = 750000ULL;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010070
71/*
72 * is kept at sysctl_sched_latency / sysctl_sched_min_granularity
73 */
Ingo Molnar0bf377b2010-09-12 08:14:52 +020074static unsigned int sched_nr_latency = 8;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010075
76/*
Mike Galbraith2bba22c2009-09-09 15:41:37 +020077 * After fork, child runs first. If set to 0 (default) then
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020078 * parent will (try to) run first.
79 */
Mike Galbraith2bba22c2009-09-09 15:41:37 +020080unsigned int sysctl_sched_child_runs_first __read_mostly;
Peter Zijlstra21805082007-08-25 18:41:53 +020081
82/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020083 * SCHED_OTHER wake-up granularity.
Mike Galbraith172e0822009-09-09 15:41:37 +020084 * (default: 1 msec * (1 + ilog(ncpus)), units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020085 *
86 * This option delays the preemption effects of decoupled workloads
87 * and reduces their over-scheduling. Synchronous workloads will still
88 * have immediate wakeup/sleep latencies.
89 */
Mike Galbraith172e0822009-09-09 15:41:37 +020090unsigned int sysctl_sched_wakeup_granularity = 1000000UL;
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010091unsigned int normalized_sysctl_sched_wakeup_granularity = 1000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020092
Ingo Molnarda84d962007-10-15 17:00:18 +020093const_debug unsigned int sysctl_sched_migration_cost = 500000UL;
94
Paul Turnera7a4f8a2010-11-15 15:47:06 -080095/*
96 * The exponential sliding window over which load is averaged for shares
97 * distribution.
98 * (default: 10msec)
99 */
100unsigned int __read_mostly sysctl_sched_shares_window = 10000000UL;
101
Paul Turnerec12cb72011-07-21 09:43:30 -0700102#ifdef CONFIG_CFS_BANDWIDTH
103/*
104 * Amount of runtime to allocate from global (tg) to local (per-cfs_rq) pool
105 * each time a cfs_rq requests quota.
106 *
107 * Note: in the case that the slice exceeds the runtime remaining (either due
108 * to consumption or the quota being specified to be smaller than the slice)
109 * we will always only issue the remaining available time.
110 *
111 * default: 5 msec, units: microseconds
112 */
113unsigned int sysctl_sched_cfs_bandwidth_slice = 5000UL;
114#endif
115
Peter Zijlstra029632f2011-10-25 10:00:11 +0200116/*
117 * Increase the granularity value when there are more CPUs,
118 * because with more CPUs the 'effective latency' as visible
119 * to users decreases. But the relationship is not linear,
120 * so pick a second-best guess by going with the log2 of the
121 * number of CPUs.
122 *
123 * This idea comes from the SD scheduler of Con Kolivas:
124 */
125static int get_update_sysctl_factor(void)
126{
127 unsigned int cpus = min_t(int, num_online_cpus(), 8);
128 unsigned int factor;
129
130 switch (sysctl_sched_tunable_scaling) {
131 case SCHED_TUNABLESCALING_NONE:
132 factor = 1;
133 break;
134 case SCHED_TUNABLESCALING_LINEAR:
135 factor = cpus;
136 break;
137 case SCHED_TUNABLESCALING_LOG:
138 default:
139 factor = 1 + ilog2(cpus);
140 break;
141 }
142
143 return factor;
144}
145
146static void update_sysctl(void)
147{
148 unsigned int factor = get_update_sysctl_factor();
149
150#define SET_SYSCTL(name) \
151 (sysctl_##name = (factor) * normalized_sysctl_##name)
152 SET_SYSCTL(sched_min_granularity);
153 SET_SYSCTL(sched_latency);
154 SET_SYSCTL(sched_wakeup_granularity);
155#undef SET_SYSCTL
156}
157
158void sched_init_granularity(void)
159{
160 update_sysctl();
161}
162
163#if BITS_PER_LONG == 32
164# define WMULT_CONST (~0UL)
165#else
166# define WMULT_CONST (1UL << 32)
167#endif
168
169#define WMULT_SHIFT 32
170
171/*
172 * Shift right and round:
173 */
174#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
175
176/*
177 * delta *= weight / lw
178 */
179static unsigned long
180calc_delta_mine(unsigned long delta_exec, unsigned long weight,
181 struct load_weight *lw)
182{
183 u64 tmp;
184
185 /*
186 * weight can be less than 2^SCHED_LOAD_RESOLUTION for task group sched
187 * entities since MIN_SHARES = 2. Treat weight as 1 if less than
188 * 2^SCHED_LOAD_RESOLUTION.
189 */
190 if (likely(weight > (1UL << SCHED_LOAD_RESOLUTION)))
191 tmp = (u64)delta_exec * scale_load_down(weight);
192 else
193 tmp = (u64)delta_exec;
194
195 if (!lw->inv_weight) {
196 unsigned long w = scale_load_down(lw->weight);
197
198 if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST))
199 lw->inv_weight = 1;
200 else if (unlikely(!w))
201 lw->inv_weight = WMULT_CONST;
202 else
203 lw->inv_weight = WMULT_CONST / w;
204 }
205
206 /*
207 * Check whether we'd overflow the 64-bit multiplication:
208 */
209 if (unlikely(tmp > WMULT_CONST))
210 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
211 WMULT_SHIFT/2);
212 else
213 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
214
215 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
216}
217
218
219const struct sched_class fair_sched_class;
Peter Zijlstraa4c2f002008-10-17 19:27:03 +0200220
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200221/**************************************************************
222 * CFS operations on generic schedulable entities:
223 */
224
225#ifdef CONFIG_FAIR_GROUP_SCHED
226
227/* cpu runqueue to which this cfs_rq is attached */
228static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
229{
230 return cfs_rq->rq;
231}
232
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200233/* An entity is a task if it doesn't "own" a runqueue */
234#define entity_is_task(se) (!se->my_q)
235
Peter Zijlstra8f488942009-07-24 12:25:30 +0200236static inline struct task_struct *task_of(struct sched_entity *se)
237{
238#ifdef CONFIG_SCHED_DEBUG
239 WARN_ON_ONCE(!entity_is_task(se));
240#endif
241 return container_of(se, struct task_struct, se);
242}
243
Peter Zijlstrab7581492008-04-19 19:45:00 +0200244/* Walk up scheduling entities hierarchy */
245#define for_each_sched_entity(se) \
246 for (; se; se = se->parent)
247
248static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
249{
250 return p->se.cfs_rq;
251}
252
253/* runqueue on which this entity is (to be) queued */
254static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
255{
256 return se->cfs_rq;
257}
258
259/* runqueue "owned" by this group */
260static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
261{
262 return grp->my_q;
263}
264
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800265static inline void list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
266{
267 if (!cfs_rq->on_list) {
Paul Turner67e86252010-11-15 15:47:05 -0800268 /*
269 * Ensure we either appear before our parent (if already
270 * enqueued) or force our parent to appear after us when it is
271 * enqueued. The fact that we always enqueue bottom-up
272 * reduces this to two cases.
273 */
274 if (cfs_rq->tg->parent &&
275 cfs_rq->tg->parent->cfs_rq[cpu_of(rq_of(cfs_rq))]->on_list) {
276 list_add_rcu(&cfs_rq->leaf_cfs_rq_list,
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800277 &rq_of(cfs_rq)->leaf_cfs_rq_list);
Paul Turner67e86252010-11-15 15:47:05 -0800278 } else {
279 list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list,
280 &rq_of(cfs_rq)->leaf_cfs_rq_list);
281 }
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800282
283 cfs_rq->on_list = 1;
284 }
285}
286
287static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
288{
289 if (cfs_rq->on_list) {
290 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
291 cfs_rq->on_list = 0;
292 }
293}
294
Peter Zijlstrab7581492008-04-19 19:45:00 +0200295/* Iterate thr' all leaf cfs_rq's on a runqueue */
296#define for_each_leaf_cfs_rq(rq, cfs_rq) \
297 list_for_each_entry_rcu(cfs_rq, &rq->leaf_cfs_rq_list, leaf_cfs_rq_list)
298
299/* Do the two (enqueued) entities belong to the same group ? */
300static inline int
301is_same_group(struct sched_entity *se, struct sched_entity *pse)
302{
303 if (se->cfs_rq == pse->cfs_rq)
304 return 1;
305
306 return 0;
307}
308
309static inline struct sched_entity *parent_entity(struct sched_entity *se)
310{
311 return se->parent;
312}
313
Peter Zijlstra464b7522008-10-24 11:06:15 +0200314/* return depth at which a sched entity is present in the hierarchy */
315static inline int depth_se(struct sched_entity *se)
316{
317 int depth = 0;
318
319 for_each_sched_entity(se)
320 depth++;
321
322 return depth;
323}
324
325static void
326find_matching_se(struct sched_entity **se, struct sched_entity **pse)
327{
328 int se_depth, pse_depth;
329
330 /*
331 * preemption test can be made between sibling entities who are in the
332 * same cfs_rq i.e who have a common parent. Walk up the hierarchy of
333 * both tasks until we find their ancestors who are siblings of common
334 * parent.
335 */
336
337 /* First walk up until both entities are at same depth */
338 se_depth = depth_se(*se);
339 pse_depth = depth_se(*pse);
340
341 while (se_depth > pse_depth) {
342 se_depth--;
343 *se = parent_entity(*se);
344 }
345
346 while (pse_depth > se_depth) {
347 pse_depth--;
348 *pse = parent_entity(*pse);
349 }
350
351 while (!is_same_group(*se, *pse)) {
352 *se = parent_entity(*se);
353 *pse = parent_entity(*pse);
354 }
355}
356
Peter Zijlstra8f488942009-07-24 12:25:30 +0200357#else /* !CONFIG_FAIR_GROUP_SCHED */
358
359static inline struct task_struct *task_of(struct sched_entity *se)
360{
361 return container_of(se, struct task_struct, se);
362}
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200363
364static inline struct rq *rq_of(struct cfs_rq *cfs_rq)
365{
366 return container_of(cfs_rq, struct rq, cfs);
367}
368
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200369#define entity_is_task(se) 1
370
Peter Zijlstrab7581492008-04-19 19:45:00 +0200371#define for_each_sched_entity(se) \
372 for (; se; se = NULL)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200373
Peter Zijlstrab7581492008-04-19 19:45:00 +0200374static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200375{
Peter Zijlstrab7581492008-04-19 19:45:00 +0200376 return &task_rq(p)->cfs;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200377}
378
Peter Zijlstrab7581492008-04-19 19:45:00 +0200379static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
380{
381 struct task_struct *p = task_of(se);
382 struct rq *rq = task_rq(p);
383
384 return &rq->cfs;
385}
386
387/* runqueue "owned" by this group */
388static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
389{
390 return NULL;
391}
392
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800393static inline void list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
394{
395}
396
397static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
398{
399}
400
Peter Zijlstrab7581492008-04-19 19:45:00 +0200401#define for_each_leaf_cfs_rq(rq, cfs_rq) \
402 for (cfs_rq = &rq->cfs; cfs_rq; cfs_rq = NULL)
403
404static inline int
405is_same_group(struct sched_entity *se, struct sched_entity *pse)
406{
407 return 1;
408}
409
410static inline struct sched_entity *parent_entity(struct sched_entity *se)
411{
412 return NULL;
413}
414
Peter Zijlstra464b7522008-10-24 11:06:15 +0200415static inline void
416find_matching_se(struct sched_entity **se, struct sched_entity **pse)
417{
418}
419
Peter Zijlstrab7581492008-04-19 19:45:00 +0200420#endif /* CONFIG_FAIR_GROUP_SCHED */
421
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -0700422static __always_inline
423void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200424
425/**************************************************************
426 * Scheduling class tree data structure manipulation methods:
427 */
428
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200429static inline u64 max_vruntime(u64 min_vruntime, u64 vruntime)
Peter Zijlstra02e04312007-10-15 17:00:07 +0200430{
Peter Zijlstra368059a2007-10-15 17:00:11 +0200431 s64 delta = (s64)(vruntime - min_vruntime);
432 if (delta > 0)
Peter Zijlstra02e04312007-10-15 17:00:07 +0200433 min_vruntime = vruntime;
434
435 return min_vruntime;
436}
437
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200438static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime)
Peter Zijlstrab0ffd242007-10-15 17:00:12 +0200439{
440 s64 delta = (s64)(vruntime - min_vruntime);
441 if (delta < 0)
442 min_vruntime = vruntime;
443
444 return min_vruntime;
445}
446
Fabio Checconi54fdc582009-07-16 12:32:27 +0200447static inline int entity_before(struct sched_entity *a,
448 struct sched_entity *b)
449{
450 return (s64)(a->vruntime - b->vruntime) < 0;
451}
452
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200453static void update_min_vruntime(struct cfs_rq *cfs_rq)
454{
455 u64 vruntime = cfs_rq->min_vruntime;
456
457 if (cfs_rq->curr)
458 vruntime = cfs_rq->curr->vruntime;
459
460 if (cfs_rq->rb_leftmost) {
461 struct sched_entity *se = rb_entry(cfs_rq->rb_leftmost,
462 struct sched_entity,
463 run_node);
464
Peter Zijlstrae17036d2009-01-15 14:53:39 +0100465 if (!cfs_rq->curr)
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200466 vruntime = se->vruntime;
467 else
468 vruntime = min_vruntime(vruntime, se->vruntime);
469 }
470
471 cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime);
Peter Zijlstra3fe16982011-04-05 17:23:48 +0200472#ifndef CONFIG_64BIT
473 smp_wmb();
474 cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
475#endif
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200476}
477
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200478/*
479 * Enqueue an entity into the rb-tree:
480 */
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200481static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200482{
483 struct rb_node **link = &cfs_rq->tasks_timeline.rb_node;
484 struct rb_node *parent = NULL;
485 struct sched_entity *entry;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200486 int leftmost = 1;
487
488 /*
489 * Find the right place in the rbtree:
490 */
491 while (*link) {
492 parent = *link;
493 entry = rb_entry(parent, struct sched_entity, run_node);
494 /*
495 * We dont care about collisions. Nodes with
496 * the same key stay together.
497 */
Stephan Baerwolf2bd2d6f2011-07-20 14:46:59 +0200498 if (entity_before(se, entry)) {
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200499 link = &parent->rb_left;
500 } else {
501 link = &parent->rb_right;
502 leftmost = 0;
503 }
504 }
505
506 /*
507 * Maintain a cache of leftmost tree entries (it is frequently
508 * used):
509 */
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200510 if (leftmost)
Ingo Molnar57cb4992007-10-15 17:00:11 +0200511 cfs_rq->rb_leftmost = &se->run_node;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200512
513 rb_link_node(&se->run_node, parent, link);
514 rb_insert_color(&se->run_node, &cfs_rq->tasks_timeline);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200515}
516
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200517static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200518{
Peter Zijlstra3fe69742008-03-14 20:55:51 +0100519 if (cfs_rq->rb_leftmost == &se->run_node) {
520 struct rb_node *next_node;
Peter Zijlstra3fe69742008-03-14 20:55:51 +0100521
522 next_node = rb_next(&se->run_node);
523 cfs_rq->rb_leftmost = next_node;
Peter Zijlstra3fe69742008-03-14 20:55:51 +0100524 }
Ingo Molnare9acbff2007-10-15 17:00:04 +0200525
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200526 rb_erase(&se->run_node, &cfs_rq->tasks_timeline);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200527}
528
Peter Zijlstra029632f2011-10-25 10:00:11 +0200529struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200530{
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100531 struct rb_node *left = cfs_rq->rb_leftmost;
532
533 if (!left)
534 return NULL;
535
536 return rb_entry(left, struct sched_entity, run_node);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200537}
538
Rik van Rielac53db52011-02-01 09:51:03 -0500539static struct sched_entity *__pick_next_entity(struct sched_entity *se)
540{
541 struct rb_node *next = rb_next(&se->run_node);
542
543 if (!next)
544 return NULL;
545
546 return rb_entry(next, struct sched_entity, run_node);
547}
548
549#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra029632f2011-10-25 10:00:11 +0200550struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq)
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200551{
Ingo Molnar7eee3e62008-02-22 10:32:21 +0100552 struct rb_node *last = rb_last(&cfs_rq->tasks_timeline);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200553
Balbir Singh70eee742008-02-22 13:25:53 +0530554 if (!last)
555 return NULL;
Ingo Molnar7eee3e62008-02-22 10:32:21 +0100556
557 return rb_entry(last, struct sched_entity, run_node);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200558}
559
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200560/**************************************************************
561 * Scheduling class statistics methods:
562 */
563
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100564int sched_proc_update_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700565 void __user *buffer, size_t *lenp,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100566 loff_t *ppos)
567{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700568 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100569 int factor = get_update_sysctl_factor();
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100570
571 if (ret || !write)
572 return ret;
573
574 sched_nr_latency = DIV_ROUND_UP(sysctl_sched_latency,
575 sysctl_sched_min_granularity);
576
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100577#define WRT_SYSCTL(name) \
578 (normalized_sysctl_##name = sysctl_##name / (factor))
579 WRT_SYSCTL(sched_min_granularity);
580 WRT_SYSCTL(sched_latency);
581 WRT_SYSCTL(sched_wakeup_granularity);
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100582#undef WRT_SYSCTL
583
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100584 return 0;
585}
586#endif
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200587
588/*
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200589 * delta /= w
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200590 */
591static inline unsigned long
592calc_delta_fair(unsigned long delta, struct sched_entity *se)
593{
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200594 if (unlikely(se->load.weight != NICE_0_LOAD))
595 delta = calc_delta_mine(delta, NICE_0_LOAD, &se->load);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200596
597 return delta;
598}
599
600/*
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200601 * The idea is to set a period in which each task runs once.
602 *
Borislav Petkov532b1852012-08-08 16:16:04 +0200603 * When there are too many tasks (sched_nr_latency) we have to stretch
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200604 * this period because otherwise the slices get too small.
605 *
606 * p = (nr <= nl) ? l : l*nr/nl
607 */
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200608static u64 __sched_period(unsigned long nr_running)
609{
610 u64 period = sysctl_sched_latency;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100611 unsigned long nr_latency = sched_nr_latency;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200612
613 if (unlikely(nr_running > nr_latency)) {
Peter Zijlstra4bf0b772008-01-25 21:08:21 +0100614 period = sysctl_sched_min_granularity;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200615 period *= nr_running;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200616 }
617
618 return period;
619}
620
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200621/*
622 * We calculate the wall-time slice from the period by taking a part
623 * proportional to the weight.
624 *
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200625 * s = p*P[w/rw]
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200626 */
Peter Zijlstra6d0f0eb2007-10-15 17:00:05 +0200627static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
Peter Zijlstra21805082007-08-25 18:41:53 +0200628{
Mike Galbraith0a582442009-01-02 12:16:42 +0100629 u64 slice = __sched_period(cfs_rq->nr_running + !se->on_rq);
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200630
Mike Galbraith0a582442009-01-02 12:16:42 +0100631 for_each_sched_entity(se) {
Lin Ming6272d682009-01-15 17:17:15 +0100632 struct load_weight *load;
Christian Engelmayer3104bf02009-06-16 10:35:12 +0200633 struct load_weight lw;
Lin Ming6272d682009-01-15 17:17:15 +0100634
635 cfs_rq = cfs_rq_of(se);
636 load = &cfs_rq->load;
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200637
Mike Galbraith0a582442009-01-02 12:16:42 +0100638 if (unlikely(!se->on_rq)) {
Christian Engelmayer3104bf02009-06-16 10:35:12 +0200639 lw = cfs_rq->load;
Mike Galbraith0a582442009-01-02 12:16:42 +0100640
641 update_load_add(&lw, se->load.weight);
642 load = &lw;
643 }
644 slice = calc_delta_mine(slice, se->load.weight, load);
645 }
646 return slice;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200647}
648
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200649/*
Peter Zijlstraac884de2008-04-19 19:45:00 +0200650 * We calculate the vruntime slice of a to be inserted task
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200651 *
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200652 * vs = s/w
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200653 */
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200654static u64 sched_vslice(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200655{
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200656 return calc_delta_fair(sched_slice(cfs_rq, se), se);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200657}
658
Paul Turnerd6b55912010-11-15 15:47:09 -0800659static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update);
Paul Turner6d5ab292011-01-21 20:45:01 -0800660static void update_cfs_shares(struct cfs_rq *cfs_rq);
Paul Turner3b3d1902010-11-15 15:47:08 -0800661
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200662/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200663 * Update the current task's runtime statistics. Skip current tasks that
664 * are not in our scheduling class.
665 */
666static inline void
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200667__update_curr(struct cfs_rq *cfs_rq, struct sched_entity *curr,
668 unsigned long delta_exec)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200669{
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200670 unsigned long delta_exec_weighted;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200671
Lucas De Marchi41acab82010-03-10 23:37:45 -0300672 schedstat_set(curr->statistics.exec_max,
673 max((u64)delta_exec, curr->statistics.exec_max));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200674
675 curr->sum_exec_runtime += delta_exec;
Ingo Molnar7a62eab2007-10-15 17:00:06 +0200676 schedstat_add(cfs_rq, exec_clock, delta_exec);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200677 delta_exec_weighted = calc_delta_fair(delta_exec, curr);
Peter Zijlstra88ec22d2009-12-16 18:04:41 +0100678
Ingo Molnare9acbff2007-10-15 17:00:04 +0200679 curr->vruntime += delta_exec_weighted;
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200680 update_min_vruntime(cfs_rq);
Paul Turner3b3d1902010-11-15 15:47:08 -0800681
Peter Zijlstra70caf8a2010-11-20 00:53:51 +0100682#if defined CONFIG_SMP && defined CONFIG_FAIR_GROUP_SCHED
Paul Turner3b3d1902010-11-15 15:47:08 -0800683 cfs_rq->load_unacc_exec_time += delta_exec;
Paul Turner3b3d1902010-11-15 15:47:08 -0800684#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200685}
686
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200687static void update_curr(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200688{
Ingo Molnar429d43b2007-10-15 17:00:03 +0200689 struct sched_entity *curr = cfs_rq->curr;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700690 u64 now = rq_of(cfs_rq)->clock_task;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200691 unsigned long delta_exec;
692
693 if (unlikely(!curr))
694 return;
695
696 /*
697 * Get the amount of time the current task was running
698 * since the last time we changed load (this cannot
699 * overflow on 32 bits):
700 */
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200701 delta_exec = (unsigned long)(now - curr->exec_start);
Peter Zijlstra34f28ec2008-12-16 08:45:31 +0100702 if (!delta_exec)
703 return;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200704
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200705 __update_curr(cfs_rq, curr, delta_exec);
706 curr->exec_start = now;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100707
708 if (entity_is_task(curr)) {
709 struct task_struct *curtask = task_of(curr);
710
Ingo Molnarf977bb42009-09-13 18:15:54 +0200711 trace_sched_stat_runtime(curtask, delta_exec, curr->vruntime);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100712 cpuacct_charge(curtask, delta_exec);
Frank Mayharf06febc2008-09-12 09:54:39 -0700713 account_group_exec_runtime(curtask, delta_exec);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100714 }
Paul Turnerec12cb72011-07-21 09:43:30 -0700715
716 account_cfs_rq_runtime(cfs_rq, delta_exec);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200717}
718
719static inline void
Ingo Molnar5870db52007-08-09 11:16:47 +0200720update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200721{
Lucas De Marchi41acab82010-03-10 23:37:45 -0300722 schedstat_set(se->statistics.wait_start, rq_of(cfs_rq)->clock);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200723}
724
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200725/*
726 * Task is being enqueued - update stats:
727 */
Ingo Molnard2417e52007-08-09 11:16:47 +0200728static void update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200729{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200730 /*
731 * Are we enqueueing a waiting task? (for current tasks
732 * a dequeue/enqueue event is a NOP)
733 */
Ingo Molnar429d43b2007-10-15 17:00:03 +0200734 if (se != cfs_rq->curr)
Ingo Molnar5870db52007-08-09 11:16:47 +0200735 update_stats_wait_start(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200736}
737
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200738static void
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200739update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200740{
Lucas De Marchi41acab82010-03-10 23:37:45 -0300741 schedstat_set(se->statistics.wait_max, max(se->statistics.wait_max,
742 rq_of(cfs_rq)->clock - se->statistics.wait_start));
743 schedstat_set(se->statistics.wait_count, se->statistics.wait_count + 1);
744 schedstat_set(se->statistics.wait_sum, se->statistics.wait_sum +
745 rq_of(cfs_rq)->clock - se->statistics.wait_start);
Peter Zijlstra768d0c22009-07-23 20:13:26 +0200746#ifdef CONFIG_SCHEDSTATS
747 if (entity_is_task(se)) {
748 trace_sched_stat_wait(task_of(se),
Lucas De Marchi41acab82010-03-10 23:37:45 -0300749 rq_of(cfs_rq)->clock - se->statistics.wait_start);
Peter Zijlstra768d0c22009-07-23 20:13:26 +0200750 }
751#endif
Lucas De Marchi41acab82010-03-10 23:37:45 -0300752 schedstat_set(se->statistics.wait_start, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200753}
754
755static inline void
Ingo Molnar19b6a2e2007-08-09 11:16:48 +0200756update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200757{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200758 /*
759 * Mark the end of the wait period if dequeueing a
760 * waiting task:
761 */
Ingo Molnar429d43b2007-10-15 17:00:03 +0200762 if (se != cfs_rq->curr)
Ingo Molnar9ef0a962007-08-09 11:16:47 +0200763 update_stats_wait_end(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200764}
765
766/*
767 * We are picking a new current task - update its stats:
768 */
769static inline void
Ingo Molnar79303e92007-08-09 11:16:47 +0200770update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200771{
772 /*
773 * We are starting a new run period:
774 */
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700775 se->exec_start = rq_of(cfs_rq)->clock_task;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200776}
777
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200778/**************************************************
779 * Scheduling class queueing methods:
780 */
781
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200782#ifdef CONFIG_NUMA_BALANCING
783/*
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200784 * numa task sample period in ms
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200785 */
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200786unsigned int sysctl_numa_balancing_scan_period_min = 100;
787unsigned int sysctl_numa_balancing_scan_period_max = 100*16;
788
789/* Portion of address space to scan in MB */
790unsigned int sysctl_numa_balancing_scan_size = 256;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200791
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200792/* Scan @scan_size MB every @scan_period after an initial @scan_delay in ms */
793unsigned int sysctl_numa_balancing_scan_delay = 1000;
794
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200795static void task_numa_placement(struct task_struct *p)
796{
797 int seq = ACCESS_ONCE(p->mm->numa_scan_seq);
798
799 if (p->numa_scan_seq == seq)
800 return;
801 p->numa_scan_seq = seq;
802
803 /* FIXME: Scheduling placement policy hints go here */
804}
805
806/*
807 * Got a PROT_NONE fault for a page on @node.
808 */
809void task_numa_fault(int node, int pages)
810{
811 struct task_struct *p = current;
812
813 /* FIXME: Allocate task-specific structure for placement policy here */
814
815 task_numa_placement(p);
816}
817
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200818static void reset_ptenuma_scan(struct task_struct *p)
819{
820 ACCESS_ONCE(p->mm->numa_scan_seq)++;
821 p->mm->numa_scan_offset = 0;
822}
823
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200824/*
825 * The expensive part of numa migration is done from task_work context.
826 * Triggered from task_tick_numa().
827 */
828void task_numa_work(struct callback_head *work)
829{
830 unsigned long migrate, next_scan, now = jiffies;
831 struct task_struct *p = current;
832 struct mm_struct *mm = p->mm;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200833 struct vm_area_struct *vma;
Mel Gorman9f406042012-11-14 18:34:32 +0000834 unsigned long start, end;
835 long pages;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200836
837 WARN_ON_ONCE(p != container_of(work, struct task_struct, numa_work));
838
839 work->next = work; /* protect against double add */
840 /*
841 * Who cares about NUMA placement when they're dying.
842 *
843 * NOTE: make sure not to dereference p->mm before this check,
844 * exit_task_work() happens _after_ exit_mm() so we could be called
845 * without p->mm even though we still had it when we enqueued this
846 * work.
847 */
848 if (p->flags & PF_EXITING)
849 return;
850
851 /*
852 * Enforce maximal scan/migration frequency..
853 */
854 migrate = mm->numa_next_scan;
855 if (time_before(now, migrate))
856 return;
857
858 if (p->numa_scan_period == 0)
859 p->numa_scan_period = sysctl_numa_balancing_scan_period_min;
860
861 next_scan = now + 2*msecs_to_jiffies(p->numa_scan_period);
862 if (cmpxchg(&mm->numa_next_scan, migrate, next_scan) != migrate)
863 return;
864
Mel Gormane14808b2012-11-19 10:59:15 +0000865 /*
866 * Do not set pte_numa if the current running node is rate-limited.
867 * This loses statistics on the fault but if we are unwilling to
868 * migrate to this node, it is less likely we can do useful work
869 */
870 if (migrate_ratelimited(numa_node_id()))
871 return;
872
Mel Gorman9f406042012-11-14 18:34:32 +0000873 start = mm->numa_scan_offset;
874 pages = sysctl_numa_balancing_scan_size;
875 pages <<= 20 - PAGE_SHIFT; /* MB in pages */
876 if (!pages)
877 return;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200878
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200879 down_read(&mm->mmap_sem);
Mel Gorman9f406042012-11-14 18:34:32 +0000880 vma = find_vma(mm, start);
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200881 if (!vma) {
882 reset_ptenuma_scan(p);
Mel Gorman9f406042012-11-14 18:34:32 +0000883 start = 0;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200884 vma = mm->mmap;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200885 }
Mel Gorman9f406042012-11-14 18:34:32 +0000886 for (; vma; vma = vma->vm_next) {
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200887 if (!vma_migratable(vma))
888 continue;
889
890 /* Skip small VMAs. They are not likely to be of relevance */
891 if (((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) < HPAGE_PMD_NR)
892 continue;
893
Mel Gorman9f406042012-11-14 18:34:32 +0000894 do {
895 start = max(start, vma->vm_start);
896 end = ALIGN(start + (pages << PAGE_SHIFT), HPAGE_SIZE);
897 end = min(end, vma->vm_end);
898 pages -= change_prot_numa(vma, start, end);
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200899
Mel Gorman9f406042012-11-14 18:34:32 +0000900 start = end;
901 if (pages <= 0)
902 goto out;
903 } while (end != vma->vm_end);
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200904 }
905
Mel Gorman9f406042012-11-14 18:34:32 +0000906out:
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200907 /*
908 * It is possible to reach the end of the VMA list but the last few VMAs are
909 * not guaranteed to the vma_migratable. If they are not, we would find the
910 * !migratable VMA on the next scan but not reset the scanner to the start
911 * so check it now.
912 */
913 if (vma)
Mel Gorman9f406042012-11-14 18:34:32 +0000914 mm->numa_scan_offset = start;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200915 else
916 reset_ptenuma_scan(p);
917 up_read(&mm->mmap_sem);
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200918}
919
920/*
921 * Drive the periodic memory faults..
922 */
923void task_tick_numa(struct rq *rq, struct task_struct *curr)
924{
925 struct callback_head *work = &curr->numa_work;
926 u64 period, now;
927
928 /*
929 * We don't care about NUMA placement if we don't have memory.
930 */
931 if (!curr->mm || (curr->flags & PF_EXITING) || work->next != work)
932 return;
933
934 /*
935 * Using runtime rather than walltime has the dual advantage that
936 * we (mostly) drive the selection from busy threads and that the
937 * task needs to have done some actual work before we bother with
938 * NUMA placement.
939 */
940 now = curr->se.sum_exec_runtime;
941 period = (u64)curr->numa_scan_period * NSEC_PER_MSEC;
942
943 if (now - curr->node_stamp > period) {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200944 if (!curr->node_stamp)
945 curr->numa_scan_period = sysctl_numa_balancing_scan_period_min;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200946 curr->node_stamp = now;
947
948 if (!time_before(jiffies, curr->mm->numa_next_scan)) {
949 init_task_work(work, task_numa_work); /* TODO: move this into sched_fork() */
950 task_work_add(curr, work, true);
951 }
952 }
953}
954#else
955static void task_tick_numa(struct rq *rq, struct task_struct *curr)
956{
957}
958#endif /* CONFIG_NUMA_BALANCING */
959
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200960static void
961account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
962{
963 update_load_add(&cfs_rq->load, se->load.weight);
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200964 if (!parent_entity(se))
Peter Zijlstra029632f2011-10-25 10:00:11 +0200965 update_load_add(&rq_of(cfs_rq)->load, se->load.weight);
Peter Zijlstra367456c2012-02-20 21:49:09 +0100966#ifdef CONFIG_SMP
967 if (entity_is_task(se))
Peter Zijlstraeb953082012-04-17 13:38:40 +0200968 list_add(&se->group_node, &rq_of(cfs_rq)->cfs_tasks);
Peter Zijlstra367456c2012-02-20 21:49:09 +0100969#endif
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200970 cfs_rq->nr_running++;
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200971}
972
973static void
974account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
975{
976 update_load_sub(&cfs_rq->load, se->load.weight);
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200977 if (!parent_entity(se))
Peter Zijlstra029632f2011-10-25 10:00:11 +0200978 update_load_sub(&rq_of(cfs_rq)->load, se->load.weight);
Peter Zijlstra367456c2012-02-20 21:49:09 +0100979 if (entity_is_task(se))
Bharata B Raob87f1722008-09-25 09:53:54 +0530980 list_del_init(&se->group_node);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200981 cfs_rq->nr_running--;
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +0200982}
983
Yong Zhang3ff6dca2011-01-24 15:33:52 +0800984#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Turner64660c82011-07-21 09:43:36 -0700985/* we need this in update_cfs_load and load-balance functions below */
986static inline int throttled_hierarchy(struct cfs_rq *cfs_rq);
Yong Zhang3ff6dca2011-01-24 15:33:52 +0800987# ifdef CONFIG_SMP
Paul Turnerd6b55912010-11-15 15:47:09 -0800988static void update_cfs_rq_load_contribution(struct cfs_rq *cfs_rq,
989 int global_update)
990{
991 struct task_group *tg = cfs_rq->tg;
992 long load_avg;
993
994 load_avg = div64_u64(cfs_rq->load_avg, cfs_rq->load_period+1);
995 load_avg -= cfs_rq->load_contribution;
996
997 if (global_update || abs(load_avg) > cfs_rq->load_contribution / 8) {
998 atomic_add(load_avg, &tg->load_weight);
999 cfs_rq->load_contribution += load_avg;
1000 }
1001}
1002
1003static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001004{
Paul Turnera7a4f8a2010-11-15 15:47:06 -08001005 u64 period = sysctl_sched_shares_window;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001006 u64 now, delta;
Paul Turnere33078b2010-11-15 15:47:04 -08001007 unsigned long load = cfs_rq->load.weight;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001008
Paul Turner64660c82011-07-21 09:43:36 -07001009 if (cfs_rq->tg == &root_task_group || throttled_hierarchy(cfs_rq))
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001010 return;
1011
Paul Turner05ca62c2011-01-21 20:45:02 -08001012 now = rq_of(cfs_rq)->clock_task;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001013 delta = now - cfs_rq->load_stamp;
1014
Paul Turnere33078b2010-11-15 15:47:04 -08001015 /* truncate load history at 4 idle periods */
1016 if (cfs_rq->load_stamp > cfs_rq->load_last &&
1017 now - cfs_rq->load_last > 4 * period) {
1018 cfs_rq->load_period = 0;
1019 cfs_rq->load_avg = 0;
Paul Turnerf07333b2011-01-21 20:45:03 -08001020 delta = period - 1;
Paul Turnere33078b2010-11-15 15:47:04 -08001021 }
1022
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001023 cfs_rq->load_stamp = now;
Paul Turner3b3d1902010-11-15 15:47:08 -08001024 cfs_rq->load_unacc_exec_time = 0;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001025 cfs_rq->load_period += delta;
Paul Turnere33078b2010-11-15 15:47:04 -08001026 if (load) {
1027 cfs_rq->load_last = now;
1028 cfs_rq->load_avg += delta * load;
1029 }
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001030
Paul Turnerd6b55912010-11-15 15:47:09 -08001031 /* consider updating load contribution on each fold or truncate */
1032 if (global_update || cfs_rq->load_period > period
1033 || !cfs_rq->load_period)
1034 update_cfs_rq_load_contribution(cfs_rq, global_update);
1035
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001036 while (cfs_rq->load_period > period) {
1037 /*
1038 * Inline assembly required to prevent the compiler
1039 * optimising this loop into a divmod call.
1040 * See __iter_div_u64_rem() for another example of this.
1041 */
1042 asm("" : "+rm" (cfs_rq->load_period));
1043 cfs_rq->load_period /= 2;
1044 cfs_rq->load_avg /= 2;
1045 }
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08001046
Paul Turnere33078b2010-11-15 15:47:04 -08001047 if (!cfs_rq->curr && !cfs_rq->nr_running && !cfs_rq->load_avg)
1048 list_del_leaf_cfs_rq(cfs_rq);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001049}
1050
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02001051static inline long calc_tg_weight(struct task_group *tg, struct cfs_rq *cfs_rq)
1052{
1053 long tg_weight;
1054
1055 /*
1056 * Use this CPU's actual weight instead of the last load_contribution
1057 * to gain a more accurate current total weight. See
1058 * update_cfs_rq_load_contribution().
1059 */
1060 tg_weight = atomic_read(&tg->load_weight);
1061 tg_weight -= cfs_rq->load_contribution;
1062 tg_weight += cfs_rq->load.weight;
1063
1064 return tg_weight;
1065}
1066
Paul Turner6d5ab292011-01-21 20:45:01 -08001067static long calc_cfs_shares(struct cfs_rq *cfs_rq, struct task_group *tg)
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001068{
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02001069 long tg_weight, load, shares;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001070
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02001071 tg_weight = calc_tg_weight(tg, cfs_rq);
Paul Turner6d5ab292011-01-21 20:45:01 -08001072 load = cfs_rq->load.weight;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001073
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001074 shares = (tg->shares * load);
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02001075 if (tg_weight)
1076 shares /= tg_weight;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001077
1078 if (shares < MIN_SHARES)
1079 shares = MIN_SHARES;
1080 if (shares > tg->shares)
1081 shares = tg->shares;
1082
1083 return shares;
1084}
1085
1086static void update_entity_shares_tick(struct cfs_rq *cfs_rq)
1087{
1088 if (cfs_rq->load_unacc_exec_time > sysctl_sched_shares_window) {
1089 update_cfs_load(cfs_rq, 0);
Paul Turner6d5ab292011-01-21 20:45:01 -08001090 update_cfs_shares(cfs_rq);
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001091 }
1092}
1093# else /* CONFIG_SMP */
1094static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update)
1095{
1096}
1097
Paul Turner6d5ab292011-01-21 20:45:01 -08001098static inline long calc_cfs_shares(struct cfs_rq *cfs_rq, struct task_group *tg)
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001099{
1100 return tg->shares;
1101}
1102
1103static inline void update_entity_shares_tick(struct cfs_rq *cfs_rq)
1104{
1105}
1106# endif /* CONFIG_SMP */
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001107static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
1108 unsigned long weight)
1109{
Paul Turner19e5eeb2010-12-15 19:10:18 -08001110 if (se->on_rq) {
1111 /* commit outstanding execution time */
1112 if (cfs_rq->curr == se)
1113 update_curr(cfs_rq);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001114 account_entity_dequeue(cfs_rq, se);
Paul Turner19e5eeb2010-12-15 19:10:18 -08001115 }
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001116
1117 update_load_set(&se->load, weight);
1118
1119 if (se->on_rq)
1120 account_entity_enqueue(cfs_rq, se);
1121}
1122
Paul Turner6d5ab292011-01-21 20:45:01 -08001123static void update_cfs_shares(struct cfs_rq *cfs_rq)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001124{
1125 struct task_group *tg;
1126 struct sched_entity *se;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001127 long shares;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001128
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001129 tg = cfs_rq->tg;
1130 se = tg->se[cpu_of(rq_of(cfs_rq))];
Paul Turner64660c82011-07-21 09:43:36 -07001131 if (!se || throttled_hierarchy(cfs_rq))
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001132 return;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08001133#ifndef CONFIG_SMP
1134 if (likely(se->load.weight == tg->shares))
1135 return;
1136#endif
Paul Turner6d5ab292011-01-21 20:45:01 -08001137 shares = calc_cfs_shares(cfs_rq, tg);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001138
1139 reweight_entity(cfs_rq_of(se), se, shares);
1140}
1141#else /* CONFIG_FAIR_GROUP_SCHED */
Paul Turnerd6b55912010-11-15 15:47:09 -08001142static void update_cfs_load(struct cfs_rq *cfs_rq, int global_update)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001143{
1144}
1145
Paul Turner6d5ab292011-01-21 20:45:01 -08001146static inline void update_cfs_shares(struct cfs_rq *cfs_rq)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001147{
1148}
Paul Turner43365bd2010-12-15 19:10:17 -08001149
1150static inline void update_entity_shares_tick(struct cfs_rq *cfs_rq)
1151{
1152}
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001153#endif /* CONFIG_FAIR_GROUP_SCHED */
1154
Ingo Molnar2396af62007-08-09 11:16:48 +02001155static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001156{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001157#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrae4143142009-07-23 20:13:26 +02001158 struct task_struct *tsk = NULL;
1159
1160 if (entity_is_task(se))
1161 tsk = task_of(se);
1162
Lucas De Marchi41acab82010-03-10 23:37:45 -03001163 if (se->statistics.sleep_start) {
1164 u64 delta = rq_of(cfs_rq)->clock - se->statistics.sleep_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001165
1166 if ((s64)delta < 0)
1167 delta = 0;
1168
Lucas De Marchi41acab82010-03-10 23:37:45 -03001169 if (unlikely(delta > se->statistics.sleep_max))
1170 se->statistics.sleep_max = delta;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001171
Peter Zijlstra8c79a042012-01-30 14:51:37 +01001172 se->statistics.sleep_start = 0;
Lucas De Marchi41acab82010-03-10 23:37:45 -03001173 se->statistics.sum_sleep_runtime += delta;
Arjan van de Ven97455122008-01-25 21:08:34 +01001174
Peter Zijlstra768d0c22009-07-23 20:13:26 +02001175 if (tsk) {
Peter Zijlstrae4143142009-07-23 20:13:26 +02001176 account_scheduler_latency(tsk, delta >> 10, 1);
Peter Zijlstra768d0c22009-07-23 20:13:26 +02001177 trace_sched_stat_sleep(tsk, delta);
1178 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001179 }
Lucas De Marchi41acab82010-03-10 23:37:45 -03001180 if (se->statistics.block_start) {
1181 u64 delta = rq_of(cfs_rq)->clock - se->statistics.block_start;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001182
1183 if ((s64)delta < 0)
1184 delta = 0;
1185
Lucas De Marchi41acab82010-03-10 23:37:45 -03001186 if (unlikely(delta > se->statistics.block_max))
1187 se->statistics.block_max = delta;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001188
Peter Zijlstra8c79a042012-01-30 14:51:37 +01001189 se->statistics.block_start = 0;
Lucas De Marchi41acab82010-03-10 23:37:45 -03001190 se->statistics.sum_sleep_runtime += delta;
Ingo Molnar30084fb2007-10-02 14:13:08 +02001191
Peter Zijlstrae4143142009-07-23 20:13:26 +02001192 if (tsk) {
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07001193 if (tsk->in_iowait) {
Lucas De Marchi41acab82010-03-10 23:37:45 -03001194 se->statistics.iowait_sum += delta;
1195 se->statistics.iowait_count++;
Peter Zijlstra768d0c22009-07-23 20:13:26 +02001196 trace_sched_stat_iowait(tsk, delta);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07001197 }
1198
Andrew Vaginb781a602011-11-28 12:03:35 +03001199 trace_sched_stat_blocked(tsk, delta);
1200
Peter Zijlstrae4143142009-07-23 20:13:26 +02001201 /*
1202 * Blocking time is in units of nanosecs, so shift by
1203 * 20 to get a milliseconds-range estimation of the
1204 * amount of time that the task spent sleeping:
1205 */
1206 if (unlikely(prof_on == SLEEP_PROFILING)) {
1207 profile_hits(SLEEP_PROFILING,
1208 (void *)get_wchan(tsk),
1209 delta >> 20);
1210 }
1211 account_scheduler_latency(tsk, delta >> 10, 0);
Ingo Molnar30084fb2007-10-02 14:13:08 +02001212 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001213 }
1214#endif
1215}
1216
Peter Zijlstraddc97292007-10-15 17:00:10 +02001217static void check_spread(struct cfs_rq *cfs_rq, struct sched_entity *se)
1218{
1219#ifdef CONFIG_SCHED_DEBUG
1220 s64 d = se->vruntime - cfs_rq->min_vruntime;
1221
1222 if (d < 0)
1223 d = -d;
1224
1225 if (d > 3*sysctl_sched_latency)
1226 schedstat_inc(cfs_rq, nr_spread_over);
1227#endif
1228}
1229
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001230static void
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001231place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial)
1232{
Peter Zijlstra1af5f732008-10-24 11:06:13 +02001233 u64 vruntime = cfs_rq->min_vruntime;
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +02001234
Peter Zijlstra2cb86002007-11-09 22:39:37 +01001235 /*
1236 * The 'current' period is already promised to the current tasks,
1237 * however the extra weight of the new task will slow them down a
1238 * little, place the new task so that it fits in the slot that
1239 * stays open at the end.
1240 */
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +02001241 if (initial && sched_feat(START_DEBIT))
Peter Zijlstraf9c0b092008-10-17 19:27:04 +02001242 vruntime += sched_vslice(cfs_rq, se);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001243
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02001244 /* sleeps up to a single latency don't count. */
Mike Galbraith5ca98802010-03-11 17:17:17 +01001245 if (!initial) {
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02001246 unsigned long thresh = sysctl_sched_latency;
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001247
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02001248 /*
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02001249 * Halve their sleep time's effect, to allow
1250 * for a gentler effect of sleepers:
1251 */
1252 if (sched_feat(GENTLE_FAIR_SLEEPERS))
1253 thresh >>= 1;
Ingo Molnar51e03042009-09-16 08:54:45 +02001254
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02001255 vruntime -= thresh;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001256 }
1257
Mike Galbraithb5d9d732009-09-08 11:12:28 +02001258 /* ensure we never gain time by being placed backwards. */
1259 vruntime = max_vruntime(se->vruntime, vruntime);
1260
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02001261 se->vruntime = vruntime;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001262}
1263
Paul Turnerd3d9dc32011-07-21 09:43:39 -07001264static void check_enqueue_throttle(struct cfs_rq *cfs_rq);
1265
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001266static void
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01001267enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001268{
1269 /*
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01001270 * Update the normalized vruntime before updating min_vruntime
1271 * through callig update_curr().
1272 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001273 if (!(flags & ENQUEUE_WAKEUP) || (flags & ENQUEUE_WAKING))
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01001274 se->vruntime += cfs_rq->min_vruntime;
1275
1276 /*
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +02001277 * Update run-time statistics of the 'current'.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001278 */
Ingo Molnarb7cc0892007-08-09 11:16:47 +02001279 update_curr(cfs_rq);
Paul Turnerd6b55912010-11-15 15:47:09 -08001280 update_cfs_load(cfs_rq, 0);
Peter Zijlstraa9922412008-05-05 23:56:17 +02001281 account_entity_enqueue(cfs_rq, se);
Paul Turner6d5ab292011-01-21 20:45:01 -08001282 update_cfs_shares(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001283
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01001284 if (flags & ENQUEUE_WAKEUP) {
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02001285 place_entity(cfs_rq, se, 0);
Ingo Molnar2396af62007-08-09 11:16:48 +02001286 enqueue_sleeper(cfs_rq, se);
Ingo Molnare9acbff2007-10-15 17:00:04 +02001287 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001288
Ingo Molnard2417e52007-08-09 11:16:47 +02001289 update_stats_enqueue(cfs_rq, se);
Peter Zijlstraddc97292007-10-15 17:00:10 +02001290 check_spread(cfs_rq, se);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001291 if (se != cfs_rq->curr)
1292 __enqueue_entity(cfs_rq, se);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001293 se->on_rq = 1;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08001294
Paul Turnerd3d9dc32011-07-21 09:43:39 -07001295 if (cfs_rq->nr_running == 1) {
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08001296 list_add_leaf_cfs_rq(cfs_rq);
Paul Turnerd3d9dc32011-07-21 09:43:39 -07001297 check_enqueue_throttle(cfs_rq);
1298 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001299}
1300
Rik van Riel2c13c9192011-02-01 09:48:37 -05001301static void __clear_buddies_last(struct sched_entity *se)
Peter Zijlstra2002c692008-11-11 11:52:33 +01001302{
Rik van Riel2c13c9192011-02-01 09:48:37 -05001303 for_each_sched_entity(se) {
1304 struct cfs_rq *cfs_rq = cfs_rq_of(se);
1305 if (cfs_rq->last == se)
1306 cfs_rq->last = NULL;
1307 else
1308 break;
1309 }
1310}
Peter Zijlstra2002c692008-11-11 11:52:33 +01001311
Rik van Riel2c13c9192011-02-01 09:48:37 -05001312static void __clear_buddies_next(struct sched_entity *se)
1313{
1314 for_each_sched_entity(se) {
1315 struct cfs_rq *cfs_rq = cfs_rq_of(se);
1316 if (cfs_rq->next == se)
1317 cfs_rq->next = NULL;
1318 else
1319 break;
1320 }
Peter Zijlstra2002c692008-11-11 11:52:33 +01001321}
1322
Rik van Rielac53db52011-02-01 09:51:03 -05001323static void __clear_buddies_skip(struct sched_entity *se)
1324{
1325 for_each_sched_entity(se) {
1326 struct cfs_rq *cfs_rq = cfs_rq_of(se);
1327 if (cfs_rq->skip == se)
1328 cfs_rq->skip = NULL;
1329 else
1330 break;
1331 }
1332}
1333
Peter Zijlstraa571bbe2009-01-28 14:51:40 +01001334static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se)
1335{
Rik van Riel2c13c9192011-02-01 09:48:37 -05001336 if (cfs_rq->last == se)
1337 __clear_buddies_last(se);
1338
1339 if (cfs_rq->next == se)
1340 __clear_buddies_next(se);
Rik van Rielac53db52011-02-01 09:51:03 -05001341
1342 if (cfs_rq->skip == se)
1343 __clear_buddies_skip(se);
Peter Zijlstraa571bbe2009-01-28 14:51:40 +01001344}
1345
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07001346static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq);
Paul Turnerd8b49862011-07-21 09:43:41 -07001347
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001348static void
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001349dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001350{
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +02001351 /*
1352 * Update run-time statistics of the 'current'.
1353 */
1354 update_curr(cfs_rq);
1355
Ingo Molnar19b6a2e2007-08-09 11:16:48 +02001356 update_stats_dequeue(cfs_rq, se);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001357 if (flags & DEQUEUE_SLEEP) {
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02001358#ifdef CONFIG_SCHEDSTATS
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001359 if (entity_is_task(se)) {
1360 struct task_struct *tsk = task_of(se);
1361
1362 if (tsk->state & TASK_INTERRUPTIBLE)
Lucas De Marchi41acab82010-03-10 23:37:45 -03001363 se->statistics.sleep_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001364 if (tsk->state & TASK_UNINTERRUPTIBLE)
Lucas De Marchi41acab82010-03-10 23:37:45 -03001365 se->statistics.block_start = rq_of(cfs_rq)->clock;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001366 }
Dmitry Adamushkodb36cc72007-10-15 17:00:06 +02001367#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02001368 }
1369
Peter Zijlstra2002c692008-11-11 11:52:33 +01001370 clear_buddies(cfs_rq, se);
Peter Zijlstra47932412008-11-04 21:25:09 +01001371
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001372 if (se != cfs_rq->curr)
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001373 __dequeue_entity(cfs_rq, se);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001374 se->on_rq = 0;
Paul Turnerd6b55912010-11-15 15:47:09 -08001375 update_cfs_load(cfs_rq, 0);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001376 account_entity_dequeue(cfs_rq, se);
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01001377
1378 /*
1379 * Normalize the entity after updating the min_vruntime because the
1380 * update can refer to the ->curr item and we need to reflect this
1381 * movement in our normalized position.
1382 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001383 if (!(flags & DEQUEUE_SLEEP))
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01001384 se->vruntime -= cfs_rq->min_vruntime;
Peter Zijlstra1e876232011-05-17 16:21:10 -07001385
Paul Turnerd8b49862011-07-21 09:43:41 -07001386 /* return excess runtime on last dequeue */
1387 return_cfs_rq_runtime(cfs_rq);
1388
Peter Zijlstra1e876232011-05-17 16:21:10 -07001389 update_min_vruntime(cfs_rq);
1390 update_cfs_shares(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001391}
1392
1393/*
1394 * Preempt the current task with a newly woken task if needed:
1395 */
Peter Zijlstra7c92e542007-09-05 14:32:49 +02001396static void
Ingo Molnar2e09bf52007-10-15 17:00:05 +02001397check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001398{
Peter Zijlstra11697832007-09-05 14:32:49 +02001399 unsigned long ideal_runtime, delta_exec;
Wang Xingchaof4cfb332011-09-16 13:35:52 -04001400 struct sched_entity *se;
1401 s64 delta;
Peter Zijlstra11697832007-09-05 14:32:49 +02001402
Peter Zijlstra6d0f0eb2007-10-15 17:00:05 +02001403 ideal_runtime = sched_slice(cfs_rq, curr);
Peter Zijlstra11697832007-09-05 14:32:49 +02001404 delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +01001405 if (delta_exec > ideal_runtime) {
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001406 resched_task(rq_of(cfs_rq)->curr);
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +01001407 /*
1408 * The current task ran long enough, ensure it doesn't get
1409 * re-elected due to buddy favours.
1410 */
1411 clear_buddies(cfs_rq, curr);
Mike Galbraithf685cea2009-10-23 23:09:22 +02001412 return;
1413 }
1414
1415 /*
1416 * Ensure that a task that missed wakeup preemption by a
1417 * narrow margin doesn't have to wait for a full slice.
1418 * This also mitigates buddy induced latencies under load.
1419 */
Mike Galbraithf685cea2009-10-23 23:09:22 +02001420 if (delta_exec < sysctl_sched_min_granularity)
1421 return;
1422
Wang Xingchaof4cfb332011-09-16 13:35:52 -04001423 se = __pick_first_entity(cfs_rq);
1424 delta = curr->vruntime - se->vruntime;
Mike Galbraithf685cea2009-10-23 23:09:22 +02001425
Wang Xingchaof4cfb332011-09-16 13:35:52 -04001426 if (delta < 0)
1427 return;
Mike Galbraithd7d82942011-01-05 05:41:17 +01001428
Wang Xingchaof4cfb332011-09-16 13:35:52 -04001429 if (delta > ideal_runtime)
1430 resched_task(rq_of(cfs_rq)->curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001431}
1432
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001433static void
Ingo Molnar8494f412007-08-09 11:16:48 +02001434set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001435{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02001436 /* 'current' is not kept within the tree. */
1437 if (se->on_rq) {
1438 /*
1439 * Any task has to be enqueued before it get to execute on
1440 * a CPU. So account for the time it spent waiting on the
1441 * runqueue.
1442 */
1443 update_stats_wait_end(cfs_rq, se);
1444 __dequeue_entity(cfs_rq, se);
1445 }
1446
Ingo Molnar79303e92007-08-09 11:16:47 +02001447 update_stats_curr_start(cfs_rq, se);
Ingo Molnar429d43b2007-10-15 17:00:03 +02001448 cfs_rq->curr = se;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001449#ifdef CONFIG_SCHEDSTATS
1450 /*
1451 * Track our maximum slice length, if the CPU's load is at
1452 * least twice that of our own weight (i.e. dont track it
1453 * when there are only lesser-weight tasks around):
1454 */
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001455 if (rq_of(cfs_rq)->load.weight >= 2*se->load.weight) {
Lucas De Marchi41acab82010-03-10 23:37:45 -03001456 se->statistics.slice_max = max(se->statistics.slice_max,
Ingo Molnareba1ed42007-10-15 17:00:02 +02001457 se->sum_exec_runtime - se->prev_sum_exec_runtime);
1458 }
1459#endif
Peter Zijlstra4a55b452007-09-05 14:32:49 +02001460 se->prev_sum_exec_runtime = se->sum_exec_runtime;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001461}
1462
Peter Zijlstra3f3a4902008-10-24 11:06:16 +02001463static int
1464wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se);
1465
Rik van Rielac53db52011-02-01 09:51:03 -05001466/*
1467 * Pick the next process, keeping these things in mind, in this order:
1468 * 1) keep things fair between processes/task groups
1469 * 2) pick the "next" process, since someone really wants that to run
1470 * 3) pick the "last" process, for cache locality
1471 * 4) do not run the "skip" process, if something else is available
1472 */
Peter Zijlstraf4b67552008-11-04 21:25:07 +01001473static struct sched_entity *pick_next_entity(struct cfs_rq *cfs_rq)
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01001474{
Rik van Rielac53db52011-02-01 09:51:03 -05001475 struct sched_entity *se = __pick_first_entity(cfs_rq);
Mike Galbraithf685cea2009-10-23 23:09:22 +02001476 struct sched_entity *left = se;
Peter Zijlstraf4b67552008-11-04 21:25:07 +01001477
Rik van Rielac53db52011-02-01 09:51:03 -05001478 /*
1479 * Avoid running the skip buddy, if running something else can
1480 * be done without getting too unfair.
1481 */
1482 if (cfs_rq->skip == se) {
1483 struct sched_entity *second = __pick_next_entity(se);
1484 if (second && wakeup_preempt_entity(second, left) < 1)
1485 se = second;
1486 }
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01001487
Mike Galbraithf685cea2009-10-23 23:09:22 +02001488 /*
1489 * Prefer last buddy, try to return the CPU to a preempted task.
1490 */
1491 if (cfs_rq->last && wakeup_preempt_entity(cfs_rq->last, left) < 1)
1492 se = cfs_rq->last;
1493
Rik van Rielac53db52011-02-01 09:51:03 -05001494 /*
1495 * Someone really wants this to run. If it's not unfair, run it.
1496 */
1497 if (cfs_rq->next && wakeup_preempt_entity(cfs_rq->next, left) < 1)
1498 se = cfs_rq->next;
1499
Mike Galbraithf685cea2009-10-23 23:09:22 +02001500 clear_buddies(cfs_rq, se);
Peter Zijlstra47932412008-11-04 21:25:09 +01001501
1502 return se;
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01001503}
1504
Paul Turnerd3d9dc32011-07-21 09:43:39 -07001505static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq);
1506
Ingo Molnarab6cde22007-08-09 11:16:48 +02001507static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001508{
1509 /*
1510 * If still on the runqueue then deactivate_task()
1511 * was not called and update_curr() has to be done:
1512 */
1513 if (prev->on_rq)
Ingo Molnarb7cc0892007-08-09 11:16:47 +02001514 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001515
Paul Turnerd3d9dc32011-07-21 09:43:39 -07001516 /* throttle cfs_rqs exceeding runtime */
1517 check_cfs_rq_runtime(cfs_rq);
1518
Peter Zijlstraddc97292007-10-15 17:00:10 +02001519 check_spread(cfs_rq, prev);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001520 if (prev->on_rq) {
Ingo Molnar5870db52007-08-09 11:16:47 +02001521 update_stats_wait_start(cfs_rq, prev);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001522 /* Put 'current' back into the tree. */
1523 __enqueue_entity(cfs_rq, prev);
1524 }
Ingo Molnar429d43b2007-10-15 17:00:03 +02001525 cfs_rq->curr = NULL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001526}
1527
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001528static void
1529entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001530{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001531 /*
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001532 * Update run-time statistics of the 'current'.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001533 */
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02001534 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001535
Paul Turner43365bd2010-12-15 19:10:17 -08001536 /*
1537 * Update share accounting for long-running entities.
1538 */
1539 update_entity_shares_tick(cfs_rq);
1540
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001541#ifdef CONFIG_SCHED_HRTICK
1542 /*
1543 * queued ticks are scheduled to match the slice, so don't bother
1544 * validating it and just reschedule.
1545 */
Harvey Harrison983ed7a2008-04-24 18:17:55 -07001546 if (queued) {
1547 resched_task(rq_of(cfs_rq)->curr);
1548 return;
1549 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001550 /*
1551 * don't let the period tick interfere with the hrtick preemption
1552 */
1553 if (!sched_feat(DOUBLE_TICK) &&
1554 hrtimer_active(&rq_of(cfs_rq)->hrtick_timer))
1555 return;
1556#endif
1557
Yong Zhang2c2efae2011-07-29 16:20:33 +08001558 if (cfs_rq->nr_running > 1)
Ingo Molnar2e09bf52007-10-15 17:00:05 +02001559 check_preempt_tick(cfs_rq, curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001560}
1561
Paul Turnerab84d312011-07-21 09:43:28 -07001562
1563/**************************************************
1564 * CFS bandwidth control machinery
1565 */
1566
1567#ifdef CONFIG_CFS_BANDWIDTH
Peter Zijlstra029632f2011-10-25 10:00:11 +02001568
1569#ifdef HAVE_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +01001570static struct static_key __cfs_bandwidth_used;
Peter Zijlstra029632f2011-10-25 10:00:11 +02001571
1572static inline bool cfs_bandwidth_used(void)
1573{
Ingo Molnarc5905af2012-02-24 08:31:31 +01001574 return static_key_false(&__cfs_bandwidth_used);
Peter Zijlstra029632f2011-10-25 10:00:11 +02001575}
1576
1577void account_cfs_bandwidth_used(int enabled, int was_enabled)
1578{
1579 /* only need to count groups transitioning between enabled/!enabled */
1580 if (enabled && !was_enabled)
Ingo Molnarc5905af2012-02-24 08:31:31 +01001581 static_key_slow_inc(&__cfs_bandwidth_used);
Peter Zijlstra029632f2011-10-25 10:00:11 +02001582 else if (!enabled && was_enabled)
Ingo Molnarc5905af2012-02-24 08:31:31 +01001583 static_key_slow_dec(&__cfs_bandwidth_used);
Peter Zijlstra029632f2011-10-25 10:00:11 +02001584}
1585#else /* HAVE_JUMP_LABEL */
1586static bool cfs_bandwidth_used(void)
1587{
1588 return true;
1589}
1590
1591void account_cfs_bandwidth_used(int enabled, int was_enabled) {}
1592#endif /* HAVE_JUMP_LABEL */
1593
Paul Turnerab84d312011-07-21 09:43:28 -07001594/*
1595 * default period for cfs group bandwidth.
1596 * default: 0.1s, units: nanoseconds
1597 */
1598static inline u64 default_cfs_period(void)
1599{
1600 return 100000000ULL;
1601}
Paul Turnerec12cb72011-07-21 09:43:30 -07001602
1603static inline u64 sched_cfs_bandwidth_slice(void)
1604{
1605 return (u64)sysctl_sched_cfs_bandwidth_slice * NSEC_PER_USEC;
1606}
1607
Paul Turnera9cf55b2011-07-21 09:43:32 -07001608/*
1609 * Replenish runtime according to assigned quota and update expiration time.
1610 * We use sched_clock_cpu directly instead of rq->clock to avoid adding
1611 * additional synchronization around rq->lock.
1612 *
1613 * requires cfs_b->lock
1614 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02001615void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b)
Paul Turnera9cf55b2011-07-21 09:43:32 -07001616{
1617 u64 now;
1618
1619 if (cfs_b->quota == RUNTIME_INF)
1620 return;
1621
1622 now = sched_clock_cpu(smp_processor_id());
1623 cfs_b->runtime = cfs_b->quota;
1624 cfs_b->runtime_expires = now + ktime_to_ns(cfs_b->period);
1625}
1626
Peter Zijlstra029632f2011-10-25 10:00:11 +02001627static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
1628{
1629 return &tg->cfs_bandwidth;
1630}
1631
Paul Turner85dac902011-07-21 09:43:33 -07001632/* returns 0 on failure to allocate runtime */
1633static int assign_cfs_rq_runtime(struct cfs_rq *cfs_rq)
Paul Turnerec12cb72011-07-21 09:43:30 -07001634{
1635 struct task_group *tg = cfs_rq->tg;
1636 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
Paul Turnera9cf55b2011-07-21 09:43:32 -07001637 u64 amount = 0, min_amount, expires;
Paul Turnerec12cb72011-07-21 09:43:30 -07001638
1639 /* note: this is a positive sum as runtime_remaining <= 0 */
1640 min_amount = sched_cfs_bandwidth_slice() - cfs_rq->runtime_remaining;
1641
1642 raw_spin_lock(&cfs_b->lock);
1643 if (cfs_b->quota == RUNTIME_INF)
1644 amount = min_amount;
Paul Turner58088ad2011-07-21 09:43:31 -07001645 else {
Paul Turnera9cf55b2011-07-21 09:43:32 -07001646 /*
1647 * If the bandwidth pool has become inactive, then at least one
1648 * period must have elapsed since the last consumption.
1649 * Refresh the global state and ensure bandwidth timer becomes
1650 * active.
1651 */
1652 if (!cfs_b->timer_active) {
1653 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07001654 __start_cfs_bandwidth(cfs_b);
Paul Turnera9cf55b2011-07-21 09:43:32 -07001655 }
Paul Turner58088ad2011-07-21 09:43:31 -07001656
1657 if (cfs_b->runtime > 0) {
1658 amount = min(cfs_b->runtime, min_amount);
1659 cfs_b->runtime -= amount;
1660 cfs_b->idle = 0;
1661 }
Paul Turnerec12cb72011-07-21 09:43:30 -07001662 }
Paul Turnera9cf55b2011-07-21 09:43:32 -07001663 expires = cfs_b->runtime_expires;
Paul Turnerec12cb72011-07-21 09:43:30 -07001664 raw_spin_unlock(&cfs_b->lock);
1665
1666 cfs_rq->runtime_remaining += amount;
Paul Turnera9cf55b2011-07-21 09:43:32 -07001667 /*
1668 * we may have advanced our local expiration to account for allowed
1669 * spread between our sched_clock and the one on which runtime was
1670 * issued.
1671 */
1672 if ((s64)(expires - cfs_rq->runtime_expires) > 0)
1673 cfs_rq->runtime_expires = expires;
Paul Turner85dac902011-07-21 09:43:33 -07001674
1675 return cfs_rq->runtime_remaining > 0;
Paul Turnera9cf55b2011-07-21 09:43:32 -07001676}
1677
1678/*
1679 * Note: This depends on the synchronization provided by sched_clock and the
1680 * fact that rq->clock snapshots this value.
1681 */
1682static void expire_cfs_rq_runtime(struct cfs_rq *cfs_rq)
1683{
1684 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
1685 struct rq *rq = rq_of(cfs_rq);
1686
1687 /* if the deadline is ahead of our clock, nothing to do */
1688 if (likely((s64)(rq->clock - cfs_rq->runtime_expires) < 0))
1689 return;
1690
1691 if (cfs_rq->runtime_remaining < 0)
1692 return;
1693
1694 /*
1695 * If the local deadline has passed we have to consider the
1696 * possibility that our sched_clock is 'fast' and the global deadline
1697 * has not truly expired.
1698 *
1699 * Fortunately we can check determine whether this the case by checking
1700 * whether the global deadline has advanced.
1701 */
1702
1703 if ((s64)(cfs_rq->runtime_expires - cfs_b->runtime_expires) >= 0) {
1704 /* extend local deadline, drift is bounded above by 2 ticks */
1705 cfs_rq->runtime_expires += TICK_NSEC;
1706 } else {
1707 /* global deadline is ahead, expiration has passed */
1708 cfs_rq->runtime_remaining = 0;
1709 }
Paul Turnerec12cb72011-07-21 09:43:30 -07001710}
1711
1712static void __account_cfs_rq_runtime(struct cfs_rq *cfs_rq,
1713 unsigned long delta_exec)
1714{
Paul Turnera9cf55b2011-07-21 09:43:32 -07001715 /* dock delta_exec before expiring quota (as it could span periods) */
Paul Turnerec12cb72011-07-21 09:43:30 -07001716 cfs_rq->runtime_remaining -= delta_exec;
Paul Turnera9cf55b2011-07-21 09:43:32 -07001717 expire_cfs_rq_runtime(cfs_rq);
1718
1719 if (likely(cfs_rq->runtime_remaining > 0))
Paul Turnerec12cb72011-07-21 09:43:30 -07001720 return;
1721
Paul Turner85dac902011-07-21 09:43:33 -07001722 /*
1723 * if we're unable to extend our runtime we resched so that the active
1724 * hierarchy can be throttled
1725 */
1726 if (!assign_cfs_rq_runtime(cfs_rq) && likely(cfs_rq->curr))
1727 resched_task(rq_of(cfs_rq)->curr);
Paul Turnerec12cb72011-07-21 09:43:30 -07001728}
1729
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07001730static __always_inline
1731void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec)
Paul Turnerec12cb72011-07-21 09:43:30 -07001732{
Paul Turner56f570e2011-11-07 20:26:33 -08001733 if (!cfs_bandwidth_used() || !cfs_rq->runtime_enabled)
Paul Turnerec12cb72011-07-21 09:43:30 -07001734 return;
1735
1736 __account_cfs_rq_runtime(cfs_rq, delta_exec);
1737}
1738
Paul Turner85dac902011-07-21 09:43:33 -07001739static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
1740{
Paul Turner56f570e2011-11-07 20:26:33 -08001741 return cfs_bandwidth_used() && cfs_rq->throttled;
Paul Turner85dac902011-07-21 09:43:33 -07001742}
1743
Paul Turner64660c82011-07-21 09:43:36 -07001744/* check whether cfs_rq, or any parent, is throttled */
1745static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
1746{
Paul Turner56f570e2011-11-07 20:26:33 -08001747 return cfs_bandwidth_used() && cfs_rq->throttle_count;
Paul Turner64660c82011-07-21 09:43:36 -07001748}
1749
1750/*
1751 * Ensure that neither of the group entities corresponding to src_cpu or
1752 * dest_cpu are members of a throttled hierarchy when performing group
1753 * load-balance operations.
1754 */
1755static inline int throttled_lb_pair(struct task_group *tg,
1756 int src_cpu, int dest_cpu)
1757{
1758 struct cfs_rq *src_cfs_rq, *dest_cfs_rq;
1759
1760 src_cfs_rq = tg->cfs_rq[src_cpu];
1761 dest_cfs_rq = tg->cfs_rq[dest_cpu];
1762
1763 return throttled_hierarchy(src_cfs_rq) ||
1764 throttled_hierarchy(dest_cfs_rq);
1765}
1766
1767/* updated child weight may affect parent so we have to do this bottom up */
1768static int tg_unthrottle_up(struct task_group *tg, void *data)
1769{
1770 struct rq *rq = data;
1771 struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
1772
1773 cfs_rq->throttle_count--;
1774#ifdef CONFIG_SMP
1775 if (!cfs_rq->throttle_count) {
1776 u64 delta = rq->clock_task - cfs_rq->load_stamp;
1777
1778 /* leaving throttled state, advance shares averaging windows */
1779 cfs_rq->load_stamp += delta;
1780 cfs_rq->load_last += delta;
1781
1782 /* update entity weight now that we are on_rq again */
1783 update_cfs_shares(cfs_rq);
1784 }
1785#endif
1786
1787 return 0;
1788}
1789
1790static int tg_throttle_down(struct task_group *tg, void *data)
1791{
1792 struct rq *rq = data;
1793 struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
1794
1795 /* group is entering throttled state, record last load */
1796 if (!cfs_rq->throttle_count)
1797 update_cfs_load(cfs_rq, 0);
1798 cfs_rq->throttle_count++;
1799
1800 return 0;
1801}
1802
Paul Turnerd3d9dc32011-07-21 09:43:39 -07001803static void throttle_cfs_rq(struct cfs_rq *cfs_rq)
Paul Turner85dac902011-07-21 09:43:33 -07001804{
1805 struct rq *rq = rq_of(cfs_rq);
1806 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
1807 struct sched_entity *se;
1808 long task_delta, dequeue = 1;
1809
1810 se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))];
1811
1812 /* account load preceding throttle */
Paul Turner64660c82011-07-21 09:43:36 -07001813 rcu_read_lock();
1814 walk_tg_tree_from(cfs_rq->tg, tg_throttle_down, tg_nop, (void *)rq);
1815 rcu_read_unlock();
Paul Turner85dac902011-07-21 09:43:33 -07001816
1817 task_delta = cfs_rq->h_nr_running;
1818 for_each_sched_entity(se) {
1819 struct cfs_rq *qcfs_rq = cfs_rq_of(se);
1820 /* throttled entity or throttle-on-deactivate */
1821 if (!se->on_rq)
1822 break;
1823
1824 if (dequeue)
1825 dequeue_entity(qcfs_rq, se, DEQUEUE_SLEEP);
1826 qcfs_rq->h_nr_running -= task_delta;
1827
1828 if (qcfs_rq->load.weight)
1829 dequeue = 0;
1830 }
1831
1832 if (!se)
1833 rq->nr_running -= task_delta;
1834
1835 cfs_rq->throttled = 1;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07001836 cfs_rq->throttled_timestamp = rq->clock;
Paul Turner85dac902011-07-21 09:43:33 -07001837 raw_spin_lock(&cfs_b->lock);
1838 list_add_tail_rcu(&cfs_rq->throttled_list, &cfs_b->throttled_cfs_rq);
1839 raw_spin_unlock(&cfs_b->lock);
1840}
1841
Peter Zijlstra029632f2011-10-25 10:00:11 +02001842void unthrottle_cfs_rq(struct cfs_rq *cfs_rq)
Paul Turner671fd9d2011-07-21 09:43:34 -07001843{
1844 struct rq *rq = rq_of(cfs_rq);
1845 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
1846 struct sched_entity *se;
1847 int enqueue = 1;
1848 long task_delta;
1849
1850 se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))];
1851
1852 cfs_rq->throttled = 0;
1853 raw_spin_lock(&cfs_b->lock);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07001854 cfs_b->throttled_time += rq->clock - cfs_rq->throttled_timestamp;
Paul Turner671fd9d2011-07-21 09:43:34 -07001855 list_del_rcu(&cfs_rq->throttled_list);
1856 raw_spin_unlock(&cfs_b->lock);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07001857 cfs_rq->throttled_timestamp = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07001858
Paul Turner64660c82011-07-21 09:43:36 -07001859 update_rq_clock(rq);
1860 /* update hierarchical throttle state */
1861 walk_tg_tree_from(cfs_rq->tg, tg_nop, tg_unthrottle_up, (void *)rq);
1862
Paul Turner671fd9d2011-07-21 09:43:34 -07001863 if (!cfs_rq->load.weight)
1864 return;
1865
1866 task_delta = cfs_rq->h_nr_running;
1867 for_each_sched_entity(se) {
1868 if (se->on_rq)
1869 enqueue = 0;
1870
1871 cfs_rq = cfs_rq_of(se);
1872 if (enqueue)
1873 enqueue_entity(cfs_rq, se, ENQUEUE_WAKEUP);
1874 cfs_rq->h_nr_running += task_delta;
1875
1876 if (cfs_rq_throttled(cfs_rq))
1877 break;
1878 }
1879
1880 if (!se)
1881 rq->nr_running += task_delta;
1882
1883 /* determine whether we need to wake up potentially idle cpu */
1884 if (rq->curr == rq->idle && rq->cfs.nr_running)
1885 resched_task(rq->curr);
1886}
1887
1888static u64 distribute_cfs_runtime(struct cfs_bandwidth *cfs_b,
1889 u64 remaining, u64 expires)
1890{
1891 struct cfs_rq *cfs_rq;
1892 u64 runtime = remaining;
1893
1894 rcu_read_lock();
1895 list_for_each_entry_rcu(cfs_rq, &cfs_b->throttled_cfs_rq,
1896 throttled_list) {
1897 struct rq *rq = rq_of(cfs_rq);
1898
1899 raw_spin_lock(&rq->lock);
1900 if (!cfs_rq_throttled(cfs_rq))
1901 goto next;
1902
1903 runtime = -cfs_rq->runtime_remaining + 1;
1904 if (runtime > remaining)
1905 runtime = remaining;
1906 remaining -= runtime;
1907
1908 cfs_rq->runtime_remaining += runtime;
1909 cfs_rq->runtime_expires = expires;
1910
1911 /* we check whether we're throttled above */
1912 if (cfs_rq->runtime_remaining > 0)
1913 unthrottle_cfs_rq(cfs_rq);
1914
1915next:
1916 raw_spin_unlock(&rq->lock);
1917
1918 if (!remaining)
1919 break;
1920 }
1921 rcu_read_unlock();
1922
1923 return remaining;
1924}
1925
Paul Turner58088ad2011-07-21 09:43:31 -07001926/*
1927 * Responsible for refilling a task_group's bandwidth and unthrottling its
1928 * cfs_rqs as appropriate. If there has been no activity within the last
1929 * period the timer is deactivated until scheduling resumes; cfs_b->idle is
1930 * used to track this state.
1931 */
1932static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun)
1933{
Paul Turner671fd9d2011-07-21 09:43:34 -07001934 u64 runtime, runtime_expires;
1935 int idle = 1, throttled;
Paul Turner58088ad2011-07-21 09:43:31 -07001936
1937 raw_spin_lock(&cfs_b->lock);
1938 /* no need to continue the timer with no bandwidth constraint */
1939 if (cfs_b->quota == RUNTIME_INF)
1940 goto out_unlock;
1941
Paul Turner671fd9d2011-07-21 09:43:34 -07001942 throttled = !list_empty(&cfs_b->throttled_cfs_rq);
1943 /* idle depends on !throttled (for the case of a large deficit) */
1944 idle = cfs_b->idle && !throttled;
Nikhil Raoe8da1b12011-07-21 09:43:40 -07001945 cfs_b->nr_periods += overrun;
Paul Turner671fd9d2011-07-21 09:43:34 -07001946
Paul Turnera9cf55b2011-07-21 09:43:32 -07001947 /* if we're going inactive then everything else can be deferred */
1948 if (idle)
1949 goto out_unlock;
1950
1951 __refill_cfs_bandwidth_runtime(cfs_b);
1952
Paul Turner671fd9d2011-07-21 09:43:34 -07001953 if (!throttled) {
1954 /* mark as potentially idle for the upcoming period */
1955 cfs_b->idle = 1;
1956 goto out_unlock;
1957 }
Paul Turner58088ad2011-07-21 09:43:31 -07001958
Nikhil Raoe8da1b12011-07-21 09:43:40 -07001959 /* account preceding periods in which throttling occurred */
1960 cfs_b->nr_throttled += overrun;
1961
Paul Turner671fd9d2011-07-21 09:43:34 -07001962 /*
1963 * There are throttled entities so we must first use the new bandwidth
1964 * to unthrottle them before making it generally available. This
1965 * ensures that all existing debts will be paid before a new cfs_rq is
1966 * allowed to run.
1967 */
1968 runtime = cfs_b->runtime;
1969 runtime_expires = cfs_b->runtime_expires;
1970 cfs_b->runtime = 0;
1971
1972 /*
1973 * This check is repeated as we are holding onto the new bandwidth
1974 * while we unthrottle. This can potentially race with an unthrottled
1975 * group trying to acquire new bandwidth from the global pool.
1976 */
1977 while (throttled && runtime > 0) {
1978 raw_spin_unlock(&cfs_b->lock);
1979 /* we can't nest cfs_b->lock while distributing bandwidth */
1980 runtime = distribute_cfs_runtime(cfs_b, runtime,
1981 runtime_expires);
1982 raw_spin_lock(&cfs_b->lock);
1983
1984 throttled = !list_empty(&cfs_b->throttled_cfs_rq);
1985 }
1986
1987 /* return (any) remaining runtime */
1988 cfs_b->runtime = runtime;
1989 /*
1990 * While we are ensured activity in the period following an
1991 * unthrottle, this also covers the case in which the new bandwidth is
1992 * insufficient to cover the existing bandwidth deficit. (Forcing the
1993 * timer to remain active while there are any throttled entities.)
1994 */
1995 cfs_b->idle = 0;
Paul Turner58088ad2011-07-21 09:43:31 -07001996out_unlock:
1997 if (idle)
1998 cfs_b->timer_active = 0;
1999 raw_spin_unlock(&cfs_b->lock);
2000
2001 return idle;
2002}
Paul Turnerd3d9dc32011-07-21 09:43:39 -07002003
Paul Turnerd8b49862011-07-21 09:43:41 -07002004/* a cfs_rq won't donate quota below this amount */
2005static const u64 min_cfs_rq_runtime = 1 * NSEC_PER_MSEC;
2006/* minimum remaining period time to redistribute slack quota */
2007static const u64 min_bandwidth_expiration = 2 * NSEC_PER_MSEC;
2008/* how long we wait to gather additional slack before distributing */
2009static const u64 cfs_bandwidth_slack_period = 5 * NSEC_PER_MSEC;
2010
2011/* are we near the end of the current quota period? */
2012static int runtime_refresh_within(struct cfs_bandwidth *cfs_b, u64 min_expire)
2013{
2014 struct hrtimer *refresh_timer = &cfs_b->period_timer;
2015 u64 remaining;
2016
2017 /* if the call-back is running a quota refresh is already occurring */
2018 if (hrtimer_callback_running(refresh_timer))
2019 return 1;
2020
2021 /* is a quota refresh about to occur? */
2022 remaining = ktime_to_ns(hrtimer_expires_remaining(refresh_timer));
2023 if (remaining < min_expire)
2024 return 1;
2025
2026 return 0;
2027}
2028
2029static void start_cfs_slack_bandwidth(struct cfs_bandwidth *cfs_b)
2030{
2031 u64 min_left = cfs_bandwidth_slack_period + min_bandwidth_expiration;
2032
2033 /* if there's a quota refresh soon don't bother with slack */
2034 if (runtime_refresh_within(cfs_b, min_left))
2035 return;
2036
2037 start_bandwidth_timer(&cfs_b->slack_timer,
2038 ns_to_ktime(cfs_bandwidth_slack_period));
2039}
2040
2041/* we know any runtime found here is valid as update_curr() precedes return */
2042static void __return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
2043{
2044 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
2045 s64 slack_runtime = cfs_rq->runtime_remaining - min_cfs_rq_runtime;
2046
2047 if (slack_runtime <= 0)
2048 return;
2049
2050 raw_spin_lock(&cfs_b->lock);
2051 if (cfs_b->quota != RUNTIME_INF &&
2052 cfs_rq->runtime_expires == cfs_b->runtime_expires) {
2053 cfs_b->runtime += slack_runtime;
2054
2055 /* we are under rq->lock, defer unthrottling using a timer */
2056 if (cfs_b->runtime > sched_cfs_bandwidth_slice() &&
2057 !list_empty(&cfs_b->throttled_cfs_rq))
2058 start_cfs_slack_bandwidth(cfs_b);
2059 }
2060 raw_spin_unlock(&cfs_b->lock);
2061
2062 /* even if it's not valid for return we don't want to try again */
2063 cfs_rq->runtime_remaining -= slack_runtime;
2064}
2065
2066static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
2067{
Paul Turner56f570e2011-11-07 20:26:33 -08002068 if (!cfs_bandwidth_used())
2069 return;
2070
Paul Turnerfccfdc62011-11-07 20:26:34 -08002071 if (!cfs_rq->runtime_enabled || cfs_rq->nr_running)
Paul Turnerd8b49862011-07-21 09:43:41 -07002072 return;
2073
2074 __return_cfs_rq_runtime(cfs_rq);
2075}
2076
2077/*
2078 * This is done with a timer (instead of inline with bandwidth return) since
2079 * it's necessary to juggle rq->locks to unthrottle their respective cfs_rqs.
2080 */
2081static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b)
2082{
2083 u64 runtime = 0, slice = sched_cfs_bandwidth_slice();
2084 u64 expires;
2085
2086 /* confirm we're still not at a refresh boundary */
2087 if (runtime_refresh_within(cfs_b, min_bandwidth_expiration))
2088 return;
2089
2090 raw_spin_lock(&cfs_b->lock);
2091 if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice) {
2092 runtime = cfs_b->runtime;
2093 cfs_b->runtime = 0;
2094 }
2095 expires = cfs_b->runtime_expires;
2096 raw_spin_unlock(&cfs_b->lock);
2097
2098 if (!runtime)
2099 return;
2100
2101 runtime = distribute_cfs_runtime(cfs_b, runtime, expires);
2102
2103 raw_spin_lock(&cfs_b->lock);
2104 if (expires == cfs_b->runtime_expires)
2105 cfs_b->runtime = runtime;
2106 raw_spin_unlock(&cfs_b->lock);
2107}
2108
Paul Turnerd3d9dc32011-07-21 09:43:39 -07002109/*
2110 * When a group wakes up we want to make sure that its quota is not already
2111 * expired/exceeded, otherwise it may be allowed to steal additional ticks of
2112 * runtime as update_curr() throttling can not not trigger until it's on-rq.
2113 */
2114static void check_enqueue_throttle(struct cfs_rq *cfs_rq)
2115{
Paul Turner56f570e2011-11-07 20:26:33 -08002116 if (!cfs_bandwidth_used())
2117 return;
2118
Paul Turnerd3d9dc32011-07-21 09:43:39 -07002119 /* an active group must be handled by the update_curr()->put() path */
2120 if (!cfs_rq->runtime_enabled || cfs_rq->curr)
2121 return;
2122
2123 /* ensure the group is not already throttled */
2124 if (cfs_rq_throttled(cfs_rq))
2125 return;
2126
2127 /* update runtime allocation */
2128 account_cfs_rq_runtime(cfs_rq, 0);
2129 if (cfs_rq->runtime_remaining <= 0)
2130 throttle_cfs_rq(cfs_rq);
2131}
2132
2133/* conditionally throttle active cfs_rq's from put_prev_entity() */
2134static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq)
2135{
Paul Turner56f570e2011-11-07 20:26:33 -08002136 if (!cfs_bandwidth_used())
2137 return;
2138
Paul Turnerd3d9dc32011-07-21 09:43:39 -07002139 if (likely(!cfs_rq->runtime_enabled || cfs_rq->runtime_remaining > 0))
2140 return;
2141
2142 /*
2143 * it's possible for a throttled entity to be forced into a running
2144 * state (e.g. set_curr_task), in this case we're finished.
2145 */
2146 if (cfs_rq_throttled(cfs_rq))
2147 return;
2148
2149 throttle_cfs_rq(cfs_rq);
2150}
Peter Zijlstra029632f2011-10-25 10:00:11 +02002151
2152static inline u64 default_cfs_period(void);
2153static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun);
2154static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b);
2155
2156static enum hrtimer_restart sched_cfs_slack_timer(struct hrtimer *timer)
2157{
2158 struct cfs_bandwidth *cfs_b =
2159 container_of(timer, struct cfs_bandwidth, slack_timer);
2160 do_sched_cfs_slack_timer(cfs_b);
2161
2162 return HRTIMER_NORESTART;
2163}
2164
2165static enum hrtimer_restart sched_cfs_period_timer(struct hrtimer *timer)
2166{
2167 struct cfs_bandwidth *cfs_b =
2168 container_of(timer, struct cfs_bandwidth, period_timer);
2169 ktime_t now;
2170 int overrun;
2171 int idle = 0;
2172
2173 for (;;) {
2174 now = hrtimer_cb_get_time(timer);
2175 overrun = hrtimer_forward(timer, now, cfs_b->period);
2176
2177 if (!overrun)
2178 break;
2179
2180 idle = do_sched_cfs_period_timer(cfs_b, overrun);
2181 }
2182
2183 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
2184}
2185
2186void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
2187{
2188 raw_spin_lock_init(&cfs_b->lock);
2189 cfs_b->runtime = 0;
2190 cfs_b->quota = RUNTIME_INF;
2191 cfs_b->period = ns_to_ktime(default_cfs_period());
2192
2193 INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq);
2194 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2195 cfs_b->period_timer.function = sched_cfs_period_timer;
2196 hrtimer_init(&cfs_b->slack_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
2197 cfs_b->slack_timer.function = sched_cfs_slack_timer;
2198}
2199
2200static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
2201{
2202 cfs_rq->runtime_enabled = 0;
2203 INIT_LIST_HEAD(&cfs_rq->throttled_list);
2204}
2205
2206/* requires cfs_b->lock, may release to reprogram timer */
2207void __start_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
2208{
2209 /*
2210 * The timer may be active because we're trying to set a new bandwidth
2211 * period or because we're racing with the tear-down path
2212 * (timer_active==0 becomes visible before the hrtimer call-back
2213 * terminates). In either case we ensure that it's re-programmed
2214 */
2215 while (unlikely(hrtimer_active(&cfs_b->period_timer))) {
2216 raw_spin_unlock(&cfs_b->lock);
2217 /* ensure cfs_b->lock is available while we wait */
2218 hrtimer_cancel(&cfs_b->period_timer);
2219
2220 raw_spin_lock(&cfs_b->lock);
2221 /* if someone else restarted the timer then we're done */
2222 if (cfs_b->timer_active)
2223 return;
2224 }
2225
2226 cfs_b->timer_active = 1;
2227 start_bandwidth_timer(&cfs_b->period_timer, cfs_b->period);
2228}
2229
2230static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
2231{
2232 hrtimer_cancel(&cfs_b->period_timer);
2233 hrtimer_cancel(&cfs_b->slack_timer);
2234}
2235
Peter Boonstoppela4c96ae2012-08-09 15:34:47 -07002236static void unthrottle_offline_cfs_rqs(struct rq *rq)
Peter Zijlstra029632f2011-10-25 10:00:11 +02002237{
2238 struct cfs_rq *cfs_rq;
2239
2240 for_each_leaf_cfs_rq(rq, cfs_rq) {
2241 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
2242
2243 if (!cfs_rq->runtime_enabled)
2244 continue;
2245
2246 /*
2247 * clock_task is not advancing so we just need to make sure
2248 * there's some valid quota amount
2249 */
2250 cfs_rq->runtime_remaining = cfs_b->quota;
2251 if (cfs_rq_throttled(cfs_rq))
2252 unthrottle_cfs_rq(cfs_rq);
2253 }
2254}
2255
2256#else /* CONFIG_CFS_BANDWIDTH */
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07002257static __always_inline
2258void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, unsigned long delta_exec) {}
Paul Turnerd3d9dc32011-07-21 09:43:39 -07002259static void check_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
2260static void check_enqueue_throttle(struct cfs_rq *cfs_rq) {}
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07002261static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
Paul Turner85dac902011-07-21 09:43:33 -07002262
2263static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
2264{
2265 return 0;
2266}
Paul Turner64660c82011-07-21 09:43:36 -07002267
2268static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
2269{
2270 return 0;
2271}
2272
2273static inline int throttled_lb_pair(struct task_group *tg,
2274 int src_cpu, int dest_cpu)
2275{
2276 return 0;
2277}
Peter Zijlstra029632f2011-10-25 10:00:11 +02002278
2279void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
2280
2281#ifdef CONFIG_FAIR_GROUP_SCHED
2282static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
Paul Turnerab84d312011-07-21 09:43:28 -07002283#endif
2284
Peter Zijlstra029632f2011-10-25 10:00:11 +02002285static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
2286{
2287 return NULL;
2288}
2289static inline void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
Peter Boonstoppela4c96ae2012-08-09 15:34:47 -07002290static inline void unthrottle_offline_cfs_rqs(struct rq *rq) {}
Peter Zijlstra029632f2011-10-25 10:00:11 +02002291
2292#endif /* CONFIG_CFS_BANDWIDTH */
2293
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002294/**************************************************
2295 * CFS operations on tasks:
2296 */
2297
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002298#ifdef CONFIG_SCHED_HRTICK
2299static void hrtick_start_fair(struct rq *rq, struct task_struct *p)
2300{
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002301 struct sched_entity *se = &p->se;
2302 struct cfs_rq *cfs_rq = cfs_rq_of(se);
2303
2304 WARN_ON(task_rq(p) != rq);
2305
Mike Galbraithb39e66e2011-11-22 15:20:07 +01002306 if (cfs_rq->nr_running > 1) {
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002307 u64 slice = sched_slice(cfs_rq, se);
2308 u64 ran = se->sum_exec_runtime - se->prev_sum_exec_runtime;
2309 s64 delta = slice - ran;
2310
2311 if (delta < 0) {
2312 if (rq->curr == p)
2313 resched_task(p);
2314 return;
2315 }
2316
2317 /*
2318 * Don't schedule slices shorter than 10000ns, that just
2319 * doesn't make sense. Rely on vruntime for fairness.
2320 */
Peter Zijlstra31656512008-07-18 18:01:23 +02002321 if (rq->curr != p)
Peter Zijlstra157124c2008-07-28 11:53:11 +02002322 delta = max_t(s64, 10000LL, delta);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002323
Peter Zijlstra31656512008-07-18 18:01:23 +02002324 hrtick_start(rq, delta);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002325 }
2326}
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02002327
2328/*
2329 * called from enqueue/dequeue and updates the hrtick when the
2330 * current task is from our class and nr_running is low enough
2331 * to matter.
2332 */
2333static void hrtick_update(struct rq *rq)
2334{
2335 struct task_struct *curr = rq->curr;
2336
Mike Galbraithb39e66e2011-11-22 15:20:07 +01002337 if (!hrtick_enabled(rq) || curr->sched_class != &fair_sched_class)
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02002338 return;
2339
2340 if (cfs_rq_of(&curr->se)->nr_running < sched_nr_latency)
2341 hrtick_start_fair(rq, curr);
2342}
Dhaval Giani55e12e52008-06-24 23:39:43 +05302343#else /* !CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002344static inline void
2345hrtick_start_fair(struct rq *rq, struct task_struct *p)
2346{
2347}
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02002348
2349static inline void hrtick_update(struct rq *rq)
2350{
2351}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002352#endif
2353
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002354/*
2355 * The enqueue_task method is called before nr_running is
2356 * increased. Here we update the fair scheduling stats and
2357 * then put the task into the rbtree:
2358 */
Thomas Gleixnerea87bb72010-01-20 20:58:57 +00002359static void
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002360enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002361{
2362 struct cfs_rq *cfs_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002363 struct sched_entity *se = &p->se;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002364
2365 for_each_sched_entity(se) {
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002366 if (se->on_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002367 break;
2368 cfs_rq = cfs_rq_of(se);
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01002369 enqueue_entity(cfs_rq, se, flags);
Paul Turner85dac902011-07-21 09:43:33 -07002370
2371 /*
2372 * end evaluation on encountering a throttled cfs_rq
2373 *
2374 * note: in the case of encountering a throttled cfs_rq we will
2375 * post the final h_nr_running increment below.
2376 */
2377 if (cfs_rq_throttled(cfs_rq))
2378 break;
Paul Turner953bfcd2011-07-21 09:43:27 -07002379 cfs_rq->h_nr_running++;
Paul Turner85dac902011-07-21 09:43:33 -07002380
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01002381 flags = ENQUEUE_WAKEUP;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002382 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002383
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002384 for_each_sched_entity(se) {
Lin Ming0f317142011-07-22 09:14:31 +08002385 cfs_rq = cfs_rq_of(se);
Paul Turner953bfcd2011-07-21 09:43:27 -07002386 cfs_rq->h_nr_running++;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002387
Paul Turner85dac902011-07-21 09:43:33 -07002388 if (cfs_rq_throttled(cfs_rq))
2389 break;
2390
Paul Turnerd6b55912010-11-15 15:47:09 -08002391 update_cfs_load(cfs_rq, 0);
Paul Turner6d5ab292011-01-21 20:45:01 -08002392 update_cfs_shares(cfs_rq);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002393 }
2394
Paul Turner85dac902011-07-21 09:43:33 -07002395 if (!se)
2396 inc_nr_running(rq);
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02002397 hrtick_update(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002398}
2399
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07002400static void set_next_buddy(struct sched_entity *se);
2401
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002402/*
2403 * The dequeue_task method is called before nr_running is
2404 * decreased. We remove the task from the rbtree and
2405 * update the fair scheduling stats:
2406 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002407static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002408{
2409 struct cfs_rq *cfs_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01002410 struct sched_entity *se = &p->se;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07002411 int task_sleep = flags & DEQUEUE_SLEEP;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002412
2413 for_each_sched_entity(se) {
2414 cfs_rq = cfs_rq_of(se);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002415 dequeue_entity(cfs_rq, se, flags);
Paul Turner85dac902011-07-21 09:43:33 -07002416
2417 /*
2418 * end evaluation on encountering a throttled cfs_rq
2419 *
2420 * note: in the case of encountering a throttled cfs_rq we will
2421 * post the final h_nr_running decrement below.
2422 */
2423 if (cfs_rq_throttled(cfs_rq))
2424 break;
Paul Turner953bfcd2011-07-21 09:43:27 -07002425 cfs_rq->h_nr_running--;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002426
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002427 /* Don't dequeue parent if it has other entities besides us */
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07002428 if (cfs_rq->load.weight) {
2429 /*
2430 * Bias pick_next to pick a task from this cfs_rq, as
2431 * p is sleeping when it is within its sched_slice.
2432 */
2433 if (task_sleep && parent_entity(se))
2434 set_next_buddy(parent_entity(se));
Paul Turner9598c822011-07-06 22:30:37 -07002435
2436 /* avoid re-evaluating load for this entity */
2437 se = parent_entity(se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002438 break;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07002439 }
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002440 flags |= DEQUEUE_SLEEP;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002441 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01002442
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002443 for_each_sched_entity(se) {
Lin Ming0f317142011-07-22 09:14:31 +08002444 cfs_rq = cfs_rq_of(se);
Paul Turner953bfcd2011-07-21 09:43:27 -07002445 cfs_rq->h_nr_running--;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002446
Paul Turner85dac902011-07-21 09:43:33 -07002447 if (cfs_rq_throttled(cfs_rq))
2448 break;
2449
Paul Turnerd6b55912010-11-15 15:47:09 -08002450 update_cfs_load(cfs_rq, 0);
Paul Turner6d5ab292011-01-21 20:45:01 -08002451 update_cfs_shares(cfs_rq);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002452 }
2453
Paul Turner85dac902011-07-21 09:43:33 -07002454 if (!se)
2455 dec_nr_running(rq);
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02002456 hrtick_update(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002457}
2458
Gregory Haskinse7693a32008-01-25 21:08:09 +01002459#ifdef CONFIG_SMP
Peter Zijlstra029632f2011-10-25 10:00:11 +02002460/* Used instead of source_load when we know the type == 0 */
2461static unsigned long weighted_cpuload(const int cpu)
2462{
2463 return cpu_rq(cpu)->load.weight;
2464}
2465
2466/*
2467 * Return a low guess at the load of a migration-source cpu weighted
2468 * according to the scheduling class and "nice" value.
2469 *
2470 * We want to under-estimate the load of migration sources, to
2471 * balance conservatively.
2472 */
2473static unsigned long source_load(int cpu, int type)
2474{
2475 struct rq *rq = cpu_rq(cpu);
2476 unsigned long total = weighted_cpuload(cpu);
2477
2478 if (type == 0 || !sched_feat(LB_BIAS))
2479 return total;
2480
2481 return min(rq->cpu_load[type-1], total);
2482}
2483
2484/*
2485 * Return a high guess at the load of a migration-target cpu weighted
2486 * according to the scheduling class and "nice" value.
2487 */
2488static unsigned long target_load(int cpu, int type)
2489{
2490 struct rq *rq = cpu_rq(cpu);
2491 unsigned long total = weighted_cpuload(cpu);
2492
2493 if (type == 0 || !sched_feat(LB_BIAS))
2494 return total;
2495
2496 return max(rq->cpu_load[type-1], total);
2497}
2498
2499static unsigned long power_of(int cpu)
2500{
2501 return cpu_rq(cpu)->cpu_power;
2502}
2503
2504static unsigned long cpu_avg_load_per_task(int cpu)
2505{
2506 struct rq *rq = cpu_rq(cpu);
2507 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
2508
2509 if (nr_running)
2510 return rq->load.weight / nr_running;
2511
2512 return 0;
2513}
2514
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002515
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02002516static void task_waking_fair(struct task_struct *p)
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01002517{
2518 struct sched_entity *se = &p->se;
2519 struct cfs_rq *cfs_rq = cfs_rq_of(se);
Peter Zijlstra3fe16982011-04-05 17:23:48 +02002520 u64 min_vruntime;
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01002521
Peter Zijlstra3fe16982011-04-05 17:23:48 +02002522#ifndef CONFIG_64BIT
2523 u64 min_vruntime_copy;
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02002524
Peter Zijlstra3fe16982011-04-05 17:23:48 +02002525 do {
2526 min_vruntime_copy = cfs_rq->min_vruntime_copy;
2527 smp_rmb();
2528 min_vruntime = cfs_rq->min_vruntime;
2529 } while (min_vruntime != min_vruntime_copy);
2530#else
2531 min_vruntime = cfs_rq->min_vruntime;
2532#endif
2533
2534 se->vruntime -= min_vruntime;
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01002535}
2536
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02002537#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstraf5bfb7d2008-06-27 13:41:39 +02002538/*
2539 * effective_load() calculates the load change as seen from the root_task_group
2540 *
2541 * Adding load to a group doesn't make a group heavier, but can cause movement
2542 * of group shares between cpus. Assuming the shares were perfectly aligned one
2543 * can calculate the shift in shares.
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002544 *
2545 * Calculate the effective load difference if @wl is added (subtracted) to @tg
2546 * on this @cpu and results in a total addition (subtraction) of @wg to the
2547 * total group weight.
2548 *
2549 * Given a runqueue weight distribution (rw_i) we can compute a shares
2550 * distribution (s_i) using:
2551 *
2552 * s_i = rw_i / \Sum rw_j (1)
2553 *
2554 * Suppose we have 4 CPUs and our @tg is a direct child of the root group and
2555 * has 7 equal weight tasks, distributed as below (rw_i), with the resulting
2556 * shares distribution (s_i):
2557 *
2558 * rw_i = { 2, 4, 1, 0 }
2559 * s_i = { 2/7, 4/7, 1/7, 0 }
2560 *
2561 * As per wake_affine() we're interested in the load of two CPUs (the CPU the
2562 * task used to run on and the CPU the waker is running on), we need to
2563 * compute the effect of waking a task on either CPU and, in case of a sync
2564 * wakeup, compute the effect of the current task going to sleep.
2565 *
2566 * So for a change of @wl to the local @cpu with an overall group weight change
2567 * of @wl we can compute the new shares distribution (s'_i) using:
2568 *
2569 * s'_i = (rw_i + @wl) / (@wg + \Sum rw_j) (2)
2570 *
2571 * Suppose we're interested in CPUs 0 and 1, and want to compute the load
2572 * differences in waking a task to CPU 0. The additional task changes the
2573 * weight and shares distributions like:
2574 *
2575 * rw'_i = { 3, 4, 1, 0 }
2576 * s'_i = { 3/8, 4/8, 1/8, 0 }
2577 *
2578 * We can then compute the difference in effective weight by using:
2579 *
2580 * dw_i = S * (s'_i - s_i) (3)
2581 *
2582 * Where 'S' is the group weight as seen by its parent.
2583 *
2584 * Therefore the effective change in loads on CPU 0 would be 5/56 (3/8 - 2/7)
2585 * times the weight of the group. The effect on CPU 1 would be -4/56 (4/8 -
2586 * 4/7) times the weight of the group.
Peter Zijlstraf5bfb7d2008-06-27 13:41:39 +02002587 */
Peter Zijlstra2069dd72010-11-15 15:47:00 -08002588static long effective_load(struct task_group *tg, int cpu, long wl, long wg)
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02002589{
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002590 struct sched_entity *se = tg->se[cpu];
Peter Zijlstraf1d239f2008-06-27 13:41:38 +02002591
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002592 if (!tg->parent) /* the trivial, non-cgroup case */
Peter Zijlstraf1d239f2008-06-27 13:41:38 +02002593 return wl;
2594
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002595 for_each_sched_entity(se) {
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002596 long w, W;
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02002597
Paul Turner977dda72011-01-14 17:57:50 -08002598 tg = se->my_q->tg;
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002599
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002600 /*
2601 * W = @wg + \Sum rw_j
2602 */
2603 W = wg + calc_tg_weight(tg, se->my_q);
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002604
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002605 /*
2606 * w = rw_i + @wl
2607 */
2608 w = se->my_q->load.weight + wl;
Peter Zijlstra940959e2008-09-23 15:33:42 +02002609
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002610 /*
2611 * wl = S * s'_i; see (2)
2612 */
2613 if (W > 0 && w < W)
2614 wl = (w * tg->shares) / W;
Paul Turner977dda72011-01-14 17:57:50 -08002615 else
2616 wl = tg->shares;
Peter Zijlstra940959e2008-09-23 15:33:42 +02002617
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002618 /*
2619 * Per the above, wl is the new se->load.weight value; since
2620 * those are clipped to [MIN_SHARES, ...) do so now. See
2621 * calc_cfs_shares().
2622 */
Paul Turner977dda72011-01-14 17:57:50 -08002623 if (wl < MIN_SHARES)
2624 wl = MIN_SHARES;
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002625
2626 /*
2627 * wl = dw_i = S * (s'_i - s_i); see (3)
2628 */
Paul Turner977dda72011-01-14 17:57:50 -08002629 wl -= se->load.weight;
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02002630
2631 /*
2632 * Recursively apply this logic to all parent groups to compute
2633 * the final effective load change on the root group. Since
2634 * only the @tg group gets extra weight, all parent groups can
2635 * only redistribute existing shares. @wl is the shift in shares
2636 * resulting from this level per the above.
2637 */
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002638 wg = 0;
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002639 }
2640
2641 return wl;
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02002642}
2643#else
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002644
Peter Zijlstra83378262008-06-27 13:41:37 +02002645static inline unsigned long effective_load(struct task_group *tg, int cpu,
2646 unsigned long wl, unsigned long wg)
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002647{
Peter Zijlstra83378262008-06-27 13:41:37 +02002648 return wl;
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02002649}
Peter Zijlstra4be9daa2008-06-27 13:41:30 +02002650
Peter Zijlstrabb3469a2008-06-27 13:41:27 +02002651#endif
2652
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002653static int wake_affine(struct sched_domain *sd, struct task_struct *p, int sync)
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002654{
Paul Turnere37b6a72011-01-21 20:44:59 -08002655 s64 this_load, load;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002656 int idx, this_cpu, prev_cpu;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002657 unsigned long tl_per_task;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002658 struct task_group *tg;
Peter Zijlstra83378262008-06-27 13:41:37 +02002659 unsigned long weight;
Mike Galbraithb3137bc2008-05-29 11:11:41 +02002660 int balanced;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002661
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002662 idx = sd->wake_idx;
2663 this_cpu = smp_processor_id();
2664 prev_cpu = task_cpu(p);
2665 load = source_load(prev_cpu, idx);
2666 this_load = target_load(this_cpu, idx);
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002667
2668 /*
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002669 * If sync wakeup then subtract the (maximum possible)
2670 * effect of the currently running task from the load
2671 * of the current CPU:
2672 */
Peter Zijlstra83378262008-06-27 13:41:37 +02002673 if (sync) {
2674 tg = task_group(current);
2675 weight = current->se.load.weight;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002676
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002677 this_load += effective_load(tg, this_cpu, -weight, -weight);
Peter Zijlstra83378262008-06-27 13:41:37 +02002678 load += effective_load(tg, prev_cpu, 0, -weight);
2679 }
2680
2681 tg = task_group(p);
2682 weight = p->se.load.weight;
2683
Peter Zijlstra71a29aa2009-09-07 18:28:05 +02002684 /*
2685 * In low-load situations, where prev_cpu is idle and this_cpu is idle
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002686 * due to the sync cause above having dropped this_load to 0, we'll
2687 * always have an imbalance, but there's really nothing you can do
2688 * about that, so that's good too.
Peter Zijlstra71a29aa2009-09-07 18:28:05 +02002689 *
2690 * Otherwise check if either cpus are near enough in load to allow this
2691 * task to be woken on this_cpu.
2692 */
Paul Turnere37b6a72011-01-21 20:44:59 -08002693 if (this_load > 0) {
2694 s64 this_eff_load, prev_eff_load;
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +02002695
2696 this_eff_load = 100;
2697 this_eff_load *= power_of(prev_cpu);
2698 this_eff_load *= this_load +
2699 effective_load(tg, this_cpu, weight, weight);
2700
2701 prev_eff_load = 100 + (sd->imbalance_pct - 100) / 2;
2702 prev_eff_load *= power_of(this_cpu);
2703 prev_eff_load *= load + effective_load(tg, prev_cpu, 0, weight);
2704
2705 balanced = this_eff_load <= prev_eff_load;
2706 } else
2707 balanced = true;
Mike Galbraithb3137bc2008-05-29 11:11:41 +02002708
2709 /*
2710 * If the currently running task will sleep within
2711 * a reasonable amount of time then attract this newly
2712 * woken task:
2713 */
Peter Zijlstra2fb76352008-10-08 09:16:04 +02002714 if (sync && balanced)
2715 return 1;
Mike Galbraithb3137bc2008-05-29 11:11:41 +02002716
Lucas De Marchi41acab82010-03-10 23:37:45 -03002717 schedstat_inc(p, se.statistics.nr_wakeups_affine_attempts);
Mike Galbraithb3137bc2008-05-29 11:11:41 +02002718 tl_per_task = cpu_avg_load_per_task(this_cpu);
2719
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002720 if (balanced ||
2721 (this_load <= load &&
2722 this_load + target_load(prev_cpu, idx) <= tl_per_task)) {
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002723 /*
2724 * This domain has SD_WAKE_AFFINE and
2725 * p is cache cold in this domain, and
2726 * there is no bad imbalance.
2727 */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002728 schedstat_inc(sd, ttwu_move_affine);
Lucas De Marchi41acab82010-03-10 23:37:45 -03002729 schedstat_inc(p, se.statistics.nr_wakeups_affine);
Ingo Molnar098fb9d2008-03-16 20:36:10 +01002730
2731 return 1;
2732 }
2733 return 0;
2734}
2735
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002736/*
2737 * find_idlest_group finds and returns the least busy CPU group within the
2738 * domain.
2739 */
2740static struct sched_group *
Peter Zijlstra78e7ed52009-09-03 13:16:51 +02002741find_idlest_group(struct sched_domain *sd, struct task_struct *p,
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02002742 int this_cpu, int load_idx)
Gregory Haskinse7693a32008-01-25 21:08:09 +01002743{
Andi Kleenb3bd3de2010-08-10 14:17:51 -07002744 struct sched_group *idlest = NULL, *group = sd->groups;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002745 unsigned long min_load = ULONG_MAX, this_load = 0;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002746 int imbalance = 100 + (sd->imbalance_pct-100)/2;
Gregory Haskinse7693a32008-01-25 21:08:09 +01002747
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002748 do {
2749 unsigned long load, avg_load;
2750 int local_group;
2751 int i;
Gregory Haskinse7693a32008-01-25 21:08:09 +01002752
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002753 /* Skip over this group if it has no CPUs allowed */
2754 if (!cpumask_intersects(sched_group_cpus(group),
Peter Zijlstrafa17b502011-06-16 12:23:22 +02002755 tsk_cpus_allowed(p)))
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002756 continue;
2757
2758 local_group = cpumask_test_cpu(this_cpu,
2759 sched_group_cpus(group));
2760
2761 /* Tally up the load of all CPUs in the group */
2762 avg_load = 0;
2763
2764 for_each_cpu(i, sched_group_cpus(group)) {
2765 /* Bias balancing toward cpus of our domain */
2766 if (local_group)
2767 load = source_load(i, load_idx);
2768 else
2769 load = target_load(i, load_idx);
2770
2771 avg_load += load;
2772 }
2773
2774 /* Adjust by relative CPU power of the group */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02002775 avg_load = (avg_load * SCHED_POWER_SCALE) / group->sgp->power;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002776
2777 if (local_group) {
2778 this_load = avg_load;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002779 } else if (avg_load < min_load) {
2780 min_load = avg_load;
2781 idlest = group;
2782 }
2783 } while (group = group->next, group != sd->groups);
2784
2785 if (!idlest || 100*this_load < imbalance*min_load)
2786 return NULL;
2787 return idlest;
2788}
2789
2790/*
2791 * find_idlest_cpu - find the idlest cpu among the cpus in group.
2792 */
2793static int
2794find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
2795{
2796 unsigned long load, min_load = ULONG_MAX;
2797 int idlest = -1;
2798 int i;
2799
2800 /* Traverse only the allowed CPUs */
Peter Zijlstrafa17b502011-06-16 12:23:22 +02002801 for_each_cpu_and(i, sched_group_cpus(group), tsk_cpus_allowed(p)) {
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002802 load = weighted_cpuload(i);
2803
2804 if (load < min_load || (load == min_load && i == this_cpu)) {
2805 min_load = load;
2806 idlest = i;
Gregory Haskinse7693a32008-01-25 21:08:09 +01002807 }
2808 }
2809
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002810 return idlest;
2811}
Gregory Haskinse7693a32008-01-25 21:08:09 +01002812
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002813/*
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002814 * Try and locate an idle CPU in the sched_domain.
2815 */
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002816static int select_idle_sibling(struct task_struct *p, int target)
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002817{
2818 int cpu = smp_processor_id();
2819 int prev_cpu = task_cpu(p);
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002820 struct sched_domain *sd;
Linus Torvalds37407ea2012-09-16 12:29:43 -07002821 struct sched_group *sg;
2822 int i;
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002823
2824 /*
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002825 * If the task is going to be woken-up on this cpu and if it is
2826 * already idle, then it is the right target.
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002827 */
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002828 if (target == cpu && idle_cpu(cpu))
2829 return cpu;
2830
2831 /*
2832 * If the task is going to be woken-up on the cpu where it previously
2833 * ran and if it is currently idle, then it the right target.
2834 */
2835 if (target == prev_cpu && idle_cpu(prev_cpu))
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01002836 return prev_cpu;
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002837
2838 /*
Linus Torvalds37407ea2012-09-16 12:29:43 -07002839 * Otherwise, iterate the domains and find an elegible idle cpu.
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002840 */
Peter Zijlstra518cd622011-12-07 15:07:31 +01002841 sd = rcu_dereference(per_cpu(sd_llc, target));
Suresh Siddha77e81362011-11-17 11:08:23 -08002842 for_each_lower_domain(sd) {
Linus Torvalds37407ea2012-09-16 12:29:43 -07002843 sg = sd->groups;
2844 do {
2845 if (!cpumask_intersects(sched_group_cpus(sg),
2846 tsk_cpus_allowed(p)))
2847 goto next;
Mike Galbraith970e1782012-06-12 05:18:32 +02002848
Linus Torvalds37407ea2012-09-16 12:29:43 -07002849 for_each_cpu(i, sched_group_cpus(sg)) {
2850 if (!idle_cpu(i))
2851 goto next;
2852 }
2853
2854 target = cpumask_first_and(sched_group_cpus(sg),
2855 tsk_cpus_allowed(p));
2856 goto done;
2857next:
2858 sg = sg->next;
2859 } while (sg != sd->groups);
2860 }
2861done:
Peter Zijlstraa50bde52009-11-12 15:55:28 +01002862 return target;
2863}
2864
2865/*
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002866 * sched_balance_self: balance the current task (running on cpu) in domains
2867 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2868 * SD_BALANCE_EXEC.
2869 *
2870 * Balance, ie. select the least loaded group.
2871 *
2872 * Returns the target CPU number, or the same CPU if no balancing is needed.
2873 *
2874 * preempt must be disabled.
2875 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01002876static int
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002877select_task_rq_fair(struct task_struct *p, int sd_flag, int wake_flags)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002878{
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02002879 struct sched_domain *tmp, *affine_sd = NULL, *sd = NULL;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002880 int cpu = smp_processor_id();
2881 int prev_cpu = task_cpu(p);
2882 int new_cpu = cpu;
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002883 int want_affine = 0;
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02002884 int sync = wake_flags & WF_SYNC;
Gregory Haskinse7693a32008-01-25 21:08:09 +01002885
Peter Zijlstra29baa742012-04-23 12:11:21 +02002886 if (p->nr_cpus_allowed == 1)
Mike Galbraith76854c72011-11-22 15:18:24 +01002887 return prev_cpu;
2888
Peter Zijlstra0763a662009-09-14 19:37:39 +02002889 if (sd_flag & SD_BALANCE_WAKE) {
Peter Zijlstrafa17b502011-06-16 12:23:22 +02002890 if (cpumask_test_cpu(cpu, tsk_cpus_allowed(p)))
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002891 want_affine = 1;
2892 new_cpu = prev_cpu;
2893 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002894
Peter Zijlstradce840a2011-04-07 14:09:50 +02002895 rcu_read_lock();
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002896 for_each_domain(cpu, tmp) {
Peter Zijlstrae4f42882009-12-16 18:04:34 +01002897 if (!(tmp->flags & SD_LOAD_BALANCE))
2898 continue;
2899
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002900 /*
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002901 * If both cpu and prev_cpu are part of this domain,
2902 * cpu is a valid SD_WAKE_AFFINE target.
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01002903 */
Suresh Siddha99bd5e22010-03-31 16:47:45 -07002904 if (want_affine && (tmp->flags & SD_WAKE_AFFINE) &&
2905 cpumask_test_cpu(prev_cpu, sched_domain_span(tmp))) {
2906 affine_sd = tmp;
Alex Shif03542a2012-07-26 08:55:34 +08002907 break;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002908 }
2909
Alex Shif03542a2012-07-26 08:55:34 +08002910 if (tmp->flags & sd_flag)
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02002911 sd = tmp;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002912 }
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002913
Mike Galbraith8b911ac2010-03-11 17:17:16 +01002914 if (affine_sd) {
Alex Shif03542a2012-07-26 08:55:34 +08002915 if (cpu != prev_cpu && wake_affine(affine_sd, p, sync))
Peter Zijlstradce840a2011-04-07 14:09:50 +02002916 prev_cpu = cpu;
2917
2918 new_cpu = select_idle_sibling(p, prev_cpu);
2919 goto unlock;
Mike Galbraith8b911ac2010-03-11 17:17:16 +01002920 }
Peter Zijlstra3b640892009-09-16 13:44:33 +02002921
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002922 while (sd) {
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02002923 int load_idx = sd->forkexec_idx;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002924 struct sched_group *group;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002925 int weight;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002926
Peter Zijlstra0763a662009-09-14 19:37:39 +02002927 if (!(sd->flags & sd_flag)) {
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002928 sd = sd->child;
2929 continue;
2930 }
2931
Peter Zijlstra5158f4e2009-09-16 13:46:59 +02002932 if (sd_flag & SD_BALANCE_WAKE)
2933 load_idx = sd->wake_idx;
2934
2935 group = find_idlest_group(sd, p, cpu, load_idx);
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002936 if (!group) {
2937 sd = sd->child;
2938 continue;
2939 }
2940
Peter Zijlstrad7c33c42009-09-11 12:45:38 +02002941 new_cpu = find_idlest_cpu(group, p, cpu);
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002942 if (new_cpu == -1 || new_cpu == cpu) {
2943 /* Now try balancing at a lower domain level of cpu */
2944 sd = sd->child;
2945 continue;
2946 }
2947
2948 /* Now try balancing at a lower domain level of new_cpu */
2949 cpu = new_cpu;
Peter Zijlstra669c55e2010-04-16 14:59:29 +02002950 weight = sd->span_weight;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002951 sd = NULL;
2952 for_each_domain(cpu, tmp) {
Peter Zijlstra669c55e2010-04-16 14:59:29 +02002953 if (weight <= tmp->span_weight)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002954 break;
Peter Zijlstra0763a662009-09-14 19:37:39 +02002955 if (tmp->flags & sd_flag)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02002956 sd = tmp;
2957 }
2958 /* while loop will break here if sd == NULL */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002959 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02002960unlock:
2961 rcu_read_unlock();
Gregory Haskinse7693a32008-01-25 21:08:09 +01002962
Peter Zijlstrac88d5912009-09-10 13:50:02 +02002963 return new_cpu;
Gregory Haskinse7693a32008-01-25 21:08:09 +01002964}
2965#endif /* CONFIG_SMP */
2966
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01002967static unsigned long
2968wakeup_gran(struct sched_entity *curr, struct sched_entity *se)
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02002969{
2970 unsigned long gran = sysctl_sched_wakeup_granularity;
2971
2972 /*
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01002973 * Since its curr running now, convert the gran from real-time
2974 * to virtual-time in his units.
Mike Galbraith13814d42010-03-11 17:17:04 +01002975 *
2976 * By using 'se' instead of 'curr' we penalize light tasks, so
2977 * they get preempted easier. That is, if 'se' < 'curr' then
2978 * the resulting gran will be larger, therefore penalizing the
2979 * lighter, if otoh 'se' > 'curr' then the resulting gran will
2980 * be smaller, again penalizing the lighter task.
2981 *
2982 * This is especially important for buddies when the leftmost
2983 * task is higher priority than the buddy.
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02002984 */
Shaohua Lif4ad9bd2011-04-08 12:53:09 +08002985 return calc_delta_fair(gran, se);
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02002986}
2987
2988/*
Peter Zijlstra464b7522008-10-24 11:06:15 +02002989 * Should 'se' preempt 'curr'.
2990 *
2991 * |s1
2992 * |s2
2993 * |s3
2994 * g
2995 * |<--->|c
2996 *
2997 * w(c, s1) = -1
2998 * w(c, s2) = 0
2999 * w(c, s3) = 1
3000 *
3001 */
3002static int
3003wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se)
3004{
3005 s64 gran, vdiff = curr->vruntime - se->vruntime;
3006
3007 if (vdiff <= 0)
3008 return -1;
3009
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01003010 gran = wakeup_gran(curr, se);
Peter Zijlstra464b7522008-10-24 11:06:15 +02003011 if (vdiff > gran)
3012 return 1;
3013
3014 return 0;
3015}
3016
Peter Zijlstra02479092008-11-04 21:25:10 +01003017static void set_last_buddy(struct sched_entity *se)
3018{
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07003019 if (entity_is_task(se) && unlikely(task_of(se)->policy == SCHED_IDLE))
3020 return;
3021
3022 for_each_sched_entity(se)
3023 cfs_rq_of(se)->last = se;
Peter Zijlstra02479092008-11-04 21:25:10 +01003024}
3025
3026static void set_next_buddy(struct sched_entity *se)
3027{
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07003028 if (entity_is_task(se) && unlikely(task_of(se)->policy == SCHED_IDLE))
3029 return;
3030
3031 for_each_sched_entity(se)
3032 cfs_rq_of(se)->next = se;
Peter Zijlstra02479092008-11-04 21:25:10 +01003033}
3034
Rik van Rielac53db52011-02-01 09:51:03 -05003035static void set_skip_buddy(struct sched_entity *se)
3036{
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07003037 for_each_sched_entity(se)
3038 cfs_rq_of(se)->skip = se;
Rik van Rielac53db52011-02-01 09:51:03 -05003039}
3040
Peter Zijlstra464b7522008-10-24 11:06:15 +02003041/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003042 * Preempt the current task with a newly woken task if needed:
3043 */
Peter Zijlstra5a9b86f2009-09-16 13:47:58 +02003044static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003045{
3046 struct task_struct *curr = rq->curr;
Srivatsa Vaddagiri8651a862007-10-15 17:00:12 +02003047 struct sched_entity *se = &curr->se, *pse = &p->se;
Mike Galbraith03e89e42008-12-16 08:45:30 +01003048 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
Mike Galbraithf685cea2009-10-23 23:09:22 +02003049 int scale = cfs_rq->nr_running >= sched_nr_latency;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07003050 int next_buddy_marked = 0;
Mike Galbraith03e89e42008-12-16 08:45:30 +01003051
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01003052 if (unlikely(se == pse))
3053 return;
3054
Paul Turner5238cdd2011-07-21 09:43:37 -07003055 /*
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003056 * This is possible from callers such as move_task(), in which we
Paul Turner5238cdd2011-07-21 09:43:37 -07003057 * unconditionally check_prempt_curr() after an enqueue (which may have
3058 * lead to a throttle). This both saves work and prevents false
3059 * next-buddy nomination below.
3060 */
3061 if (unlikely(throttled_hierarchy(cfs_rq_of(pse))))
3062 return;
3063
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07003064 if (sched_feat(NEXT_BUDDY) && scale && !(wake_flags & WF_FORK)) {
Mike Galbraith3cb63d52009-09-11 12:01:17 +02003065 set_next_buddy(pse);
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07003066 next_buddy_marked = 1;
3067 }
Peter Zijlstra57fdc262008-09-23 15:33:45 +02003068
Bharata B Raoaec0a512008-08-28 14:42:49 +05303069 /*
3070 * We can come here with TIF_NEED_RESCHED already set from new task
3071 * wake up path.
Paul Turner5238cdd2011-07-21 09:43:37 -07003072 *
3073 * Note: this also catches the edge-case of curr being in a throttled
3074 * group (e.g. via set_curr_task), since update_curr() (in the
3075 * enqueue of curr) will have resulted in resched being set. This
3076 * prevents us from potentially nominating it as a false LAST_BUDDY
3077 * below.
Bharata B Raoaec0a512008-08-28 14:42:49 +05303078 */
3079 if (test_tsk_need_resched(curr))
3080 return;
3081
Darren Harta2f5c9a2011-02-22 13:04:33 -08003082 /* Idle tasks are by definition preempted by non-idle tasks. */
3083 if (unlikely(curr->policy == SCHED_IDLE) &&
3084 likely(p->policy != SCHED_IDLE))
3085 goto preempt;
3086
Ingo Molnar91c234b2007-10-15 17:00:18 +02003087 /*
Darren Harta2f5c9a2011-02-22 13:04:33 -08003088 * Batch and idle tasks do not preempt non-idle tasks (their preemption
3089 * is driven by the tick):
Ingo Molnar91c234b2007-10-15 17:00:18 +02003090 */
Peter Zijlstra6bc912b2009-01-15 14:53:38 +01003091 if (unlikely(p->policy != SCHED_NORMAL))
Ingo Molnar91c234b2007-10-15 17:00:18 +02003092 return;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003093
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01003094 find_matching_se(&se, &pse);
Paul Turner9bbd7372011-07-05 19:07:21 -07003095 update_curr(cfs_rq_of(se));
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01003096 BUG_ON(!pse);
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07003097 if (wakeup_preempt_entity(se, pse) == 1) {
3098 /*
3099 * Bias pick_next to pick the sched entity that is
3100 * triggering this preemption.
3101 */
3102 if (!next_buddy_marked)
3103 set_next_buddy(pse);
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01003104 goto preempt;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07003105 }
Jupyung Leea65ac742009-11-17 18:51:40 +09003106
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01003107 return;
3108
3109preempt:
3110 resched_task(curr);
3111 /*
3112 * Only set the backward buddy when the current task is still
3113 * on the rq. This can happen when a wakeup gets interleaved
3114 * with schedule on the ->pre_schedule() or idle_balance()
3115 * point, either of which can * drop the rq lock.
3116 *
3117 * Also, during early boot the idle thread is in the fair class,
3118 * for obvious reasons its a bad idea to schedule back to it.
3119 */
3120 if (unlikely(!se->on_rq || curr == rq->idle))
3121 return;
3122
3123 if (sched_feat(LAST_BUDDY) && scale && entity_is_task(se))
3124 set_last_buddy(se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003125}
3126
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003127static struct task_struct *pick_next_task_fair(struct rq *rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003128{
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003129 struct task_struct *p;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003130 struct cfs_rq *cfs_rq = &rq->cfs;
3131 struct sched_entity *se;
3132
Tim Blechmann36ace272009-11-24 11:55:45 +01003133 if (!cfs_rq->nr_running)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003134 return NULL;
3135
3136 do {
Ingo Molnar9948f4b2007-08-09 11:16:48 +02003137 se = pick_next_entity(cfs_rq);
Peter Zijlstraf4b67552008-11-04 21:25:07 +01003138 set_next_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003139 cfs_rq = group_cfs_rq(se);
3140 } while (cfs_rq);
3141
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003142 p = task_of(se);
Mike Galbraithb39e66e2011-11-22 15:20:07 +01003143 if (hrtick_enabled(rq))
3144 hrtick_start_fair(rq, p);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01003145
3146 return p;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003147}
3148
3149/*
3150 * Account for a descheduled task:
3151 */
Ingo Molnar31ee5292007-08-09 11:16:49 +02003152static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003153{
3154 struct sched_entity *se = &prev->se;
3155 struct cfs_rq *cfs_rq;
3156
3157 for_each_sched_entity(se) {
3158 cfs_rq = cfs_rq_of(se);
Ingo Molnarab6cde22007-08-09 11:16:48 +02003159 put_prev_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003160 }
3161}
3162
Rik van Rielac53db52011-02-01 09:51:03 -05003163/*
3164 * sched_yield() is very simple
3165 *
3166 * The magic of dealing with the ->skip buddy is in pick_next_entity.
3167 */
3168static void yield_task_fair(struct rq *rq)
3169{
3170 struct task_struct *curr = rq->curr;
3171 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
3172 struct sched_entity *se = &curr->se;
3173
3174 /*
3175 * Are we the only task in the tree?
3176 */
3177 if (unlikely(rq->nr_running == 1))
3178 return;
3179
3180 clear_buddies(cfs_rq, se);
3181
3182 if (curr->policy != SCHED_BATCH) {
3183 update_rq_clock(rq);
3184 /*
3185 * Update run-time statistics of the 'current'.
3186 */
3187 update_curr(cfs_rq);
Mike Galbraith916671c2011-11-22 15:21:26 +01003188 /*
3189 * Tell update_rq_clock() that we've just updated,
3190 * so we don't do microscopic update in schedule()
3191 * and double the fastpath cost.
3192 */
3193 rq->skip_clock_update = 1;
Rik van Rielac53db52011-02-01 09:51:03 -05003194 }
3195
3196 set_skip_buddy(se);
3197}
3198
Mike Galbraithd95f4122011-02-01 09:50:51 -05003199static bool yield_to_task_fair(struct rq *rq, struct task_struct *p, bool preempt)
3200{
3201 struct sched_entity *se = &p->se;
3202
Paul Turner5238cdd2011-07-21 09:43:37 -07003203 /* throttled hierarchies are not runnable */
3204 if (!se->on_rq || throttled_hierarchy(cfs_rq_of(se)))
Mike Galbraithd95f4122011-02-01 09:50:51 -05003205 return false;
3206
3207 /* Tell the scheduler that we'd really like pse to run next. */
3208 set_next_buddy(se);
3209
Mike Galbraithd95f4122011-02-01 09:50:51 -05003210 yield_task_fair(rq);
3211
3212 return true;
3213}
3214
Peter Williams681f3e62007-10-24 18:23:51 +02003215#ifdef CONFIG_SMP
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003216/**************************************************
3217 * Fair scheduling class load-balancing methods:
3218 */
3219
Hiroshi Shimamotoed387b72012-01-31 11:40:32 +09003220static unsigned long __read_mostly max_load_balance_interval = HZ/10;
3221
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003222#define LBF_ALL_PINNED 0x01
Peter Zijlstra367456c2012-02-20 21:49:09 +01003223#define LBF_NEED_BREAK 0x02
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05303224#define LBF_SOME_PINNED 0x04
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003225
3226struct lb_env {
3227 struct sched_domain *sd;
3228
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003229 struct rq *src_rq;
Prashanth Nageshappa85c1e7d2012-06-19 17:47:34 +05303230 int src_cpu;
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003231
3232 int dst_cpu;
3233 struct rq *dst_rq;
3234
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05303235 struct cpumask *dst_grpmask;
3236 int new_dst_cpu;
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003237 enum cpu_idle_type idle;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003238 long imbalance;
Michael Wangb9403132012-07-12 16:10:13 +08003239 /* The set of CPUs under consideration for load-balancing */
3240 struct cpumask *cpus;
3241
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003242 unsigned int flags;
Peter Zijlstra367456c2012-02-20 21:49:09 +01003243
3244 unsigned int loop;
3245 unsigned int loop_break;
3246 unsigned int loop_max;
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003247};
3248
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003249/*
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003250 * move_task - move a task from one runqueue to another runqueue.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003251 * Both runqueues must be locked.
3252 */
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003253static void move_task(struct task_struct *p, struct lb_env *env)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003254{
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003255 deactivate_task(env->src_rq, p, 0);
3256 set_task_cpu(p, env->dst_cpu);
3257 activate_task(env->dst_rq, p, 0);
3258 check_preempt_curr(env->dst_rq, p, 0);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003259}
3260
3261/*
Peter Zijlstra029632f2011-10-25 10:00:11 +02003262 * Is this task likely cache-hot:
3263 */
3264static int
3265task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
3266{
3267 s64 delta;
3268
3269 if (p->sched_class != &fair_sched_class)
3270 return 0;
3271
3272 if (unlikely(p->policy == SCHED_IDLE))
3273 return 0;
3274
3275 /*
3276 * Buddy candidates are cache hot:
3277 */
3278 if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running &&
3279 (&p->se == cfs_rq_of(&p->se)->next ||
3280 &p->se == cfs_rq_of(&p->se)->last))
3281 return 1;
3282
3283 if (sysctl_sched_migration_cost == -1)
3284 return 1;
3285 if (sysctl_sched_migration_cost == 0)
3286 return 0;
3287
3288 delta = now - p->se.exec_start;
3289
3290 return delta < (s64)sysctl_sched_migration_cost;
3291}
3292
3293/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003294 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3295 */
3296static
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003297int can_migrate_task(struct task_struct *p, struct lb_env *env)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003298{
3299 int tsk_cache_hot = 0;
3300 /*
3301 * We do not migrate tasks that are:
3302 * 1) running (obviously), or
3303 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3304 * 3) are cache-hot on their current CPU.
3305 */
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003306 if (!cpumask_test_cpu(env->dst_cpu, tsk_cpus_allowed(p))) {
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05303307 int new_dst_cpu;
3308
Lucas De Marchi41acab82010-03-10 23:37:45 -03003309 schedstat_inc(p, se.statistics.nr_failed_migrations_affine);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05303310
3311 /*
3312 * Remember if this task can be migrated to any other cpu in
3313 * our sched_group. We may want to revisit it if we couldn't
3314 * meet load balance goals by pulling other tasks on src_cpu.
3315 *
3316 * Also avoid computing new_dst_cpu if we have already computed
3317 * one in current iteration.
3318 */
3319 if (!env->dst_grpmask || (env->flags & LBF_SOME_PINNED))
3320 return 0;
3321
3322 new_dst_cpu = cpumask_first_and(env->dst_grpmask,
3323 tsk_cpus_allowed(p));
3324 if (new_dst_cpu < nr_cpu_ids) {
3325 env->flags |= LBF_SOME_PINNED;
3326 env->new_dst_cpu = new_dst_cpu;
3327 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003328 return 0;
3329 }
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05303330
3331 /* Record that we found atleast one task that could run on dst_cpu */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003332 env->flags &= ~LBF_ALL_PINNED;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003333
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003334 if (task_running(env->src_rq, p)) {
Lucas De Marchi41acab82010-03-10 23:37:45 -03003335 schedstat_inc(p, se.statistics.nr_failed_migrations_running);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003336 return 0;
3337 }
3338
3339 /*
3340 * Aggressive migration if:
3341 * 1) task is cache cold, or
3342 * 2) too many balance attempts have failed.
3343 */
3344
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003345 tsk_cache_hot = task_hot(p, env->src_rq->clock_task, env->sd);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003346 if (!tsk_cache_hot ||
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003347 env->sd->nr_balance_failed > env->sd->cache_nice_tries) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003348#ifdef CONFIG_SCHEDSTATS
3349 if (tsk_cache_hot) {
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003350 schedstat_inc(env->sd, lb_hot_gained[env->idle]);
Lucas De Marchi41acab82010-03-10 23:37:45 -03003351 schedstat_inc(p, se.statistics.nr_forced_migrations);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003352 }
3353#endif
3354 return 1;
3355 }
3356
3357 if (tsk_cache_hot) {
Lucas De Marchi41acab82010-03-10 23:37:45 -03003358 schedstat_inc(p, se.statistics.nr_failed_migrations_hot);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003359 return 0;
3360 }
3361 return 1;
3362}
3363
Peter Zijlstra897c3952009-12-17 17:45:42 +01003364/*
3365 * move_one_task tries to move exactly one task from busiest to this_rq, as
3366 * part of active balancing operations within "domain".
3367 * Returns 1 if successful and 0 otherwise.
3368 *
3369 * Called with both runqueues locked.
3370 */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003371static int move_one_task(struct lb_env *env)
Peter Zijlstra897c3952009-12-17 17:45:42 +01003372{
3373 struct task_struct *p, *n;
Peter Zijlstra897c3952009-12-17 17:45:42 +01003374
Peter Zijlstra367456c2012-02-20 21:49:09 +01003375 list_for_each_entry_safe(p, n, &env->src_rq->cfs_tasks, se.group_node) {
3376 if (throttled_lb_pair(task_group(p), env->src_rq->cpu, env->dst_cpu))
3377 continue;
Peter Zijlstra897c3952009-12-17 17:45:42 +01003378
Peter Zijlstra367456c2012-02-20 21:49:09 +01003379 if (!can_migrate_task(p, env))
3380 continue;
Peter Zijlstra897c3952009-12-17 17:45:42 +01003381
Peter Zijlstra367456c2012-02-20 21:49:09 +01003382 move_task(p, env);
3383 /*
3384 * Right now, this is only the second place move_task()
3385 * is called, so we can safely collect move_task()
3386 * stats here rather than inside move_task().
3387 */
3388 schedstat_inc(env->sd, lb_gained[env->idle]);
3389 return 1;
Peter Zijlstra897c3952009-12-17 17:45:42 +01003390 }
Peter Zijlstra897c3952009-12-17 17:45:42 +01003391 return 0;
3392}
3393
Peter Zijlstra367456c2012-02-20 21:49:09 +01003394static unsigned long task_h_load(struct task_struct *p);
3395
Peter Zijlstraeb953082012-04-17 13:38:40 +02003396static const unsigned int sched_nr_migrate_break = 32;
3397
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003398/*
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003399 * move_tasks tries to move up to imbalance weighted load from busiest to
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003400 * this_rq, as part of a balancing operation within domain "sd".
3401 * Returns 1 if successful and 0 otherwise.
3402 *
3403 * Called with both runqueues locked.
3404 */
3405static int move_tasks(struct lb_env *env)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003406{
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003407 struct list_head *tasks = &env->src_rq->cfs_tasks;
3408 struct task_struct *p;
Peter Zijlstra367456c2012-02-20 21:49:09 +01003409 unsigned long load;
3410 int pulled = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003411
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003412 if (env->imbalance <= 0)
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003413 return 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003414
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003415 while (!list_empty(tasks)) {
3416 p = list_first_entry(tasks, struct task_struct, se.group_node);
3417
Peter Zijlstra367456c2012-02-20 21:49:09 +01003418 env->loop++;
3419 /* We've more or less seen every task there is, call it quits */
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003420 if (env->loop > env->loop_max)
Peter Zijlstra367456c2012-02-20 21:49:09 +01003421 break;
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003422
3423 /* take a breather every nr_migrate tasks */
Peter Zijlstra367456c2012-02-20 21:49:09 +01003424 if (env->loop > env->loop_break) {
Peter Zijlstraeb953082012-04-17 13:38:40 +02003425 env->loop_break += sched_nr_migrate_break;
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003426 env->flags |= LBF_NEED_BREAK;
Peter Zijlstraee00e662009-12-17 17:25:20 +01003427 break;
Peter Zijlstraa195f002011-09-22 15:30:18 +02003428 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003429
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003430 if (throttled_lb_pair(task_group(p), env->src_cpu, env->dst_cpu))
Peter Zijlstra367456c2012-02-20 21:49:09 +01003431 goto next;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003432
Peter Zijlstra367456c2012-02-20 21:49:09 +01003433 load = task_h_load(p);
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003434
Peter Zijlstraeb953082012-04-17 13:38:40 +02003435 if (sched_feat(LB_MIN) && load < 16 && !env->sd->nr_balance_failed)
Peter Zijlstra367456c2012-02-20 21:49:09 +01003436 goto next;
3437
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003438 if ((load / 2) > env->imbalance)
Peter Zijlstra367456c2012-02-20 21:49:09 +01003439 goto next;
3440
3441 if (!can_migrate_task(p, env))
3442 goto next;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003443
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003444 move_task(p, env);
Peter Zijlstraee00e662009-12-17 17:25:20 +01003445 pulled++;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003446 env->imbalance -= load;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003447
3448#ifdef CONFIG_PREEMPT
Peter Zijlstraee00e662009-12-17 17:25:20 +01003449 /*
3450 * NEWIDLE balancing is a source of latency, so preemptible
3451 * kernels will stop after the first task is pulled to minimize
3452 * the critical section.
3453 */
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003454 if (env->idle == CPU_NEWLY_IDLE)
Peter Zijlstraee00e662009-12-17 17:25:20 +01003455 break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003456#endif
3457
Peter Zijlstraee00e662009-12-17 17:25:20 +01003458 /*
3459 * We only want to steal up to the prescribed amount of
3460 * weighted load.
3461 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003462 if (env->imbalance <= 0)
Peter Zijlstraee00e662009-12-17 17:25:20 +01003463 break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003464
Peter Zijlstra367456c2012-02-20 21:49:09 +01003465 continue;
3466next:
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003467 list_move_tail(&p->se.group_node, tasks);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003468 }
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003469
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003470 /*
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01003471 * Right now, this is one of only two places move_task() is called,
3472 * so we can safely collect move_task() stats here rather than
3473 * inside move_task().
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003474 */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01003475 schedstat_add(env->sd, lb_gained[env->idle], pulled);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003476
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01003477 return pulled;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003478}
3479
Peter Zijlstra230059de2009-12-17 17:47:12 +01003480#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003481/*
3482 * update tg->load_weight by folding this cpu's load_avg
3483 */
Paul Turner67e86252010-11-15 15:47:05 -08003484static int update_shares_cpu(struct task_group *tg, int cpu)
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003485{
3486 struct cfs_rq *cfs_rq;
3487 unsigned long flags;
3488 struct rq *rq;
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003489
3490 if (!tg->se[cpu])
3491 return 0;
3492
3493 rq = cpu_rq(cpu);
3494 cfs_rq = tg->cfs_rq[cpu];
3495
3496 raw_spin_lock_irqsave(&rq->lock, flags);
3497
3498 update_rq_clock(rq);
Paul Turnerd6b55912010-11-15 15:47:09 -08003499 update_cfs_load(cfs_rq, 1);
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003500
3501 /*
3502 * We need to update shares after updating tg->load_weight in
3503 * order to adjust the weight of groups with long running tasks.
3504 */
Paul Turner6d5ab292011-01-21 20:45:01 -08003505 update_cfs_shares(cfs_rq);
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003506
3507 raw_spin_unlock_irqrestore(&rq->lock, flags);
3508
3509 return 0;
3510}
3511
3512static void update_shares(int cpu)
3513{
3514 struct cfs_rq *cfs_rq;
3515 struct rq *rq = cpu_rq(cpu);
3516
3517 rcu_read_lock();
Peter Zijlstra9763b672011-07-13 13:09:25 +02003518 /*
3519 * Iterates the task_group tree in a bottom up fashion, see
3520 * list_add_leaf_cfs_rq() for details.
3521 */
Paul Turner64660c82011-07-21 09:43:36 -07003522 for_each_leaf_cfs_rq(rq, cfs_rq) {
3523 /* throttled entities do not contribute to load */
3524 if (throttled_hierarchy(cfs_rq))
3525 continue;
3526
Paul Turner67e86252010-11-15 15:47:05 -08003527 update_shares_cpu(cfs_rq->tg, cpu);
Paul Turner64660c82011-07-21 09:43:36 -07003528 }
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003529 rcu_read_unlock();
3530}
3531
Peter Zijlstra9763b672011-07-13 13:09:25 +02003532/*
3533 * Compute the cpu's hierarchical load factor for each task group.
3534 * This needs to be done in a top-down fashion because the load of a child
3535 * group is a fraction of its parents load.
3536 */
3537static int tg_load_down(struct task_group *tg, void *data)
3538{
3539 unsigned long load;
3540 long cpu = (long)data;
3541
3542 if (!tg->parent) {
3543 load = cpu_rq(cpu)->load.weight;
3544 } else {
3545 load = tg->parent->cfs_rq[cpu]->h_load;
3546 load *= tg->se[cpu]->load.weight;
3547 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
3548 }
3549
3550 tg->cfs_rq[cpu]->h_load = load;
3551
3552 return 0;
3553}
3554
3555static void update_h_load(long cpu)
3556{
Peter Zijlstraa35b6462012-08-08 21:46:40 +02003557 struct rq *rq = cpu_rq(cpu);
3558 unsigned long now = jiffies;
3559
3560 if (rq->h_load_throttle == now)
3561 return;
3562
3563 rq->h_load_throttle = now;
3564
Peter Zijlstra367456c2012-02-20 21:49:09 +01003565 rcu_read_lock();
Peter Zijlstra9763b672011-07-13 13:09:25 +02003566 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstra367456c2012-02-20 21:49:09 +01003567 rcu_read_unlock();
Peter Zijlstra9763b672011-07-13 13:09:25 +02003568}
3569
Peter Zijlstra367456c2012-02-20 21:49:09 +01003570static unsigned long task_h_load(struct task_struct *p)
Peter Zijlstra230059de2009-12-17 17:47:12 +01003571{
Peter Zijlstra367456c2012-02-20 21:49:09 +01003572 struct cfs_rq *cfs_rq = task_cfs_rq(p);
3573 unsigned long load;
Peter Zijlstra230059de2009-12-17 17:47:12 +01003574
Peter Zijlstra367456c2012-02-20 21:49:09 +01003575 load = p->se.load.weight;
3576 load = div_u64(load * cfs_rq->h_load, cfs_rq->load.weight + 1);
Peter Zijlstra230059de2009-12-17 17:47:12 +01003577
Peter Zijlstra367456c2012-02-20 21:49:09 +01003578 return load;
Peter Zijlstra230059de2009-12-17 17:47:12 +01003579}
3580#else
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08003581static inline void update_shares(int cpu)
3582{
3583}
3584
Peter Zijlstra367456c2012-02-20 21:49:09 +01003585static inline void update_h_load(long cpu)
Peter Zijlstra230059de2009-12-17 17:47:12 +01003586{
Peter Zijlstra367456c2012-02-20 21:49:09 +01003587}
3588
3589static unsigned long task_h_load(struct task_struct *p)
3590{
3591 return p->se.load.weight;
Peter Zijlstra230059de2009-12-17 17:47:12 +01003592}
3593#endif
3594
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003595/********** Helpers for find_busiest_group ************************/
3596/*
3597 * sd_lb_stats - Structure to store the statistics of a sched_domain
3598 * during load balancing.
3599 */
3600struct sd_lb_stats {
3601 struct sched_group *busiest; /* Busiest group in this sd */
3602 struct sched_group *this; /* Local group in this sd */
3603 unsigned long total_load; /* Total load of all groups in sd */
3604 unsigned long total_pwr; /* Total power of all groups in sd */
3605 unsigned long avg_load; /* Average load across all groups in sd */
3606
3607 /** Statistics of this group */
3608 unsigned long this_load;
3609 unsigned long this_load_per_task;
3610 unsigned long this_nr_running;
Nikhil Raofab47622010-10-15 13:12:29 -07003611 unsigned long this_has_capacity;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07003612 unsigned int this_idle_cpus;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003613
3614 /* Statistics of the busiest group */
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07003615 unsigned int busiest_idle_cpus;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003616 unsigned long max_load;
3617 unsigned long busiest_load_per_task;
3618 unsigned long busiest_nr_running;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08003619 unsigned long busiest_group_capacity;
Nikhil Raofab47622010-10-15 13:12:29 -07003620 unsigned long busiest_has_capacity;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07003621 unsigned int busiest_group_weight;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003622
3623 int group_imb; /* Is there imbalance in this sd */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003624};
3625
3626/*
3627 * sg_lb_stats - stats of a sched_group required for load_balancing
3628 */
3629struct sg_lb_stats {
3630 unsigned long avg_load; /*Avg load across the CPUs of the group */
3631 unsigned long group_load; /* Total load over the CPUs of the group */
3632 unsigned long sum_nr_running; /* Nr tasks running in the group */
3633 unsigned long sum_weighted_load; /* Weighted load of group's tasks */
3634 unsigned long group_capacity;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07003635 unsigned long idle_cpus;
3636 unsigned long group_weight;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003637 int group_imb; /* Is there an imbalance in the group ? */
Nikhil Raofab47622010-10-15 13:12:29 -07003638 int group_has_capacity; /* Is there extra capacity in the group? */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003639};
3640
3641/**
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003642 * get_sd_load_idx - Obtain the load index for a given sched domain.
3643 * @sd: The sched_domain whose load_idx is to be obtained.
3644 * @idle: The Idle status of the CPU for whose sd load_icx is obtained.
3645 */
3646static inline int get_sd_load_idx(struct sched_domain *sd,
3647 enum cpu_idle_type idle)
3648{
3649 int load_idx;
3650
3651 switch (idle) {
3652 case CPU_NOT_IDLE:
3653 load_idx = sd->busy_idx;
3654 break;
3655
3656 case CPU_NEWLY_IDLE:
3657 load_idx = sd->newidle_idx;
3658 break;
3659 default:
3660 load_idx = sd->idle_idx;
3661 break;
3662 }
3663
3664 return load_idx;
3665}
3666
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003667unsigned long default_scale_freq_power(struct sched_domain *sd, int cpu)
3668{
Nikhil Rao1399fa72011-05-18 10:09:39 -07003669 return SCHED_POWER_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003670}
3671
3672unsigned long __weak arch_scale_freq_power(struct sched_domain *sd, int cpu)
3673{
3674 return default_scale_freq_power(sd, cpu);
3675}
3676
3677unsigned long default_scale_smt_power(struct sched_domain *sd, int cpu)
3678{
Peter Zijlstra669c55e2010-04-16 14:59:29 +02003679 unsigned long weight = sd->span_weight;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003680 unsigned long smt_gain = sd->smt_gain;
3681
3682 smt_gain /= weight;
3683
3684 return smt_gain;
3685}
3686
3687unsigned long __weak arch_scale_smt_power(struct sched_domain *sd, int cpu)
3688{
3689 return default_scale_smt_power(sd, cpu);
3690}
3691
3692unsigned long scale_rt_power(int cpu)
3693{
3694 struct rq *rq = cpu_rq(cpu);
Peter Zijlstrab654f7d2012-05-22 14:04:28 +02003695 u64 total, available, age_stamp, avg;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003696
Peter Zijlstrab654f7d2012-05-22 14:04:28 +02003697 /*
3698 * Since we're reading these variables without serialization make sure
3699 * we read them once before doing sanity checks on them.
3700 */
3701 age_stamp = ACCESS_ONCE(rq->age_stamp);
3702 avg = ACCESS_ONCE(rq->rt_avg);
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07003703
Peter Zijlstrab654f7d2012-05-22 14:04:28 +02003704 total = sched_avg_period() + (rq->clock - age_stamp);
3705
3706 if (unlikely(total < avg)) {
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07003707 /* Ensures that power won't end up being negative */
3708 available = 0;
3709 } else {
Peter Zijlstrab654f7d2012-05-22 14:04:28 +02003710 available = total - avg;
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07003711 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003712
Nikhil Rao1399fa72011-05-18 10:09:39 -07003713 if (unlikely((s64)total < SCHED_POWER_SCALE))
3714 total = SCHED_POWER_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003715
Nikhil Rao1399fa72011-05-18 10:09:39 -07003716 total >>= SCHED_POWER_SHIFT;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003717
3718 return div_u64(available, total);
3719}
3720
3721static void update_cpu_power(struct sched_domain *sd, int cpu)
3722{
Peter Zijlstra669c55e2010-04-16 14:59:29 +02003723 unsigned long weight = sd->span_weight;
Nikhil Rao1399fa72011-05-18 10:09:39 -07003724 unsigned long power = SCHED_POWER_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003725 struct sched_group *sdg = sd->groups;
3726
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003727 if ((sd->flags & SD_SHARE_CPUPOWER) && weight > 1) {
3728 if (sched_feat(ARCH_POWER))
3729 power *= arch_scale_smt_power(sd, cpu);
3730 else
3731 power *= default_scale_smt_power(sd, cpu);
3732
Nikhil Rao1399fa72011-05-18 10:09:39 -07003733 power >>= SCHED_POWER_SHIFT;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003734 }
3735
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02003736 sdg->sgp->power_orig = power;
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003737
3738 if (sched_feat(ARCH_POWER))
3739 power *= arch_scale_freq_power(sd, cpu);
3740 else
3741 power *= default_scale_freq_power(sd, cpu);
3742
Nikhil Rao1399fa72011-05-18 10:09:39 -07003743 power >>= SCHED_POWER_SHIFT;
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003744
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003745 power *= scale_rt_power(cpu);
Nikhil Rao1399fa72011-05-18 10:09:39 -07003746 power >>= SCHED_POWER_SHIFT;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003747
3748 if (!power)
3749 power = 1;
3750
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +02003751 cpu_rq(cpu)->cpu_power = power;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02003752 sdg->sgp->power = power;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003753}
3754
Peter Zijlstra029632f2011-10-25 10:00:11 +02003755void update_group_power(struct sched_domain *sd, int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003756{
3757 struct sched_domain *child = sd->child;
3758 struct sched_group *group, *sdg = sd->groups;
3759 unsigned long power;
Vincent Guittot4ec44122011-12-12 20:21:08 +01003760 unsigned long interval;
3761
3762 interval = msecs_to_jiffies(sd->balance_interval);
3763 interval = clamp(interval, 1UL, max_load_balance_interval);
3764 sdg->sgp->next_update = jiffies + interval;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003765
3766 if (!child) {
3767 update_cpu_power(sd, cpu);
3768 return;
3769 }
3770
3771 power = 0;
3772
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02003773 if (child->flags & SD_OVERLAP) {
3774 /*
3775 * SD_OVERLAP domains cannot assume that child groups
3776 * span the current group.
3777 */
3778
3779 for_each_cpu(cpu, sched_group_cpus(sdg))
3780 power += power_of(cpu);
3781 } else {
3782 /*
3783 * !SD_OVERLAP domains can assume that child groups
3784 * span the current group.
3785 */
3786
3787 group = child->groups;
3788 do {
3789 power += group->sgp->power;
3790 group = group->next;
3791 } while (group != child->groups);
3792 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003793
Peter Zijlstrac3decf02012-05-31 12:05:32 +02003794 sdg->sgp->power_orig = sdg->sgp->power = power;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003795}
3796
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003797/*
3798 * Try and fix up capacity for tiny siblings, this is needed when
3799 * things like SD_ASYM_PACKING need f_b_g to select another sibling
3800 * which on its own isn't powerful enough.
3801 *
3802 * See update_sd_pick_busiest() and check_asym_packing().
3803 */
3804static inline int
3805fix_small_capacity(struct sched_domain *sd, struct sched_group *group)
3806{
3807 /*
Nikhil Rao1399fa72011-05-18 10:09:39 -07003808 * Only siblings can have significantly less than SCHED_POWER_SCALE
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003809 */
Peter Zijlstraa6c75f22011-04-07 14:09:52 +02003810 if (!(sd->flags & SD_SHARE_CPUPOWER))
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003811 return 0;
3812
3813 /*
3814 * If ~90% of the cpu_power is still there, we're good.
3815 */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02003816 if (group->sgp->power * 32 > group->sgp->power_orig * 29)
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003817 return 1;
3818
3819 return 0;
3820}
3821
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003822/**
3823 * update_sg_lb_stats - Update sched_group's statistics for load balancing.
Randy Dunlapcd968912012-06-08 13:18:33 -07003824 * @env: The load balancing environment.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003825 * @group: sched_group whose statistics are to be updated.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003826 * @load_idx: Load index of sched_domain of this_cpu for load calc.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003827 * @local_group: Does group contain this_cpu.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003828 * @balance: Should we balance.
3829 * @sgs: variable to hold the statistics for this group.
3830 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003831static inline void update_sg_lb_stats(struct lb_env *env,
3832 struct sched_group *group, int load_idx,
Michael Wangb9403132012-07-12 16:10:13 +08003833 int local_group, int *balance, struct sg_lb_stats *sgs)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003834{
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003835 unsigned long nr_running, max_nr_running, min_nr_running;
3836 unsigned long load, max_cpu_load, min_cpu_load;
Peter Zijlstra04f733b2012-05-11 00:12:02 +02003837 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08003838 unsigned long avg_load_per_task = 0;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003839 int i;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003840
Gautham R Shenoy871e35b2010-01-20 14:02:44 -06003841 if (local_group)
Peter Zijlstrac1174872012-05-31 14:47:33 +02003842 balance_cpu = group_balance_cpu(group);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003843
3844 /* Tally up the load of all CPUs in the group */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003845 max_cpu_load = 0;
3846 min_cpu_load = ~0UL;
Nikhil Rao2582f0e2010-10-13 12:09:36 -07003847 max_nr_running = 0;
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003848 min_nr_running = ~0UL;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003849
Michael Wangb9403132012-07-12 16:10:13 +08003850 for_each_cpu_and(i, sched_group_cpus(group), env->cpus) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003851 struct rq *rq = cpu_rq(i);
3852
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003853 nr_running = rq->nr_running;
3854
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003855 /* Bias balancing toward cpus of our domain */
3856 if (local_group) {
Peter Zijlstrac1174872012-05-31 14:47:33 +02003857 if (idle_cpu(i) && !first_idle_cpu &&
3858 cpumask_test_cpu(i, sched_group_mask(group))) {
Peter Zijlstra04f733b2012-05-11 00:12:02 +02003859 first_idle_cpu = 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003860 balance_cpu = i;
3861 }
Peter Zijlstra04f733b2012-05-11 00:12:02 +02003862
3863 load = target_load(i, load_idx);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003864 } else {
3865 load = source_load(i, load_idx);
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003866 if (load > max_cpu_load)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003867 max_cpu_load = load;
3868 if (min_cpu_load > load)
3869 min_cpu_load = load;
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003870
3871 if (nr_running > max_nr_running)
3872 max_nr_running = nr_running;
3873 if (min_nr_running > nr_running)
3874 min_nr_running = nr_running;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003875 }
3876
3877 sgs->group_load += load;
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003878 sgs->sum_nr_running += nr_running;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003879 sgs->sum_weighted_load += weighted_cpuload(i);
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07003880 if (idle_cpu(i))
3881 sgs->idle_cpus++;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003882 }
3883
3884 /*
3885 * First idle cpu or the first cpu(busiest) in this sched group
3886 * is eligible for doing load balancing at this and above
3887 * domains. In the newly idle case, we will allow all the cpu's
3888 * to do the newly idle load balance.
3889 */
Vincent Guittot4ec44122011-12-12 20:21:08 +01003890 if (local_group) {
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003891 if (env->idle != CPU_NEWLY_IDLE) {
Peter Zijlstra04f733b2012-05-11 00:12:02 +02003892 if (balance_cpu != env->dst_cpu) {
Vincent Guittot4ec44122011-12-12 20:21:08 +01003893 *balance = 0;
3894 return;
3895 }
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003896 update_group_power(env->sd, env->dst_cpu);
Vincent Guittot4ec44122011-12-12 20:21:08 +01003897 } else if (time_after_eq(jiffies, group->sgp->next_update))
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003898 update_group_power(env->sd, env->dst_cpu);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003899 }
3900
3901 /* Adjust by relative CPU power of the group */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02003902 sgs->avg_load = (sgs->group_load*SCHED_POWER_SCALE) / group->sgp->power;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003903
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003904 /*
3905 * Consider the group unbalanced when the imbalance is larger
Peter Zijlstra866ab432011-02-21 18:56:47 +01003906 * than the average weight of a task.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003907 *
3908 * APZ: with cgroup the avg task weight can vary wildly and
3909 * might not be a suitable number - should we keep a
3910 * normalized nr_running number somewhere that negates
3911 * the hierarchy?
3912 */
Suresh Siddhadd5feea2010-02-23 16:13:52 -08003913 if (sgs->sum_nr_running)
3914 avg_load_per_task = sgs->sum_weighted_load / sgs->sum_nr_running;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003915
Peter Zijlstrae44bc5c2012-05-11 00:22:12 +02003916 if ((max_cpu_load - min_cpu_load) >= avg_load_per_task &&
3917 (max_nr_running - min_nr_running) > 1)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003918 sgs->group_imb = 1;
3919
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02003920 sgs->group_capacity = DIV_ROUND_CLOSEST(group->sgp->power,
Nikhil Rao1399fa72011-05-18 10:09:39 -07003921 SCHED_POWER_SCALE);
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10003922 if (!sgs->group_capacity)
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003923 sgs->group_capacity = fix_small_capacity(env->sd, group);
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07003924 sgs->group_weight = group->group_weight;
Nikhil Raofab47622010-10-15 13:12:29 -07003925
3926 if (sgs->group_capacity > sgs->sum_nr_running)
3927 sgs->group_has_capacity = 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003928}
3929
3930/**
Michael Neuling532cb4c2010-06-08 14:57:02 +10003931 * update_sd_pick_busiest - return 1 on busiest group
Randy Dunlapcd968912012-06-08 13:18:33 -07003932 * @env: The load balancing environment.
Michael Neuling532cb4c2010-06-08 14:57:02 +10003933 * @sds: sched_domain statistics
3934 * @sg: sched_group candidate to be checked for being the busiest
Michael Neulingb6b12292010-06-10 12:06:21 +10003935 * @sgs: sched_group statistics
Michael Neuling532cb4c2010-06-08 14:57:02 +10003936 *
3937 * Determine if @sg is a busier group than the previously selected
3938 * busiest group.
3939 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003940static bool update_sd_pick_busiest(struct lb_env *env,
Michael Neuling532cb4c2010-06-08 14:57:02 +10003941 struct sd_lb_stats *sds,
3942 struct sched_group *sg,
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003943 struct sg_lb_stats *sgs)
Michael Neuling532cb4c2010-06-08 14:57:02 +10003944{
3945 if (sgs->avg_load <= sds->max_load)
3946 return false;
3947
3948 if (sgs->sum_nr_running > sgs->group_capacity)
3949 return true;
3950
3951 if (sgs->group_imb)
3952 return true;
3953
3954 /*
3955 * ASYM_PACKING needs to move all the work to the lowest
3956 * numbered CPUs in the group, therefore mark all groups
3957 * higher than ourself as busy.
3958 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003959 if ((env->sd->flags & SD_ASYM_PACKING) && sgs->sum_nr_running &&
3960 env->dst_cpu < group_first_cpu(sg)) {
Michael Neuling532cb4c2010-06-08 14:57:02 +10003961 if (!sds->busiest)
3962 return true;
3963
3964 if (group_first_cpu(sds->busiest) > group_first_cpu(sg))
3965 return true;
3966 }
3967
3968 return false;
3969}
3970
3971/**
Hui Kang461819a2011-10-11 23:00:59 -04003972 * update_sd_lb_stats - Update sched_domain's statistics for load balancing.
Randy Dunlapcd968912012-06-08 13:18:33 -07003973 * @env: The load balancing environment.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003974 * @balance: Should we balance.
3975 * @sds: variable to hold the statistics for this sched_domain.
3976 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003977static inline void update_sd_lb_stats(struct lb_env *env,
Michael Wangb9403132012-07-12 16:10:13 +08003978 int *balance, struct sd_lb_stats *sds)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003979{
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003980 struct sched_domain *child = env->sd->child;
3981 struct sched_group *sg = env->sd->groups;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003982 struct sg_lb_stats sgs;
3983 int load_idx, prefer_sibling = 0;
3984
3985 if (child && child->flags & SD_PREFER_SIBLING)
3986 prefer_sibling = 1;
3987
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003988 load_idx = get_sd_load_idx(env->sd, env->idle);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003989
3990 do {
3991 int local_group;
3992
Peter Zijlstrabd939f42012-05-02 14:20:37 +02003993 local_group = cpumask_test_cpu(env->dst_cpu, sched_group_cpus(sg));
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003994 memset(&sgs, 0, sizeof(sgs));
Michael Wangb9403132012-07-12 16:10:13 +08003995 update_sg_lb_stats(env, sg, load_idx, local_group, balance, &sgs);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003996
Peter Zijlstra8f190fb2009-12-24 14:18:21 +01003997 if (local_group && !(*balance))
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01003998 return;
3999
4000 sds->total_load += sgs.group_load;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004001 sds->total_pwr += sg->sgp->power;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004002
4003 /*
4004 * In case the child domain prefers tasks go to siblings
Michael Neuling532cb4c2010-06-08 14:57:02 +10004005 * first, lower the sg capacity to one so that we'll try
Nikhil Rao75dd3212010-10-15 13:12:30 -07004006 * and move all the excess tasks away. We lower the capacity
4007 * of a group only if the local group has the capacity to fit
4008 * these excess tasks, i.e. nr_running < group_capacity. The
4009 * extra check prevents the case where you always pull from the
4010 * heaviest group when it is already under-utilized (possible
4011 * with a large weight task outweighs the tasks on the system).
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004012 */
Nikhil Rao75dd3212010-10-15 13:12:30 -07004013 if (prefer_sibling && !local_group && sds->this_has_capacity)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004014 sgs.group_capacity = min(sgs.group_capacity, 1UL);
4015
4016 if (local_group) {
4017 sds->this_load = sgs.avg_load;
Michael Neuling532cb4c2010-06-08 14:57:02 +10004018 sds->this = sg;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004019 sds->this_nr_running = sgs.sum_nr_running;
4020 sds->this_load_per_task = sgs.sum_weighted_load;
Nikhil Raofab47622010-10-15 13:12:29 -07004021 sds->this_has_capacity = sgs.group_has_capacity;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07004022 sds->this_idle_cpus = sgs.idle_cpus;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004023 } else if (update_sd_pick_busiest(env, sds, sg, &sgs)) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004024 sds->max_load = sgs.avg_load;
Michael Neuling532cb4c2010-06-08 14:57:02 +10004025 sds->busiest = sg;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004026 sds->busiest_nr_running = sgs.sum_nr_running;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07004027 sds->busiest_idle_cpus = sgs.idle_cpus;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004028 sds->busiest_group_capacity = sgs.group_capacity;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004029 sds->busiest_load_per_task = sgs.sum_weighted_load;
Nikhil Raofab47622010-10-15 13:12:29 -07004030 sds->busiest_has_capacity = sgs.group_has_capacity;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07004031 sds->busiest_group_weight = sgs.group_weight;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004032 sds->group_imb = sgs.group_imb;
4033 }
4034
Michael Neuling532cb4c2010-06-08 14:57:02 +10004035 sg = sg->next;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004036 } while (sg != env->sd->groups);
Michael Neuling532cb4c2010-06-08 14:57:02 +10004037}
4038
Michael Neuling532cb4c2010-06-08 14:57:02 +10004039/**
4040 * check_asym_packing - Check to see if the group is packed into the
4041 * sched doman.
4042 *
4043 * This is primarily intended to used at the sibling level. Some
4044 * cores like POWER7 prefer to use lower numbered SMT threads. In the
4045 * case of POWER7, it can move to lower SMT modes only when higher
4046 * threads are idle. When in lower SMT modes, the threads will
4047 * perform better since they share less core resources. Hence when we
4048 * have idle threads, we want them to be the higher ones.
4049 *
4050 * This packing function is run on idle threads. It checks to see if
4051 * the busiest CPU in this domain (core in the P7 case) has a higher
4052 * CPU number than the packing function is being run on. Here we are
4053 * assuming lower CPU number will be equivalent to lower a SMT thread
4054 * number.
4055 *
Michael Neulingb6b12292010-06-10 12:06:21 +10004056 * Returns 1 when packing is required and a task should be moved to
4057 * this CPU. The amount of the imbalance is returned in *imbalance.
4058 *
Randy Dunlapcd968912012-06-08 13:18:33 -07004059 * @env: The load balancing environment.
Michael Neuling532cb4c2010-06-08 14:57:02 +10004060 * @sds: Statistics of the sched_domain which is to be packed
Michael Neuling532cb4c2010-06-08 14:57:02 +10004061 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004062static int check_asym_packing(struct lb_env *env, struct sd_lb_stats *sds)
Michael Neuling532cb4c2010-06-08 14:57:02 +10004063{
4064 int busiest_cpu;
4065
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004066 if (!(env->sd->flags & SD_ASYM_PACKING))
Michael Neuling532cb4c2010-06-08 14:57:02 +10004067 return 0;
4068
4069 if (!sds->busiest)
4070 return 0;
4071
4072 busiest_cpu = group_first_cpu(sds->busiest);
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004073 if (env->dst_cpu > busiest_cpu)
Michael Neuling532cb4c2010-06-08 14:57:02 +10004074 return 0;
4075
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004076 env->imbalance = DIV_ROUND_CLOSEST(
4077 sds->max_load * sds->busiest->sgp->power, SCHED_POWER_SCALE);
4078
Michael Neuling532cb4c2010-06-08 14:57:02 +10004079 return 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004080}
4081
4082/**
4083 * fix_small_imbalance - Calculate the minor imbalance that exists
4084 * amongst the groups of a sched_domain, during
4085 * load balancing.
Randy Dunlapcd968912012-06-08 13:18:33 -07004086 * @env: The load balancing environment.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004087 * @sds: Statistics of the sched_domain whose imbalance is to be calculated.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004088 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004089static inline
4090void fix_small_imbalance(struct lb_env *env, struct sd_lb_stats *sds)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004091{
4092 unsigned long tmp, pwr_now = 0, pwr_move = 0;
4093 unsigned int imbn = 2;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004094 unsigned long scaled_busy_load_per_task;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004095
4096 if (sds->this_nr_running) {
4097 sds->this_load_per_task /= sds->this_nr_running;
4098 if (sds->busiest_load_per_task >
4099 sds->this_load_per_task)
4100 imbn = 1;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004101 } else {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004102 sds->this_load_per_task =
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004103 cpu_avg_load_per_task(env->dst_cpu);
4104 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004105
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004106 scaled_busy_load_per_task = sds->busiest_load_per_task
Nikhil Rao1399fa72011-05-18 10:09:39 -07004107 * SCHED_POWER_SCALE;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004108 scaled_busy_load_per_task /= sds->busiest->sgp->power;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004109
4110 if (sds->max_load - sds->this_load + scaled_busy_load_per_task >=
4111 (scaled_busy_load_per_task * imbn)) {
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004112 env->imbalance = sds->busiest_load_per_task;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004113 return;
4114 }
4115
4116 /*
4117 * OK, we don't have enough imbalance to justify moving tasks,
4118 * however we may be able to increase total CPU power used by
4119 * moving them.
4120 */
4121
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004122 pwr_now += sds->busiest->sgp->power *
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004123 min(sds->busiest_load_per_task, sds->max_load);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004124 pwr_now += sds->this->sgp->power *
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004125 min(sds->this_load_per_task, sds->this_load);
Nikhil Rao1399fa72011-05-18 10:09:39 -07004126 pwr_now /= SCHED_POWER_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004127
4128 /* Amount of load we'd subtract */
Nikhil Rao1399fa72011-05-18 10:09:39 -07004129 tmp = (sds->busiest_load_per_task * SCHED_POWER_SCALE) /
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004130 sds->busiest->sgp->power;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004131 if (sds->max_load > tmp)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004132 pwr_move += sds->busiest->sgp->power *
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004133 min(sds->busiest_load_per_task, sds->max_load - tmp);
4134
4135 /* Amount of load we'd add */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004136 if (sds->max_load * sds->busiest->sgp->power <
Nikhil Rao1399fa72011-05-18 10:09:39 -07004137 sds->busiest_load_per_task * SCHED_POWER_SCALE)
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004138 tmp = (sds->max_load * sds->busiest->sgp->power) /
4139 sds->this->sgp->power;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004140 else
Nikhil Rao1399fa72011-05-18 10:09:39 -07004141 tmp = (sds->busiest_load_per_task * SCHED_POWER_SCALE) /
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004142 sds->this->sgp->power;
4143 pwr_move += sds->this->sgp->power *
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004144 min(sds->this_load_per_task, sds->this_load + tmp);
Nikhil Rao1399fa72011-05-18 10:09:39 -07004145 pwr_move /= SCHED_POWER_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004146
4147 /* Move if we gain throughput */
4148 if (pwr_move > pwr_now)
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004149 env->imbalance = sds->busiest_load_per_task;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004150}
4151
4152/**
4153 * calculate_imbalance - Calculate the amount of imbalance present within the
4154 * groups of a given sched_domain during load balance.
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004155 * @env: load balance environment
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004156 * @sds: statistics of the sched_domain whose imbalance is to be calculated.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004157 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004158static inline void calculate_imbalance(struct lb_env *env, struct sd_lb_stats *sds)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004159{
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004160 unsigned long max_pull, load_above_capacity = ~0UL;
4161
4162 sds->busiest_load_per_task /= sds->busiest_nr_running;
4163 if (sds->group_imb) {
4164 sds->busiest_load_per_task =
4165 min(sds->busiest_load_per_task, sds->avg_load);
4166 }
4167
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004168 /*
4169 * In the presence of smp nice balancing, certain scenarios can have
4170 * max load less than avg load(as we skip the groups at or below
4171 * its cpu_power, while calculating max_load..)
4172 */
4173 if (sds->max_load < sds->avg_load) {
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004174 env->imbalance = 0;
4175 return fix_small_imbalance(env, sds);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004176 }
4177
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004178 if (!sds->group_imb) {
4179 /*
4180 * Don't want to pull so many tasks that a group would go idle.
4181 */
4182 load_above_capacity = (sds->busiest_nr_running -
4183 sds->busiest_group_capacity);
4184
Nikhil Rao1399fa72011-05-18 10:09:39 -07004185 load_above_capacity *= (SCHED_LOAD_SCALE * SCHED_POWER_SCALE);
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004186
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004187 load_above_capacity /= sds->busiest->sgp->power;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08004188 }
4189
4190 /*
4191 * We're trying to get all the cpus to the average_load, so we don't
4192 * want to push ourselves above the average load, nor do we wish to
4193 * reduce the max loaded cpu below the average load. At the same time,
4194 * we also don't want to reduce the group load below the group capacity
4195 * (so that we can implement power-savings policies etc). Thus we look
4196 * for the minimum possible imbalance.
4197 * Be careful of negative numbers as they'll appear as very large values
4198 * with unsigned longs.
4199 */
4200 max_pull = min(sds->max_load - sds->avg_load, load_above_capacity);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004201
4202 /* How much load to actually move to equalise the imbalance */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004203 env->imbalance = min(max_pull * sds->busiest->sgp->power,
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02004204 (sds->avg_load - sds->this_load) * sds->this->sgp->power)
Nikhil Rao1399fa72011-05-18 10:09:39 -07004205 / SCHED_POWER_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004206
4207 /*
4208 * if *imbalance is less than the average load per runnable task
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004209 * there is no guarantee that any tasks will be moved so we'll have
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004210 * a think about bumping its value to force at least one task to be
4211 * moved
4212 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004213 if (env->imbalance < sds->busiest_load_per_task)
4214 return fix_small_imbalance(env, sds);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004215
4216}
Nikhil Raofab47622010-10-15 13:12:29 -07004217
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004218/******* find_busiest_group() helpers end here *********************/
4219
4220/**
4221 * find_busiest_group - Returns the busiest group within the sched_domain
4222 * if there is an imbalance. If there isn't an imbalance, and
4223 * the user has opted for power-savings, it returns a group whose
4224 * CPUs can be put to idle by rebalancing those tasks elsewhere, if
4225 * such a group exists.
4226 *
4227 * Also calculates the amount of weighted load which should be moved
4228 * to restore balance.
4229 *
Randy Dunlapcd968912012-06-08 13:18:33 -07004230 * @env: The load balancing environment.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004231 * @balance: Pointer to a variable indicating if this_cpu
4232 * is the appropriate cpu to perform load balancing at this_level.
4233 *
4234 * Returns: - the busiest group if imbalance exists.
4235 * - If no imbalance and user has opted for power-savings balance,
4236 * return the least loaded group whose CPUs can be
4237 * put to idle by rebalancing its tasks onto our group.
4238 */
4239static struct sched_group *
Michael Wangb9403132012-07-12 16:10:13 +08004240find_busiest_group(struct lb_env *env, int *balance)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004241{
4242 struct sd_lb_stats sds;
4243
4244 memset(&sds, 0, sizeof(sds));
4245
4246 /*
4247 * Compute the various statistics relavent for load balancing at
4248 * this level.
4249 */
Michael Wangb9403132012-07-12 16:10:13 +08004250 update_sd_lb_stats(env, balance, &sds);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004251
Peter Zijlstracc57aa82011-02-21 18:55:32 +01004252 /*
4253 * this_cpu is not the appropriate cpu to perform load balancing at
4254 * this level.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004255 */
Peter Zijlstra8f190fb2009-12-24 14:18:21 +01004256 if (!(*balance))
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004257 goto ret;
4258
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004259 if ((env->idle == CPU_IDLE || env->idle == CPU_NEWLY_IDLE) &&
4260 check_asym_packing(env, &sds))
Michael Neuling532cb4c2010-06-08 14:57:02 +10004261 return sds.busiest;
4262
Peter Zijlstracc57aa82011-02-21 18:55:32 +01004263 /* There is no busy sibling group to pull tasks from */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004264 if (!sds.busiest || sds.busiest_nr_running == 0)
4265 goto out_balanced;
4266
Nikhil Rao1399fa72011-05-18 10:09:39 -07004267 sds.avg_load = (SCHED_POWER_SCALE * sds.total_load) / sds.total_pwr;
Ken Chenb0432d82011-04-07 17:23:22 -07004268
Peter Zijlstra866ab432011-02-21 18:56:47 +01004269 /*
4270 * If the busiest group is imbalanced the below checks don't
4271 * work because they assumes all things are equal, which typically
4272 * isn't true due to cpus_allowed constraints and the like.
4273 */
4274 if (sds.group_imb)
4275 goto force_balance;
4276
Peter Zijlstracc57aa82011-02-21 18:55:32 +01004277 /* SD_BALANCE_NEWIDLE trumps SMP nice when underutilized */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004278 if (env->idle == CPU_NEWLY_IDLE && sds.this_has_capacity &&
Nikhil Raofab47622010-10-15 13:12:29 -07004279 !sds.busiest_has_capacity)
4280 goto force_balance;
4281
Peter Zijlstracc57aa82011-02-21 18:55:32 +01004282 /*
4283 * If the local group is more busy than the selected busiest group
4284 * don't try and pull any tasks.
4285 */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004286 if (sds.this_load >= sds.max_load)
4287 goto out_balanced;
4288
Peter Zijlstracc57aa82011-02-21 18:55:32 +01004289 /*
4290 * Don't pull any tasks if this group is already above the domain
4291 * average load.
4292 */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004293 if (sds.this_load >= sds.avg_load)
4294 goto out_balanced;
4295
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004296 if (env->idle == CPU_IDLE) {
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07004297 /*
4298 * This cpu is idle. If the busiest group load doesn't
4299 * have more tasks than the number of available cpu's and
4300 * there is no imbalance between this and busiest group
4301 * wrt to idle cpu's, it is balanced.
4302 */
Peter Zijlstrac186faf2011-02-21 18:52:53 +01004303 if ((sds.this_idle_cpus <= sds.busiest_idle_cpus + 1) &&
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07004304 sds.busiest_nr_running <= sds.busiest_group_weight)
4305 goto out_balanced;
Peter Zijlstrac186faf2011-02-21 18:52:53 +01004306 } else {
4307 /*
4308 * In the CPU_NEWLY_IDLE, CPU_NOT_IDLE cases, use
4309 * imbalance_pct to be conservative.
4310 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004311 if (100 * sds.max_load <= env->sd->imbalance_pct * sds.this_load)
Peter Zijlstrac186faf2011-02-21 18:52:53 +01004312 goto out_balanced;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07004313 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004314
Nikhil Raofab47622010-10-15 13:12:29 -07004315force_balance:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004316 /* Looks like there is an imbalance. Compute it */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004317 calculate_imbalance(env, &sds);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004318 return sds.busiest;
4319
4320out_balanced:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004321ret:
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004322 env->imbalance = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004323 return NULL;
4324}
4325
4326/*
4327 * find_busiest_queue - find the busiest runqueue among the cpus in group.
4328 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004329static struct rq *find_busiest_queue(struct lb_env *env,
Michael Wangb9403132012-07-12 16:10:13 +08004330 struct sched_group *group)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004331{
4332 struct rq *busiest = NULL, *rq;
4333 unsigned long max_load = 0;
4334 int i;
4335
4336 for_each_cpu(i, sched_group_cpus(group)) {
4337 unsigned long power = power_of(i);
Nikhil Rao1399fa72011-05-18 10:09:39 -07004338 unsigned long capacity = DIV_ROUND_CLOSEST(power,
4339 SCHED_POWER_SCALE);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004340 unsigned long wl;
4341
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10004342 if (!capacity)
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004343 capacity = fix_small_capacity(env->sd, group);
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10004344
Michael Wangb9403132012-07-12 16:10:13 +08004345 if (!cpumask_test_cpu(i, env->cpus))
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004346 continue;
4347
4348 rq = cpu_rq(i);
Thomas Gleixner6e40f5b2010-02-16 16:48:56 +01004349 wl = weighted_cpuload(i);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004350
Thomas Gleixner6e40f5b2010-02-16 16:48:56 +01004351 /*
4352 * When comparing with imbalance, use weighted_cpuload()
4353 * which is not scaled with the cpu power.
4354 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004355 if (capacity && rq->nr_running == 1 && wl > env->imbalance)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004356 continue;
4357
Thomas Gleixner6e40f5b2010-02-16 16:48:56 +01004358 /*
4359 * For the load comparisons with the other cpu's, consider
4360 * the weighted_cpuload() scaled with the cpu power, so that
4361 * the load can be moved away from the cpu that is potentially
4362 * running at a lower capacity.
4363 */
Nikhil Rao1399fa72011-05-18 10:09:39 -07004364 wl = (wl * SCHED_POWER_SCALE) / power;
Thomas Gleixner6e40f5b2010-02-16 16:48:56 +01004365
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004366 if (wl > max_load) {
4367 max_load = wl;
4368 busiest = rq;
4369 }
4370 }
4371
4372 return busiest;
4373}
4374
4375/*
4376 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
4377 * so long as it is large enough.
4378 */
4379#define MAX_PINNED_INTERVAL 512
4380
4381/* Working cpumask for load_balance and load_balance_newidle. */
Peter Zijlstra029632f2011-10-25 10:00:11 +02004382DEFINE_PER_CPU(cpumask_var_t, load_balance_tmpmask);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004383
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004384static int need_active_balance(struct lb_env *env)
Peter Zijlstra1af3ed32009-12-23 15:10:31 +01004385{
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004386 struct sched_domain *sd = env->sd;
4387
4388 if (env->idle == CPU_NEWLY_IDLE) {
Michael Neuling532cb4c2010-06-08 14:57:02 +10004389
4390 /*
4391 * ASYM_PACKING needs to force migrate tasks from busy but
4392 * higher numbered CPUs in order to pack all tasks in the
4393 * lowest numbered CPUs.
4394 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004395 if ((sd->flags & SD_ASYM_PACKING) && env->src_cpu > env->dst_cpu)
Michael Neuling532cb4c2010-06-08 14:57:02 +10004396 return 1;
Peter Zijlstra1af3ed32009-12-23 15:10:31 +01004397 }
4398
4399 return unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2);
4400}
4401
Tejun Heo969c7922010-05-06 18:49:21 +02004402static int active_load_balance_cpu_stop(void *data);
4403
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004404/*
4405 * Check this_cpu to ensure it is balanced within domain. Attempt to move
4406 * tasks if there is an imbalance.
4407 */
4408static int load_balance(int this_cpu, struct rq *this_rq,
4409 struct sched_domain *sd, enum cpu_idle_type idle,
4410 int *balance)
4411{
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304412 int ld_moved, cur_ld_moved, active_balance = 0;
4413 int lb_iterations, max_lb_iterations;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004414 struct sched_group *group;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004415 struct rq *busiest;
4416 unsigned long flags;
4417 struct cpumask *cpus = __get_cpu_var(load_balance_tmpmask);
4418
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004419 struct lb_env env = {
4420 .sd = sd,
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01004421 .dst_cpu = this_cpu,
4422 .dst_rq = this_rq,
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304423 .dst_grpmask = sched_group_cpus(sd->groups),
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004424 .idle = idle,
Peter Zijlstraeb953082012-04-17 13:38:40 +02004425 .loop_break = sched_nr_migrate_break,
Michael Wangb9403132012-07-12 16:10:13 +08004426 .cpus = cpus,
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004427 };
4428
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004429 cpumask_copy(cpus, cpu_active_mask);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304430 max_lb_iterations = cpumask_weight(env.dst_grpmask);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004431
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004432 schedstat_inc(sd, lb_count[idle]);
4433
4434redo:
Michael Wangb9403132012-07-12 16:10:13 +08004435 group = find_busiest_group(&env, balance);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004436
4437 if (*balance == 0)
4438 goto out_balanced;
4439
4440 if (!group) {
4441 schedstat_inc(sd, lb_nobusyg[idle]);
4442 goto out_balanced;
4443 }
4444
Michael Wangb9403132012-07-12 16:10:13 +08004445 busiest = find_busiest_queue(&env, group);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004446 if (!busiest) {
4447 schedstat_inc(sd, lb_nobusyq[idle]);
4448 goto out_balanced;
4449 }
4450
Michael Wang78feefc2012-08-06 16:41:59 +08004451 BUG_ON(busiest == env.dst_rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004452
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004453 schedstat_add(sd, lb_imbalance[idle], env.imbalance);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004454
4455 ld_moved = 0;
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304456 lb_iterations = 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004457 if (busiest->nr_running > 1) {
4458 /*
4459 * Attempt to move tasks. If find_busiest_group has found
4460 * an imbalance but busiest->nr_running <= 1, the group is
4461 * still unbalanced. ld_moved simply stays zero, so it is
4462 * correctly treated as an imbalance.
4463 */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004464 env.flags |= LBF_ALL_PINNED;
Peter Zijlstrac82513e2012-04-26 13:12:27 +02004465 env.src_cpu = busiest->cpu;
4466 env.src_rq = busiest;
4467 env.loop_max = min(sysctl_sched_nr_migrate, busiest->nr_running);
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004468
Peter Zijlstraa35b6462012-08-08 21:46:40 +02004469 update_h_load(env.src_cpu);
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01004470more_balance:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004471 local_irq_save(flags);
Michael Wang78feefc2012-08-06 16:41:59 +08004472 double_rq_lock(env.dst_rq, busiest);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304473
4474 /*
4475 * cur_ld_moved - load moved in current iteration
4476 * ld_moved - cumulative load moved across iterations
4477 */
4478 cur_ld_moved = move_tasks(&env);
4479 ld_moved += cur_ld_moved;
Michael Wang78feefc2012-08-06 16:41:59 +08004480 double_rq_unlock(env.dst_rq, busiest);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004481 local_irq_restore(flags);
4482
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01004483 if (env.flags & LBF_NEED_BREAK) {
4484 env.flags &= ~LBF_NEED_BREAK;
4485 goto more_balance;
4486 }
4487
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004488 /*
4489 * some other cpu did the load balance for us.
4490 */
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304491 if (cur_ld_moved && env.dst_cpu != smp_processor_id())
4492 resched_cpu(env.dst_cpu);
4493
4494 /*
4495 * Revisit (affine) tasks on src_cpu that couldn't be moved to
4496 * us and move them to an alternate dst_cpu in our sched_group
4497 * where they can run. The upper limit on how many times we
4498 * iterate on same src_cpu is dependent on number of cpus in our
4499 * sched_group.
4500 *
4501 * This changes load balance semantics a bit on who can move
4502 * load to a given_cpu. In addition to the given_cpu itself
4503 * (or a ilb_cpu acting on its behalf where given_cpu is
4504 * nohz-idle), we now have balance_cpu in a position to move
4505 * load to given_cpu. In rare situations, this may cause
4506 * conflicts (balance_cpu and given_cpu/ilb_cpu deciding
4507 * _independently_ and at _same_ time to move some load to
4508 * given_cpu) causing exceess load to be moved to given_cpu.
4509 * This however should not happen so much in practice and
4510 * moreover subsequent load balance cycles should correct the
4511 * excess load moved.
4512 */
4513 if ((env.flags & LBF_SOME_PINNED) && env.imbalance > 0 &&
4514 lb_iterations++ < max_lb_iterations) {
4515
Michael Wang78feefc2012-08-06 16:41:59 +08004516 env.dst_rq = cpu_rq(env.new_dst_cpu);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05304517 env.dst_cpu = env.new_dst_cpu;
4518 env.flags &= ~LBF_SOME_PINNED;
4519 env.loop = 0;
4520 env.loop_break = sched_nr_migrate_break;
4521 /*
4522 * Go back to "more_balance" rather than "redo" since we
4523 * need to continue with same src_cpu.
4524 */
4525 goto more_balance;
4526 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004527
4528 /* All tasks on this runqueue were pinned by CPU affinity */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004529 if (unlikely(env.flags & LBF_ALL_PINNED)) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004530 cpumask_clear_cpu(cpu_of(busiest), cpus);
Prashanth Nageshappabbf18b12012-06-19 17:52:07 +05304531 if (!cpumask_empty(cpus)) {
4532 env.loop = 0;
4533 env.loop_break = sched_nr_migrate_break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004534 goto redo;
Prashanth Nageshappabbf18b12012-06-19 17:52:07 +05304535 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004536 goto out_balanced;
4537 }
4538 }
4539
4540 if (!ld_moved) {
4541 schedstat_inc(sd, lb_failed[idle]);
Venkatesh Pallipadi58b26c42010-09-10 18:19:17 -07004542 /*
4543 * Increment the failure counter only on periodic balance.
4544 * We do not want newidle balance, which can be very
4545 * frequent, pollute the failure counter causing
4546 * excessive cache_hot migrations and active balances.
4547 */
4548 if (idle != CPU_NEWLY_IDLE)
4549 sd->nr_balance_failed++;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004550
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004551 if (need_active_balance(&env)) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004552 raw_spin_lock_irqsave(&busiest->lock, flags);
4553
Tejun Heo969c7922010-05-06 18:49:21 +02004554 /* don't kick the active_load_balance_cpu_stop,
4555 * if the curr task on busiest cpu can't be
4556 * moved to this_cpu
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004557 */
4558 if (!cpumask_test_cpu(this_cpu,
Peter Zijlstrafa17b502011-06-16 12:23:22 +02004559 tsk_cpus_allowed(busiest->curr))) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004560 raw_spin_unlock_irqrestore(&busiest->lock,
4561 flags);
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004562 env.flags |= LBF_ALL_PINNED;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004563 goto out_one_pinned;
4564 }
4565
Tejun Heo969c7922010-05-06 18:49:21 +02004566 /*
4567 * ->active_balance synchronizes accesses to
4568 * ->active_balance_work. Once set, it's cleared
4569 * only after active load balance is finished.
4570 */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004571 if (!busiest->active_balance) {
4572 busiest->active_balance = 1;
4573 busiest->push_cpu = this_cpu;
4574 active_balance = 1;
4575 }
4576 raw_spin_unlock_irqrestore(&busiest->lock, flags);
Tejun Heo969c7922010-05-06 18:49:21 +02004577
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004578 if (active_balance) {
Tejun Heo969c7922010-05-06 18:49:21 +02004579 stop_one_cpu_nowait(cpu_of(busiest),
4580 active_load_balance_cpu_stop, busiest,
4581 &busiest->active_balance_work);
Peter Zijlstrabd939f42012-05-02 14:20:37 +02004582 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004583
4584 /*
4585 * We've kicked active balancing, reset the failure
4586 * counter.
4587 */
4588 sd->nr_balance_failed = sd->cache_nice_tries+1;
4589 }
4590 } else
4591 sd->nr_balance_failed = 0;
4592
4593 if (likely(!active_balance)) {
4594 /* We were unbalanced, so reset the balancing interval */
4595 sd->balance_interval = sd->min_interval;
4596 } else {
4597 /*
4598 * If we've begun active balancing, start to back off. This
4599 * case may not be covered by the all_pinned logic if there
4600 * is only 1 task on the busy runqueue (because we don't call
4601 * move_tasks).
4602 */
4603 if (sd->balance_interval < sd->max_interval)
4604 sd->balance_interval *= 2;
4605 }
4606
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004607 goto out;
4608
4609out_balanced:
4610 schedstat_inc(sd, lb_balanced[idle]);
4611
4612 sd->nr_balance_failed = 0;
4613
4614out_one_pinned:
4615 /* tune up the balancing interval */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004616 if (((env.flags & LBF_ALL_PINNED) &&
Peter Zijlstra5b54b562011-09-22 15:23:13 +02004617 sd->balance_interval < MAX_PINNED_INTERVAL) ||
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004618 (sd->balance_interval < sd->max_interval))
4619 sd->balance_interval *= 2;
4620
Venkatesh Pallipadi46e49b32011-02-14 14:38:50 -08004621 ld_moved = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004622out:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004623 return ld_moved;
4624}
4625
4626/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004627 * idle_balance is called by schedule() if this_cpu is about to become
4628 * idle. Attempts to pull tasks from other CPUs.
4629 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02004630void idle_balance(int this_cpu, struct rq *this_rq)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004631{
4632 struct sched_domain *sd;
4633 int pulled_task = 0;
4634 unsigned long next_balance = jiffies + HZ;
4635
4636 this_rq->idle_stamp = this_rq->clock;
4637
4638 if (this_rq->avg_idle < sysctl_sched_migration_cost)
4639 return;
4640
Peter Zijlstraf492e122009-12-23 15:29:42 +01004641 /*
4642 * Drop the rq->lock, but keep IRQ/preempt disabled.
4643 */
4644 raw_spin_unlock(&this_rq->lock);
4645
Paul Turnerc66eaf62010-11-15 15:47:07 -08004646 update_shares(this_cpu);
Peter Zijlstradce840a2011-04-07 14:09:50 +02004647 rcu_read_lock();
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004648 for_each_domain(this_cpu, sd) {
4649 unsigned long interval;
Peter Zijlstraf492e122009-12-23 15:29:42 +01004650 int balance = 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004651
4652 if (!(sd->flags & SD_LOAD_BALANCE))
4653 continue;
4654
Peter Zijlstraf492e122009-12-23 15:29:42 +01004655 if (sd->flags & SD_BALANCE_NEWIDLE) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004656 /* If we've pulled tasks over stop searching: */
Peter Zijlstraf492e122009-12-23 15:29:42 +01004657 pulled_task = load_balance(this_cpu, this_rq,
4658 sd, CPU_NEWLY_IDLE, &balance);
4659 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004660
4661 interval = msecs_to_jiffies(sd->balance_interval);
4662 if (time_after(next_balance, sd->last_balance + interval))
4663 next_balance = sd->last_balance + interval;
Nikhil Raod5ad1402010-11-17 11:42:04 -08004664 if (pulled_task) {
4665 this_rq->idle_stamp = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004666 break;
Nikhil Raod5ad1402010-11-17 11:42:04 -08004667 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004668 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02004669 rcu_read_unlock();
Peter Zijlstraf492e122009-12-23 15:29:42 +01004670
4671 raw_spin_lock(&this_rq->lock);
4672
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004673 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
4674 /*
4675 * We are going idle. next_balance may be set based on
4676 * a busy processor. So reset next_balance.
4677 */
4678 this_rq->next_balance = next_balance;
4679 }
4680}
4681
4682/*
Tejun Heo969c7922010-05-06 18:49:21 +02004683 * active_load_balance_cpu_stop is run by cpu stopper. It pushes
4684 * running tasks off the busiest CPU onto idle CPUs. It requires at
4685 * least 1 task to be running on each physical CPU where possible, and
4686 * avoids physical / logical imbalances.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004687 */
Tejun Heo969c7922010-05-06 18:49:21 +02004688static int active_load_balance_cpu_stop(void *data)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004689{
Tejun Heo969c7922010-05-06 18:49:21 +02004690 struct rq *busiest_rq = data;
4691 int busiest_cpu = cpu_of(busiest_rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004692 int target_cpu = busiest_rq->push_cpu;
Tejun Heo969c7922010-05-06 18:49:21 +02004693 struct rq *target_rq = cpu_rq(target_cpu);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004694 struct sched_domain *sd;
Tejun Heo969c7922010-05-06 18:49:21 +02004695
4696 raw_spin_lock_irq(&busiest_rq->lock);
4697
4698 /* make sure the requested cpu hasn't gone down in the meantime */
4699 if (unlikely(busiest_cpu != smp_processor_id() ||
4700 !busiest_rq->active_balance))
4701 goto out_unlock;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004702
4703 /* Is there any task to move? */
4704 if (busiest_rq->nr_running <= 1)
Tejun Heo969c7922010-05-06 18:49:21 +02004705 goto out_unlock;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004706
4707 /*
4708 * This condition is "impossible", if it occurs
4709 * we need to fix it. Originally reported by
4710 * Bjorn Helgaas on a 128-cpu setup.
4711 */
4712 BUG_ON(busiest_rq == target_rq);
4713
4714 /* move a task from busiest_rq to target_rq */
4715 double_lock_balance(busiest_rq, target_rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004716
4717 /* Search for an sd spanning us and the target CPU. */
Peter Zijlstradce840a2011-04-07 14:09:50 +02004718 rcu_read_lock();
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004719 for_each_domain(target_cpu, sd) {
4720 if ((sd->flags & SD_LOAD_BALANCE) &&
4721 cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
4722 break;
4723 }
4724
4725 if (likely(sd)) {
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004726 struct lb_env env = {
4727 .sd = sd,
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01004728 .dst_cpu = target_cpu,
4729 .dst_rq = target_rq,
4730 .src_cpu = busiest_rq->cpu,
4731 .src_rq = busiest_rq,
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004732 .idle = CPU_IDLE,
4733 };
4734
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004735 schedstat_inc(sd, alb_count);
4736
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01004737 if (move_one_task(&env))
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004738 schedstat_inc(sd, alb_pushed);
4739 else
4740 schedstat_inc(sd, alb_failed);
4741 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02004742 rcu_read_unlock();
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004743 double_unlock_balance(busiest_rq, target_rq);
Tejun Heo969c7922010-05-06 18:49:21 +02004744out_unlock:
4745 busiest_rq->active_balance = 0;
4746 raw_spin_unlock_irq(&busiest_rq->lock);
4747 return 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004748}
4749
4750#ifdef CONFIG_NO_HZ
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004751/*
4752 * idle load balancing details
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004753 * - When one of the busy CPUs notice that there may be an idle rebalancing
4754 * needed, they will kick the idle load balancer, which then does idle
4755 * load balancing for all the idle CPUs.
4756 */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004757static struct {
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004758 cpumask_var_t idle_cpus_mask;
Suresh Siddha0b005cf2011-12-01 17:07:34 -08004759 atomic_t nr_cpus;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004760 unsigned long next_balance; /* in jiffy units */
4761} nohz ____cacheline_aligned;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004762
Peter Zijlstra8e7fbcb2012-01-09 11:28:35 +01004763static inline int find_new_ilb(int call_cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004764{
Suresh Siddha0b005cf2011-12-01 17:07:34 -08004765 int ilb = cpumask_first(nohz.idle_cpus_mask);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004766
Suresh Siddha786d6dc2011-12-01 17:07:35 -08004767 if (ilb < nr_cpu_ids && idle_cpu(ilb))
4768 return ilb;
4769
4770 return nr_cpu_ids;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004771}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004772
4773/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004774 * Kick a CPU to do the nohz balancing, if it is time for it. We pick the
4775 * nohz_load_balancer CPU (if there is one) otherwise fallback to any idle
4776 * CPU (if there is one).
4777 */
4778static void nohz_balancer_kick(int cpu)
4779{
4780 int ilb_cpu;
4781
4782 nohz.next_balance++;
4783
Suresh Siddha0b005cf2011-12-01 17:07:34 -08004784 ilb_cpu = find_new_ilb(cpu);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004785
Suresh Siddha0b005cf2011-12-01 17:07:34 -08004786 if (ilb_cpu >= nr_cpu_ids)
4787 return;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004788
Suresh Siddhacd490c52011-12-06 11:26:34 -08004789 if (test_and_set_bit(NOHZ_BALANCE_KICK, nohz_flags(ilb_cpu)))
Suresh Siddha1c792db2011-12-01 17:07:32 -08004790 return;
4791 /*
4792 * Use smp_send_reschedule() instead of resched_cpu().
4793 * This way we generate a sched IPI on the target cpu which
4794 * is idle. And the softirq performing nohz idle load balance
4795 * will be run before returning from the IPI.
4796 */
4797 smp_send_reschedule(ilb_cpu);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004798 return;
4799}
4800
Alex Shic1cc0172012-09-10 15:10:58 +08004801static inline void nohz_balance_exit_idle(int cpu)
Suresh Siddha71325962012-01-19 18:28:57 -08004802{
4803 if (unlikely(test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)))) {
4804 cpumask_clear_cpu(cpu, nohz.idle_cpus_mask);
4805 atomic_dec(&nohz.nr_cpus);
4806 clear_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu));
4807 }
4808}
4809
Suresh Siddha69e1e812011-12-01 17:07:33 -08004810static inline void set_cpu_sd_state_busy(void)
4811{
4812 struct sched_domain *sd;
4813 int cpu = smp_processor_id();
4814
4815 if (!test_bit(NOHZ_IDLE, nohz_flags(cpu)))
4816 return;
4817 clear_bit(NOHZ_IDLE, nohz_flags(cpu));
4818
4819 rcu_read_lock();
4820 for_each_domain(cpu, sd)
4821 atomic_inc(&sd->groups->sgp->nr_busy_cpus);
4822 rcu_read_unlock();
4823}
4824
4825void set_cpu_sd_state_idle(void)
4826{
4827 struct sched_domain *sd;
4828 int cpu = smp_processor_id();
4829
4830 if (test_bit(NOHZ_IDLE, nohz_flags(cpu)))
4831 return;
4832 set_bit(NOHZ_IDLE, nohz_flags(cpu));
4833
4834 rcu_read_lock();
4835 for_each_domain(cpu, sd)
4836 atomic_dec(&sd->groups->sgp->nr_busy_cpus);
4837 rcu_read_unlock();
4838}
4839
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004840/*
Alex Shic1cc0172012-09-10 15:10:58 +08004841 * This routine will record that the cpu is going idle with tick stopped.
Suresh Siddha0b005cf2011-12-01 17:07:34 -08004842 * This info will be used in performing idle load balancing in the future.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004843 */
Alex Shic1cc0172012-09-10 15:10:58 +08004844void nohz_balance_enter_idle(int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004845{
Suresh Siddha71325962012-01-19 18:28:57 -08004846 /*
4847 * If this cpu is going down, then nothing needs to be done.
4848 */
4849 if (!cpu_active(cpu))
4850 return;
4851
Alex Shic1cc0172012-09-10 15:10:58 +08004852 if (test_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu)))
4853 return;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004854
Alex Shic1cc0172012-09-10 15:10:58 +08004855 cpumask_set_cpu(cpu, nohz.idle_cpus_mask);
4856 atomic_inc(&nohz.nr_cpus);
4857 set_bit(NOHZ_TICK_STOPPED, nohz_flags(cpu));
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004858}
Suresh Siddha71325962012-01-19 18:28:57 -08004859
4860static int __cpuinit sched_ilb_notifier(struct notifier_block *nfb,
4861 unsigned long action, void *hcpu)
4862{
4863 switch (action & ~CPU_TASKS_FROZEN) {
4864 case CPU_DYING:
Alex Shic1cc0172012-09-10 15:10:58 +08004865 nohz_balance_exit_idle(smp_processor_id());
Suresh Siddha71325962012-01-19 18:28:57 -08004866 return NOTIFY_OK;
4867 default:
4868 return NOTIFY_DONE;
4869 }
4870}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004871#endif
4872
4873static DEFINE_SPINLOCK(balancing);
4874
Peter Zijlstra49c022e2011-04-05 10:14:25 +02004875/*
4876 * Scale the max load_balance interval with the number of CPUs in the system.
4877 * This trades load-balance latency on larger machines for less cross talk.
4878 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02004879void update_max_interval(void)
Peter Zijlstra49c022e2011-04-05 10:14:25 +02004880{
4881 max_load_balance_interval = HZ*num_online_cpus()/10;
4882}
4883
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004884/*
4885 * It checks each scheduling domain to see if it is due to be balanced,
4886 * and initiates a balancing operation if so.
4887 *
4888 * Balancing parameters are set up in arch_init_sched_domains.
4889 */
4890static void rebalance_domains(int cpu, enum cpu_idle_type idle)
4891{
4892 int balance = 1;
4893 struct rq *rq = cpu_rq(cpu);
4894 unsigned long interval;
Peter Zijlstra04f733b2012-05-11 00:12:02 +02004895 struct sched_domain *sd;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004896 /* Earliest time when we have to do rebalance again */
4897 unsigned long next_balance = jiffies + 60*HZ;
4898 int update_next_balance = 0;
4899 int need_serialize;
4900
Peter Zijlstra2069dd72010-11-15 15:47:00 -08004901 update_shares(cpu);
4902
Peter Zijlstradce840a2011-04-07 14:09:50 +02004903 rcu_read_lock();
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004904 for_each_domain(cpu, sd) {
4905 if (!(sd->flags & SD_LOAD_BALANCE))
4906 continue;
4907
4908 interval = sd->balance_interval;
4909 if (idle != CPU_IDLE)
4910 interval *= sd->busy_factor;
4911
4912 /* scale ms to jiffies */
4913 interval = msecs_to_jiffies(interval);
Peter Zijlstra49c022e2011-04-05 10:14:25 +02004914 interval = clamp(interval, 1UL, max_load_balance_interval);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004915
4916 need_serialize = sd->flags & SD_SERIALIZE;
4917
4918 if (need_serialize) {
4919 if (!spin_trylock(&balancing))
4920 goto out;
4921 }
4922
4923 if (time_after_eq(jiffies, sd->last_balance + interval)) {
4924 if (load_balance(cpu, rq, sd, idle, &balance)) {
4925 /*
4926 * We've pulled tasks over so either we're no
Peter Zijlstrac186faf2011-02-21 18:52:53 +01004927 * longer idle.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004928 */
4929 idle = CPU_NOT_IDLE;
4930 }
4931 sd->last_balance = jiffies;
4932 }
4933 if (need_serialize)
4934 spin_unlock(&balancing);
4935out:
4936 if (time_after(next_balance, sd->last_balance + interval)) {
4937 next_balance = sd->last_balance + interval;
4938 update_next_balance = 1;
4939 }
4940
4941 /*
4942 * Stop the load balance at this level. There is another
4943 * CPU in our sched group which is doing load balancing more
4944 * actively.
4945 */
4946 if (!balance)
4947 break;
4948 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02004949 rcu_read_unlock();
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01004950
4951 /*
4952 * next_balance will be updated only when there is a need.
4953 * When the cpu is attached to null domain for ex, it will not be
4954 * updated.
4955 */
4956 if (likely(update_next_balance))
4957 rq->next_balance = next_balance;
4958}
4959
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004960#ifdef CONFIG_NO_HZ
4961/*
4962 * In CONFIG_NO_HZ case, the idle balance kickee will do the
4963 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4964 */
4965static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle)
4966{
4967 struct rq *this_rq = cpu_rq(this_cpu);
4968 struct rq *rq;
4969 int balance_cpu;
4970
Suresh Siddha1c792db2011-12-01 17:07:32 -08004971 if (idle != CPU_IDLE ||
4972 !test_bit(NOHZ_BALANCE_KICK, nohz_flags(this_cpu)))
4973 goto end;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004974
4975 for_each_cpu(balance_cpu, nohz.idle_cpus_mask) {
Suresh Siddha8a6d42d2011-12-06 11:19:37 -08004976 if (balance_cpu == this_cpu || !idle_cpu(balance_cpu))
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004977 continue;
4978
4979 /*
4980 * If this cpu gets work to do, stop the load balancing
4981 * work being done for other cpus. Next load
4982 * balancing owner will pick it up.
4983 */
Suresh Siddha1c792db2011-12-01 17:07:32 -08004984 if (need_resched())
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004985 break;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004986
Vincent Guittot5ed4f1d2012-09-13 06:11:26 +02004987 rq = cpu_rq(balance_cpu);
4988
4989 raw_spin_lock_irq(&rq->lock);
4990 update_rq_clock(rq);
4991 update_idle_cpu_load(rq);
4992 raw_spin_unlock_irq(&rq->lock);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004993
4994 rebalance_domains(balance_cpu, CPU_IDLE);
4995
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07004996 if (time_after(this_rq->next_balance, rq->next_balance))
4997 this_rq->next_balance = rq->next_balance;
4998 }
4999 nohz.next_balance = this_rq->next_balance;
Suresh Siddha1c792db2011-12-01 17:07:32 -08005000end:
5001 clear_bit(NOHZ_BALANCE_KICK, nohz_flags(this_cpu));
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005002}
5003
5004/*
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005005 * Current heuristic for kicking the idle load balancer in the presence
5006 * of an idle cpu is the system.
5007 * - This rq has more than one task.
5008 * - At any scheduler domain level, this cpu's scheduler group has multiple
5009 * busy cpu's exceeding the group's power.
5010 * - For SD_ASYM_PACKING, if the lower numbered cpu's in the scheduler
5011 * domain span are idle.
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005012 */
5013static inline int nohz_kick_needed(struct rq *rq, int cpu)
5014{
5015 unsigned long now = jiffies;
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005016 struct sched_domain *sd;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005017
Suresh Siddha1c792db2011-12-01 17:07:32 -08005018 if (unlikely(idle_cpu(cpu)))
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005019 return 0;
5020
Suresh Siddha1c792db2011-12-01 17:07:32 -08005021 /*
5022 * We may be recently in ticked or tickless idle mode. At the first
5023 * busy tick after returning from idle, we will update the busy stats.
5024 */
Suresh Siddha69e1e812011-12-01 17:07:33 -08005025 set_cpu_sd_state_busy();
Alex Shic1cc0172012-09-10 15:10:58 +08005026 nohz_balance_exit_idle(cpu);
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005027
5028 /*
5029 * None are in tickless mode and hence no need for NOHZ idle load
5030 * balancing.
5031 */
5032 if (likely(!atomic_read(&nohz.nr_cpus)))
5033 return 0;
Suresh Siddha1c792db2011-12-01 17:07:32 -08005034
5035 if (time_before(now, nohz.next_balance))
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005036 return 0;
5037
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005038 if (rq->nr_running >= 2)
5039 goto need_kick;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005040
Peter Zijlstra067491b2011-12-07 14:32:08 +01005041 rcu_read_lock();
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005042 for_each_domain(cpu, sd) {
5043 struct sched_group *sg = sd->groups;
5044 struct sched_group_power *sgp = sg->sgp;
5045 int nr_busy = atomic_read(&sgp->nr_busy_cpus);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005046
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005047 if (sd->flags & SD_SHARE_PKG_RESOURCES && nr_busy > 1)
Peter Zijlstra067491b2011-12-07 14:32:08 +01005048 goto need_kick_unlock;
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005049
5050 if (sd->flags & SD_ASYM_PACKING && nr_busy != sg->group_weight
5051 && (cpumask_first_and(nohz.idle_cpus_mask,
5052 sched_domain_span(sd)) < cpu))
Peter Zijlstra067491b2011-12-07 14:32:08 +01005053 goto need_kick_unlock;
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005054
5055 if (!(sd->flags & (SD_SHARE_PKG_RESOURCES | SD_ASYM_PACKING)))
5056 break;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005057 }
Peter Zijlstra067491b2011-12-07 14:32:08 +01005058 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005059 return 0;
Peter Zijlstra067491b2011-12-07 14:32:08 +01005060
5061need_kick_unlock:
5062 rcu_read_unlock();
Suresh Siddha0b005cf2011-12-01 17:07:34 -08005063need_kick:
5064 return 1;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005065}
5066#else
5067static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle) { }
5068#endif
5069
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005070/*
5071 * run_rebalance_domains is triggered when needed from the scheduler tick.
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005072 * Also triggered for nohz idle balancing (with nohz_balancing_kick set).
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005073 */
5074static void run_rebalance_domains(struct softirq_action *h)
5075{
5076 int this_cpu = smp_processor_id();
5077 struct rq *this_rq = cpu_rq(this_cpu);
Suresh Siddha6eb57e02011-10-03 15:09:01 -07005078 enum cpu_idle_type idle = this_rq->idle_balance ?
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005079 CPU_IDLE : CPU_NOT_IDLE;
5080
5081 rebalance_domains(this_cpu, idle);
5082
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005083 /*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005084 * If this cpu has a pending nohz_balance_kick, then do the
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005085 * balancing on behalf of the other idle cpus whose ticks are
5086 * stopped.
5087 */
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005088 nohz_idle_balance(this_cpu, idle);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005089}
5090
5091static inline int on_null_domain(int cpu)
5092{
Paul E. McKenney90a65012010-02-28 08:32:18 -08005093 return !rcu_dereference_sched(cpu_rq(cpu)->sd);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005094}
5095
5096/*
5097 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005098 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02005099void trigger_load_balance(struct rq *rq, int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005100{
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005101 /* Don't need to rebalance while attached to NULL domain */
5102 if (time_after_eq(jiffies, rq->next_balance) &&
5103 likely(!on_null_domain(cpu)))
5104 raise_softirq(SCHED_SOFTIRQ);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005105#ifdef CONFIG_NO_HZ
Suresh Siddha1c792db2011-12-01 17:07:32 -08005106 if (nohz_kick_needed(rq, cpu) && likely(!on_null_domain(cpu)))
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07005107 nohz_balancer_kick(cpu);
5108#endif
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01005109}
5110
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005111static void rq_online_fair(struct rq *rq)
5112{
5113 update_sysctl();
5114}
5115
5116static void rq_offline_fair(struct rq *rq)
5117{
5118 update_sysctl();
Peter Boonstoppela4c96ae2012-08-09 15:34:47 -07005119
5120 /* Ensure any throttled groups are reachable by pick_next_task */
5121 unthrottle_offline_cfs_rqs(rq);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005122}
5123
Dhaval Giani55e12e52008-06-24 23:39:43 +05305124#endif /* CONFIG_SMP */
Peter Williamse1d14842007-10-24 18:23:51 +02005125
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005126/*
5127 * scheduler tick hitting a task of our scheduling class:
5128 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005129static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005130{
5131 struct cfs_rq *cfs_rq;
5132 struct sched_entity *se = &curr->se;
5133
5134 for_each_sched_entity(se) {
5135 cfs_rq = cfs_rq_of(se);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005136 entity_tick(cfs_rq, se, queued);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005137 }
Peter Zijlstracbee9f82012-10-25 14:16:43 +02005138
5139 if (sched_feat_numa(NUMA))
5140 task_tick_numa(rq, curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005141}
5142
5143/*
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005144 * called on fork with the child task as argument from the parent's context
5145 * - child not yet on the tasklist
5146 * - preemption disabled
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005147 */
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005148static void task_fork_fair(struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005149{
Daisuke Nishimura4fc420c2011-12-15 14:36:55 +09005150 struct cfs_rq *cfs_rq;
5151 struct sched_entity *se = &p->se, *curr;
Ingo Molnar00bf7bf2007-10-15 17:00:14 +02005152 int this_cpu = smp_processor_id();
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005153 struct rq *rq = this_rq();
5154 unsigned long flags;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005155
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005156 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005157
Peter Zijlstra861d0342010-08-19 13:31:43 +02005158 update_rq_clock(rq);
5159
Daisuke Nishimura4fc420c2011-12-15 14:36:55 +09005160 cfs_rq = task_cfs_rq(current);
5161 curr = cfs_rq->curr;
5162
Paul E. McKenneyb0a0f662010-10-06 17:32:51 -07005163 if (unlikely(task_cpu(p) != this_cpu)) {
5164 rcu_read_lock();
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005165 __set_task_cpu(p, this_cpu);
Paul E. McKenneyb0a0f662010-10-06 17:32:51 -07005166 rcu_read_unlock();
5167 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005168
Ting Yang7109c442007-08-28 12:53:24 +02005169 update_curr(cfs_rq);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005170
Mike Galbraithb5d9d732009-09-08 11:12:28 +02005171 if (curr)
5172 se->vruntime = curr->vruntime;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02005173 place_entity(cfs_rq, se, 1);
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +02005174
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005175 if (sysctl_sched_child_runs_first && curr && entity_before(curr, se)) {
Dmitry Adamushko87fefa32007-10-15 17:00:08 +02005176 /*
Ingo Molnaredcb60a2007-10-15 17:00:08 +02005177 * Upon rescheduling, sched_class::put_prev_task() will place
5178 * 'current' within the tree based on its new key value.
5179 */
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +02005180 swap(curr->vruntime, se->vruntime);
Bharata B Raoaec0a512008-08-28 14:42:49 +05305181 resched_task(rq->curr);
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +02005182 }
5183
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01005184 se->vruntime -= cfs_rq->min_vruntime;
5185
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005186 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005187}
5188
Steven Rostedtcb469842008-01-25 21:08:22 +01005189/*
5190 * Priority of the task has changed. Check to see if we preempt
5191 * the current task.
5192 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005193static void
5194prio_changed_fair(struct rq *rq, struct task_struct *p, int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01005195{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005196 if (!p->se.on_rq)
5197 return;
5198
Steven Rostedtcb469842008-01-25 21:08:22 +01005199 /*
5200 * Reschedule if we are currently running on this runqueue and
5201 * our priority decreased, or if we are not currently running on
5202 * this runqueue and our priority is higher than the current's
5203 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005204 if (rq->curr == p) {
Steven Rostedtcb469842008-01-25 21:08:22 +01005205 if (p->prio > oldprio)
5206 resched_task(rq->curr);
5207 } else
Peter Zijlstra15afe092008-09-20 23:38:02 +02005208 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005209}
5210
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005211static void switched_from_fair(struct rq *rq, struct task_struct *p)
5212{
5213 struct sched_entity *se = &p->se;
5214 struct cfs_rq *cfs_rq = cfs_rq_of(se);
5215
5216 /*
5217 * Ensure the task's vruntime is normalized, so that when its
5218 * switched back to the fair class the enqueue_entity(.flags=0) will
5219 * do the right thing.
5220 *
5221 * If it was on_rq, then the dequeue_entity(.flags=0) will already
5222 * have normalized the vruntime, if it was !on_rq, then only when
5223 * the task is sleeping will it still have non-normalized vruntime.
5224 */
5225 if (!se->on_rq && p->state != TASK_RUNNING) {
5226 /*
5227 * Fix up our vruntime so that the current sleep doesn't
5228 * cause 'unlimited' sleep bonus.
5229 */
5230 place_entity(cfs_rq, se, 0);
5231 se->vruntime -= cfs_rq->min_vruntime;
5232 }
5233}
5234
Steven Rostedtcb469842008-01-25 21:08:22 +01005235/*
5236 * We switched to the sched_fair class.
5237 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005238static void switched_to_fair(struct rq *rq, struct task_struct *p)
Steven Rostedtcb469842008-01-25 21:08:22 +01005239{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005240 if (!p->se.on_rq)
5241 return;
5242
Steven Rostedtcb469842008-01-25 21:08:22 +01005243 /*
5244 * We were most likely switched from sched_rt, so
5245 * kick off the schedule if running, otherwise just see
5246 * if we can still preempt the current task.
5247 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005248 if (rq->curr == p)
Steven Rostedtcb469842008-01-25 21:08:22 +01005249 resched_task(rq->curr);
5250 else
Peter Zijlstra15afe092008-09-20 23:38:02 +02005251 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005252}
5253
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005254/* Account for a task changing its policy or group.
5255 *
5256 * This routine is mostly called to set cfs_rq->curr field when a task
5257 * migrates between groups/classes.
5258 */
5259static void set_curr_task_fair(struct rq *rq)
5260{
5261 struct sched_entity *se = &rq->curr->se;
5262
Paul Turnerec12cb72011-07-21 09:43:30 -07005263 for_each_sched_entity(se) {
5264 struct cfs_rq *cfs_rq = cfs_rq_of(se);
5265
5266 set_next_entity(cfs_rq, se);
5267 /* ensure bandwidth has been allocated on our new cfs_rq */
5268 account_cfs_rq_runtime(cfs_rq, 0);
5269 }
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005270}
5271
Peter Zijlstra029632f2011-10-25 10:00:11 +02005272void init_cfs_rq(struct cfs_rq *cfs_rq)
5273{
5274 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra029632f2011-10-25 10:00:11 +02005275 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
5276#ifndef CONFIG_64BIT
5277 cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
5278#endif
5279}
5280
Peter Zijlstra810b3812008-02-29 15:21:01 -05005281#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02005282static void task_move_group_fair(struct task_struct *p, int on_rq)
Peter Zijlstra810b3812008-02-29 15:21:01 -05005283{
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02005284 /*
5285 * If the task was not on the rq at the time of this cgroup movement
5286 * it must have been asleep, sleeping tasks keep their ->vruntime
5287 * absolute on their old rq until wakeup (needed for the fair sleeper
5288 * bonus in place_entity()).
5289 *
5290 * If it was on the rq, we've just 'preempted' it, which does convert
5291 * ->vruntime to a relative base.
5292 *
5293 * Make sure both cases convert their relative position when migrating
5294 * to another cgroup's rq. This does somewhat interfere with the
5295 * fair sleeper stuff for the first placement, but who cares.
5296 */
Daisuke Nishimura7ceff012011-12-15 14:36:07 +09005297 /*
5298 * When !on_rq, vruntime of the task has usually NOT been normalized.
5299 * But there are some cases where it has already been normalized:
5300 *
5301 * - Moving a forked child which is waiting for being woken up by
5302 * wake_up_new_task().
Daisuke Nishimura62af3782011-12-15 14:37:41 +09005303 * - Moving a task which has been woken up by try_to_wake_up() and
5304 * waiting for actually being woken up by sched_ttwu_pending().
Daisuke Nishimura7ceff012011-12-15 14:36:07 +09005305 *
5306 * To prevent boost or penalty in the new cfs_rq caused by delta
5307 * min_vruntime between the two cfs_rqs, we skip vruntime adjustment.
5308 */
Daisuke Nishimura62af3782011-12-15 14:37:41 +09005309 if (!on_rq && (!p->se.sum_exec_runtime || p->state == TASK_WAKING))
Daisuke Nishimura7ceff012011-12-15 14:36:07 +09005310 on_rq = 1;
5311
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01005312 if (!on_rq)
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02005313 p->se.vruntime -= cfs_rq_of(&p->se)->min_vruntime;
5314 set_task_rq(p, task_cpu(p));
5315 if (!on_rq)
5316 p->se.vruntime += cfs_rq_of(&p->se)->min_vruntime;
Peter Zijlstra810b3812008-02-29 15:21:01 -05005317}
Peter Zijlstra029632f2011-10-25 10:00:11 +02005318
5319void free_fair_sched_group(struct task_group *tg)
5320{
5321 int i;
5322
5323 destroy_cfs_bandwidth(tg_cfs_bandwidth(tg));
5324
5325 for_each_possible_cpu(i) {
5326 if (tg->cfs_rq)
5327 kfree(tg->cfs_rq[i]);
5328 if (tg->se)
5329 kfree(tg->se[i]);
5330 }
5331
5332 kfree(tg->cfs_rq);
5333 kfree(tg->se);
5334}
5335
5336int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
5337{
5338 struct cfs_rq *cfs_rq;
5339 struct sched_entity *se;
5340 int i;
5341
5342 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
5343 if (!tg->cfs_rq)
5344 goto err;
5345 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
5346 if (!tg->se)
5347 goto err;
5348
5349 tg->shares = NICE_0_LOAD;
5350
5351 init_cfs_bandwidth(tg_cfs_bandwidth(tg));
5352
5353 for_each_possible_cpu(i) {
5354 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
5355 GFP_KERNEL, cpu_to_node(i));
5356 if (!cfs_rq)
5357 goto err;
5358
5359 se = kzalloc_node(sizeof(struct sched_entity),
5360 GFP_KERNEL, cpu_to_node(i));
5361 if (!se)
5362 goto err_free_rq;
5363
5364 init_cfs_rq(cfs_rq);
5365 init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]);
5366 }
5367
5368 return 1;
5369
5370err_free_rq:
5371 kfree(cfs_rq);
5372err:
5373 return 0;
5374}
5375
5376void unregister_fair_sched_group(struct task_group *tg, int cpu)
5377{
5378 struct rq *rq = cpu_rq(cpu);
5379 unsigned long flags;
5380
5381 /*
5382 * Only empty task groups can be destroyed; so we can speculatively
5383 * check on_list without danger of it being re-added.
5384 */
5385 if (!tg->cfs_rq[cpu]->on_list)
5386 return;
5387
5388 raw_spin_lock_irqsave(&rq->lock, flags);
5389 list_del_leaf_cfs_rq(tg->cfs_rq[cpu]);
5390 raw_spin_unlock_irqrestore(&rq->lock, flags);
5391}
5392
5393void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
5394 struct sched_entity *se, int cpu,
5395 struct sched_entity *parent)
5396{
5397 struct rq *rq = cpu_rq(cpu);
5398
5399 cfs_rq->tg = tg;
5400 cfs_rq->rq = rq;
5401#ifdef CONFIG_SMP
5402 /* allow initial update_cfs_load() to truncate */
5403 cfs_rq->load_stamp = 1;
Peter Zijlstra810b3812008-02-29 15:21:01 -05005404#endif
Peter Zijlstra029632f2011-10-25 10:00:11 +02005405 init_cfs_rq_runtime(cfs_rq);
5406
5407 tg->cfs_rq[cpu] = cfs_rq;
5408 tg->se[cpu] = se;
5409
5410 /* se could be NULL for root_task_group */
5411 if (!se)
5412 return;
5413
5414 if (!parent)
5415 se->cfs_rq = &rq->cfs;
5416 else
5417 se->cfs_rq = parent->my_q;
5418
5419 se->my_q = cfs_rq;
5420 update_load_set(&se->load, 0);
5421 se->parent = parent;
5422}
5423
5424static DEFINE_MUTEX(shares_mutex);
5425
5426int sched_group_set_shares(struct task_group *tg, unsigned long shares)
5427{
5428 int i;
5429 unsigned long flags;
5430
5431 /*
5432 * We can't change the weight of the root cgroup.
5433 */
5434 if (!tg->se[0])
5435 return -EINVAL;
5436
5437 shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES));
5438
5439 mutex_lock(&shares_mutex);
5440 if (tg->shares == shares)
5441 goto done;
5442
5443 tg->shares = shares;
5444 for_each_possible_cpu(i) {
5445 struct rq *rq = cpu_rq(i);
5446 struct sched_entity *se;
5447
5448 se = tg->se[i];
5449 /* Propagate contribution to hierarchy */
5450 raw_spin_lock_irqsave(&rq->lock, flags);
5451 for_each_sched_entity(se)
5452 update_cfs_shares(group_cfs_rq(se));
5453 raw_spin_unlock_irqrestore(&rq->lock, flags);
5454 }
5455
5456done:
5457 mutex_unlock(&shares_mutex);
5458 return 0;
5459}
5460#else /* CONFIG_FAIR_GROUP_SCHED */
5461
5462void free_fair_sched_group(struct task_group *tg) { }
5463
5464int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
5465{
5466 return 1;
5467}
5468
5469void unregister_fair_sched_group(struct task_group *tg, int cpu) { }
5470
5471#endif /* CONFIG_FAIR_GROUP_SCHED */
5472
Peter Zijlstra810b3812008-02-29 15:21:01 -05005473
H Hartley Sweeten6d686f42010-01-13 20:21:52 -07005474static unsigned int get_rr_interval_fair(struct rq *rq, struct task_struct *task)
Peter Williams0d721ce2009-09-21 01:31:53 +00005475{
5476 struct sched_entity *se = &task->se;
Peter Williams0d721ce2009-09-21 01:31:53 +00005477 unsigned int rr_interval = 0;
5478
5479 /*
5480 * Time slice is 0 for SCHED_OTHER tasks that are on an otherwise
5481 * idle runqueue:
5482 */
Peter Williams0d721ce2009-09-21 01:31:53 +00005483 if (rq->cfs.load.weight)
5484 rr_interval = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Peter Williams0d721ce2009-09-21 01:31:53 +00005485
5486 return rr_interval;
5487}
5488
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005489/*
5490 * All the scheduling class methods:
5491 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02005492const struct sched_class fair_sched_class = {
Ingo Molnar5522d5d2007-10-15 17:00:12 +02005493 .next = &idle_sched_class,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005494 .enqueue_task = enqueue_task_fair,
5495 .dequeue_task = dequeue_task_fair,
5496 .yield_task = yield_task_fair,
Mike Galbraithd95f4122011-02-01 09:50:51 -05005497 .yield_to_task = yield_to_task_fair,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005498
Ingo Molnar2e09bf52007-10-15 17:00:05 +02005499 .check_preempt_curr = check_preempt_wakeup,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005500
5501 .pick_next_task = pick_next_task_fair,
5502 .put_prev_task = put_prev_task_fair,
5503
Peter Williams681f3e62007-10-24 18:23:51 +02005504#ifdef CONFIG_SMP
Li Zefan4ce72a22008-10-22 15:25:26 +08005505 .select_task_rq = select_task_rq_fair,
5506
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005507 .rq_online = rq_online_fair,
5508 .rq_offline = rq_offline_fair,
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01005509
5510 .task_waking = task_waking_fair,
Peter Williams681f3e62007-10-24 18:23:51 +02005511#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005512
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005513 .set_curr_task = set_curr_task_fair,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005514 .task_tick = task_tick_fair,
Peter Zijlstracd29fe62009-11-27 17:32:46 +01005515 .task_fork = task_fork_fair,
Steven Rostedtcb469842008-01-25 21:08:22 +01005516
5517 .prio_changed = prio_changed_fair,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005518 .switched_from = switched_from_fair,
Steven Rostedtcb469842008-01-25 21:08:22 +01005519 .switched_to = switched_to_fair,
Peter Zijlstra810b3812008-02-29 15:21:01 -05005520
Peter Williams0d721ce2009-09-21 01:31:53 +00005521 .get_rr_interval = get_rr_interval_fair,
5522
Peter Zijlstra810b3812008-02-29 15:21:01 -05005523#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02005524 .task_move_group = task_move_group_fair,
Peter Zijlstra810b3812008-02-29 15:21:01 -05005525#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005526};
5527
5528#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra029632f2011-10-25 10:00:11 +02005529void print_cfs_stats(struct seq_file *m, int cpu)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005530{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005531 struct cfs_rq *cfs_rq;
5532
Peter Zijlstra5973e5b2008-01-25 21:08:34 +01005533 rcu_read_lock();
Ingo Molnarc3b64f12007-08-09 11:16:51 +02005534 for_each_leaf_cfs_rq(cpu_rq(cpu), cfs_rq)
Ingo Molnar5cef9ec2007-08-09 11:16:47 +02005535 print_cfs_rq(m, cpu, cfs_rq);
Peter Zijlstra5973e5b2008-01-25 21:08:34 +01005536 rcu_read_unlock();
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005537}
5538#endif
Peter Zijlstra029632f2011-10-25 10:00:11 +02005539
5540__init void init_sched_fair_class(void)
5541{
5542#ifdef CONFIG_SMP
5543 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
5544
5545#ifdef CONFIG_NO_HZ
Diwakar Tundlam554ceca2012-03-07 14:44:26 -08005546 nohz.next_balance = jiffies;
Peter Zijlstra029632f2011-10-25 10:00:11 +02005547 zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
Suresh Siddha71325962012-01-19 18:28:57 -08005548 cpu_notifier(sched_ilb_notifier, 0);
Peter Zijlstra029632f2011-10-25 10:00:11 +02005549#endif
5550#endif /* SMP */
5551
5552}