blob: 846f50bd0c0bb5d3a9ee9e27cd50dcbcadfacb4e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02002/*
3 * Completely Fair Scheduling (CFS) Class (SCHED_NORMAL/SCHED_BATCH)
4 *
5 * Copyright (C) 2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
6 *
7 * Interactivity improvements by Mike Galbraith
8 * (C) 2007 Mike Galbraith <efault@gmx.de>
9 *
10 * Various enhancements by Dmitry Adamushko.
11 * (C) 2007 Dmitry Adamushko <dmitry.adamushko@gmail.com>
12 *
13 * Group scheduling enhancements by Srivatsa Vaddagiri
14 * Copyright IBM Corporation, 2007
15 * Author: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
16 *
17 * Scaled math optimizations by Thomas Gleixner
18 * Copyright (C) 2007, Thomas Gleixner <tglx@linutronix.de>
Peter Zijlstra21805082007-08-25 18:41:53 +020019 *
20 * Adaptive scheduling granularity, math enhancements by Peter Zijlstra
Peter Zijlstra90eec102015-11-16 11:08:45 +010021 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020022 */
Ingo Molnar325ea102018-03-03 12:20:47 +010023#include "sched.h"
Peter Zijlstra029632f2011-10-25 10:00:11 +020024
25#include <trace/events/sched.h>
26
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020027/*
Peter Zijlstra21805082007-08-25 18:41:53 +020028 * Targeted preemption latency for CPU-bound tasks:
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020029 *
Peter Zijlstra21805082007-08-25 18:41:53 +020030 * NOTE: this latency value is not the same as the concept of
Ingo Molnard274a4c2007-10-15 17:00:14 +020031 * 'timeslice length' - timeslices in CFS are of variable length
32 * and have no persistent notion like in traditional, time-slice
33 * based scheduling concepts.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020034 *
Ingo Molnard274a4c2007-10-15 17:00:14 +020035 * (to see the precise effective timeslice length of your workload,
36 * run vmstat and monitor the context-switches (cs) field)
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010037 *
38 * (default: 6ms * (1 + ilog(ncpus)), units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020039 */
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010040unsigned int sysctl_sched_latency = 6000000ULL;
Muchun Songed8885a2018-11-10 15:52:02 +080041static unsigned int normalized_sysctl_sched_latency = 6000000ULL;
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020042
43/*
Christian Ehrhardt1983a922009-11-30 12:16:47 +010044 * The initial- and re-scaling of tunables is configurable
Christian Ehrhardt1983a922009-11-30 12:16:47 +010045 *
46 * Options are:
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010047 *
48 * SCHED_TUNABLESCALING_NONE - unscaled, always *1
49 * SCHED_TUNABLESCALING_LOG - scaled logarithmical, *1+ilog(ncpus)
50 * SCHED_TUNABLESCALING_LINEAR - scaled linear, *ncpus
51 *
52 * (default SCHED_TUNABLESCALING_LOG = *(1+ilog(ncpus))
Christian Ehrhardt1983a922009-11-30 12:16:47 +010053 */
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010054enum sched_tunable_scaling sysctl_sched_tunable_scaling = SCHED_TUNABLESCALING_LOG;
Christian Ehrhardt1983a922009-11-30 12:16:47 +010055
56/*
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010057 * Minimal preemption granularity for CPU-bound tasks:
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010058 *
Takuya Yoshikawa864616e2010-10-14 16:09:13 +090059 * (default: 0.75 msec * (1 + ilog(ncpus)), units: nanoseconds)
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010060 */
Muchun Songed8885a2018-11-10 15:52:02 +080061unsigned int sysctl_sched_min_granularity = 750000ULL;
62static unsigned int normalized_sysctl_sched_min_granularity = 750000ULL;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010063
64/*
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010065 * This value is kept at sysctl_sched_latency/sysctl_sched_min_granularity
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010066 */
Ingo Molnar0bf377b2010-09-12 08:14:52 +020067static unsigned int sched_nr_latency = 8;
Peter Zijlstrab2be5e92007-11-09 22:39:37 +010068
69/*
Mike Galbraith2bba22c2009-09-09 15:41:37 +020070 * After fork, child runs first. If set to 0 (default) then
Ingo Molnar2bd8e6d2007-10-15 17:00:02 +020071 * parent will (try to) run first.
72 */
Mike Galbraith2bba22c2009-09-09 15:41:37 +020073unsigned int sysctl_sched_child_runs_first __read_mostly;
Peter Zijlstra21805082007-08-25 18:41:53 +020074
75/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020076 * SCHED_OTHER wake-up granularity.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020077 *
78 * This option delays the preemption effects of decoupled workloads
79 * and reduces their over-scheduling. Synchronous workloads will still
80 * have immediate wakeup/sleep latencies.
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010081 *
82 * (default: 1 msec * (1 + ilog(ncpus)), units: nanoseconds)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020083 */
Muchun Songed8885a2018-11-10 15:52:02 +080084unsigned int sysctl_sched_wakeup_granularity = 1000000UL;
85static unsigned int normalized_sysctl_sched_wakeup_granularity = 1000000UL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020086
Ingo Molnar2b4d5b22016-11-23 07:37:00 +010087const_debug unsigned int sysctl_sched_migration_cost = 500000UL;
Ingo Molnarda84d962007-10-15 17:00:18 +020088
Tim Chenafe06ef2016-11-22 12:23:53 -080089#ifdef CONFIG_SMP
90/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +010091 * For asym packing, by default the lower numbered CPU has higher priority.
Tim Chenafe06ef2016-11-22 12:23:53 -080092 */
93int __weak arch_asym_cpu_priority(int cpu)
94{
95 return -cpu;
96}
Olof Johansson6d101ba2018-11-25 14:41:05 -080097
98/*
Viresh Kumar60e17f52019-06-04 12:31:52 +053099 * The margin used when comparing utilization with CPU capacity.
Olof Johansson6d101ba2018-11-25 14:41:05 -0800100 *
101 * (default: ~20%)
102 */
Viresh Kumar60e17f52019-06-04 12:31:52 +0530103#define fits_capacity(cap, max) ((cap) * 1280 < (max) * 1024)
104
Tim Chenafe06ef2016-11-22 12:23:53 -0800105#endif
106
Paul Turnerec12cb72011-07-21 09:43:30 -0700107#ifdef CONFIG_CFS_BANDWIDTH
108/*
109 * Amount of runtime to allocate from global (tg) to local (per-cfs_rq) pool
110 * each time a cfs_rq requests quota.
111 *
112 * Note: in the case that the slice exceeds the runtime remaining (either due
113 * to consumption or the quota being specified to be smaller than the slice)
114 * we will always only issue the remaining available time.
115 *
Ingo Molnar2b4d5b22016-11-23 07:37:00 +0100116 * (default: 5 msec, units: microseconds)
117 */
118unsigned int sysctl_sched_cfs_bandwidth_slice = 5000UL;
Paul Turnerec12cb72011-07-21 09:43:30 -0700119#endif
120
Paul Gortmaker85276322013-04-19 15:10:50 -0400121static inline void update_load_add(struct load_weight *lw, unsigned long inc)
122{
123 lw->weight += inc;
124 lw->inv_weight = 0;
125}
126
127static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
128{
129 lw->weight -= dec;
130 lw->inv_weight = 0;
131}
132
133static inline void update_load_set(struct load_weight *lw, unsigned long w)
134{
135 lw->weight = w;
136 lw->inv_weight = 0;
137}
138
Peter Zijlstra029632f2011-10-25 10:00:11 +0200139/*
140 * Increase the granularity value when there are more CPUs,
141 * because with more CPUs the 'effective latency' as visible
142 * to users decreases. But the relationship is not linear,
143 * so pick a second-best guess by going with the log2 of the
144 * number of CPUs.
145 *
146 * This idea comes from the SD scheduler of Con Kolivas:
147 */
Nicholas Mc Guire58ac93e2015-05-15 21:05:42 +0200148static unsigned int get_update_sysctl_factor(void)
Peter Zijlstra029632f2011-10-25 10:00:11 +0200149{
Nicholas Mc Guire58ac93e2015-05-15 21:05:42 +0200150 unsigned int cpus = min_t(unsigned int, num_online_cpus(), 8);
Peter Zijlstra029632f2011-10-25 10:00:11 +0200151 unsigned int factor;
152
153 switch (sysctl_sched_tunable_scaling) {
154 case SCHED_TUNABLESCALING_NONE:
155 factor = 1;
156 break;
157 case SCHED_TUNABLESCALING_LINEAR:
158 factor = cpus;
159 break;
160 case SCHED_TUNABLESCALING_LOG:
161 default:
162 factor = 1 + ilog2(cpus);
163 break;
164 }
165
166 return factor;
167}
168
169static void update_sysctl(void)
170{
171 unsigned int factor = get_update_sysctl_factor();
172
173#define SET_SYSCTL(name) \
174 (sysctl_##name = (factor) * normalized_sysctl_##name)
175 SET_SYSCTL(sched_min_granularity);
176 SET_SYSCTL(sched_latency);
177 SET_SYSCTL(sched_wakeup_granularity);
178#undef SET_SYSCTL
179}
180
181void sched_init_granularity(void)
182{
183 update_sysctl();
184}
185
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100186#define WMULT_CONST (~0U)
Peter Zijlstra029632f2011-10-25 10:00:11 +0200187#define WMULT_SHIFT 32
188
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100189static void __update_inv_weight(struct load_weight *lw)
Peter Zijlstra029632f2011-10-25 10:00:11 +0200190{
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100191 unsigned long w;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200192
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100193 if (likely(lw->inv_weight))
194 return;
195
196 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;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200202 else
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100203 lw->inv_weight = WMULT_CONST / w;
204}
Peter Zijlstra029632f2011-10-25 10:00:11 +0200205
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100206/*
207 * delta_exec * weight / lw.weight
208 * OR
209 * (delta_exec * (weight * lw->inv_weight)) >> WMULT_SHIFT
210 *
Yuyang Du1c3de5e2016-03-30 07:07:51 +0800211 * Either weight := NICE_0_LOAD and lw \e sched_prio_to_wmult[], in which case
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100212 * we're guaranteed shift stays positive because inv_weight is guaranteed to
213 * fit 32 bits, and NICE_0_LOAD gives another 10 bits; therefore shift >= 22.
214 *
215 * Or, weight =< lw.weight (because lw.weight is the runqueue weight), thus
216 * weight/lw.weight <= 1, and therefore our shift will also be positive.
217 */
218static u64 __calc_delta(u64 delta_exec, unsigned long weight, struct load_weight *lw)
219{
220 u64 fact = scale_load_down(weight);
221 int shift = WMULT_SHIFT;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200222
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100223 __update_inv_weight(lw);
224
225 if (unlikely(fact >> 32)) {
226 while (fact >> 32) {
227 fact >>= 1;
228 shift--;
229 }
Peter Zijlstra029632f2011-10-25 10:00:11 +0200230 }
231
Peter Zijlstra2eeb01a2019-11-08 14:15:59 +0100232 fact = mul_u32_u32(fact, lw->inv_weight);
Peter Zijlstra029632f2011-10-25 10:00:11 +0200233
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100234 while (fact >> 32) {
235 fact >>= 1;
236 shift--;
237 }
238
239 return mul_u64_u32_shr(delta_exec, fact, shift);
Peter Zijlstra029632f2011-10-25 10:00:11 +0200240}
241
242
243const struct sched_class fair_sched_class;
Peter Zijlstraa4c2f002008-10-17 19:27:03 +0200244
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200245/**************************************************************
246 * CFS operations on generic schedulable entities:
247 */
248
249#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra8f488942009-07-24 12:25:30 +0200250static inline struct task_struct *task_of(struct sched_entity *se)
251{
Peter Zijlstra9148a3a2016-09-20 22:34:51 +0200252 SCHED_WARN_ON(!entity_is_task(se));
Peter Zijlstra8f488942009-07-24 12:25:30 +0200253 return container_of(se, struct task_struct, se);
254}
255
Peter Zijlstrab7581492008-04-19 19:45:00 +0200256/* Walk up scheduling entities hierarchy */
257#define for_each_sched_entity(se) \
258 for (; se; se = se->parent)
259
260static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
261{
262 return p->se.cfs_rq;
263}
264
265/* runqueue on which this entity is (to be) queued */
266static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
267{
268 return se->cfs_rq;
269}
270
271/* runqueue "owned" by this group */
272static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
273{
274 return grp->my_q;
275}
276
Qais Yousef3c93a0c2019-06-04 12:14:55 +0100277static inline void cfs_rq_tg_path(struct cfs_rq *cfs_rq, char *path, int len)
278{
279 if (!path)
280 return;
281
282 if (cfs_rq && task_group_is_autogroup(cfs_rq->tg))
283 autogroup_path(cfs_rq->tg, path, len);
284 else if (cfs_rq && cfs_rq->tg->css.cgroup)
285 cgroup_path(cfs_rq->tg->css.cgroup, path, len);
286 else
287 strlcpy(path, "(null)", len);
288}
289
Vincent Guittotf6783312019-01-30 06:22:47 +0100290static inline bool list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800291{
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100292 struct rq *rq = rq_of(cfs_rq);
293 int cpu = cpu_of(rq);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800294
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100295 if (cfs_rq->on_list)
Vincent Guittotf6783312019-01-30 06:22:47 +0100296 return rq->tmp_alone_branch == &rq->leaf_cfs_rq_list;
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100297
298 cfs_rq->on_list = 1;
299
300 /*
301 * Ensure we either appear before our parent (if already
302 * enqueued) or force our parent to appear after us when it is
303 * enqueued. The fact that we always enqueue bottom-up
304 * reduces this to two cases and a special case for the root
305 * cfs_rq. Furthermore, it also means that we will always reset
306 * tmp_alone_branch either when the branch is connected
307 * to a tree or when we reach the top of the tree
308 */
309 if (cfs_rq->tg->parent &&
310 cfs_rq->tg->parent->cfs_rq[cpu]->on_list) {
311 /*
312 * If parent is already on the list, we add the child
313 * just before. Thanks to circular linked property of
314 * the list, this means to put the child at the tail
315 * of the list that starts by parent.
316 */
317 list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list,
318 &(cfs_rq->tg->parent->cfs_rq[cpu]->leaf_cfs_rq_list));
319 /*
320 * The branch is now connected to its tree so we can
321 * reset tmp_alone_branch to the beginning of the
322 * list.
323 */
324 rq->tmp_alone_branch = &rq->leaf_cfs_rq_list;
Vincent Guittotf6783312019-01-30 06:22:47 +0100325 return true;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800326 }
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100327
328 if (!cfs_rq->tg->parent) {
329 /*
330 * cfs rq without parent should be put
331 * at the tail of the list.
332 */
333 list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list,
334 &rq->leaf_cfs_rq_list);
335 /*
336 * We have reach the top of a tree so we can reset
337 * tmp_alone_branch to the beginning of the list.
338 */
339 rq->tmp_alone_branch = &rq->leaf_cfs_rq_list;
Vincent Guittotf6783312019-01-30 06:22:47 +0100340 return true;
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100341 }
342
343 /*
344 * The parent has not already been added so we want to
345 * make sure that it will be put after us.
346 * tmp_alone_branch points to the begin of the branch
347 * where we will add parent.
348 */
349 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, rq->tmp_alone_branch);
350 /*
351 * update tmp_alone_branch to points to the new begin
352 * of the branch
353 */
354 rq->tmp_alone_branch = &cfs_rq->leaf_cfs_rq_list;
Vincent Guittotf6783312019-01-30 06:22:47 +0100355 return false;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800356}
357
358static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
359{
360 if (cfs_rq->on_list) {
Vincent Guittot31bc6ae2019-02-06 17:14:21 +0100361 struct rq *rq = rq_of(cfs_rq);
362
363 /*
364 * With cfs_rq being unthrottled/throttled during an enqueue,
365 * it can happen the tmp_alone_branch points the a leaf that
366 * we finally want to del. In this case, tmp_alone_branch moves
367 * to the prev element but it will point to rq->leaf_cfs_rq_list
368 * at the end of the enqueue.
369 */
370 if (rq->tmp_alone_branch == &cfs_rq->leaf_cfs_rq_list)
371 rq->tmp_alone_branch = cfs_rq->leaf_cfs_rq_list.prev;
372
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800373 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
374 cfs_rq->on_list = 0;
375 }
376}
377
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100378static inline void assert_list_leaf_cfs_rq(struct rq *rq)
379{
380 SCHED_WARN_ON(rq->tmp_alone_branch != &rq->leaf_cfs_rq_list);
381}
382
Vincent Guittot039ae8b2019-02-06 17:14:22 +0100383/* Iterate thr' all leaf cfs_rq's on a runqueue */
384#define for_each_leaf_cfs_rq_safe(rq, cfs_rq, pos) \
385 list_for_each_entry_safe(cfs_rq, pos, &rq->leaf_cfs_rq_list, \
386 leaf_cfs_rq_list)
Peter Zijlstrab7581492008-04-19 19:45:00 +0200387
388/* Do the two (enqueued) entities belong to the same group ? */
Peter Zijlstrafed14d42012-02-11 06:05:00 +0100389static inline struct cfs_rq *
Peter Zijlstrab7581492008-04-19 19:45:00 +0200390is_same_group(struct sched_entity *se, struct sched_entity *pse)
391{
392 if (se->cfs_rq == pse->cfs_rq)
Peter Zijlstrafed14d42012-02-11 06:05:00 +0100393 return se->cfs_rq;
Peter Zijlstrab7581492008-04-19 19:45:00 +0200394
Peter Zijlstrafed14d42012-02-11 06:05:00 +0100395 return NULL;
Peter Zijlstrab7581492008-04-19 19:45:00 +0200396}
397
398static inline struct sched_entity *parent_entity(struct sched_entity *se)
399{
400 return se->parent;
401}
402
Peter Zijlstra464b7522008-10-24 11:06:15 +0200403static void
404find_matching_se(struct sched_entity **se, struct sched_entity **pse)
405{
406 int se_depth, pse_depth;
407
408 /*
409 * preemption test can be made between sibling entities who are in the
410 * same cfs_rq i.e who have a common parent. Walk up the hierarchy of
411 * both tasks until we find their ancestors who are siblings of common
412 * parent.
413 */
414
415 /* First walk up until both entities are at same depth */
Peter Zijlstrafed14d42012-02-11 06:05:00 +0100416 se_depth = (*se)->depth;
417 pse_depth = (*pse)->depth;
Peter Zijlstra464b7522008-10-24 11:06:15 +0200418
419 while (se_depth > pse_depth) {
420 se_depth--;
421 *se = parent_entity(*se);
422 }
423
424 while (pse_depth > se_depth) {
425 pse_depth--;
426 *pse = parent_entity(*pse);
427 }
428
429 while (!is_same_group(*se, *pse)) {
430 *se = parent_entity(*se);
431 *pse = parent_entity(*pse);
432 }
433}
434
Peter Zijlstra8f488942009-07-24 12:25:30 +0200435#else /* !CONFIG_FAIR_GROUP_SCHED */
436
437static inline struct task_struct *task_of(struct sched_entity *se)
438{
439 return container_of(se, struct task_struct, se);
440}
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200441
Peter Zijlstrab7581492008-04-19 19:45:00 +0200442#define for_each_sched_entity(se) \
443 for (; se; se = NULL)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200444
Peter Zijlstrab7581492008-04-19 19:45:00 +0200445static inline struct cfs_rq *task_cfs_rq(struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200446{
Peter Zijlstrab7581492008-04-19 19:45:00 +0200447 return &task_rq(p)->cfs;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200448}
449
Peter Zijlstrab7581492008-04-19 19:45:00 +0200450static inline struct cfs_rq *cfs_rq_of(struct sched_entity *se)
451{
452 struct task_struct *p = task_of(se);
453 struct rq *rq = task_rq(p);
454
455 return &rq->cfs;
456}
457
458/* runqueue "owned" by this group */
459static inline struct cfs_rq *group_cfs_rq(struct sched_entity *grp)
460{
461 return NULL;
462}
463
Qais Yousef3c93a0c2019-06-04 12:14:55 +0100464static inline void cfs_rq_tg_path(struct cfs_rq *cfs_rq, char *path, int len)
465{
466 if (path)
467 strlcpy(path, "(null)", len);
468}
469
Vincent Guittotf6783312019-01-30 06:22:47 +0100470static inline bool list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800471{
Vincent Guittotf6783312019-01-30 06:22:47 +0100472 return true;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800473}
474
475static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
476{
477}
478
Peter Zijlstra5d299ea2019-01-30 14:41:04 +0100479static inline void assert_list_leaf_cfs_rq(struct rq *rq)
480{
481}
482
Vincent Guittot039ae8b2019-02-06 17:14:22 +0100483#define for_each_leaf_cfs_rq_safe(rq, cfs_rq, pos) \
484 for (cfs_rq = &rq->cfs, pos = NULL; cfs_rq; cfs_rq = pos)
Peter Zijlstrab7581492008-04-19 19:45:00 +0200485
Peter Zijlstrab7581492008-04-19 19:45:00 +0200486static inline struct sched_entity *parent_entity(struct sched_entity *se)
487{
488 return NULL;
489}
490
Peter Zijlstra464b7522008-10-24 11:06:15 +0200491static inline void
492find_matching_se(struct sched_entity **se, struct sched_entity **pse)
493{
494}
495
Peter Zijlstrab7581492008-04-19 19:45:00 +0200496#endif /* CONFIG_FAIR_GROUP_SCHED */
497
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -0700498static __always_inline
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100499void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200500
501/**************************************************************
502 * Scheduling class tree data structure manipulation methods:
503 */
504
Andrei Epure1bf08232013-03-12 21:12:24 +0200505static inline u64 max_vruntime(u64 max_vruntime, u64 vruntime)
Peter Zijlstra02e04312007-10-15 17:00:07 +0200506{
Andrei Epure1bf08232013-03-12 21:12:24 +0200507 s64 delta = (s64)(vruntime - max_vruntime);
Peter Zijlstra368059a2007-10-15 17:00:11 +0200508 if (delta > 0)
Andrei Epure1bf08232013-03-12 21:12:24 +0200509 max_vruntime = vruntime;
Peter Zijlstra02e04312007-10-15 17:00:07 +0200510
Andrei Epure1bf08232013-03-12 21:12:24 +0200511 return max_vruntime;
Peter Zijlstra02e04312007-10-15 17:00:07 +0200512}
513
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200514static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime)
Peter Zijlstrab0ffd242007-10-15 17:00:12 +0200515{
516 s64 delta = (s64)(vruntime - min_vruntime);
517 if (delta < 0)
518 min_vruntime = vruntime;
519
520 return min_vruntime;
521}
522
Fabio Checconi54fdc582009-07-16 12:32:27 +0200523static inline int entity_before(struct sched_entity *a,
524 struct sched_entity *b)
525{
526 return (s64)(a->vruntime - b->vruntime) < 0;
527}
528
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200529static void update_min_vruntime(struct cfs_rq *cfs_rq)
530{
Peter Zijlstrab60205c2016-09-20 21:58:12 +0200531 struct sched_entity *curr = cfs_rq->curr;
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700532 struct rb_node *leftmost = rb_first_cached(&cfs_rq->tasks_timeline);
Peter Zijlstrab60205c2016-09-20 21:58:12 +0200533
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200534 u64 vruntime = cfs_rq->min_vruntime;
535
Peter Zijlstrab60205c2016-09-20 21:58:12 +0200536 if (curr) {
537 if (curr->on_rq)
538 vruntime = curr->vruntime;
539 else
540 curr = NULL;
541 }
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200542
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700543 if (leftmost) { /* non-empty tree */
544 struct sched_entity *se;
545 se = rb_entry(leftmost, struct sched_entity, run_node);
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200546
Peter Zijlstrab60205c2016-09-20 21:58:12 +0200547 if (!curr)
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200548 vruntime = se->vruntime;
549 else
550 vruntime = min_vruntime(vruntime, se->vruntime);
551 }
552
Andrei Epure1bf08232013-03-12 21:12:24 +0200553 /* ensure we never gain time by being placed backwards. */
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200554 cfs_rq->min_vruntime = max_vruntime(cfs_rq->min_vruntime, vruntime);
Peter Zijlstra3fe16982011-04-05 17:23:48 +0200555#ifndef CONFIG_64BIT
556 smp_wmb();
557 cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
558#endif
Peter Zijlstra1af5f732008-10-24 11:06:13 +0200559}
560
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200561/*
562 * Enqueue an entity into the rb-tree:
563 */
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200564static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200565{
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700566 struct rb_node **link = &cfs_rq->tasks_timeline.rb_root.rb_node;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200567 struct rb_node *parent = NULL;
568 struct sched_entity *entry;
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700569 bool leftmost = true;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200570
571 /*
572 * Find the right place in the rbtree:
573 */
574 while (*link) {
575 parent = *link;
576 entry = rb_entry(parent, struct sched_entity, run_node);
577 /*
578 * We dont care about collisions. Nodes with
579 * the same key stay together.
580 */
Stephan Baerwolf2bd2d6f2011-07-20 14:46:59 +0200581 if (entity_before(se, entry)) {
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200582 link = &parent->rb_left;
583 } else {
584 link = &parent->rb_right;
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700585 leftmost = false;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200586 }
587 }
588
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200589 rb_link_node(&se->run_node, parent, link);
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700590 rb_insert_color_cached(&se->run_node,
591 &cfs_rq->tasks_timeline, leftmost);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200592}
593
Ingo Molnar0702e3e2007-10-15 17:00:14 +0200594static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200595{
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700596 rb_erase_cached(&se->run_node, &cfs_rq->tasks_timeline);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200597}
598
Peter Zijlstra029632f2011-10-25 10:00:11 +0200599struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200600{
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700601 struct rb_node *left = rb_first_cached(&cfs_rq->tasks_timeline);
Peter Zijlstraf4b67552008-11-04 21:25:07 +0100602
603 if (!left)
604 return NULL;
605
606 return rb_entry(left, struct sched_entity, run_node);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200607}
608
Rik van Rielac53db52011-02-01 09:51:03 -0500609static struct sched_entity *__pick_next_entity(struct sched_entity *se)
610{
611 struct rb_node *next = rb_next(&se->run_node);
612
613 if (!next)
614 return NULL;
615
616 return rb_entry(next, struct sched_entity, run_node);
617}
618
619#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra029632f2011-10-25 10:00:11 +0200620struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq)
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200621{
Davidlohr Buesobfb06882017-09-08 16:14:55 -0700622 struct rb_node *last = rb_last(&cfs_rq->tasks_timeline.rb_root);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200623
Balbir Singh70eee742008-02-22 13:25:53 +0530624 if (!last)
625 return NULL;
Ingo Molnar7eee3e62008-02-22 10:32:21 +0100626
627 return rb_entry(last, struct sched_entity, run_node);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +0200628}
629
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200630/**************************************************************
631 * Scheduling class statistics methods:
632 */
633
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100634int sched_proc_update_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700635 void __user *buffer, size_t *lenp,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100636 loff_t *ppos)
637{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700638 int ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Nicholas Mc Guire58ac93e2015-05-15 21:05:42 +0200639 unsigned int factor = get_update_sysctl_factor();
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100640
641 if (ret || !write)
642 return ret;
643
644 sched_nr_latency = DIV_ROUND_UP(sysctl_sched_latency,
645 sysctl_sched_min_granularity);
646
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100647#define WRT_SYSCTL(name) \
648 (normalized_sysctl_##name = sysctl_##name / (factor))
649 WRT_SYSCTL(sched_min_granularity);
650 WRT_SYSCTL(sched_latency);
651 WRT_SYSCTL(sched_wakeup_granularity);
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100652#undef WRT_SYSCTL
653
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100654 return 0;
655}
656#endif
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200657
658/*
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200659 * delta /= w
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200660 */
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100661static inline u64 calc_delta_fair(u64 delta, struct sched_entity *se)
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200662{
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200663 if (unlikely(se->load.weight != NICE_0_LOAD))
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100664 delta = __calc_delta(delta, NICE_0_LOAD, &se->load);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200665
666 return delta;
667}
668
669/*
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200670 * The idea is to set a period in which each task runs once.
671 *
Borislav Petkov532b1852012-08-08 16:16:04 +0200672 * When there are too many tasks (sched_nr_latency) we have to stretch
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200673 * this period because otherwise the slices get too small.
674 *
675 * p = (nr <= nl) ? l : l*nr/nl
676 */
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200677static u64 __sched_period(unsigned long nr_running)
678{
Boqun Feng8e2b0bf2015-07-02 22:25:52 +0800679 if (unlikely(nr_running > sched_nr_latency))
680 return nr_running * sysctl_sched_min_granularity;
681 else
682 return sysctl_sched_latency;
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +0200683}
684
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200685/*
686 * We calculate the wall-time slice from the period by taking a part
687 * proportional to the weight.
688 *
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200689 * s = p*P[w/rw]
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200690 */
Peter Zijlstra6d0f0eb2007-10-15 17:00:05 +0200691static u64 sched_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
Peter Zijlstra21805082007-08-25 18:41:53 +0200692{
Mike Galbraith0a582442009-01-02 12:16:42 +0100693 u64 slice = __sched_period(cfs_rq->nr_running + !se->on_rq);
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200694
Mike Galbraith0a582442009-01-02 12:16:42 +0100695 for_each_sched_entity(se) {
Lin Ming6272d682009-01-15 17:17:15 +0100696 struct load_weight *load;
Christian Engelmayer3104bf02009-06-16 10:35:12 +0200697 struct load_weight lw;
Lin Ming6272d682009-01-15 17:17:15 +0100698
699 cfs_rq = cfs_rq_of(se);
700 load = &cfs_rq->load;
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200701
Mike Galbraith0a582442009-01-02 12:16:42 +0100702 if (unlikely(!se->on_rq)) {
Christian Engelmayer3104bf02009-06-16 10:35:12 +0200703 lw = cfs_rq->load;
Mike Galbraith0a582442009-01-02 12:16:42 +0100704
705 update_load_add(&lw, se->load.weight);
706 load = &lw;
707 }
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100708 slice = __calc_delta(slice, se->load.weight, load);
Mike Galbraith0a582442009-01-02 12:16:42 +0100709 }
710 return slice;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200711}
712
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200713/*
Andrei Epure660cc002013-03-11 12:03:20 +0200714 * We calculate the vruntime slice of a to-be-inserted task.
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200715 *
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200716 * vs = s/w
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200717 */
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200718static u64 sched_vslice(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnar647e7ca2007-10-15 17:00:13 +0200719{
Peter Zijlstraf9c0b092008-10-17 19:27:04 +0200720 return calc_delta_fair(sched_slice(cfs_rq, se), se);
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200721}
722
Vincent Guittotc0796292018-06-28 17:45:04 +0200723#include "pelt.h"
Vincent Guittot23127292019-01-23 16:26:53 +0100724#ifdef CONFIG_SMP
Peter Zijlstra283e2ed2017-04-11 11:08:42 +0200725
Morten Rasmussen772bd008c2016-06-22 18:03:13 +0100726static int select_idle_sibling(struct task_struct *p, int prev_cpu, int cpu);
Mel Gormanfb13c7e2013-10-07 11:29:17 +0100727static unsigned long task_h_load(struct task_struct *p);
Morten Rasmussen3b1baa62018-07-04 11:17:40 +0100728static unsigned long capacity_of(int cpu);
Mel Gormanfb13c7e2013-10-07 11:29:17 +0100729
Yuyang Du540247f2015-07-15 08:04:39 +0800730/* Give new sched_entity start runnable values to heavy its load in infant time */
731void init_entity_runnable_average(struct sched_entity *se)
Alex Shia75cdaa2013-06-20 10:18:47 +0800732{
Yuyang Du540247f2015-07-15 08:04:39 +0800733 struct sched_avg *sa = &se->avg;
Alex Shia75cdaa2013-06-20 10:18:47 +0800734
Peter Zijlstraf2079342017-05-12 14:16:30 +0200735 memset(sa, 0, sizeof(*sa));
736
Vincent Guittotb5a9b342016-10-19 14:45:23 +0200737 /*
Ingo Molnardfcb2452018-12-03 10:05:56 +0100738 * Tasks are initialized with full load to be seen as heavy tasks until
Vincent Guittotb5a9b342016-10-19 14:45:23 +0200739 * they get a chance to stabilize to their real load level.
Ingo Molnardfcb2452018-12-03 10:05:56 +0100740 * Group entities are initialized with zero load to reflect the fact that
Vincent Guittotb5a9b342016-10-19 14:45:23 +0200741 * nothing has been attached to the task group yet.
742 */
743 if (entity_is_task(se))
Peter Zijlstra1ea6c462017-05-06 15:59:54 +0200744 sa->runnable_load_avg = sa->load_avg = scale_load_down(se->load.weight);
Peter Zijlstra1ea6c462017-05-06 15:59:54 +0200745
Peter Zijlstraf2079342017-05-12 14:16:30 +0200746 se->runnable_weight = se->load.weight;
747
Yuyang Du9d89c252015-07-15 08:04:37 +0800748 /* when this task enqueue'ed, it will contribute to its cfs_rq's load_avg */
Alex Shia75cdaa2013-06-20 10:18:47 +0800749}
Yuyang Du7ea241a2015-07-15 08:04:42 +0800750
Vincent Guittotdf217912016-11-08 10:53:42 +0100751static void attach_entity_cfs_rq(struct sched_entity *se);
Peter Zijlstra7dc603c2016-06-16 13:29:28 +0200752
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800753/*
754 * With new tasks being created, their initial util_avgs are extrapolated
755 * based on the cfs_rq's current util_avg:
756 *
757 * util_avg = cfs_rq->util_avg / (cfs_rq->load_avg + 1) * se.load.weight
758 *
759 * However, in many cases, the above util_avg does not give a desired
760 * value. Moreover, the sum of the util_avgs may be divergent, such
761 * as when the series is a harmonic series.
762 *
763 * To solve this problem, we also cap the util_avg of successive tasks to
764 * only 1/2 of the left utilization budget:
765 *
Quentin Perret8fe5c5a2018-06-12 12:22:15 +0100766 * util_avg_cap = (cpu_scale - cfs_rq->avg.util_avg) / 2^n
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800767 *
Quentin Perret8fe5c5a2018-06-12 12:22:15 +0100768 * where n denotes the nth task and cpu_scale the CPU capacity.
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800769 *
Quentin Perret8fe5c5a2018-06-12 12:22:15 +0100770 * For example, for a CPU with 1024 of capacity, a simplest series from
771 * the beginning would be like:
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800772 *
773 * task util_avg: 512, 256, 128, 64, 32, 16, 8, ...
774 * cfs_rq util_avg: 512, 768, 896, 960, 992, 1008, 1016, ...
775 *
776 * Finally, that extrapolated util_avg is clamped to the cap (util_avg_cap)
777 * if util_avg > util_avg_cap.
778 */
Dietmar Eggemannd0fe0b92019-01-22 16:25:01 +0000779void post_init_entity_util_avg(struct task_struct *p)
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800780{
Dietmar Eggemannd0fe0b92019-01-22 16:25:01 +0000781 struct sched_entity *se = &p->se;
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800782 struct cfs_rq *cfs_rq = cfs_rq_of(se);
783 struct sched_avg *sa = &se->avg;
Vincent Guittot8ec59c02019-06-17 17:00:17 +0200784 long cpu_scale = arch_scale_cpu_capacity(cpu_of(rq_of(cfs_rq)));
Quentin Perret8fe5c5a2018-06-12 12:22:15 +0100785 long cap = (long)(cpu_scale - cfs_rq->avg.util_avg) / 2;
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800786
787 if (cap > 0) {
788 if (cfs_rq->avg.util_avg != 0) {
789 sa->util_avg = cfs_rq->avg.util_avg * se->load.weight;
790 sa->util_avg /= (cfs_rq->avg.load_avg + 1);
791
792 if (sa->util_avg > cap)
793 sa->util_avg = cap;
794 } else {
795 sa->util_avg = cap;
796 }
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800797 }
Peter Zijlstra7dc603c2016-06-16 13:29:28 +0200798
Dietmar Eggemannd0fe0b92019-01-22 16:25:01 +0000799 if (p->sched_class != &fair_sched_class) {
800 /*
801 * For !fair tasks do:
802 *
803 update_cfs_rq_load_avg(now, cfs_rq);
804 attach_entity_load_avg(cfs_rq, se, 0);
805 switched_from_fair(rq, p);
806 *
807 * such that the next switched_to_fair() has the
808 * expected state.
809 */
810 se->avg.last_update_time = cfs_rq_clock_pelt(cfs_rq);
811 return;
Peter Zijlstra7dc603c2016-06-16 13:29:28 +0200812 }
813
Vincent Guittotdf217912016-11-08 10:53:42 +0100814 attach_entity_cfs_rq(se);
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800815}
816
Peter Zijlstra7dc603c2016-06-16 13:29:28 +0200817#else /* !CONFIG_SMP */
Yuyang Du540247f2015-07-15 08:04:39 +0800818void init_entity_runnable_average(struct sched_entity *se)
Alex Shia75cdaa2013-06-20 10:18:47 +0800819{
820}
Dietmar Eggemannd0fe0b92019-01-22 16:25:01 +0000821void post_init_entity_util_avg(struct task_struct *p)
Yuyang Du2b8c41d2016-03-30 04:30:56 +0800822{
823}
Peter Zijlstra3d30544f2016-06-21 14:27:50 +0200824static void update_tg_load_avg(struct cfs_rq *cfs_rq, int force)
825{
826}
Peter Zijlstra7dc603c2016-06-16 13:29:28 +0200827#endif /* CONFIG_SMP */
Alex Shia75cdaa2013-06-20 10:18:47 +0800828
Peter Zijlstraa7be37a2008-06-27 13:41:11 +0200829/*
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100830 * Update the current task's runtime statistics.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200831 */
Ingo Molnarb7cc0892007-08-09 11:16:47 +0200832static void update_curr(struct cfs_rq *cfs_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200833{
Ingo Molnar429d43b2007-10-15 17:00:03 +0200834 struct sched_entity *curr = cfs_rq->curr;
Frederic Weisbecker78becc22013-04-12 01:51:02 +0200835 u64 now = rq_clock_task(rq_of(cfs_rq));
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100836 u64 delta_exec;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200837
838 if (unlikely(!curr))
839 return;
840
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100841 delta_exec = now - curr->exec_start;
842 if (unlikely((s64)delta_exec <= 0))
Peter Zijlstra34f28ec2008-12-16 08:45:31 +0100843 return;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200844
Ingo Molnar8ebc91d2007-10-15 17:00:03 +0200845 curr->exec_start = now;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100846
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100847 schedstat_set(curr->statistics.exec_max,
848 max(delta_exec, curr->statistics.exec_max));
849
850 curr->sum_exec_runtime += delta_exec;
Josh Poimboeufae928822016-06-17 12:43:24 -0500851 schedstat_add(cfs_rq->exec_clock, delta_exec);
Peter Zijlstra9dbdb152013-11-18 18:27:06 +0100852
853 curr->vruntime += calc_delta_fair(delta_exec, curr);
854 update_min_vruntime(cfs_rq);
855
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100856 if (entity_is_task(curr)) {
857 struct task_struct *curtask = task_of(curr);
858
Ingo Molnarf977bb42009-09-13 18:15:54 +0200859 trace_sched_stat_runtime(curtask, delta_exec, curr->vruntime);
Tejun Heod2cc5ed2017-09-25 08:12:04 -0700860 cgroup_account_cputime(curtask, delta_exec);
Frank Mayharf06febc2008-09-12 09:54:39 -0700861 account_group_exec_runtime(curtask, delta_exec);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +0100862 }
Paul Turnerec12cb72011-07-21 09:43:30 -0700863
864 account_cfs_rq_runtime(cfs_rq, delta_exec);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200865}
866
Stanislaw Gruszka6e998912014-11-12 16:58:44 +0100867static void update_curr_fair(struct rq *rq)
868{
869 update_curr(cfs_rq_of(&rq->curr->se));
870}
871
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200872static inline void
Ingo Molnar5870db52007-08-09 11:16:47 +0200873update_stats_wait_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200874{
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500875 u64 wait_start, prev_wait_start;
876
877 if (!schedstat_enabled())
878 return;
879
880 wait_start = rq_clock(rq_of(cfs_rq));
881 prev_wait_start = schedstat_val(se->statistics.wait_start);
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800882
883 if (entity_is_task(se) && task_on_rq_migrating(task_of(se)) &&
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500884 likely(wait_start > prev_wait_start))
885 wait_start -= prev_wait_start;
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800886
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100887 __schedstat_set(se->statistics.wait_start, wait_start);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200888}
889
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500890static inline void
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800891update_stats_wait_end(struct cfs_rq *cfs_rq, struct sched_entity *se)
892{
893 struct task_struct *p;
Mel Gormancb251762016-02-05 09:08:36 +0000894 u64 delta;
895
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500896 if (!schedstat_enabled())
897 return;
898
899 delta = rq_clock(rq_of(cfs_rq)) - schedstat_val(se->statistics.wait_start);
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800900
901 if (entity_is_task(se)) {
902 p = task_of(se);
903 if (task_on_rq_migrating(p)) {
904 /*
905 * Preserve migrating task's wait time so wait_start
906 * time stamp can be adjusted to accumulate wait time
907 * prior to migration.
908 */
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100909 __schedstat_set(se->statistics.wait_start, delta);
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800910 return;
911 }
912 trace_sched_stat_wait(p, delta);
913 }
914
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100915 __schedstat_set(se->statistics.wait_max,
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500916 max(schedstat_val(se->statistics.wait_max), delta));
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100917 __schedstat_inc(se->statistics.wait_count);
918 __schedstat_add(se->statistics.wait_sum, delta);
919 __schedstat_set(se->statistics.wait_start, 0);
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800920}
Joonwoo Park3ea94de2015-11-12 19:38:54 -0800921
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500922static inline void
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500923update_stats_enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se)
924{
925 struct task_struct *tsk = NULL;
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500926 u64 sleep_start, block_start;
927
928 if (!schedstat_enabled())
929 return;
930
931 sleep_start = schedstat_val(se->statistics.sleep_start);
932 block_start = schedstat_val(se->statistics.block_start);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500933
934 if (entity_is_task(se))
935 tsk = task_of(se);
936
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500937 if (sleep_start) {
938 u64 delta = rq_clock(rq_of(cfs_rq)) - sleep_start;
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500939
940 if ((s64)delta < 0)
941 delta = 0;
942
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500943 if (unlikely(delta > schedstat_val(se->statistics.sleep_max)))
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100944 __schedstat_set(se->statistics.sleep_max, delta);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500945
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100946 __schedstat_set(se->statistics.sleep_start, 0);
947 __schedstat_add(se->statistics.sum_sleep_runtime, delta);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500948
949 if (tsk) {
950 account_scheduler_latency(tsk, delta >> 10, 1);
951 trace_sched_stat_sleep(tsk, delta);
952 }
953 }
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500954 if (block_start) {
955 u64 delta = rq_clock(rq_of(cfs_rq)) - block_start;
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500956
957 if ((s64)delta < 0)
958 delta = 0;
959
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500960 if (unlikely(delta > schedstat_val(se->statistics.block_max)))
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100961 __schedstat_set(se->statistics.block_max, delta);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500962
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100963 __schedstat_set(se->statistics.block_start, 0);
964 __schedstat_add(se->statistics.sum_sleep_runtime, delta);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500965
966 if (tsk) {
967 if (tsk->in_iowait) {
Peter Zijlstra2ed41a52018-01-23 20:34:30 +0100968 __schedstat_add(se->statistics.iowait_sum, delta);
969 __schedstat_inc(se->statistics.iowait_count);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500970 trace_sched_stat_iowait(tsk, delta);
971 }
972
973 trace_sched_stat_blocked(tsk, delta);
974
975 /*
976 * Blocking time is in units of nanosecs, so shift by
977 * 20 to get a milliseconds-range estimation of the
978 * amount of time that the task spent sleeping:
979 */
980 if (unlikely(prof_on == SLEEP_PROFILING)) {
981 profile_hits(SLEEP_PROFILING,
982 (void *)get_wchan(tsk),
983 delta >> 20);
984 }
985 account_scheduler_latency(tsk, delta >> 10, 0);
986 }
987 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200988}
989
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200990/*
991 * Task is being enqueued - update stats:
992 */
Mel Gormancb251762016-02-05 09:08:36 +0000993static inline void
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -0500994update_stats_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200995{
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -0500996 if (!schedstat_enabled())
997 return;
998
Ingo Molnarbf0f6f22007-07-09 18:51:58 +0200999 /*
1000 * Are we enqueueing a waiting task? (for current tasks
1001 * a dequeue/enqueue event is a NOP)
1002 */
Ingo Molnar429d43b2007-10-15 17:00:03 +02001003 if (se != cfs_rq->curr)
Ingo Molnar5870db52007-08-09 11:16:47 +02001004 update_stats_wait_start(cfs_rq, se);
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -05001005
1006 if (flags & ENQUEUE_WAKEUP)
1007 update_stats_enqueue_sleeper(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001008}
1009
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001010static inline void
Mel Gormancb251762016-02-05 09:08:36 +00001011update_stats_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001012{
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05001013
1014 if (!schedstat_enabled())
1015 return;
1016
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001017 /*
1018 * Mark the end of the wait period if dequeueing a
1019 * waiting task:
1020 */
Ingo Molnar429d43b2007-10-15 17:00:03 +02001021 if (se != cfs_rq->curr)
Ingo Molnar9ef0a962007-08-09 11:16:47 +02001022 update_stats_wait_end(cfs_rq, se);
Mel Gormancb251762016-02-05 09:08:36 +00001023
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05001024 if ((flags & DEQUEUE_SLEEP) && entity_is_task(se)) {
1025 struct task_struct *tsk = task_of(se);
Mel Gormancb251762016-02-05 09:08:36 +00001026
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05001027 if (tsk->state & TASK_INTERRUPTIBLE)
Peter Zijlstra2ed41a52018-01-23 20:34:30 +01001028 __schedstat_set(se->statistics.sleep_start,
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05001029 rq_clock(rq_of(cfs_rq)));
1030 if (tsk->state & TASK_UNINTERRUPTIBLE)
Peter Zijlstra2ed41a52018-01-23 20:34:30 +01001031 __schedstat_set(se->statistics.block_start,
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05001032 rq_clock(rq_of(cfs_rq)));
Mel Gormancb251762016-02-05 09:08:36 +00001033 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001034}
1035
1036/*
1037 * We are picking a new current task - update its stats:
1038 */
1039static inline void
Ingo Molnar79303e92007-08-09 11:16:47 +02001040update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001041{
1042 /*
1043 * We are starting a new run period:
1044 */
Frederic Weisbecker78becc22013-04-12 01:51:02 +02001045 se->exec_start = rq_clock_task(rq_of(cfs_rq));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001046}
1047
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02001048/**************************************************
1049 * Scheduling class queueing methods:
1050 */
1051
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001052#ifdef CONFIG_NUMA_BALANCING
1053/*
Mel Gorman598f0ec2013-10-07 11:28:55 +01001054 * Approximate time to scan a full NUMA task in ms. The task scan period is
1055 * calculated based on the tasks virtual memory size and
1056 * numa_balancing_scan_size.
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001057 */
Mel Gorman598f0ec2013-10-07 11:28:55 +01001058unsigned int sysctl_numa_balancing_scan_period_min = 1000;
1059unsigned int sysctl_numa_balancing_scan_period_max = 60000;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02001060
1061/* Portion of address space to scan in MB */
1062unsigned int sysctl_numa_balancing_scan_size = 256;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02001063
Peter Zijlstra4b96a292012-10-25 14:16:47 +02001064/* Scan @scan_size MB every @scan_period after an initial @scan_delay in ms */
1065unsigned int sysctl_numa_balancing_scan_delay = 1000;
1066
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001067struct numa_group {
Elena Reshetovac45a7792019-01-18 14:27:28 +02001068 refcount_t refcount;
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001069
1070 spinlock_t lock; /* nr_tasks, tasks */
1071 int nr_tasks;
1072 pid_t gid;
1073 int active_nodes;
1074
1075 struct rcu_head rcu;
1076 unsigned long total_faults;
1077 unsigned long max_faults_cpu;
1078 /*
1079 * Faults_cpu is used to decide whether memory should move
1080 * towards the CPU. As a consequence, these stats are weighted
1081 * more by CPU use than by memory faults.
1082 */
1083 unsigned long *faults_cpu;
1084 unsigned long faults[0];
1085};
1086
Jann Horncb361d82019-07-16 17:20:47 +02001087/*
1088 * For functions that can be called in multiple contexts that permit reading
1089 * ->numa_group (see struct task_struct for locking rules).
1090 */
1091static struct numa_group *deref_task_numa_group(struct task_struct *p)
1092{
1093 return rcu_dereference_check(p->numa_group, p == current ||
1094 (lockdep_is_held(&task_rq(p)->lock) && !READ_ONCE(p->on_cpu)));
1095}
1096
1097static struct numa_group *deref_curr_numa_group(struct task_struct *p)
1098{
1099 return rcu_dereference_protected(p->numa_group, p == current);
1100}
1101
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001102static inline unsigned long group_faults_priv(struct numa_group *ng);
1103static inline unsigned long group_faults_shared(struct numa_group *ng);
1104
Mel Gorman598f0ec2013-10-07 11:28:55 +01001105static unsigned int task_nr_scan_windows(struct task_struct *p)
1106{
1107 unsigned long rss = 0;
1108 unsigned long nr_scan_pages;
1109
1110 /*
1111 * Calculations based on RSS as non-present and empty pages are skipped
1112 * by the PTE scanner and NUMA hinting faults should be trapped based
1113 * on resident pages
1114 */
1115 nr_scan_pages = sysctl_numa_balancing_scan_size << (20 - PAGE_SHIFT);
1116 rss = get_mm_rss(p->mm);
1117 if (!rss)
1118 rss = nr_scan_pages;
1119
1120 rss = round_up(rss, nr_scan_pages);
1121 return rss / nr_scan_pages;
1122}
1123
1124/* For sanitys sake, never scan more PTEs than MAX_SCAN_WINDOW MB/sec. */
1125#define MAX_SCAN_WINDOW 2560
1126
1127static unsigned int task_scan_min(struct task_struct *p)
1128{
Jason Low316c1608d2015-04-28 13:00:20 -07001129 unsigned int scan_size = READ_ONCE(sysctl_numa_balancing_scan_size);
Mel Gorman598f0ec2013-10-07 11:28:55 +01001130 unsigned int scan, floor;
1131 unsigned int windows = 1;
1132
Kirill Tkhai64192652014-10-16 14:39:37 +04001133 if (scan_size < MAX_SCAN_WINDOW)
1134 windows = MAX_SCAN_WINDOW / scan_size;
Mel Gorman598f0ec2013-10-07 11:28:55 +01001135 floor = 1000 / windows;
1136
1137 scan = sysctl_numa_balancing_scan_period_min / task_nr_scan_windows(p);
1138 return max_t(unsigned int, floor, scan);
1139}
1140
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001141static unsigned int task_scan_start(struct task_struct *p)
1142{
1143 unsigned long smin = task_scan_min(p);
1144 unsigned long period = smin;
Jann Horncb361d82019-07-16 17:20:47 +02001145 struct numa_group *ng;
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001146
1147 /* Scale the maximum scan period with the amount of shared memory. */
Jann Horncb361d82019-07-16 17:20:47 +02001148 rcu_read_lock();
1149 ng = rcu_dereference(p->numa_group);
1150 if (ng) {
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001151 unsigned long shared = group_faults_shared(ng);
1152 unsigned long private = group_faults_priv(ng);
1153
Elena Reshetovac45a7792019-01-18 14:27:28 +02001154 period *= refcount_read(&ng->refcount);
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001155 period *= shared + 1;
1156 period /= private + shared + 1;
1157 }
Jann Horncb361d82019-07-16 17:20:47 +02001158 rcu_read_unlock();
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001159
1160 return max(smin, period);
1161}
1162
Mel Gorman598f0ec2013-10-07 11:28:55 +01001163static unsigned int task_scan_max(struct task_struct *p)
1164{
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001165 unsigned long smin = task_scan_min(p);
1166 unsigned long smax;
Jann Horncb361d82019-07-16 17:20:47 +02001167 struct numa_group *ng;
Mel Gorman598f0ec2013-10-07 11:28:55 +01001168
1169 /* Watch for min being lower than max due to floor calculations */
1170 smax = sysctl_numa_balancing_scan_period_max / task_nr_scan_windows(p);
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001171
1172 /* Scale the maximum scan period with the amount of shared memory. */
Jann Horncb361d82019-07-16 17:20:47 +02001173 ng = deref_curr_numa_group(p);
1174 if (ng) {
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001175 unsigned long shared = group_faults_shared(ng);
1176 unsigned long private = group_faults_priv(ng);
1177 unsigned long period = smax;
1178
Elena Reshetovac45a7792019-01-18 14:27:28 +02001179 period *= refcount_read(&ng->refcount);
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001180 period *= shared + 1;
1181 period /= private + shared + 1;
1182
1183 smax = max(smax, period);
1184 }
1185
Mel Gorman598f0ec2013-10-07 11:28:55 +01001186 return max(smin, smax);
1187}
1188
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01001189static void account_numa_enqueue(struct rq *rq, struct task_struct *p)
1190{
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001191 rq->nr_numa_running += (p->numa_preferred_nid != NUMA_NO_NODE);
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01001192 rq->nr_preferred_running += (p->numa_preferred_nid == task_node(p));
1193}
1194
1195static void account_numa_dequeue(struct rq *rq, struct task_struct *p)
1196{
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001197 rq->nr_numa_running -= (p->numa_preferred_nid != NUMA_NO_NODE);
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01001198 rq->nr_preferred_running -= (p->numa_preferred_nid == task_node(p));
1199}
1200
Rik van Rielbe1e4e72014-01-27 17:03:48 -05001201/* Shared or private faults. */
1202#define NR_NUMA_HINT_FAULT_TYPES 2
1203
1204/* Memory and CPU locality */
1205#define NR_NUMA_HINT_FAULT_STATS (NR_NUMA_HINT_FAULT_TYPES * 2)
1206
1207/* Averaged statistics, and temporary buffers. */
1208#define NR_NUMA_HINT_FAULT_BUCKETS (NR_NUMA_HINT_FAULT_STATS * 2)
1209
Mel Gormane29cf082013-10-07 11:29:22 +01001210pid_t task_numa_group_id(struct task_struct *p)
1211{
Jann Horncb361d82019-07-16 17:20:47 +02001212 struct numa_group *ng;
1213 pid_t gid = 0;
1214
1215 rcu_read_lock();
1216 ng = rcu_dereference(p->numa_group);
1217 if (ng)
1218 gid = ng->gid;
1219 rcu_read_unlock();
1220
1221 return gid;
Mel Gormane29cf082013-10-07 11:29:22 +01001222}
1223
Iulia Manda44dba3d2014-10-31 02:13:31 +02001224/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01001225 * The averaged statistics, shared & private, memory & CPU,
Iulia Manda44dba3d2014-10-31 02:13:31 +02001226 * occupy the first half of the array. The second half of the
1227 * array is for current counters, which are averaged into the
1228 * first set by task_numa_placement.
1229 */
1230static inline int task_faults_idx(enum numa_faults_stats s, int nid, int priv)
Mel Gormanac8e8952013-10-07 11:29:03 +01001231{
Iulia Manda44dba3d2014-10-31 02:13:31 +02001232 return NR_NUMA_HINT_FAULT_TYPES * (s * nr_node_ids + nid) + priv;
Mel Gormanac8e8952013-10-07 11:29:03 +01001233}
1234
1235static inline unsigned long task_faults(struct task_struct *p, int nid)
1236{
Iulia Manda44dba3d2014-10-31 02:13:31 +02001237 if (!p->numa_faults)
Mel Gormanac8e8952013-10-07 11:29:03 +01001238 return 0;
1239
Iulia Manda44dba3d2014-10-31 02:13:31 +02001240 return p->numa_faults[task_faults_idx(NUMA_MEM, nid, 0)] +
1241 p->numa_faults[task_faults_idx(NUMA_MEM, nid, 1)];
Mel Gormanac8e8952013-10-07 11:29:03 +01001242}
1243
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001244static inline unsigned long group_faults(struct task_struct *p, int nid)
1245{
Jann Horncb361d82019-07-16 17:20:47 +02001246 struct numa_group *ng = deref_task_numa_group(p);
1247
1248 if (!ng)
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001249 return 0;
1250
Jann Horncb361d82019-07-16 17:20:47 +02001251 return ng->faults[task_faults_idx(NUMA_MEM, nid, 0)] +
1252 ng->faults[task_faults_idx(NUMA_MEM, nid, 1)];
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001253}
1254
Rik van Riel20e07de2014-01-27 17:03:43 -05001255static inline unsigned long group_faults_cpu(struct numa_group *group, int nid)
1256{
Iulia Manda44dba3d2014-10-31 02:13:31 +02001257 return group->faults_cpu[task_faults_idx(NUMA_MEM, nid, 0)] +
1258 group->faults_cpu[task_faults_idx(NUMA_MEM, nid, 1)];
Rik van Riel20e07de2014-01-27 17:03:43 -05001259}
1260
Rik van Rielb5dd77c2017-07-31 15:28:47 -04001261static inline unsigned long group_faults_priv(struct numa_group *ng)
1262{
1263 unsigned long faults = 0;
1264 int node;
1265
1266 for_each_online_node(node) {
1267 faults += ng->faults[task_faults_idx(NUMA_MEM, node, 1)];
1268 }
1269
1270 return faults;
1271}
1272
1273static inline unsigned long group_faults_shared(struct numa_group *ng)
1274{
1275 unsigned long faults = 0;
1276 int node;
1277
1278 for_each_online_node(node) {
1279 faults += ng->faults[task_faults_idx(NUMA_MEM, node, 0)];
1280 }
1281
1282 return faults;
1283}
1284
Rik van Riel4142c3e2016-01-25 17:07:39 -05001285/*
1286 * A node triggering more than 1/3 as many NUMA faults as the maximum is
1287 * considered part of a numa group's pseudo-interleaving set. Migrations
1288 * between these nodes are slowed down, to allow things to settle down.
1289 */
1290#define ACTIVE_NODE_FRACTION 3
1291
1292static bool numa_is_active_node(int nid, struct numa_group *ng)
1293{
1294 return group_faults_cpu(ng, nid) * ACTIVE_NODE_FRACTION > ng->max_faults_cpu;
1295}
1296
Rik van Riel6c6b1192014-10-17 03:29:52 -04001297/* Handle placement on systems where not all nodes are directly connected. */
1298static unsigned long score_nearby_nodes(struct task_struct *p, int nid,
1299 int maxdist, bool task)
1300{
1301 unsigned long score = 0;
1302 int node;
1303
1304 /*
1305 * All nodes are directly connected, and the same distance
1306 * from each other. No need for fancy placement algorithms.
1307 */
1308 if (sched_numa_topology_type == NUMA_DIRECT)
1309 return 0;
1310
1311 /*
1312 * This code is called for each node, introducing N^2 complexity,
1313 * which should be ok given the number of nodes rarely exceeds 8.
1314 */
1315 for_each_online_node(node) {
1316 unsigned long faults;
1317 int dist = node_distance(nid, node);
1318
1319 /*
1320 * The furthest away nodes in the system are not interesting
1321 * for placement; nid was already counted.
1322 */
1323 if (dist == sched_max_numa_distance || node == nid)
1324 continue;
1325
1326 /*
1327 * On systems with a backplane NUMA topology, compare groups
1328 * of nodes, and move tasks towards the group with the most
1329 * memory accesses. When comparing two nodes at distance
1330 * "hoplimit", only nodes closer by than "hoplimit" are part
1331 * of each group. Skip other nodes.
1332 */
1333 if (sched_numa_topology_type == NUMA_BACKPLANE &&
Srikar Dronamraju0ee7e742018-06-20 22:32:48 +05301334 dist >= maxdist)
Rik van Riel6c6b1192014-10-17 03:29:52 -04001335 continue;
1336
1337 /* Add up the faults from nearby nodes. */
1338 if (task)
1339 faults = task_faults(p, node);
1340 else
1341 faults = group_faults(p, node);
1342
1343 /*
1344 * On systems with a glueless mesh NUMA topology, there are
1345 * no fixed "groups of nodes". Instead, nodes that are not
1346 * directly connected bounce traffic through intermediate
1347 * nodes; a numa_group can occupy any set of nodes.
1348 * The further away a node is, the less the faults count.
1349 * This seems to result in good task placement.
1350 */
1351 if (sched_numa_topology_type == NUMA_GLUELESS_MESH) {
1352 faults *= (sched_max_numa_distance - dist);
1353 faults /= (sched_max_numa_distance - LOCAL_DISTANCE);
1354 }
1355
1356 score += faults;
1357 }
1358
1359 return score;
1360}
1361
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001362/*
1363 * These return the fraction of accesses done by a particular task, or
1364 * task group, on a particular numa node. The group weight is given a
1365 * larger multiplier, in order to group tasks together that are almost
1366 * evenly spread out between numa nodes.
1367 */
Rik van Riel7bd95322014-10-17 03:29:51 -04001368static inline unsigned long task_weight(struct task_struct *p, int nid,
1369 int dist)
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001370{
Rik van Riel7bd95322014-10-17 03:29:51 -04001371 unsigned long faults, total_faults;
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001372
Iulia Manda44dba3d2014-10-31 02:13:31 +02001373 if (!p->numa_faults)
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001374 return 0;
1375
1376 total_faults = p->total_numa_faults;
1377
1378 if (!total_faults)
1379 return 0;
1380
Rik van Riel7bd95322014-10-17 03:29:51 -04001381 faults = task_faults(p, nid);
Rik van Riel6c6b1192014-10-17 03:29:52 -04001382 faults += score_nearby_nodes(p, nid, dist, true);
1383
Rik van Riel7bd95322014-10-17 03:29:51 -04001384 return 1000 * faults / total_faults;
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001385}
1386
Rik van Riel7bd95322014-10-17 03:29:51 -04001387static inline unsigned long group_weight(struct task_struct *p, int nid,
1388 int dist)
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001389{
Jann Horncb361d82019-07-16 17:20:47 +02001390 struct numa_group *ng = deref_task_numa_group(p);
Rik van Riel7bd95322014-10-17 03:29:51 -04001391 unsigned long faults, total_faults;
1392
Jann Horncb361d82019-07-16 17:20:47 +02001393 if (!ng)
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001394 return 0;
1395
Jann Horncb361d82019-07-16 17:20:47 +02001396 total_faults = ng->total_faults;
Rik van Riel7bd95322014-10-17 03:29:51 -04001397
1398 if (!total_faults)
1399 return 0;
1400
1401 faults = group_faults(p, nid);
Rik van Riel6c6b1192014-10-17 03:29:52 -04001402 faults += score_nearby_nodes(p, nid, dist, false);
1403
Rik van Riel7bd95322014-10-17 03:29:51 -04001404 return 1000 * faults / total_faults;
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001405}
1406
Rik van Riel10f39042014-01-27 17:03:44 -05001407bool should_numa_migrate_memory(struct task_struct *p, struct page * page,
1408 int src_nid, int dst_cpu)
1409{
Jann Horncb361d82019-07-16 17:20:47 +02001410 struct numa_group *ng = deref_curr_numa_group(p);
Rik van Riel10f39042014-01-27 17:03:44 -05001411 int dst_nid = cpu_to_node(dst_cpu);
1412 int last_cpupid, this_cpupid;
1413
1414 this_cpupid = cpu_pid_to_cpupid(dst_cpu, current->pid);
Mel Gorman37355bd2018-10-01 11:05:25 +01001415 last_cpupid = page_cpupid_xchg_last(page, this_cpupid);
1416
1417 /*
1418 * Allow first faults or private faults to migrate immediately early in
1419 * the lifetime of a task. The magic number 4 is based on waiting for
1420 * two full passes of the "multi-stage node selection" test that is
1421 * executed below.
1422 */
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001423 if ((p->numa_preferred_nid == NUMA_NO_NODE || p->numa_scan_seq <= 4) &&
Mel Gorman37355bd2018-10-01 11:05:25 +01001424 (cpupid_pid_unset(last_cpupid) || cpupid_match_pid(p, last_cpupid)))
1425 return true;
Rik van Riel10f39042014-01-27 17:03:44 -05001426
1427 /*
1428 * Multi-stage node selection is used in conjunction with a periodic
1429 * migration fault to build a temporal task<->page relation. By using
1430 * a two-stage filter we remove short/unlikely relations.
1431 *
1432 * Using P(p) ~ n_p / n_t as per frequentist probability, we can equate
1433 * a task's usage of a particular page (n_p) per total usage of this
1434 * page (n_t) (in a given time-span) to a probability.
1435 *
1436 * Our periodic faults will sample this probability and getting the
1437 * same result twice in a row, given these samples are fully
1438 * independent, is then given by P(n)^2, provided our sample period
1439 * is sufficiently short compared to the usage pattern.
1440 *
1441 * This quadric squishes small probabilities, making it less likely we
1442 * act on an unlikely task<->page relation.
1443 */
Rik van Riel10f39042014-01-27 17:03:44 -05001444 if (!cpupid_pid_unset(last_cpupid) &&
1445 cpupid_to_nid(last_cpupid) != dst_nid)
1446 return false;
1447
1448 /* Always allow migrate on private faults */
1449 if (cpupid_match_pid(p, last_cpupid))
1450 return true;
1451
1452 /* A shared fault, but p->numa_group has not been set up yet. */
1453 if (!ng)
1454 return true;
1455
1456 /*
Rik van Riel4142c3e2016-01-25 17:07:39 -05001457 * Destination node is much more heavily used than the source
1458 * node? Allow migration.
Rik van Riel10f39042014-01-27 17:03:44 -05001459 */
Rik van Riel4142c3e2016-01-25 17:07:39 -05001460 if (group_faults_cpu(ng, dst_nid) > group_faults_cpu(ng, src_nid) *
1461 ACTIVE_NODE_FRACTION)
Rik van Riel10f39042014-01-27 17:03:44 -05001462 return true;
1463
1464 /*
Rik van Riel4142c3e2016-01-25 17:07:39 -05001465 * Distribute memory according to CPU & memory use on each node,
1466 * with 3/4 hysteresis to avoid unnecessary memory migrations:
1467 *
1468 * faults_cpu(dst) 3 faults_cpu(src)
1469 * --------------- * - > ---------------
1470 * faults_mem(dst) 4 faults_mem(src)
Rik van Riel10f39042014-01-27 17:03:44 -05001471 */
Rik van Riel4142c3e2016-01-25 17:07:39 -05001472 return group_faults_cpu(ng, dst_nid) * group_faults(p, src_nid) * 3 >
1473 group_faults_cpu(ng, src_nid) * group_faults(p, dst_nid) * 4;
Rik van Riel10f39042014-01-27 17:03:44 -05001474}
1475
Vincent Guittot11f10e52019-10-18 15:26:36 +02001476static inline unsigned long cfs_rq_runnable_load_avg(struct cfs_rq *cfs_rq);
1477
1478static unsigned long cpu_runnable_load(struct rq *rq)
1479{
1480 return cfs_rq_runnable_load_avg(&rq->cfs);
1481}
Mel Gormane6628d52013-10-07 11:29:02 +01001482
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001483/* Cached statistics for all CPUs within a node */
Mel Gorman58d081b2013-10-07 11:29:10 +01001484struct numa_stats {
1485 unsigned long load;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001486
1487 /* Total compute capacity of CPUs on a node */
Nicolas Pitre5ef20ca2014-05-26 18:19:34 -04001488 unsigned long compute_capacity;
Mel Gorman58d081b2013-10-07 11:29:10 +01001489};
Mel Gormane6628d52013-10-07 11:29:02 +01001490
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001491/*
1492 * XXX borrowed from update_sg_lb_stats
1493 */
1494static void update_numa_stats(struct numa_stats *ns, int nid)
1495{
Vincent Guittotd90707e2018-08-29 15:19:09 +02001496 int cpu;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001497
1498 memset(ns, 0, sizeof(*ns));
1499 for_each_cpu(cpu, cpumask_of_node(nid)) {
1500 struct rq *rq = cpu_rq(cpu);
1501
Dietmar Eggemanna3df0672019-06-18 14:23:10 +02001502 ns->load += cpu_runnable_load(rq);
Nicolas Pitreced549f2014-05-26 18:19:38 -04001503 ns->compute_capacity += capacity_of(cpu);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001504 }
1505
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001506}
1507
Mel Gorman58d081b2013-10-07 11:29:10 +01001508struct task_numa_env {
1509 struct task_struct *p;
1510
1511 int src_cpu, src_nid;
1512 int dst_cpu, dst_nid;
1513
1514 struct numa_stats src_stats, dst_stats;
1515
Wanpeng Li40ea2b42013-12-05 19:10:17 +08001516 int imbalance_pct;
Rik van Riel7bd95322014-10-17 03:29:51 -04001517 int dist;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001518
1519 struct task_struct *best_task;
1520 long best_imp;
Mel Gorman58d081b2013-10-07 11:29:10 +01001521 int best_cpu;
1522};
1523
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001524static void task_numa_assign(struct task_numa_env *env,
1525 struct task_struct *p, long imp)
1526{
Srikar Dronamrajua4739ec2018-09-21 23:18:56 +05301527 struct rq *rq = cpu_rq(env->dst_cpu);
1528
1529 /* Bail out if run-queue part of active NUMA balance. */
1530 if (xchg(&rq->numa_migrate_on, 1))
1531 return;
1532
1533 /*
1534 * Clear previous best_cpu/rq numa-migrate flag, since task now
1535 * found a better CPU to move/swap.
1536 */
1537 if (env->best_cpu != -1) {
1538 rq = cpu_rq(env->best_cpu);
1539 WRITE_ONCE(rq->numa_migrate_on, 0);
1540 }
1541
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001542 if (env->best_task)
1543 put_task_struct(env->best_task);
Oleg Nesterovbac78572016-05-18 21:57:33 +02001544 if (p)
1545 get_task_struct(p);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001546
1547 env->best_task = p;
1548 env->best_imp = imp;
1549 env->best_cpu = env->dst_cpu;
1550}
1551
Rik van Riel28a21742014-06-23 11:46:13 -04001552static bool load_too_imbalanced(long src_load, long dst_load,
Rik van Riele63da032014-05-14 13:22:21 -04001553 struct task_numa_env *env)
1554{
Rik van Riele4991b22015-05-27 15:04:27 -04001555 long imb, old_imb;
1556 long orig_src_load, orig_dst_load;
Rik van Riel28a21742014-06-23 11:46:13 -04001557 long src_capacity, dst_capacity;
1558
1559 /*
1560 * The load is corrected for the CPU capacity available on each node.
1561 *
1562 * src_load dst_load
1563 * ------------ vs ---------
1564 * src_capacity dst_capacity
1565 */
1566 src_capacity = env->src_stats.compute_capacity;
1567 dst_capacity = env->dst_stats.compute_capacity;
Rik van Riele63da032014-05-14 13:22:21 -04001568
Srikar Dronamraju5f95ba72018-06-20 22:32:44 +05301569 imb = abs(dst_load * src_capacity - src_load * dst_capacity);
Rik van Riele63da032014-05-14 13:22:21 -04001570
Rik van Riel28a21742014-06-23 11:46:13 -04001571 orig_src_load = env->src_stats.load;
Rik van Riele4991b22015-05-27 15:04:27 -04001572 orig_dst_load = env->dst_stats.load;
Rik van Riel28a21742014-06-23 11:46:13 -04001573
Srikar Dronamraju5f95ba72018-06-20 22:32:44 +05301574 old_imb = abs(orig_dst_load * src_capacity - orig_src_load * dst_capacity);
Rik van Riele4991b22015-05-27 15:04:27 -04001575
1576 /* Would this change make things worse? */
1577 return (imb > old_imb);
Rik van Riele63da032014-05-14 13:22:21 -04001578}
1579
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001580/*
Srikar Dronamraju6fd98e72018-09-21 23:19:01 +05301581 * Maximum NUMA importance can be 1998 (2*999);
1582 * SMALLIMP @ 30 would be close to 1998/64.
1583 * Used to deter task migration.
1584 */
1585#define SMALLIMP 30
1586
1587/*
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001588 * This checks if the overall compute and NUMA accesses of the system would
1589 * be improved if the source tasks was migrated to the target dst_cpu taking
1590 * into account that it might be best if task running on the dst_cpu should
1591 * be exchanged with the source task
1592 */
Rik van Riel887c2902013-10-07 11:29:31 +01001593static void task_numa_compare(struct task_numa_env *env,
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301594 long taskimp, long groupimp, bool maymove)
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001595{
Jann Horncb361d82019-07-16 17:20:47 +02001596 struct numa_group *cur_ng, *p_ng = deref_curr_numa_group(env->p);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001597 struct rq *dst_rq = cpu_rq(env->dst_cpu);
Jann Horncb361d82019-07-16 17:20:47 +02001598 long imp = p_ng ? groupimp : taskimp;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001599 struct task_struct *cur;
Rik van Riel28a21742014-06-23 11:46:13 -04001600 long src_load, dst_load;
Rik van Riel7bd95322014-10-17 03:29:51 -04001601 int dist = env->dist;
Jann Horncb361d82019-07-16 17:20:47 +02001602 long moveimp = imp;
1603 long load;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001604
Srikar Dronamrajua4739ec2018-09-21 23:18:56 +05301605 if (READ_ONCE(dst_rq->numa_migrate_on))
1606 return;
1607
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001608 rcu_read_lock();
Eric W. Biederman154abaf2019-09-14 07:34:30 -05001609 cur = rcu_dereference(dst_rq->curr);
Oleg Nesterovbac78572016-05-18 21:57:33 +02001610 if (cur && ((cur->flags & PF_EXITING) || is_idle_task(cur)))
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001611 cur = NULL;
1612
1613 /*
Peter Zijlstra7af68332014-11-10 10:54:35 +01001614 * Because we have preemption enabled we can get migrated around and
1615 * end try selecting ourselves (current == env->p) as a swap candidate.
1616 */
1617 if (cur == env->p)
1618 goto unlock;
1619
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301620 if (!cur) {
Srikar Dronamraju6fd98e72018-09-21 23:19:01 +05301621 if (maymove && moveimp >= env->best_imp)
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301622 goto assign;
1623 else
1624 goto unlock;
1625 }
1626
Peter Zijlstra7af68332014-11-10 10:54:35 +01001627 /*
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001628 * "imp" is the fault differential for the source task between the
1629 * source and destination node. Calculate the total differential for
1630 * the source task and potential destination task. The more negative
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301631 * the value is, the more remote accesses that would be expected to
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001632 * be incurred if the tasks were swapped.
1633 */
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301634 /* Skip this swap candidate if cannot move to the source cpu */
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02001635 if (!cpumask_test_cpu(env->src_cpu, cur->cpus_ptr))
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001636 goto unlock;
1637
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001638 /*
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301639 * If dst and source tasks are in the same NUMA group, or not
1640 * in any group then look only at task weights.
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001641 */
Jann Horncb361d82019-07-16 17:20:47 +02001642 cur_ng = rcu_dereference(cur->numa_group);
1643 if (cur_ng == p_ng) {
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301644 imp = taskimp + task_weight(cur, env->src_nid, dist) -
1645 task_weight(cur, env->dst_nid, dist);
Rik van Riel0132c3e2014-06-23 11:46:16 -04001646 /*
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301647 * Add some hysteresis to prevent swapping the
1648 * tasks within a group over tiny differences.
Rik van Riel0132c3e2014-06-23 11:46:16 -04001649 */
Jann Horncb361d82019-07-16 17:20:47 +02001650 if (cur_ng)
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301651 imp -= imp / 16;
1652 } else {
1653 /*
1654 * Compare the group weights. If a task is all by itself
1655 * (not part of a group), use the task weight instead.
1656 */
Jann Horncb361d82019-07-16 17:20:47 +02001657 if (cur_ng && p_ng)
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301658 imp += group_weight(cur, env->src_nid, dist) -
1659 group_weight(cur, env->dst_nid, dist);
1660 else
1661 imp += task_weight(cur, env->src_nid, dist) -
1662 task_weight(cur, env->dst_nid, dist);
Rik van Riel0132c3e2014-06-23 11:46:16 -04001663 }
1664
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301665 if (maymove && moveimp > imp && moveimp > env->best_imp) {
Srikar Dronamraju6fd98e72018-09-21 23:19:01 +05301666 imp = moveimp;
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301667 cur = NULL;
1668 goto assign;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001669 }
1670
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301671 /*
Srikar Dronamraju6fd98e72018-09-21 23:19:01 +05301672 * If the NUMA importance is less than SMALLIMP,
1673 * task migration might only result in ping pong
1674 * of tasks and also hurt performance due to cache
1675 * misses.
1676 */
1677 if (imp < SMALLIMP || imp <= env->best_imp + SMALLIMP / 2)
1678 goto unlock;
1679
1680 /*
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301681 * In the overloaded case, try and keep the load balanced.
1682 */
1683 load = task_h_load(env->p) - task_h_load(cur);
1684 if (!load)
1685 goto assign;
1686
1687 dst_load = env->dst_stats.load + load;
1688 src_load = env->src_stats.load - load;
1689
Rik van Riel28a21742014-06-23 11:46:13 -04001690 if (load_too_imbalanced(src_load, dst_load, env))
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001691 goto unlock;
1692
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301693assign:
Rik van Rielba7e5a22014-09-04 16:35:30 -04001694 /*
1695 * One idle CPU per node is evaluated for a task numa move.
1696 * Call select_idle_sibling to maybe find a better one.
1697 */
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02001698 if (!cur) {
1699 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01001700 * select_idle_siblings() uses an per-CPU cpumask that
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02001701 * can be used from IRQ context.
1702 */
1703 local_irq_disable();
Morten Rasmussen772bd008c2016-06-22 18:03:13 +01001704 env->dst_cpu = select_idle_sibling(env->p, env->src_cpu,
1705 env->dst_cpu);
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02001706 local_irq_enable();
1707 }
Rik van Rielba7e5a22014-09-04 16:35:30 -04001708
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001709 task_numa_assign(env, cur, imp);
1710unlock:
1711 rcu_read_unlock();
1712}
1713
Rik van Riel887c2902013-10-07 11:29:31 +01001714static void task_numa_find_cpu(struct task_numa_env *env,
1715 long taskimp, long groupimp)
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001716{
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301717 long src_load, dst_load, load;
1718 bool maymove = false;
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001719 int cpu;
1720
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301721 load = task_h_load(env->p);
1722 dst_load = env->dst_stats.load + load;
1723 src_load = env->src_stats.load - load;
1724
1725 /*
1726 * If the improvement from just moving env->p direction is better
1727 * than swapping tasks around, check if a move is possible.
1728 */
1729 maymove = !load_too_imbalanced(src_load, dst_load, env);
1730
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001731 for_each_cpu(cpu, cpumask_of_node(env->dst_nid)) {
1732 /* Skip this CPU if the source task cannot migrate */
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02001733 if (!cpumask_test_cpu(cpu, env->p->cpus_ptr))
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001734 continue;
1735
1736 env->dst_cpu = cpu;
Srikar Dronamraju305c1fa2018-06-20 22:32:43 +05301737 task_numa_compare(env, taskimp, groupimp, maymove);
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001738 }
1739}
1740
Mel Gorman58d081b2013-10-07 11:29:10 +01001741static int task_numa_migrate(struct task_struct *p)
Mel Gormane6628d52013-10-07 11:29:02 +01001742{
Mel Gorman58d081b2013-10-07 11:29:10 +01001743 struct task_numa_env env = {
1744 .p = p,
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001745
Mel Gorman58d081b2013-10-07 11:29:10 +01001746 .src_cpu = task_cpu(p),
Ingo Molnarb32e86b2013-10-07 11:29:30 +01001747 .src_nid = task_node(p),
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001748
1749 .imbalance_pct = 112,
1750
1751 .best_task = NULL,
1752 .best_imp = 0,
Rik van Riel4142c3e2016-01-25 17:07:39 -05001753 .best_cpu = -1,
Mel Gorman58d081b2013-10-07 11:29:10 +01001754 };
Rik van Riel887c2902013-10-07 11:29:31 +01001755 unsigned long taskweight, groupweight;
Jann Horncb361d82019-07-16 17:20:47 +02001756 struct sched_domain *sd;
Rik van Riel887c2902013-10-07 11:29:31 +01001757 long taskimp, groupimp;
Jann Horncb361d82019-07-16 17:20:47 +02001758 struct numa_group *ng;
1759 struct rq *best_rq;
1760 int nid, ret, dist;
Mel Gormane6628d52013-10-07 11:29:02 +01001761
Mel Gorman58d081b2013-10-07 11:29:10 +01001762 /*
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001763 * Pick the lowest SD_NUMA domain, as that would have the smallest
1764 * imbalance and would be the first to start moving tasks about.
1765 *
1766 * And we want to avoid any moving of tasks about, as that would create
1767 * random movement of tasks -- counter the numa conditions we're trying
1768 * to satisfy here.
Mel Gorman58d081b2013-10-07 11:29:10 +01001769 */
Mel Gormane6628d52013-10-07 11:29:02 +01001770 rcu_read_lock();
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001771 sd = rcu_dereference(per_cpu(sd_numa, env.src_cpu));
Rik van Riel46a73e82013-11-11 19:29:25 -05001772 if (sd)
1773 env.imbalance_pct = 100 + (sd->imbalance_pct - 100) / 2;
Mel Gormane6628d52013-10-07 11:29:02 +01001774 rcu_read_unlock();
1775
Rik van Riel46a73e82013-11-11 19:29:25 -05001776 /*
1777 * Cpusets can break the scheduler domain tree into smaller
1778 * balance domains, some of which do not cross NUMA boundaries.
1779 * Tasks that are "trapped" in such domains cannot be migrated
1780 * elsewhere, so there is no point in (re)trying.
1781 */
1782 if (unlikely(!sd)) {
Srikar Dronamraju8cd45ee2018-06-20 22:32:45 +05301783 sched_setnuma(p, task_node(p));
Rik van Riel46a73e82013-11-11 19:29:25 -05001784 return -EINVAL;
1785 }
1786
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001787 env.dst_nid = p->numa_preferred_nid;
Rik van Riel7bd95322014-10-17 03:29:51 -04001788 dist = env.dist = node_distance(env.src_nid, env.dst_nid);
1789 taskweight = task_weight(p, env.src_nid, dist);
1790 groupweight = group_weight(p, env.src_nid, dist);
1791 update_numa_stats(&env.src_stats, env.src_nid);
1792 taskimp = task_weight(p, env.dst_nid, dist) - taskweight;
1793 groupimp = group_weight(p, env.dst_nid, dist) - groupweight;
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001794 update_numa_stats(&env.dst_stats, env.dst_nid);
Mel Gorman58d081b2013-10-07 11:29:10 +01001795
Rik van Riela43455a2014-06-04 16:09:42 -04001796 /* Try to find a spot on the preferred nid. */
Srikar Dronamraju2d4056f2018-06-20 22:32:53 +05301797 task_numa_find_cpu(&env, taskimp, groupimp);
Rik van Riele1dda8a2013-10-07 11:29:19 +01001798
Rik van Riel9de05d42014-10-09 17:27:47 -04001799 /*
1800 * Look at other nodes in these cases:
1801 * - there is no space available on the preferred_nid
1802 * - the task is part of a numa_group that is interleaved across
1803 * multiple NUMA nodes; in order to better consolidate the group,
1804 * we need to check other locations.
1805 */
Jann Horncb361d82019-07-16 17:20:47 +02001806 ng = deref_curr_numa_group(p);
1807 if (env.best_cpu == -1 || (ng && ng->active_nodes > 1)) {
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001808 for_each_online_node(nid) {
1809 if (nid == env.src_nid || nid == p->numa_preferred_nid)
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001810 continue;
1811
Rik van Riel7bd95322014-10-17 03:29:51 -04001812 dist = node_distance(env.src_nid, env.dst_nid);
Rik van Riel6c6b1192014-10-17 03:29:52 -04001813 if (sched_numa_topology_type == NUMA_BACKPLANE &&
1814 dist != env.dist) {
1815 taskweight = task_weight(p, env.src_nid, dist);
1816 groupweight = group_weight(p, env.src_nid, dist);
1817 }
Rik van Riel7bd95322014-10-17 03:29:51 -04001818
Mel Gorman83e1d2c2013-10-07 11:29:27 +01001819 /* Only consider nodes where both task and groups benefit */
Rik van Riel7bd95322014-10-17 03:29:51 -04001820 taskimp = task_weight(p, nid, dist) - taskweight;
1821 groupimp = group_weight(p, nid, dist) - groupweight;
Rik van Riel887c2902013-10-07 11:29:31 +01001822 if (taskimp < 0 && groupimp < 0)
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001823 continue;
1824
Rik van Riel7bd95322014-10-17 03:29:51 -04001825 env.dist = dist;
Mel Gorman2c8a50a2013-10-07 11:29:18 +01001826 env.dst_nid = nid;
1827 update_numa_stats(&env.dst_stats, env.dst_nid);
Srikar Dronamraju2d4056f2018-06-20 22:32:53 +05301828 task_numa_find_cpu(&env, taskimp, groupimp);
Mel Gorman58d081b2013-10-07 11:29:10 +01001829 }
1830 }
1831
Rik van Riel68d1b022014-04-11 13:00:29 -04001832 /*
1833 * If the task is part of a workload that spans multiple NUMA nodes,
1834 * and is migrating into one of the workload's active nodes, remember
1835 * this node as the task's preferred numa node, so the workload can
1836 * settle down.
1837 * A task that migrated to a second choice node will be better off
1838 * trying for a better one later. Do not set the preferred node here.
1839 */
Jann Horncb361d82019-07-16 17:20:47 +02001840 if (ng) {
Rik van Rieldb015da2014-06-23 11:41:34 -04001841 if (env.best_cpu == -1)
1842 nid = env.src_nid;
1843 else
Srikar Dronamraju8cd45ee2018-06-20 22:32:45 +05301844 nid = cpu_to_node(env.best_cpu);
Rik van Rieldb015da2014-06-23 11:41:34 -04001845
Srikar Dronamraju8cd45ee2018-06-20 22:32:45 +05301846 if (nid != p->numa_preferred_nid)
1847 sched_setnuma(p, nid);
Rik van Rieldb015da2014-06-23 11:41:34 -04001848 }
1849
1850 /* No better CPU than the current one was found. */
1851 if (env.best_cpu == -1)
1852 return -EAGAIN;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01001853
Srikar Dronamrajua4739ec2018-09-21 23:18:56 +05301854 best_rq = cpu_rq(env.best_cpu);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001855 if (env.best_task == NULL) {
Mel Gorman286549d2014-01-21 15:51:03 -08001856 ret = migrate_task_to(p, env.best_cpu);
Srikar Dronamrajua4739ec2018-09-21 23:18:56 +05301857 WRITE_ONCE(best_rq->numa_migrate_on, 0);
Mel Gorman286549d2014-01-21 15:51:03 -08001858 if (ret != 0)
1859 trace_sched_stick_numa(p, env.src_cpu, env.best_cpu);
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001860 return ret;
1861 }
1862
Srikar Dronamraju0ad4e3d2018-06-20 22:32:50 +05301863 ret = migrate_swap(p, env.best_task, env.best_cpu, env.src_cpu);
Srikar Dronamrajua4739ec2018-09-21 23:18:56 +05301864 WRITE_ONCE(best_rq->numa_migrate_on, 0);
Srikar Dronamraju0ad4e3d2018-06-20 22:32:50 +05301865
Mel Gorman286549d2014-01-21 15:51:03 -08001866 if (ret != 0)
1867 trace_sched_stick_numa(p, env.src_cpu, task_cpu(env.best_task));
Mel Gormanfb13c7e2013-10-07 11:29:17 +01001868 put_task_struct(env.best_task);
1869 return ret;
Mel Gormane6628d52013-10-07 11:29:02 +01001870}
1871
Mel Gorman6b9a7462013-10-07 11:29:11 +01001872/* Attempt to migrate a task to a CPU on the preferred node. */
1873static void numa_migrate_preferred(struct task_struct *p)
1874{
Rik van Riel5085e2a2014-04-11 13:00:28 -04001875 unsigned long interval = HZ;
1876
Rik van Riel2739d3e2013-10-07 11:29:41 +01001877 /* This task has no NUMA fault statistics yet */
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001878 if (unlikely(p->numa_preferred_nid == NUMA_NO_NODE || !p->numa_faults))
Rik van Riel2739d3e2013-10-07 11:29:41 +01001879 return;
1880
1881 /* Periodically retry migrating the task to the preferred node */
Rik van Riel5085e2a2014-04-11 13:00:28 -04001882 interval = min(interval, msecs_to_jiffies(p->numa_scan_period) / 16);
Mel Gorman789ba282018-05-09 17:31:15 +01001883 p->numa_migrate_retry = jiffies + interval;
Rik van Riel2739d3e2013-10-07 11:29:41 +01001884
Mel Gorman6b9a7462013-10-07 11:29:11 +01001885 /* Success if task is already running on preferred CPU */
Wanpeng Lide1b3012013-12-12 15:23:24 +08001886 if (task_node(p) == p->numa_preferred_nid)
Mel Gorman6b9a7462013-10-07 11:29:11 +01001887 return;
1888
Mel Gorman6b9a7462013-10-07 11:29:11 +01001889 /* Otherwise, try migrate to a CPU on the preferred node */
Rik van Riel2739d3e2013-10-07 11:29:41 +01001890 task_numa_migrate(p);
Mel Gorman6b9a7462013-10-07 11:29:11 +01001891}
1892
Rik van Riel04bb2f92013-10-07 11:29:36 +01001893/*
Rik van Riel4142c3e2016-01-25 17:07:39 -05001894 * Find out how many nodes on the workload is actively running on. Do this by
Rik van Riel20e07de2014-01-27 17:03:43 -05001895 * tracking the nodes from which NUMA hinting faults are triggered. This can
1896 * be different from the set of nodes where the workload's memory is currently
1897 * located.
Rik van Riel20e07de2014-01-27 17:03:43 -05001898 */
Rik van Riel4142c3e2016-01-25 17:07:39 -05001899static void numa_group_count_active_nodes(struct numa_group *numa_group)
Rik van Riel20e07de2014-01-27 17:03:43 -05001900{
1901 unsigned long faults, max_faults = 0;
Rik van Riel4142c3e2016-01-25 17:07:39 -05001902 int nid, active_nodes = 0;
Rik van Riel20e07de2014-01-27 17:03:43 -05001903
1904 for_each_online_node(nid) {
1905 faults = group_faults_cpu(numa_group, nid);
1906 if (faults > max_faults)
1907 max_faults = faults;
1908 }
1909
1910 for_each_online_node(nid) {
1911 faults = group_faults_cpu(numa_group, nid);
Rik van Riel4142c3e2016-01-25 17:07:39 -05001912 if (faults * ACTIVE_NODE_FRACTION > max_faults)
1913 active_nodes++;
Rik van Riel20e07de2014-01-27 17:03:43 -05001914 }
Rik van Riel4142c3e2016-01-25 17:07:39 -05001915
1916 numa_group->max_faults_cpu = max_faults;
1917 numa_group->active_nodes = active_nodes;
Rik van Riel20e07de2014-01-27 17:03:43 -05001918}
1919
1920/*
Rik van Riel04bb2f92013-10-07 11:29:36 +01001921 * When adapting the scan rate, the period is divided into NUMA_PERIOD_SLOTS
1922 * increments. The more local the fault statistics are, the higher the scan
Rik van Riela22b4b02014-06-23 11:41:35 -04001923 * period will be for the next scan window. If local/(local+remote) ratio is
1924 * below NUMA_PERIOD_THRESHOLD (where range of ratio is 1..NUMA_PERIOD_SLOTS)
1925 * the scan period will decrease. Aim for 70% local accesses.
Rik van Riel04bb2f92013-10-07 11:29:36 +01001926 */
1927#define NUMA_PERIOD_SLOTS 10
Rik van Riela22b4b02014-06-23 11:41:35 -04001928#define NUMA_PERIOD_THRESHOLD 7
Rik van Riel04bb2f92013-10-07 11:29:36 +01001929
1930/*
1931 * Increase the scan period (slow down scanning) if the majority of
1932 * our memory is already on our local node, or if the majority of
1933 * the page accesses are shared with other processes.
1934 * Otherwise, decrease the scan period.
1935 */
1936static void update_task_scan_period(struct task_struct *p,
1937 unsigned long shared, unsigned long private)
1938{
1939 unsigned int period_slot;
Rik van Riel37ec97de2017-07-31 15:28:46 -04001940 int lr_ratio, ps_ratio;
Rik van Riel04bb2f92013-10-07 11:29:36 +01001941 int diff;
1942
1943 unsigned long remote = p->numa_faults_locality[0];
1944 unsigned long local = p->numa_faults_locality[1];
1945
1946 /*
1947 * If there were no record hinting faults then either the task is
1948 * completely idle or all activity is areas that are not of interest
Mel Gorman074c2382015-03-25 15:55:42 -07001949 * to automatic numa balancing. Related to that, if there were failed
1950 * migration then it implies we are migrating too quickly or the local
1951 * node is overloaded. In either case, scan slower
Rik van Riel04bb2f92013-10-07 11:29:36 +01001952 */
Mel Gorman074c2382015-03-25 15:55:42 -07001953 if (local + shared == 0 || p->numa_faults_locality[2]) {
Rik van Riel04bb2f92013-10-07 11:29:36 +01001954 p->numa_scan_period = min(p->numa_scan_period_max,
1955 p->numa_scan_period << 1);
1956
1957 p->mm->numa_next_scan = jiffies +
1958 msecs_to_jiffies(p->numa_scan_period);
1959
1960 return;
1961 }
1962
1963 /*
1964 * Prepare to scale scan period relative to the current period.
1965 * == NUMA_PERIOD_THRESHOLD scan period stays the same
1966 * < NUMA_PERIOD_THRESHOLD scan period decreases (scan faster)
1967 * >= NUMA_PERIOD_THRESHOLD scan period increases (scan slower)
1968 */
1969 period_slot = DIV_ROUND_UP(p->numa_scan_period, NUMA_PERIOD_SLOTS);
Rik van Riel37ec97de2017-07-31 15:28:46 -04001970 lr_ratio = (local * NUMA_PERIOD_SLOTS) / (local + remote);
1971 ps_ratio = (private * NUMA_PERIOD_SLOTS) / (private + shared);
1972
1973 if (ps_ratio >= NUMA_PERIOD_THRESHOLD) {
1974 /*
1975 * Most memory accesses are local. There is no need to
1976 * do fast NUMA scanning, since memory is already local.
1977 */
1978 int slot = ps_ratio - NUMA_PERIOD_THRESHOLD;
1979 if (!slot)
1980 slot = 1;
1981 diff = slot * period_slot;
1982 } else if (lr_ratio >= NUMA_PERIOD_THRESHOLD) {
1983 /*
1984 * Most memory accesses are shared with other tasks.
1985 * There is no point in continuing fast NUMA scanning,
1986 * since other tasks may just move the memory elsewhere.
1987 */
1988 int slot = lr_ratio - NUMA_PERIOD_THRESHOLD;
Rik van Riel04bb2f92013-10-07 11:29:36 +01001989 if (!slot)
1990 slot = 1;
1991 diff = slot * period_slot;
1992 } else {
Rik van Riel04bb2f92013-10-07 11:29:36 +01001993 /*
Rik van Riel37ec97de2017-07-31 15:28:46 -04001994 * Private memory faults exceed (SLOTS-THRESHOLD)/SLOTS,
1995 * yet they are not on the local NUMA node. Speed up
1996 * NUMA scanning to get the memory moved over.
Rik van Riel04bb2f92013-10-07 11:29:36 +01001997 */
Rik van Riel37ec97de2017-07-31 15:28:46 -04001998 int ratio = max(lr_ratio, ps_ratio);
1999 diff = -(NUMA_PERIOD_THRESHOLD - ratio) * period_slot;
Rik van Riel04bb2f92013-10-07 11:29:36 +01002000 }
2001
2002 p->numa_scan_period = clamp(p->numa_scan_period + diff,
2003 task_scan_min(p), task_scan_max(p));
2004 memset(p->numa_faults_locality, 0, sizeof(p->numa_faults_locality));
2005}
2006
Rik van Riel7e2703e2014-01-27 17:03:45 -05002007/*
2008 * Get the fraction of time the task has been running since the last
2009 * NUMA placement cycle. The scheduler keeps similar statistics, but
2010 * decays those on a 32ms period, which is orders of magnitude off
2011 * from the dozens-of-seconds NUMA balancing period. Use the scheduler
2012 * stats only if the task is so new there are no NUMA statistics yet.
2013 */
2014static u64 numa_get_avg_runtime(struct task_struct *p, u64 *period)
2015{
2016 u64 runtime, delta, now;
2017 /* Use the start of this time slice to avoid calculations. */
2018 now = p->se.exec_start;
2019 runtime = p->se.sum_exec_runtime;
2020
2021 if (p->last_task_numa_placement) {
2022 delta = runtime - p->last_sum_exec_runtime;
2023 *period = now - p->last_task_numa_placement;
Xie XiuQia860fa72019-04-20 16:34:16 +08002024
2025 /* Avoid time going backwards, prevent potential divide error: */
2026 if (unlikely((s64)*period < 0))
2027 *period = 0;
Rik van Riel7e2703e2014-01-27 17:03:45 -05002028 } else {
Peter Zijlstrac7b50212017-05-06 16:42:08 +02002029 delta = p->se.avg.load_sum;
Yuyang Du9d89c252015-07-15 08:04:37 +08002030 *period = LOAD_AVG_MAX;
Rik van Riel7e2703e2014-01-27 17:03:45 -05002031 }
2032
2033 p->last_sum_exec_runtime = runtime;
2034 p->last_task_numa_placement = now;
2035
2036 return delta;
2037}
2038
Rik van Riel54009412014-10-17 03:29:53 -04002039/*
2040 * Determine the preferred nid for a task in a numa_group. This needs to
2041 * be done in a way that produces consistent results with group_weight,
2042 * otherwise workloads might not converge.
2043 */
2044static int preferred_group_nid(struct task_struct *p, int nid)
2045{
2046 nodemask_t nodes;
2047 int dist;
2048
2049 /* Direct connections between all NUMA nodes. */
2050 if (sched_numa_topology_type == NUMA_DIRECT)
2051 return nid;
2052
2053 /*
2054 * On a system with glueless mesh NUMA topology, group_weight
2055 * scores nodes according to the number of NUMA hinting faults on
2056 * both the node itself, and on nearby nodes.
2057 */
2058 if (sched_numa_topology_type == NUMA_GLUELESS_MESH) {
2059 unsigned long score, max_score = 0;
2060 int node, max_node = nid;
2061
2062 dist = sched_max_numa_distance;
2063
2064 for_each_online_node(node) {
2065 score = group_weight(p, node, dist);
2066 if (score > max_score) {
2067 max_score = score;
2068 max_node = node;
2069 }
2070 }
2071 return max_node;
2072 }
2073
2074 /*
2075 * Finding the preferred nid in a system with NUMA backplane
2076 * interconnect topology is more involved. The goal is to locate
2077 * tasks from numa_groups near each other in the system, and
2078 * untangle workloads from different sides of the system. This requires
2079 * searching down the hierarchy of node groups, recursively searching
2080 * inside the highest scoring group of nodes. The nodemask tricks
2081 * keep the complexity of the search down.
2082 */
2083 nodes = node_online_map;
2084 for (dist = sched_max_numa_distance; dist > LOCAL_DISTANCE; dist--) {
2085 unsigned long max_faults = 0;
Jan Beulich81907472015-01-23 08:25:38 +00002086 nodemask_t max_group = NODE_MASK_NONE;
Rik van Riel54009412014-10-17 03:29:53 -04002087 int a, b;
2088
2089 /* Are there nodes at this distance from each other? */
2090 if (!find_numa_distance(dist))
2091 continue;
2092
2093 for_each_node_mask(a, nodes) {
2094 unsigned long faults = 0;
2095 nodemask_t this_group;
2096 nodes_clear(this_group);
2097
2098 /* Sum group's NUMA faults; includes a==b case. */
2099 for_each_node_mask(b, nodes) {
2100 if (node_distance(a, b) < dist) {
2101 faults += group_faults(p, b);
2102 node_set(b, this_group);
2103 node_clear(b, nodes);
2104 }
2105 }
2106
2107 /* Remember the top group. */
2108 if (faults > max_faults) {
2109 max_faults = faults;
2110 max_group = this_group;
2111 /*
2112 * subtle: at the smallest distance there is
2113 * just one node left in each "group", the
2114 * winner is the preferred nid.
2115 */
2116 nid = a;
2117 }
2118 }
2119 /* Next round, evaluate the nodes within max_group. */
Jan Beulich890a5402015-02-09 12:30:00 +01002120 if (!max_faults)
2121 break;
Rik van Riel54009412014-10-17 03:29:53 -04002122 nodes = max_group;
2123 }
2124 return nid;
2125}
2126
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002127static void task_numa_placement(struct task_struct *p)
2128{
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08002129 int seq, nid, max_nid = NUMA_NO_NODE;
Srikar Dronamrajuf03bb672018-06-20 22:32:46 +05302130 unsigned long max_faults = 0;
Rik van Riel04bb2f92013-10-07 11:29:36 +01002131 unsigned long fault_types[2] = { 0, 0 };
Rik van Riel7e2703e2014-01-27 17:03:45 -05002132 unsigned long total_faults;
2133 u64 runtime, period;
Mel Gorman7dbd13e2013-10-07 11:29:29 +01002134 spinlock_t *group_lock = NULL;
Jann Horncb361d82019-07-16 17:20:47 +02002135 struct numa_group *ng;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002136
Jason Low7e5a2c12015-04-30 17:28:14 -07002137 /*
2138 * The p->mm->numa_scan_seq field gets updated without
2139 * exclusive access. Use READ_ONCE() here to ensure
2140 * that the field is read in a single access:
2141 */
Jason Low316c1608d2015-04-28 13:00:20 -07002142 seq = READ_ONCE(p->mm->numa_scan_seq);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002143 if (p->numa_scan_seq == seq)
2144 return;
2145 p->numa_scan_seq = seq;
Mel Gorman598f0ec2013-10-07 11:28:55 +01002146 p->numa_scan_period_max = task_scan_max(p);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002147
Rik van Riel7e2703e2014-01-27 17:03:45 -05002148 total_faults = p->numa_faults_locality[0] +
2149 p->numa_faults_locality[1];
2150 runtime = numa_get_avg_runtime(p, &period);
2151
Mel Gorman7dbd13e2013-10-07 11:29:29 +01002152 /* If the task is part of a group prevent parallel updates to group stats */
Jann Horncb361d82019-07-16 17:20:47 +02002153 ng = deref_curr_numa_group(p);
2154 if (ng) {
2155 group_lock = &ng->lock;
Mike Galbraith60e69ee2014-04-07 10:55:15 +02002156 spin_lock_irq(group_lock);
Mel Gorman7dbd13e2013-10-07 11:29:29 +01002157 }
2158
Mel Gorman688b7582013-10-07 11:28:58 +01002159 /* Find the node with the highest number of faults */
2160 for_each_online_node(nid) {
Iulia Manda44dba3d2014-10-31 02:13:31 +02002161 /* Keep track of the offsets in numa_faults array */
2162 int mem_idx, membuf_idx, cpu_idx, cpubuf_idx;
Mel Gorman83e1d2c2013-10-07 11:29:27 +01002163 unsigned long faults = 0, group_faults = 0;
Iulia Manda44dba3d2014-10-31 02:13:31 +02002164 int priv;
Mel Gorman745d6142013-10-07 11:28:59 +01002165
Rik van Rielbe1e4e72014-01-27 17:03:48 -05002166 for (priv = 0; priv < NR_NUMA_HINT_FAULT_TYPES; priv++) {
Rik van Riel7e2703e2014-01-27 17:03:45 -05002167 long diff, f_diff, f_weight;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002168
Iulia Manda44dba3d2014-10-31 02:13:31 +02002169 mem_idx = task_faults_idx(NUMA_MEM, nid, priv);
2170 membuf_idx = task_faults_idx(NUMA_MEMBUF, nid, priv);
2171 cpu_idx = task_faults_idx(NUMA_CPU, nid, priv);
2172 cpubuf_idx = task_faults_idx(NUMA_CPUBUF, nid, priv);
Mel Gorman745d6142013-10-07 11:28:59 +01002173
Mel Gormanac8e8952013-10-07 11:29:03 +01002174 /* Decay existing window, copy faults since last scan */
Iulia Manda44dba3d2014-10-31 02:13:31 +02002175 diff = p->numa_faults[membuf_idx] - p->numa_faults[mem_idx] / 2;
2176 fault_types[priv] += p->numa_faults[membuf_idx];
2177 p->numa_faults[membuf_idx] = 0;
Mel Gormanfb13c7e2013-10-07 11:29:17 +01002178
Rik van Riel7e2703e2014-01-27 17:03:45 -05002179 /*
2180 * Normalize the faults_from, so all tasks in a group
2181 * count according to CPU use, instead of by the raw
2182 * number of faults. Tasks with little runtime have
2183 * little over-all impact on throughput, and thus their
2184 * faults are less important.
2185 */
2186 f_weight = div64_u64(runtime << 16, period + 1);
Iulia Manda44dba3d2014-10-31 02:13:31 +02002187 f_weight = (f_weight * p->numa_faults[cpubuf_idx]) /
Rik van Riel7e2703e2014-01-27 17:03:45 -05002188 (total_faults + 1);
Iulia Manda44dba3d2014-10-31 02:13:31 +02002189 f_diff = f_weight - p->numa_faults[cpu_idx] / 2;
2190 p->numa_faults[cpubuf_idx] = 0;
Rik van Riel50ec8a42014-01-27 17:03:42 -05002191
Iulia Manda44dba3d2014-10-31 02:13:31 +02002192 p->numa_faults[mem_idx] += diff;
2193 p->numa_faults[cpu_idx] += f_diff;
2194 faults += p->numa_faults[mem_idx];
Mel Gorman83e1d2c2013-10-07 11:29:27 +01002195 p->total_numa_faults += diff;
Jann Horncb361d82019-07-16 17:20:47 +02002196 if (ng) {
Iulia Manda44dba3d2014-10-31 02:13:31 +02002197 /*
2198 * safe because we can only change our own group
2199 *
2200 * mem_idx represents the offset for a given
2201 * nid and priv in a specific region because it
2202 * is at the beginning of the numa_faults array.
2203 */
Jann Horncb361d82019-07-16 17:20:47 +02002204 ng->faults[mem_idx] += diff;
2205 ng->faults_cpu[mem_idx] += f_diff;
2206 ng->total_faults += diff;
2207 group_faults += ng->faults[mem_idx];
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002208 }
Mel Gormanac8e8952013-10-07 11:29:03 +01002209 }
2210
Jann Horncb361d82019-07-16 17:20:47 +02002211 if (!ng) {
Srikar Dronamrajuf03bb672018-06-20 22:32:46 +05302212 if (faults > max_faults) {
2213 max_faults = faults;
2214 max_nid = nid;
2215 }
2216 } else if (group_faults > max_faults) {
2217 max_faults = group_faults;
Mel Gorman688b7582013-10-07 11:28:58 +01002218 max_nid = nid;
2219 }
Mel Gorman83e1d2c2013-10-07 11:29:27 +01002220 }
2221
Jann Horncb361d82019-07-16 17:20:47 +02002222 if (ng) {
2223 numa_group_count_active_nodes(ng);
Mike Galbraith60e69ee2014-04-07 10:55:15 +02002224 spin_unlock_irq(group_lock);
Srikar Dronamrajuf03bb672018-06-20 22:32:46 +05302225 max_nid = preferred_group_nid(p, max_nid);
Mel Gorman688b7582013-10-07 11:28:58 +01002226 }
2227
Rik van Rielbb97fc32014-06-04 16:33:15 -04002228 if (max_faults) {
2229 /* Set the new preferred node */
2230 if (max_nid != p->numa_preferred_nid)
2231 sched_setnuma(p, max_nid);
Mel Gorman3a7053b2013-10-07 11:29:00 +01002232 }
Srikar Dronamraju30619c82018-06-20 22:32:55 +05302233
2234 update_task_scan_period(p, fault_types[0], fault_types[1]);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002235}
2236
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002237static inline int get_numa_group(struct numa_group *grp)
2238{
Elena Reshetovac45a7792019-01-18 14:27:28 +02002239 return refcount_inc_not_zero(&grp->refcount);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002240}
2241
2242static inline void put_numa_group(struct numa_group *grp)
2243{
Elena Reshetovac45a7792019-01-18 14:27:28 +02002244 if (refcount_dec_and_test(&grp->refcount))
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002245 kfree_rcu(grp, rcu);
2246}
2247
Mel Gorman3e6a9412013-10-07 11:29:35 +01002248static void task_numa_group(struct task_struct *p, int cpupid, int flags,
2249 int *priv)
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002250{
2251 struct numa_group *grp, *my_grp;
2252 struct task_struct *tsk;
2253 bool join = false;
2254 int cpu = cpupid_to_cpu(cpupid);
2255 int i;
2256
Jann Horncb361d82019-07-16 17:20:47 +02002257 if (unlikely(!deref_curr_numa_group(p))) {
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002258 unsigned int size = sizeof(struct numa_group) +
Rik van Riel50ec8a42014-01-27 17:03:42 -05002259 4*nr_node_ids*sizeof(unsigned long);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002260
2261 grp = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
2262 if (!grp)
2263 return;
2264
Elena Reshetovac45a7792019-01-18 14:27:28 +02002265 refcount_set(&grp->refcount, 1);
Rik van Riel4142c3e2016-01-25 17:07:39 -05002266 grp->active_nodes = 1;
2267 grp->max_faults_cpu = 0;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002268 spin_lock_init(&grp->lock);
Mel Gormane29cf082013-10-07 11:29:22 +01002269 grp->gid = p->pid;
Rik van Riel50ec8a42014-01-27 17:03:42 -05002270 /* Second half of the array tracks nids where faults happen */
Rik van Rielbe1e4e72014-01-27 17:03:48 -05002271 grp->faults_cpu = grp->faults + NR_NUMA_HINT_FAULT_TYPES *
2272 nr_node_ids;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002273
Rik van Rielbe1e4e72014-01-27 17:03:48 -05002274 for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++)
Iulia Manda44dba3d2014-10-31 02:13:31 +02002275 grp->faults[i] = p->numa_faults[i];
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002276
Mel Gorman989348b2013-10-07 11:29:40 +01002277 grp->total_faults = p->total_numa_faults;
Mel Gorman83e1d2c2013-10-07 11:29:27 +01002278
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002279 grp->nr_tasks++;
2280 rcu_assign_pointer(p->numa_group, grp);
2281 }
2282
2283 rcu_read_lock();
Jason Low316c1608d2015-04-28 13:00:20 -07002284 tsk = READ_ONCE(cpu_rq(cpu)->curr);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002285
2286 if (!cpupid_match_pid(tsk, cpupid))
Peter Zijlstra33547812013-10-09 10:24:48 +02002287 goto no_join;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002288
2289 grp = rcu_dereference(tsk->numa_group);
2290 if (!grp)
Peter Zijlstra33547812013-10-09 10:24:48 +02002291 goto no_join;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002292
Jann Horncb361d82019-07-16 17:20:47 +02002293 my_grp = deref_curr_numa_group(p);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002294 if (grp == my_grp)
Peter Zijlstra33547812013-10-09 10:24:48 +02002295 goto no_join;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002296
2297 /*
2298 * Only join the other group if its bigger; if we're the bigger group,
2299 * the other task will join us.
2300 */
2301 if (my_grp->nr_tasks > grp->nr_tasks)
Peter Zijlstra33547812013-10-09 10:24:48 +02002302 goto no_join;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002303
2304 /*
2305 * Tie-break on the grp address.
2306 */
2307 if (my_grp->nr_tasks == grp->nr_tasks && my_grp > grp)
Peter Zijlstra33547812013-10-09 10:24:48 +02002308 goto no_join;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002309
Rik van Rieldabe1d92013-10-07 11:29:34 +01002310 /* Always join threads in the same process. */
2311 if (tsk->mm == current->mm)
2312 join = true;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002313
Rik van Rieldabe1d92013-10-07 11:29:34 +01002314 /* Simple filter to avoid false positives due to PID collisions */
2315 if (flags & TNF_SHARED)
2316 join = true;
2317
Mel Gorman3e6a9412013-10-07 11:29:35 +01002318 /* Update priv based on whether false sharing was detected */
2319 *priv = !join;
2320
Rik van Rieldabe1d92013-10-07 11:29:34 +01002321 if (join && !get_numa_group(grp))
Peter Zijlstra33547812013-10-09 10:24:48 +02002322 goto no_join;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002323
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002324 rcu_read_unlock();
2325
2326 if (!join)
2327 return;
2328
Mike Galbraith60e69ee2014-04-07 10:55:15 +02002329 BUG_ON(irqs_disabled());
2330 double_lock_irq(&my_grp->lock, &grp->lock);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002331
Rik van Rielbe1e4e72014-01-27 17:03:48 -05002332 for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++) {
Iulia Manda44dba3d2014-10-31 02:13:31 +02002333 my_grp->faults[i] -= p->numa_faults[i];
2334 grp->faults[i] += p->numa_faults[i];
Mel Gorman989348b2013-10-07 11:29:40 +01002335 }
2336 my_grp->total_faults -= p->total_numa_faults;
2337 grp->total_faults += p->total_numa_faults;
2338
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002339 my_grp->nr_tasks--;
2340 grp->nr_tasks++;
2341
2342 spin_unlock(&my_grp->lock);
Mike Galbraith60e69ee2014-04-07 10:55:15 +02002343 spin_unlock_irq(&grp->lock);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002344
2345 rcu_assign_pointer(p->numa_group, grp);
2346
2347 put_numa_group(my_grp);
Peter Zijlstra33547812013-10-09 10:24:48 +02002348 return;
2349
2350no_join:
2351 rcu_read_unlock();
2352 return;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002353}
2354
Jann Horn16d51a52019-07-16 17:20:45 +02002355/*
2356 * Get rid of NUMA staticstics associated with a task (either current or dead).
2357 * If @final is set, the task is dead and has reached refcount zero, so we can
2358 * safely free all relevant data structures. Otherwise, there might be
2359 * concurrent reads from places like load balancing and procfs, and we should
2360 * reset the data back to default state without freeing ->numa_faults.
2361 */
2362void task_numa_free(struct task_struct *p, bool final)
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002363{
Jann Horncb361d82019-07-16 17:20:47 +02002364 /* safe: p either is current or is being freed by current */
2365 struct numa_group *grp = rcu_dereference_raw(p->numa_group);
Jann Horn16d51a52019-07-16 17:20:45 +02002366 unsigned long *numa_faults = p->numa_faults;
Steven Rostedte9dd6852014-05-27 17:02:04 -04002367 unsigned long flags;
2368 int i;
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002369
Jann Horn16d51a52019-07-16 17:20:45 +02002370 if (!numa_faults)
2371 return;
2372
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002373 if (grp) {
Steven Rostedte9dd6852014-05-27 17:02:04 -04002374 spin_lock_irqsave(&grp->lock, flags);
Rik van Rielbe1e4e72014-01-27 17:03:48 -05002375 for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++)
Iulia Manda44dba3d2014-10-31 02:13:31 +02002376 grp->faults[i] -= p->numa_faults[i];
Mel Gorman989348b2013-10-07 11:29:40 +01002377 grp->total_faults -= p->total_numa_faults;
2378
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002379 grp->nr_tasks--;
Steven Rostedte9dd6852014-05-27 17:02:04 -04002380 spin_unlock_irqrestore(&grp->lock, flags);
Andreea-Cristina Bernat35b123e2014-08-22 17:50:43 +03002381 RCU_INIT_POINTER(p->numa_group, NULL);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002382 put_numa_group(grp);
2383 }
2384
Jann Horn16d51a52019-07-16 17:20:45 +02002385 if (final) {
2386 p->numa_faults = NULL;
2387 kfree(numa_faults);
2388 } else {
2389 p->total_numa_faults = 0;
2390 for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++)
2391 numa_faults[i] = 0;
2392 }
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002393}
2394
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002395/*
2396 * Got a PROT_NONE fault for a page on @node.
2397 */
Rik van Riel58b46da2014-01-27 17:03:47 -05002398void task_numa_fault(int last_cpupid, int mem_node, int pages, int flags)
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002399{
2400 struct task_struct *p = current;
Peter Zijlstra6688cc02013-10-07 11:29:24 +01002401 bool migrated = flags & TNF_MIGRATED;
Rik van Riel58b46da2014-01-27 17:03:47 -05002402 int cpu_node = task_node(current);
Rik van Riel792568e2014-04-11 13:00:27 -04002403 int local = !!(flags & TNF_FAULT_LOCAL);
Rik van Riel4142c3e2016-01-25 17:07:39 -05002404 struct numa_group *ng;
Mel Gormanac8e8952013-10-07 11:29:03 +01002405 int priv;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002406
Srikar Dronamraju2a595722015-08-11 21:54:21 +05302407 if (!static_branch_likely(&sched_numa_balancing))
Mel Gorman1a687c22012-11-22 11:16:36 +00002408 return;
2409
Mel Gorman9ff1d9f2013-10-07 11:29:04 +01002410 /* for example, ksmd faulting in a user's mm */
2411 if (!p->mm)
2412 return;
2413
Mel Gormanf809ca92013-10-07 11:28:57 +01002414 /* Allocate buffer to track faults on a per-node basis */
Iulia Manda44dba3d2014-10-31 02:13:31 +02002415 if (unlikely(!p->numa_faults)) {
2416 int size = sizeof(*p->numa_faults) *
Rik van Rielbe1e4e72014-01-27 17:03:48 -05002417 NR_NUMA_HINT_FAULT_BUCKETS * nr_node_ids;
Mel Gormanf809ca92013-10-07 11:28:57 +01002418
Iulia Manda44dba3d2014-10-31 02:13:31 +02002419 p->numa_faults = kzalloc(size, GFP_KERNEL|__GFP_NOWARN);
2420 if (!p->numa_faults)
Mel Gormanf809ca92013-10-07 11:28:57 +01002421 return;
Mel Gorman745d6142013-10-07 11:28:59 +01002422
Mel Gorman83e1d2c2013-10-07 11:29:27 +01002423 p->total_numa_faults = 0;
Rik van Riel04bb2f92013-10-07 11:29:36 +01002424 memset(p->numa_faults_locality, 0, sizeof(p->numa_faults_locality));
Mel Gormanf809ca92013-10-07 11:28:57 +01002425 }
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002426
Mel Gormanfb003b82012-11-15 09:01:14 +00002427 /*
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002428 * First accesses are treated as private, otherwise consider accesses
2429 * to be private if the accessing pid has not changed
2430 */
2431 if (unlikely(last_cpupid == (-1 & LAST_CPUPID_MASK))) {
2432 priv = 1;
2433 } else {
2434 priv = cpupid_match_pid(p, last_cpupid);
Peter Zijlstra6688cc02013-10-07 11:29:24 +01002435 if (!priv && !(flags & TNF_NO_GROUP))
Mel Gorman3e6a9412013-10-07 11:29:35 +01002436 task_numa_group(p, last_cpupid, flags, &priv);
Peter Zijlstra8c8a7432013-10-07 11:29:21 +01002437 }
2438
Rik van Riel792568e2014-04-11 13:00:27 -04002439 /*
2440 * If a workload spans multiple NUMA nodes, a shared fault that
2441 * occurs wholly within the set of nodes that the workload is
2442 * actively using should be counted as local. This allows the
2443 * scan rate to slow down when a workload has settled down.
2444 */
Jann Horncb361d82019-07-16 17:20:47 +02002445 ng = deref_curr_numa_group(p);
Rik van Riel4142c3e2016-01-25 17:07:39 -05002446 if (!priv && !local && ng && ng->active_nodes > 1 &&
2447 numa_is_active_node(cpu_node, ng) &&
2448 numa_is_active_node(mem_node, ng))
Rik van Riel792568e2014-04-11 13:00:27 -04002449 local = 1;
2450
Rik van Riel2739d3e2013-10-07 11:29:41 +01002451 /*
Yi Wange1ff5162018-11-05 08:50:13 +08002452 * Retry to migrate task to preferred node periodically, in case it
2453 * previously failed, or the scheduler moved us.
Rik van Riel2739d3e2013-10-07 11:29:41 +01002454 */
Srikar Dronamrajub6a60cf2018-06-20 22:33:00 +05302455 if (time_after(jiffies, p->numa_migrate_retry)) {
2456 task_numa_placement(p);
Mel Gorman6b9a7462013-10-07 11:29:11 +01002457 numa_migrate_preferred(p);
Srikar Dronamrajub6a60cf2018-06-20 22:33:00 +05302458 }
Mel Gorman6b9a7462013-10-07 11:29:11 +01002459
Ingo Molnarb32e86b2013-10-07 11:29:30 +01002460 if (migrated)
2461 p->numa_pages_migrated += pages;
Mel Gorman074c2382015-03-25 15:55:42 -07002462 if (flags & TNF_MIGRATE_FAIL)
2463 p->numa_faults_locality[2] += pages;
Ingo Molnarb32e86b2013-10-07 11:29:30 +01002464
Iulia Manda44dba3d2014-10-31 02:13:31 +02002465 p->numa_faults[task_faults_idx(NUMA_MEMBUF, mem_node, priv)] += pages;
2466 p->numa_faults[task_faults_idx(NUMA_CPUBUF, cpu_node, priv)] += pages;
Rik van Riel792568e2014-04-11 13:00:27 -04002467 p->numa_faults_locality[local] += pages;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002468}
2469
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002470static void reset_ptenuma_scan(struct task_struct *p)
2471{
Jason Low7e5a2c12015-04-30 17:28:14 -07002472 /*
2473 * We only did a read acquisition of the mmap sem, so
2474 * p->mm->numa_scan_seq is written to without exclusive access
2475 * and the update is not guaranteed to be atomic. That's not
2476 * much of an issue though, since this is just used for
2477 * statistical sampling. Use READ_ONCE/WRITE_ONCE, which are not
2478 * expensive, to avoid any form of compiler optimizations:
2479 */
Jason Low316c1608d2015-04-28 13:00:20 -07002480 WRITE_ONCE(p->mm->numa_scan_seq, READ_ONCE(p->mm->numa_scan_seq) + 1);
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002481 p->mm->numa_scan_offset = 0;
2482}
2483
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002484/*
2485 * The expensive part of numa migration is done from task_work context.
2486 * Triggered from task_tick_numa().
2487 */
Valentin Schneider9434f9f2019-07-15 11:25:08 +01002488static void task_numa_work(struct callback_head *work)
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002489{
2490 unsigned long migrate, next_scan, now = jiffies;
2491 struct task_struct *p = current;
2492 struct mm_struct *mm = p->mm;
Rik van Riel51170842015-11-05 15:56:23 -05002493 u64 runtime = p->se.sum_exec_runtime;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002494 struct vm_area_struct *vma;
Mel Gorman9f406042012-11-14 18:34:32 +00002495 unsigned long start, end;
Mel Gorman598f0ec2013-10-07 11:28:55 +01002496 unsigned long nr_pte_updates = 0;
Rik van Riel4620f8c2015-09-11 09:00:27 -04002497 long pages, virtpages;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002498
Peter Zijlstra9148a3a2016-09-20 22:34:51 +02002499 SCHED_WARN_ON(p != container_of(work, struct task_struct, numa_work));
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002500
Valentin Schneiderb34920d2019-07-15 11:25:07 +01002501 work->next = work;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002502 /*
2503 * Who cares about NUMA placement when they're dying.
2504 *
2505 * NOTE: make sure not to dereference p->mm before this check,
2506 * exit_task_work() happens _after_ exit_mm() so we could be called
2507 * without p->mm even though we still had it when we enqueued this
2508 * work.
2509 */
2510 if (p->flags & PF_EXITING)
2511 return;
2512
Mel Gorman930aa172013-10-07 11:29:37 +01002513 if (!mm->numa_next_scan) {
Mel Gorman7e8d16b2013-10-07 11:28:54 +01002514 mm->numa_next_scan = now +
2515 msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
Mel Gormanb8593bf2012-11-21 01:18:23 +00002516 }
2517
2518 /*
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002519 * Enforce maximal scan/migration frequency..
2520 */
2521 migrate = mm->numa_next_scan;
2522 if (time_before(now, migrate))
2523 return;
2524
Mel Gorman598f0ec2013-10-07 11:28:55 +01002525 if (p->numa_scan_period == 0) {
2526 p->numa_scan_period_max = task_scan_max(p);
Rik van Rielb5dd77c2017-07-31 15:28:47 -04002527 p->numa_scan_period = task_scan_start(p);
Mel Gorman598f0ec2013-10-07 11:28:55 +01002528 }
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002529
Mel Gormanfb003b82012-11-15 09:01:14 +00002530 next_scan = now + msecs_to_jiffies(p->numa_scan_period);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002531 if (cmpxchg(&mm->numa_next_scan, migrate, next_scan) != migrate)
2532 return;
2533
Mel Gormane14808b2012-11-19 10:59:15 +00002534 /*
Peter Zijlstra19a78d12013-10-07 11:28:51 +01002535 * Delay this task enough that another task of this mm will likely win
2536 * the next time around.
2537 */
2538 p->node_stamp += 2 * TICK_NSEC;
2539
Mel Gorman9f406042012-11-14 18:34:32 +00002540 start = mm->numa_scan_offset;
2541 pages = sysctl_numa_balancing_scan_size;
2542 pages <<= 20 - PAGE_SHIFT; /* MB in pages */
Rik van Riel4620f8c2015-09-11 09:00:27 -04002543 virtpages = pages * 8; /* Scan up to this much virtual space */
Mel Gorman9f406042012-11-14 18:34:32 +00002544 if (!pages)
2545 return;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002546
Rik van Riel4620f8c2015-09-11 09:00:27 -04002547
Vlastimil Babka8655d542017-05-15 15:13:16 +02002548 if (!down_read_trylock(&mm->mmap_sem))
2549 return;
Mel Gorman9f406042012-11-14 18:34:32 +00002550 vma = find_vma(mm, start);
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002551 if (!vma) {
2552 reset_ptenuma_scan(p);
Mel Gorman9f406042012-11-14 18:34:32 +00002553 start = 0;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002554 vma = mm->mmap;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002555 }
Mel Gorman9f406042012-11-14 18:34:32 +00002556 for (; vma; vma = vma->vm_next) {
Naoya Horiguchi6b79c572015-04-07 14:26:47 -07002557 if (!vma_migratable(vma) || !vma_policy_mof(vma) ||
Mel Gorman8e76d4e2015-06-10 11:15:00 -07002558 is_vm_hugetlb_page(vma) || (vma->vm_flags & VM_MIXEDMAP)) {
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002559 continue;
Naoya Horiguchi6b79c572015-04-07 14:26:47 -07002560 }
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002561
Mel Gorman4591ce4f2013-10-07 11:29:13 +01002562 /*
2563 * Shared library pages mapped by multiple processes are not
2564 * migrated as it is expected they are cache replicated. Avoid
2565 * hinting faults in read-only file-backed mappings or the vdso
2566 * as migrating the pages will be of marginal benefit.
2567 */
2568 if (!vma->vm_mm ||
2569 (vma->vm_file && (vma->vm_flags & (VM_READ|VM_WRITE)) == (VM_READ)))
2570 continue;
2571
Mel Gorman3c67f472013-12-18 17:08:40 -08002572 /*
2573 * Skip inaccessible VMAs to avoid any confusion between
2574 * PROT_NONE and NUMA hinting ptes
2575 */
2576 if (!(vma->vm_flags & (VM_READ | VM_EXEC | VM_WRITE)))
2577 continue;
2578
Mel Gorman9f406042012-11-14 18:34:32 +00002579 do {
2580 start = max(start, vma->vm_start);
2581 end = ALIGN(start + (pages << PAGE_SHIFT), HPAGE_SIZE);
2582 end = min(end, vma->vm_end);
Rik van Riel4620f8c2015-09-11 09:00:27 -04002583 nr_pte_updates = change_prot_numa(vma, start, end);
Mel Gorman598f0ec2013-10-07 11:28:55 +01002584
2585 /*
Rik van Riel4620f8c2015-09-11 09:00:27 -04002586 * Try to scan sysctl_numa_balancing_size worth of
2587 * hpages that have at least one present PTE that
2588 * is not already pte-numa. If the VMA contains
2589 * areas that are unused or already full of prot_numa
2590 * PTEs, scan up to virtpages, to skip through those
2591 * areas faster.
Mel Gorman598f0ec2013-10-07 11:28:55 +01002592 */
2593 if (nr_pte_updates)
2594 pages -= (end - start) >> PAGE_SHIFT;
Rik van Riel4620f8c2015-09-11 09:00:27 -04002595 virtpages -= (end - start) >> PAGE_SHIFT;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002596
Mel Gorman9f406042012-11-14 18:34:32 +00002597 start = end;
Rik van Riel4620f8c2015-09-11 09:00:27 -04002598 if (pages <= 0 || virtpages <= 0)
Mel Gorman9f406042012-11-14 18:34:32 +00002599 goto out;
Rik van Riel3cf19622014-02-18 17:12:44 -05002600
2601 cond_resched();
Mel Gorman9f406042012-11-14 18:34:32 +00002602 } while (end != vma->vm_end);
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002603 }
2604
Mel Gorman9f406042012-11-14 18:34:32 +00002605out:
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002606 /*
Peter Zijlstrac69307d2013-10-07 11:28:41 +01002607 * It is possible to reach the end of the VMA list but the last few
2608 * VMAs are not guaranteed to the vma_migratable. If they are not, we
2609 * would find the !migratable VMA on the next scan but not reset the
2610 * scanner to the start so check it now.
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002611 */
2612 if (vma)
Mel Gorman9f406042012-11-14 18:34:32 +00002613 mm->numa_scan_offset = start;
Peter Zijlstra6e5fb222012-10-25 14:16:45 +02002614 else
2615 reset_ptenuma_scan(p);
2616 up_read(&mm->mmap_sem);
Rik van Riel51170842015-11-05 15:56:23 -05002617
2618 /*
2619 * Make sure tasks use at least 32x as much time to run other code
2620 * than they used here, to limit NUMA PTE scanning overhead to 3% max.
2621 * Usually update_task_scan_period slows down scanning enough; on an
2622 * overloaded system we need to limit overhead on a per task basis.
2623 */
2624 if (unlikely(p->se.sum_exec_runtime != runtime)) {
2625 u64 diff = p->se.sum_exec_runtime - runtime;
2626 p->node_stamp += 32 * diff;
2627 }
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002628}
2629
Valentin Schneiderd35927a2019-07-15 11:25:06 +01002630void init_numa_balancing(unsigned long clone_flags, struct task_struct *p)
2631{
2632 int mm_users = 0;
2633 struct mm_struct *mm = p->mm;
2634
2635 if (mm) {
2636 mm_users = atomic_read(&mm->mm_users);
2637 if (mm_users == 1) {
2638 mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
2639 mm->numa_scan_seq = 0;
2640 }
2641 }
2642 p->node_stamp = 0;
2643 p->numa_scan_seq = mm ? mm->numa_scan_seq : 0;
2644 p->numa_scan_period = sysctl_numa_balancing_scan_delay;
Valentin Schneiderb34920d2019-07-15 11:25:07 +01002645 /* Protect against double add, see task_tick_numa and task_numa_work */
Valentin Schneiderd35927a2019-07-15 11:25:06 +01002646 p->numa_work.next = &p->numa_work;
2647 p->numa_faults = NULL;
2648 RCU_INIT_POINTER(p->numa_group, NULL);
2649 p->last_task_numa_placement = 0;
2650 p->last_sum_exec_runtime = 0;
2651
Valentin Schneiderb34920d2019-07-15 11:25:07 +01002652 init_task_work(&p->numa_work, task_numa_work);
2653
Valentin Schneiderd35927a2019-07-15 11:25:06 +01002654 /* New address space, reset the preferred nid */
2655 if (!(clone_flags & CLONE_VM)) {
2656 p->numa_preferred_nid = NUMA_NO_NODE;
2657 return;
2658 }
2659
2660 /*
2661 * New thread, keep existing numa_preferred_nid which should be copied
2662 * already by arch_dup_task_struct but stagger when scans start.
2663 */
2664 if (mm) {
2665 unsigned int delay;
2666
2667 delay = min_t(unsigned int, task_scan_max(current),
2668 current->numa_scan_period * mm_users * NSEC_PER_MSEC);
2669 delay += 2 * TICK_NSEC;
2670 p->node_stamp = delay;
2671 }
2672}
2673
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002674/*
2675 * Drive the periodic memory faults..
2676 */
YueHaibingb1546ed2019-04-18 22:47:13 +08002677static void task_tick_numa(struct rq *rq, struct task_struct *curr)
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002678{
2679 struct callback_head *work = &curr->numa_work;
2680 u64 period, now;
2681
2682 /*
2683 * We don't care about NUMA placement if we don't have memory.
2684 */
2685 if (!curr->mm || (curr->flags & PF_EXITING) || work->next != work)
2686 return;
2687
2688 /*
2689 * Using runtime rather than walltime has the dual advantage that
2690 * we (mostly) drive the selection from busy threads and that the
2691 * task needs to have done some actual work before we bother with
2692 * NUMA placement.
2693 */
2694 now = curr->se.sum_exec_runtime;
2695 period = (u64)curr->numa_scan_period * NSEC_PER_MSEC;
2696
Rik van Riel25b3e5a2015-11-05 15:56:22 -05002697 if (now > curr->node_stamp + period) {
Peter Zijlstra4b96a292012-10-25 14:16:47 +02002698 if (!curr->node_stamp)
Rik van Rielb5dd77c2017-07-31 15:28:47 -04002699 curr->numa_scan_period = task_scan_start(curr);
Peter Zijlstra19a78d12013-10-07 11:28:51 +01002700 curr->node_stamp += period;
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002701
Valentin Schneiderb34920d2019-07-15 11:25:07 +01002702 if (!time_before(jiffies, curr->mm->numa_next_scan))
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002703 task_work_add(curr, work, true);
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002704 }
2705}
Rik van Riel3fed3822017-06-23 12:55:29 -04002706
Srikar Dronamraju3f9672b2018-09-21 23:18:58 +05302707static void update_scan_period(struct task_struct *p, int new_cpu)
2708{
2709 int src_nid = cpu_to_node(task_cpu(p));
2710 int dst_nid = cpu_to_node(new_cpu);
2711
Mel Gorman05cbdf42018-09-21 23:18:59 +05302712 if (!static_branch_likely(&sched_numa_balancing))
2713 return;
2714
Srikar Dronamraju3f9672b2018-09-21 23:18:58 +05302715 if (!p->mm || !p->numa_faults || (p->flags & PF_EXITING))
2716 return;
2717
Mel Gorman05cbdf42018-09-21 23:18:59 +05302718 if (src_nid == dst_nid)
2719 return;
2720
2721 /*
2722 * Allow resets if faults have been trapped before one scan
2723 * has completed. This is most likely due to a new task that
2724 * is pulled cross-node due to wakeups or load balancing.
2725 */
2726 if (p->numa_scan_seq) {
2727 /*
2728 * Avoid scan adjustments if moving to the preferred
2729 * node or if the task was not previously running on
2730 * the preferred node.
2731 */
2732 if (dst_nid == p->numa_preferred_nid ||
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08002733 (p->numa_preferred_nid != NUMA_NO_NODE &&
2734 src_nid != p->numa_preferred_nid))
Mel Gorman05cbdf42018-09-21 23:18:59 +05302735 return;
2736 }
2737
2738 p->numa_scan_period = task_scan_start(p);
Srikar Dronamraju3f9672b2018-09-21 23:18:58 +05302739}
2740
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002741#else
2742static void task_tick_numa(struct rq *rq, struct task_struct *curr)
2743{
2744}
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01002745
2746static inline void account_numa_enqueue(struct rq *rq, struct task_struct *p)
2747{
2748}
2749
2750static inline void account_numa_dequeue(struct rq *rq, struct task_struct *p)
2751{
2752}
Rik van Riel3fed3822017-06-23 12:55:29 -04002753
Srikar Dronamraju3f9672b2018-09-21 23:18:58 +05302754static inline void update_scan_period(struct task_struct *p, int new_cpu)
2755{
2756}
2757
Peter Zijlstracbee9f82012-10-25 14:16:43 +02002758#endif /* CONFIG_NUMA_BALANCING */
2759
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02002760static void
2761account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
2762{
2763 update_load_add(&cfs_rq->load, se->load.weight);
Peter Zijlstra367456c2012-02-20 21:49:09 +01002764#ifdef CONFIG_SMP
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01002765 if (entity_is_task(se)) {
2766 struct rq *rq = rq_of(cfs_rq);
2767
2768 account_numa_enqueue(rq, task_of(se));
2769 list_add(&se->group_node, &rq->cfs_tasks);
2770 }
Peter Zijlstra367456c2012-02-20 21:49:09 +01002771#endif
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02002772 cfs_rq->nr_running++;
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02002773}
2774
2775static void
2776account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
2777{
2778 update_load_sub(&cfs_rq->load, se->load.weight);
Tim Chenbfdb1982016-02-01 14:47:59 -08002779#ifdef CONFIG_SMP
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01002780 if (entity_is_task(se)) {
2781 account_numa_dequeue(rq_of(cfs_rq), task_of(se));
Bharata B Raob87f1722008-09-25 09:53:54 +05302782 list_del_init(&se->group_node);
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01002783 }
Tim Chenbfdb1982016-02-01 14:47:59 -08002784#endif
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02002785 cfs_rq->nr_running--;
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02002786}
2787
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02002788/*
2789 * Signed add and clamp on underflow.
2790 *
2791 * Explicitly do a load-store to ensure the intermediate value never hits
2792 * memory. This allows lockless observations without ever seeing the negative
2793 * values.
2794 */
2795#define add_positive(_ptr, _val) do { \
2796 typeof(_ptr) ptr = (_ptr); \
2797 typeof(_val) val = (_val); \
2798 typeof(*ptr) res, var = READ_ONCE(*ptr); \
2799 \
2800 res = var + val; \
2801 \
2802 if (val < 0 && res > var) \
2803 res = 0; \
2804 \
2805 WRITE_ONCE(*ptr, res); \
2806} while (0)
2807
2808/*
2809 * Unsigned subtract and clamp on underflow.
2810 *
2811 * Explicitly do a load-store to ensure the intermediate value never hits
2812 * memory. This allows lockless observations without ever seeing the negative
2813 * values.
2814 */
2815#define sub_positive(_ptr, _val) do { \
2816 typeof(_ptr) ptr = (_ptr); \
2817 typeof(*ptr) val = (_val); \
2818 typeof(*ptr) res, var = READ_ONCE(*ptr); \
2819 res = var - val; \
2820 if (res > var) \
2821 res = 0; \
2822 WRITE_ONCE(*ptr, res); \
2823} while (0)
2824
Patrick Bellasib5c0ce72018-11-05 14:54:00 +00002825/*
2826 * Remove and clamp on negative, from a local variable.
2827 *
2828 * A variant of sub_positive(), which does not use explicit load-store
2829 * and is thus optimized for local variable updates.
2830 */
2831#define lsub_positive(_ptr, _val) do { \
2832 typeof(_ptr) ptr = (_ptr); \
2833 *ptr -= min_t(typeof(*ptr), *ptr, _val); \
2834} while (0)
2835
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02002836#ifdef CONFIG_SMP
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02002837static inline void
2838enqueue_runnable_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
2839{
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02002840 cfs_rq->runnable_weight += se->runnable_weight;
2841
2842 cfs_rq->avg.runnable_load_avg += se->avg.runnable_load_avg;
2843 cfs_rq->avg.runnable_load_sum += se_runnable(se) * se->avg.runnable_load_sum;
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02002844}
2845
2846static inline void
2847dequeue_runnable_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
2848{
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02002849 cfs_rq->runnable_weight -= se->runnable_weight;
2850
2851 sub_positive(&cfs_rq->avg.runnable_load_avg, se->avg.runnable_load_avg);
2852 sub_positive(&cfs_rq->avg.runnable_load_sum,
2853 se_runnable(se) * se->avg.runnable_load_sum);
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02002854}
2855
2856static inline void
2857enqueue_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
2858{
2859 cfs_rq->avg.load_avg += se->avg.load_avg;
2860 cfs_rq->avg.load_sum += se_weight(se) * se->avg.load_sum;
2861}
2862
2863static inline void
2864dequeue_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
2865{
2866 sub_positive(&cfs_rq->avg.load_avg, se->avg.load_avg);
2867 sub_positive(&cfs_rq->avg.load_sum, se_weight(se) * se->avg.load_sum);
2868}
2869#else
2870static inline void
2871enqueue_runnable_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se) { }
2872static inline void
2873dequeue_runnable_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se) { }
2874static inline void
2875enqueue_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se) { }
2876static inline void
2877dequeue_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se) { }
2878#endif
2879
Vincent Guittot90593932017-05-17 11:50:45 +02002880static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02002881 unsigned long weight, unsigned long runnable)
Vincent Guittot90593932017-05-17 11:50:45 +02002882{
2883 if (se->on_rq) {
2884 /* commit outstanding execution time */
2885 if (cfs_rq->curr == se)
2886 update_curr(cfs_rq);
2887 account_entity_dequeue(cfs_rq, se);
2888 dequeue_runnable_load_avg(cfs_rq, se);
2889 }
2890 dequeue_load_avg(cfs_rq, se);
2891
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02002892 se->runnable_weight = runnable;
Vincent Guittot90593932017-05-17 11:50:45 +02002893 update_load_set(&se->load, weight);
2894
2895#ifdef CONFIG_SMP
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02002896 do {
2897 u32 divider = LOAD_AVG_MAX - 1024 + se->avg.period_contrib;
2898
2899 se->avg.load_avg = div_u64(se_weight(se) * se->avg.load_sum, divider);
2900 se->avg.runnable_load_avg =
2901 div_u64(se_runnable(se) * se->avg.runnable_load_sum, divider);
2902 } while (0);
Vincent Guittot90593932017-05-17 11:50:45 +02002903#endif
2904
2905 enqueue_load_avg(cfs_rq, se);
2906 if (se->on_rq) {
2907 account_entity_enqueue(cfs_rq, se);
2908 enqueue_runnable_load_avg(cfs_rq, se);
2909 }
2910}
2911
2912void reweight_task(struct task_struct *p, int prio)
2913{
2914 struct sched_entity *se = &p->se;
2915 struct cfs_rq *cfs_rq = cfs_rq_of(se);
2916 struct load_weight *load = &se->load;
2917 unsigned long weight = scale_load(sched_prio_to_weight[prio]);
2918
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02002919 reweight_entity(cfs_rq, se, weight, weight);
Vincent Guittot90593932017-05-17 11:50:45 +02002920 load->inv_weight = sched_prio_to_wmult[prio];
2921}
2922
Yong Zhang3ff6dca2011-01-24 15:33:52 +08002923#ifdef CONFIG_FAIR_GROUP_SCHED
Vincent Guittot387f77c2018-02-13 09:59:42 +01002924#ifdef CONFIG_SMP
Peter Zijlstracef27402017-05-09 11:04:07 +02002925/*
2926 * All this does is approximate the hierarchical proportion which includes that
2927 * global sum we all love to hate.
2928 *
2929 * That is, the weight of a group entity, is the proportional share of the
2930 * group weight based on the group runqueue weights. That is:
2931 *
2932 * tg->weight * grq->load.weight
2933 * ge->load.weight = ----------------------------- (1)
2934 * \Sum grq->load.weight
2935 *
2936 * Now, because computing that sum is prohibitively expensive to compute (been
2937 * there, done that) we approximate it with this average stuff. The average
2938 * moves slower and therefore the approximation is cheaper and more stable.
2939 *
2940 * So instead of the above, we substitute:
2941 *
2942 * grq->load.weight -> grq->avg.load_avg (2)
2943 *
2944 * which yields the following:
2945 *
2946 * tg->weight * grq->avg.load_avg
2947 * ge->load.weight = ------------------------------ (3)
2948 * tg->load_avg
2949 *
2950 * Where: tg->load_avg ~= \Sum grq->avg.load_avg
2951 *
2952 * That is shares_avg, and it is right (given the approximation (2)).
2953 *
2954 * The problem with it is that because the average is slow -- it was designed
2955 * to be exactly that of course -- this leads to transients in boundary
2956 * conditions. In specific, the case where the group was idle and we start the
2957 * one task. It takes time for our CPU's grq->avg.load_avg to build up,
2958 * yielding bad latency etc..
2959 *
2960 * Now, in that special case (1) reduces to:
2961 *
2962 * tg->weight * grq->load.weight
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02002963 * ge->load.weight = ----------------------------- = tg->weight (4)
Peter Zijlstracef27402017-05-09 11:04:07 +02002964 * grp->load.weight
2965 *
2966 * That is, the sum collapses because all other CPUs are idle; the UP scenario.
2967 *
2968 * So what we do is modify our approximation (3) to approach (4) in the (near)
2969 * UP case, like:
2970 *
2971 * ge->load.weight =
2972 *
2973 * tg->weight * grq->load.weight
2974 * --------------------------------------------------- (5)
2975 * tg->load_avg - grq->avg.load_avg + grq->load.weight
2976 *
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02002977 * But because grq->load.weight can drop to 0, resulting in a divide by zero,
2978 * we need to use grq->avg.load_avg as its lower bound, which then gives:
2979 *
2980 *
2981 * tg->weight * grq->load.weight
2982 * ge->load.weight = ----------------------------- (6)
2983 * tg_load_avg'
2984 *
2985 * Where:
2986 *
2987 * tg_load_avg' = tg->load_avg - grq->avg.load_avg +
2988 * max(grq->load.weight, grq->avg.load_avg)
Peter Zijlstracef27402017-05-09 11:04:07 +02002989 *
2990 * And that is shares_weight and is icky. In the (near) UP case it approaches
2991 * (4) while in the normal case it approaches (3). It consistently
2992 * overestimates the ge->load.weight and therefore:
2993 *
2994 * \Sum ge->load.weight >= tg->weight
2995 *
2996 * hence icky!
2997 */
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04002998static long calc_group_shares(struct cfs_rq *cfs_rq)
Yong Zhang3ff6dca2011-01-24 15:33:52 +08002999{
Peter Zijlstra7c80cfc2017-05-06 16:03:17 +02003000 long tg_weight, tg_shares, load, shares;
3001 struct task_group *tg = cfs_rq->tg;
3002
3003 tg_shares = READ_ONCE(tg->shares);
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003004
Peter Zijlstra3d4b60d2017-05-11 18:16:06 +02003005 load = max(scale_load_down(cfs_rq->load.weight), cfs_rq->avg.load_avg);
Peter Zijlstraea1dc6f2016-06-24 16:11:02 +02003006
3007 tg_weight = atomic_long_read(&tg->load_avg);
3008
3009 /* Ensure tg_weight >= load */
3010 tg_weight -= cfs_rq->tg_load_avg_contrib;
3011 tg_weight += load;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003012
Peter Zijlstra7c80cfc2017-05-06 16:03:17 +02003013 shares = (tg_shares * load);
Peter Zijlstracf5f0ac2011-10-13 16:52:28 +02003014 if (tg_weight)
3015 shares /= tg_weight;
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003016
Dietmar Eggemannb8fd8422017-01-11 11:29:47 +00003017 /*
3018 * MIN_SHARES has to be unscaled here to support per-CPU partitioning
3019 * of a group with small tg->shares value. It is a floor value which is
3020 * assigned as a minimum load.weight to the sched_entity representing
3021 * the group on a CPU.
3022 *
3023 * E.g. on 64-bit for a group with tg->shares of scale_load(15)=15*1024
3024 * on an 8-core system with 8 tasks each runnable on one CPU shares has
3025 * to be 15*1024*1/8=1920 instead of scale_load(MIN_SHARES)=2*1024. In
3026 * case no task is runnable on a CPU MIN_SHARES=2 should be returned
3027 * instead of 0.
3028 */
Peter Zijlstra7c80cfc2017-05-06 16:03:17 +02003029 return clamp_t(long, shares, MIN_SHARES, tg_shares);
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003030}
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003031
3032/*
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02003033 * This calculates the effective runnable weight for a group entity based on
3034 * the group entity weight calculated above.
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003035 *
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02003036 * Because of the above approximation (2), our group entity weight is
3037 * an load_avg based ratio (3). This means that it includes blocked load and
3038 * does not represent the runnable weight.
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003039 *
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02003040 * Approximate the group entity's runnable weight per ratio from the group
3041 * runqueue:
3042 *
3043 * grq->avg.runnable_load_avg
3044 * ge->runnable_weight = ge->load.weight * -------------------------- (7)
3045 * grq->avg.load_avg
3046 *
3047 * However, analogous to above, since the avg numbers are slow, this leads to
3048 * transients in the from-idle case. Instead we use:
3049 *
3050 * ge->runnable_weight = ge->load.weight *
3051 *
3052 * max(grq->avg.runnable_load_avg, grq->runnable_weight)
3053 * ----------------------------------------------------- (8)
3054 * max(grq->avg.load_avg, grq->load.weight)
3055 *
3056 * Where these max() serve both to use the 'instant' values to fix the slow
3057 * from-idle and avoid the /0 on to-idle, similar to (6).
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003058 */
3059static long calc_group_runnable(struct cfs_rq *cfs_rq, long shares)
3060{
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02003061 long runnable, load_avg;
3062
3063 load_avg = max(cfs_rq->avg.load_avg,
3064 scale_load_down(cfs_rq->load.weight));
3065
3066 runnable = max(cfs_rq->avg.runnable_load_avg,
3067 scale_load_down(cfs_rq->runnable_weight));
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003068
3069 runnable *= shares;
3070 if (load_avg)
3071 runnable /= load_avg;
Peter Zijlstra17de4ee2017-08-24 13:06:35 +02003072
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003073 return clamp_t(long, runnable, MIN_SHARES, shares);
3074}
Vincent Guittot387f77c2018-02-13 09:59:42 +01003075#endif /* CONFIG_SMP */
Peter Zijlstraea1dc6f2016-06-24 16:11:02 +02003076
Paul Turner82958362012-10-04 13:18:31 +02003077static inline int throttled_hierarchy(struct cfs_rq *cfs_rq);
3078
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003079/*
3080 * Recomputes the group entity based on the current state of its group
3081 * runqueue.
3082 */
3083static void update_cfs_group(struct sched_entity *se)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003084{
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003085 struct cfs_rq *gcfs_rq = group_cfs_rq(se);
3086 long shares, runnable;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003087
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003088 if (!gcfs_rq)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003089 return;
Vincent Guittot89ee0482016-12-21 16:50:26 +01003090
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003091 if (throttled_hierarchy(gcfs_rq))
Vincent Guittot89ee0482016-12-21 16:50:26 +01003092 return;
3093
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003094#ifndef CONFIG_SMP
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003095 runnable = shares = READ_ONCE(gcfs_rq->tg->shares);
Peter Zijlstra7c80cfc2017-05-06 16:03:17 +02003096
3097 if (likely(se->load.weight == shares))
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003098 return;
Peter Zijlstra7c80cfc2017-05-06 16:03:17 +02003099#else
Josef Bacik2c8e4dc2017-08-03 11:13:39 -04003100 shares = calc_group_shares(gcfs_rq);
3101 runnable = calc_group_runnable(gcfs_rq, shares);
Yong Zhang3ff6dca2011-01-24 15:33:52 +08003102#endif
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003103
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003104 reweight_entity(cfs_rq_of(se), se, shares, runnable);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003105}
Vincent Guittot89ee0482016-12-21 16:50:26 +01003106
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003107#else /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003108static inline void update_cfs_group(struct sched_entity *se)
Peter Zijlstra2069dd72010-11-15 15:47:00 -08003109{
3110}
3111#endif /* CONFIG_FAIR_GROUP_SCHED */
3112
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003113static inline void cfs_rq_util_change(struct cfs_rq *cfs_rq, int flags)
Viresh Kumara030d732017-05-24 10:59:52 +05303114{
Linus Torvalds43964402017-09-05 12:19:08 -07003115 struct rq *rq = rq_of(cfs_rq);
3116
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003117 if (&rq->cfs == cfs_rq || (flags & SCHED_CPUFREQ_MIGRATION)) {
Viresh Kumara030d732017-05-24 10:59:52 +05303118 /*
3119 * There are a few boundary cases this might miss but it should
3120 * get called often enough that that should (hopefully) not be
Joel Fernandes9783be22017-12-15 07:39:43 -08003121 * a real problem.
Viresh Kumara030d732017-05-24 10:59:52 +05303122 *
3123 * It will not get called when we go idle, because the idle
3124 * thread is a different class (!fair), nor will the utilization
3125 * number include things like RT tasks.
3126 *
3127 * As is, the util number is not freq-invariant (we'd have to
3128 * implement arch_scale_freq_capacity() for that).
3129 *
3130 * See cpu_util().
3131 */
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003132 cpufreq_update_util(rq, flags);
Viresh Kumara030d732017-05-24 10:59:52 +05303133 }
3134}
3135
Alex Shi141965c2013-06-26 13:05:39 +08003136#ifdef CONFIG_SMP
Paul Turnerc566e8e2012-10-04 13:18:30 +02003137#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra7c3edd22016-07-13 10:56:25 +02003138/**
3139 * update_tg_load_avg - update the tg's load avg
3140 * @cfs_rq: the cfs_rq whose avg changed
3141 * @force: update regardless of how small the difference
3142 *
3143 * This function 'ensures': tg->load_avg := \Sum tg->cfs_rq[]->avg.load.
3144 * However, because tg->load_avg is a global value there are performance
3145 * considerations.
3146 *
3147 * In order to avoid having to look at the other cfs_rq's, we use a
3148 * differential update where we store the last value we propagated. This in
3149 * turn allows skipping updates if the differential is 'small'.
3150 *
Rik van Riel815abf52017-06-23 12:55:30 -04003151 * Updating tg's load_avg is necessary before update_cfs_share().
Paul Turnerbb17f652012-10-04 13:18:31 +02003152 */
Yuyang Du9d89c252015-07-15 08:04:37 +08003153static inline void update_tg_load_avg(struct cfs_rq *cfs_rq, int force)
Paul Turnerbb17f652012-10-04 13:18:31 +02003154{
Yuyang Du9d89c252015-07-15 08:04:37 +08003155 long delta = cfs_rq->avg.load_avg - cfs_rq->tg_load_avg_contrib;
Paul Turnerbb17f652012-10-04 13:18:31 +02003156
Waiman Longaa0b7ae2015-12-02 13:41:50 -05003157 /*
3158 * No need to update load_avg for root_task_group as it is not used.
3159 */
3160 if (cfs_rq->tg == &root_task_group)
3161 return;
3162
Yuyang Du9d89c252015-07-15 08:04:37 +08003163 if (force || abs(delta) > cfs_rq->tg_load_avg_contrib / 64) {
3164 atomic_long_add(delta, &cfs_rq->tg->load_avg);
3165 cfs_rq->tg_load_avg_contrib = cfs_rq->avg.load_avg;
Paul Turnerbb17f652012-10-04 13:18:31 +02003166 }
Paul Turner8165e142012-10-04 13:18:31 +02003167}
Dietmar Eggemannf5f97392014-02-26 11:19:33 +00003168
Byungchul Parkad936d82015-10-24 01:16:19 +09003169/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01003170 * Called within set_task_rq() right before setting a task's CPU. The
Byungchul Parkad936d82015-10-24 01:16:19 +09003171 * caller only guarantees p->pi_lock is held; no other assumptions,
3172 * including the state of rq->lock, should be made.
3173 */
3174void set_task_rq_fair(struct sched_entity *se,
3175 struct cfs_rq *prev, struct cfs_rq *next)
3176{
Peter Zijlstra0ccb9772017-03-28 11:08:20 +02003177 u64 p_last_update_time;
3178 u64 n_last_update_time;
3179
Byungchul Parkad936d82015-10-24 01:16:19 +09003180 if (!sched_feat(ATTACH_AGE_LOAD))
3181 return;
3182
3183 /*
3184 * We are supposed to update the task to "current" time, then its up to
3185 * date and ready to go to new CPU/cfs_rq. But we have difficulty in
3186 * getting what current time is, so simply throw away the out-of-date
3187 * time. This will result in the wakee task is less decayed, but giving
3188 * the wakee more load sounds not bad.
3189 */
Peter Zijlstra0ccb9772017-03-28 11:08:20 +02003190 if (!(se->avg.last_update_time && prev))
3191 return;
Byungchul Parkad936d82015-10-24 01:16:19 +09003192
3193#ifndef CONFIG_64BIT
Peter Zijlstra0ccb9772017-03-28 11:08:20 +02003194 {
Byungchul Parkad936d82015-10-24 01:16:19 +09003195 u64 p_last_update_time_copy;
3196 u64 n_last_update_time_copy;
3197
3198 do {
3199 p_last_update_time_copy = prev->load_last_update_time_copy;
3200 n_last_update_time_copy = next->load_last_update_time_copy;
3201
3202 smp_rmb();
3203
3204 p_last_update_time = prev->avg.last_update_time;
3205 n_last_update_time = next->avg.last_update_time;
3206
3207 } while (p_last_update_time != p_last_update_time_copy ||
3208 n_last_update_time != n_last_update_time_copy);
Byungchul Parkad936d82015-10-24 01:16:19 +09003209 }
Peter Zijlstra0ccb9772017-03-28 11:08:20 +02003210#else
3211 p_last_update_time = prev->avg.last_update_time;
3212 n_last_update_time = next->avg.last_update_time;
3213#endif
Vincent Guittot23127292019-01-23 16:26:53 +01003214 __update_load_avg_blocked_se(p_last_update_time, se);
Peter Zijlstra0ccb9772017-03-28 11:08:20 +02003215 se->avg.last_update_time = n_last_update_time;
Byungchul Parkad936d82015-10-24 01:16:19 +09003216}
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003217
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003218
3219/*
3220 * When on migration a sched_entity joins/leaves the PELT hierarchy, we need to
3221 * propagate its contribution. The key to this propagation is the invariant
3222 * that for each group:
3223 *
3224 * ge->avg == grq->avg (1)
3225 *
3226 * _IFF_ we look at the pure running and runnable sums. Because they
3227 * represent the very same entity, just at different points in the hierarchy.
3228 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003229 * Per the above update_tg_cfs_util() is trivial and simply copies the running
3230 * sum over (but still wrong, because the group entity and group rq do not have
3231 * their PELT windows aligned).
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003232 *
3233 * However, update_tg_cfs_runnable() is more complex. So we have:
3234 *
3235 * ge->avg.load_avg = ge->load.weight * ge->avg.runnable_avg (2)
3236 *
3237 * And since, like util, the runnable part should be directly transferable,
3238 * the following would _appear_ to be the straight forward approach:
3239 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003240 * grq->avg.load_avg = grq->load.weight * grq->avg.runnable_avg (3)
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003241 *
3242 * And per (1) we have:
3243 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003244 * ge->avg.runnable_avg == grq->avg.runnable_avg
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003245 *
3246 * Which gives:
3247 *
3248 * ge->load.weight * grq->avg.load_avg
3249 * ge->avg.load_avg = ----------------------------------- (4)
3250 * grq->load.weight
3251 *
3252 * Except that is wrong!
3253 *
3254 * Because while for entities historical weight is not important and we
3255 * really only care about our future and therefore can consider a pure
3256 * runnable sum, runqueues can NOT do this.
3257 *
3258 * We specifically want runqueues to have a load_avg that includes
3259 * historical weights. Those represent the blocked load, the load we expect
3260 * to (shortly) return to us. This only works by keeping the weights as
3261 * integral part of the sum. We therefore cannot decompose as per (3).
3262 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003263 * Another reason this doesn't work is that runnable isn't a 0-sum entity.
3264 * Imagine a rq with 2 tasks that each are runnable 2/3 of the time. Then the
3265 * rq itself is runnable anywhere between 2/3 and 1 depending on how the
3266 * runnable section of these tasks overlap (or not). If they were to perfectly
3267 * align the rq as a whole would be runnable 2/3 of the time. If however we
3268 * always have at least 1 runnable task, the rq as a whole is always runnable.
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003269 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003270 * So we'll have to approximate.. :/
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003271 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003272 * Given the constraint:
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003273 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003274 * ge->avg.running_sum <= ge->avg.runnable_sum <= LOAD_AVG_MAX
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003275 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003276 * We can construct a rule that adds runnable to a rq by assuming minimal
3277 * overlap.
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003278 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003279 * On removal, we'll assume each task is equally runnable; which yields:
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003280 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003281 * grq->avg.runnable_sum = grq->avg.load_sum / grq->load.weight
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003282 *
Vincent Guittota4c3c042017-11-16 15:21:52 +01003283 * XXX: only do this for the part of runnable > running ?
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003284 *
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003285 */
3286
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003287static inline void
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003288update_tg_cfs_util(struct cfs_rq *cfs_rq, struct sched_entity *se, struct cfs_rq *gcfs_rq)
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003289{
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003290 long delta = gcfs_rq->avg.util_avg - se->avg.util_avg;
3291
3292 /* Nothing to update */
3293 if (!delta)
3294 return;
3295
Vincent Guittota4c3c042017-11-16 15:21:52 +01003296 /*
3297 * The relation between sum and avg is:
3298 *
3299 * LOAD_AVG_MAX - 1024 + sa->period_contrib
3300 *
3301 * however, the PELT windows are not aligned between grq and gse.
3302 */
3303
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003304 /* Set new sched_entity's utilization */
3305 se->avg.util_avg = gcfs_rq->avg.util_avg;
3306 se->avg.util_sum = se->avg.util_avg * LOAD_AVG_MAX;
3307
3308 /* Update parent cfs_rq utilization */
3309 add_positive(&cfs_rq->avg.util_avg, delta);
3310 cfs_rq->avg.util_sum = cfs_rq->avg.util_avg * LOAD_AVG_MAX;
3311}
3312
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003313static inline void
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003314update_tg_cfs_runnable(struct cfs_rq *cfs_rq, struct sched_entity *se, struct cfs_rq *gcfs_rq)
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003315{
Vincent Guittota4c3c042017-11-16 15:21:52 +01003316 long delta_avg, running_sum, runnable_sum = gcfs_rq->prop_runnable_sum;
3317 unsigned long runnable_load_avg, load_avg;
3318 u64 runnable_load_sum, load_sum = 0;
3319 s64 delta_sum;
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003320
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003321 if (!runnable_sum)
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003322 return;
3323
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003324 gcfs_rq->prop_runnable_sum = 0;
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003325
Vincent Guittota4c3c042017-11-16 15:21:52 +01003326 if (runnable_sum >= 0) {
3327 /*
3328 * Add runnable; clip at LOAD_AVG_MAX. Reflects that until
3329 * the CPU is saturated running == runnable.
3330 */
3331 runnable_sum += se->avg.load_sum;
3332 runnable_sum = min(runnable_sum, (long)LOAD_AVG_MAX);
3333 } else {
3334 /*
3335 * Estimate the new unweighted runnable_sum of the gcfs_rq by
3336 * assuming all tasks are equally runnable.
3337 */
3338 if (scale_load_down(gcfs_rq->load.weight)) {
3339 load_sum = div_s64(gcfs_rq->avg.load_sum,
3340 scale_load_down(gcfs_rq->load.weight));
3341 }
3342
3343 /* But make sure to not inflate se's runnable */
3344 runnable_sum = min(se->avg.load_sum, load_sum);
3345 }
3346
3347 /*
3348 * runnable_sum can't be lower than running_sum
Vincent Guittot23127292019-01-23 16:26:53 +01003349 * Rescale running sum to be in the same range as runnable sum
3350 * running_sum is in [0 : LOAD_AVG_MAX << SCHED_CAPACITY_SHIFT]
3351 * runnable_sum is in [0 : LOAD_AVG_MAX]
Vincent Guittota4c3c042017-11-16 15:21:52 +01003352 */
Vincent Guittot23127292019-01-23 16:26:53 +01003353 running_sum = se->avg.util_sum >> SCHED_CAPACITY_SHIFT;
Vincent Guittota4c3c042017-11-16 15:21:52 +01003354 runnable_sum = max(runnable_sum, running_sum);
3355
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003356 load_sum = (s64)se_weight(se) * runnable_sum;
3357 load_avg = div_s64(load_sum, LOAD_AVG_MAX);
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003358
Vincent Guittota4c3c042017-11-16 15:21:52 +01003359 delta_sum = load_sum - (s64)se_weight(se) * se->avg.load_sum;
3360 delta_avg = load_avg - se->avg.load_avg;
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003361
Vincent Guittota4c3c042017-11-16 15:21:52 +01003362 se->avg.load_sum = runnable_sum;
3363 se->avg.load_avg = load_avg;
3364 add_positive(&cfs_rq->avg.load_avg, delta_avg);
3365 add_positive(&cfs_rq->avg.load_sum, delta_sum);
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003366
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003367 runnable_load_sum = (s64)se_runnable(se) * runnable_sum;
3368 runnable_load_avg = div_s64(runnable_load_sum, LOAD_AVG_MAX);
Vincent Guittota4c3c042017-11-16 15:21:52 +01003369 delta_sum = runnable_load_sum - se_weight(se) * se->avg.runnable_load_sum;
3370 delta_avg = runnable_load_avg - se->avg.runnable_load_avg;
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003371
Vincent Guittota4c3c042017-11-16 15:21:52 +01003372 se->avg.runnable_load_sum = runnable_sum;
3373 se->avg.runnable_load_avg = runnable_load_avg;
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003374
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003375 if (se->on_rq) {
Vincent Guittota4c3c042017-11-16 15:21:52 +01003376 add_positive(&cfs_rq->avg.runnable_load_avg, delta_avg);
3377 add_positive(&cfs_rq->avg.runnable_load_sum, delta_sum);
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003378 }
3379}
3380
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003381static inline void add_tg_cfs_propagate(struct cfs_rq *cfs_rq, long runnable_sum)
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003382{
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003383 cfs_rq->propagate = 1;
3384 cfs_rq->prop_runnable_sum += runnable_sum;
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003385}
3386
3387/* Update task and its cfs_rq load average */
3388static inline int propagate_entity_load_avg(struct sched_entity *se)
3389{
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003390 struct cfs_rq *cfs_rq, *gcfs_rq;
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003391
3392 if (entity_is_task(se))
3393 return 0;
3394
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003395 gcfs_rq = group_cfs_rq(se);
3396 if (!gcfs_rq->propagate)
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003397 return 0;
3398
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003399 gcfs_rq->propagate = 0;
3400
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003401 cfs_rq = cfs_rq_of(se);
3402
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003403 add_tg_cfs_propagate(cfs_rq, gcfs_rq->prop_runnable_sum);
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003404
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003405 update_tg_cfs_util(cfs_rq, se, gcfs_rq);
3406 update_tg_cfs_runnable(cfs_rq, se, gcfs_rq);
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003407
Qais Yousefba19f512019-06-04 12:14:56 +01003408 trace_pelt_cfs_tp(cfs_rq);
Qais Yousef8de62422019-06-04 12:14:57 +01003409 trace_pelt_se_tp(se);
Qais Yousefba19f512019-06-04 12:14:56 +01003410
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003411 return 1;
3412}
3413
Vincent Guittotbc427892017-03-17 14:47:22 +01003414/*
3415 * Check if we need to update the load and the utilization of a blocked
3416 * group_entity:
3417 */
3418static inline bool skip_blocked_update(struct sched_entity *se)
3419{
3420 struct cfs_rq *gcfs_rq = group_cfs_rq(se);
3421
3422 /*
3423 * If sched_entity still have not zero load or utilization, we have to
3424 * decay it:
3425 */
3426 if (se->avg.load_avg || se->avg.util_avg)
3427 return false;
3428
3429 /*
3430 * If there is a pending propagation, we have to update the load and
3431 * the utilization of the sched_entity:
3432 */
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003433 if (gcfs_rq->propagate)
Vincent Guittotbc427892017-03-17 14:47:22 +01003434 return false;
3435
3436 /*
3437 * Otherwise, the load and the utilization of the sched_entity is
3438 * already zero and there is no pending propagation, so it will be a
3439 * waste of time to try to decay it:
3440 */
3441 return true;
3442}
3443
Peter Zijlstra6e831252014-02-11 16:11:48 +01003444#else /* CONFIG_FAIR_GROUP_SCHED */
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003445
Yuyang Du9d89c252015-07-15 08:04:37 +08003446static inline void update_tg_load_avg(struct cfs_rq *cfs_rq, int force) {}
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003447
3448static inline int propagate_entity_load_avg(struct sched_entity *se)
3449{
3450 return 0;
3451}
3452
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003453static inline void add_tg_cfs_propagate(struct cfs_rq *cfs_rq, long runnable_sum) {}
Vincent Guittot09a43ac2016-11-08 10:53:45 +01003454
Peter Zijlstra6e831252014-02-11 16:11:48 +01003455#endif /* CONFIG_FAIR_GROUP_SCHED */
Paul Turnerc566e8e2012-10-04 13:18:30 +02003456
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003457/**
3458 * update_cfs_rq_load_avg - update the cfs_rq's load/util averages
Vincent Guittot23127292019-01-23 16:26:53 +01003459 * @now: current time, as per cfs_rq_clock_pelt()
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003460 * @cfs_rq: cfs_rq to update
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003461 *
3462 * The cfs_rq avg is the direct sum of all its entities (blocked and runnable)
3463 * avg. The immediate corollary is that all (fair) tasks must be attached, see
3464 * post_init_entity_util_avg().
3465 *
3466 * cfs_rq->avg is used for task_h_load() and update_cfs_share() for example.
3467 *
Peter Zijlstra7c3edd22016-07-13 10:56:25 +02003468 * Returns true if the load decayed or we removed load.
3469 *
3470 * Since both these conditions indicate a changed cfs_rq->avg.load we should
3471 * call update_tg_load_avg() when this function returns true.
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003472 */
Steve Mucklea2c6c912016-03-24 15:26:07 -07003473static inline int
Viresh Kumar3a123bb2017-05-24 10:59:56 +05303474update_cfs_rq_load_avg(u64 now, struct cfs_rq *cfs_rq)
Steve Mucklea2c6c912016-03-24 15:26:07 -07003475{
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003476 unsigned long removed_load = 0, removed_util = 0, removed_runnable_sum = 0;
Steve Mucklea2c6c912016-03-24 15:26:07 -07003477 struct sched_avg *sa = &cfs_rq->avg;
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003478 int decayed = 0;
Steve Mucklea2c6c912016-03-24 15:26:07 -07003479
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003480 if (cfs_rq->removed.nr) {
3481 unsigned long r;
Peter Zijlstra9a2dd582017-05-12 14:18:10 +02003482 u32 divider = LOAD_AVG_MAX - 1024 + sa->period_contrib;
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003483
3484 raw_spin_lock(&cfs_rq->removed.lock);
3485 swap(cfs_rq->removed.util_avg, removed_util);
3486 swap(cfs_rq->removed.load_avg, removed_load);
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003487 swap(cfs_rq->removed.runnable_sum, removed_runnable_sum);
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003488 cfs_rq->removed.nr = 0;
3489 raw_spin_unlock(&cfs_rq->removed.lock);
3490
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003491 r = removed_load;
Peter Zijlstra89741892016-06-16 10:50:40 +02003492 sub_positive(&sa->load_avg, r);
Peter Zijlstra9a2dd582017-05-12 14:18:10 +02003493 sub_positive(&sa->load_sum, r * divider);
Steve Mucklea2c6c912016-03-24 15:26:07 -07003494
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003495 r = removed_util;
Peter Zijlstra89741892016-06-16 10:50:40 +02003496 sub_positive(&sa->util_avg, r);
Peter Zijlstra9a2dd582017-05-12 14:18:10 +02003497 sub_positive(&sa->util_sum, r * divider);
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003498
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003499 add_tg_cfs_propagate(cfs_rq, -(long)removed_runnable_sum);
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003500
3501 decayed = 1;
Steve Mucklea2c6c912016-03-24 15:26:07 -07003502 }
3503
Vincent Guittot23127292019-01-23 16:26:53 +01003504 decayed |= __update_load_avg_cfs_rq(now, cfs_rq);
Steve Mucklea2c6c912016-03-24 15:26:07 -07003505
3506#ifndef CONFIG_64BIT
3507 smp_wmb();
3508 cfs_rq->load_last_update_time_copy = sa->last_update_time;
3509#endif
3510
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003511 return decayed;
Yuyang Du9d89c252015-07-15 08:04:37 +08003512}
3513
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003514/**
3515 * attach_entity_load_avg - attach this entity to its cfs_rq load avg
3516 * @cfs_rq: cfs_rq to attach to
3517 * @se: sched_entity to attach
Randy Dunlap882a78a2018-09-03 12:53:17 -07003518 * @flags: migration hints
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003519 *
3520 * Must call update_cfs_rq_load_avg() before this, since we rely on
3521 * cfs_rq->avg.last_update_time being current.
3522 */
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003523static void attach_entity_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Byungchul Parka05e8c52015-08-20 20:21:56 +09003524{
Peter Zijlstraf2079342017-05-12 14:16:30 +02003525 u32 divider = LOAD_AVG_MAX - 1024 + cfs_rq->avg.period_contrib;
3526
3527 /*
3528 * When we attach the @se to the @cfs_rq, we must align the decay
3529 * window because without that, really weird and wonderful things can
3530 * happen.
3531 *
3532 * XXX illustrate
3533 */
Byungchul Parka05e8c52015-08-20 20:21:56 +09003534 se->avg.last_update_time = cfs_rq->avg.last_update_time;
Peter Zijlstraf2079342017-05-12 14:16:30 +02003535 se->avg.period_contrib = cfs_rq->avg.period_contrib;
3536
3537 /*
3538 * Hell(o) Nasty stuff.. we need to recompute _sum based on the new
3539 * period_contrib. This isn't strictly correct, but since we're
3540 * entirely outside of the PELT hierarchy, nobody cares if we truncate
3541 * _sum a little.
3542 */
3543 se->avg.util_sum = se->avg.util_avg * divider;
3544
3545 se->avg.load_sum = divider;
3546 if (se_weight(se)) {
3547 se->avg.load_sum =
3548 div_u64(se->avg.load_avg * se->avg.load_sum, se_weight(se));
3549 }
3550
3551 se->avg.runnable_load_sum = se->avg.load_sum;
3552
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02003553 enqueue_load_avg(cfs_rq, se);
Byungchul Parka05e8c52015-08-20 20:21:56 +09003554 cfs_rq->avg.util_avg += se->avg.util_avg;
3555 cfs_rq->avg.util_sum += se->avg.util_sum;
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003556
3557 add_tg_cfs_propagate(cfs_rq, se->avg.load_sum);
Steve Mucklea2c6c912016-03-24 15:26:07 -07003558
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003559 cfs_rq_util_change(cfs_rq, flags);
Qais Yousefba19f512019-06-04 12:14:56 +01003560
3561 trace_pelt_cfs_tp(cfs_rq);
Byungchul Parka05e8c52015-08-20 20:21:56 +09003562}
3563
Peter Zijlstra3d30544f2016-06-21 14:27:50 +02003564/**
3565 * detach_entity_load_avg - detach this entity from its cfs_rq load avg
3566 * @cfs_rq: cfs_rq to detach from
3567 * @se: sched_entity to detach
3568 *
3569 * Must call update_cfs_rq_load_avg() before this, since we rely on
3570 * cfs_rq->avg.last_update_time being current.
3571 */
Byungchul Parka05e8c52015-08-20 20:21:56 +09003572static void detach_entity_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
3573{
Peter Zijlstra8d5b9022017-08-24 17:45:35 +02003574 dequeue_load_avg(cfs_rq, se);
Peter Zijlstra89741892016-06-16 10:50:40 +02003575 sub_positive(&cfs_rq->avg.util_avg, se->avg.util_avg);
3576 sub_positive(&cfs_rq->avg.util_sum, se->avg.util_sum);
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003577
3578 add_tg_cfs_propagate(cfs_rq, -se->avg.load_sum);
Steve Mucklea2c6c912016-03-24 15:26:07 -07003579
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003580 cfs_rq_util_change(cfs_rq, 0);
Qais Yousefba19f512019-06-04 12:14:56 +01003581
3582 trace_pelt_cfs_tp(cfs_rq);
Byungchul Parka05e8c52015-08-20 20:21:56 +09003583}
3584
Peter Zijlstrab382a532017-05-06 17:37:03 +02003585/*
3586 * Optional action to be done while updating the load average
3587 */
3588#define UPDATE_TG 0x1
3589#define SKIP_AGE_LOAD 0x2
3590#define DO_ATTACH 0x4
3591
3592/* Update task and its cfs_rq load average */
3593static inline void update_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
3594{
Vincent Guittot23127292019-01-23 16:26:53 +01003595 u64 now = cfs_rq_clock_pelt(cfs_rq);
Peter Zijlstrab382a532017-05-06 17:37:03 +02003596 int decayed;
3597
3598 /*
3599 * Track task load average for carrying it to new CPU after migrated, and
3600 * track group sched_entity load average for task_h_load calc in migration
3601 */
3602 if (se->avg.last_update_time && !(flags & SKIP_AGE_LOAD))
Vincent Guittot23127292019-01-23 16:26:53 +01003603 __update_load_avg_se(now, cfs_rq, se);
Peter Zijlstrab382a532017-05-06 17:37:03 +02003604
3605 decayed = update_cfs_rq_load_avg(now, cfs_rq);
3606 decayed |= propagate_entity_load_avg(se);
3607
3608 if (!se->avg.last_update_time && (flags & DO_ATTACH)) {
3609
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003610 /*
3611 * DO_ATTACH means we're here from enqueue_entity().
3612 * !last_update_time means we've passed through
3613 * migrate_task_rq_fair() indicating we migrated.
3614 *
3615 * IOW we're enqueueing a task on a new CPU.
3616 */
3617 attach_entity_load_avg(cfs_rq, se, SCHED_CPUFREQ_MIGRATION);
Peter Zijlstrab382a532017-05-06 17:37:03 +02003618 update_tg_load_avg(cfs_rq, 0);
3619
Vincent Guittotbef69dd2019-11-18 14:21:19 +01003620 } else if (decayed) {
3621 cfs_rq_util_change(cfs_rq, 0);
3622
3623 if (flags & UPDATE_TG)
3624 update_tg_load_avg(cfs_rq, 0);
3625 }
Peter Zijlstrab382a532017-05-06 17:37:03 +02003626}
3627
Yuyang Du0905f042015-12-17 07:34:27 +08003628#ifndef CONFIG_64BIT
3629static inline u64 cfs_rq_last_update_time(struct cfs_rq *cfs_rq)
3630{
3631 u64 last_update_time_copy;
3632 u64 last_update_time;
3633
3634 do {
3635 last_update_time_copy = cfs_rq->load_last_update_time_copy;
3636 smp_rmb();
3637 last_update_time = cfs_rq->avg.last_update_time;
3638 } while (last_update_time != last_update_time_copy);
3639
3640 return last_update_time;
3641}
3642#else
3643static inline u64 cfs_rq_last_update_time(struct cfs_rq *cfs_rq)
3644{
3645 return cfs_rq->avg.last_update_time;
3646}
3647#endif
3648
Paul Turner9ee474f2012-10-04 13:18:30 +02003649/*
Morten Rasmussen104cb162016-10-14 14:41:07 +01003650 * Synchronize entity load avg of dequeued entity without locking
3651 * the previous rq.
3652 */
YueHaibing71b47ea2019-03-20 21:38:39 +08003653static void sync_entity_load_avg(struct sched_entity *se)
Morten Rasmussen104cb162016-10-14 14:41:07 +01003654{
3655 struct cfs_rq *cfs_rq = cfs_rq_of(se);
3656 u64 last_update_time;
3657
3658 last_update_time = cfs_rq_last_update_time(cfs_rq);
Vincent Guittot23127292019-01-23 16:26:53 +01003659 __update_load_avg_blocked_se(last_update_time, se);
Morten Rasmussen104cb162016-10-14 14:41:07 +01003660}
3661
3662/*
Yuyang Du9d89c252015-07-15 08:04:37 +08003663 * Task first catches up with cfs_rq, and then subtract
3664 * itself from the cfs_rq (task must be off the queue now).
Paul Turner9ee474f2012-10-04 13:18:30 +02003665 */
YueHaibing71b47ea2019-03-20 21:38:39 +08003666static void remove_entity_load_avg(struct sched_entity *se)
Paul Turner9ee474f2012-10-04 13:18:30 +02003667{
Yuyang Du9d89c252015-07-15 08:04:37 +08003668 struct cfs_rq *cfs_rq = cfs_rq_of(se);
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003669 unsigned long flags;
Paul Turner9ee474f2012-10-04 13:18:30 +02003670
Yuyang Du0905f042015-12-17 07:34:27 +08003671 /*
Peter Zijlstra7dc603c2016-06-16 13:29:28 +02003672 * tasks cannot exit without having gone through wake_up_new_task() ->
3673 * post_init_entity_util_avg() which will have added things to the
3674 * cfs_rq, so we can remove unconditionally.
Yuyang Du0905f042015-12-17 07:34:27 +08003675 */
Paul Turner9ee474f2012-10-04 13:18:30 +02003676
Morten Rasmussen104cb162016-10-14 14:41:07 +01003677 sync_entity_load_avg(se);
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003678
3679 raw_spin_lock_irqsave(&cfs_rq->removed.lock, flags);
3680 ++cfs_rq->removed.nr;
3681 cfs_rq->removed.util_avg += se->avg.util_avg;
3682 cfs_rq->removed.load_avg += se->avg.load_avg;
Peter Zijlstra0e2d2aa2017-05-08 17:30:46 +02003683 cfs_rq->removed.runnable_sum += se->avg.load_sum; /* == runnable_sum */
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +02003684 raw_spin_unlock_irqrestore(&cfs_rq->removed.lock, flags);
Paul Turner2dac7542012-10-04 13:18:30 +02003685}
Vincent Guittot642dbc32013-04-18 18:34:26 +02003686
Yuyang Du7ea241a2015-07-15 08:04:42 +08003687static inline unsigned long cfs_rq_runnable_load_avg(struct cfs_rq *cfs_rq)
3688{
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02003689 return cfs_rq->avg.runnable_load_avg;
Yuyang Du7ea241a2015-07-15 08:04:42 +08003690}
3691
3692static inline unsigned long cfs_rq_load_avg(struct cfs_rq *cfs_rq)
3693{
3694 return cfs_rq->avg.load_avg;
3695}
3696
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003697static inline unsigned long task_util(struct task_struct *p)
3698{
3699 return READ_ONCE(p->se.avg.util_avg);
3700}
3701
3702static inline unsigned long _task_util_est(struct task_struct *p)
3703{
3704 struct util_est ue = READ_ONCE(p->se.avg.util_est);
3705
Patrick Bellasi92a801e2018-11-05 14:53:59 +00003706 return (max(ue.ewma, ue.enqueued) | UTIL_AVG_UNCHANGED);
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003707}
3708
3709static inline unsigned long task_util_est(struct task_struct *p)
3710{
3711 return max(task_util(p), _task_util_est(p));
3712}
3713
3714static inline void util_est_enqueue(struct cfs_rq *cfs_rq,
3715 struct task_struct *p)
3716{
3717 unsigned int enqueued;
3718
3719 if (!sched_feat(UTIL_EST))
3720 return;
3721
3722 /* Update root cfs_rq's estimated utilization */
3723 enqueued = cfs_rq->avg.util_est.enqueued;
Patrick Bellasi92a801e2018-11-05 14:53:59 +00003724 enqueued += _task_util_est(p);
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003725 WRITE_ONCE(cfs_rq->avg.util_est.enqueued, enqueued);
3726}
3727
3728/*
3729 * Check if a (signed) value is within a specified (unsigned) margin,
3730 * based on the observation that:
3731 *
3732 * abs(x) < y := (unsigned)(x + y - 1) < (2 * y - 1)
3733 *
3734 * NOTE: this only works when value + maring < INT_MAX.
3735 */
3736static inline bool within_margin(int value, int margin)
3737{
3738 return ((unsigned int)(value + margin - 1) < (2 * margin - 1));
3739}
3740
3741static void
3742util_est_dequeue(struct cfs_rq *cfs_rq, struct task_struct *p, bool task_sleep)
3743{
3744 long last_ewma_diff;
3745 struct util_est ue;
Vincent Guittot10a35e62019-01-23 16:26:54 +01003746 int cpu;
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003747
3748 if (!sched_feat(UTIL_EST))
3749 return;
3750
Vincent Guittot3482d982018-06-14 12:33:00 +02003751 /* Update root cfs_rq's estimated utilization */
3752 ue.enqueued = cfs_rq->avg.util_est.enqueued;
Patrick Bellasi92a801e2018-11-05 14:53:59 +00003753 ue.enqueued -= min_t(unsigned int, ue.enqueued, _task_util_est(p));
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003754 WRITE_ONCE(cfs_rq->avg.util_est.enqueued, ue.enqueued);
3755
3756 /*
3757 * Skip update of task's estimated utilization when the task has not
3758 * yet completed an activation, e.g. being migrated.
3759 */
3760 if (!task_sleep)
3761 return;
3762
3763 /*
Patrick Bellasid5193292018-03-09 09:52:45 +00003764 * If the PELT values haven't changed since enqueue time,
3765 * skip the util_est update.
3766 */
3767 ue = p->se.avg.util_est;
3768 if (ue.enqueued & UTIL_AVG_UNCHANGED)
3769 return;
3770
3771 /*
Patrick Bellasib8c96362019-10-23 21:56:30 +01003772 * Reset EWMA on utilization increases, the moving average is used only
3773 * to smooth utilization decreases.
3774 */
3775 ue.enqueued = (task_util(p) | UTIL_AVG_UNCHANGED);
3776 if (sched_feat(UTIL_EST_FASTUP)) {
3777 if (ue.ewma < ue.enqueued) {
3778 ue.ewma = ue.enqueued;
3779 goto done;
3780 }
3781 }
3782
3783 /*
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003784 * Skip update of task's estimated utilization when its EWMA is
3785 * already ~1% close to its last activation value.
3786 */
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003787 last_ewma_diff = ue.enqueued - ue.ewma;
3788 if (within_margin(last_ewma_diff, (SCHED_CAPACITY_SCALE / 100)))
3789 return;
3790
3791 /*
Vincent Guittot10a35e62019-01-23 16:26:54 +01003792 * To avoid overestimation of actual task utilization, skip updates if
3793 * we cannot grant there is idle time in this CPU.
3794 */
3795 cpu = cpu_of(rq_of(cfs_rq));
3796 if (task_util(p) > capacity_orig_of(cpu))
3797 return;
3798
3799 /*
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003800 * Update Task's estimated utilization
3801 *
3802 * When *p completes an activation we can consolidate another sample
3803 * of the task size. This is done by storing the current PELT value
3804 * as ue.enqueued and by using this value to update the Exponential
3805 * Weighted Moving Average (EWMA):
3806 *
3807 * ewma(t) = w * task_util(p) + (1-w) * ewma(t-1)
3808 * = w * task_util(p) + ewma(t-1) - w * ewma(t-1)
3809 * = w * (task_util(p) - ewma(t-1)) + ewma(t-1)
3810 * = w * ( last_ewma_diff ) + ewma(t-1)
3811 * = w * (last_ewma_diff + ewma(t-1) / w)
3812 *
3813 * Where 'w' is the weight of new samples, which is configured to be
3814 * 0.25, thus making w=1/4 ( >>= UTIL_EST_WEIGHT_SHIFT)
3815 */
3816 ue.ewma <<= UTIL_EST_WEIGHT_SHIFT;
3817 ue.ewma += last_ewma_diff;
3818 ue.ewma >>= UTIL_EST_WEIGHT_SHIFT;
Patrick Bellasib8c96362019-10-23 21:56:30 +01003819done:
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003820 WRITE_ONCE(p->se.avg.util_est, ue);
3821}
3822
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01003823static inline int task_fits_capacity(struct task_struct *p, long capacity)
3824{
Viresh Kumar60e17f52019-06-04 12:31:52 +05303825 return fits_capacity(task_util_est(p), capacity);
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01003826}
3827
3828static inline void update_misfit_status(struct task_struct *p, struct rq *rq)
3829{
3830 if (!static_branch_unlikely(&sched_asym_cpucapacity))
3831 return;
3832
3833 if (!p) {
3834 rq->misfit_task_load = 0;
3835 return;
3836 }
3837
3838 if (task_fits_capacity(p, capacity_of(cpu_of(rq)))) {
3839 rq->misfit_task_load = 0;
3840 return;
3841 }
3842
3843 rq->misfit_task_load = task_h_load(p);
3844}
3845
Peter Zijlstra38033c32014-01-23 20:32:21 +01003846#else /* CONFIG_SMP */
3847
Vincent Guittotd31b1a62016-11-08 10:53:44 +01003848#define UPDATE_TG 0x0
3849#define SKIP_AGE_LOAD 0x0
Peter Zijlstrab382a532017-05-06 17:37:03 +02003850#define DO_ATTACH 0x0
Vincent Guittotd31b1a62016-11-08 10:53:44 +01003851
Peter Zijlstra88c06162017-05-06 17:32:43 +02003852static inline void update_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se, int not_used1)
Rafael J. Wysocki536bd002016-05-06 14:58:43 +02003853{
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003854 cfs_rq_util_change(cfs_rq, 0);
Rafael J. Wysocki536bd002016-05-06 14:58:43 +02003855}
3856
Yuyang Du9d89c252015-07-15 08:04:37 +08003857static inline void remove_entity_load_avg(struct sched_entity *se) {}
Peter Zijlstra6e831252014-02-11 16:11:48 +01003858
Byungchul Parka05e8c52015-08-20 20:21:56 +09003859static inline void
Peter Zijlstraea14b57e2018-02-02 10:27:00 +01003860attach_entity_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags) {}
Byungchul Parka05e8c52015-08-20 20:21:56 +09003861static inline void
3862detach_entity_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se) {}
3863
Matt Fleming46f69fa2016-09-21 14:38:12 +01003864static inline int idle_balance(struct rq *rq, struct rq_flags *rf)
Peter Zijlstra6e831252014-02-11 16:11:48 +01003865{
3866 return 0;
3867}
3868
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003869static inline void
3870util_est_enqueue(struct cfs_rq *cfs_rq, struct task_struct *p) {}
3871
3872static inline void
3873util_est_dequeue(struct cfs_rq *cfs_rq, struct task_struct *p,
3874 bool task_sleep) {}
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01003875static inline void update_misfit_status(struct task_struct *p, struct rq *rq) {}
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00003876
Peter Zijlstra38033c32014-01-23 20:32:21 +01003877#endif /* CONFIG_SMP */
Paul Turner9d85f212012-10-04 13:18:29 +02003878
Peter Zijlstraddc97292007-10-15 17:00:10 +02003879static void check_spread(struct cfs_rq *cfs_rq, struct sched_entity *se)
3880{
3881#ifdef CONFIG_SCHED_DEBUG
3882 s64 d = se->vruntime - cfs_rq->min_vruntime;
3883
3884 if (d < 0)
3885 d = -d;
3886
3887 if (d > 3*sysctl_sched_latency)
Josh Poimboeufae928822016-06-17 12:43:24 -05003888 schedstat_inc(cfs_rq->nr_spread_over);
Peter Zijlstraddc97292007-10-15 17:00:10 +02003889#endif
3890}
3891
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003892static void
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02003893place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial)
3894{
Peter Zijlstra1af5f732008-10-24 11:06:13 +02003895 u64 vruntime = cfs_rq->min_vruntime;
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +02003896
Peter Zijlstra2cb86002007-11-09 22:39:37 +01003897 /*
3898 * The 'current' period is already promised to the current tasks,
3899 * however the extra weight of the new task will slow them down a
3900 * little, place the new task so that it fits in the slot that
3901 * stays open at the end.
3902 */
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +02003903 if (initial && sched_feat(START_DEBIT))
Peter Zijlstraf9c0b092008-10-17 19:27:04 +02003904 vruntime += sched_vslice(cfs_rq, se);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02003905
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02003906 /* sleeps up to a single latency don't count. */
Mike Galbraith5ca98802010-03-11 17:17:17 +01003907 if (!initial) {
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02003908 unsigned long thresh = sysctl_sched_latency;
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02003909
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02003910 /*
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02003911 * Halve their sleep time's effect, to allow
3912 * for a gentler effect of sleepers:
3913 */
3914 if (sched_feat(GENTLE_FAIR_SLEEPERS))
3915 thresh >>= 1;
Ingo Molnar51e03042009-09-16 08:54:45 +02003916
Mike Galbraitha2e7a7e2009-09-18 09:19:25 +02003917 vruntime -= thresh;
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02003918 }
3919
Mike Galbraithb5d9d732009-09-08 11:12:28 +02003920 /* ensure we never gain time by being placed backwards. */
Viresh Kumar16c8f1c2012-11-08 13:33:46 +05303921 se->vruntime = max_vruntime(se->vruntime, vruntime);
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02003922}
3923
Paul Turnerd3d9dc32011-07-21 09:43:39 -07003924static void check_enqueue_throttle(struct cfs_rq *cfs_rq);
3925
Mel Gormancb251762016-02-05 09:08:36 +00003926static inline void check_schedstat_required(void)
3927{
3928#ifdef CONFIG_SCHEDSTATS
3929 if (schedstat_enabled())
3930 return;
3931
3932 /* Force schedstat enabled if a dependent tracepoint is active */
3933 if (trace_sched_stat_wait_enabled() ||
3934 trace_sched_stat_sleep_enabled() ||
3935 trace_sched_stat_iowait_enabled() ||
3936 trace_sched_stat_blocked_enabled() ||
3937 trace_sched_stat_runtime_enabled()) {
Josh Poimboeufeda8dca2016-06-13 02:32:09 -05003938 printk_deferred_once("Scheduler tracepoints stat_sleep, stat_iowait, "
Mel Gormancb251762016-02-05 09:08:36 +00003939 "stat_blocked and stat_runtime require the "
Marcin Nowakowskif67abed2017-06-09 10:00:29 +02003940 "kernel parameter schedstats=enable or "
Mel Gormancb251762016-02-05 09:08:36 +00003941 "kernel.sched_schedstats=1\n");
3942 }
3943#endif
3944}
3945
Peter Zijlstrab5179ac2016-05-11 16:10:34 +02003946
3947/*
3948 * MIGRATION
3949 *
3950 * dequeue
3951 * update_curr()
3952 * update_min_vruntime()
3953 * vruntime -= min_vruntime
3954 *
3955 * enqueue
3956 * update_curr()
3957 * update_min_vruntime()
3958 * vruntime += min_vruntime
3959 *
3960 * this way the vruntime transition between RQs is done when both
3961 * min_vruntime are up-to-date.
3962 *
3963 * WAKEUP (remote)
3964 *
Peter Zijlstra59efa0b2016-05-10 18:24:37 +02003965 * ->migrate_task_rq_fair() (p->state == TASK_WAKING)
Peter Zijlstrab5179ac2016-05-11 16:10:34 +02003966 * vruntime -= min_vruntime
3967 *
3968 * enqueue
3969 * update_curr()
3970 * update_min_vruntime()
3971 * vruntime += min_vruntime
3972 *
3973 * this way we don't have the most up-to-date min_vruntime on the originating
3974 * CPU and an up-to-date min_vruntime on the destination CPU.
3975 */
3976
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02003977static void
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01003978enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02003979{
Peter Zijlstra2f950352016-05-11 19:27:56 +02003980 bool renorm = !(flags & ENQUEUE_WAKEUP) || (flags & ENQUEUE_MIGRATED);
3981 bool curr = cfs_rq->curr == se;
Peter Zijlstra3a47d512016-03-09 13:04:03 +01003982
Ingo Molnar53d3bc72016-05-11 08:25:53 +02003983 /*
Peter Zijlstra2f950352016-05-11 19:27:56 +02003984 * If we're the current task, we must renormalise before calling
3985 * update_curr().
Ingo Molnar53d3bc72016-05-11 08:25:53 +02003986 */
Peter Zijlstra2f950352016-05-11 19:27:56 +02003987 if (renorm && curr)
3988 se->vruntime += cfs_rq->min_vruntime;
3989
Ingo Molnarb7cc0892007-08-09 11:16:47 +02003990 update_curr(cfs_rq);
Peter Zijlstra2f950352016-05-11 19:27:56 +02003991
3992 /*
3993 * Otherwise, renormalise after, such that we're placed at the current
3994 * moment in time, instead of some random moment in the past. Being
3995 * placed in the past could significantly boost this task to the
3996 * fairness detriment of existing tasks.
3997 */
3998 if (renorm && !curr)
3999 se->vruntime += cfs_rq->min_vruntime;
4000
Vincent Guittot89ee0482016-12-21 16:50:26 +01004001 /*
4002 * When enqueuing a sched_entity, we must:
4003 * - Update loads to have both entity and cfs_rq synced with now.
4004 * - Add its load to cfs_rq->runnable_avg
4005 * - For group_entity, update its weight to reflect the new share of
4006 * its group cfs_rq
4007 * - Add its new weight to cfs_rq->load.weight
4008 */
Peter Zijlstrab382a532017-05-06 17:37:03 +02004009 update_load_avg(cfs_rq, se, UPDATE_TG | DO_ATTACH);
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02004010 update_cfs_group(se);
Peter Zijlstrab5b3e352017-08-24 17:38:30 +02004011 enqueue_runnable_load_avg(cfs_rq, se);
Linus Torvalds17bc14b2012-12-14 07:20:43 -08004012 account_entity_enqueue(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004013
Josh Poimboeuf1a3d0272016-06-17 12:43:23 -05004014 if (flags & ENQUEUE_WAKEUP)
Peter Zijlstraaeb73b02007-10-15 17:00:05 +02004015 place_entity(cfs_rq, se, 0);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004016
Mel Gormancb251762016-02-05 09:08:36 +00004017 check_schedstat_required();
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004018 update_stats_enqueue(cfs_rq, se, flags);
4019 check_spread(cfs_rq, se);
Peter Zijlstra2f950352016-05-11 19:27:56 +02004020 if (!curr)
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004021 __enqueue_entity(cfs_rq, se);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08004022 se->on_rq = 1;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08004023
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004024 if (cfs_rq->nr_running == 1) {
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08004025 list_add_leaf_cfs_rq(cfs_rq);
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004026 check_enqueue_throttle(cfs_rq);
4027 }
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004028}
4029
Rik van Riel2c13c9192011-02-01 09:48:37 -05004030static void __clear_buddies_last(struct sched_entity *se)
Peter Zijlstra2002c692008-11-11 11:52:33 +01004031{
Rik van Riel2c13c9192011-02-01 09:48:37 -05004032 for_each_sched_entity(se) {
4033 struct cfs_rq *cfs_rq = cfs_rq_of(se);
Peter Zijlstraf1044792012-02-11 06:05:00 +01004034 if (cfs_rq->last != se)
Rik van Riel2c13c9192011-02-01 09:48:37 -05004035 break;
Peter Zijlstraf1044792012-02-11 06:05:00 +01004036
4037 cfs_rq->last = NULL;
Rik van Riel2c13c9192011-02-01 09:48:37 -05004038 }
4039}
Peter Zijlstra2002c692008-11-11 11:52:33 +01004040
Rik van Riel2c13c9192011-02-01 09:48:37 -05004041static void __clear_buddies_next(struct sched_entity *se)
4042{
4043 for_each_sched_entity(se) {
4044 struct cfs_rq *cfs_rq = cfs_rq_of(se);
Peter Zijlstraf1044792012-02-11 06:05:00 +01004045 if (cfs_rq->next != se)
Rik van Riel2c13c9192011-02-01 09:48:37 -05004046 break;
Peter Zijlstraf1044792012-02-11 06:05:00 +01004047
4048 cfs_rq->next = NULL;
Rik van Riel2c13c9192011-02-01 09:48:37 -05004049 }
Peter Zijlstra2002c692008-11-11 11:52:33 +01004050}
4051
Rik van Rielac53db52011-02-01 09:51:03 -05004052static void __clear_buddies_skip(struct sched_entity *se)
4053{
4054 for_each_sched_entity(se) {
4055 struct cfs_rq *cfs_rq = cfs_rq_of(se);
Peter Zijlstraf1044792012-02-11 06:05:00 +01004056 if (cfs_rq->skip != se)
Rik van Rielac53db52011-02-01 09:51:03 -05004057 break;
Peter Zijlstraf1044792012-02-11 06:05:00 +01004058
4059 cfs_rq->skip = NULL;
Rik van Rielac53db52011-02-01 09:51:03 -05004060 }
4061}
4062
Peter Zijlstraa571bbe2009-01-28 14:51:40 +01004063static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se)
4064{
Rik van Riel2c13c9192011-02-01 09:48:37 -05004065 if (cfs_rq->last == se)
4066 __clear_buddies_last(se);
4067
4068 if (cfs_rq->next == se)
4069 __clear_buddies_next(se);
Rik van Rielac53db52011-02-01 09:51:03 -05004070
4071 if (cfs_rq->skip == se)
4072 __clear_buddies_skip(se);
Peter Zijlstraa571bbe2009-01-28 14:51:40 +01004073}
4074
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07004075static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq);
Paul Turnerd8b49862011-07-21 09:43:41 -07004076
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004077static void
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004078dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004079{
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +02004080 /*
4081 * Update run-time statistics of the 'current'.
4082 */
4083 update_curr(cfs_rq);
Vincent Guittot89ee0482016-12-21 16:50:26 +01004084
4085 /*
4086 * When dequeuing a sched_entity, we must:
4087 * - Update loads to have both entity and cfs_rq synced with now.
Ingo Molnardfcb2452018-12-03 10:05:56 +01004088 * - Subtract its load from the cfs_rq->runnable_avg.
4089 * - Subtract its previous weight from cfs_rq->load.weight.
Vincent Guittot89ee0482016-12-21 16:50:26 +01004090 * - For group entity, update its weight to reflect the new share
4091 * of its group cfs_rq.
4092 */
Peter Zijlstra88c06162017-05-06 17:32:43 +02004093 update_load_avg(cfs_rq, se, UPDATE_TG);
Peter Zijlstrab5b3e352017-08-24 17:38:30 +02004094 dequeue_runnable_load_avg(cfs_rq, se);
Dmitry Adamushkoa2a2d682007-10-15 17:00:13 +02004095
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004096 update_stats_dequeue(cfs_rq, se, flags);
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02004097
Peter Zijlstra2002c692008-11-11 11:52:33 +01004098 clear_buddies(cfs_rq, se);
Peter Zijlstra47932412008-11-04 21:25:09 +01004099
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004100 if (se != cfs_rq->curr)
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004101 __dequeue_entity(cfs_rq, se);
Linus Torvalds17bc14b2012-12-14 07:20:43 -08004102 se->on_rq = 0;
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004103 account_entity_dequeue(cfs_rq, se);
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01004104
4105 /*
Peter Zijlstrab60205c2016-09-20 21:58:12 +02004106 * Normalize after update_curr(); which will also have moved
4107 * min_vruntime if @se is the one holding it back. But before doing
4108 * update_min_vruntime() again, which will discount @se's position and
4109 * can move min_vruntime forward still more.
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01004110 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004111 if (!(flags & DEQUEUE_SLEEP))
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01004112 se->vruntime -= cfs_rq->min_vruntime;
Peter Zijlstra1e876232011-05-17 16:21:10 -07004113
Paul Turnerd8b49862011-07-21 09:43:41 -07004114 /* return excess runtime on last dequeue */
4115 return_cfs_rq_runtime(cfs_rq);
4116
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02004117 update_cfs_group(se);
Peter Zijlstrab60205c2016-09-20 21:58:12 +02004118
4119 /*
4120 * Now advance min_vruntime if @se was the entity holding it back,
4121 * except when: DEQUEUE_SAVE && !DEQUEUE_MOVE, in this case we'll be
4122 * put back on, and if we advance min_vruntime, we'll be placed back
4123 * further than we started -- ie. we'll be penalized.
4124 */
Song Muchun9845c492018-10-14 19:26:12 +08004125 if ((flags & (DEQUEUE_SAVE | DEQUEUE_MOVE)) != DEQUEUE_SAVE)
Peter Zijlstrab60205c2016-09-20 21:58:12 +02004126 update_min_vruntime(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004127}
4128
4129/*
4130 * Preempt the current task with a newly woken task if needed:
4131 */
Peter Zijlstra7c92e542007-09-05 14:32:49 +02004132static void
Ingo Molnar2e09bf52007-10-15 17:00:05 +02004133check_preempt_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004134{
Peter Zijlstra11697832007-09-05 14:32:49 +02004135 unsigned long ideal_runtime, delta_exec;
Wang Xingchaof4cfb332011-09-16 13:35:52 -04004136 struct sched_entity *se;
4137 s64 delta;
Peter Zijlstra11697832007-09-05 14:32:49 +02004138
Peter Zijlstra6d0f0eb2007-10-15 17:00:05 +02004139 ideal_runtime = sched_slice(cfs_rq, curr);
Peter Zijlstra11697832007-09-05 14:32:49 +02004140 delta_exec = curr->sum_exec_runtime - curr->prev_sum_exec_runtime;
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +01004141 if (delta_exec > ideal_runtime) {
Kirill Tkhai88751252014-06-29 00:03:57 +04004142 resched_curr(rq_of(cfs_rq));
Mike Galbraitha9f3e2b2009-01-28 14:51:39 +01004143 /*
4144 * The current task ran long enough, ensure it doesn't get
4145 * re-elected due to buddy favours.
4146 */
4147 clear_buddies(cfs_rq, curr);
Mike Galbraithf685cea2009-10-23 23:09:22 +02004148 return;
4149 }
4150
4151 /*
4152 * Ensure that a task that missed wakeup preemption by a
4153 * narrow margin doesn't have to wait for a full slice.
4154 * This also mitigates buddy induced latencies under load.
4155 */
Mike Galbraithf685cea2009-10-23 23:09:22 +02004156 if (delta_exec < sysctl_sched_min_granularity)
4157 return;
4158
Wang Xingchaof4cfb332011-09-16 13:35:52 -04004159 se = __pick_first_entity(cfs_rq);
4160 delta = curr->vruntime - se->vruntime;
Mike Galbraithf685cea2009-10-23 23:09:22 +02004161
Wang Xingchaof4cfb332011-09-16 13:35:52 -04004162 if (delta < 0)
4163 return;
Mike Galbraithd7d82942011-01-05 05:41:17 +01004164
Wang Xingchaof4cfb332011-09-16 13:35:52 -04004165 if (delta > ideal_runtime)
Kirill Tkhai88751252014-06-29 00:03:57 +04004166 resched_curr(rq_of(cfs_rq));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004167}
4168
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004169static void
Ingo Molnar8494f412007-08-09 11:16:48 +02004170set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004171{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004172 /* 'current' is not kept within the tree. */
4173 if (se->on_rq) {
4174 /*
4175 * Any task has to be enqueued before it get to execute on
4176 * a CPU. So account for the time it spent waiting on the
4177 * runqueue.
4178 */
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004179 update_stats_wait_end(cfs_rq, se);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004180 __dequeue_entity(cfs_rq, se);
Peter Zijlstra88c06162017-05-06 17:32:43 +02004181 update_load_avg(cfs_rq, se, UPDATE_TG);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004182 }
4183
Ingo Molnar79303e92007-08-09 11:16:47 +02004184 update_stats_curr_start(cfs_rq, se);
Ingo Molnar429d43b2007-10-15 17:00:03 +02004185 cfs_rq->curr = se;
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004186
Ingo Molnareba1ed42007-10-15 17:00:02 +02004187 /*
4188 * Track our maximum slice length, if the CPU's load is at
4189 * least twice that of our own weight (i.e. dont track it
4190 * when there are only lesser-weight tasks around):
4191 */
Dietmar Eggemannf2bedc42019-04-24 09:45:56 +01004192 if (schedstat_enabled() &&
4193 rq_of(cfs_rq)->cfs.load.weight >= 2*se->load.weight) {
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004194 schedstat_set(se->statistics.slice_max,
4195 max((u64)schedstat_val(se->statistics.slice_max),
4196 se->sum_exec_runtime - se->prev_sum_exec_runtime));
Ingo Molnareba1ed42007-10-15 17:00:02 +02004197 }
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004198
Peter Zijlstra4a55b452007-09-05 14:32:49 +02004199 se->prev_sum_exec_runtime = se->sum_exec_runtime;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004200}
4201
Peter Zijlstra3f3a4902008-10-24 11:06:16 +02004202static int
4203wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se);
4204
Rik van Rielac53db52011-02-01 09:51:03 -05004205/*
4206 * Pick the next process, keeping these things in mind, in this order:
4207 * 1) keep things fair between processes/task groups
4208 * 2) pick the "next" process, since someone really wants that to run
4209 * 3) pick the "last" process, for cache locality
4210 * 4) do not run the "skip" process, if something else is available
4211 */
Peter Zijlstra678d5712012-02-11 06:05:00 +01004212static struct sched_entity *
4213pick_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *curr)
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01004214{
Peter Zijlstra678d5712012-02-11 06:05:00 +01004215 struct sched_entity *left = __pick_first_entity(cfs_rq);
4216 struct sched_entity *se;
4217
4218 /*
4219 * If curr is set we have to see if its left of the leftmost entity
4220 * still in the tree, provided there was anything in the tree at all.
4221 */
4222 if (!left || (curr && entity_before(curr, left)))
4223 left = curr;
4224
4225 se = left; /* ideally we run the leftmost entity */
Peter Zijlstraf4b67552008-11-04 21:25:07 +01004226
Rik van Rielac53db52011-02-01 09:51:03 -05004227 /*
4228 * Avoid running the skip buddy, if running something else can
4229 * be done without getting too unfair.
4230 */
4231 if (cfs_rq->skip == se) {
Peter Zijlstra678d5712012-02-11 06:05:00 +01004232 struct sched_entity *second;
4233
4234 if (se == curr) {
4235 second = __pick_first_entity(cfs_rq);
4236 } else {
4237 second = __pick_next_entity(se);
4238 if (!second || (curr && entity_before(curr, second)))
4239 second = curr;
4240 }
4241
Rik van Rielac53db52011-02-01 09:51:03 -05004242 if (second && wakeup_preempt_entity(second, left) < 1)
4243 se = second;
4244 }
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01004245
Mike Galbraithf685cea2009-10-23 23:09:22 +02004246 /*
4247 * Prefer last buddy, try to return the CPU to a preempted task.
4248 */
4249 if (cfs_rq->last && wakeup_preempt_entity(cfs_rq->last, left) < 1)
4250 se = cfs_rq->last;
4251
Rik van Rielac53db52011-02-01 09:51:03 -05004252 /*
4253 * Someone really wants this to run. If it's not unfair, run it.
4254 */
4255 if (cfs_rq->next && wakeup_preempt_entity(cfs_rq->next, left) < 1)
4256 se = cfs_rq->next;
4257
Mike Galbraithf685cea2009-10-23 23:09:22 +02004258 clear_buddies(cfs_rq, se);
Peter Zijlstra47932412008-11-04 21:25:09 +01004259
4260 return se;
Peter Zijlstraaa2ac252008-03-14 21:12:12 +01004261}
4262
Peter Zijlstra678d5712012-02-11 06:05:00 +01004263static bool check_cfs_rq_runtime(struct cfs_rq *cfs_rq);
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004264
Ingo Molnarab6cde22007-08-09 11:16:48 +02004265static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004266{
4267 /*
4268 * If still on the runqueue then deactivate_task()
4269 * was not called and update_curr() has to be done:
4270 */
4271 if (prev->on_rq)
Ingo Molnarb7cc0892007-08-09 11:16:47 +02004272 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004273
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004274 /* throttle cfs_rqs exceeding runtime */
4275 check_cfs_rq_runtime(cfs_rq);
4276
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004277 check_spread(cfs_rq, prev);
Mel Gormancb251762016-02-05 09:08:36 +00004278
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004279 if (prev->on_rq) {
Josh Poimboeuf4fa8d292016-06-17 12:43:26 -05004280 update_stats_wait_start(cfs_rq, prev);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004281 /* Put 'current' back into the tree. */
4282 __enqueue_entity(cfs_rq, prev);
Paul Turner9d85f212012-10-04 13:18:29 +02004283 /* in !on_rq case, update occurred at dequeue */
Peter Zijlstra88c06162017-05-06 17:32:43 +02004284 update_load_avg(cfs_rq, prev, 0);
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004285 }
Ingo Molnar429d43b2007-10-15 17:00:03 +02004286 cfs_rq->curr = NULL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004287}
4288
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004289static void
4290entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004291{
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004292 /*
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004293 * Update run-time statistics of the 'current'.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004294 */
Dmitry Adamushko30cfdcf2007-10-15 17:00:07 +02004295 update_curr(cfs_rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004296
Paul Turner43365bd2010-12-15 19:10:17 -08004297 /*
Paul Turner9d85f212012-10-04 13:18:29 +02004298 * Ensure that runnable average is periodically updated.
4299 */
Peter Zijlstra88c06162017-05-06 17:32:43 +02004300 update_load_avg(cfs_rq, curr, UPDATE_TG);
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02004301 update_cfs_group(curr);
Paul Turner9d85f212012-10-04 13:18:29 +02004302
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004303#ifdef CONFIG_SCHED_HRTICK
4304 /*
4305 * queued ticks are scheduled to match the slice, so don't bother
4306 * validating it and just reschedule.
4307 */
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004308 if (queued) {
Kirill Tkhai88751252014-06-29 00:03:57 +04004309 resched_curr(rq_of(cfs_rq));
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004310 return;
4311 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004312 /*
4313 * don't let the period tick interfere with the hrtick preemption
4314 */
4315 if (!sched_feat(DOUBLE_TICK) &&
4316 hrtimer_active(&rq_of(cfs_rq)->hrtick_timer))
4317 return;
4318#endif
4319
Yong Zhang2c2efae2011-07-29 16:20:33 +08004320 if (cfs_rq->nr_running > 1)
Ingo Molnar2e09bf52007-10-15 17:00:05 +02004321 check_preempt_tick(cfs_rq, curr);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02004322}
4323
Paul Turnerab84d312011-07-21 09:43:28 -07004324
4325/**************************************************
4326 * CFS bandwidth control machinery
4327 */
4328
4329#ifdef CONFIG_CFS_BANDWIDTH
Peter Zijlstra029632f2011-10-25 10:00:11 +02004330
Masahiro Yamadae9666d12018-12-31 00:14:15 +09004331#ifdef CONFIG_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +01004332static struct static_key __cfs_bandwidth_used;
Peter Zijlstra029632f2011-10-25 10:00:11 +02004333
4334static inline bool cfs_bandwidth_used(void)
4335{
Ingo Molnarc5905af2012-02-24 08:31:31 +01004336 return static_key_false(&__cfs_bandwidth_used);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004337}
4338
Ben Segall1ee14e62013-10-16 11:16:12 -07004339void cfs_bandwidth_usage_inc(void)
Peter Zijlstra029632f2011-10-25 10:00:11 +02004340{
Peter Zijlstrace48c1462018-01-22 22:53:28 +01004341 static_key_slow_inc_cpuslocked(&__cfs_bandwidth_used);
Ben Segall1ee14e62013-10-16 11:16:12 -07004342}
4343
4344void cfs_bandwidth_usage_dec(void)
4345{
Peter Zijlstrace48c1462018-01-22 22:53:28 +01004346 static_key_slow_dec_cpuslocked(&__cfs_bandwidth_used);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004347}
Masahiro Yamadae9666d12018-12-31 00:14:15 +09004348#else /* CONFIG_JUMP_LABEL */
Peter Zijlstra029632f2011-10-25 10:00:11 +02004349static bool cfs_bandwidth_used(void)
4350{
4351 return true;
4352}
4353
Ben Segall1ee14e62013-10-16 11:16:12 -07004354void cfs_bandwidth_usage_inc(void) {}
4355void cfs_bandwidth_usage_dec(void) {}
Masahiro Yamadae9666d12018-12-31 00:14:15 +09004356#endif /* CONFIG_JUMP_LABEL */
Peter Zijlstra029632f2011-10-25 10:00:11 +02004357
Paul Turnerab84d312011-07-21 09:43:28 -07004358/*
4359 * default period for cfs group bandwidth.
4360 * default: 0.1s, units: nanoseconds
4361 */
4362static inline u64 default_cfs_period(void)
4363{
4364 return 100000000ULL;
4365}
Paul Turnerec12cb72011-07-21 09:43:30 -07004366
4367static inline u64 sched_cfs_bandwidth_slice(void)
4368{
4369 return (u64)sysctl_sched_cfs_bandwidth_slice * NSEC_PER_USEC;
4370}
4371
Paul Turnera9cf55b2011-07-21 09:43:32 -07004372/*
Qian Cai763a9ec2019-08-20 14:40:55 -04004373 * Replenish runtime according to assigned quota. We use sched_clock_cpu
4374 * directly instead of rq->clock to avoid adding additional synchronization
4375 * around rq->lock.
Paul Turnera9cf55b2011-07-21 09:43:32 -07004376 *
4377 * requires cfs_b->lock
4378 */
Peter Zijlstra029632f2011-10-25 10:00:11 +02004379void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b)
Paul Turnera9cf55b2011-07-21 09:43:32 -07004380{
Qian Cai763a9ec2019-08-20 14:40:55 -04004381 if (cfs_b->quota != RUNTIME_INF)
4382 cfs_b->runtime = cfs_b->quota;
Paul Turnera9cf55b2011-07-21 09:43:32 -07004383}
4384
Peter Zijlstra029632f2011-10-25 10:00:11 +02004385static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
4386{
4387 return &tg->cfs_bandwidth;
4388}
4389
Paul Turner85dac902011-07-21 09:43:33 -07004390/* returns 0 on failure to allocate runtime */
4391static int assign_cfs_rq_runtime(struct cfs_rq *cfs_rq)
Paul Turnerec12cb72011-07-21 09:43:30 -07004392{
4393 struct task_group *tg = cfs_rq->tg;
4394 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
Dave Chilukde53fd72019-07-23 11:44:26 -05004395 u64 amount = 0, min_amount;
Paul Turnerec12cb72011-07-21 09:43:30 -07004396
4397 /* note: this is a positive sum as runtime_remaining <= 0 */
4398 min_amount = sched_cfs_bandwidth_slice() - cfs_rq->runtime_remaining;
4399
4400 raw_spin_lock(&cfs_b->lock);
4401 if (cfs_b->quota == RUNTIME_INF)
4402 amount = min_amount;
Paul Turner58088ad2011-07-21 09:43:31 -07004403 else {
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02004404 start_cfs_bandwidth(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07004405
4406 if (cfs_b->runtime > 0) {
4407 amount = min(cfs_b->runtime, min_amount);
4408 cfs_b->runtime -= amount;
4409 cfs_b->idle = 0;
4410 }
Paul Turnerec12cb72011-07-21 09:43:30 -07004411 }
4412 raw_spin_unlock(&cfs_b->lock);
4413
4414 cfs_rq->runtime_remaining += amount;
Paul Turner85dac902011-07-21 09:43:33 -07004415
4416 return cfs_rq->runtime_remaining > 0;
Paul Turnera9cf55b2011-07-21 09:43:32 -07004417}
4418
Peter Zijlstra9dbdb152013-11-18 18:27:06 +01004419static void __account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec)
Paul Turnerec12cb72011-07-21 09:43:30 -07004420{
Paul Turnera9cf55b2011-07-21 09:43:32 -07004421 /* dock delta_exec before expiring quota (as it could span periods) */
Paul Turnerec12cb72011-07-21 09:43:30 -07004422 cfs_rq->runtime_remaining -= delta_exec;
Paul Turnera9cf55b2011-07-21 09:43:32 -07004423
4424 if (likely(cfs_rq->runtime_remaining > 0))
Paul Turnerec12cb72011-07-21 09:43:30 -07004425 return;
4426
Liangyan5e2d2cc2019-08-26 20:16:33 +08004427 if (cfs_rq->throttled)
4428 return;
Paul Turner85dac902011-07-21 09:43:33 -07004429 /*
4430 * if we're unable to extend our runtime we resched so that the active
4431 * hierarchy can be throttled
4432 */
4433 if (!assign_cfs_rq_runtime(cfs_rq) && likely(cfs_rq->curr))
Kirill Tkhai88751252014-06-29 00:03:57 +04004434 resched_curr(rq_of(cfs_rq));
Paul Turnerec12cb72011-07-21 09:43:30 -07004435}
4436
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07004437static __always_inline
Peter Zijlstra9dbdb152013-11-18 18:27:06 +01004438void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec)
Paul Turnerec12cb72011-07-21 09:43:30 -07004439{
Paul Turner56f570e2011-11-07 20:26:33 -08004440 if (!cfs_bandwidth_used() || !cfs_rq->runtime_enabled)
Paul Turnerec12cb72011-07-21 09:43:30 -07004441 return;
4442
4443 __account_cfs_rq_runtime(cfs_rq, delta_exec);
4444}
4445
Paul Turner85dac902011-07-21 09:43:33 -07004446static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
4447{
Paul Turner56f570e2011-11-07 20:26:33 -08004448 return cfs_bandwidth_used() && cfs_rq->throttled;
Paul Turner85dac902011-07-21 09:43:33 -07004449}
4450
Paul Turner64660c82011-07-21 09:43:36 -07004451/* check whether cfs_rq, or any parent, is throttled */
4452static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
4453{
Paul Turner56f570e2011-11-07 20:26:33 -08004454 return cfs_bandwidth_used() && cfs_rq->throttle_count;
Paul Turner64660c82011-07-21 09:43:36 -07004455}
4456
4457/*
4458 * Ensure that neither of the group entities corresponding to src_cpu or
4459 * dest_cpu are members of a throttled hierarchy when performing group
4460 * load-balance operations.
4461 */
4462static inline int throttled_lb_pair(struct task_group *tg,
4463 int src_cpu, int dest_cpu)
4464{
4465 struct cfs_rq *src_cfs_rq, *dest_cfs_rq;
4466
4467 src_cfs_rq = tg->cfs_rq[src_cpu];
4468 dest_cfs_rq = tg->cfs_rq[dest_cpu];
4469
4470 return throttled_hierarchy(src_cfs_rq) ||
4471 throttled_hierarchy(dest_cfs_rq);
4472}
4473
Paul Turner64660c82011-07-21 09:43:36 -07004474static int tg_unthrottle_up(struct task_group *tg, void *data)
4475{
4476 struct rq *rq = data;
4477 struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
4478
4479 cfs_rq->throttle_count--;
Paul Turner64660c82011-07-21 09:43:36 -07004480 if (!cfs_rq->throttle_count) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02004481 cfs_rq->throttled_clock_task_time += rq_clock_task(rq) -
Paul Turnerf1b17282012-10-04 13:18:31 +02004482 cfs_rq->throttled_clock_task;
Vincent Guittot31bc6ae2019-02-06 17:14:21 +01004483
4484 /* Add cfs_rq with already running entity in the list */
4485 if (cfs_rq->nr_running >= 1)
4486 list_add_leaf_cfs_rq(cfs_rq);
Paul Turner64660c82011-07-21 09:43:36 -07004487 }
Paul Turner64660c82011-07-21 09:43:36 -07004488
4489 return 0;
4490}
4491
4492static int tg_throttle_down(struct task_group *tg, void *data)
4493{
4494 struct rq *rq = data;
4495 struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
4496
Paul Turner82958362012-10-04 13:18:31 +02004497 /* group is entering throttled state, stop time */
Vincent Guittot31bc6ae2019-02-06 17:14:21 +01004498 if (!cfs_rq->throttle_count) {
Frederic Weisbecker78becc22013-04-12 01:51:02 +02004499 cfs_rq->throttled_clock_task = rq_clock_task(rq);
Vincent Guittot31bc6ae2019-02-06 17:14:21 +01004500 list_del_leaf_cfs_rq(cfs_rq);
4501 }
Paul Turner64660c82011-07-21 09:43:36 -07004502 cfs_rq->throttle_count++;
4503
4504 return 0;
4505}
4506
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004507static void throttle_cfs_rq(struct cfs_rq *cfs_rq)
Paul Turner85dac902011-07-21 09:43:33 -07004508{
4509 struct rq *rq = rq_of(cfs_rq);
4510 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
4511 struct sched_entity *se;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05304512 long task_delta, idle_task_delta, dequeue = 1;
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02004513 bool empty;
Paul Turner85dac902011-07-21 09:43:33 -07004514
4515 se = cfs_rq->tg->se[cpu_of(rq_of(cfs_rq))];
4516
Paul Turnerf1b17282012-10-04 13:18:31 +02004517 /* freeze hierarchy runnable averages while throttled */
Paul Turner64660c82011-07-21 09:43:36 -07004518 rcu_read_lock();
4519 walk_tg_tree_from(cfs_rq->tg, tg_throttle_down, tg_nop, (void *)rq);
4520 rcu_read_unlock();
Paul Turner85dac902011-07-21 09:43:33 -07004521
4522 task_delta = cfs_rq->h_nr_running;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05304523 idle_task_delta = cfs_rq->idle_h_nr_running;
Paul Turner85dac902011-07-21 09:43:33 -07004524 for_each_sched_entity(se) {
4525 struct cfs_rq *qcfs_rq = cfs_rq_of(se);
4526 /* throttled entity or throttle-on-deactivate */
4527 if (!se->on_rq)
4528 break;
4529
4530 if (dequeue)
4531 dequeue_entity(qcfs_rq, se, DEQUEUE_SLEEP);
4532 qcfs_rq->h_nr_running -= task_delta;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05304533 qcfs_rq->idle_h_nr_running -= idle_task_delta;
Paul Turner85dac902011-07-21 09:43:33 -07004534
4535 if (qcfs_rq->load.weight)
4536 dequeue = 0;
4537 }
4538
4539 if (!se)
Kirill Tkhai72465442014-05-09 03:00:14 +04004540 sub_nr_running(rq, task_delta);
Paul Turner85dac902011-07-21 09:43:33 -07004541
4542 cfs_rq->throttled = 1;
Frederic Weisbecker78becc22013-04-12 01:51:02 +02004543 cfs_rq->throttled_clock = rq_clock(rq);
Paul Turner85dac902011-07-21 09:43:33 -07004544 raw_spin_lock(&cfs_b->lock);
Cong Wangd49db342015-06-24 12:41:47 -07004545 empty = list_empty(&cfs_b->throttled_cfs_rq);
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02004546
Ben Segallc06f04c2014-06-20 15:21:20 -07004547 /*
4548 * Add to the _head_ of the list, so that an already-started
Phil Auldbaa9be42018-10-08 10:36:40 -04004549 * distribute_cfs_runtime will not see us. If disribute_cfs_runtime is
4550 * not running add to the tail so that later runqueues don't get starved.
Ben Segallc06f04c2014-06-20 15:21:20 -07004551 */
Phil Auldbaa9be42018-10-08 10:36:40 -04004552 if (cfs_b->distribute_running)
4553 list_add_rcu(&cfs_rq->throttled_list, &cfs_b->throttled_cfs_rq);
4554 else
4555 list_add_tail_rcu(&cfs_rq->throttled_list, &cfs_b->throttled_cfs_rq);
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02004556
4557 /*
4558 * If we're the first throttled task, make sure the bandwidth
4559 * timer is running.
4560 */
4561 if (empty)
4562 start_cfs_bandwidth(cfs_b);
4563
Paul Turner85dac902011-07-21 09:43:33 -07004564 raw_spin_unlock(&cfs_b->lock);
4565}
4566
Peter Zijlstra029632f2011-10-25 10:00:11 +02004567void unthrottle_cfs_rq(struct cfs_rq *cfs_rq)
Paul Turner671fd9d2011-07-21 09:43:34 -07004568{
4569 struct rq *rq = rq_of(cfs_rq);
4570 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
4571 struct sched_entity *se;
4572 int enqueue = 1;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05304573 long task_delta, idle_task_delta;
Paul Turner671fd9d2011-07-21 09:43:34 -07004574
Michael Wang22b958d2013-06-04 14:23:39 +08004575 se = cfs_rq->tg->se[cpu_of(rq)];
Paul Turner671fd9d2011-07-21 09:43:34 -07004576
4577 cfs_rq->throttled = 0;
Frederic Weisbecker1a55af22013-04-12 01:51:01 +02004578
4579 update_rq_clock(rq);
4580
Paul Turner671fd9d2011-07-21 09:43:34 -07004581 raw_spin_lock(&cfs_b->lock);
Frederic Weisbecker78becc22013-04-12 01:51:02 +02004582 cfs_b->throttled_time += rq_clock(rq) - cfs_rq->throttled_clock;
Paul Turner671fd9d2011-07-21 09:43:34 -07004583 list_del_rcu(&cfs_rq->throttled_list);
4584 raw_spin_unlock(&cfs_b->lock);
4585
Paul Turner64660c82011-07-21 09:43:36 -07004586 /* update hierarchical throttle state */
4587 walk_tg_tree_from(cfs_rq->tg, tg_nop, tg_unthrottle_up, (void *)rq);
4588
Paul Turner671fd9d2011-07-21 09:43:34 -07004589 if (!cfs_rq->load.weight)
4590 return;
4591
4592 task_delta = cfs_rq->h_nr_running;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05304593 idle_task_delta = cfs_rq->idle_h_nr_running;
Paul Turner671fd9d2011-07-21 09:43:34 -07004594 for_each_sched_entity(se) {
4595 if (se->on_rq)
4596 enqueue = 0;
4597
4598 cfs_rq = cfs_rq_of(se);
4599 if (enqueue)
4600 enqueue_entity(cfs_rq, se, ENQUEUE_WAKEUP);
4601 cfs_rq->h_nr_running += task_delta;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05304602 cfs_rq->idle_h_nr_running += idle_task_delta;
Paul Turner671fd9d2011-07-21 09:43:34 -07004603
4604 if (cfs_rq_throttled(cfs_rq))
4605 break;
4606 }
4607
Vincent Guittot31bc6ae2019-02-06 17:14:21 +01004608 assert_list_leaf_cfs_rq(rq);
4609
Paul Turner671fd9d2011-07-21 09:43:34 -07004610 if (!se)
Kirill Tkhai72465442014-05-09 03:00:14 +04004611 add_nr_running(rq, task_delta);
Paul Turner671fd9d2011-07-21 09:43:34 -07004612
Ingo Molnar97fb7a02018-03-03 14:01:12 +01004613 /* Determine whether we need to wake up potentially idle CPU: */
Paul Turner671fd9d2011-07-21 09:43:34 -07004614 if (rq->curr == rq->idle && rq->cfs.nr_running)
Kirill Tkhai88751252014-06-29 00:03:57 +04004615 resched_curr(rq);
Paul Turner671fd9d2011-07-21 09:43:34 -07004616}
4617
Dave Chilukde53fd72019-07-23 11:44:26 -05004618static u64 distribute_cfs_runtime(struct cfs_bandwidth *cfs_b, u64 remaining)
Paul Turner671fd9d2011-07-21 09:43:34 -07004619{
4620 struct cfs_rq *cfs_rq;
Ben Segallc06f04c2014-06-20 15:21:20 -07004621 u64 runtime;
4622 u64 starting_runtime = remaining;
Paul Turner671fd9d2011-07-21 09:43:34 -07004623
4624 rcu_read_lock();
4625 list_for_each_entry_rcu(cfs_rq, &cfs_b->throttled_cfs_rq,
4626 throttled_list) {
4627 struct rq *rq = rq_of(cfs_rq);
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02004628 struct rq_flags rf;
Paul Turner671fd9d2011-07-21 09:43:34 -07004629
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004630 rq_lock_irqsave(rq, &rf);
Paul Turner671fd9d2011-07-21 09:43:34 -07004631 if (!cfs_rq_throttled(cfs_rq))
4632 goto next;
4633
Liangyan5e2d2cc2019-08-26 20:16:33 +08004634 /* By the above check, this should never be true */
4635 SCHED_WARN_ON(cfs_rq->runtime_remaining > 0);
4636
Paul Turner671fd9d2011-07-21 09:43:34 -07004637 runtime = -cfs_rq->runtime_remaining + 1;
4638 if (runtime > remaining)
4639 runtime = remaining;
4640 remaining -= runtime;
4641
4642 cfs_rq->runtime_remaining += runtime;
Paul Turner671fd9d2011-07-21 09:43:34 -07004643
4644 /* we check whether we're throttled above */
4645 if (cfs_rq->runtime_remaining > 0)
4646 unthrottle_cfs_rq(cfs_rq);
4647
4648next:
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004649 rq_unlock_irqrestore(rq, &rf);
Paul Turner671fd9d2011-07-21 09:43:34 -07004650
4651 if (!remaining)
4652 break;
4653 }
4654 rcu_read_unlock();
4655
Ben Segallc06f04c2014-06-20 15:21:20 -07004656 return starting_runtime - remaining;
Paul Turner671fd9d2011-07-21 09:43:34 -07004657}
4658
Paul Turner58088ad2011-07-21 09:43:31 -07004659/*
4660 * Responsible for refilling a task_group's bandwidth and unthrottling its
4661 * cfs_rqs as appropriate. If there has been no activity within the last
4662 * period the timer is deactivated until scheduling resumes; cfs_b->idle is
4663 * used to track this state.
4664 */
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004665static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun, unsigned long flags)
Paul Turner58088ad2011-07-21 09:43:31 -07004666{
Dave Chilukde53fd72019-07-23 11:44:26 -05004667 u64 runtime;
Ben Segall51f21762014-05-19 15:49:45 -07004668 int throttled;
Paul Turner58088ad2011-07-21 09:43:31 -07004669
Paul Turner58088ad2011-07-21 09:43:31 -07004670 /* no need to continue the timer with no bandwidth constraint */
4671 if (cfs_b->quota == RUNTIME_INF)
Ben Segall51f21762014-05-19 15:49:45 -07004672 goto out_deactivate;
Paul Turner58088ad2011-07-21 09:43:31 -07004673
Paul Turner671fd9d2011-07-21 09:43:34 -07004674 throttled = !list_empty(&cfs_b->throttled_cfs_rq);
Nikhil Raoe8da1b12011-07-21 09:43:40 -07004675 cfs_b->nr_periods += overrun;
Paul Turner671fd9d2011-07-21 09:43:34 -07004676
Ben Segall51f21762014-05-19 15:49:45 -07004677 /*
4678 * idle depends on !throttled (for the case of a large deficit), and if
4679 * we're going inactive then everything else can be deferred
4680 */
4681 if (cfs_b->idle && !throttled)
4682 goto out_deactivate;
Paul Turnera9cf55b2011-07-21 09:43:32 -07004683
4684 __refill_cfs_bandwidth_runtime(cfs_b);
4685
Paul Turner671fd9d2011-07-21 09:43:34 -07004686 if (!throttled) {
4687 /* mark as potentially idle for the upcoming period */
4688 cfs_b->idle = 1;
Ben Segall51f21762014-05-19 15:49:45 -07004689 return 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07004690 }
Paul Turner58088ad2011-07-21 09:43:31 -07004691
Nikhil Raoe8da1b12011-07-21 09:43:40 -07004692 /* account preceding periods in which throttling occurred */
4693 cfs_b->nr_throttled += overrun;
4694
Paul Turner671fd9d2011-07-21 09:43:34 -07004695 /*
Ben Segallc06f04c2014-06-20 15:21:20 -07004696 * This check is repeated as we are holding onto the new bandwidth while
4697 * we unthrottle. This can potentially race with an unthrottled group
4698 * trying to acquire new bandwidth from the global pool. This can result
4699 * in us over-using our runtime if it is all used during this loop, but
4700 * only by limited amounts in that extreme case.
Paul Turner671fd9d2011-07-21 09:43:34 -07004701 */
Phil Auldbaa9be42018-10-08 10:36:40 -04004702 while (throttled && cfs_b->runtime > 0 && !cfs_b->distribute_running) {
Ben Segallc06f04c2014-06-20 15:21:20 -07004703 runtime = cfs_b->runtime;
Phil Auldbaa9be42018-10-08 10:36:40 -04004704 cfs_b->distribute_running = 1;
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004705 raw_spin_unlock_irqrestore(&cfs_b->lock, flags);
Paul Turner671fd9d2011-07-21 09:43:34 -07004706 /* we can't nest cfs_b->lock while distributing bandwidth */
Dave Chilukde53fd72019-07-23 11:44:26 -05004707 runtime = distribute_cfs_runtime(cfs_b, runtime);
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004708 raw_spin_lock_irqsave(&cfs_b->lock, flags);
Paul Turner671fd9d2011-07-21 09:43:34 -07004709
Phil Auldbaa9be42018-10-08 10:36:40 -04004710 cfs_b->distribute_running = 0;
Paul Turner671fd9d2011-07-21 09:43:34 -07004711 throttled = !list_empty(&cfs_b->throttled_cfs_rq);
Ben Segallc06f04c2014-06-20 15:21:20 -07004712
Patrick Bellasib5c0ce72018-11-05 14:54:00 +00004713 lsub_positive(&cfs_b->runtime, runtime);
Paul Turner671fd9d2011-07-21 09:43:34 -07004714 }
4715
Paul Turner671fd9d2011-07-21 09:43:34 -07004716 /*
4717 * While we are ensured activity in the period following an
4718 * unthrottle, this also covers the case in which the new bandwidth is
4719 * insufficient to cover the existing bandwidth deficit. (Forcing the
4720 * timer to remain active while there are any throttled entities.)
4721 */
4722 cfs_b->idle = 0;
Paul Turner58088ad2011-07-21 09:43:31 -07004723
Ben Segall51f21762014-05-19 15:49:45 -07004724 return 0;
4725
4726out_deactivate:
Ben Segall51f21762014-05-19 15:49:45 -07004727 return 1;
Paul Turner58088ad2011-07-21 09:43:31 -07004728}
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004729
Paul Turnerd8b49862011-07-21 09:43:41 -07004730/* a cfs_rq won't donate quota below this amount */
4731static const u64 min_cfs_rq_runtime = 1 * NSEC_PER_MSEC;
4732/* minimum remaining period time to redistribute slack quota */
4733static const u64 min_bandwidth_expiration = 2 * NSEC_PER_MSEC;
4734/* how long we wait to gather additional slack before distributing */
4735static const u64 cfs_bandwidth_slack_period = 5 * NSEC_PER_MSEC;
4736
Ben Segalldb06e782013-10-16 11:16:17 -07004737/*
4738 * Are we near the end of the current quota period?
4739 *
4740 * Requires cfs_b->lock for hrtimer_expires_remaining to be safe against the
Thomas Gleixner4961b6e2015-04-14 21:09:05 +00004741 * hrtimer base being cleared by hrtimer_start. In the case of
Ben Segalldb06e782013-10-16 11:16:17 -07004742 * migrate_hrtimers, base is never cleared, so we are fine.
4743 */
Paul Turnerd8b49862011-07-21 09:43:41 -07004744static int runtime_refresh_within(struct cfs_bandwidth *cfs_b, u64 min_expire)
4745{
4746 struct hrtimer *refresh_timer = &cfs_b->period_timer;
4747 u64 remaining;
4748
4749 /* if the call-back is running a quota refresh is already occurring */
4750 if (hrtimer_callback_running(refresh_timer))
4751 return 1;
4752
4753 /* is a quota refresh about to occur? */
4754 remaining = ktime_to_ns(hrtimer_expires_remaining(refresh_timer));
4755 if (remaining < min_expire)
4756 return 1;
4757
4758 return 0;
4759}
4760
4761static void start_cfs_slack_bandwidth(struct cfs_bandwidth *cfs_b)
4762{
4763 u64 min_left = cfs_bandwidth_slack_period + min_bandwidth_expiration;
4764
4765 /* if there's a quota refresh soon don't bother with slack */
4766 if (runtime_refresh_within(cfs_b, min_left))
4767 return;
4768
bsegall@google.com66567fc2019-06-06 10:21:01 -07004769 /* don't push forwards an existing deferred unthrottle */
4770 if (cfs_b->slack_started)
4771 return;
4772 cfs_b->slack_started = true;
4773
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02004774 hrtimer_start(&cfs_b->slack_timer,
4775 ns_to_ktime(cfs_bandwidth_slack_period),
4776 HRTIMER_MODE_REL);
Paul Turnerd8b49862011-07-21 09:43:41 -07004777}
4778
4779/* we know any runtime found here is valid as update_curr() precedes return */
4780static void __return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
4781{
4782 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
4783 s64 slack_runtime = cfs_rq->runtime_remaining - min_cfs_rq_runtime;
4784
4785 if (slack_runtime <= 0)
4786 return;
4787
4788 raw_spin_lock(&cfs_b->lock);
Dave Chilukde53fd72019-07-23 11:44:26 -05004789 if (cfs_b->quota != RUNTIME_INF) {
Paul Turnerd8b49862011-07-21 09:43:41 -07004790 cfs_b->runtime += slack_runtime;
4791
4792 /* we are under rq->lock, defer unthrottling using a timer */
4793 if (cfs_b->runtime > sched_cfs_bandwidth_slice() &&
4794 !list_empty(&cfs_b->throttled_cfs_rq))
4795 start_cfs_slack_bandwidth(cfs_b);
4796 }
4797 raw_spin_unlock(&cfs_b->lock);
4798
4799 /* even if it's not valid for return we don't want to try again */
4800 cfs_rq->runtime_remaining -= slack_runtime;
4801}
4802
4803static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
4804{
Paul Turner56f570e2011-11-07 20:26:33 -08004805 if (!cfs_bandwidth_used())
4806 return;
4807
Paul Turnerfccfdc62011-11-07 20:26:34 -08004808 if (!cfs_rq->runtime_enabled || cfs_rq->nr_running)
Paul Turnerd8b49862011-07-21 09:43:41 -07004809 return;
4810
4811 __return_cfs_rq_runtime(cfs_rq);
4812}
4813
4814/*
4815 * This is done with a timer (instead of inline with bandwidth return) since
4816 * it's necessary to juggle rq->locks to unthrottle their respective cfs_rqs.
4817 */
4818static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b)
4819{
4820 u64 runtime = 0, slice = sched_cfs_bandwidth_slice();
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004821 unsigned long flags;
Paul Turnerd8b49862011-07-21 09:43:41 -07004822
4823 /* confirm we're still not at a refresh boundary */
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004824 raw_spin_lock_irqsave(&cfs_b->lock, flags);
bsegall@google.com66567fc2019-06-06 10:21:01 -07004825 cfs_b->slack_started = false;
Phil Auldbaa9be42018-10-08 10:36:40 -04004826 if (cfs_b->distribute_running) {
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004827 raw_spin_unlock_irqrestore(&cfs_b->lock, flags);
Phil Auldbaa9be42018-10-08 10:36:40 -04004828 return;
4829 }
4830
Ben Segalldb06e782013-10-16 11:16:17 -07004831 if (runtime_refresh_within(cfs_b, min_bandwidth_expiration)) {
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004832 raw_spin_unlock_irqrestore(&cfs_b->lock, flags);
Ben Segalldb06e782013-10-16 11:16:17 -07004833 return;
4834 }
4835
Ben Segallc06f04c2014-06-20 15:21:20 -07004836 if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice)
Paul Turnerd8b49862011-07-21 09:43:41 -07004837 runtime = cfs_b->runtime;
Ben Segallc06f04c2014-06-20 15:21:20 -07004838
Phil Auldbaa9be42018-10-08 10:36:40 -04004839 if (runtime)
4840 cfs_b->distribute_running = 1;
4841
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004842 raw_spin_unlock_irqrestore(&cfs_b->lock, flags);
Paul Turnerd8b49862011-07-21 09:43:41 -07004843
4844 if (!runtime)
4845 return;
4846
Dave Chilukde53fd72019-07-23 11:44:26 -05004847 runtime = distribute_cfs_runtime(cfs_b, runtime);
Paul Turnerd8b49862011-07-21 09:43:41 -07004848
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004849 raw_spin_lock_irqsave(&cfs_b->lock, flags);
Dave Chilukde53fd72019-07-23 11:44:26 -05004850 lsub_positive(&cfs_b->runtime, runtime);
Phil Auldbaa9be42018-10-08 10:36:40 -04004851 cfs_b->distribute_running = 0;
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004852 raw_spin_unlock_irqrestore(&cfs_b->lock, flags);
Paul Turnerd8b49862011-07-21 09:43:41 -07004853}
4854
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004855/*
4856 * When a group wakes up we want to make sure that its quota is not already
4857 * expired/exceeded, otherwise it may be allowed to steal additional ticks of
4858 * runtime as update_curr() throttling can not not trigger until it's on-rq.
4859 */
4860static void check_enqueue_throttle(struct cfs_rq *cfs_rq)
4861{
Paul Turner56f570e2011-11-07 20:26:33 -08004862 if (!cfs_bandwidth_used())
4863 return;
4864
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004865 /* an active group must be handled by the update_curr()->put() path */
4866 if (!cfs_rq->runtime_enabled || cfs_rq->curr)
4867 return;
4868
4869 /* ensure the group is not already throttled */
4870 if (cfs_rq_throttled(cfs_rq))
4871 return;
4872
4873 /* update runtime allocation */
4874 account_cfs_rq_runtime(cfs_rq, 0);
4875 if (cfs_rq->runtime_remaining <= 0)
4876 throttle_cfs_rq(cfs_rq);
4877}
4878
Peter Zijlstra55e16d32016-06-22 15:14:26 +02004879static void sync_throttle(struct task_group *tg, int cpu)
4880{
4881 struct cfs_rq *pcfs_rq, *cfs_rq;
4882
4883 if (!cfs_bandwidth_used())
4884 return;
4885
4886 if (!tg->parent)
4887 return;
4888
4889 cfs_rq = tg->cfs_rq[cpu];
4890 pcfs_rq = tg->parent->cfs_rq[cpu];
4891
4892 cfs_rq->throttle_count = pcfs_rq->throttle_count;
Xunlei Pangb8922122016-07-09 15:54:22 +08004893 cfs_rq->throttled_clock_task = rq_clock_task(cpu_rq(cpu));
Peter Zijlstra55e16d32016-06-22 15:14:26 +02004894}
4895
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004896/* conditionally throttle active cfs_rq's from put_prev_entity() */
Peter Zijlstra678d5712012-02-11 06:05:00 +01004897static bool check_cfs_rq_runtime(struct cfs_rq *cfs_rq)
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004898{
Paul Turner56f570e2011-11-07 20:26:33 -08004899 if (!cfs_bandwidth_used())
Peter Zijlstra678d5712012-02-11 06:05:00 +01004900 return false;
Paul Turner56f570e2011-11-07 20:26:33 -08004901
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004902 if (likely(!cfs_rq->runtime_enabled || cfs_rq->runtime_remaining > 0))
Peter Zijlstra678d5712012-02-11 06:05:00 +01004903 return false;
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004904
4905 /*
4906 * it's possible for a throttled entity to be forced into a running
4907 * state (e.g. set_curr_task), in this case we're finished.
4908 */
4909 if (cfs_rq_throttled(cfs_rq))
Peter Zijlstra678d5712012-02-11 06:05:00 +01004910 return true;
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004911
4912 throttle_cfs_rq(cfs_rq);
Peter Zijlstra678d5712012-02-11 06:05:00 +01004913 return true;
Paul Turnerd3d9dc32011-07-21 09:43:39 -07004914}
Peter Zijlstra029632f2011-10-25 10:00:11 +02004915
Peter Zijlstra029632f2011-10-25 10:00:11 +02004916static enum hrtimer_restart sched_cfs_slack_timer(struct hrtimer *timer)
4917{
4918 struct cfs_bandwidth *cfs_b =
4919 container_of(timer, struct cfs_bandwidth, slack_timer);
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02004920
Peter Zijlstra029632f2011-10-25 10:00:11 +02004921 do_sched_cfs_slack_timer(cfs_b);
4922
4923 return HRTIMER_NORESTART;
4924}
4925
Phil Auld2e8e1922019-03-19 09:00:05 -04004926extern const u64 max_cfs_quota_period;
4927
Peter Zijlstra029632f2011-10-25 10:00:11 +02004928static enum hrtimer_restart sched_cfs_period_timer(struct hrtimer *timer)
4929{
4930 struct cfs_bandwidth *cfs_b =
4931 container_of(timer, struct cfs_bandwidth, period_timer);
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004932 unsigned long flags;
Peter Zijlstra029632f2011-10-25 10:00:11 +02004933 int overrun;
4934 int idle = 0;
Phil Auld2e8e1922019-03-19 09:00:05 -04004935 int count = 0;
Peter Zijlstra029632f2011-10-25 10:00:11 +02004936
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004937 raw_spin_lock_irqsave(&cfs_b->lock, flags);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004938 for (;;) {
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02004939 overrun = hrtimer_forward_now(timer, cfs_b->period);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004940 if (!overrun)
4941 break;
4942
Phil Auld2e8e1922019-03-19 09:00:05 -04004943 if (++count > 3) {
4944 u64 new, old = ktime_to_ns(cfs_b->period);
4945
Xuewei Zhang4929a4e2019-10-03 17:12:43 -07004946 /*
4947 * Grow period by a factor of 2 to avoid losing precision.
4948 * Precision loss in the quota/period ratio can cause __cfs_schedulable
4949 * to fail.
4950 */
4951 new = old * 2;
4952 if (new < max_cfs_quota_period) {
4953 cfs_b->period = ns_to_ktime(new);
4954 cfs_b->quota *= 2;
Phil Auld2e8e1922019-03-19 09:00:05 -04004955
Xuewei Zhang4929a4e2019-10-03 17:12:43 -07004956 pr_warn_ratelimited(
4957 "cfs_period_timer[cpu%d]: period too short, scaling up (new cfs_period_us = %lld, cfs_quota_us = %lld)\n",
4958 smp_processor_id(),
4959 div_u64(new, NSEC_PER_USEC),
4960 div_u64(cfs_b->quota, NSEC_PER_USEC));
4961 } else {
4962 pr_warn_ratelimited(
4963 "cfs_period_timer[cpu%d]: period too short, but cannot scale up without losing precision (cfs_period_us = %lld, cfs_quota_us = %lld)\n",
4964 smp_processor_id(),
4965 div_u64(old, NSEC_PER_USEC),
4966 div_u64(cfs_b->quota, NSEC_PER_USEC));
4967 }
Phil Auld2e8e1922019-03-19 09:00:05 -04004968
4969 /* reset count so we don't come right back in here */
4970 count = 0;
4971 }
4972
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004973 idle = do_sched_cfs_period_timer(cfs_b, overrun, flags);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004974 }
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02004975 if (idle)
4976 cfs_b->period_active = 0;
Peter Zijlstrac0ad4aa2019-01-07 13:52:31 +01004977 raw_spin_unlock_irqrestore(&cfs_b->lock, flags);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004978
4979 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
4980}
4981
4982void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
4983{
4984 raw_spin_lock_init(&cfs_b->lock);
4985 cfs_b->runtime = 0;
4986 cfs_b->quota = RUNTIME_INF;
4987 cfs_b->period = ns_to_ktime(default_cfs_period());
4988
4989 INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq);
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02004990 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra029632f2011-10-25 10:00:11 +02004991 cfs_b->period_timer.function = sched_cfs_period_timer;
4992 hrtimer_init(&cfs_b->slack_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
4993 cfs_b->slack_timer.function = sched_cfs_slack_timer;
Phil Auldbaa9be42018-10-08 10:36:40 -04004994 cfs_b->distribute_running = 0;
bsegall@google.com66567fc2019-06-06 10:21:01 -07004995 cfs_b->slack_started = false;
Peter Zijlstra029632f2011-10-25 10:00:11 +02004996}
4997
4998static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
4999{
5000 cfs_rq->runtime_enabled = 0;
5001 INIT_LIST_HEAD(&cfs_rq->throttled_list);
5002}
5003
Peter Zijlstra77a4d1a2015-04-15 11:41:57 +02005004void start_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
Peter Zijlstra029632f2011-10-25 10:00:11 +02005005{
Peter Zijlstra4cfafd32015-05-14 12:23:11 +02005006 lockdep_assert_held(&cfs_b->lock);
Peter Zijlstra029632f2011-10-25 10:00:11 +02005007
Xunlei Pangf1d1be82018-06-20 18:18:34 +08005008 if (cfs_b->period_active)
5009 return;
5010
5011 cfs_b->period_active = 1;
Qian Cai763a9ec2019-08-20 14:40:55 -04005012 hrtimer_forward_now(&cfs_b->period_timer, cfs_b->period);
Xunlei Pangf1d1be82018-06-20 18:18:34 +08005013 hrtimer_start_expires(&cfs_b->period_timer, HRTIMER_MODE_ABS_PINNED);
Peter Zijlstra029632f2011-10-25 10:00:11 +02005014}
5015
5016static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
5017{
Tetsuo Handa7f1a1692014-12-25 15:51:21 +09005018 /* init_cfs_bandwidth() was not called */
5019 if (!cfs_b->throttled_cfs_rq.next)
5020 return;
5021
Peter Zijlstra029632f2011-10-25 10:00:11 +02005022 hrtimer_cancel(&cfs_b->period_timer);
5023 hrtimer_cancel(&cfs_b->slack_timer);
5024}
5025
Peter Zijlstra502ce002017-05-04 15:31:22 +02005026/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005027 * Both these CPU hotplug callbacks race against unregister_fair_sched_group()
Peter Zijlstra502ce002017-05-04 15:31:22 +02005028 *
5029 * The race is harmless, since modifying bandwidth settings of unhooked group
5030 * bits doesn't do much.
5031 */
5032
5033/* cpu online calback */
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005034static void __maybe_unused update_runtime_enabled(struct rq *rq)
5035{
Peter Zijlstra502ce002017-05-04 15:31:22 +02005036 struct task_group *tg;
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005037
Peter Zijlstra502ce002017-05-04 15:31:22 +02005038 lockdep_assert_held(&rq->lock);
5039
5040 rcu_read_lock();
5041 list_for_each_entry_rcu(tg, &task_groups, list) {
5042 struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
5043 struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005044
5045 raw_spin_lock(&cfs_b->lock);
5046 cfs_rq->runtime_enabled = cfs_b->quota != RUNTIME_INF;
5047 raw_spin_unlock(&cfs_b->lock);
5048 }
Peter Zijlstra502ce002017-05-04 15:31:22 +02005049 rcu_read_unlock();
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005050}
5051
Peter Zijlstra502ce002017-05-04 15:31:22 +02005052/* cpu offline callback */
Arnd Bergmann38dc3342013-01-25 14:14:22 +00005053static void __maybe_unused unthrottle_offline_cfs_rqs(struct rq *rq)
Peter Zijlstra029632f2011-10-25 10:00:11 +02005054{
Peter Zijlstra502ce002017-05-04 15:31:22 +02005055 struct task_group *tg;
Peter Zijlstra029632f2011-10-25 10:00:11 +02005056
Peter Zijlstra502ce002017-05-04 15:31:22 +02005057 lockdep_assert_held(&rq->lock);
5058
5059 rcu_read_lock();
5060 list_for_each_entry_rcu(tg, &task_groups, list) {
5061 struct cfs_rq *cfs_rq = tg->cfs_rq[cpu_of(rq)];
5062
Peter Zijlstra029632f2011-10-25 10:00:11 +02005063 if (!cfs_rq->runtime_enabled)
5064 continue;
5065
5066 /*
5067 * clock_task is not advancing so we just need to make sure
5068 * there's some valid quota amount
5069 */
Ben Segall51f21762014-05-19 15:49:45 -07005070 cfs_rq->runtime_remaining = 1;
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005071 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005072 * Offline rq is schedulable till CPU is completely disabled
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005073 * in take_cpu_down(), so we prevent new cfs throttling here.
5074 */
5075 cfs_rq->runtime_enabled = 0;
5076
Peter Zijlstra029632f2011-10-25 10:00:11 +02005077 if (cfs_rq_throttled(cfs_rq))
5078 unthrottle_cfs_rq(cfs_rq);
5079 }
Peter Zijlstra502ce002017-05-04 15:31:22 +02005080 rcu_read_unlock();
Peter Zijlstra029632f2011-10-25 10:00:11 +02005081}
5082
5083#else /* CONFIG_CFS_BANDWIDTH */
Vincent Guittotf6783312019-01-30 06:22:47 +01005084
5085static inline bool cfs_bandwidth_used(void)
5086{
5087 return false;
5088}
5089
Peter Zijlstra9dbdb152013-11-18 18:27:06 +01005090static void account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec) {}
Peter Zijlstra678d5712012-02-11 06:05:00 +01005091static bool check_cfs_rq_runtime(struct cfs_rq *cfs_rq) { return false; }
Paul Turnerd3d9dc32011-07-21 09:43:39 -07005092static void check_enqueue_throttle(struct cfs_rq *cfs_rq) {}
Peter Zijlstra55e16d32016-06-22 15:14:26 +02005093static inline void sync_throttle(struct task_group *tg, int cpu) {}
Peter Zijlstra6c16a6d2012-03-21 13:07:16 -07005094static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
Paul Turner85dac902011-07-21 09:43:33 -07005095
5096static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
5097{
5098 return 0;
5099}
Paul Turner64660c82011-07-21 09:43:36 -07005100
5101static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
5102{
5103 return 0;
5104}
5105
5106static inline int throttled_lb_pair(struct task_group *tg,
5107 int src_cpu, int dest_cpu)
5108{
5109 return 0;
5110}
Peter Zijlstra029632f2011-10-25 10:00:11 +02005111
5112void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
5113
5114#ifdef CONFIG_FAIR_GROUP_SCHED
5115static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
Paul Turnerab84d312011-07-21 09:43:28 -07005116#endif
5117
Peter Zijlstra029632f2011-10-25 10:00:11 +02005118static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
5119{
5120 return NULL;
5121}
5122static inline void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
Kirill Tkhai0e59bda2014-06-25 12:19:42 +04005123static inline void update_runtime_enabled(struct rq *rq) {}
Peter Boonstoppela4c96ae2012-08-09 15:34:47 -07005124static inline void unthrottle_offline_cfs_rqs(struct rq *rq) {}
Peter Zijlstra029632f2011-10-25 10:00:11 +02005125
5126#endif /* CONFIG_CFS_BANDWIDTH */
5127
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005128/**************************************************
5129 * CFS operations on tasks:
5130 */
5131
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005132#ifdef CONFIG_SCHED_HRTICK
5133static void hrtick_start_fair(struct rq *rq, struct task_struct *p)
5134{
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005135 struct sched_entity *se = &p->se;
5136 struct cfs_rq *cfs_rq = cfs_rq_of(se);
5137
Peter Zijlstra9148a3a2016-09-20 22:34:51 +02005138 SCHED_WARN_ON(task_rq(p) != rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005139
Srivatsa Vaddagiri8bf46a32016-09-16 18:28:51 -07005140 if (rq->cfs.h_nr_running > 1) {
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005141 u64 slice = sched_slice(cfs_rq, se);
5142 u64 ran = se->sum_exec_runtime - se->prev_sum_exec_runtime;
5143 s64 delta = slice - ran;
5144
5145 if (delta < 0) {
5146 if (rq->curr == p)
Kirill Tkhai88751252014-06-29 00:03:57 +04005147 resched_curr(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005148 return;
5149 }
Peter Zijlstra31656512008-07-18 18:01:23 +02005150 hrtick_start(rq, delta);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005151 }
5152}
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02005153
5154/*
5155 * called from enqueue/dequeue and updates the hrtick when the
5156 * current task is from our class and nr_running is low enough
5157 * to matter.
5158 */
5159static void hrtick_update(struct rq *rq)
5160{
5161 struct task_struct *curr = rq->curr;
5162
Mike Galbraithb39e66e2011-11-22 15:20:07 +01005163 if (!hrtick_enabled(rq) || curr->sched_class != &fair_sched_class)
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02005164 return;
5165
5166 if (cfs_rq_of(&curr->se)->nr_running < sched_nr_latency)
5167 hrtick_start_fair(rq, curr);
5168}
Dhaval Giani55e12e52008-06-24 23:39:43 +05305169#else /* !CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005170static inline void
5171hrtick_start_fair(struct rq *rq, struct task_struct *p)
5172{
5173}
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02005174
5175static inline void hrtick_update(struct rq *rq)
5176{
5177}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005178#endif
5179
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005180#ifdef CONFIG_SMP
5181static inline unsigned long cpu_util(int cpu);
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005182
5183static inline bool cpu_overutilized(int cpu)
5184{
Viresh Kumar60e17f52019-06-04 12:31:52 +05305185 return !fits_capacity(cpu_util(cpu), capacity_of(cpu));
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005186}
5187
5188static inline void update_overutilized_status(struct rq *rq)
5189{
Qais Youseff9f240f2019-06-04 12:14:58 +01005190 if (!READ_ONCE(rq->rd->overutilized) && cpu_overutilized(rq->cpu)) {
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005191 WRITE_ONCE(rq->rd->overutilized, SG_OVERUTILIZED);
Qais Youseff9f240f2019-06-04 12:14:58 +01005192 trace_sched_overutilized_tp(rq->rd, SG_OVERUTILIZED);
5193 }
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005194}
5195#else
5196static inline void update_overutilized_status(struct rq *rq) { }
5197#endif
5198
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005199/*
5200 * The enqueue_task method is called before nr_running is
5201 * increased. Here we update the fair scheduling stats and
5202 * then put the task into the rbtree:
5203 */
Thomas Gleixnerea87bb72010-01-20 20:58:57 +00005204static void
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01005205enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005206{
5207 struct cfs_rq *cfs_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01005208 struct sched_entity *se = &p->se;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05305209 int idle_h_nr_running = task_has_idle_policy(p);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005210
Rafael J. Wysocki8c34ab12016-09-09 23:59:33 +02005211 /*
Patrick Bellasi2539fc82018-05-24 15:10:23 +01005212 * The code below (indirectly) updates schedutil which looks at
5213 * the cfs_rq utilization to select a frequency.
5214 * Let's add the task's estimated utilization to the cfs_rq's
5215 * estimated utilization, before we update schedutil.
5216 */
5217 util_est_enqueue(&rq->cfs, p);
5218
5219 /*
Rafael J. Wysocki8c34ab12016-09-09 23:59:33 +02005220 * If in_iowait is set, the code below may not trigger any cpufreq
5221 * utilization updates, so do it here explicitly with the IOWAIT flag
5222 * passed.
5223 */
5224 if (p->in_iowait)
Viresh Kumar674e7542017-07-28 12:16:38 +05305225 cpufreq_update_util(rq, SCHED_CPUFREQ_IOWAIT);
Rafael J. Wysocki8c34ab12016-09-09 23:59:33 +02005226
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005227 for_each_sched_entity(se) {
Peter Zijlstra62fb1852008-02-25 17:34:02 +01005228 if (se->on_rq)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005229 break;
5230 cfs_rq = cfs_rq_of(se);
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01005231 enqueue_entity(cfs_rq, se, flags);
Paul Turner85dac902011-07-21 09:43:33 -07005232
5233 /*
5234 * end evaluation on encountering a throttled cfs_rq
5235 *
5236 * note: in the case of encountering a throttled cfs_rq we will
5237 * post the final h_nr_running increment below.
Peter Zijlstrae210bff2016-06-16 18:51:48 +02005238 */
Paul Turner85dac902011-07-21 09:43:33 -07005239 if (cfs_rq_throttled(cfs_rq))
5240 break;
Paul Turner953bfcd2011-07-21 09:43:27 -07005241 cfs_rq->h_nr_running++;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05305242 cfs_rq->idle_h_nr_running += idle_h_nr_running;
Paul Turner85dac902011-07-21 09:43:33 -07005243
Peter Zijlstra88ec22d2009-12-16 18:04:41 +01005244 flags = ENQUEUE_WAKEUP;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005245 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005246
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005247 for_each_sched_entity(se) {
Lin Ming0f317142011-07-22 09:14:31 +08005248 cfs_rq = cfs_rq_of(se);
Paul Turner953bfcd2011-07-21 09:43:27 -07005249 cfs_rq->h_nr_running++;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05305250 cfs_rq->idle_h_nr_running += idle_h_nr_running;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005251
Paul Turner85dac902011-07-21 09:43:33 -07005252 if (cfs_rq_throttled(cfs_rq))
5253 break;
5254
Peter Zijlstra88c06162017-05-06 17:32:43 +02005255 update_load_avg(cfs_rq, se, UPDATE_TG);
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02005256 update_cfs_group(se);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005257 }
5258
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005259 if (!se) {
Kirill Tkhai72465442014-05-09 03:00:14 +04005260 add_nr_running(rq, 1);
Morten Rasmussen2802bf32018-12-03 09:56:25 +00005261 /*
5262 * Since new tasks are assigned an initial util_avg equal to
5263 * half of the spare capacity of their CPU, tiny tasks have the
5264 * ability to cross the overutilized threshold, which will
5265 * result in the load balancer ruining all the task placement
5266 * done by EAS. As a way to mitigate that effect, do not account
5267 * for the first enqueue operation of new tasks during the
5268 * overutilized flag detection.
5269 *
5270 * A better way of solving this problem would be to wait for
5271 * the PELT signals of tasks to converge before taking them
5272 * into account, but that is not straightforward to implement,
5273 * and the following generally works well enough in practice.
5274 */
5275 if (flags & ENQUEUE_WAKEUP)
5276 update_overutilized_status(rq);
5277
5278 }
Yuyang Ducd126af2015-07-15 08:04:36 +08005279
Vincent Guittotf6783312019-01-30 06:22:47 +01005280 if (cfs_bandwidth_used()) {
5281 /*
5282 * When bandwidth control is enabled; the cfs_rq_throttled()
5283 * breaks in the above iteration can result in incomplete
5284 * leaf list maintenance, resulting in triggering the assertion
5285 * below.
5286 */
5287 for_each_sched_entity(se) {
5288 cfs_rq = cfs_rq_of(se);
5289
5290 if (list_add_leaf_cfs_rq(cfs_rq))
5291 break;
5292 }
5293 }
5294
Peter Zijlstra5d299ea2019-01-30 14:41:04 +01005295 assert_list_leaf_cfs_rq(rq);
5296
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02005297 hrtick_update(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005298}
5299
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07005300static void set_next_buddy(struct sched_entity *se);
5301
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005302/*
5303 * The dequeue_task method is called before nr_running is
5304 * decreased. We remove the task from the rbtree and
5305 * update the fair scheduling stats:
5306 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01005307static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005308{
5309 struct cfs_rq *cfs_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01005310 struct sched_entity *se = &p->se;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07005311 int task_sleep = flags & DEQUEUE_SLEEP;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05305312 int idle_h_nr_running = task_has_idle_policy(p);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005313
5314 for_each_sched_entity(se) {
5315 cfs_rq = cfs_rq_of(se);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01005316 dequeue_entity(cfs_rq, se, flags);
Paul Turner85dac902011-07-21 09:43:33 -07005317
5318 /*
5319 * end evaluation on encountering a throttled cfs_rq
5320 *
5321 * note: in the case of encountering a throttled cfs_rq we will
5322 * post the final h_nr_running decrement below.
5323 */
5324 if (cfs_rq_throttled(cfs_rq))
5325 break;
Paul Turner953bfcd2011-07-21 09:43:27 -07005326 cfs_rq->h_nr_running--;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05305327 cfs_rq->idle_h_nr_running -= idle_h_nr_running;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005328
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005329 /* Don't dequeue parent if it has other entities besides us */
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07005330 if (cfs_rq->load.weight) {
Konstantin Khlebnikov754bd592016-06-16 15:57:15 +03005331 /* Avoid re-evaluating load for this entity: */
5332 se = parent_entity(se);
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07005333 /*
5334 * Bias pick_next to pick a task from this cfs_rq, as
5335 * p is sleeping when it is within its sched_slice.
5336 */
Konstantin Khlebnikov754bd592016-06-16 15:57:15 +03005337 if (task_sleep && se && !throttled_hierarchy(cfs_rq))
5338 set_next_buddy(se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005339 break;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07005340 }
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01005341 flags |= DEQUEUE_SLEEP;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005342 }
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01005343
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005344 for_each_sched_entity(se) {
Lin Ming0f317142011-07-22 09:14:31 +08005345 cfs_rq = cfs_rq_of(se);
Paul Turner953bfcd2011-07-21 09:43:27 -07005346 cfs_rq->h_nr_running--;
Viresh Kumar43e9f7f2019-06-26 10:36:29 +05305347 cfs_rq->idle_h_nr_running -= idle_h_nr_running;
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005348
Paul Turner85dac902011-07-21 09:43:33 -07005349 if (cfs_rq_throttled(cfs_rq))
5350 break;
5351
Peter Zijlstra88c06162017-05-06 17:32:43 +02005352 update_load_avg(cfs_rq, se, UPDATE_TG);
Peter Zijlstra1ea6c462017-05-06 15:59:54 +02005353 update_cfs_group(se);
Peter Zijlstra2069dd72010-11-15 15:47:00 -08005354 }
5355
Yuyang Ducd126af2015-07-15 08:04:36 +08005356 if (!se)
Kirill Tkhai72465442014-05-09 03:00:14 +04005357 sub_nr_running(rq, 1);
Yuyang Ducd126af2015-07-15 08:04:36 +08005358
Patrick Bellasi7f65ea42018-03-09 09:52:42 +00005359 util_est_dequeue(&rq->cfs, p, task_sleep);
Peter Zijlstraa4c2f002008-10-17 19:27:03 +02005360 hrtick_update(rq);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02005361}
5362
Gregory Haskinse7693a32008-01-25 21:08:09 +01005363#ifdef CONFIG_SMP
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005364
5365/* Working cpumask for: load_balance, load_balance_newidle. */
5366DEFINE_PER_CPU(cpumask_var_t, load_balance_mask);
5367DEFINE_PER_CPU(cpumask_var_t, select_idle_mask);
5368
Frederic Weisbecker9fd81dd2016-04-19 17:36:51 +02005369#ifdef CONFIG_NO_HZ_COMMON
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01005370
5371static struct {
5372 cpumask_var_t idle_cpus_mask;
5373 atomic_t nr_cpus;
Vincent Guittotf643ea22018-02-13 11:31:17 +01005374 int has_blocked; /* Idle CPUS has blocked load */
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01005375 unsigned long next_balance; /* in jiffy units */
Vincent Guittotf643ea22018-02-13 11:31:17 +01005376 unsigned long next_blocked; /* Next update of blocked load in jiffies */
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01005377} nohz ____cacheline_aligned;
5378
Frederic Weisbecker9fd81dd2016-04-19 17:36:51 +02005379#endif /* CONFIG_NO_HZ_COMMON */
Peter Zijlstra3289bdb2015-04-14 13:19:42 +02005380
Viresh Kumar3c29e652019-06-26 10:36:30 +05305381/* CPU only has SCHED_IDLE tasks enqueued */
5382static int sched_idle_cpu(int cpu)
5383{
5384 struct rq *rq = cpu_rq(cpu);
5385
5386 return unlikely(rq->nr_running == rq->cfs.idle_h_nr_running &&
5387 rq->nr_running);
5388}
5389
Vincent Guittotb0fb1eb2019-10-18 15:26:33 +02005390static unsigned long cpu_load(struct rq *rq)
5391{
5392 return cfs_rq_load_avg(&rq->cfs);
5393}
5394
Vincent Guittot3318544b2019-10-22 18:46:38 +02005395/*
5396 * cpu_load_without - compute CPU load without any contributions from *p
5397 * @cpu: the CPU which load is requested
5398 * @p: the task which load should be discounted
5399 *
5400 * The load of a CPU is defined by the load of tasks currently enqueued on that
5401 * CPU as well as tasks which are currently sleeping after an execution on that
5402 * CPU.
5403 *
5404 * This method returns the load of the specified CPU by discounting the load of
5405 * the specified task, whenever the task is currently contributing to the CPU
5406 * load.
5407 */
5408static unsigned long cpu_load_without(struct rq *rq, struct task_struct *p)
5409{
5410 struct cfs_rq *cfs_rq;
5411 unsigned int load;
5412
5413 /* Task has no contribution or is new */
5414 if (cpu_of(rq) != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
5415 return cpu_load(rq);
5416
5417 cfs_rq = &rq->cfs;
5418 load = READ_ONCE(cfs_rq->avg.load_avg);
5419
5420 /* Discount task's util from CPU's util */
5421 lsub_positive(&load, task_h_load(p));
5422
5423 return load;
5424}
5425
Nicolas Pitreced549f2014-05-26 18:19:38 -04005426static unsigned long capacity_of(int cpu)
Peter Zijlstra029632f2011-10-25 10:00:11 +02005427{
Nicolas Pitreced549f2014-05-26 18:19:38 -04005428 return cpu_rq(cpu)->cpu_capacity;
Peter Zijlstra029632f2011-10-25 10:00:11 +02005429}
5430
Peter Zijlstrac58d25f2016-05-12 09:19:59 +02005431static void record_wakee(struct task_struct *p)
5432{
5433 /*
5434 * Only decay a single time; tasks that have less then 1 wakeup per
5435 * jiffy will not have built up many flips.
5436 */
5437 if (time_after(jiffies, current->wakee_flip_decay_ts + HZ)) {
5438 current->wakee_flips >>= 1;
5439 current->wakee_flip_decay_ts = jiffies;
5440 }
5441
5442 if (current->last_wakee != p) {
5443 current->last_wakee = p;
5444 current->wakee_flips++;
5445 }
5446}
5447
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02005448/*
5449 * Detect M:N waker/wakee relationships via a switching-frequency heuristic.
Peter Zijlstrac58d25f2016-05-12 09:19:59 +02005450 *
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02005451 * A waker of many should wake a different task than the one last awakened
Peter Zijlstrac58d25f2016-05-12 09:19:59 +02005452 * at a frequency roughly N times higher than one of its wakees.
5453 *
5454 * In order to determine whether we should let the load spread vs consolidating
5455 * to shared cache, we look for a minimum 'flip' frequency of llc_size in one
5456 * partner, and a factor of lls_size higher frequency in the other.
5457 *
5458 * With both conditions met, we can be relatively sure that the relationship is
5459 * non-monogamous, with partner count exceeding socket size.
5460 *
5461 * Waker/wakee being client/server, worker/dispatcher, interrupt source or
5462 * whatever is irrelevant, spread criteria is apparent partner count exceeds
5463 * socket size.
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02005464 */
Michael Wang62470412013-07-04 12:55:51 +08005465static int wake_wide(struct task_struct *p)
5466{
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02005467 unsigned int master = current->wakee_flips;
5468 unsigned int slave = p->wakee_flips;
Peter Zijlstra7d9ffa82013-07-04 12:56:46 +08005469 int factor = this_cpu_read(sd_llc_size);
Michael Wang62470412013-07-04 12:55:51 +08005470
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02005471 if (master < slave)
5472 swap(master, slave);
5473 if (slave < factor || master < slave * factor)
5474 return 0;
5475 return 1;
Michael Wang62470412013-07-04 12:55:51 +08005476}
5477
Peter Zijlstra90001d62017-07-31 17:50:05 +02005478/*
Peter Zijlstrad153b152017-09-27 11:35:30 +02005479 * The purpose of wake_affine() is to quickly determine on which CPU we can run
5480 * soonest. For the purpose of speed we only consider the waking and previous
5481 * CPU.
Peter Zijlstra90001d62017-07-31 17:50:05 +02005482 *
Mel Gorman7332dec2017-12-19 08:59:47 +00005483 * wake_affine_idle() - only considers 'now', it check if the waking CPU is
5484 * cache-affine and is (or will be) idle.
Peter Zijlstraf2cdd9c2017-10-06 09:23:24 +02005485 *
5486 * wake_affine_weight() - considers the weight to reflect the average
5487 * scheduling latency of the CPUs. This seems to work
5488 * for the overloaded case.
Peter Zijlstra90001d62017-07-31 17:50:05 +02005489 */
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005490static int
Mel Gorman89a55f52018-01-30 10:45:52 +00005491wake_affine_idle(int this_cpu, int prev_cpu, int sync)
Peter Zijlstra90001d62017-07-31 17:50:05 +02005492{
Mel Gorman7332dec2017-12-19 08:59:47 +00005493 /*
5494 * If this_cpu is idle, it implies the wakeup is from interrupt
5495 * context. Only allow the move if cache is shared. Otherwise an
5496 * interrupt intensive workload could force all tasks onto one
5497 * node depending on the IO topology or IRQ affinity settings.
Mel Gorman806486c2018-01-30 10:45:54 +00005498 *
5499 * If the prev_cpu is idle and cache affine then avoid a migration.
5500 * There is no guarantee that the cache hot data from an interrupt
5501 * is more important than cache hot data on the prev_cpu and from
5502 * a cpufreq perspective, it's better to have higher utilisation
5503 * on one CPU.
Mel Gorman7332dec2017-12-19 08:59:47 +00005504 */
Rohit Jain943d3552018-05-09 09:39:48 -07005505 if (available_idle_cpu(this_cpu) && cpus_share_cache(this_cpu, prev_cpu))
5506 return available_idle_cpu(prev_cpu) ? prev_cpu : this_cpu;
Peter Zijlstra90001d62017-07-31 17:50:05 +02005507
Peter Zijlstrad153b152017-09-27 11:35:30 +02005508 if (sync && cpu_rq(this_cpu)->nr_running == 1)
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005509 return this_cpu;
Peter Zijlstra90001d62017-07-31 17:50:05 +02005510
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005511 return nr_cpumask_bits;
Peter Zijlstra90001d62017-07-31 17:50:05 +02005512}
5513
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005514static int
Peter Zijlstraf2cdd9c2017-10-06 09:23:24 +02005515wake_affine_weight(struct sched_domain *sd, struct task_struct *p,
5516 int this_cpu, int prev_cpu, int sync)
Peter Zijlstra90001d62017-07-31 17:50:05 +02005517{
Peter Zijlstra90001d62017-07-31 17:50:05 +02005518 s64 this_eff_load, prev_eff_load;
5519 unsigned long task_load;
5520
Vincent Guittot11f10e52019-10-18 15:26:36 +02005521 this_eff_load = cpu_load(cpu_rq(this_cpu));
Peter Zijlstra90001d62017-07-31 17:50:05 +02005522
Peter Zijlstra90001d62017-07-31 17:50:05 +02005523 if (sync) {
5524 unsigned long current_load = task_h_load(current);
5525
Peter Zijlstraf2cdd9c2017-10-06 09:23:24 +02005526 if (current_load > this_eff_load)
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005527 return this_cpu;
Peter Zijlstra90001d62017-07-31 17:50:05 +02005528
Peter Zijlstraf2cdd9c2017-10-06 09:23:24 +02005529 this_eff_load -= current_load;
Peter Zijlstra90001d62017-07-31 17:50:05 +02005530 }
5531
Peter Zijlstra90001d62017-07-31 17:50:05 +02005532 task_load = task_h_load(p);
5533
Peter Zijlstraf2cdd9c2017-10-06 09:23:24 +02005534 this_eff_load += task_load;
5535 if (sched_feat(WA_BIAS))
5536 this_eff_load *= 100;
5537 this_eff_load *= capacity_of(prev_cpu);
Peter Zijlstra90001d62017-07-31 17:50:05 +02005538
Vincent Guittot11f10e52019-10-18 15:26:36 +02005539 prev_eff_load = cpu_load(cpu_rq(prev_cpu));
Peter Zijlstraf2cdd9c2017-10-06 09:23:24 +02005540 prev_eff_load -= task_load;
5541 if (sched_feat(WA_BIAS))
5542 prev_eff_load *= 100 + (sd->imbalance_pct - 100) / 2;
5543 prev_eff_load *= capacity_of(this_cpu);
Peter Zijlstra90001d62017-07-31 17:50:05 +02005544
Mel Gorman082f7642018-02-13 13:37:27 +00005545 /*
5546 * If sync, adjust the weight of prev_eff_load such that if
5547 * prev_eff == this_eff that select_idle_sibling() will consider
5548 * stacking the wakee on top of the waker if no other CPU is
5549 * idle.
5550 */
5551 if (sync)
5552 prev_eff_load += 1;
5553
5554 return this_eff_load < prev_eff_load ? this_cpu : nr_cpumask_bits;
Peter Zijlstra90001d62017-07-31 17:50:05 +02005555}
5556
Morten Rasmussen772bd008c2016-06-22 18:03:13 +01005557static int wake_affine(struct sched_domain *sd, struct task_struct *p,
Mel Gorman7ebb66a2018-02-13 13:37:25 +00005558 int this_cpu, int prev_cpu, int sync)
Ingo Molnar098fb9d2008-03-16 20:36:10 +01005559{
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005560 int target = nr_cpumask_bits;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01005561
Mel Gorman89a55f52018-01-30 10:45:52 +00005562 if (sched_feat(WA_IDLE))
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005563 target = wake_affine_idle(this_cpu, prev_cpu, sync);
Peter Zijlstra90001d62017-07-31 17:50:05 +02005564
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005565 if (sched_feat(WA_WEIGHT) && target == nr_cpumask_bits)
5566 target = wake_affine_weight(sd, p, this_cpu, prev_cpu, sync);
Mike Galbraithb3137bc2008-05-29 11:11:41 +02005567
Josh Poimboeufae928822016-06-17 12:43:24 -05005568 schedstat_inc(p->se.statistics.nr_wakeups_affine_attempts);
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005569 if (target == nr_cpumask_bits)
5570 return prev_cpu;
Mike Galbraithb3137bc2008-05-29 11:11:41 +02005571
Mel Gorman3b76c4a2018-01-30 10:45:53 +00005572 schedstat_inc(sd->ttwu_move_affine);
5573 schedstat_inc(p->se.statistics.nr_wakeups_affine);
5574 return target;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01005575}
5576
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005577static struct sched_group *
Peter Zijlstra78e7ed52009-09-03 13:16:51 +02005578find_idlest_group(struct sched_domain *sd, struct task_struct *p,
Vincent Guittot57abff02019-10-18 15:26:38 +02005579 int this_cpu, int sd_flag);
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005580
5581/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005582 * find_idlest_group_cpu - find the idlest CPU among the CPUs in the group.
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005583 */
5584static int
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005585find_idlest_group_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005586{
5587 unsigned long load, min_load = ULONG_MAX;
Nicolas Pitre83a0a962014-09-04 11:32:10 -04005588 unsigned int min_exit_latency = UINT_MAX;
5589 u64 latest_idle_timestamp = 0;
5590 int least_loaded_cpu = this_cpu;
Viresh Kumar3c29e652019-06-26 10:36:30 +05305591 int shallowest_idle_cpu = -1, si_cpu = -1;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005592 int i;
5593
Morten Rasmusseneaecf412016-06-22 18:03:14 +01005594 /* Check if we have any choice: */
5595 if (group->group_weight == 1)
Peter Zijlstraae4df9d2017-05-01 11:03:12 +02005596 return cpumask_first(sched_group_span(group));
Morten Rasmusseneaecf412016-06-22 18:03:14 +01005597
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005598 /* Traverse only the allowed CPUs */
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02005599 for_each_cpu_and(i, sched_group_span(group), p->cpus_ptr) {
Rohit Jain943d3552018-05-09 09:39:48 -07005600 if (available_idle_cpu(i)) {
Nicolas Pitre83a0a962014-09-04 11:32:10 -04005601 struct rq *rq = cpu_rq(i);
5602 struct cpuidle_state *idle = idle_get_state(rq);
5603 if (idle && idle->exit_latency < min_exit_latency) {
5604 /*
5605 * We give priority to a CPU whose idle state
5606 * has the smallest exit latency irrespective
5607 * of any idle timestamp.
5608 */
5609 min_exit_latency = idle->exit_latency;
5610 latest_idle_timestamp = rq->idle_stamp;
5611 shallowest_idle_cpu = i;
5612 } else if ((!idle || idle->exit_latency == min_exit_latency) &&
5613 rq->idle_stamp > latest_idle_timestamp) {
5614 /*
5615 * If equal or no active idle state, then
5616 * the most recently idled CPU might have
5617 * a warmer cache.
5618 */
5619 latest_idle_timestamp = rq->idle_stamp;
5620 shallowest_idle_cpu = i;
5621 }
Viresh Kumar3c29e652019-06-26 10:36:30 +05305622 } else if (shallowest_idle_cpu == -1 && si_cpu == -1) {
5623 if (sched_idle_cpu(i)) {
5624 si_cpu = i;
5625 continue;
5626 }
5627
Vincent Guittot11f10e52019-10-18 15:26:36 +02005628 load = cpu_load(cpu_rq(i));
Joel Fernandes18cec7e2017-12-15 07:39:44 -08005629 if (load < min_load) {
Nicolas Pitre83a0a962014-09-04 11:32:10 -04005630 min_load = load;
5631 least_loaded_cpu = i;
5632 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01005633 }
5634 }
5635
Viresh Kumar3c29e652019-06-26 10:36:30 +05305636 if (shallowest_idle_cpu != -1)
5637 return shallowest_idle_cpu;
5638 if (si_cpu != -1)
5639 return si_cpu;
5640 return least_loaded_cpu;
Peter Zijlstraaaee1202009-09-10 13:36:25 +02005641}
Gregory Haskinse7693a32008-01-25 21:08:09 +01005642
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005643static inline int find_idlest_cpu(struct sched_domain *sd, struct task_struct *p,
5644 int cpu, int prev_cpu, int sd_flag)
5645{
Brendan Jackman93f50f92017-10-05 12:45:16 +01005646 int new_cpu = cpu;
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005647
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02005648 if (!cpumask_intersects(sched_domain_span(sd), p->cpus_ptr))
Brendan Jackman6fee85c2017-10-05 12:45:15 +01005649 return prev_cpu;
5650
Viresh Kumarc976a862018-04-26 16:00:51 +05305651 /*
Vincent Guittot57abff02019-10-18 15:26:38 +02005652 * We need task's util for cpu_util_without, sync it up to
Patrick Bellasic4699332018-11-05 14:53:58 +00005653 * prev_cpu's last_update_time.
Viresh Kumarc976a862018-04-26 16:00:51 +05305654 */
5655 if (!(sd_flag & SD_BALANCE_FORK))
5656 sync_entity_load_avg(&p->se);
5657
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005658 while (sd) {
5659 struct sched_group *group;
5660 struct sched_domain *tmp;
5661 int weight;
5662
5663 if (!(sd->flags & sd_flag)) {
5664 sd = sd->child;
5665 continue;
5666 }
5667
5668 group = find_idlest_group(sd, p, cpu, sd_flag);
5669 if (!group) {
5670 sd = sd->child;
5671 continue;
5672 }
5673
5674 new_cpu = find_idlest_group_cpu(group, p, cpu);
Brendan Jackmane90381e2017-10-05 12:45:13 +01005675 if (new_cpu == cpu) {
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005676 /* Now try balancing at a lower domain level of 'cpu': */
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005677 sd = sd->child;
5678 continue;
5679 }
5680
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005681 /* Now try balancing at a lower domain level of 'new_cpu': */
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005682 cpu = new_cpu;
5683 weight = sd->span_weight;
5684 sd = NULL;
5685 for_each_domain(cpu, tmp) {
5686 if (weight <= tmp->span_weight)
5687 break;
5688 if (tmp->flags & sd_flag)
5689 sd = tmp;
5690 }
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01005691 }
5692
5693 return new_cpu;
5694}
5695
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005696#ifdef CONFIG_SCHED_SMT
Peter Zijlstraba2591a2018-05-29 16:43:46 +02005697DEFINE_STATIC_KEY_FALSE(sched_smt_present);
Josh Poimboeufb2849092019-01-30 07:13:58 -06005698EXPORT_SYMBOL_GPL(sched_smt_present);
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005699
5700static inline void set_idle_cores(int cpu, int val)
5701{
5702 struct sched_domain_shared *sds;
5703
5704 sds = rcu_dereference(per_cpu(sd_llc_shared, cpu));
5705 if (sds)
5706 WRITE_ONCE(sds->has_idle_cores, val);
5707}
5708
5709static inline bool test_idle_cores(int cpu, bool def)
5710{
5711 struct sched_domain_shared *sds;
5712
5713 sds = rcu_dereference(per_cpu(sd_llc_shared, cpu));
5714 if (sds)
5715 return READ_ONCE(sds->has_idle_cores);
5716
5717 return def;
5718}
5719
5720/*
5721 * Scans the local SMT mask to see if the entire core is idle, and records this
5722 * information in sd_llc_shared->has_idle_cores.
5723 *
5724 * Since SMT siblings share all cache levels, inspecting this limited remote
5725 * state should be fairly cheap.
5726 */
Peter Zijlstra1b568f02016-05-09 10:38:41 +02005727void __update_idle_core(struct rq *rq)
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005728{
5729 int core = cpu_of(rq);
5730 int cpu;
5731
5732 rcu_read_lock();
5733 if (test_idle_cores(core, true))
5734 goto unlock;
5735
5736 for_each_cpu(cpu, cpu_smt_mask(core)) {
5737 if (cpu == core)
5738 continue;
5739
Rohit Jain943d3552018-05-09 09:39:48 -07005740 if (!available_idle_cpu(cpu))
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005741 goto unlock;
5742 }
5743
5744 set_idle_cores(core, 1);
5745unlock:
5746 rcu_read_unlock();
5747}
5748
5749/*
5750 * Scan the entire LLC domain for idle cores; this dynamically switches off if
5751 * there are no idle cores left in the system; tracked through
5752 * sd_llc->shared->has_idle_cores and enabled through update_idle_core() above.
5753 */
5754static int select_idle_core(struct task_struct *p, struct sched_domain *sd, int target)
5755{
5756 struct cpumask *cpus = this_cpu_cpumask_var_ptr(select_idle_mask);
Peter Zijlstrac743f0a2017-04-14 14:20:05 +02005757 int core, cpu;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005758
Peter Zijlstra1b568f02016-05-09 10:38:41 +02005759 if (!static_branch_likely(&sched_smt_present))
5760 return -1;
5761
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005762 if (!test_idle_cores(target, false))
5763 return -1;
5764
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02005765 cpumask_and(cpus, sched_domain_span(sd), p->cpus_ptr);
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005766
Peter Zijlstrac743f0a2017-04-14 14:20:05 +02005767 for_each_cpu_wrap(core, cpus, target) {
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005768 bool idle = true;
5769
5770 for_each_cpu(cpu, cpu_smt_mask(core)) {
Viresh Kumarc89d92e2019-02-12 14:57:01 +05305771 __cpumask_clear_cpu(cpu, cpus);
Rohit Jain943d3552018-05-09 09:39:48 -07005772 if (!available_idle_cpu(cpu))
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005773 idle = false;
5774 }
5775
5776 if (idle)
5777 return core;
5778 }
5779
5780 /*
5781 * Failed to find an idle core; stop looking for one.
5782 */
5783 set_idle_cores(target, 0);
5784
5785 return -1;
5786}
5787
5788/*
5789 * Scan the local SMT mask for idle CPUs.
5790 */
Viresh Kumar1b5500d2019-02-07 16:16:05 +05305791static int select_idle_smt(struct task_struct *p, int target)
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005792{
Viresh Kumar3c29e652019-06-26 10:36:30 +05305793 int cpu, si_cpu = -1;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005794
Peter Zijlstra1b568f02016-05-09 10:38:41 +02005795 if (!static_branch_likely(&sched_smt_present))
5796 return -1;
5797
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005798 for_each_cpu(cpu, cpu_smt_mask(target)) {
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02005799 if (!cpumask_test_cpu(cpu, p->cpus_ptr))
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005800 continue;
Rohit Jain943d3552018-05-09 09:39:48 -07005801 if (available_idle_cpu(cpu))
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005802 return cpu;
Viresh Kumar3c29e652019-06-26 10:36:30 +05305803 if (si_cpu == -1 && sched_idle_cpu(cpu))
5804 si_cpu = cpu;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005805 }
5806
Viresh Kumar3c29e652019-06-26 10:36:30 +05305807 return si_cpu;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005808}
5809
5810#else /* CONFIG_SCHED_SMT */
5811
5812static inline int select_idle_core(struct task_struct *p, struct sched_domain *sd, int target)
5813{
5814 return -1;
5815}
5816
Viresh Kumar1b5500d2019-02-07 16:16:05 +05305817static inline int select_idle_smt(struct task_struct *p, int target)
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005818{
5819 return -1;
5820}
5821
5822#endif /* CONFIG_SCHED_SMT */
5823
5824/*
5825 * Scan the LLC domain for idle CPUs; this is dynamically regulated by
5826 * comparing the average scan cost (tracked in sd->avg_scan_cost) against the
5827 * average idle time for this rq (as found in rq->avg_idle).
5828 */
5829static int select_idle_cpu(struct task_struct *p, struct sched_domain *sd, int target)
5830{
Wanpeng Li9cfb38a2016-10-09 08:04:03 +08005831 struct sched_domain *this_sd;
Peter Zijlstra1ad3aaf2017-05-17 12:53:50 +02005832 u64 avg_cost, avg_idle;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005833 u64 time, cost;
5834 s64 delta;
Peter Zijlstra8dc2d992019-02-27 10:27:58 +01005835 int this = smp_processor_id();
Viresh Kumar3c29e652019-06-26 10:36:30 +05305836 int cpu, nr = INT_MAX, si_cpu = -1;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005837
Wanpeng Li9cfb38a2016-10-09 08:04:03 +08005838 this_sd = rcu_dereference(*this_cpu_ptr(&sd_llc));
5839 if (!this_sd)
5840 return -1;
5841
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005842 /*
5843 * Due to large variance we need a large fuzz factor; hackbench in
5844 * particularly is sensitive here.
5845 */
Peter Zijlstra1ad3aaf2017-05-17 12:53:50 +02005846 avg_idle = this_rq()->avg_idle / 512;
5847 avg_cost = this_sd->avg_scan_cost + 1;
5848
5849 if (sched_feat(SIS_AVG_CPU) && avg_idle < avg_cost)
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005850 return -1;
5851
Peter Zijlstra1ad3aaf2017-05-17 12:53:50 +02005852 if (sched_feat(SIS_PROP)) {
5853 u64 span_avg = sd->span_weight * avg_idle;
5854 if (span_avg > 4*avg_cost)
5855 nr = div_u64(span_avg, avg_cost);
5856 else
5857 nr = 4;
5858 }
5859
Peter Zijlstra8dc2d992019-02-27 10:27:58 +01005860 time = cpu_clock(this);
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005861
Peter Zijlstrac743f0a2017-04-14 14:20:05 +02005862 for_each_cpu_wrap(cpu, sched_domain_span(sd), target) {
Peter Zijlstra1ad3aaf2017-05-17 12:53:50 +02005863 if (!--nr)
Viresh Kumar3c29e652019-06-26 10:36:30 +05305864 return si_cpu;
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02005865 if (!cpumask_test_cpu(cpu, p->cpus_ptr))
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005866 continue;
Rohit Jain943d3552018-05-09 09:39:48 -07005867 if (available_idle_cpu(cpu))
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005868 break;
Viresh Kumar3c29e652019-06-26 10:36:30 +05305869 if (si_cpu == -1 && sched_idle_cpu(cpu))
5870 si_cpu = cpu;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005871 }
5872
Peter Zijlstra8dc2d992019-02-27 10:27:58 +01005873 time = cpu_clock(this) - time;
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005874 cost = this_sd->avg_scan_cost;
5875 delta = (s64)(time - cost) / 8;
5876 this_sd->avg_scan_cost += delta;
5877
5878 return cpu;
5879}
5880
5881/*
5882 * Try and locate an idle core/thread in the LLC cache domain.
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005883 */
Morten Rasmussen772bd008c2016-06-22 18:03:13 +01005884static int select_idle_sibling(struct task_struct *p, int prev, int target)
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005885{
Suresh Siddha99bd5e22010-03-31 16:47:45 -07005886 struct sched_domain *sd;
Mel Gorman32e839d2018-01-30 10:45:55 +00005887 int i, recent_used_cpu;
Mike Galbraithe0a79f52013-01-28 12:19:25 +01005888
Viresh Kumar3c29e652019-06-26 10:36:30 +05305889 if (available_idle_cpu(target) || sched_idle_cpu(target))
Mike Galbraithe0a79f52013-01-28 12:19:25 +01005890 return target;
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005891
5892 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005893 * If the previous CPU is cache affine and idle, don't be stupid:
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005894 */
Viresh Kumar3c29e652019-06-26 10:36:30 +05305895 if (prev != target && cpus_share_cache(prev, target) &&
5896 (available_idle_cpu(prev) || sched_idle_cpu(prev)))
Morten Rasmussen772bd008c2016-06-22 18:03:13 +01005897 return prev;
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005898
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005899 /* Check a recently used CPU as a potential idle candidate: */
Mel Gorman32e839d2018-01-30 10:45:55 +00005900 recent_used_cpu = p->recent_used_cpu;
5901 if (recent_used_cpu != prev &&
5902 recent_used_cpu != target &&
5903 cpus_share_cache(recent_used_cpu, target) &&
Viresh Kumar3c29e652019-06-26 10:36:30 +05305904 (available_idle_cpu(recent_used_cpu) || sched_idle_cpu(recent_used_cpu)) &&
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02005905 cpumask_test_cpu(p->recent_used_cpu, p->cpus_ptr)) {
Mel Gorman32e839d2018-01-30 10:45:55 +00005906 /*
5907 * Replace recent_used_cpu with prev as it is a potential
Ingo Molnar97fb7a02018-03-03 14:01:12 +01005908 * candidate for the next wake:
Mel Gorman32e839d2018-01-30 10:45:55 +00005909 */
5910 p->recent_used_cpu = prev;
5911 return recent_used_cpu;
5912 }
5913
Peter Zijlstra518cd622011-12-07 15:07:31 +01005914 sd = rcu_dereference(per_cpu(sd_llc, target));
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005915 if (!sd)
5916 return target;
Morten Rasmussen772bd008c2016-06-22 18:03:13 +01005917
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005918 i = select_idle_core(p, sd, target);
5919 if ((unsigned)i < nr_cpumask_bits)
Gregory Haskinse7693a32008-01-25 21:08:09 +01005920 return i;
Ingo Molnar098fb9d2008-03-16 20:36:10 +01005921
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005922 i = select_idle_cpu(p, sd, target);
5923 if ((unsigned)i < nr_cpumask_bits)
5924 return i;
Mike Galbraith970e1782012-06-12 05:18:32 +02005925
Viresh Kumar1b5500d2019-02-07 16:16:05 +05305926 i = select_idle_smt(p, target);
Peter Zijlstra10e2f1a2016-05-09 10:38:05 +02005927 if ((unsigned)i < nr_cpumask_bits)
5928 return i;
Linus Torvalds37407ea2012-09-16 12:29:43 -07005929
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005930 return target;
5931}
Dietmar Eggemann231678b2015-08-14 17:23:13 +01005932
Patrick Bellasif9be3e52018-03-09 09:52:43 +00005933/**
5934 * Amount of capacity of a CPU that is (estimated to be) used by CFS tasks
5935 * @cpu: the CPU to get the utilization of
5936 *
5937 * The unit of the return value must be the one of capacity so we can compare
5938 * the utilization with the capacity of the CPU that is available for CFS task
5939 * (ie cpu_capacity).
Dietmar Eggemann231678b2015-08-14 17:23:13 +01005940 *
5941 * cfs_rq.avg.util_avg is the sum of running time of runnable tasks plus the
5942 * recent utilization of currently non-runnable tasks on a CPU. It represents
5943 * the amount of utilization of a CPU in the range [0..capacity_orig] where
5944 * capacity_orig is the cpu_capacity available at the highest frequency
5945 * (arch_scale_freq_capacity()).
5946 * The utilization of a CPU converges towards a sum equal to or less than the
5947 * current capacity (capacity_curr <= capacity_orig) of the CPU because it is
5948 * the running time on this CPU scaled by capacity_curr.
5949 *
Patrick Bellasif9be3e52018-03-09 09:52:43 +00005950 * The estimated utilization of a CPU is defined to be the maximum between its
5951 * cfs_rq.avg.util_avg and the sum of the estimated utilization of the tasks
5952 * currently RUNNABLE on that CPU.
5953 * This allows to properly represent the expected utilization of a CPU which
5954 * has just got a big task running since a long sleep period. At the same time
5955 * however it preserves the benefits of the "blocked utilization" in
5956 * describing the potential for other tasks waking up on the same CPU.
5957 *
Dietmar Eggemann231678b2015-08-14 17:23:13 +01005958 * Nevertheless, cfs_rq.avg.util_avg can be higher than capacity_curr or even
5959 * higher than capacity_orig because of unfortunate rounding in
5960 * cfs.avg.util_avg or just after migrating tasks and new task wakeups until
5961 * the average stabilizes with the new running time. We need to check that the
5962 * utilization stays within the range of [0..capacity_orig] and cap it if
5963 * necessary. Without utilization capping, a group could be seen as overloaded
5964 * (CPU0 utilization at 121% + CPU1 utilization at 80%) whereas CPU1 has 20% of
5965 * available capacity. We allow utilization to overshoot capacity_curr (but not
5966 * capacity_orig) as it useful for predicting the capacity required after task
5967 * migrations (scheduler-driven DVFS).
Patrick Bellasif9be3e52018-03-09 09:52:43 +00005968 *
5969 * Return: the (estimated) utilization for the specified CPU
Vincent Guittot8bb5b002015-03-04 08:48:47 +01005970 */
Patrick Bellasif9be3e52018-03-09 09:52:43 +00005971static inline unsigned long cpu_util(int cpu)
Vincent Guittot8bb5b002015-03-04 08:48:47 +01005972{
Patrick Bellasif9be3e52018-03-09 09:52:43 +00005973 struct cfs_rq *cfs_rq;
5974 unsigned int util;
Vincent Guittot8bb5b002015-03-04 08:48:47 +01005975
Patrick Bellasif9be3e52018-03-09 09:52:43 +00005976 cfs_rq = &cpu_rq(cpu)->cfs;
5977 util = READ_ONCE(cfs_rq->avg.util_avg);
5978
5979 if (sched_feat(UTIL_EST))
5980 util = max(util, READ_ONCE(cfs_rq->avg.util_est.enqueued));
5981
5982 return min_t(unsigned long, util, capacity_orig_of(cpu));
Vincent Guittot8bb5b002015-03-04 08:48:47 +01005983}
Peter Zijlstraa50bde52009-11-12 15:55:28 +01005984
Morten Rasmussen32731632016-07-25 14:34:26 +01005985/*
Patrick Bellasic4699332018-11-05 14:53:58 +00005986 * cpu_util_without: compute cpu utilization without any contributions from *p
5987 * @cpu: the CPU which utilization is requested
5988 * @p: the task which utilization should be discounted
5989 *
5990 * The utilization of a CPU is defined by the utilization of tasks currently
5991 * enqueued on that CPU as well as tasks which are currently sleeping after an
5992 * execution on that CPU.
5993 *
5994 * This method returns the utilization of the specified CPU by discounting the
5995 * utilization of the specified task, whenever the task is currently
5996 * contributing to the CPU utilization.
Morten Rasmussen104cb162016-10-14 14:41:07 +01005997 */
Patrick Bellasic4699332018-11-05 14:53:58 +00005998static unsigned long cpu_util_without(int cpu, struct task_struct *p)
Morten Rasmussen104cb162016-10-14 14:41:07 +01005999{
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006000 struct cfs_rq *cfs_rq;
6001 unsigned int util;
Morten Rasmussen104cb162016-10-14 14:41:07 +01006002
6003 /* Task has no contribution or is new */
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006004 if (cpu != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
Morten Rasmussen104cb162016-10-14 14:41:07 +01006005 return cpu_util(cpu);
6006
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006007 cfs_rq = &cpu_rq(cpu)->cfs;
6008 util = READ_ONCE(cfs_rq->avg.util_avg);
Morten Rasmussen104cb162016-10-14 14:41:07 +01006009
Patrick Bellasic4699332018-11-05 14:53:58 +00006010 /* Discount task's util from CPU's util */
Patrick Bellasib5c0ce72018-11-05 14:54:00 +00006011 lsub_positive(&util, task_util(p));
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006012
6013 /*
6014 * Covered cases:
6015 *
6016 * a) if *p is the only task sleeping on this CPU, then:
6017 * cpu_util (== task_util) > util_est (== 0)
6018 * and thus we return:
Patrick Bellasic4699332018-11-05 14:53:58 +00006019 * cpu_util_without = (cpu_util - task_util) = 0
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006020 *
6021 * b) if other tasks are SLEEPING on this CPU, which is now exiting
6022 * IDLE, then:
6023 * cpu_util >= task_util
6024 * cpu_util > util_est (== 0)
6025 * and thus we discount *p's blocked utilization to return:
Patrick Bellasic4699332018-11-05 14:53:58 +00006026 * cpu_util_without = (cpu_util - task_util) >= 0
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006027 *
6028 * c) if other tasks are RUNNABLE on that CPU and
6029 * util_est > cpu_util
6030 * then we use util_est since it returns a more restrictive
6031 * estimation of the spare capacity on that CPU, by just
6032 * considering the expected utilization of tasks already
6033 * runnable on that CPU.
6034 *
6035 * Cases a) and b) are covered by the above code, while case c) is
6036 * covered by the following code when estimated utilization is
6037 * enabled.
6038 */
Patrick Bellasic4699332018-11-05 14:53:58 +00006039 if (sched_feat(UTIL_EST)) {
6040 unsigned int estimated =
6041 READ_ONCE(cfs_rq->avg.util_est.enqueued);
6042
6043 /*
6044 * Despite the following checks we still have a small window
6045 * for a possible race, when an execl's select_task_rq_fair()
6046 * races with LB's detach_task():
6047 *
6048 * detach_task()
6049 * p->on_rq = TASK_ON_RQ_MIGRATING;
6050 * ---------------------------------- A
6051 * deactivate_task() \
6052 * dequeue_task() + RaceTime
6053 * util_est_dequeue() /
6054 * ---------------------------------- B
6055 *
6056 * The additional check on "current == p" it's required to
6057 * properly fix the execl regression and it helps in further
6058 * reducing the chances for the above race.
6059 */
Patrick Bellasib5c0ce72018-11-05 14:54:00 +00006060 if (unlikely(task_on_rq_queued(p) || current == p))
6061 lsub_positive(&estimated, _task_util_est(p));
6062
Patrick Bellasic4699332018-11-05 14:53:58 +00006063 util = max(util, estimated);
6064 }
Patrick Bellasif9be3e52018-03-09 09:52:43 +00006065
6066 /*
6067 * Utilization (estimated) can exceed the CPU capacity, thus let's
6068 * clamp to the maximum CPU capacity to ensure consistency with
6069 * the cpu_util call.
6070 */
6071 return min_t(unsigned long, util, capacity_orig_of(cpu));
Morten Rasmussen104cb162016-10-14 14:41:07 +01006072}
6073
6074/*
Morten Rasmussen32731632016-07-25 14:34:26 +01006075 * Disable WAKE_AFFINE in the case where task @p doesn't fit in the
6076 * capacity of either the waking CPU @cpu or the previous CPU @prev_cpu.
6077 *
6078 * In that case WAKE_AFFINE doesn't make sense and we'll let
6079 * BALANCE_WAKE sort things out.
6080 */
6081static int wake_cap(struct task_struct *p, int cpu, int prev_cpu)
6082{
6083 long min_cap, max_cap;
6084
Morten Rasmussendf054e82018-07-04 11:17:39 +01006085 if (!static_branch_unlikely(&sched_asym_cpucapacity))
6086 return 0;
6087
Morten Rasmussen32731632016-07-25 14:34:26 +01006088 min_cap = min(capacity_orig_of(prev_cpu), capacity_orig_of(cpu));
6089 max_cap = cpu_rq(cpu)->rd->max_cpu_capacity;
6090
6091 /* Minimum capacity is close to max, no need to abort wake_affine */
6092 if (max_cap - min_cap < max_cap >> 3)
6093 return 0;
6094
Morten Rasmussen104cb162016-10-14 14:41:07 +01006095 /* Bring task utilization in sync with prev_cpu */
6096 sync_entity_load_avg(&p->se);
6097
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01006098 return !task_fits_capacity(p, min_cap);
Morten Rasmussen32731632016-07-25 14:34:26 +01006099}
6100
Peter Zijlstraa50bde52009-11-12 15:55:28 +01006101/*
Quentin Perret390031e42018-12-03 09:56:26 +00006102 * Predicts what cpu_util(@cpu) would return if @p was migrated (and enqueued)
6103 * to @dst_cpu.
6104 */
6105static unsigned long cpu_util_next(int cpu, struct task_struct *p, int dst_cpu)
6106{
6107 struct cfs_rq *cfs_rq = &cpu_rq(cpu)->cfs;
6108 unsigned long util_est, util = READ_ONCE(cfs_rq->avg.util_avg);
6109
6110 /*
6111 * If @p migrates from @cpu to another, remove its contribution. Or,
6112 * if @p migrates from another CPU to @cpu, add its contribution. In
6113 * the other cases, @cpu is not impacted by the migration, so the
6114 * util_avg should already be correct.
6115 */
6116 if (task_cpu(p) == cpu && dst_cpu != cpu)
6117 sub_positive(&util, task_util(p));
6118 else if (task_cpu(p) != cpu && dst_cpu == cpu)
6119 util += task_util(p);
6120
6121 if (sched_feat(UTIL_EST)) {
6122 util_est = READ_ONCE(cfs_rq->avg.util_est.enqueued);
6123
6124 /*
6125 * During wake-up, the task isn't enqueued yet and doesn't
6126 * appear in the cfs_rq->avg.util_est.enqueued of any rq,
6127 * so just add it (if needed) to "simulate" what will be
6128 * cpu_util() after the task has been enqueued.
6129 */
6130 if (dst_cpu == cpu)
6131 util_est += _task_util_est(p);
6132
6133 util = max(util, util_est);
6134 }
6135
6136 return min(util, capacity_orig_of(cpu));
6137}
6138
6139/*
Quentin Perreteb926922019-09-12 11:44:04 +02006140 * compute_energy(): Estimates the energy that @pd would consume if @p was
Quentin Perret390031e42018-12-03 09:56:26 +00006141 * migrated to @dst_cpu. compute_energy() predicts what will be the utilization
Quentin Perreteb926922019-09-12 11:44:04 +02006142 * landscape of @pd's CPUs after the task migration, and uses the Energy Model
Quentin Perret390031e42018-12-03 09:56:26 +00006143 * to compute what would be the energy if we decided to actually migrate that
6144 * task.
6145 */
6146static long
6147compute_energy(struct task_struct *p, int dst_cpu, struct perf_domain *pd)
6148{
Quentin Perreteb926922019-09-12 11:44:04 +02006149 struct cpumask *pd_mask = perf_domain_span(pd);
6150 unsigned long cpu_cap = arch_scale_cpu_capacity(cpumask_first(pd_mask));
6151 unsigned long max_util = 0, sum_util = 0;
Quentin Perret390031e42018-12-03 09:56:26 +00006152 int cpu;
6153
Quentin Perreteb926922019-09-12 11:44:04 +02006154 /*
6155 * The capacity state of CPUs of the current rd can be driven by CPUs
6156 * of another rd if they belong to the same pd. So, account for the
6157 * utilization of these CPUs too by masking pd with cpu_online_mask
6158 * instead of the rd span.
6159 *
6160 * If an entire pd is outside of the current rd, it will not appear in
6161 * its pd list and will not be accounted by compute_energy().
6162 */
6163 for_each_cpu_and(cpu, pd_mask, cpu_online_mask) {
6164 unsigned long cpu_util, util_cfs = cpu_util_next(cpu, p, dst_cpu);
6165 struct task_struct *tsk = cpu == dst_cpu ? p : NULL;
Patrick Bellasiaf24bde2019-06-21 09:42:12 +01006166
6167 /*
Quentin Perreteb926922019-09-12 11:44:04 +02006168 * Busy time computation: utilization clamping is not
6169 * required since the ratio (sum_util / cpu_capacity)
6170 * is already enough to scale the EM reported power
6171 * consumption at the (eventually clamped) cpu_capacity.
Patrick Bellasiaf24bde2019-06-21 09:42:12 +01006172 */
Quentin Perreteb926922019-09-12 11:44:04 +02006173 sum_util += schedutil_cpu_util(cpu, util_cfs, cpu_cap,
6174 ENERGY_UTIL, NULL);
Patrick Bellasiaf24bde2019-06-21 09:42:12 +01006175
Quentin Perret390031e42018-12-03 09:56:26 +00006176 /*
Quentin Perreteb926922019-09-12 11:44:04 +02006177 * Performance domain frequency: utilization clamping
6178 * must be considered since it affects the selection
6179 * of the performance domain frequency.
6180 * NOTE: in case RT tasks are running, by default the
6181 * FREQUENCY_UTIL's utilization can be max OPP.
Quentin Perret390031e42018-12-03 09:56:26 +00006182 */
Quentin Perreteb926922019-09-12 11:44:04 +02006183 cpu_util = schedutil_cpu_util(cpu, util_cfs, cpu_cap,
6184 FREQUENCY_UTIL, tsk);
6185 max_util = max(max_util, cpu_util);
Quentin Perret390031e42018-12-03 09:56:26 +00006186 }
6187
Quentin Perreteb926922019-09-12 11:44:04 +02006188 return em_pd_energy(pd->em_pd, max_util, sum_util);
Quentin Perret390031e42018-12-03 09:56:26 +00006189}
6190
6191/*
Quentin Perret732cd752018-12-03 09:56:27 +00006192 * find_energy_efficient_cpu(): Find most energy-efficient target CPU for the
6193 * waking task. find_energy_efficient_cpu() looks for the CPU with maximum
6194 * spare capacity in each performance domain and uses it as a potential
6195 * candidate to execute the task. Then, it uses the Energy Model to figure
6196 * out which of the CPU candidates is the most energy-efficient.
6197 *
6198 * The rationale for this heuristic is as follows. In a performance domain,
6199 * all the most energy efficient CPU candidates (according to the Energy
6200 * Model) are those for which we'll request a low frequency. When there are
6201 * several CPUs for which the frequency request will be the same, we don't
6202 * have enough data to break the tie between them, because the Energy Model
6203 * only includes active power costs. With this model, if we assume that
6204 * frequency requests follow utilization (e.g. using schedutil), the CPU with
6205 * the maximum spare capacity in a performance domain is guaranteed to be among
6206 * the best candidates of the performance domain.
6207 *
6208 * In practice, it could be preferable from an energy standpoint to pack
6209 * small tasks on a CPU in order to let other CPUs go in deeper idle states,
6210 * but that could also hurt our chances to go cluster idle, and we have no
6211 * ways to tell with the current Energy Model if this is actually a good
6212 * idea or not. So, find_energy_efficient_cpu() basically favors
6213 * cluster-packing, and spreading inside a cluster. That should at least be
6214 * a good thing for latency, and this is consistent with the idea that most
6215 * of the energy savings of EAS come from the asymmetry of the system, and
6216 * not so much from breaking the tie between identical CPUs. That's also the
6217 * reason why EAS is enabled in the topology code only for systems where
6218 * SD_ASYM_CPUCAPACITY is set.
6219 *
6220 * NOTE: Forkees are not accepted in the energy-aware wake-up path because
6221 * they don't have any useful utilization data yet and it's not possible to
6222 * forecast their impact on energy consumption. Consequently, they will be
6223 * placed by find_idlest_cpu() on the least loaded CPU, which might turn out
6224 * to be energy-inefficient in some use-cases. The alternative would be to
6225 * bias new tasks towards specific types of CPUs first, or to try to infer
6226 * their util_avg from the parent task, but those heuristics could hurt
6227 * other use-cases too. So, until someone finds a better way to solve this,
6228 * let's keep things simple by re-using the existing slow path.
6229 */
Quentin Perret732cd752018-12-03 09:56:27 +00006230static int find_energy_efficient_cpu(struct task_struct *p, int prev_cpu)
6231{
Quentin Perreteb926922019-09-12 11:44:04 +02006232 unsigned long prev_delta = ULONG_MAX, best_delta = ULONG_MAX;
Quentin Perret732cd752018-12-03 09:56:27 +00006233 struct root_domain *rd = cpu_rq(smp_processor_id())->rd;
Quentin Perreteb926922019-09-12 11:44:04 +02006234 unsigned long cpu_cap, util, base_energy = 0;
Quentin Perret732cd752018-12-03 09:56:27 +00006235 int cpu, best_energy_cpu = prev_cpu;
Quentin Perret732cd752018-12-03 09:56:27 +00006236 struct sched_domain *sd;
Quentin Perreteb926922019-09-12 11:44:04 +02006237 struct perf_domain *pd;
Quentin Perret732cd752018-12-03 09:56:27 +00006238
6239 rcu_read_lock();
6240 pd = rcu_dereference(rd->pd);
6241 if (!pd || READ_ONCE(rd->overutilized))
6242 goto fail;
Quentin Perret732cd752018-12-03 09:56:27 +00006243
6244 /*
6245 * Energy-aware wake-up happens on the lowest sched_domain starting
6246 * from sd_asym_cpucapacity spanning over this_cpu and prev_cpu.
6247 */
6248 sd = rcu_dereference(*this_cpu_ptr(&sd_asym_cpucapacity));
6249 while (sd && !cpumask_test_cpu(prev_cpu, sched_domain_span(sd)))
6250 sd = sd->parent;
6251 if (!sd)
6252 goto fail;
6253
6254 sync_entity_load_avg(&p->se);
6255 if (!task_util_est(p))
6256 goto unlock;
6257
6258 for (; pd; pd = pd->next) {
Quentin Perreteb926922019-09-12 11:44:04 +02006259 unsigned long cur_delta, spare_cap, max_spare_cap = 0;
6260 unsigned long base_energy_pd;
Quentin Perret732cd752018-12-03 09:56:27 +00006261 int max_spare_cap_cpu = -1;
6262
Quentin Perreteb926922019-09-12 11:44:04 +02006263 /* Compute the 'base' energy of the pd, without @p */
6264 base_energy_pd = compute_energy(p, -1, pd);
6265 base_energy += base_energy_pd;
6266
Quentin Perret732cd752018-12-03 09:56:27 +00006267 for_each_cpu_and(cpu, perf_domain_span(pd), sched_domain_span(sd)) {
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02006268 if (!cpumask_test_cpu(cpu, p->cpus_ptr))
Quentin Perret732cd752018-12-03 09:56:27 +00006269 continue;
6270
6271 /* Skip CPUs that will be overutilized. */
6272 util = cpu_util_next(cpu, p, cpu);
6273 cpu_cap = capacity_of(cpu);
Viresh Kumar60e17f52019-06-04 12:31:52 +05306274 if (!fits_capacity(util, cpu_cap))
Quentin Perret732cd752018-12-03 09:56:27 +00006275 continue;
6276
6277 /* Always use prev_cpu as a candidate. */
6278 if (cpu == prev_cpu) {
Quentin Perreteb926922019-09-12 11:44:04 +02006279 prev_delta = compute_energy(p, prev_cpu, pd);
6280 prev_delta -= base_energy_pd;
6281 best_delta = min(best_delta, prev_delta);
Quentin Perret732cd752018-12-03 09:56:27 +00006282 }
6283
6284 /*
6285 * Find the CPU with the maximum spare capacity in
6286 * the performance domain
6287 */
6288 spare_cap = cpu_cap - util;
6289 if (spare_cap > max_spare_cap) {
6290 max_spare_cap = spare_cap;
6291 max_spare_cap_cpu = cpu;
6292 }
6293 }
6294
6295 /* Evaluate the energy impact of using this CPU. */
Quentin Perret4892f512019-09-20 11:41:15 +02006296 if (max_spare_cap_cpu >= 0 && max_spare_cap_cpu != prev_cpu) {
Quentin Perreteb926922019-09-12 11:44:04 +02006297 cur_delta = compute_energy(p, max_spare_cap_cpu, pd);
6298 cur_delta -= base_energy_pd;
6299 if (cur_delta < best_delta) {
6300 best_delta = cur_delta;
Quentin Perret732cd752018-12-03 09:56:27 +00006301 best_energy_cpu = max_spare_cap_cpu;
6302 }
6303 }
6304 }
6305unlock:
6306 rcu_read_unlock();
6307
6308 /*
6309 * Pick the best CPU if prev_cpu cannot be used, or if it saves at
6310 * least 6% of the energy used by prev_cpu.
6311 */
Quentin Perreteb926922019-09-12 11:44:04 +02006312 if (prev_delta == ULONG_MAX)
Quentin Perret732cd752018-12-03 09:56:27 +00006313 return best_energy_cpu;
6314
Quentin Perreteb926922019-09-12 11:44:04 +02006315 if ((prev_delta - best_delta) > ((prev_delta + base_energy) >> 4))
Quentin Perret732cd752018-12-03 09:56:27 +00006316 return best_energy_cpu;
6317
6318 return prev_cpu;
6319
6320fail:
6321 rcu_read_unlock();
6322
6323 return -1;
6324}
6325
6326/*
Morten Rasmussende91b9c2014-02-18 14:14:24 +00006327 * select_task_rq_fair: Select target runqueue for the waking task in domains
6328 * that have the 'sd_flag' flag set. In practice, this is SD_BALANCE_WAKE,
6329 * SD_BALANCE_FORK, or SD_BALANCE_EXEC.
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006330 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006331 * Balances load by selecting the idlest CPU in the idlest group, or under
6332 * certain conditions an idle sibling CPU if the domain has SD_WAKE_AFFINE set.
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006333 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006334 * Returns the target CPU number.
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006335 *
6336 * preempt must be disabled.
6337 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01006338static int
Peter Zijlstraac66f542013-10-07 11:29:16 +01006339select_task_rq_fair(struct task_struct *p, int prev_cpu, int sd_flag, int wake_flags)
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006340{
Viresh Kumarf1d88b42018-04-26 16:00:50 +05306341 struct sched_domain *tmp, *sd = NULL;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006342 int cpu = smp_processor_id();
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02006343 int new_cpu = prev_cpu;
Suresh Siddha99bd5e22010-03-31 16:47:45 -07006344 int want_affine = 0;
Peter Zijlstra24d0c1d2018-02-13 13:37:28 +00006345 int sync = (wake_flags & WF_SYNC) && !(current->flags & PF_EXITING);
Gregory Haskinse7693a32008-01-25 21:08:09 +01006346
Peter Zijlstrac58d25f2016-05-12 09:19:59 +02006347 if (sd_flag & SD_BALANCE_WAKE) {
6348 record_wakee(p);
Quentin Perret732cd752018-12-03 09:56:27 +00006349
Peter Zijlstraf8a696f2018-12-05 11:23:56 +01006350 if (sched_energy_enabled()) {
Quentin Perret732cd752018-12-03 09:56:27 +00006351 new_cpu = find_energy_efficient_cpu(p, prev_cpu);
6352 if (new_cpu >= 0)
6353 return new_cpu;
6354 new_cpu = prev_cpu;
6355 }
6356
6357 want_affine = !wake_wide(p) && !wake_cap(p, cpu, prev_cpu) &&
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02006358 cpumask_test_cpu(cpu, p->cpus_ptr);
Peter Zijlstrac58d25f2016-05-12 09:19:59 +02006359 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01006360
Peter Zijlstradce840a2011-04-07 14:09:50 +02006361 rcu_read_lock();
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006362 for_each_domain(cpu, tmp) {
Peter Zijlstrae4f42882009-12-16 18:04:34 +01006363 if (!(tmp->flags & SD_LOAD_BALANCE))
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02006364 break;
Peter Zijlstrae4f42882009-12-16 18:04:34 +01006365
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006366 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006367 * If both 'cpu' and 'prev_cpu' are part of this domain,
Suresh Siddha99bd5e22010-03-31 16:47:45 -07006368 * cpu is a valid SD_WAKE_AFFINE target.
Peter Zijlstrafe3bcfe2009-11-12 15:55:29 +01006369 */
Suresh Siddha99bd5e22010-03-31 16:47:45 -07006370 if (want_affine && (tmp->flags & SD_WAKE_AFFINE) &&
6371 cpumask_test_cpu(prev_cpu, sched_domain_span(tmp))) {
Viresh Kumarf1d88b42018-04-26 16:00:50 +05306372 if (cpu != prev_cpu)
6373 new_cpu = wake_affine(tmp, p, cpu, prev_cpu, sync);
6374
6375 sd = NULL; /* Prefer wake_affine over balance flags */
Alex Shif03542a2012-07-26 08:55:34 +08006376 break;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006377 }
6378
Alex Shif03542a2012-07-26 08:55:34 +08006379 if (tmp->flags & sd_flag)
Peter Zijlstra29cd8ba2009-09-17 09:01:14 +02006380 sd = tmp;
Mike Galbraith63b0e9e2015-07-14 17:39:50 +02006381 else if (!want_affine)
6382 break;
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006383 }
Peter Zijlstraaaee1202009-09-10 13:36:25 +02006384
Viresh Kumarf1d88b42018-04-26 16:00:50 +05306385 if (unlikely(sd)) {
6386 /* Slow path */
Brendan Jackman18bd1b4b2017-10-05 12:45:12 +01006387 new_cpu = find_idlest_cpu(sd, p, cpu, prev_cpu, sd_flag);
Viresh Kumarf1d88b42018-04-26 16:00:50 +05306388 } else if (sd_flag & SD_BALANCE_WAKE) { /* XXX always ? */
6389 /* Fast path */
6390
6391 new_cpu = select_idle_sibling(p, prev_cpu, new_cpu);
6392
6393 if (want_affine)
6394 current->recent_used_cpu = cpu;
Gregory Haskinse7693a32008-01-25 21:08:09 +01006395 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006396 rcu_read_unlock();
Gregory Haskinse7693a32008-01-25 21:08:09 +01006397
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006398 return new_cpu;
Gregory Haskinse7693a32008-01-25 21:08:09 +01006399}
Paul Turner0a74bef2012-10-04 13:18:30 +02006400
Peter Zijlstra144d8482017-05-11 17:57:24 +02006401static void detach_entity_cfs_rq(struct sched_entity *se);
6402
Paul Turner0a74bef2012-10-04 13:18:30 +02006403/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006404 * Called immediately before a task is migrated to a new CPU; task_cpu(p) and
Paul Turner0a74bef2012-10-04 13:18:30 +02006405 * cfs_rq_of(p) references at time of call are still valid and identify the
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006406 * previous CPU. The caller guarantees p->pi_lock or task_rq(p)->lock is held.
Paul Turner0a74bef2012-10-04 13:18:30 +02006407 */
Srikar Dronamraju3f9672b2018-09-21 23:18:58 +05306408static void migrate_task_rq_fair(struct task_struct *p, int new_cpu)
Paul Turner0a74bef2012-10-04 13:18:30 +02006409{
Paul Turneraff3e492012-10-04 13:18:30 +02006410 /*
Peter Zijlstra59efa0b2016-05-10 18:24:37 +02006411 * As blocked tasks retain absolute vruntime the migration needs to
6412 * deal with this by subtracting the old and adding the new
6413 * min_vruntime -- the latter is done by enqueue_entity() when placing
6414 * the task on the new runqueue.
6415 */
6416 if (p->state == TASK_WAKING) {
6417 struct sched_entity *se = &p->se;
6418 struct cfs_rq *cfs_rq = cfs_rq_of(se);
6419 u64 min_vruntime;
6420
6421#ifndef CONFIG_64BIT
6422 u64 min_vruntime_copy;
6423
6424 do {
6425 min_vruntime_copy = cfs_rq->min_vruntime_copy;
6426 smp_rmb();
6427 min_vruntime = cfs_rq->min_vruntime;
6428 } while (min_vruntime != min_vruntime_copy);
6429#else
6430 min_vruntime = cfs_rq->min_vruntime;
6431#endif
6432
6433 se->vruntime -= min_vruntime;
6434 }
6435
Peter Zijlstra144d8482017-05-11 17:57:24 +02006436 if (p->on_rq == TASK_ON_RQ_MIGRATING) {
6437 /*
6438 * In case of TASK_ON_RQ_MIGRATING we in fact hold the 'old'
6439 * rq->lock and can modify state directly.
6440 */
6441 lockdep_assert_held(&task_rq(p)->lock);
6442 detach_entity_cfs_rq(&p->se);
6443
6444 } else {
6445 /*
6446 * We are supposed to update the task to "current" time, then
6447 * its up to date and ready to go to new CPU/cfs_rq. But we
6448 * have difficulty in getting what current time is, so simply
6449 * throw away the out-of-date time. This will result in the
6450 * wakee task is less decayed, but giving the wakee more load
6451 * sounds not bad.
6452 */
6453 remove_entity_load_avg(&p->se);
6454 }
Yuyang Du9d89c252015-07-15 08:04:37 +08006455
6456 /* Tell new CPU we are migrated */
6457 p->se.avg.last_update_time = 0;
Ben Segall3944a922014-05-15 15:59:20 -07006458
6459 /* We have migrated, no longer consider this task hot */
Yuyang Du9d89c252015-07-15 08:04:37 +08006460 p->se.exec_start = 0;
Srikar Dronamraju3f9672b2018-09-21 23:18:58 +05306461
6462 update_scan_period(p, new_cpu);
Paul Turner0a74bef2012-10-04 13:18:30 +02006463}
Yuyang Du12695572015-07-15 08:04:40 +08006464
6465static void task_dead_fair(struct task_struct *p)
6466{
6467 remove_entity_load_avg(&p->se);
6468}
Peter Zijlstra6e2df052019-11-08 11:11:52 +01006469
6470static int
6471balance_fair(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
6472{
6473 if (rq->nr_running)
6474 return 1;
6475
6476 return newidle_balance(rq, rf) != 0;
6477}
Gregory Haskinse7693a32008-01-25 21:08:09 +01006478#endif /* CONFIG_SMP */
6479
Cheng Jiana555e9d2017-12-07 21:30:43 +08006480static unsigned long wakeup_gran(struct sched_entity *se)
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02006481{
6482 unsigned long gran = sysctl_sched_wakeup_granularity;
6483
6484 /*
Peter Zijlstrae52fb7c2009-01-14 12:39:19 +01006485 * Since its curr running now, convert the gran from real-time
6486 * to virtual-time in his units.
Mike Galbraith13814d42010-03-11 17:17:04 +01006487 *
6488 * By using 'se' instead of 'curr' we penalize light tasks, so
6489 * they get preempted easier. That is, if 'se' < 'curr' then
6490 * the resulting gran will be larger, therefore penalizing the
6491 * lighter, if otoh 'se' > 'curr' then the resulting gran will
6492 * be smaller, again penalizing the lighter task.
6493 *
6494 * This is especially important for buddies when the leftmost
6495 * task is higher priority than the buddy.
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02006496 */
Shaohua Lif4ad9bd2011-04-08 12:53:09 +08006497 return calc_delta_fair(gran, se);
Peter Zijlstra0bbd3332008-04-19 19:44:57 +02006498}
6499
6500/*
Peter Zijlstra464b7522008-10-24 11:06:15 +02006501 * Should 'se' preempt 'curr'.
6502 *
6503 * |s1
6504 * |s2
6505 * |s3
6506 * g
6507 * |<--->|c
6508 *
6509 * w(c, s1) = -1
6510 * w(c, s2) = 0
6511 * w(c, s3) = 1
6512 *
6513 */
6514static int
6515wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se)
6516{
6517 s64 gran, vdiff = curr->vruntime - se->vruntime;
6518
6519 if (vdiff <= 0)
6520 return -1;
6521
Cheng Jiana555e9d2017-12-07 21:30:43 +08006522 gran = wakeup_gran(se);
Peter Zijlstra464b7522008-10-24 11:06:15 +02006523 if (vdiff > gran)
6524 return 1;
6525
6526 return 0;
6527}
6528
Peter Zijlstra02479092008-11-04 21:25:10 +01006529static void set_last_buddy(struct sched_entity *se)
6530{
Viresh Kumar1da18432018-11-05 16:51:55 +05306531 if (entity_is_task(se) && unlikely(task_has_idle_policy(task_of(se))))
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07006532 return;
6533
Daniel Axtensc5ae3662017-05-11 06:11:39 +10006534 for_each_sched_entity(se) {
6535 if (SCHED_WARN_ON(!se->on_rq))
6536 return;
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07006537 cfs_rq_of(se)->last = se;
Daniel Axtensc5ae3662017-05-11 06:11:39 +10006538 }
Peter Zijlstra02479092008-11-04 21:25:10 +01006539}
6540
6541static void set_next_buddy(struct sched_entity *se)
6542{
Viresh Kumar1da18432018-11-05 16:51:55 +05306543 if (entity_is_task(se) && unlikely(task_has_idle_policy(task_of(se))))
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07006544 return;
6545
Daniel Axtensc5ae3662017-05-11 06:11:39 +10006546 for_each_sched_entity(se) {
6547 if (SCHED_WARN_ON(!se->on_rq))
6548 return;
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07006549 cfs_rq_of(se)->next = se;
Daniel Axtensc5ae3662017-05-11 06:11:39 +10006550 }
Peter Zijlstra02479092008-11-04 21:25:10 +01006551}
6552
Rik van Rielac53db52011-02-01 09:51:03 -05006553static void set_skip_buddy(struct sched_entity *se)
6554{
Venkatesh Pallipadi69c80f32011-04-13 18:21:09 -07006555 for_each_sched_entity(se)
6556 cfs_rq_of(se)->skip = se;
Rik van Rielac53db52011-02-01 09:51:03 -05006557}
6558
Peter Zijlstra464b7522008-10-24 11:06:15 +02006559/*
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006560 * Preempt the current task with a newly woken task if needed:
6561 */
Peter Zijlstra5a9b86f2009-09-16 13:47:58 +02006562static void check_preempt_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006563{
6564 struct task_struct *curr = rq->curr;
Srivatsa Vaddagiri8651a862007-10-15 17:00:12 +02006565 struct sched_entity *se = &curr->se, *pse = &p->se;
Mike Galbraith03e89e42008-12-16 08:45:30 +01006566 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
Mike Galbraithf685cea2009-10-23 23:09:22 +02006567 int scale = cfs_rq->nr_running >= sched_nr_latency;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07006568 int next_buddy_marked = 0;
Mike Galbraith03e89e42008-12-16 08:45:30 +01006569
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01006570 if (unlikely(se == pse))
6571 return;
6572
Paul Turner5238cdd2011-07-21 09:43:37 -07006573 /*
Kirill Tkhai163122b2014-08-20 13:48:29 +04006574 * This is possible from callers such as attach_tasks(), in which we
Paul Turner5238cdd2011-07-21 09:43:37 -07006575 * unconditionally check_prempt_curr() after an enqueue (which may have
6576 * lead to a throttle). This both saves work and prevents false
6577 * next-buddy nomination below.
6578 */
6579 if (unlikely(throttled_hierarchy(cfs_rq_of(pse))))
6580 return;
6581
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07006582 if (sched_feat(NEXT_BUDDY) && scale && !(wake_flags & WF_FORK)) {
Mike Galbraith3cb63d52009-09-11 12:01:17 +02006583 set_next_buddy(pse);
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07006584 next_buddy_marked = 1;
6585 }
Peter Zijlstra57fdc262008-09-23 15:33:45 +02006586
Bharata B Raoaec0a512008-08-28 14:42:49 +05306587 /*
6588 * We can come here with TIF_NEED_RESCHED already set from new task
6589 * wake up path.
Paul Turner5238cdd2011-07-21 09:43:37 -07006590 *
6591 * Note: this also catches the edge-case of curr being in a throttled
6592 * group (e.g. via set_curr_task), since update_curr() (in the
6593 * enqueue of curr) will have resulted in resched being set. This
6594 * prevents us from potentially nominating it as a false LAST_BUDDY
6595 * below.
Bharata B Raoaec0a512008-08-28 14:42:49 +05306596 */
6597 if (test_tsk_need_resched(curr))
6598 return;
6599
Darren Harta2f5c9a2011-02-22 13:04:33 -08006600 /* Idle tasks are by definition preempted by non-idle tasks. */
Viresh Kumar1da18432018-11-05 16:51:55 +05306601 if (unlikely(task_has_idle_policy(curr)) &&
6602 likely(!task_has_idle_policy(p)))
Darren Harta2f5c9a2011-02-22 13:04:33 -08006603 goto preempt;
6604
Ingo Molnar91c234b2007-10-15 17:00:18 +02006605 /*
Darren Harta2f5c9a2011-02-22 13:04:33 -08006606 * Batch and idle tasks do not preempt non-idle tasks (their preemption
6607 * is driven by the tick):
Ingo Molnar91c234b2007-10-15 17:00:18 +02006608 */
Ingo Molnar8ed92e52012-10-14 14:28:50 +02006609 if (unlikely(p->policy != SCHED_NORMAL) || !sched_feat(WAKEUP_PREEMPTION))
Ingo Molnar91c234b2007-10-15 17:00:18 +02006610 return;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006611
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01006612 find_matching_se(&se, &pse);
Paul Turner9bbd7372011-07-05 19:07:21 -07006613 update_curr(cfs_rq_of(se));
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01006614 BUG_ON(!pse);
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07006615 if (wakeup_preempt_entity(se, pse) == 1) {
6616 /*
6617 * Bias pick_next to pick the sched entity that is
6618 * triggering this preemption.
6619 */
6620 if (!next_buddy_marked)
6621 set_next_buddy(pse);
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01006622 goto preempt;
Venkatesh Pallipadi2f368252011-04-14 10:30:53 -07006623 }
Jupyung Leea65ac742009-11-17 18:51:40 +09006624
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01006625 return;
6626
6627preempt:
Kirill Tkhai88751252014-06-29 00:03:57 +04006628 resched_curr(rq);
Peter Zijlstra3a7e73a2009-11-28 18:51:02 +01006629 /*
6630 * Only set the backward buddy when the current task is still
6631 * on the rq. This can happen when a wakeup gets interleaved
6632 * with schedule on the ->pre_schedule() or idle_balance()
6633 * point, either of which can * drop the rq lock.
6634 *
6635 * Also, during early boot the idle thread is in the fair class,
6636 * for obvious reasons its a bad idea to schedule back to it.
6637 */
6638 if (unlikely(!se->on_rq || curr == rq->idle))
6639 return;
6640
6641 if (sched_feat(LAST_BUDDY) && scale && entity_is_task(se))
6642 set_last_buddy(se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006643}
6644
Peter Zijlstra5d7d6052019-11-08 14:15:57 +01006645struct task_struct *
Matt Flemingd8ac8972016-09-21 14:38:10 +01006646pick_next_task_fair(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006647{
6648 struct cfs_rq *cfs_rq = &rq->cfs;
6649 struct sched_entity *se;
Peter Zijlstra678d5712012-02-11 06:05:00 +01006650 struct task_struct *p;
Peter Zijlstra37e117c2014-02-14 12:25:08 +01006651 int new_tasks;
Peter Zijlstra678d5712012-02-11 06:05:00 +01006652
Peter Zijlstra6e831252014-02-11 16:11:48 +01006653again:
Peter Zijlstra6e2df052019-11-08 11:11:52 +01006654 if (!sched_fair_runnable(rq))
Peter Zijlstra38033c32014-01-23 20:32:21 +01006655 goto idle;
Peter Zijlstra678d5712012-02-11 06:05:00 +01006656
Viresh Kumar9674f5c2017-05-24 10:59:55 +05306657#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra67692432019-05-29 20:36:44 +00006658 if (!prev || prev->sched_class != &fair_sched_class)
Peter Zijlstra678d5712012-02-11 06:05:00 +01006659 goto simple;
6660
6661 /*
6662 * Because of the set_next_buddy() in dequeue_task_fair() it is rather
6663 * likely that a next task is from the same cgroup as the current.
6664 *
6665 * Therefore attempt to avoid putting and setting the entire cgroup
6666 * hierarchy, only change the part that actually changes.
6667 */
6668
6669 do {
6670 struct sched_entity *curr = cfs_rq->curr;
6671
6672 /*
6673 * Since we got here without doing put_prev_entity() we also
6674 * have to consider cfs_rq->curr. If it is still a runnable
6675 * entity, update_curr() will update its vruntime, otherwise
6676 * forget we've ever seen it.
6677 */
Ben Segall54d27362015-04-06 15:28:10 -07006678 if (curr) {
6679 if (curr->on_rq)
6680 update_curr(cfs_rq);
6681 else
6682 curr = NULL;
Peter Zijlstra678d5712012-02-11 06:05:00 +01006683
Ben Segall54d27362015-04-06 15:28:10 -07006684 /*
6685 * This call to check_cfs_rq_runtime() will do the
6686 * throttle and dequeue its entity in the parent(s).
Viresh Kumar9674f5c2017-05-24 10:59:55 +05306687 * Therefore the nr_running test will indeed
Ben Segall54d27362015-04-06 15:28:10 -07006688 * be correct.
6689 */
Viresh Kumar9674f5c2017-05-24 10:59:55 +05306690 if (unlikely(check_cfs_rq_runtime(cfs_rq))) {
6691 cfs_rq = &rq->cfs;
6692
6693 if (!cfs_rq->nr_running)
6694 goto idle;
6695
Ben Segall54d27362015-04-06 15:28:10 -07006696 goto simple;
Viresh Kumar9674f5c2017-05-24 10:59:55 +05306697 }
Ben Segall54d27362015-04-06 15:28:10 -07006698 }
Peter Zijlstra678d5712012-02-11 06:05:00 +01006699
6700 se = pick_next_entity(cfs_rq, curr);
6701 cfs_rq = group_cfs_rq(se);
6702 } while (cfs_rq);
6703
6704 p = task_of(se);
6705
6706 /*
6707 * Since we haven't yet done put_prev_entity and if the selected task
6708 * is a different task than we started out with, try and touch the
6709 * least amount of cfs_rqs.
6710 */
6711 if (prev != p) {
6712 struct sched_entity *pse = &prev->se;
6713
6714 while (!(cfs_rq = is_same_group(se, pse))) {
6715 int se_depth = se->depth;
6716 int pse_depth = pse->depth;
6717
6718 if (se_depth <= pse_depth) {
6719 put_prev_entity(cfs_rq_of(pse), pse);
6720 pse = parent_entity(pse);
6721 }
6722 if (se_depth >= pse_depth) {
6723 set_next_entity(cfs_rq_of(se), se);
6724 se = parent_entity(se);
6725 }
6726 }
6727
6728 put_prev_entity(cfs_rq, pse);
6729 set_next_entity(cfs_rq, se);
6730 }
6731
Uladzislau Rezki93824902017-09-13 12:24:30 +02006732 goto done;
Peter Zijlstra678d5712012-02-11 06:05:00 +01006733simple:
Peter Zijlstra678d5712012-02-11 06:05:00 +01006734#endif
Peter Zijlstra67692432019-05-29 20:36:44 +00006735 if (prev)
6736 put_prev_task(rq, prev);
Peter Zijlstra606dba22012-02-11 06:05:00 +01006737
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006738 do {
Peter Zijlstra678d5712012-02-11 06:05:00 +01006739 se = pick_next_entity(cfs_rq, NULL);
Peter Zijlstraf4b67552008-11-04 21:25:07 +01006740 set_next_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006741 cfs_rq = group_cfs_rq(se);
6742 } while (cfs_rq);
6743
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01006744 p = task_of(se);
Peter Zijlstra678d5712012-02-11 06:05:00 +01006745
Norbert Manthey13a453c2018-02-27 08:47:40 +01006746done: __maybe_unused;
Uladzislau Rezki93824902017-09-13 12:24:30 +02006747#ifdef CONFIG_SMP
6748 /*
6749 * Move the next running task to the front of
6750 * the list, so our cfs_tasks list becomes MRU
6751 * one.
6752 */
6753 list_move(&p->se.group_node, &rq->cfs_tasks);
6754#endif
6755
Mike Galbraithb39e66e2011-11-22 15:20:07 +01006756 if (hrtick_enabled(rq))
6757 hrtick_start_fair(rq, p);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01006758
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01006759 update_misfit_status(p, rq);
6760
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01006761 return p;
Peter Zijlstra38033c32014-01-23 20:32:21 +01006762
6763idle:
Peter Zijlstra67692432019-05-29 20:36:44 +00006764 if (!rf)
6765 return NULL;
6766
Peter Zijlstra5ba553e2019-05-29 20:36:42 +00006767 new_tasks = newidle_balance(rq, rf);
Matt Fleming46f69fa2016-09-21 14:38:12 +01006768
Peter Zijlstra37e117c2014-02-14 12:25:08 +01006769 /*
Peter Zijlstra5ba553e2019-05-29 20:36:42 +00006770 * Because newidle_balance() releases (and re-acquires) rq->lock, it is
Peter Zijlstra37e117c2014-02-14 12:25:08 +01006771 * possible for any higher priority task to appear. In that case we
6772 * must re-start the pick_next_entity() loop.
6773 */
Kirill Tkhaie4aa3582014-03-06 13:31:55 +04006774 if (new_tasks < 0)
Peter Zijlstra37e117c2014-02-14 12:25:08 +01006775 return RETRY_TASK;
6776
Kirill Tkhaie4aa3582014-03-06 13:31:55 +04006777 if (new_tasks > 0)
Peter Zijlstra38033c32014-01-23 20:32:21 +01006778 goto again;
Peter Zijlstra38033c32014-01-23 20:32:21 +01006779
Vincent Guittot23127292019-01-23 16:26:53 +01006780 /*
6781 * rq is about to be idle, check if we need to update the
6782 * lost_idle_time of clock_pelt
6783 */
6784 update_idle_rq_clock_pelt(rq);
6785
Peter Zijlstra38033c32014-01-23 20:32:21 +01006786 return NULL;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006787}
6788
Peter Zijlstra98c2f702019-11-08 14:15:58 +01006789static struct task_struct *__pick_next_task_fair(struct rq *rq)
6790{
6791 return pick_next_task_fair(rq, NULL, NULL);
6792}
6793
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006794/*
6795 * Account for a descheduled task:
6796 */
Peter Zijlstra6e2df052019-11-08 11:11:52 +01006797static void put_prev_task_fair(struct rq *rq, struct task_struct *prev)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006798{
6799 struct sched_entity *se = &prev->se;
6800 struct cfs_rq *cfs_rq;
6801
6802 for_each_sched_entity(se) {
6803 cfs_rq = cfs_rq_of(se);
Ingo Molnarab6cde22007-08-09 11:16:48 +02006804 put_prev_entity(cfs_rq, se);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006805 }
6806}
6807
Rik van Rielac53db52011-02-01 09:51:03 -05006808/*
6809 * sched_yield() is very simple
6810 *
6811 * The magic of dealing with the ->skip buddy is in pick_next_entity.
6812 */
6813static void yield_task_fair(struct rq *rq)
6814{
6815 struct task_struct *curr = rq->curr;
6816 struct cfs_rq *cfs_rq = task_cfs_rq(curr);
6817 struct sched_entity *se = &curr->se;
6818
6819 /*
6820 * Are we the only task in the tree?
6821 */
6822 if (unlikely(rq->nr_running == 1))
6823 return;
6824
6825 clear_buddies(cfs_rq, se);
6826
6827 if (curr->policy != SCHED_BATCH) {
6828 update_rq_clock(rq);
6829 /*
6830 * Update run-time statistics of the 'current'.
6831 */
6832 update_curr(cfs_rq);
Mike Galbraith916671c2011-11-22 15:21:26 +01006833 /*
6834 * Tell update_rq_clock() that we've just updated,
6835 * so we don't do microscopic update in schedule()
6836 * and double the fastpath cost.
6837 */
Davidlohr Buesoadcc8da2018-04-04 09:15:39 -07006838 rq_clock_skip_update(rq);
Rik van Rielac53db52011-02-01 09:51:03 -05006839 }
6840
6841 set_skip_buddy(se);
6842}
6843
Mike Galbraithd95f4122011-02-01 09:50:51 -05006844static bool yield_to_task_fair(struct rq *rq, struct task_struct *p, bool preempt)
6845{
6846 struct sched_entity *se = &p->se;
6847
Paul Turner5238cdd2011-07-21 09:43:37 -07006848 /* throttled hierarchies are not runnable */
6849 if (!se->on_rq || throttled_hierarchy(cfs_rq_of(se)))
Mike Galbraithd95f4122011-02-01 09:50:51 -05006850 return false;
6851
6852 /* Tell the scheduler that we'd really like pse to run next. */
6853 set_next_buddy(se);
6854
Mike Galbraithd95f4122011-02-01 09:50:51 -05006855 yield_task_fair(rq);
6856
6857 return true;
6858}
6859
Peter Williams681f3e62007-10-24 18:23:51 +02006860#ifdef CONFIG_SMP
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006861/**************************************************
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006862 * Fair scheduling class load-balancing methods.
6863 *
6864 * BASICS
6865 *
6866 * The purpose of load-balancing is to achieve the same basic fairness the
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006867 * per-CPU scheduler provides, namely provide a proportional amount of compute
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006868 * time to each task. This is expressed in the following equation:
6869 *
6870 * W_i,n/P_i == W_j,n/P_j for all i,j (1)
6871 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006872 * Where W_i,n is the n-th weight average for CPU i. The instantaneous weight
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006873 * W_i,0 is defined as:
6874 *
6875 * W_i,0 = \Sum_j w_i,j (2)
6876 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006877 * Where w_i,j is the weight of the j-th runnable task on CPU i. This weight
Yuyang Du1c3de5e2016-03-30 07:07:51 +08006878 * is derived from the nice value as per sched_prio_to_weight[].
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006879 *
6880 * The weight average is an exponential decay average of the instantaneous
6881 * weight:
6882 *
6883 * W'_i,n = (2^n - 1) / 2^n * W_i,n + 1 / 2^n * W_i,0 (3)
6884 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006885 * C_i is the compute capacity of CPU i, typically it is the
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006886 * fraction of 'recent' time available for SCHED_OTHER task execution. But it
6887 * can also include other factors [XXX].
6888 *
6889 * To achieve this balance we define a measure of imbalance which follows
6890 * directly from (1):
6891 *
Nicolas Pitreced549f2014-05-26 18:19:38 -04006892 * imb_i,j = max{ avg(W/C), W_i/C_i } - min{ avg(W/C), W_j/C_j } (4)
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006893 *
6894 * We them move tasks around to minimize the imbalance. In the continuous
6895 * function space it is obvious this converges, in the discrete case we get
6896 * a few fun cases generally called infeasible weight scenarios.
6897 *
6898 * [XXX expand on:
6899 * - infeasible weights;
6900 * - local vs global optima in the discrete case. ]
6901 *
6902 *
6903 * SCHED DOMAINS
6904 *
6905 * In order to solve the imbalance equation (4), and avoid the obvious O(n^2)
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006906 * for all i,j solution, we create a tree of CPUs that follows the hardware
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006907 * topology where each level pairs two lower groups (or better). This results
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006908 * in O(log n) layers. Furthermore we reduce the number of CPUs going up the
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006909 * tree to only the first of the previous level and we decrease the frequency
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006910 * of load-balance at each level inv. proportional to the number of CPUs in
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006911 * the groups.
6912 *
6913 * This yields:
6914 *
6915 * log_2 n 1 n
6916 * \Sum { --- * --- * 2^i } = O(n) (5)
6917 * i = 0 2^i 2^i
6918 * `- size of each group
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006919 * | | `- number of CPUs doing load-balance
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006920 * | `- freq
6921 * `- sum over all levels
6922 *
6923 * Coupled with a limit on how many tasks we can migrate every balance pass,
6924 * this makes (5) the runtime complexity of the balancer.
6925 *
6926 * An important property here is that each CPU is still (indirectly) connected
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006927 * to every other CPU in at most O(log n) steps:
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006928 *
6929 * The adjacency matrix of the resulting graph is given by:
6930 *
Byungchul Park97a71422015-07-05 18:33:48 +09006931 * log_2 n
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006932 * A_i,j = \Union (i % 2^k == 0) && i / 2^(k+1) == j / 2^(k+1) (6)
6933 * k = 0
6934 *
6935 * And you'll find that:
6936 *
6937 * A^(log_2 n)_i,j != 0 for all i,j (7)
6938 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006939 * Showing there's indeed a path between every CPU in at most O(log n) steps.
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006940 * The task movement gives a factor of O(m), giving a convergence complexity
6941 * of:
6942 *
6943 * O(nm log n), n := nr_cpus, m := nr_tasks (8)
6944 *
6945 *
6946 * WORK CONSERVING
6947 *
6948 * In order to avoid CPUs going idle while there's still work to do, new idle
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006949 * balancing is more aggressive and has the newly idle CPU iterate up the domain
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006950 * tree itself instead of relying on other CPUs to bring it work.
6951 *
6952 * This adds some complexity to both (5) and (8) but it reduces the total idle
6953 * time.
6954 *
6955 * [XXX more?]
6956 *
6957 *
6958 * CGROUPS
6959 *
6960 * Cgroups make a horror show out of (2), instead of a simple sum we get:
6961 *
6962 * s_k,i
6963 * W_i,0 = \Sum_j \Prod_k w_k * ----- (9)
6964 * S_k
6965 *
6966 * Where
6967 *
6968 * s_k,i = \Sum_j w_i,j,k and S_k = \Sum_i s_k,i (10)
6969 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01006970 * w_i,j,k is the weight of the j-th runnable task in the k-th cgroup on CPU i.
Peter Zijlstrae9c84cb2012-07-03 13:53:26 +02006971 *
6972 * The big problem is S_k, its a global sum needed to compute a local (W_i)
6973 * property.
6974 *
6975 * [XXX write more on how we solve this.. _after_ merging pjt's patches that
6976 * rewrite all of this once again.]
Byungchul Park97a71422015-07-05 18:33:48 +09006977 */
Ingo Molnarbf0f6f22007-07-09 18:51:58 +02006978
Hiroshi Shimamotoed387b72012-01-31 11:40:32 +09006979static unsigned long __read_mostly max_load_balance_interval = HZ/10;
6980
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01006981enum fbq_type { regular, remote, all };
6982
Vincent Guittot0b0695f2019-10-18 15:26:31 +02006983/*
Vincent Guittota9723382019-11-12 15:50:43 +01006984 * 'group_type' describes the group of CPUs at the moment of load balancing.
6985 *
Vincent Guittot0b0695f2019-10-18 15:26:31 +02006986 * The enum is ordered by pulling priority, with the group with lowest priority
Vincent Guittota9723382019-11-12 15:50:43 +01006987 * first so the group_type can simply be compared when selecting the busiest
6988 * group. See update_sd_pick_busiest().
Vincent Guittot0b0695f2019-10-18 15:26:31 +02006989 */
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01006990enum group_type {
Vincent Guittota9723382019-11-12 15:50:43 +01006991 /* The group has spare capacity that can be used to run more tasks. */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02006992 group_has_spare = 0,
Vincent Guittota9723382019-11-12 15:50:43 +01006993 /*
6994 * The group is fully used and the tasks don't compete for more CPU
6995 * cycles. Nevertheless, some tasks might wait before running.
6996 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02006997 group_fully_busy,
Vincent Guittota9723382019-11-12 15:50:43 +01006998 /*
6999 * SD_ASYM_CPUCAPACITY only: One task doesn't fit with CPU's capacity
7000 * and must be migrated to a more powerful CPU.
7001 */
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01007002 group_misfit_task,
Vincent Guittota9723382019-11-12 15:50:43 +01007003 /*
7004 * SD_ASYM_PACKING only: One local CPU with higher capacity is available,
7005 * and the task should be migrated to it instead of running on the
7006 * current CPU.
7007 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007008 group_asym_packing,
Vincent Guittota9723382019-11-12 15:50:43 +01007009 /*
7010 * The tasks' affinity constraints previously prevented the scheduler
7011 * from balancing the load across the system.
7012 */
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01007013 group_imbalanced,
Vincent Guittota9723382019-11-12 15:50:43 +01007014 /*
7015 * The CPU is overloaded and can't provide expected CPU cycles to all
7016 * tasks.
7017 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007018 group_overloaded
7019};
7020
7021enum migration_type {
7022 migrate_load = 0,
7023 migrate_util,
7024 migrate_task,
7025 migrate_misfit
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01007026};
7027
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007028#define LBF_ALL_PINNED 0x01
Peter Zijlstra367456c2012-02-20 21:49:09 +01007029#define LBF_NEED_BREAK 0x02
Peter Zijlstra62633222013-08-19 12:41:09 +02007030#define LBF_DST_PINNED 0x04
7031#define LBF_SOME_PINNED 0x08
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01007032#define LBF_NOHZ_STATS 0x10
Vincent Guittotf643ea22018-02-13 11:31:17 +01007033#define LBF_NOHZ_AGAIN 0x20
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007034
7035struct lb_env {
7036 struct sched_domain *sd;
7037
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007038 struct rq *src_rq;
Prashanth Nageshappa85c1e7d2012-06-19 17:47:34 +05307039 int src_cpu;
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007040
7041 int dst_cpu;
7042 struct rq *dst_rq;
7043
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307044 struct cpumask *dst_grpmask;
7045 int new_dst_cpu;
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007046 enum cpu_idle_type idle;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02007047 long imbalance;
Michael Wangb94031302012-07-12 16:10:13 +08007048 /* The set of CPUs under consideration for load-balancing */
7049 struct cpumask *cpus;
7050
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007051 unsigned int flags;
Peter Zijlstra367456c2012-02-20 21:49:09 +01007052
7053 unsigned int loop;
7054 unsigned int loop_break;
7055 unsigned int loop_max;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01007056
7057 enum fbq_type fbq_type;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007058 enum migration_type migration_type;
Kirill Tkhai163122b2014-08-20 13:48:29 +04007059 struct list_head tasks;
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007060};
7061
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007062/*
Peter Zijlstra029632f2011-10-25 10:00:11 +02007063 * Is this task likely cache-hot:
7064 */
Hillf Danton5d5e2b12014-06-10 10:58:43 +02007065static int task_hot(struct task_struct *p, struct lb_env *env)
Peter Zijlstra029632f2011-10-25 10:00:11 +02007066{
7067 s64 delta;
7068
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007069 lockdep_assert_held(&env->src_rq->lock);
7070
Peter Zijlstra029632f2011-10-25 10:00:11 +02007071 if (p->sched_class != &fair_sched_class)
7072 return 0;
7073
Viresh Kumar1da18432018-11-05 16:51:55 +05307074 if (unlikely(task_has_idle_policy(p)))
Peter Zijlstra029632f2011-10-25 10:00:11 +02007075 return 0;
7076
7077 /*
7078 * Buddy candidates are cache hot:
7079 */
Hillf Danton5d5e2b12014-06-10 10:58:43 +02007080 if (sched_feat(CACHE_HOT_BUDDY) && env->dst_rq->nr_running &&
Peter Zijlstra029632f2011-10-25 10:00:11 +02007081 (&p->se == cfs_rq_of(&p->se)->next ||
7082 &p->se == cfs_rq_of(&p->se)->last))
7083 return 1;
7084
7085 if (sysctl_sched_migration_cost == -1)
7086 return 1;
7087 if (sysctl_sched_migration_cost == 0)
7088 return 0;
7089
Hillf Danton5d5e2b12014-06-10 10:58:43 +02007090 delta = rq_clock_task(env->src_rq) - p->se.exec_start;
Peter Zijlstra029632f2011-10-25 10:00:11 +02007091
7092 return delta < (s64)sysctl_sched_migration_cost;
7093}
7094
Mel Gorman3a7053b2013-10-07 11:29:00 +01007095#ifdef CONFIG_NUMA_BALANCING
Rik van Rielc1ceac62015-05-14 22:59:36 -04007096/*
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307097 * Returns 1, if task migration degrades locality
7098 * Returns 0, if task migration improves locality i.e migration preferred.
7099 * Returns -1, if task migration is not affected by locality.
Rik van Rielc1ceac62015-05-14 22:59:36 -04007100 */
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307101static int migrate_degrades_locality(struct task_struct *p, struct lb_env *env)
Mel Gorman3a7053b2013-10-07 11:29:00 +01007102{
Rik van Rielb1ad0652014-05-15 13:03:06 -04007103 struct numa_group *numa_group = rcu_dereference(p->numa_group);
Srikar Dronamrajuf35678b2018-06-20 22:32:56 +05307104 unsigned long src_weight, dst_weight;
7105 int src_nid, dst_nid, dist;
Mel Gorman3a7053b2013-10-07 11:29:00 +01007106
Srikar Dronamraju2a595722015-08-11 21:54:21 +05307107 if (!static_branch_likely(&sched_numa_balancing))
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307108 return -1;
7109
Srikar Dronamrajuc3b9bc52015-08-11 16:30:12 +05307110 if (!p->numa_faults || !(env->sd->flags & SD_NUMA))
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307111 return -1;
Mel Gorman7a0f3082013-10-07 11:29:01 +01007112
7113 src_nid = cpu_to_node(env->src_cpu);
7114 dst_nid = cpu_to_node(env->dst_cpu);
7115
Mel Gorman83e1d2c2013-10-07 11:29:27 +01007116 if (src_nid == dst_nid)
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307117 return -1;
Mel Gorman7a0f3082013-10-07 11:29:01 +01007118
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307119 /* Migrating away from the preferred node is always bad. */
7120 if (src_nid == p->numa_preferred_nid) {
7121 if (env->src_rq->nr_running > env->src_rq->nr_preferred_running)
7122 return 1;
7123 else
7124 return -1;
7125 }
Mel Gorman83e1d2c2013-10-07 11:29:27 +01007126
Rik van Rielc1ceac62015-05-14 22:59:36 -04007127 /* Encourage migration to the preferred node. */
7128 if (dst_nid == p->numa_preferred_nid)
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307129 return 0;
Rik van Rielc1ceac62015-05-14 22:59:36 -04007130
Rik van Riel739294f2017-06-23 12:55:27 -04007131 /* Leaving a core idle is often worse than degrading locality. */
Srikar Dronamrajuf35678b2018-06-20 22:32:56 +05307132 if (env->idle == CPU_IDLE)
Rik van Riel739294f2017-06-23 12:55:27 -04007133 return -1;
7134
Srikar Dronamrajuf35678b2018-06-20 22:32:56 +05307135 dist = node_distance(src_nid, dst_nid);
Rik van Rielc1ceac62015-05-14 22:59:36 -04007136 if (numa_group) {
Srikar Dronamrajuf35678b2018-06-20 22:32:56 +05307137 src_weight = group_weight(p, src_nid, dist);
7138 dst_weight = group_weight(p, dst_nid, dist);
Rik van Rielc1ceac62015-05-14 22:59:36 -04007139 } else {
Srikar Dronamrajuf35678b2018-06-20 22:32:56 +05307140 src_weight = task_weight(p, src_nid, dist);
7141 dst_weight = task_weight(p, dst_nid, dist);
Rik van Rielc1ceac62015-05-14 22:59:36 -04007142 }
7143
Srikar Dronamrajuf35678b2018-06-20 22:32:56 +05307144 return dst_weight < src_weight;
Mel Gorman7a0f3082013-10-07 11:29:01 +01007145}
7146
Mel Gorman3a7053b2013-10-07 11:29:00 +01007147#else
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307148static inline int migrate_degrades_locality(struct task_struct *p,
Mel Gorman3a7053b2013-10-07 11:29:00 +01007149 struct lb_env *env)
7150{
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307151 return -1;
Mel Gorman7a0f3082013-10-07 11:29:01 +01007152}
Mel Gorman3a7053b2013-10-07 11:29:00 +01007153#endif
7154
Peter Zijlstra029632f2011-10-25 10:00:11 +02007155/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007156 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
7157 */
7158static
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01007159int can_migrate_task(struct task_struct *p, struct lb_env *env)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007160{
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307161 int tsk_cache_hot;
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007162
7163 lockdep_assert_held(&env->src_rq->lock);
7164
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007165 /*
7166 * We do not migrate tasks that are:
Joonsoo Kimd3198082013-04-23 17:27:40 +09007167 * 1) throttled_lb_pair, or
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02007168 * 2) cannot be migrated to this CPU due to cpus_ptr, or
Joonsoo Kimd3198082013-04-23 17:27:40 +09007169 * 3) running (obviously), or
7170 * 4) are cache-hot on their current CPU.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007171 */
Joonsoo Kimd3198082013-04-23 17:27:40 +09007172 if (throttled_lb_pair(task_group(p), env->src_cpu, env->dst_cpu))
7173 return 0;
7174
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02007175 if (!cpumask_test_cpu(env->dst_cpu, p->cpus_ptr)) {
Joonsoo Kime02e60c2013-04-23 17:27:42 +09007176 int cpu;
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307177
Josh Poimboeufae928822016-06-17 12:43:24 -05007178 schedstat_inc(p->se.statistics.nr_failed_migrations_affine);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307179
Peter Zijlstra62633222013-08-19 12:41:09 +02007180 env->flags |= LBF_SOME_PINNED;
7181
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307182 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01007183 * Remember if this task can be migrated to any other CPU in
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307184 * our sched_group. We may want to revisit it if we couldn't
7185 * meet load balance goals by pulling other tasks on src_cpu.
7186 *
Jeffrey Hugo65a44332017-06-07 13:18:57 -06007187 * Avoid computing new_dst_cpu for NEWLY_IDLE or if we have
7188 * already computed one in current iteration.
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307189 */
Jeffrey Hugo65a44332017-06-07 13:18:57 -06007190 if (env->idle == CPU_NEWLY_IDLE || (env->flags & LBF_DST_PINNED))
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307191 return 0;
7192
Ingo Molnar97fb7a02018-03-03 14:01:12 +01007193 /* Prevent to re-select dst_cpu via env's CPUs: */
Joonsoo Kime02e60c2013-04-23 17:27:42 +09007194 for_each_cpu_and(cpu, env->dst_grpmask, env->cpus) {
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02007195 if (cpumask_test_cpu(cpu, p->cpus_ptr)) {
Peter Zijlstra62633222013-08-19 12:41:09 +02007196 env->flags |= LBF_DST_PINNED;
Joonsoo Kime02e60c2013-04-23 17:27:42 +09007197 env->new_dst_cpu = cpu;
7198 break;
7199 }
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307200 }
Joonsoo Kime02e60c2013-04-23 17:27:42 +09007201
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007202 return 0;
7203 }
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05307204
7205 /* Record that we found atleast one task that could run on dst_cpu */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01007206 env->flags &= ~LBF_ALL_PINNED;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007207
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01007208 if (task_running(env->src_rq, p)) {
Josh Poimboeufae928822016-06-17 12:43:24 -05007209 schedstat_inc(p->se.statistics.nr_failed_migrations_running);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007210 return 0;
7211 }
7212
7213 /*
7214 * Aggressive migration if:
Mel Gorman3a7053b2013-10-07 11:29:00 +01007215 * 1) destination numa is preferred
7216 * 2) task is cache cold, or
7217 * 3) too many balance attempts have failed.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007218 */
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307219 tsk_cache_hot = migrate_degrades_locality(p, env);
7220 if (tsk_cache_hot == -1)
7221 tsk_cache_hot = task_hot(p, env);
Mel Gorman3a7053b2013-10-07 11:29:00 +01007222
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307223 if (tsk_cache_hot <= 0 ||
Kirill Tkhai7a96c232014-09-22 22:36:12 +04007224 env->sd->nr_balance_failed > env->sd->cache_nice_tries) {
Srikar Dronamraju2a1ed242015-06-16 17:25:59 +05307225 if (tsk_cache_hot == 1) {
Josh Poimboeufae928822016-06-17 12:43:24 -05007226 schedstat_inc(env->sd->lb_hot_gained[env->idle]);
7227 schedstat_inc(p->se.statistics.nr_forced_migrations);
Mel Gorman3a7053b2013-10-07 11:29:00 +01007228 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007229 return 1;
7230 }
7231
Josh Poimboeufae928822016-06-17 12:43:24 -05007232 schedstat_inc(p->se.statistics.nr_failed_migrations_hot);
Zhang Hang4e2dcb72013-04-10 14:04:55 +08007233 return 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007234}
7235
Peter Zijlstra897c3952009-12-17 17:45:42 +01007236/*
Kirill Tkhai163122b2014-08-20 13:48:29 +04007237 * detach_task() -- detach the task for the migration specified in env
Peter Zijlstra897c3952009-12-17 17:45:42 +01007238 */
Kirill Tkhai163122b2014-08-20 13:48:29 +04007239static void detach_task(struct task_struct *p, struct lb_env *env)
7240{
7241 lockdep_assert_held(&env->src_rq->lock);
7242
Peter Zijlstra5704ac02017-02-21 17:15:21 +01007243 deactivate_task(env->src_rq, p, DEQUEUE_NOCLOCK);
Kirill Tkhai163122b2014-08-20 13:48:29 +04007244 set_task_cpu(p, env->dst_cpu);
7245}
7246
7247/*
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007248 * detach_one_task() -- tries to dequeue exactly one task from env->src_rq, as
Peter Zijlstra897c3952009-12-17 17:45:42 +01007249 * part of active balancing operations within "domain".
Peter Zijlstra897c3952009-12-17 17:45:42 +01007250 *
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007251 * Returns a task if successful and NULL otherwise.
Peter Zijlstra897c3952009-12-17 17:45:42 +01007252 */
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007253static struct task_struct *detach_one_task(struct lb_env *env)
Peter Zijlstra897c3952009-12-17 17:45:42 +01007254{
Uladzislau Rezki93824902017-09-13 12:24:30 +02007255 struct task_struct *p;
Peter Zijlstra897c3952009-12-17 17:45:42 +01007256
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007257 lockdep_assert_held(&env->src_rq->lock);
7258
Uladzislau Rezki93824902017-09-13 12:24:30 +02007259 list_for_each_entry_reverse(p,
7260 &env->src_rq->cfs_tasks, se.group_node) {
Peter Zijlstra367456c2012-02-20 21:49:09 +01007261 if (!can_migrate_task(p, env))
7262 continue;
Peter Zijlstra897c3952009-12-17 17:45:42 +01007263
Kirill Tkhai163122b2014-08-20 13:48:29 +04007264 detach_task(p, env);
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007265
Peter Zijlstra367456c2012-02-20 21:49:09 +01007266 /*
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007267 * Right now, this is only the second place where
Kirill Tkhai163122b2014-08-20 13:48:29 +04007268 * lb_gained[env->idle] is updated (other is detach_tasks)
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007269 * so we can safely collect stats here rather than
Kirill Tkhai163122b2014-08-20 13:48:29 +04007270 * inside detach_tasks().
Peter Zijlstra367456c2012-02-20 21:49:09 +01007271 */
Josh Poimboeufae928822016-06-17 12:43:24 -05007272 schedstat_inc(env->sd->lb_gained[env->idle]);
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007273 return p;
Peter Zijlstra897c3952009-12-17 17:45:42 +01007274 }
Kirill Tkhaie5673f22014-08-20 13:48:01 +04007275 return NULL;
Peter Zijlstra897c3952009-12-17 17:45:42 +01007276}
7277
Peter Zijlstraeb953082012-04-17 13:38:40 +02007278static const unsigned int sched_nr_migrate_break = 32;
7279
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007280/*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007281 * detach_tasks() -- tries to detach up to imbalance load/util/tasks from
Kirill Tkhai163122b2014-08-20 13:48:29 +04007282 * busiest_rq, as part of a balancing operation within domain "sd".
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007283 *
Kirill Tkhai163122b2014-08-20 13:48:29 +04007284 * Returns number of detached tasks if successful and 0 otherwise.
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007285 */
Kirill Tkhai163122b2014-08-20 13:48:29 +04007286static int detach_tasks(struct lb_env *env)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007287{
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007288 struct list_head *tasks = &env->src_rq->cfs_tasks;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007289 unsigned long util, load;
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007290 struct task_struct *p;
Kirill Tkhai163122b2014-08-20 13:48:29 +04007291 int detached = 0;
7292
7293 lockdep_assert_held(&env->src_rq->lock);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007294
Peter Zijlstrabd939f42012-05-02 14:20:37 +02007295 if (env->imbalance <= 0)
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007296 return 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007297
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007298 while (!list_empty(tasks)) {
Yuyang Du985d3a42015-07-06 06:11:51 +08007299 /*
7300 * We don't want to steal all, otherwise we may be treated likewise,
7301 * which could at worst lead to a livelock crash.
7302 */
7303 if (env->idle != CPU_NOT_IDLE && env->src_rq->nr_running <= 1)
7304 break;
7305
Uladzislau Rezki93824902017-09-13 12:24:30 +02007306 p = list_last_entry(tasks, struct task_struct, se.group_node);
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007307
Peter Zijlstra367456c2012-02-20 21:49:09 +01007308 env->loop++;
7309 /* We've more or less seen every task there is, call it quits */
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007310 if (env->loop > env->loop_max)
Peter Zijlstra367456c2012-02-20 21:49:09 +01007311 break;
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007312
7313 /* take a breather every nr_migrate tasks */
Peter Zijlstra367456c2012-02-20 21:49:09 +01007314 if (env->loop > env->loop_break) {
Peter Zijlstraeb953082012-04-17 13:38:40 +02007315 env->loop_break += sched_nr_migrate_break;
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01007316 env->flags |= LBF_NEED_BREAK;
Peter Zijlstraee00e662009-12-17 17:25:20 +01007317 break;
Peter Zijlstraa195f002011-09-22 15:30:18 +02007318 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007319
Joonsoo Kimd3198082013-04-23 17:27:40 +09007320 if (!can_migrate_task(p, env))
Peter Zijlstra367456c2012-02-20 21:49:09 +01007321 goto next;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007322
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007323 switch (env->migration_type) {
7324 case migrate_load:
7325 load = task_h_load(p);
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007326
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007327 if (sched_feat(LB_MIN) &&
7328 load < 16 && !env->sd->nr_balance_failed)
7329 goto next;
Peter Zijlstra367456c2012-02-20 21:49:09 +01007330
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007331 if (load/2 > env->imbalance)
7332 goto next;
7333
7334 env->imbalance -= load;
7335 break;
7336
7337 case migrate_util:
7338 util = task_util_est(p);
7339
7340 if (util > env->imbalance)
7341 goto next;
7342
7343 env->imbalance -= util;
7344 break;
7345
7346 case migrate_task:
7347 env->imbalance--;
7348 break;
7349
7350 case migrate_misfit:
Vincent Guittotc63be7b2019-10-18 15:26:35 +02007351 /* This is not a misfit task */
7352 if (task_fits_capacity(p, capacity_of(env->src_cpu)))
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007353 goto next;
7354
7355 env->imbalance = 0;
7356 break;
7357 }
Peter Zijlstra367456c2012-02-20 21:49:09 +01007358
Kirill Tkhai163122b2014-08-20 13:48:29 +04007359 detach_task(p, env);
7360 list_add(&p->se.group_node, &env->tasks);
7361
7362 detached++;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007363
Thomas Gleixnerc1a280b2019-07-26 23:19:37 +02007364#ifdef CONFIG_PREEMPTION
Peter Zijlstraee00e662009-12-17 17:25:20 +01007365 /*
7366 * NEWIDLE balancing is a source of latency, so preemptible
Kirill Tkhai163122b2014-08-20 13:48:29 +04007367 * kernels will stop after the first task is detached to minimize
Peter Zijlstraee00e662009-12-17 17:25:20 +01007368 * the critical section.
7369 */
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007370 if (env->idle == CPU_NEWLY_IDLE)
Peter Zijlstraee00e662009-12-17 17:25:20 +01007371 break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007372#endif
7373
Peter Zijlstraee00e662009-12-17 17:25:20 +01007374 /*
7375 * We only want to steal up to the prescribed amount of
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007376 * load/util/tasks.
Peter Zijlstraee00e662009-12-17 17:25:20 +01007377 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02007378 if (env->imbalance <= 0)
Peter Zijlstraee00e662009-12-17 17:25:20 +01007379 break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007380
Peter Zijlstra367456c2012-02-20 21:49:09 +01007381 continue;
7382next:
Uladzislau Rezki93824902017-09-13 12:24:30 +02007383 list_move(&p->se.group_node, tasks);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007384 }
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01007385
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007386 /*
Kirill Tkhai163122b2014-08-20 13:48:29 +04007387 * Right now, this is one of only two places we collect this stat
7388 * so we can safely collect detach_one_task() stats here rather
7389 * than inside detach_one_task().
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007390 */
Josh Poimboeufae928822016-06-17 12:43:24 -05007391 schedstat_add(env->sd->lb_gained[env->idle], detached);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007392
Kirill Tkhai163122b2014-08-20 13:48:29 +04007393 return detached;
7394}
7395
7396/*
7397 * attach_task() -- attach the task detached by detach_task() to its new rq.
7398 */
7399static void attach_task(struct rq *rq, struct task_struct *p)
7400{
7401 lockdep_assert_held(&rq->lock);
7402
7403 BUG_ON(task_rq(p) != rq);
Peter Zijlstra5704ac02017-02-21 17:15:21 +01007404 activate_task(rq, p, ENQUEUE_NOCLOCK);
Kirill Tkhai163122b2014-08-20 13:48:29 +04007405 check_preempt_curr(rq, p, 0);
7406}
7407
7408/*
7409 * attach_one_task() -- attaches the task returned from detach_one_task() to
7410 * its new rq.
7411 */
7412static void attach_one_task(struct rq *rq, struct task_struct *p)
7413{
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02007414 struct rq_flags rf;
7415
7416 rq_lock(rq, &rf);
Peter Zijlstra5704ac02017-02-21 17:15:21 +01007417 update_rq_clock(rq);
Kirill Tkhai163122b2014-08-20 13:48:29 +04007418 attach_task(rq, p);
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02007419 rq_unlock(rq, &rf);
Kirill Tkhai163122b2014-08-20 13:48:29 +04007420}
7421
7422/*
7423 * attach_tasks() -- attaches all tasks detached by detach_tasks() to their
7424 * new rq.
7425 */
7426static void attach_tasks(struct lb_env *env)
7427{
7428 struct list_head *tasks = &env->tasks;
7429 struct task_struct *p;
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02007430 struct rq_flags rf;
Kirill Tkhai163122b2014-08-20 13:48:29 +04007431
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02007432 rq_lock(env->dst_rq, &rf);
Peter Zijlstra5704ac02017-02-21 17:15:21 +01007433 update_rq_clock(env->dst_rq);
Kirill Tkhai163122b2014-08-20 13:48:29 +04007434
7435 while (!list_empty(tasks)) {
7436 p = list_first_entry(tasks, struct task_struct, se.group_node);
7437 list_del_init(&p->se.group_node);
7438
7439 attach_task(env->dst_rq, p);
7440 }
7441
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02007442 rq_unlock(env->dst_rq, &rf);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007443}
7444
Valentin Schneiderb0c79222019-06-03 12:54:24 +01007445#ifdef CONFIG_NO_HZ_COMMON
Vincent Guittot1936c532018-02-13 11:31:18 +01007446static inline bool cfs_rq_has_blocked(struct cfs_rq *cfs_rq)
7447{
7448 if (cfs_rq->avg.load_avg)
7449 return true;
7450
7451 if (cfs_rq->avg.util_avg)
7452 return true;
7453
7454 return false;
7455}
7456
Vincent Guittot91c27492018-06-28 17:45:09 +02007457static inline bool others_have_blocked(struct rq *rq)
Vincent Guittot371bf422018-06-28 17:45:05 +02007458{
7459 if (READ_ONCE(rq->avg_rt.util_avg))
7460 return true;
7461
Vincent Guittot3727e0e2018-06-28 17:45:07 +02007462 if (READ_ONCE(rq->avg_dl.util_avg))
7463 return true;
7464
Vincent Guittot11d4afd2018-09-25 11:17:42 +02007465#ifdef CONFIG_HAVE_SCHED_AVG_IRQ
Vincent Guittot91c27492018-06-28 17:45:09 +02007466 if (READ_ONCE(rq->avg_irq.util_avg))
7467 return true;
7468#endif
7469
Vincent Guittot371bf422018-06-28 17:45:05 +02007470 return false;
7471}
7472
Valentin Schneiderb0c79222019-06-03 12:54:24 +01007473static inline void update_blocked_load_status(struct rq *rq, bool has_blocked)
7474{
7475 rq->last_blocked_load_update_tick = jiffies;
7476
7477 if (!has_blocked)
7478 rq->has_blocked_load = 0;
7479}
7480#else
7481static inline bool cfs_rq_has_blocked(struct cfs_rq *cfs_rq) { return false; }
7482static inline bool others_have_blocked(struct rq *rq) { return false; }
7483static inline void update_blocked_load_status(struct rq *rq, bool has_blocked) {}
7484#endif
7485
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007486static bool __update_blocked_others(struct rq *rq, bool *done)
7487{
7488 const struct sched_class *curr_class;
7489 u64 now = rq_clock_pelt(rq);
7490 bool decayed;
7491
7492 /*
7493 * update_load_avg() can call cpufreq_update_util(). Make sure that RT,
7494 * DL and IRQ signals have been updated before updating CFS.
7495 */
7496 curr_class = rq->curr->sched_class;
7497
7498 decayed = update_rt_rq_load_avg(now, rq, curr_class == &rt_sched_class) |
7499 update_dl_rq_load_avg(now, rq, curr_class == &dl_sched_class) |
7500 update_irq_load_avg(rq, 0);
7501
7502 if (others_have_blocked(rq))
7503 *done = false;
7504
7505 return decayed;
7506}
7507
Vincent Guittot1936c532018-02-13 11:31:18 +01007508#ifdef CONFIG_FAIR_GROUP_SCHED
7509
Vincent Guittot039ae8b2019-02-06 17:14:22 +01007510static inline bool cfs_rq_is_decayed(struct cfs_rq *cfs_rq)
7511{
7512 if (cfs_rq->load.weight)
7513 return false;
7514
7515 if (cfs_rq->avg.load_sum)
7516 return false;
7517
7518 if (cfs_rq->avg.util_sum)
7519 return false;
7520
7521 if (cfs_rq->avg.runnable_load_sum)
7522 return false;
7523
7524 return true;
7525}
7526
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007527static bool __update_blocked_fair(struct rq *rq, bool *done)
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08007528{
Vincent Guittot039ae8b2019-02-06 17:14:22 +01007529 struct cfs_rq *cfs_rq, *pos;
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007530 bool decayed = false;
7531 int cpu = cpu_of(rq);
Vincent Guittotb90f7c92019-10-30 12:18:29 +01007532
7533 /*
Peter Zijlstra9763b672011-07-13 13:09:25 +02007534 * Iterates the task_group tree in a bottom up fashion, see
7535 * list_add_leaf_cfs_rq() for details.
7536 */
Vincent Guittot039ae8b2019-02-06 17:14:22 +01007537 for_each_leaf_cfs_rq_safe(rq, cfs_rq, pos) {
Vincent Guittotbc427892017-03-17 14:47:22 +01007538 struct sched_entity *se;
7539
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007540 if (update_cfs_rq_load_avg(cfs_rq_clock_pelt(cfs_rq), cfs_rq)) {
Yuyang Du9d89c252015-07-15 08:04:37 +08007541 update_tg_load_avg(cfs_rq, 0);
Vincent Guittot4e516072016-11-08 10:53:46 +01007542
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007543 if (cfs_rq == &rq->cfs)
7544 decayed = true;
7545 }
7546
Vincent Guittotbc427892017-03-17 14:47:22 +01007547 /* Propagate pending load changes to the parent, if any: */
7548 se = cfs_rq->tg->se[cpu];
7549 if (se && !skip_blocked_update(se))
Peter Zijlstra88c06162017-05-06 17:32:43 +02007550 update_load_avg(cfs_rq_of(se), se, 0);
Tejun Heoa9e7f652017-04-25 17:43:50 -07007551
Vincent Guittot039ae8b2019-02-06 17:14:22 +01007552 /*
7553 * There can be a lot of idle CPU cgroups. Don't let fully
7554 * decayed cfs_rqs linger on the list.
7555 */
7556 if (cfs_rq_is_decayed(cfs_rq))
7557 list_del_leaf_cfs_rq(cfs_rq);
7558
Vincent Guittot1936c532018-02-13 11:31:18 +01007559 /* Don't need periodic decay once load/util_avg are null */
7560 if (cfs_rq_has_blocked(cfs_rq))
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007561 *done = false;
Yuyang Du9d89c252015-07-15 08:04:37 +08007562 }
Vincent Guittot12b04872018-08-31 17:22:55 +02007563
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007564 return decayed;
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08007565}
7566
Peter Zijlstra9763b672011-07-13 13:09:25 +02007567/*
Vladimir Davydov68520792013-07-15 17:49:19 +04007568 * Compute the hierarchical load factor for cfs_rq and all its ascendants.
Peter Zijlstra9763b672011-07-13 13:09:25 +02007569 * This needs to be done in a top-down fashion because the load of a child
7570 * group is a fraction of its parents load.
7571 */
Vladimir Davydov68520792013-07-15 17:49:19 +04007572static void update_cfs_rq_h_load(struct cfs_rq *cfs_rq)
Peter Zijlstra9763b672011-07-13 13:09:25 +02007573{
Vladimir Davydov68520792013-07-15 17:49:19 +04007574 struct rq *rq = rq_of(cfs_rq);
7575 struct sched_entity *se = cfs_rq->tg->se[cpu_of(rq)];
Peter Zijlstraa35b6462012-08-08 21:46:40 +02007576 unsigned long now = jiffies;
Vladimir Davydov68520792013-07-15 17:49:19 +04007577 unsigned long load;
Peter Zijlstraa35b6462012-08-08 21:46:40 +02007578
Vladimir Davydov68520792013-07-15 17:49:19 +04007579 if (cfs_rq->last_h_load_update == now)
Peter Zijlstraa35b6462012-08-08 21:46:40 +02007580 return;
7581
Mel Gorman0e9f0242019-03-19 12:36:10 +00007582 WRITE_ONCE(cfs_rq->h_load_next, NULL);
Vladimir Davydov68520792013-07-15 17:49:19 +04007583 for_each_sched_entity(se) {
7584 cfs_rq = cfs_rq_of(se);
Mel Gorman0e9f0242019-03-19 12:36:10 +00007585 WRITE_ONCE(cfs_rq->h_load_next, se);
Vladimir Davydov68520792013-07-15 17:49:19 +04007586 if (cfs_rq->last_h_load_update == now)
7587 break;
7588 }
Peter Zijlstraa35b6462012-08-08 21:46:40 +02007589
Vladimir Davydov68520792013-07-15 17:49:19 +04007590 if (!se) {
Yuyang Du7ea241a2015-07-15 08:04:42 +08007591 cfs_rq->h_load = cfs_rq_load_avg(cfs_rq);
Vladimir Davydov68520792013-07-15 17:49:19 +04007592 cfs_rq->last_h_load_update = now;
7593 }
7594
Mel Gorman0e9f0242019-03-19 12:36:10 +00007595 while ((se = READ_ONCE(cfs_rq->h_load_next)) != NULL) {
Vladimir Davydov68520792013-07-15 17:49:19 +04007596 load = cfs_rq->h_load;
Yuyang Du7ea241a2015-07-15 08:04:42 +08007597 load = div64_ul(load * se->avg.load_avg,
7598 cfs_rq_load_avg(cfs_rq) + 1);
Vladimir Davydov68520792013-07-15 17:49:19 +04007599 cfs_rq = group_cfs_rq(se);
7600 cfs_rq->h_load = load;
7601 cfs_rq->last_h_load_update = now;
7602 }
Peter Zijlstra9763b672011-07-13 13:09:25 +02007603}
7604
Peter Zijlstra367456c2012-02-20 21:49:09 +01007605static unsigned long task_h_load(struct task_struct *p)
Peter Zijlstra230059de2009-12-17 17:47:12 +01007606{
Peter Zijlstra367456c2012-02-20 21:49:09 +01007607 struct cfs_rq *cfs_rq = task_cfs_rq(p);
Peter Zijlstra230059de2009-12-17 17:47:12 +01007608
Vladimir Davydov68520792013-07-15 17:49:19 +04007609 update_cfs_rq_h_load(cfs_rq);
Yuyang Du9d89c252015-07-15 08:04:37 +08007610 return div64_ul(p->se.avg.load_avg * cfs_rq->h_load,
Yuyang Du7ea241a2015-07-15 08:04:42 +08007611 cfs_rq_load_avg(cfs_rq) + 1);
Peter Zijlstra230059de2009-12-17 17:47:12 +01007612}
7613#else
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007614static bool __update_blocked_fair(struct rq *rq, bool *done)
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08007615{
Vincent Guittot6c1d47c2015-07-15 08:04:38 +08007616 struct cfs_rq *cfs_rq = &rq->cfs;
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007617 bool decayed;
Vincent Guittot6c1d47c2015-07-15 08:04:38 +08007618
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007619 decayed = update_cfs_rq_load_avg(cfs_rq_clock_pelt(cfs_rq), cfs_rq);
7620 if (cfs_rq_has_blocked(cfs_rq))
7621 *done = false;
Vincent Guittot12b04872018-08-31 17:22:55 +02007622
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007623 return decayed;
Peter Zijlstra9e3081c2010-11-15 15:47:02 -08007624}
7625
Peter Zijlstra367456c2012-02-20 21:49:09 +01007626static unsigned long task_h_load(struct task_struct *p)
7627{
Yuyang Du9d89c252015-07-15 08:04:37 +08007628 return p->se.avg.load_avg;
Peter Zijlstra230059de2009-12-17 17:47:12 +01007629}
7630#endif
7631
Vincent Guittotbef69dd2019-11-18 14:21:19 +01007632static void update_blocked_averages(int cpu)
7633{
7634 bool decayed = false, done = true;
7635 struct rq *rq = cpu_rq(cpu);
7636 struct rq_flags rf;
7637
7638 rq_lock_irqsave(rq, &rf);
7639 update_rq_clock(rq);
7640
7641 decayed |= __update_blocked_others(rq, &done);
7642 decayed |= __update_blocked_fair(rq, &done);
7643
7644 update_blocked_load_status(rq, !done);
7645 if (decayed)
7646 cpufreq_update_util(rq, 0);
7647 rq_unlock_irqrestore(rq, &rf);
7648}
7649
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007650/********** Helpers for find_busiest_group ************************/
Rik van Rielcaeb1782014-07-28 14:16:28 -04007651
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007652/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007653 * sg_lb_stats - stats of a sched_group required for load_balancing
7654 */
7655struct sg_lb_stats {
7656 unsigned long avg_load; /*Avg load across the CPUs of the group */
7657 unsigned long group_load; /* Total load over the CPUs of the group */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007658 unsigned long group_capacity;
Dietmar Eggemann9e91d612015-08-14 17:23:12 +01007659 unsigned long group_util; /* Total utilization of the group */
Vincent Guittot5e23e472019-10-18 15:26:32 +02007660 unsigned int sum_nr_running; /* Nr of tasks running in the group */
Vincent Guittota3498342019-10-18 15:26:29 +02007661 unsigned int sum_h_nr_running; /* Nr of CFS tasks running in the group */
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02007662 unsigned int idle_cpus;
7663 unsigned int group_weight;
Rik van Rielcaeb1782014-07-28 14:16:28 -04007664 enum group_type group_type;
Vincent Guittot490ba972019-10-18 15:26:28 +02007665 unsigned int group_asym_packing; /* Tasks should be moved to preferred CPU */
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01007666 unsigned long group_misfit_task_load; /* A CPU has a task too big for its capacity */
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01007667#ifdef CONFIG_NUMA_BALANCING
7668 unsigned int nr_numa_running;
7669 unsigned int nr_preferred_running;
7670#endif
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007671};
7672
Joonsoo Kim56cf5152013-08-06 17:36:43 +09007673/*
7674 * sd_lb_stats - Structure to store the statistics of a sched_domain
7675 * during load balancing.
7676 */
7677struct sd_lb_stats {
7678 struct sched_group *busiest; /* Busiest group in this sd */
7679 struct sched_group *local; /* Local group in this sd */
7680 unsigned long total_load; /* Total load of all groups in sd */
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007681 unsigned long total_capacity; /* Total capacity of all groups in sd */
Joonsoo Kim56cf5152013-08-06 17:36:43 +09007682 unsigned long avg_load; /* Average load across all groups in sd */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007683 unsigned int prefer_sibling; /* tasks should go to sibling first */
Joonsoo Kim56cf5152013-08-06 17:36:43 +09007684
Joonsoo Kim56cf5152013-08-06 17:36:43 +09007685 struct sg_lb_stats busiest_stat;/* Statistics of the busiest group */
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02007686 struct sg_lb_stats local_stat; /* Statistics of the local group */
Joonsoo Kim56cf5152013-08-06 17:36:43 +09007687};
7688
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02007689static inline void init_sd_lb_stats(struct sd_lb_stats *sds)
7690{
7691 /*
7692 * Skimp on the clearing to avoid duplicate work. We can avoid clearing
7693 * local_stat because update_sg_lb_stats() does a full clear/assignment.
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007694 * We must however set busiest_stat::group_type and
7695 * busiest_stat::idle_cpus to the worst busiest group because
7696 * update_sd_pick_busiest() reads these before assignment.
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02007697 */
7698 *sds = (struct sd_lb_stats){
7699 .busiest = NULL,
7700 .local = NULL,
7701 .total_load = 0UL,
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007702 .total_capacity = 0UL,
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02007703 .busiest_stat = {
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007704 .idle_cpus = UINT_MAX,
7705 .group_type = group_has_spare,
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02007706 },
7707 };
7708}
7709
Vincent Guittot287cdaa2018-09-04 11:36:26 +02007710static unsigned long scale_rt_capacity(struct sched_domain *sd, int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007711{
7712 struct rq *rq = cpu_rq(cpu);
Vincent Guittot8ec59c02019-06-17 17:00:17 +02007713 unsigned long max = arch_scale_cpu_capacity(cpu);
Vincent Guittot523e9792018-06-28 17:45:12 +02007714 unsigned long used, free;
Vincent Guittot523e9792018-06-28 17:45:12 +02007715 unsigned long irq;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007716
Vincent Guittot2e62c472018-07-19 14:00:06 +02007717 irq = cpu_util_irq(rq);
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07007718
Vincent Guittot523e9792018-06-28 17:45:12 +02007719 if (unlikely(irq >= max))
7720 return 1;
Peter Zijlstracadefd32014-02-27 10:40:35 +01007721
Vincent Guittot523e9792018-06-28 17:45:12 +02007722 used = READ_ONCE(rq->avg_rt.util_avg);
7723 used += READ_ONCE(rq->avg_dl.util_avg);
Peter Zijlstrab654f7d2012-05-22 14:04:28 +02007724
Vincent Guittot523e9792018-06-28 17:45:12 +02007725 if (unlikely(used >= max))
7726 return 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007727
Vincent Guittot523e9792018-06-28 17:45:12 +02007728 free = max - used;
Vincent Guittot2e62c472018-07-19 14:00:06 +02007729
7730 return scale_irq_capacity(free, irq, max);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007731}
7732
Nicolas Pitreced549f2014-05-26 18:19:38 -04007733static void update_cpu_capacity(struct sched_domain *sd, int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007734{
Vincent Guittot287cdaa2018-09-04 11:36:26 +02007735 unsigned long capacity = scale_rt_capacity(sd, cpu);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007736 struct sched_group *sdg = sd->groups;
7737
Vincent Guittot8ec59c02019-06-17 17:00:17 +02007738 cpu_rq(cpu)->cpu_capacity_orig = arch_scale_cpu_capacity(cpu);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007739
Nicolas Pitreced549f2014-05-26 18:19:38 -04007740 if (!capacity)
7741 capacity = 1;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007742
Nicolas Pitreced549f2014-05-26 18:19:38 -04007743 cpu_rq(cpu)->cpu_capacity = capacity;
7744 sdg->sgc->capacity = capacity;
Morten Rasmussenbf475ce2016-10-14 14:41:09 +01007745 sdg->sgc->min_capacity = capacity;
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007746 sdg->sgc->max_capacity = capacity;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007747}
7748
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007749void update_group_capacity(struct sched_domain *sd, int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007750{
7751 struct sched_domain *child = sd->child;
7752 struct sched_group *group, *sdg = sd->groups;
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007753 unsigned long capacity, min_capacity, max_capacity;
Vincent Guittot4ec44122011-12-12 20:21:08 +01007754 unsigned long interval;
7755
7756 interval = msecs_to_jiffies(sd->balance_interval);
7757 interval = clamp(interval, 1UL, max_load_balance_interval);
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007758 sdg->sgc->next_update = jiffies + interval;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007759
7760 if (!child) {
Nicolas Pitreced549f2014-05-26 18:19:38 -04007761 update_cpu_capacity(sd, cpu);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007762 return;
7763 }
7764
Vincent Guittotdc7ff762015-03-03 11:35:03 +01007765 capacity = 0;
Morten Rasmussenbf475ce2016-10-14 14:41:09 +01007766 min_capacity = ULONG_MAX;
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007767 max_capacity = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007768
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02007769 if (child->flags & SD_OVERLAP) {
7770 /*
7771 * SD_OVERLAP domains cannot assume that child groups
7772 * span the current group.
7773 */
7774
Peter Zijlstraae4df9d2017-05-01 11:03:12 +02007775 for_each_cpu(cpu, sched_group_span(sdg)) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007776 struct sched_group_capacity *sgc;
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307777 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra863bffc2013-08-28 11:44:39 +02007778
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307779 /*
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007780 * build_sched_domains() -> init_sched_groups_capacity()
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307781 * gets here before we've attached the domains to the
7782 * runqueues.
7783 *
Nicolas Pitreced549f2014-05-26 18:19:38 -04007784 * Use capacity_of(), which is set irrespective of domains
7785 * in update_cpu_capacity().
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307786 *
Vincent Guittotdc7ff762015-03-03 11:35:03 +01007787 * This avoids capacity from being 0 and
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307788 * causing divide-by-zero issues on boot.
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307789 */
7790 if (unlikely(!rq->sd)) {
Nicolas Pitreced549f2014-05-26 18:19:38 -04007791 capacity += capacity_of(cpu);
Morten Rasmussenbf475ce2016-10-14 14:41:09 +01007792 } else {
7793 sgc = rq->sd->groups->sgc;
7794 capacity += sgc->capacity;
Srikar Dronamraju9abf24d2013-11-12 22:11:26 +05307795 }
7796
Morten Rasmussenbf475ce2016-10-14 14:41:09 +01007797 min_capacity = min(capacity, min_capacity);
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007798 max_capacity = max(capacity, max_capacity);
Peter Zijlstra863bffc2013-08-28 11:44:39 +02007799 }
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02007800 } else {
7801 /*
7802 * !SD_OVERLAP domains can assume that child groups
7803 * span the current group.
Byungchul Park97a71422015-07-05 18:33:48 +09007804 */
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02007805
7806 group = child->groups;
7807 do {
Morten Rasmussenbf475ce2016-10-14 14:41:09 +01007808 struct sched_group_capacity *sgc = group->sgc;
7809
7810 capacity += sgc->capacity;
7811 min_capacity = min(sgc->min_capacity, min_capacity);
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007812 max_capacity = max(sgc->max_capacity, max_capacity);
Peter Zijlstra74a5ce22012-05-23 18:00:43 +02007813 group = group->next;
7814 } while (group != child->groups);
7815 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007816
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007817 sdg->sgc->capacity = capacity;
Morten Rasmussenbf475ce2016-10-14 14:41:09 +01007818 sdg->sgc->min_capacity = min_capacity;
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007819 sdg->sgc->max_capacity = max_capacity;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007820}
7821
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10007822/*
Vincent Guittotea678212015-02-27 16:54:11 +01007823 * Check whether the capacity of the rq has been noticeably reduced by side
7824 * activity. The imbalance_pct is used for the threshold.
7825 * Return true is the capacity is reduced
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10007826 */
7827static inline int
Vincent Guittotea678212015-02-27 16:54:11 +01007828check_cpu_capacity(struct rq *rq, struct sched_domain *sd)
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10007829{
Vincent Guittotea678212015-02-27 16:54:11 +01007830 return ((rq->cpu_capacity * sd->imbalance_pct) <
7831 (rq->cpu_capacity_orig * 100));
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10007832}
7833
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007834/*
Valentin Schneidera0fe2cf2019-02-11 17:59:45 +00007835 * Check whether a rq has a misfit task and if it looks like we can actually
7836 * help that task: we can migrate the task to a CPU of higher capacity, or
7837 * the task's current CPU is heavily pressured.
7838 */
7839static inline int check_misfit_status(struct rq *rq, struct sched_domain *sd)
7840{
7841 return rq->misfit_task_load &&
7842 (rq->cpu_capacity_orig < rq->rd->max_cpu_capacity ||
7843 check_cpu_capacity(rq, sd));
7844}
7845
7846/*
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007847 * Group imbalance indicates (and tries to solve) the problem where balancing
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02007848 * groups is inadequate due to ->cpus_ptr constraints.
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007849 *
Ingo Molnar97fb7a02018-03-03 14:01:12 +01007850 * Imagine a situation of two groups of 4 CPUs each and 4 tasks each with a
7851 * cpumask covering 1 CPU of the first group and 3 CPUs of the second group.
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007852 * Something like:
7853 *
Ingo Molnar2b4d5b22016-11-23 07:37:00 +01007854 * { 0 1 2 3 } { 4 5 6 7 }
7855 * * * * *
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007856 *
7857 * If we were to balance group-wise we'd place two tasks in the first group and
7858 * two tasks in the second group. Clearly this is undesired as it will overload
Ingo Molnar97fb7a02018-03-03 14:01:12 +01007859 * cpu 3 and leave one of the CPUs in the second group unused.
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007860 *
7861 * The current solution to this issue is detecting the skew in the first group
Peter Zijlstra62633222013-08-19 12:41:09 +02007862 * by noticing the lower domain failed to reach balance and had difficulty
7863 * moving tasks due to affinity constraints.
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007864 *
7865 * When this is so detected; this group becomes a candidate for busiest; see
Kamalesh Babulaled1b7732013-10-13 23:06:15 +05307866 * update_sd_pick_busiest(). And calculate_imbalance() and
Peter Zijlstra62633222013-08-19 12:41:09 +02007867 * find_busiest_group() avoid some of the usual balance conditions to allow it
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007868 * to create an effective group imbalance.
7869 *
7870 * This is a somewhat tricky proposition since the next run might not find the
7871 * group imbalance and decide the groups need to be balanced again. A most
7872 * subtle and fragile situation.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007873 */
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007874
Peter Zijlstra62633222013-08-19 12:41:09 +02007875static inline int sg_imbalanced(struct sched_group *group)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007876{
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04007877 return group->sgc->imbalance;
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02007878}
7879
Peter Zijlstrab37d9312013-08-28 11:50:34 +02007880/*
Vincent Guittotea678212015-02-27 16:54:11 +01007881 * group_has_capacity returns true if the group has spare capacity that could
7882 * be used by some tasks.
7883 * We consider that a group has spare capacity if the * number of task is
Dietmar Eggemann9e91d612015-08-14 17:23:12 +01007884 * smaller than the number of CPUs or if the utilization is lower than the
7885 * available capacity for CFS tasks.
Vincent Guittotea678212015-02-27 16:54:11 +01007886 * For the latter, we use a threshold to stabilize the state, to take into
7887 * account the variance of the tasks' load and to return true if the available
7888 * capacity in meaningful for the load balancer.
7889 * As an example, an available capacity of 1% can appear but it doesn't make
7890 * any benefit for the load balance.
Peter Zijlstrab37d9312013-08-28 11:50:34 +02007891 */
Vincent Guittotea678212015-02-27 16:54:11 +01007892static inline bool
Vincent Guittot57abff02019-10-18 15:26:38 +02007893group_has_capacity(unsigned int imbalance_pct, struct sg_lb_stats *sgs)
Peter Zijlstrab37d9312013-08-28 11:50:34 +02007894{
Vincent Guittot5e23e472019-10-18 15:26:32 +02007895 if (sgs->sum_nr_running < sgs->group_weight)
Vincent Guittotea678212015-02-27 16:54:11 +01007896 return true;
Peter Zijlstrab37d9312013-08-28 11:50:34 +02007897
Vincent Guittotea678212015-02-27 16:54:11 +01007898 if ((sgs->group_capacity * 100) >
Vincent Guittot57abff02019-10-18 15:26:38 +02007899 (sgs->group_util * imbalance_pct))
Vincent Guittotea678212015-02-27 16:54:11 +01007900 return true;
Peter Zijlstrab37d9312013-08-28 11:50:34 +02007901
Vincent Guittotea678212015-02-27 16:54:11 +01007902 return false;
Peter Zijlstrab37d9312013-08-28 11:50:34 +02007903}
7904
Vincent Guittotea678212015-02-27 16:54:11 +01007905/*
7906 * group_is_overloaded returns true if the group has more tasks than it can
7907 * handle.
7908 * group_is_overloaded is not equals to !group_has_capacity because a group
7909 * with the exact right number of tasks, has no more spare capacity but is not
7910 * overloaded so both group_has_capacity and group_is_overloaded return
7911 * false.
7912 */
7913static inline bool
Vincent Guittot57abff02019-10-18 15:26:38 +02007914group_is_overloaded(unsigned int imbalance_pct, struct sg_lb_stats *sgs)
Rik van Rielcaeb1782014-07-28 14:16:28 -04007915{
Vincent Guittot5e23e472019-10-18 15:26:32 +02007916 if (sgs->sum_nr_running <= sgs->group_weight)
Vincent Guittotea678212015-02-27 16:54:11 +01007917 return false;
7918
7919 if ((sgs->group_capacity * 100) <
Vincent Guittot57abff02019-10-18 15:26:38 +02007920 (sgs->group_util * imbalance_pct))
Vincent Guittotea678212015-02-27 16:54:11 +01007921 return true;
7922
7923 return false;
7924}
7925
Morten Rasmussen9e0994c2016-10-14 14:41:10 +01007926/*
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007927 * group_smaller_min_cpu_capacity: Returns true if sched_group sg has smaller
Morten Rasmussen9e0994c2016-10-14 14:41:10 +01007928 * per-CPU capacity than sched_group ref.
7929 */
7930static inline bool
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007931group_smaller_min_cpu_capacity(struct sched_group *sg, struct sched_group *ref)
Morten Rasmussen9e0994c2016-10-14 14:41:10 +01007932{
Viresh Kumar60e17f52019-06-04 12:31:52 +05307933 return fits_capacity(sg->sgc->min_capacity, ref->sgc->min_capacity);
Morten Rasmussen9e0994c2016-10-14 14:41:10 +01007934}
7935
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007936/*
7937 * group_smaller_max_cpu_capacity: Returns true if sched_group sg has smaller
7938 * per-CPU capacity_orig than sched_group ref.
7939 */
7940static inline bool
7941group_smaller_max_cpu_capacity(struct sched_group *sg, struct sched_group *ref)
7942{
Viresh Kumar60e17f52019-06-04 12:31:52 +05307943 return fits_capacity(sg->sgc->max_capacity, ref->sgc->max_capacity);
Morten Rasmussene3d6d0c2018-07-04 11:17:41 +01007944}
7945
Leo Yan79a89f92015-09-15 18:56:45 +08007946static inline enum
Vincent Guittot57abff02019-10-18 15:26:38 +02007947group_type group_classify(unsigned int imbalance_pct,
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007948 struct sched_group *group,
Leo Yan79a89f92015-09-15 18:56:45 +08007949 struct sg_lb_stats *sgs)
Vincent Guittotea678212015-02-27 16:54:11 +01007950{
Vincent Guittot57abff02019-10-18 15:26:38 +02007951 if (group_is_overloaded(imbalance_pct, sgs))
Rik van Rielcaeb1782014-07-28 14:16:28 -04007952 return group_overloaded;
7953
7954 if (sg_imbalanced(group))
7955 return group_imbalanced;
7956
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007957 if (sgs->group_asym_packing)
7958 return group_asym_packing;
7959
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01007960 if (sgs->group_misfit_task_load)
7961 return group_misfit_task;
7962
Vincent Guittot57abff02019-10-18 15:26:38 +02007963 if (!group_has_capacity(imbalance_pct, sgs))
Vincent Guittot0b0695f2019-10-18 15:26:31 +02007964 return group_fully_busy;
7965
7966 return group_has_spare;
Rik van Rielcaeb1782014-07-28 14:16:28 -04007967}
7968
Peter Zijlstra63928382018-02-13 16:54:17 +01007969static bool update_nohz_stats(struct rq *rq, bool force)
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01007970{
7971#ifdef CONFIG_NO_HZ_COMMON
7972 unsigned int cpu = rq->cpu;
7973
Vincent Guittotf643ea22018-02-13 11:31:17 +01007974 if (!rq->has_blocked_load)
7975 return false;
7976
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01007977 if (!cpumask_test_cpu(cpu, nohz.idle_cpus_mask))
Vincent Guittotf643ea22018-02-13 11:31:17 +01007978 return false;
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01007979
Peter Zijlstra63928382018-02-13 16:54:17 +01007980 if (!force && !time_after(jiffies, rq->last_blocked_load_update_tick))
Vincent Guittotf643ea22018-02-13 11:31:17 +01007981 return true;
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01007982
7983 update_blocked_averages(cpu);
Vincent Guittotf643ea22018-02-13 11:31:17 +01007984
7985 return rq->has_blocked_load;
7986#else
7987 return false;
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01007988#endif
7989}
7990
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007991/**
7992 * update_sg_lb_stats - Update sched_group's statistics for load balancing.
7993 * @env: The load balancing environment.
7994 * @group: sched_group whose statistics are to be updated.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007995 * @sgs: variable to hold the statistics for this group.
Quentin Perret630246a2018-12-03 09:56:24 +00007996 * @sg_status: Holds flag indicating the status of the sched_group
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01007997 */
7998static inline void update_sg_lb_stats(struct lb_env *env,
Quentin Perret630246a2018-12-03 09:56:24 +00007999 struct sched_group *group,
8000 struct sg_lb_stats *sgs,
8001 int *sg_status)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008002{
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008003 int i, nr_running, local_group;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008004
Peter Zijlstrab72ff132013-08-28 10:32:32 +02008005 memset(sgs, 0, sizeof(*sgs));
8006
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008007 local_group = cpumask_test_cpu(env->dst_cpu, sched_group_span(group));
8008
Peter Zijlstraae4df9d2017-05-01 11:03:12 +02008009 for_each_cpu_and(i, sched_group_span(group), env->cpus) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008010 struct rq *rq = cpu_rq(i);
8011
Peter Zijlstra63928382018-02-13 16:54:17 +01008012 if ((env->flags & LBF_NOHZ_STATS) && update_nohz_stats(rq, false))
Vincent Guittotf643ea22018-02-13 11:31:17 +01008013 env->flags |= LBF_NOHZ_AGAIN;
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01008014
Vincent Guittotb0fb1eb2019-10-18 15:26:33 +02008015 sgs->group_load += cpu_load(rq);
Dietmar Eggemann9e91d612015-08-14 17:23:12 +01008016 sgs->group_util += cpu_util(i);
Vincent Guittota3498342019-10-18 15:26:29 +02008017 sgs->sum_h_nr_running += rq->cfs.h_nr_running;
Tim Chen4486edd2014-06-23 12:16:49 -07008018
Waiman Longa426f992015-11-25 14:09:38 -05008019 nr_running = rq->nr_running;
Vincent Guittot5e23e472019-10-18 15:26:32 +02008020 sgs->sum_nr_running += nr_running;
8021
Waiman Longa426f992015-11-25 14:09:38 -05008022 if (nr_running > 1)
Quentin Perret630246a2018-12-03 09:56:24 +00008023 *sg_status |= SG_OVERLOAD;
Tim Chen4486edd2014-06-23 12:16:49 -07008024
Morten Rasmussen2802bf32018-12-03 09:56:25 +00008025 if (cpu_overutilized(i))
8026 *sg_status |= SG_OVERUTILIZED;
Kamalesh Babulal380c9072013-11-15 15:06:52 +05308027
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008028#ifdef CONFIG_NUMA_BALANCING
8029 sgs->nr_numa_running += rq->nr_numa_running;
8030 sgs->nr_preferred_running += rq->nr_preferred_running;
8031#endif
Waiman Longa426f992015-11-25 14:09:38 -05008032 /*
8033 * No need to call idle_cpu() if nr_running is not 0
8034 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008035 if (!nr_running && idle_cpu(i)) {
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07008036 sgs->idle_cpus++;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008037 /* Idle cpu can't have misfit task */
8038 continue;
8039 }
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01008040
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008041 if (local_group)
8042 continue;
8043
8044 /* Check for a misfit task on the cpu */
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01008045 if (env->sd->flags & SD_ASYM_CPUCAPACITY &&
Valentin Schneider757ffdd2018-07-04 11:17:47 +01008046 sgs->group_misfit_task_load < rq->misfit_task_load) {
Morten Rasmussen3b1baa62018-07-04 11:17:40 +01008047 sgs->group_misfit_task_load = rq->misfit_task_load;
Quentin Perret630246a2018-12-03 09:56:24 +00008048 *sg_status |= SG_OVERLOAD;
Valentin Schneider757ffdd2018-07-04 11:17:47 +01008049 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008050 }
8051
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008052 /* Check if dst CPU is idle and preferred to this group */
8053 if (env->sd->flags & SD_ASYM_PACKING &&
8054 env->idle != CPU_NOT_IDLE &&
8055 sgs->sum_h_nr_running &&
8056 sched_asym_prefer(env->dst_cpu, group->asym_prefer_cpu)) {
8057 sgs->group_asym_packing = 1;
8058 }
8059
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04008060 sgs->group_capacity = group->sgc->capacity;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008061
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07008062 sgs->group_weight = group->group_weight;
Peter Zijlstrab37d9312013-08-28 11:50:34 +02008063
Vincent Guittot57abff02019-10-18 15:26:38 +02008064 sgs->group_type = group_classify(env->sd->imbalance_pct, group, sgs);
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008065
8066 /* Computing avg_load makes sense only when group is overloaded */
8067 if (sgs->group_type == group_overloaded)
8068 sgs->avg_load = (sgs->group_load * SCHED_CAPACITY_SCALE) /
8069 sgs->group_capacity;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008070}
8071
8072/**
Michael Neuling532cb4c2010-06-08 14:57:02 +10008073 * update_sd_pick_busiest - return 1 on busiest group
Randy Dunlapcd968912012-06-08 13:18:33 -07008074 * @env: The load balancing environment.
Michael Neuling532cb4c2010-06-08 14:57:02 +10008075 * @sds: sched_domain statistics
8076 * @sg: sched_group candidate to be checked for being the busiest
Michael Neulingb6b12292010-06-10 12:06:21 +10008077 * @sgs: sched_group statistics
Michael Neuling532cb4c2010-06-08 14:57:02 +10008078 *
8079 * Determine if @sg is a busier group than the previously selected
8080 * busiest group.
Yacine Belkadie69f6182013-07-12 20:45:47 +02008081 *
8082 * Return: %true if @sg is a busier group than the previously selected
8083 * busiest group. %false otherwise.
Michael Neuling532cb4c2010-06-08 14:57:02 +10008084 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008085static bool update_sd_pick_busiest(struct lb_env *env,
Michael Neuling532cb4c2010-06-08 14:57:02 +10008086 struct sd_lb_stats *sds,
8087 struct sched_group *sg,
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008088 struct sg_lb_stats *sgs)
Michael Neuling532cb4c2010-06-08 14:57:02 +10008089{
Rik van Rielcaeb1782014-07-28 14:16:28 -04008090 struct sg_lb_stats *busiest = &sds->busiest_stat;
Michael Neuling532cb4c2010-06-08 14:57:02 +10008091
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008092 /* Make sure that there is at least one task to pull */
8093 if (!sgs->sum_h_nr_running)
8094 return false;
8095
Morten Rasmussencad68e52018-07-04 11:17:42 +01008096 /*
8097 * Don't try to pull misfit tasks we can't help.
8098 * We can use max_capacity here as reduction in capacity on some
8099 * CPUs in the group should either be possible to resolve
8100 * internally or be covered by avg_load imbalance (eventually).
8101 */
8102 if (sgs->group_type == group_misfit_task &&
8103 (!group_smaller_max_cpu_capacity(sg, sds->local) ||
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008104 sds->local_stat.group_type != group_has_spare))
Morten Rasmussencad68e52018-07-04 11:17:42 +01008105 return false;
8106
Rik van Rielcaeb1782014-07-28 14:16:28 -04008107 if (sgs->group_type > busiest->group_type)
Michael Neuling532cb4c2010-06-08 14:57:02 +10008108 return true;
8109
Rik van Rielcaeb1782014-07-28 14:16:28 -04008110 if (sgs->group_type < busiest->group_type)
8111 return false;
8112
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008113 /*
8114 * The candidate and the current busiest group are the same type of
8115 * group. Let check which one is the busiest according to the type.
8116 */
8117
8118 switch (sgs->group_type) {
8119 case group_overloaded:
8120 /* Select the overloaded group with highest avg_load. */
8121 if (sgs->avg_load <= busiest->avg_load)
8122 return false;
8123 break;
8124
8125 case group_imbalanced:
8126 /*
8127 * Select the 1st imbalanced group as we don't have any way to
8128 * choose one more than another.
8129 */
Rik van Rielcaeb1782014-07-28 14:16:28 -04008130 return false;
8131
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008132 case group_asym_packing:
Ingo Molnar97fb7a02018-03-03 14:01:12 +01008133 /* Prefer to move from lowest priority CPU's work */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008134 if (sched_asym_prefer(sg->asym_prefer_cpu, sds->busiest->asym_prefer_cpu))
8135 return false;
8136 break;
8137
8138 case group_misfit_task:
8139 /*
8140 * If we have more than one misfit sg go with the biggest
8141 * misfit.
8142 */
8143 if (sgs->group_misfit_task_load < busiest->group_misfit_task_load)
8144 return false;
8145 break;
8146
8147 case group_fully_busy:
8148 /*
8149 * Select the fully busy group with highest avg_load. In
8150 * theory, there is no need to pull task from such kind of
8151 * group because tasks have all compute capacity that they need
8152 * but we can still improve the overall throughput by reducing
8153 * contention when accessing shared HW resources.
8154 *
8155 * XXX for now avg_load is not computed and always 0 so we
8156 * select the 1st one.
8157 */
8158 if (sgs->avg_load <= busiest->avg_load)
8159 return false;
8160 break;
8161
8162 case group_has_spare:
8163 /*
8164 * Select not overloaded group with lowest number of
8165 * idle cpus. We could also compare the spare capacity
8166 * which is more stable but it can end up that the
8167 * group has less spare capacity but finally more idle
8168 * CPUs which means less opportunity to pull tasks.
8169 */
8170 if (sgs->idle_cpus >= busiest->idle_cpus)
8171 return false;
8172 break;
Michael Neuling532cb4c2010-06-08 14:57:02 +10008173 }
8174
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008175 /*
8176 * Candidate sg has no more than one task per CPU and has higher
8177 * per-CPU capacity. Migrating tasks to less capable CPUs may harm
8178 * throughput. Maximize throughput, power/energy consequences are not
8179 * considered.
8180 */
8181 if ((env->sd->flags & SD_ASYM_CPUCAPACITY) &&
8182 (sgs->group_type <= group_fully_busy) &&
8183 (group_smaller_min_cpu_capacity(sds->local, sg)))
8184 return false;
8185
8186 return true;
Michael Neuling532cb4c2010-06-08 14:57:02 +10008187}
8188
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008189#ifdef CONFIG_NUMA_BALANCING
8190static inline enum fbq_type fbq_classify_group(struct sg_lb_stats *sgs)
8191{
Vincent Guittota3498342019-10-18 15:26:29 +02008192 if (sgs->sum_h_nr_running > sgs->nr_numa_running)
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008193 return regular;
Vincent Guittota3498342019-10-18 15:26:29 +02008194 if (sgs->sum_h_nr_running > sgs->nr_preferred_running)
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008195 return remote;
8196 return all;
8197}
8198
8199static inline enum fbq_type fbq_classify_rq(struct rq *rq)
8200{
8201 if (rq->nr_running > rq->nr_numa_running)
8202 return regular;
8203 if (rq->nr_running > rq->nr_preferred_running)
8204 return remote;
8205 return all;
8206}
8207#else
8208static inline enum fbq_type fbq_classify_group(struct sg_lb_stats *sgs)
8209{
8210 return all;
8211}
8212
8213static inline enum fbq_type fbq_classify_rq(struct rq *rq)
8214{
8215 return regular;
8216}
8217#endif /* CONFIG_NUMA_BALANCING */
8218
Vincent Guittot57abff02019-10-18 15:26:38 +02008219
8220struct sg_lb_stats;
8221
8222/*
Vincent Guittot3318544b2019-10-22 18:46:38 +02008223 * task_running_on_cpu - return 1 if @p is running on @cpu.
8224 */
8225
8226static unsigned int task_running_on_cpu(int cpu, struct task_struct *p)
8227{
8228 /* Task has no contribution or is new */
8229 if (cpu != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
8230 return 0;
8231
8232 if (task_on_rq_queued(p))
8233 return 1;
8234
8235 return 0;
8236}
8237
8238/**
8239 * idle_cpu_without - would a given CPU be idle without p ?
8240 * @cpu: the processor on which idleness is tested.
8241 * @p: task which should be ignored.
8242 *
8243 * Return: 1 if the CPU would be idle. 0 otherwise.
8244 */
8245static int idle_cpu_without(int cpu, struct task_struct *p)
8246{
8247 struct rq *rq = cpu_rq(cpu);
8248
8249 if (rq->curr != rq->idle && rq->curr != p)
8250 return 0;
8251
8252 /*
8253 * rq->nr_running can't be used but an updated version without the
8254 * impact of p on cpu must be used instead. The updated nr_running
8255 * be computed and tested before calling idle_cpu_without().
8256 */
8257
8258#ifdef CONFIG_SMP
8259 if (!llist_empty(&rq->wake_list))
8260 return 0;
8261#endif
8262
8263 return 1;
8264}
8265
8266/*
Vincent Guittot57abff02019-10-18 15:26:38 +02008267 * update_sg_wakeup_stats - Update sched_group's statistics for wakeup.
Vincent Guittot3318544b2019-10-22 18:46:38 +02008268 * @sd: The sched_domain level to look for idlest group.
Vincent Guittot57abff02019-10-18 15:26:38 +02008269 * @group: sched_group whose statistics are to be updated.
8270 * @sgs: variable to hold the statistics for this group.
Vincent Guittot3318544b2019-10-22 18:46:38 +02008271 * @p: The task for which we look for the idlest group/CPU.
Vincent Guittot57abff02019-10-18 15:26:38 +02008272 */
8273static inline void update_sg_wakeup_stats(struct sched_domain *sd,
8274 struct sched_group *group,
8275 struct sg_lb_stats *sgs,
8276 struct task_struct *p)
8277{
8278 int i, nr_running;
8279
8280 memset(sgs, 0, sizeof(*sgs));
8281
8282 for_each_cpu(i, sched_group_span(group)) {
8283 struct rq *rq = cpu_rq(i);
Vincent Guittot3318544b2019-10-22 18:46:38 +02008284 unsigned int local;
Vincent Guittot57abff02019-10-18 15:26:38 +02008285
Vincent Guittot3318544b2019-10-22 18:46:38 +02008286 sgs->group_load += cpu_load_without(rq, p);
Vincent Guittot57abff02019-10-18 15:26:38 +02008287 sgs->group_util += cpu_util_without(i, p);
Vincent Guittot3318544b2019-10-22 18:46:38 +02008288 local = task_running_on_cpu(i, p);
8289 sgs->sum_h_nr_running += rq->cfs.h_nr_running - local;
Vincent Guittot57abff02019-10-18 15:26:38 +02008290
Vincent Guittot3318544b2019-10-22 18:46:38 +02008291 nr_running = rq->nr_running - local;
Vincent Guittot57abff02019-10-18 15:26:38 +02008292 sgs->sum_nr_running += nr_running;
8293
8294 /*
Vincent Guittot3318544b2019-10-22 18:46:38 +02008295 * No need to call idle_cpu_without() if nr_running is not 0
Vincent Guittot57abff02019-10-18 15:26:38 +02008296 */
Vincent Guittot3318544b2019-10-22 18:46:38 +02008297 if (!nr_running && idle_cpu_without(i, p))
Vincent Guittot57abff02019-10-18 15:26:38 +02008298 sgs->idle_cpus++;
8299
Vincent Guittot57abff02019-10-18 15:26:38 +02008300 }
8301
8302 /* Check if task fits in the group */
8303 if (sd->flags & SD_ASYM_CPUCAPACITY &&
8304 !task_fits_capacity(p, group->sgc->max_capacity)) {
8305 sgs->group_misfit_task_load = 1;
8306 }
8307
8308 sgs->group_capacity = group->sgc->capacity;
8309
8310 sgs->group_type = group_classify(sd->imbalance_pct, group, sgs);
8311
8312 /*
8313 * Computing avg_load makes sense only when group is fully busy or
8314 * overloaded
8315 */
8316 if (sgs->group_type < group_fully_busy)
8317 sgs->avg_load = (sgs->group_load * SCHED_CAPACITY_SCALE) /
8318 sgs->group_capacity;
8319}
8320
8321static bool update_pick_idlest(struct sched_group *idlest,
8322 struct sg_lb_stats *idlest_sgs,
8323 struct sched_group *group,
8324 struct sg_lb_stats *sgs)
8325{
8326 if (sgs->group_type < idlest_sgs->group_type)
8327 return true;
8328
8329 if (sgs->group_type > idlest_sgs->group_type)
8330 return false;
8331
8332 /*
8333 * The candidate and the current idlest group are the same type of
8334 * group. Let check which one is the idlest according to the type.
8335 */
8336
8337 switch (sgs->group_type) {
8338 case group_overloaded:
8339 case group_fully_busy:
8340 /* Select the group with lowest avg_load. */
8341 if (idlest_sgs->avg_load <= sgs->avg_load)
8342 return false;
8343 break;
8344
8345 case group_imbalanced:
8346 case group_asym_packing:
8347 /* Those types are not used in the slow wakeup path */
8348 return false;
8349
8350 case group_misfit_task:
8351 /* Select group with the highest max capacity */
8352 if (idlest->sgc->max_capacity >= group->sgc->max_capacity)
8353 return false;
8354 break;
8355
8356 case group_has_spare:
8357 /* Select group with most idle CPUs */
8358 if (idlest_sgs->idle_cpus >= sgs->idle_cpus)
8359 return false;
8360 break;
8361 }
8362
8363 return true;
8364}
8365
8366/*
8367 * find_idlest_group() finds and returns the least busy CPU group within the
8368 * domain.
8369 *
8370 * Assumes p is allowed on at least one CPU in sd.
8371 */
8372static struct sched_group *
8373find_idlest_group(struct sched_domain *sd, struct task_struct *p,
8374 int this_cpu, int sd_flag)
8375{
8376 struct sched_group *idlest = NULL, *local = NULL, *group = sd->groups;
8377 struct sg_lb_stats local_sgs, tmp_sgs;
8378 struct sg_lb_stats *sgs;
8379 unsigned long imbalance;
8380 struct sg_lb_stats idlest_sgs = {
8381 .avg_load = UINT_MAX,
8382 .group_type = group_overloaded,
8383 };
8384
8385 imbalance = scale_load_down(NICE_0_LOAD) *
8386 (sd->imbalance_pct-100) / 100;
8387
8388 do {
8389 int local_group;
8390
8391 /* Skip over this group if it has no CPUs allowed */
8392 if (!cpumask_intersects(sched_group_span(group),
8393 p->cpus_ptr))
8394 continue;
8395
8396 local_group = cpumask_test_cpu(this_cpu,
8397 sched_group_span(group));
8398
8399 if (local_group) {
8400 sgs = &local_sgs;
8401 local = group;
8402 } else {
8403 sgs = &tmp_sgs;
8404 }
8405
8406 update_sg_wakeup_stats(sd, group, sgs, p);
8407
8408 if (!local_group && update_pick_idlest(idlest, &idlest_sgs, group, sgs)) {
8409 idlest = group;
8410 idlest_sgs = *sgs;
8411 }
8412
8413 } while (group = group->next, group != sd->groups);
8414
8415
8416 /* There is no idlest group to push tasks to */
8417 if (!idlest)
8418 return NULL;
8419
8420 /*
8421 * If the local group is idler than the selected idlest group
8422 * don't try and push the task.
8423 */
8424 if (local_sgs.group_type < idlest_sgs.group_type)
8425 return NULL;
8426
8427 /*
8428 * If the local group is busier than the selected idlest group
8429 * try and push the task.
8430 */
8431 if (local_sgs.group_type > idlest_sgs.group_type)
8432 return idlest;
8433
8434 switch (local_sgs.group_type) {
8435 case group_overloaded:
8436 case group_fully_busy:
8437 /*
8438 * When comparing groups across NUMA domains, it's possible for
8439 * the local domain to be very lightly loaded relative to the
8440 * remote domains but "imbalance" skews the comparison making
8441 * remote CPUs look much more favourable. When considering
8442 * cross-domain, add imbalance to the load on the remote node
8443 * and consider staying local.
8444 */
8445
8446 if ((sd->flags & SD_NUMA) &&
8447 ((idlest_sgs.avg_load + imbalance) >= local_sgs.avg_load))
8448 return NULL;
8449
8450 /*
8451 * If the local group is less loaded than the selected
8452 * idlest group don't try and push any tasks.
8453 */
8454 if (idlest_sgs.avg_load >= (local_sgs.avg_load + imbalance))
8455 return NULL;
8456
8457 if (100 * local_sgs.avg_load <= sd->imbalance_pct * idlest_sgs.avg_load)
8458 return NULL;
8459 break;
8460
8461 case group_imbalanced:
8462 case group_asym_packing:
8463 /* Those type are not used in the slow wakeup path */
8464 return NULL;
8465
8466 case group_misfit_task:
8467 /* Select group with the highest max capacity */
8468 if (local->sgc->max_capacity >= idlest->sgc->max_capacity)
8469 return NULL;
8470 break;
8471
8472 case group_has_spare:
8473 if (sd->flags & SD_NUMA) {
8474#ifdef CONFIG_NUMA_BALANCING
8475 int idlest_cpu;
8476 /*
8477 * If there is spare capacity at NUMA, try to select
8478 * the preferred node
8479 */
8480 if (cpu_to_node(this_cpu) == p->numa_preferred_nid)
8481 return NULL;
8482
8483 idlest_cpu = cpumask_first(sched_group_span(idlest));
8484 if (cpu_to_node(idlest_cpu) == p->numa_preferred_nid)
8485 return idlest;
8486#endif
8487 /*
8488 * Otherwise, keep the task on this node to stay close
8489 * its wakeup source and improve locality. If there is
8490 * a real need of migration, periodic load balance will
8491 * take care of it.
8492 */
8493 if (local_sgs.idle_cpus)
8494 return NULL;
8495 }
8496
8497 /*
8498 * Select group with highest number of idle CPUs. We could also
8499 * compare the utilization which is more stable but it can end
8500 * up that the group has less spare capacity but finally more
8501 * idle CPUs which means more opportunity to run task.
8502 */
8503 if (local_sgs.idle_cpus >= idlest_sgs.idle_cpus)
8504 return NULL;
8505 break;
8506 }
8507
8508 return idlest;
8509}
8510
Michael Neuling532cb4c2010-06-08 14:57:02 +10008511/**
Hui Kang461819a2011-10-11 23:00:59 -04008512 * update_sd_lb_stats - Update sched_domain's statistics for load balancing.
Randy Dunlapcd968912012-06-08 13:18:33 -07008513 * @env: The load balancing environment.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008514 * @sds: variable to hold the statistics for this sched_domain.
8515 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008516
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008517static inline void update_sd_lb_stats(struct lb_env *env, struct sd_lb_stats *sds)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008518{
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008519 struct sched_domain *child = env->sd->child;
8520 struct sched_group *sg = env->sd->groups;
Srikar Dronamraju05b40e02017-03-22 23:27:50 +05308521 struct sg_lb_stats *local = &sds->local_stat;
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008522 struct sg_lb_stats tmp_sgs;
Quentin Perret630246a2018-12-03 09:56:24 +00008523 int sg_status = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008524
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01008525#ifdef CONFIG_NO_HZ_COMMON
Vincent Guittotf643ea22018-02-13 11:31:17 +01008526 if (env->idle == CPU_NEWLY_IDLE && READ_ONCE(nohz.has_blocked))
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01008527 env->flags |= LBF_NOHZ_STATS;
Peter Zijlstrae022e0d2017-12-21 11:20:23 +01008528#endif
8529
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008530 do {
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008531 struct sg_lb_stats *sgs = &tmp_sgs;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008532 int local_group;
8533
Peter Zijlstraae4df9d2017-05-01 11:03:12 +02008534 local_group = cpumask_test_cpu(env->dst_cpu, sched_group_span(sg));
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008535 if (local_group) {
8536 sds->local = sg;
Srikar Dronamraju05b40e02017-03-22 23:27:50 +05308537 sgs = local;
Peter Zijlstrab72ff132013-08-28 10:32:32 +02008538
8539 if (env->idle != CPU_NEWLY_IDLE ||
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04008540 time_after_eq(jiffies, sg->sgc->next_update))
8541 update_group_capacity(env->sd, env->dst_cpu);
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008542 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008543
Quentin Perret630246a2018-12-03 09:56:24 +00008544 update_sg_lb_stats(env, sg, sgs, &sg_status);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008545
Peter Zijlstrab72ff132013-08-28 10:32:32 +02008546 if (local_group)
8547 goto next_group;
8548
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008549
Peter Zijlstrab72ff132013-08-28 10:32:32 +02008550 if (update_sd_pick_busiest(env, sds, sg, sgs)) {
Michael Neuling532cb4c2010-06-08 14:57:02 +10008551 sds->busiest = sg;
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008552 sds->busiest_stat = *sgs;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008553 }
8554
Peter Zijlstrab72ff132013-08-28 10:32:32 +02008555next_group:
8556 /* Now, start updating sd_lb_stats */
8557 sds->total_load += sgs->group_load;
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04008558 sds->total_capacity += sgs->group_capacity;
Peter Zijlstrab72ff132013-08-28 10:32:32 +02008559
Michael Neuling532cb4c2010-06-08 14:57:02 +10008560 sg = sg->next;
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008561 } while (sg != env->sd->groups);
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008562
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008563 /* Tag domain that child domain prefers tasks go to siblings first */
8564 sds->prefer_sibling = child && child->flags & SD_PREFER_SIBLING;
8565
Vincent Guittotf643ea22018-02-13 11:31:17 +01008566#ifdef CONFIG_NO_HZ_COMMON
8567 if ((env->flags & LBF_NOHZ_AGAIN) &&
8568 cpumask_subset(nohz.idle_cpus_mask, sched_domain_span(env->sd))) {
8569
8570 WRITE_ONCE(nohz.next_blocked,
8571 jiffies + msecs_to_jiffies(LOAD_AVG_PERIOD));
8572 }
8573#endif
8574
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008575 if (env->sd->flags & SD_NUMA)
8576 env->fbq_type = fbq_classify_group(&sds->busiest_stat);
Tim Chen4486edd2014-06-23 12:16:49 -07008577
8578 if (!env->sd->parent) {
Morten Rasmussen2802bf32018-12-03 09:56:25 +00008579 struct root_domain *rd = env->dst_rq->rd;
8580
Tim Chen4486edd2014-06-23 12:16:49 -07008581 /* update overload indicator if we are at root domain */
Morten Rasmussen2802bf32018-12-03 09:56:25 +00008582 WRITE_ONCE(rd->overload, sg_status & SG_OVERLOAD);
8583
8584 /* Update over-utilization (tipping point, U >= 0) indicator */
8585 WRITE_ONCE(rd->overutilized, sg_status & SG_OVERUTILIZED);
Qais Youseff9f240f2019-06-04 12:14:58 +01008586 trace_sched_overutilized_tp(rd, sg_status & SG_OVERUTILIZED);
Morten Rasmussen2802bf32018-12-03 09:56:25 +00008587 } else if (sg_status & SG_OVERUTILIZED) {
Qais Youseff9f240f2019-06-04 12:14:58 +01008588 struct root_domain *rd = env->dst_rq->rd;
8589
8590 WRITE_ONCE(rd->overutilized, SG_OVERUTILIZED);
8591 trace_sched_overutilized_tp(rd, SG_OVERUTILIZED);
Tim Chen4486edd2014-06-23 12:16:49 -07008592 }
Michael Neuling532cb4c2010-06-08 14:57:02 +10008593}
8594
Michael Neuling532cb4c2010-06-08 14:57:02 +10008595/**
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008596 * calculate_imbalance - Calculate the amount of imbalance present within the
8597 * groups of a given sched_domain during load balance.
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008598 * @env: load balance environment
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008599 * @sds: statistics of the sched_domain whose imbalance is to be calculated.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008600 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008601static inline void calculate_imbalance(struct lb_env *env, struct sd_lb_stats *sds)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008602{
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008603 struct sg_lb_stats *local, *busiest;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08008604
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008605 local = &sds->local_stat;
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008606 busiest = &sds->busiest_stat;
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008607
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008608 if (busiest->group_type == group_misfit_task) {
8609 /* Set imbalance to allow misfit tasks to be balanced. */
8610 env->migration_type = migrate_misfit;
Vincent Guittotc63be7b2019-10-18 15:26:35 +02008611 env->imbalance = 1;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008612 return;
8613 }
8614
8615 if (busiest->group_type == group_asym_packing) {
8616 /*
8617 * In case of asym capacity, we will try to migrate all load to
8618 * the preferred CPU.
8619 */
8620 env->migration_type = migrate_task;
8621 env->imbalance = busiest->sum_h_nr_running;
8622 return;
8623 }
8624
8625 if (busiest->group_type == group_imbalanced) {
8626 /*
8627 * In the group_imb case we cannot rely on group-wide averages
8628 * to ensure CPU-load equilibrium, try to move any task to fix
8629 * the imbalance. The next load balance will take care of
8630 * balancing back the system.
8631 */
8632 env->migration_type = migrate_task;
8633 env->imbalance = 1;
Vincent Guittot490ba972019-10-18 15:26:28 +02008634 return;
8635 }
8636
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008637 /*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008638 * Try to use spare capacity of local group without overloading it or
Vincent Guittota9723382019-11-12 15:50:43 +01008639 * emptying busiest.
8640 * XXX Spreading tasks across NUMA nodes is not always the best policy
8641 * and special care should be taken for SD_NUMA domain level before
8642 * spreading the tasks. For now, load_balance() fully relies on
8643 * NUMA_BALANCING and fbq_classify_group/rq to override the decision.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008644 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008645 if (local->group_type == group_has_spare) {
8646 if (busiest->group_type > group_fully_busy) {
8647 /*
8648 * If busiest is overloaded, try to fill spare
8649 * capacity. This might end up creating spare capacity
8650 * in busiest or busiest still being overloaded but
8651 * there is no simple way to directly compute the
8652 * amount of load to migrate in order to balance the
8653 * system.
8654 */
8655 env->migration_type = migrate_util;
8656 env->imbalance = max(local->group_capacity, local->group_util) -
8657 local->group_util;
8658
8659 /*
8660 * In some cases, the group's utilization is max or even
8661 * higher than capacity because of migrations but the
8662 * local CPU is (newly) idle. There is at least one
8663 * waiting task in this overloaded busiest group. Let's
8664 * try to pull it.
8665 */
8666 if (env->idle != CPU_NOT_IDLE && env->imbalance == 0) {
8667 env->migration_type = migrate_task;
8668 env->imbalance = 1;
8669 }
8670
8671 return;
8672 }
8673
8674 if (busiest->group_weight == 1 || sds->prefer_sibling) {
Vincent Guittot5e23e472019-10-18 15:26:32 +02008675 unsigned int nr_diff = busiest->sum_nr_running;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008676 /*
8677 * When prefer sibling, evenly spread running tasks on
8678 * groups.
8679 */
8680 env->migration_type = migrate_task;
Vincent Guittot5e23e472019-10-18 15:26:32 +02008681 lsub_positive(&nr_diff, local->sum_nr_running);
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008682 env->imbalance = nr_diff >> 1;
8683 return;
8684 }
8685
8686 /*
8687 * If there is no overload, we just want to even the number of
8688 * idle cpus.
8689 */
8690 env->migration_type = migrate_task;
8691 env->imbalance = max_t(long, 0, (local->idle_cpus -
8692 busiest->idle_cpus) >> 1);
Vincent Guittotfcf05532019-10-18 15:26:30 +02008693 return;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008694 }
8695
Peter Zijlstra9a5d9ba2014-07-29 17:15:11 +02008696 /*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008697 * Local is fully busy but has to take more load to relieve the
8698 * busiest group
Peter Zijlstra9a5d9ba2014-07-29 17:15:11 +02008699 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008700 if (local->group_type < group_overloaded) {
8701 /*
8702 * Local will become overloaded so the avg_load metrics are
8703 * finally needed.
8704 */
8705
8706 local->avg_load = (local->group_load * SCHED_CAPACITY_SCALE) /
8707 local->group_capacity;
8708
8709 sds->avg_load = (sds->total_load * SCHED_CAPACITY_SCALE) /
8710 sds->total_capacity;
Suresh Siddhadd5feea2010-02-23 16:13:52 -08008711 }
8712
8713 /*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008714 * Both group are or will become overloaded and we're trying to get all
8715 * the CPUs to the average_load, so we don't want to push ourselves
8716 * above the average load, nor do we wish to reduce the max loaded CPU
8717 * below the average load. At the same time, we also don't want to
8718 * reduce the group load below the group capacity. Thus we look for
8719 * the minimum possible imbalance.
Suresh Siddhadd5feea2010-02-23 16:13:52 -08008720 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008721 env->migration_type = migrate_load;
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008722 env->imbalance = min(
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008723 (busiest->avg_load - sds->avg_load) * busiest->group_capacity,
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04008724 (sds->avg_load - local->avg_load) * local->group_capacity
Nicolas Pitreca8ce3d2014-05-26 18:19:39 -04008725 ) / SCHED_CAPACITY_SCALE;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008726}
Nikhil Raofab47622010-10-15 13:12:29 -07008727
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008728/******* find_busiest_group() helpers end here *********************/
8729
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008730/*
8731 * Decision matrix according to the local and busiest group type:
8732 *
8733 * busiest \ local has_spare fully_busy misfit asym imbalanced overloaded
8734 * has_spare nr_idle balanced N/A N/A balanced balanced
8735 * fully_busy nr_idle nr_idle N/A N/A balanced balanced
8736 * misfit_task force N/A N/A N/A force force
8737 * asym_packing force force N/A N/A force force
8738 * imbalanced force force N/A N/A force force
8739 * overloaded force force N/A N/A force avg_load
8740 *
8741 * N/A : Not Applicable because already filtered while updating
8742 * statistics.
8743 * balanced : The system is balanced for these 2 groups.
8744 * force : Calculate the imbalance as load migration is probably needed.
8745 * avg_load : Only if imbalance is significant enough.
8746 * nr_idle : dst_cpu is not busy and the number of idle CPUs is quite
8747 * different in groups.
8748 */
8749
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008750/**
8751 * find_busiest_group - Returns the busiest group within the sched_domain
Dietmar Eggemann0a9b23c2016-04-29 20:32:38 +01008752 * if there is an imbalance.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008753 *
Dietmar Eggemanna3df0672019-06-18 14:23:10 +02008754 * Also calculates the amount of runnable load which should be moved
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008755 * to restore balance.
8756 *
Randy Dunlapcd968912012-06-08 13:18:33 -07008757 * @env: The load balancing environment.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008758 *
Yacine Belkadie69f6182013-07-12 20:45:47 +02008759 * Return: - The busiest group if imbalance exists.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008760 */
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008761static struct sched_group *find_busiest_group(struct lb_env *env)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008762{
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008763 struct sg_lb_stats *local, *busiest;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008764 struct sd_lb_stats sds;
8765
Peter Zijlstra147c5fc2013-08-19 15:22:57 +02008766 init_sd_lb_stats(&sds);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008767
8768 /*
Vincent Guittotb0fb1eb2019-10-18 15:26:33 +02008769 * Compute the various statistics relevant for load balancing at
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008770 * this level.
8771 */
Joonsoo Kim23f0d202013-08-06 17:36:42 +09008772 update_sd_lb_stats(env, &sds);
Morten Rasmussen2802bf32018-12-03 09:56:25 +00008773
Peter Zijlstraf8a696f2018-12-05 11:23:56 +01008774 if (sched_energy_enabled()) {
Morten Rasmussen2802bf32018-12-03 09:56:25 +00008775 struct root_domain *rd = env->dst_rq->rd;
8776
8777 if (rcu_dereference(rd->pd) && !READ_ONCE(rd->overutilized))
8778 goto out_balanced;
8779 }
8780
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008781 local = &sds.local_stat;
8782 busiest = &sds.busiest_stat;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008783
Peter Zijlstracc57aa82011-02-21 18:55:32 +01008784 /* There is no busy sibling group to pull tasks from */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008785 if (!sds.busiest)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008786 goto out_balanced;
8787
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008788 /* Misfit tasks should be dealt with regardless of the avg load */
8789 if (busiest->group_type == group_misfit_task)
8790 goto force_balance;
8791
8792 /* ASYM feature bypasses nice load balance check */
8793 if (busiest->group_type == group_asym_packing)
8794 goto force_balance;
Ken Chenb0432d82011-04-07 17:23:22 -07008795
Peter Zijlstra866ab432011-02-21 18:56:47 +01008796 /*
8797 * If the busiest group is imbalanced the below checks don't
Peter Zijlstra30ce5da2013-08-15 20:29:29 +02008798 * work because they assume all things are equal, which typically
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02008799 * isn't true due to cpus_ptr constraints and the like.
Peter Zijlstra866ab432011-02-21 18:56:47 +01008800 */
Rik van Rielcaeb1782014-07-28 14:16:28 -04008801 if (busiest->group_type == group_imbalanced)
Peter Zijlstra866ab432011-02-21 18:56:47 +01008802 goto force_balance;
8803
Brendan Jackman583ffd92017-10-05 11:58:54 +01008804 /*
Zhihui Zhang9c58c792014-09-20 21:24:36 -04008805 * If the local group is busier than the selected busiest group
Peter Zijlstracc57aa82011-02-21 18:55:32 +01008806 * don't try and pull any tasks.
8807 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008808 if (local->group_type > busiest->group_type)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008809 goto out_balanced;
8810
Peter Zijlstracc57aa82011-02-21 18:55:32 +01008811 /*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008812 * When groups are overloaded, use the avg_load to ensure fairness
8813 * between tasks.
Peter Zijlstracc57aa82011-02-21 18:55:32 +01008814 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008815 if (local->group_type == group_overloaded) {
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07008816 /*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008817 * If the local group is more loaded than the selected
8818 * busiest group don't try to pull any tasks.
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07008819 */
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008820 if (local->avg_load >= busiest->avg_load)
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07008821 goto out_balanced;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008822
8823 /* XXX broken for overlapping NUMA groups */
8824 sds.avg_load = (sds.total_load * SCHED_CAPACITY_SCALE) /
8825 sds.total_capacity;
8826
Peter Zijlstrac186faf2011-02-21 18:52:53 +01008827 /*
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008828 * Don't pull any tasks if this group is already above the
8829 * domain average load.
8830 */
8831 if (local->avg_load >= sds.avg_load)
8832 goto out_balanced;
8833
8834 /*
8835 * If the busiest group is more loaded, use imbalance_pct to be
8836 * conservative.
Peter Zijlstrac186faf2011-02-21 18:52:53 +01008837 */
Joonsoo Kim56cf5152013-08-06 17:36:43 +09008838 if (100 * busiest->avg_load <=
8839 env->sd->imbalance_pct * local->avg_load)
Peter Zijlstrac186faf2011-02-21 18:52:53 +01008840 goto out_balanced;
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07008841 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008842
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008843 /* Try to move all excess tasks to child's sibling domain */
8844 if (sds.prefer_sibling && local->group_type == group_has_spare &&
Vincent Guittot5e23e472019-10-18 15:26:32 +02008845 busiest->sum_nr_running > local->sum_nr_running + 1)
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008846 goto force_balance;
8847
Vincent Guittot2ab40922019-10-18 15:26:34 +02008848 if (busiest->group_type != group_overloaded) {
8849 if (env->idle == CPU_NOT_IDLE)
8850 /*
8851 * If the busiest group is not overloaded (and as a
8852 * result the local one too) but this CPU is already
8853 * busy, let another idle CPU try to pull task.
8854 */
8855 goto out_balanced;
8856
8857 if (busiest->group_weight > 1 &&
8858 local->idle_cpus <= (busiest->idle_cpus + 1))
8859 /*
8860 * If the busiest group is not overloaded
8861 * and there is no imbalance between this and busiest
8862 * group wrt idle CPUs, it is balanced. The imbalance
8863 * becomes significant if the diff is greater than 1
8864 * otherwise we might end up to just move the imbalance
8865 * on another group. Of course this applies only if
8866 * there is more than 1 CPU per group.
8867 */
8868 goto out_balanced;
8869
8870 if (busiest->sum_h_nr_running == 1)
8871 /*
8872 * busiest doesn't have any tasks waiting to run
8873 */
8874 goto out_balanced;
8875 }
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008876
Nikhil Raofab47622010-10-15 13:12:29 -07008877force_balance:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008878 /* Looks like there is an imbalance. Compute it */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008879 calculate_imbalance(env, &sds);
Vincent Guittotbb3485c2018-09-07 09:51:04 +02008880 return env->imbalance ? sds.busiest : NULL;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008881
8882out_balanced:
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008883 env->imbalance = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008884 return NULL;
8885}
8886
8887/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01008888 * find_busiest_queue - find the busiest runqueue among the CPUs in the group.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008889 */
Peter Zijlstrabd939f42012-05-02 14:20:37 +02008890static struct rq *find_busiest_queue(struct lb_env *env,
Michael Wangb94031302012-07-12 16:10:13 +08008891 struct sched_group *group)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008892{
8893 struct rq *busiest = NULL, *rq;
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008894 unsigned long busiest_util = 0, busiest_load = 0, busiest_capacity = 1;
8895 unsigned int busiest_nr = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008896 int i;
8897
Peter Zijlstraae4df9d2017-05-01 11:03:12 +02008898 for_each_cpu_and(i, sched_group_span(group), env->cpus) {
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008899 unsigned long capacity, load, util;
8900 unsigned int nr_running;
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008901 enum fbq_type rt;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008902
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01008903 rq = cpu_rq(i);
8904 rt = fbq_classify_rq(rq);
8905
8906 /*
8907 * We classify groups/runqueues into three groups:
8908 * - regular: there are !numa tasks
8909 * - remote: there are numa tasks that run on the 'wrong' node
8910 * - all: there is no distinction
8911 *
8912 * In order to avoid migrating ideally placed numa tasks,
8913 * ignore those when there's better options.
8914 *
8915 * If we ignore the actual busiest queue to migrate another
8916 * task, the next balance pass can still reduce the busiest
8917 * queue by moving tasks around inside the node.
8918 *
8919 * If we cannot move enough load due to this classification
8920 * the next pass will adjust the group classification and
8921 * allow migration of more tasks.
8922 *
8923 * Both cases only affect the total convergence complexity.
8924 */
8925 if (rt > env->fbq_type)
8926 continue;
8927
Nicolas Pitreced549f2014-05-26 18:19:38 -04008928 capacity = capacity_of(i);
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008929 nr_running = rq->cfs.h_nr_running;
Srivatsa Vaddagiri9d5efe02010-06-08 14:57:02 +10008930
Chris Redpath4ad38312018-07-04 11:17:48 +01008931 /*
8932 * For ASYM_CPUCAPACITY domains, don't pick a CPU that could
8933 * eventually lead to active_balancing high->low capacity.
8934 * Higher per-CPU capacity is considered better than balancing
8935 * average load.
8936 */
8937 if (env->sd->flags & SD_ASYM_CPUCAPACITY &&
8938 capacity_of(env->dst_cpu) < capacity &&
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008939 nr_running == 1)
Chris Redpath4ad38312018-07-04 11:17:48 +01008940 continue;
8941
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008942 switch (env->migration_type) {
8943 case migrate_load:
8944 /*
Vincent Guittotb0fb1eb2019-10-18 15:26:33 +02008945 * When comparing with load imbalance, use cpu_load()
8946 * which is not scaled with the CPU capacity.
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008947 */
Vincent Guittotb0fb1eb2019-10-18 15:26:33 +02008948 load = cpu_load(rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008949
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008950 if (nr_running == 1 && load > env->imbalance &&
8951 !check_cpu_capacity(rq, env->sd))
8952 break;
Vincent Guittotea678212015-02-27 16:54:11 +01008953
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008954 /*
8955 * For the load comparisons with the other CPUs,
Vincent Guittotb0fb1eb2019-10-18 15:26:33 +02008956 * consider the cpu_load() scaled with the CPU
8957 * capacity, so that the load can be moved away
8958 * from the CPU that is potentially running at a
8959 * lower capacity.
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008960 *
8961 * Thus we're looking for max(load_i / capacity_i),
8962 * crosswise multiplication to rid ourselves of the
8963 * division works out to:
8964 * load_i * capacity_j > load_j * capacity_i;
8965 * where j is our previous maximum.
8966 */
8967 if (load * busiest_capacity > busiest_load * capacity) {
8968 busiest_load = load;
8969 busiest_capacity = capacity;
8970 busiest = rq;
8971 }
8972 break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01008973
Vincent Guittot0b0695f2019-10-18 15:26:31 +02008974 case migrate_util:
8975 util = cpu_util(cpu_of(rq));
8976
8977 if (busiest_util < util) {
8978 busiest_util = util;
8979 busiest = rq;
8980 }
8981 break;
8982
8983 case migrate_task:
8984 if (busiest_nr < nr_running) {
8985 busiest_nr = nr_running;
8986 busiest = rq;
8987 }
8988 break;
8989
8990 case migrate_misfit:
8991 /*
8992 * For ASYM_CPUCAPACITY domains with misfit tasks we
8993 * simply seek the "biggest" misfit task.
8994 */
8995 if (rq->misfit_task_load > busiest_load) {
8996 busiest_load = rq->misfit_task_load;
8997 busiest = rq;
8998 }
8999
9000 break;
9001
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009002 }
9003 }
9004
9005 return busiest;
9006}
9007
9008/*
9009 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
9010 * so long as it is large enough.
9011 */
9012#define MAX_PINNED_INTERVAL 512
9013
Vincent Guittot46a745d2018-12-14 17:01:57 +01009014static inline bool
9015asym_active_balance(struct lb_env *env)
9016{
9017 /*
9018 * ASYM_PACKING needs to force migrate tasks from busy but
9019 * lower priority CPUs in order to pack all tasks in the
9020 * highest priority CPUs.
9021 */
9022 return env->idle != CPU_NOT_IDLE && (env->sd->flags & SD_ASYM_PACKING) &&
9023 sched_asym_prefer(env->dst_cpu, env->src_cpu);
9024}
9025
9026static inline bool
9027voluntary_active_balance(struct lb_env *env)
Peter Zijlstra1af3ed32009-12-23 15:10:31 +01009028{
Peter Zijlstrabd939f42012-05-02 14:20:37 +02009029 struct sched_domain *sd = env->sd;
9030
Vincent Guittot46a745d2018-12-14 17:01:57 +01009031 if (asym_active_balance(env))
9032 return 1;
Peter Zijlstra1af3ed32009-12-23 15:10:31 +01009033
Vincent Guittot1aaf90a2015-02-27 16:54:14 +01009034 /*
9035 * The dst_cpu is idle and the src_cpu CPU has only 1 CFS task.
9036 * It's worth migrating the task if the src_cpu's capacity is reduced
9037 * because of other sched_class or IRQs if more capacity stays
9038 * available on dst_cpu.
9039 */
9040 if ((env->idle != CPU_NOT_IDLE) &&
9041 (env->src_rq->cfs.h_nr_running == 1)) {
9042 if ((check_cpu_capacity(env->src_rq, sd)) &&
9043 (capacity_of(env->src_cpu)*sd->imbalance_pct < capacity_of(env->dst_cpu)*100))
9044 return 1;
9045 }
9046
Vincent Guittot0b0695f2019-10-18 15:26:31 +02009047 if (env->migration_type == migrate_misfit)
Morten Rasmussencad68e52018-07-04 11:17:42 +01009048 return 1;
9049
Vincent Guittot46a745d2018-12-14 17:01:57 +01009050 return 0;
9051}
9052
9053static int need_active_balance(struct lb_env *env)
9054{
9055 struct sched_domain *sd = env->sd;
9056
9057 if (voluntary_active_balance(env))
9058 return 1;
9059
Peter Zijlstra1af3ed32009-12-23 15:10:31 +01009060 return unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2);
9061}
9062
Tejun Heo969c7922010-05-06 18:49:21 +02009063static int active_load_balance_cpu_stop(void *data);
9064
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009065static int should_we_balance(struct lb_env *env)
9066{
9067 struct sched_group *sg = env->sd->groups;
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009068 int cpu, balance_cpu = -1;
9069
9070 /*
Peter Zijlstra024c9d22017-10-09 10:36:53 +02009071 * Ensure the balancing environment is consistent; can happen
9072 * when the softirq triggers 'during' hotplug.
9073 */
9074 if (!cpumask_test_cpu(env->dst_cpu, env->cpus))
9075 return 0;
9076
9077 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009078 * In the newly idle case, we will allow all the CPUs
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009079 * to do the newly idle load balance.
9080 */
9081 if (env->idle == CPU_NEWLY_IDLE)
9082 return 1;
9083
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009084 /* Try to find first idle CPU */
Peter Zijlstrae5c14b12017-05-01 10:47:02 +02009085 for_each_cpu_and(cpu, group_balance_mask(sg), env->cpus) {
Peter Zijlstraaf218122017-05-01 08:51:05 +02009086 if (!idle_cpu(cpu))
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009087 continue;
9088
9089 balance_cpu = cpu;
9090 break;
9091 }
9092
9093 if (balance_cpu == -1)
9094 balance_cpu = group_balance_cpu(sg);
9095
9096 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009097 * First idle CPU or the first CPU(busiest) in this sched group
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009098 * is eligible for doing load balancing at this and above domains.
9099 */
Joonsoo Kimb0cff9d2013-09-10 15:54:49 +09009100 return balance_cpu == env->dst_cpu;
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009101}
9102
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009103/*
9104 * Check this_cpu to ensure it is balanced within domain. Attempt to move
9105 * tasks if there is an imbalance.
9106 */
9107static int load_balance(int this_cpu, struct rq *this_rq,
9108 struct sched_domain *sd, enum cpu_idle_type idle,
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009109 int *continue_balancing)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009110{
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309111 int ld_moved, cur_ld_moved, active_balance = 0;
Peter Zijlstra62633222013-08-19 12:41:09 +02009112 struct sched_domain *sd_parent = sd->parent;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009113 struct sched_group *group;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009114 struct rq *busiest;
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009115 struct rq_flags rf;
Christoph Lameter4ba29682014-08-26 19:12:21 -05009116 struct cpumask *cpus = this_cpu_cpumask_var_ptr(load_balance_mask);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009117
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009118 struct lb_env env = {
9119 .sd = sd,
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01009120 .dst_cpu = this_cpu,
9121 .dst_rq = this_rq,
Peter Zijlstraae4df9d2017-05-01 11:03:12 +02009122 .dst_grpmask = sched_group_span(sd->groups),
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009123 .idle = idle,
Peter Zijlstraeb953082012-04-17 13:38:40 +02009124 .loop_break = sched_nr_migrate_break,
Michael Wangb94031302012-07-12 16:10:13 +08009125 .cpus = cpus,
Peter Zijlstra0ec8aa02013-10-07 11:29:33 +01009126 .fbq_type = all,
Kirill Tkhai163122b2014-08-20 13:48:29 +04009127 .tasks = LIST_HEAD_INIT(env.tasks),
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009128 };
9129
Jeffrey Hugo65a44332017-06-07 13:18:57 -06009130 cpumask_and(cpus, sched_domain_span(sd), cpu_active_mask);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009131
Josh Poimboeufae928822016-06-17 12:43:24 -05009132 schedstat_inc(sd->lb_count[idle]);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009133
9134redo:
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009135 if (!should_we_balance(&env)) {
9136 *continue_balancing = 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009137 goto out_balanced;
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009138 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009139
Joonsoo Kim23f0d202013-08-06 17:36:42 +09009140 group = find_busiest_group(&env);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009141 if (!group) {
Josh Poimboeufae928822016-06-17 12:43:24 -05009142 schedstat_inc(sd->lb_nobusyg[idle]);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009143 goto out_balanced;
9144 }
9145
Michael Wangb94031302012-07-12 16:10:13 +08009146 busiest = find_busiest_queue(&env, group);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009147 if (!busiest) {
Josh Poimboeufae928822016-06-17 12:43:24 -05009148 schedstat_inc(sd->lb_nobusyq[idle]);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009149 goto out_balanced;
9150 }
9151
Michael Wang78feefc2012-08-06 16:41:59 +08009152 BUG_ON(busiest == env.dst_rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009153
Josh Poimboeufae928822016-06-17 12:43:24 -05009154 schedstat_add(sd->lb_imbalance[idle], env.imbalance);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009155
Vincent Guittot1aaf90a2015-02-27 16:54:14 +01009156 env.src_cpu = busiest->cpu;
9157 env.src_rq = busiest;
9158
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009159 ld_moved = 0;
9160 if (busiest->nr_running > 1) {
9161 /*
9162 * Attempt to move tasks. If find_busiest_group has found
9163 * an imbalance but busiest->nr_running <= 1, the group is
9164 * still unbalanced. ld_moved simply stays zero, so it is
9165 * correctly treated as an imbalance.
9166 */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009167 env.flags |= LBF_ALL_PINNED;
Peter Zijlstrac82513e2012-04-26 13:12:27 +02009168 env.loop_max = min(sysctl_sched_nr_migrate, busiest->nr_running);
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009169
Peter Zijlstra5d6523e2012-03-10 00:07:36 +01009170more_balance:
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009171 rq_lock_irqsave(busiest, &rf);
Peter Zijlstra3bed5e22016-10-03 16:35:32 +02009172 update_rq_clock(busiest);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309173
9174 /*
9175 * cur_ld_moved - load moved in current iteration
9176 * ld_moved - cumulative load moved across iterations
9177 */
Kirill Tkhai163122b2014-08-20 13:48:29 +04009178 cur_ld_moved = detach_tasks(&env);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009179
9180 /*
Kirill Tkhai163122b2014-08-20 13:48:29 +04009181 * We've detached some tasks from busiest_rq. Every
9182 * task is masked "TASK_ON_RQ_MIGRATING", so we can safely
9183 * unlock busiest->lock, and we are able to be sure
9184 * that nobody can manipulate the tasks in parallel.
9185 * See task_rq_lock() family for the details.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009186 */
Kirill Tkhai163122b2014-08-20 13:48:29 +04009187
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009188 rq_unlock(busiest, &rf);
Kirill Tkhai163122b2014-08-20 13:48:29 +04009189
9190 if (cur_ld_moved) {
9191 attach_tasks(&env);
9192 ld_moved += cur_ld_moved;
9193 }
9194
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009195 local_irq_restore(rf.flags);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309196
Joonsoo Kimf1cd0852013-04-23 17:27:37 +09009197 if (env.flags & LBF_NEED_BREAK) {
9198 env.flags &= ~LBF_NEED_BREAK;
9199 goto more_balance;
9200 }
9201
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309202 /*
9203 * Revisit (affine) tasks on src_cpu that couldn't be moved to
9204 * us and move them to an alternate dst_cpu in our sched_group
9205 * where they can run. The upper limit on how many times we
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009206 * iterate on same src_cpu is dependent on number of CPUs in our
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309207 * sched_group.
9208 *
9209 * This changes load balance semantics a bit on who can move
9210 * load to a given_cpu. In addition to the given_cpu itself
9211 * (or a ilb_cpu acting on its behalf where given_cpu is
9212 * nohz-idle), we now have balance_cpu in a position to move
9213 * load to given_cpu. In rare situations, this may cause
9214 * conflicts (balance_cpu and given_cpu/ilb_cpu deciding
9215 * _independently_ and at _same_ time to move some load to
9216 * given_cpu) causing exceess load to be moved to given_cpu.
9217 * This however should not happen so much in practice and
9218 * moreover subsequent load balance cycles should correct the
9219 * excess load moved.
9220 */
Peter Zijlstra62633222013-08-19 12:41:09 +02009221 if ((env.flags & LBF_DST_PINNED) && env.imbalance > 0) {
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309222
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009223 /* Prevent to re-select dst_cpu via env's CPUs */
Viresh Kumarc89d92e2019-02-12 14:57:01 +05309224 __cpumask_clear_cpu(env.dst_cpu, env.cpus);
Vladimir Davydov7aff2e32013-09-15 21:30:13 +04009225
Michael Wang78feefc2012-08-06 16:41:59 +08009226 env.dst_rq = cpu_rq(env.new_dst_cpu);
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309227 env.dst_cpu = env.new_dst_cpu;
Peter Zijlstra62633222013-08-19 12:41:09 +02009228 env.flags &= ~LBF_DST_PINNED;
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309229 env.loop = 0;
9230 env.loop_break = sched_nr_migrate_break;
Joonsoo Kime02e60c2013-04-23 17:27:42 +09009231
Srivatsa Vaddagiri88b8dac2012-06-19 17:43:15 +05309232 /*
9233 * Go back to "more_balance" rather than "redo" since we
9234 * need to continue with same src_cpu.
9235 */
9236 goto more_balance;
9237 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009238
Peter Zijlstra62633222013-08-19 12:41:09 +02009239 /*
9240 * We failed to reach balance because of affinity.
9241 */
9242 if (sd_parent) {
Nicolas Pitre63b2ca32014-05-26 18:19:37 -04009243 int *group_imbalance = &sd_parent->groups->sgc->imbalance;
Peter Zijlstra62633222013-08-19 12:41:09 +02009244
Vincent Guittotafdeee02014-08-26 13:06:44 +02009245 if ((env.flags & LBF_SOME_PINNED) && env.imbalance > 0)
Peter Zijlstra62633222013-08-19 12:41:09 +02009246 *group_imbalance = 1;
Peter Zijlstra62633222013-08-19 12:41:09 +02009247 }
9248
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009249 /* All tasks on this runqueue were pinned by CPU affinity */
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009250 if (unlikely(env.flags & LBF_ALL_PINNED)) {
Viresh Kumarc89d92e2019-02-12 14:57:01 +05309251 __cpumask_clear_cpu(cpu_of(busiest), cpus);
Jeffrey Hugo65a44332017-06-07 13:18:57 -06009252 /*
9253 * Attempting to continue load balancing at the current
9254 * sched_domain level only makes sense if there are
9255 * active CPUs remaining as possible busiest CPUs to
9256 * pull load from which are not contained within the
9257 * destination group that is receiving any migrated
9258 * load.
9259 */
9260 if (!cpumask_subset(cpus, env.dst_grpmask)) {
Prashanth Nageshappabbf18b12012-06-19 17:52:07 +05309261 env.loop = 0;
9262 env.loop_break = sched_nr_migrate_break;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009263 goto redo;
Prashanth Nageshappabbf18b12012-06-19 17:52:07 +05309264 }
Vincent Guittotafdeee02014-08-26 13:06:44 +02009265 goto out_all_pinned;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009266 }
9267 }
9268
9269 if (!ld_moved) {
Josh Poimboeufae928822016-06-17 12:43:24 -05009270 schedstat_inc(sd->lb_failed[idle]);
Venkatesh Pallipadi58b26c42010-09-10 18:19:17 -07009271 /*
9272 * Increment the failure counter only on periodic balance.
9273 * We do not want newidle balance, which can be very
9274 * frequent, pollute the failure counter causing
9275 * excessive cache_hot migrations and active balances.
9276 */
9277 if (idle != CPU_NEWLY_IDLE)
9278 sd->nr_balance_failed++;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009279
Peter Zijlstrabd939f42012-05-02 14:20:37 +02009280 if (need_active_balance(&env)) {
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009281 unsigned long flags;
9282
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009283 raw_spin_lock_irqsave(&busiest->lock, flags);
9284
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009285 /*
9286 * Don't kick the active_load_balance_cpu_stop,
9287 * if the curr task on busiest CPU can't be
9288 * moved to this_cpu:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009289 */
Sebastian Andrzej Siewior3bd37062019-04-23 16:26:36 +02009290 if (!cpumask_test_cpu(this_cpu, busiest->curr->cpus_ptr)) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009291 raw_spin_unlock_irqrestore(&busiest->lock,
9292 flags);
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009293 env.flags |= LBF_ALL_PINNED;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009294 goto out_one_pinned;
9295 }
9296
Tejun Heo969c7922010-05-06 18:49:21 +02009297 /*
9298 * ->active_balance synchronizes accesses to
9299 * ->active_balance_work. Once set, it's cleared
9300 * only after active load balance is finished.
9301 */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009302 if (!busiest->active_balance) {
9303 busiest->active_balance = 1;
9304 busiest->push_cpu = this_cpu;
9305 active_balance = 1;
9306 }
9307 raw_spin_unlock_irqrestore(&busiest->lock, flags);
Tejun Heo969c7922010-05-06 18:49:21 +02009308
Peter Zijlstrabd939f42012-05-02 14:20:37 +02009309 if (active_balance) {
Tejun Heo969c7922010-05-06 18:49:21 +02009310 stop_one_cpu_nowait(cpu_of(busiest),
9311 active_load_balance_cpu_stop, busiest,
9312 &busiest->active_balance_work);
Peter Zijlstrabd939f42012-05-02 14:20:37 +02009313 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009314
Srikar Dronamrajud02c071182016-03-23 17:54:44 +05309315 /* We've kicked active balancing, force task migration. */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009316 sd->nr_balance_failed = sd->cache_nice_tries+1;
9317 }
9318 } else
9319 sd->nr_balance_failed = 0;
9320
Vincent Guittot46a745d2018-12-14 17:01:57 +01009321 if (likely(!active_balance) || voluntary_active_balance(&env)) {
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009322 /* We were unbalanced, so reset the balancing interval */
9323 sd->balance_interval = sd->min_interval;
9324 } else {
9325 /*
9326 * If we've begun active balancing, start to back off. This
9327 * case may not be covered by the all_pinned logic if there
9328 * is only 1 task on the busy runqueue (because we don't call
Kirill Tkhai163122b2014-08-20 13:48:29 +04009329 * detach_tasks).
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009330 */
9331 if (sd->balance_interval < sd->max_interval)
9332 sd->balance_interval *= 2;
9333 }
9334
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009335 goto out;
9336
9337out_balanced:
Vincent Guittotafdeee02014-08-26 13:06:44 +02009338 /*
9339 * We reach balance although we may have faced some affinity
Vincent Guittotf6cad8d2019-07-01 17:47:02 +02009340 * constraints. Clear the imbalance flag only if other tasks got
9341 * a chance to move and fix the imbalance.
Vincent Guittotafdeee02014-08-26 13:06:44 +02009342 */
Vincent Guittotf6cad8d2019-07-01 17:47:02 +02009343 if (sd_parent && !(env.flags & LBF_ALL_PINNED)) {
Vincent Guittotafdeee02014-08-26 13:06:44 +02009344 int *group_imbalance = &sd_parent->groups->sgc->imbalance;
9345
9346 if (*group_imbalance)
9347 *group_imbalance = 0;
9348 }
9349
9350out_all_pinned:
9351 /*
9352 * We reach balance because all tasks are pinned at this level so
9353 * we can't migrate them. Let the imbalance flag set so parent level
9354 * can try to migrate them.
9355 */
Josh Poimboeufae928822016-06-17 12:43:24 -05009356 schedstat_inc(sd->lb_balanced[idle]);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009357
9358 sd->nr_balance_failed = 0;
9359
9360out_one_pinned:
Venkatesh Pallipadi46e49b32011-02-14 14:38:50 -08009361 ld_moved = 0;
Valentin Schneider3f130a32018-09-26 16:12:07 +01009362
9363 /*
Peter Zijlstra5ba553e2019-05-29 20:36:42 +00009364 * newidle_balance() disregards balance intervals, so we could
9365 * repeatedly reach this code, which would lead to balance_interval
9366 * skyrocketting in a short amount of time. Skip the balance_interval
9367 * increase logic to avoid that.
Valentin Schneider3f130a32018-09-26 16:12:07 +01009368 */
9369 if (env.idle == CPU_NEWLY_IDLE)
9370 goto out;
9371
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009372 /* tune up the balancing interval */
Valentin Schneider47b7aee2018-09-26 16:12:06 +01009373 if ((env.flags & LBF_ALL_PINNED &&
9374 sd->balance_interval < MAX_PINNED_INTERVAL) ||
9375 sd->balance_interval < sd->max_interval)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009376 sd->balance_interval *= 2;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009377out:
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009378 return ld_moved;
9379}
9380
Jason Low52a08ef2014-05-08 17:49:22 -07009381static inline unsigned long
9382get_sd_balance_interval(struct sched_domain *sd, int cpu_busy)
9383{
9384 unsigned long interval = sd->balance_interval;
9385
9386 if (cpu_busy)
9387 interval *= sd->busy_factor;
9388
9389 /* scale ms to jiffies */
9390 interval = msecs_to_jiffies(interval);
9391 interval = clamp(interval, 1UL, max_load_balance_interval);
9392
9393 return interval;
9394}
9395
9396static inline void
Leo Yan31851a92016-08-05 14:31:29 +08009397update_next_balance(struct sched_domain *sd, unsigned long *next_balance)
Jason Low52a08ef2014-05-08 17:49:22 -07009398{
9399 unsigned long interval, next;
9400
Leo Yan31851a92016-08-05 14:31:29 +08009401 /* used by idle balance, so cpu_busy = 0 */
9402 interval = get_sd_balance_interval(sd, 0);
Jason Low52a08ef2014-05-08 17:49:22 -07009403 next = sd->last_balance + interval;
9404
9405 if (time_after(*next_balance, next))
9406 *next_balance = next;
9407}
9408
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009409/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009410 * active_load_balance_cpu_stop is run by the CPU stopper. It pushes
Tejun Heo969c7922010-05-06 18:49:21 +02009411 * running tasks off the busiest CPU onto idle CPUs. It requires at
9412 * least 1 task to be running on each physical CPU where possible, and
9413 * avoids physical / logical imbalances.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009414 */
Tejun Heo969c7922010-05-06 18:49:21 +02009415static int active_load_balance_cpu_stop(void *data)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009416{
Tejun Heo969c7922010-05-06 18:49:21 +02009417 struct rq *busiest_rq = data;
9418 int busiest_cpu = cpu_of(busiest_rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009419 int target_cpu = busiest_rq->push_cpu;
Tejun Heo969c7922010-05-06 18:49:21 +02009420 struct rq *target_rq = cpu_rq(target_cpu);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009421 struct sched_domain *sd;
Kirill Tkhaie5673f22014-08-20 13:48:01 +04009422 struct task_struct *p = NULL;
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009423 struct rq_flags rf;
Tejun Heo969c7922010-05-06 18:49:21 +02009424
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009425 rq_lock_irq(busiest_rq, &rf);
Peter Zijlstraedd8e412017-09-07 17:03:51 +02009426 /*
9427 * Between queueing the stop-work and running it is a hole in which
9428 * CPUs can become inactive. We should not move tasks from or to
9429 * inactive CPUs.
9430 */
9431 if (!cpu_active(busiest_cpu) || !cpu_active(target_cpu))
9432 goto out_unlock;
Tejun Heo969c7922010-05-06 18:49:21 +02009433
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009434 /* Make sure the requested CPU hasn't gone down in the meantime: */
Tejun Heo969c7922010-05-06 18:49:21 +02009435 if (unlikely(busiest_cpu != smp_processor_id() ||
9436 !busiest_rq->active_balance))
9437 goto out_unlock;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009438
9439 /* Is there any task to move? */
9440 if (busiest_rq->nr_running <= 1)
Tejun Heo969c7922010-05-06 18:49:21 +02009441 goto out_unlock;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009442
9443 /*
9444 * This condition is "impossible", if it occurs
9445 * we need to fix it. Originally reported by
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009446 * Bjorn Helgaas on a 128-CPU setup.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009447 */
9448 BUG_ON(busiest_rq == target_rq);
9449
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009450 /* Search for an sd spanning us and the target CPU. */
Peter Zijlstradce840a2011-04-07 14:09:50 +02009451 rcu_read_lock();
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009452 for_each_domain(target_cpu, sd) {
9453 if ((sd->flags & SD_LOAD_BALANCE) &&
9454 cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
9455 break;
9456 }
9457
9458 if (likely(sd)) {
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009459 struct lb_env env = {
9460 .sd = sd,
Peter Zijlstraddcdf6e2012-02-22 19:27:40 +01009461 .dst_cpu = target_cpu,
9462 .dst_rq = target_rq,
9463 .src_cpu = busiest_rq->cpu,
9464 .src_rq = busiest_rq,
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009465 .idle = CPU_IDLE,
Jeffrey Hugo65a44332017-06-07 13:18:57 -06009466 /*
9467 * can_migrate_task() doesn't need to compute new_dst_cpu
9468 * for active balancing. Since we have CPU_IDLE, but no
9469 * @dst_grpmask we need to make that test go away with lying
9470 * about DST_PINNED.
9471 */
9472 .flags = LBF_DST_PINNED,
Peter Zijlstra8e45cb52012-02-22 12:47:19 +01009473 };
9474
Josh Poimboeufae928822016-06-17 12:43:24 -05009475 schedstat_inc(sd->alb_count);
Peter Zijlstra3bed5e22016-10-03 16:35:32 +02009476 update_rq_clock(busiest_rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009477
Kirill Tkhaie5673f22014-08-20 13:48:01 +04009478 p = detach_one_task(&env);
Srikar Dronamrajud02c071182016-03-23 17:54:44 +05309479 if (p) {
Josh Poimboeufae928822016-06-17 12:43:24 -05009480 schedstat_inc(sd->alb_pushed);
Srikar Dronamrajud02c071182016-03-23 17:54:44 +05309481 /* Active balancing done, reset the failure counter. */
9482 sd->nr_balance_failed = 0;
9483 } else {
Josh Poimboeufae928822016-06-17 12:43:24 -05009484 schedstat_inc(sd->alb_failed);
Srikar Dronamrajud02c071182016-03-23 17:54:44 +05309485 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009486 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02009487 rcu_read_unlock();
Tejun Heo969c7922010-05-06 18:49:21 +02009488out_unlock:
9489 busiest_rq->active_balance = 0;
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009490 rq_unlock(busiest_rq, &rf);
Kirill Tkhaie5673f22014-08-20 13:48:01 +04009491
9492 if (p)
9493 attach_one_task(target_rq, p);
9494
9495 local_irq_enable();
9496
Tejun Heo969c7922010-05-06 18:49:21 +02009497 return 0;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009498}
9499
Peter Zijlstraaf3fe032018-02-20 10:58:39 +01009500static DEFINE_SPINLOCK(balancing);
9501
9502/*
9503 * Scale the max load_balance interval with the number of CPUs in the system.
9504 * This trades load-balance latency on larger machines for less cross talk.
9505 */
9506void update_max_interval(void)
9507{
9508 max_load_balance_interval = HZ*num_online_cpus()/10;
9509}
9510
9511/*
9512 * It checks each scheduling domain to see if it is due to be balanced,
9513 * and initiates a balancing operation if so.
9514 *
9515 * Balancing parameters are set up in init_sched_domains.
9516 */
9517static void rebalance_domains(struct rq *rq, enum cpu_idle_type idle)
9518{
9519 int continue_balancing = 1;
9520 int cpu = rq->cpu;
9521 unsigned long interval;
9522 struct sched_domain *sd;
9523 /* Earliest time when we have to do rebalance again */
9524 unsigned long next_balance = jiffies + 60*HZ;
9525 int update_next_balance = 0;
9526 int need_serialize, need_decay = 0;
9527 u64 max_cost = 0;
9528
9529 rcu_read_lock();
9530 for_each_domain(cpu, sd) {
9531 /*
9532 * Decay the newidle max times here because this is a regular
9533 * visit to all the domains. Decay ~1% per second.
9534 */
9535 if (time_after(jiffies, sd->next_decay_max_lb_cost)) {
9536 sd->max_newidle_lb_cost =
9537 (sd->max_newidle_lb_cost * 253) / 256;
9538 sd->next_decay_max_lb_cost = jiffies + HZ;
9539 need_decay = 1;
9540 }
9541 max_cost += sd->max_newidle_lb_cost;
9542
9543 if (!(sd->flags & SD_LOAD_BALANCE))
9544 continue;
9545
9546 /*
9547 * Stop the load balance at this level. There is another
9548 * CPU in our sched group which is doing load balancing more
9549 * actively.
9550 */
9551 if (!continue_balancing) {
9552 if (need_decay)
9553 continue;
9554 break;
9555 }
9556
9557 interval = get_sd_balance_interval(sd, idle != CPU_IDLE);
9558
9559 need_serialize = sd->flags & SD_SERIALIZE;
9560 if (need_serialize) {
9561 if (!spin_trylock(&balancing))
9562 goto out;
9563 }
9564
9565 if (time_after_eq(jiffies, sd->last_balance + interval)) {
9566 if (load_balance(cpu, rq, sd, idle, &continue_balancing)) {
9567 /*
9568 * The LBF_DST_PINNED logic could have changed
9569 * env->dst_cpu, so we can't know our idle
9570 * state even if we migrated tasks. Update it.
9571 */
9572 idle = idle_cpu(cpu) ? CPU_IDLE : CPU_NOT_IDLE;
9573 }
9574 sd->last_balance = jiffies;
9575 interval = get_sd_balance_interval(sd, idle != CPU_IDLE);
9576 }
9577 if (need_serialize)
9578 spin_unlock(&balancing);
9579out:
9580 if (time_after(next_balance, sd->last_balance + interval)) {
9581 next_balance = sd->last_balance + interval;
9582 update_next_balance = 1;
9583 }
9584 }
9585 if (need_decay) {
9586 /*
9587 * Ensure the rq-wide value also decays but keep it at a
9588 * reasonable floor to avoid funnies with rq->avg_idle.
9589 */
9590 rq->max_idle_balance_cost =
9591 max((u64)sysctl_sched_migration_cost, max_cost);
9592 }
9593 rcu_read_unlock();
9594
9595 /*
9596 * next_balance will be updated only when there is a need.
9597 * When the cpu is attached to null domain for ex, it will not be
9598 * updated.
9599 */
9600 if (likely(update_next_balance)) {
9601 rq->next_balance = next_balance;
9602
9603#ifdef CONFIG_NO_HZ_COMMON
9604 /*
9605 * If this CPU has been elected to perform the nohz idle
9606 * balance. Other idle CPUs have already rebalanced with
9607 * nohz_idle_balance() and nohz.next_balance has been
9608 * updated accordingly. This CPU is now running the idle load
9609 * balance for itself and we need to update the
9610 * nohz.next_balance accordingly.
9611 */
9612 if ((idle == CPU_IDLE) && time_after(nohz.next_balance, rq->next_balance))
9613 nohz.next_balance = rq->next_balance;
9614#endif
9615 }
9616}
9617
Mike Galbraithd987fc72011-12-05 10:01:47 +01009618static inline int on_null_domain(struct rq *rq)
9619{
9620 return unlikely(!rcu_dereference_sched(rq->sd));
9621}
9622
Frederic Weisbecker3451d022011-08-10 23:21:01 +02009623#ifdef CONFIG_NO_HZ_COMMON
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009624/*
9625 * idle load balancing details
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009626 * - When one of the busy CPUs notice that there may be an idle rebalancing
9627 * needed, they will kick the idle load balancer, which then does idle
9628 * load balancing for all the idle CPUs.
Nicholas Piggin9b019ac2019-04-12 14:26:13 +10009629 * - HK_FLAG_MISC CPUs are used for this task, because HK_FLAG_SCHED not set
9630 * anywhere yet.
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009631 */
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009632
Daniel Lezcano3dd03372014-01-06 12:34:41 +01009633static inline int find_new_ilb(void)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009634{
Nicholas Piggin9b019ac2019-04-12 14:26:13 +10009635 int ilb;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009636
Nicholas Piggin9b019ac2019-04-12 14:26:13 +10009637 for_each_cpu_and(ilb, nohz.idle_cpus_mask,
9638 housekeeping_cpumask(HK_FLAG_MISC)) {
9639 if (idle_cpu(ilb))
9640 return ilb;
9641 }
Suresh Siddha786d6dc2011-12-01 17:07:35 -08009642
9643 return nr_cpu_ids;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009644}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009645
9646/*
Nicholas Piggin9b019ac2019-04-12 14:26:13 +10009647 * Kick a CPU to do the nohz balancing, if it is time for it. We pick any
9648 * idle CPU in the HK_FLAG_MISC housekeeping set (if there is one).
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009649 */
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009650static void kick_ilb(unsigned int flags)
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009651{
9652 int ilb_cpu;
9653
9654 nohz.next_balance++;
9655
Daniel Lezcano3dd03372014-01-06 12:34:41 +01009656 ilb_cpu = find_new_ilb();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009657
Suresh Siddha0b005cf2011-12-01 17:07:34 -08009658 if (ilb_cpu >= nr_cpu_ids)
9659 return;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009660
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009661 flags = atomic_fetch_or(flags, nohz_flags(ilb_cpu));
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009662 if (flags & NOHZ_KICK_MASK)
Suresh Siddha1c792db2011-12-01 17:07:32 -08009663 return;
Peter Zijlstra45504872017-12-21 10:47:48 +01009664
Suresh Siddha1c792db2011-12-01 17:07:32 -08009665 /*
9666 * Use smp_send_reschedule() instead of resched_cpu().
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009667 * This way we generate a sched IPI on the target CPU which
Suresh Siddha1c792db2011-12-01 17:07:32 -08009668 * is idle. And the softirq performing nohz idle load balance
9669 * will be run before returning from the IPI.
9670 */
9671 smp_send_reschedule(ilb_cpu);
Peter Zijlstra45504872017-12-21 10:47:48 +01009672}
9673
9674/*
Valentin Schneider9f132742019-01-17 15:34:09 +00009675 * Current decision point for kicking the idle load balancer in the presence
9676 * of idle CPUs in the system.
Peter Zijlstra45504872017-12-21 10:47:48 +01009677 */
9678static void nohz_balancer_kick(struct rq *rq)
9679{
9680 unsigned long now = jiffies;
9681 struct sched_domain_shared *sds;
9682 struct sched_domain *sd;
9683 int nr_busy, i, cpu = rq->cpu;
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009684 unsigned int flags = 0;
Peter Zijlstra45504872017-12-21 10:47:48 +01009685
9686 if (unlikely(rq->idle_balance))
9687 return;
9688
9689 /*
9690 * We may be recently in ticked or tickless idle mode. At the first
9691 * busy tick after returning from idle, we will update the busy stats.
9692 */
Peter Zijlstra00357f52017-12-21 15:06:50 +01009693 nohz_balance_exit_idle(rq);
Peter Zijlstra45504872017-12-21 10:47:48 +01009694
9695 /*
9696 * None are in tickless mode and hence no need for NOHZ idle load
9697 * balancing.
9698 */
9699 if (likely(!atomic_read(&nohz.nr_cpus)))
9700 return;
9701
Vincent Guittotf643ea22018-02-13 11:31:17 +01009702 if (READ_ONCE(nohz.has_blocked) &&
9703 time_after(now, READ_ONCE(nohz.next_blocked)))
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009704 flags = NOHZ_STATS_KICK;
9705
Peter Zijlstra45504872017-12-21 10:47:48 +01009706 if (time_before(now, nohz.next_balance))
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009707 goto out;
Peter Zijlstra45504872017-12-21 10:47:48 +01009708
Valentin Schneidera0fe2cf2019-02-11 17:59:45 +00009709 if (rq->nr_running >= 2) {
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009710 flags = NOHZ_KICK_MASK;
Peter Zijlstra45504872017-12-21 10:47:48 +01009711 goto out;
9712 }
9713
9714 rcu_read_lock();
Peter Zijlstra45504872017-12-21 10:47:48 +01009715
9716 sd = rcu_dereference(rq->sd);
9717 if (sd) {
Valentin Schneidere25a7a92019-02-11 17:59:44 +00009718 /*
9719 * If there's a CFS task and the current CPU has reduced
9720 * capacity; kick the ILB to see if there's a better CPU to run
9721 * on.
9722 */
9723 if (rq->cfs.h_nr_running >= 1 && check_cpu_capacity(rq, sd)) {
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009724 flags = NOHZ_KICK_MASK;
Peter Zijlstra45504872017-12-21 10:47:48 +01009725 goto unlock;
9726 }
9727 }
9728
Quentin Perret011b27b2018-12-03 09:56:19 +00009729 sd = rcu_dereference(per_cpu(sd_asym_packing, cpu));
Peter Zijlstra45504872017-12-21 10:47:48 +01009730 if (sd) {
Valentin Schneidere25a7a92019-02-11 17:59:44 +00009731 /*
9732 * When ASYM_PACKING; see if there's a more preferred CPU
9733 * currently idle; in which case, kick the ILB to move tasks
9734 * around.
9735 */
Valentin Schneider7edab782019-01-17 15:34:07 +00009736 for_each_cpu_and(i, sched_domain_span(sd), nohz.idle_cpus_mask) {
Peter Zijlstra45504872017-12-21 10:47:48 +01009737 if (sched_asym_prefer(i, cpu)) {
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009738 flags = NOHZ_KICK_MASK;
Peter Zijlstra45504872017-12-21 10:47:48 +01009739 goto unlock;
9740 }
9741 }
9742 }
Valentin Schneiderb9a7b882019-02-11 17:59:46 +00009743
9744 sd = rcu_dereference(per_cpu(sd_asym_cpucapacity, cpu));
9745 if (sd) {
9746 /*
9747 * When ASYM_CPUCAPACITY; see if there's a higher capacity CPU
9748 * to run the misfit task on.
9749 */
9750 if (check_misfit_status(rq, sd)) {
9751 flags = NOHZ_KICK_MASK;
9752 goto unlock;
9753 }
9754
9755 /*
9756 * For asymmetric systems, we do not want to nicely balance
9757 * cache use, instead we want to embrace asymmetry and only
9758 * ensure tasks have enough CPU capacity.
9759 *
9760 * Skip the LLC logic because it's not relevant in that case.
9761 */
9762 goto unlock;
9763 }
9764
Peter Zijlstra45504872017-12-21 10:47:48 +01009765 sds = rcu_dereference(per_cpu(sd_llc_shared, cpu));
9766 if (sds) {
9767 /*
9768 * If there is an imbalance between LLC domains (IOW we could
9769 * increase the overall cache use), we need some less-loaded LLC
9770 * domain to pull some load. Likewise, we may need to spread
9771 * load within the current LLC domain (e.g. packed SMT cores but
9772 * other CPUs are idle). We can't really know from here how busy
9773 * the others are - so just get a nohz balance going if it looks
9774 * like this LLC domain has tasks we could move.
9775 */
9776 nr_busy = atomic_read(&sds->nr_busy_cpus);
9777 if (nr_busy > 1) {
9778 flags = NOHZ_KICK_MASK;
9779 goto unlock;
9780 }
Peter Zijlstra45504872017-12-21 10:47:48 +01009781 }
9782unlock:
9783 rcu_read_unlock();
9784out:
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009785 if (flags)
9786 kick_ilb(flags);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009787}
9788
Peter Zijlstra00357f52017-12-21 15:06:50 +01009789static void set_cpu_sd_state_busy(int cpu)
Suresh Siddha69e1e812011-12-01 17:07:33 -08009790{
9791 struct sched_domain *sd;
Peter Zijlstra00357f52017-12-21 15:06:50 +01009792
9793 rcu_read_lock();
9794 sd = rcu_dereference(per_cpu(sd_llc, cpu));
9795
9796 if (!sd || !sd->nohz_idle)
9797 goto unlock;
9798 sd->nohz_idle = 0;
9799
9800 atomic_inc(&sd->shared->nr_busy_cpus);
9801unlock:
9802 rcu_read_unlock();
9803}
9804
9805void nohz_balance_exit_idle(struct rq *rq)
9806{
9807 SCHED_WARN_ON(rq != this_rq());
9808
9809 if (likely(!rq->nohz_tick_stopped))
9810 return;
9811
9812 rq->nohz_tick_stopped = 0;
9813 cpumask_clear_cpu(rq->cpu, nohz.idle_cpus_mask);
9814 atomic_dec(&nohz.nr_cpus);
9815
9816 set_cpu_sd_state_busy(rq->cpu);
9817}
9818
9819static void set_cpu_sd_state_idle(int cpu)
9820{
9821 struct sched_domain *sd;
Suresh Siddha69e1e812011-12-01 17:07:33 -08009822
Suresh Siddha69e1e812011-12-01 17:07:33 -08009823 rcu_read_lock();
Peter Zijlstra0e369d72016-05-09 10:38:01 +02009824 sd = rcu_dereference(per_cpu(sd_llc, cpu));
Vincent Guittot25f55d92013-04-23 16:59:02 +02009825
9826 if (!sd || sd->nohz_idle)
9827 goto unlock;
9828 sd->nohz_idle = 1;
9829
Peter Zijlstra0e369d72016-05-09 10:38:01 +02009830 atomic_dec(&sd->shared->nr_busy_cpus);
Vincent Guittot25f55d92013-04-23 16:59:02 +02009831unlock:
Suresh Siddha69e1e812011-12-01 17:07:33 -08009832 rcu_read_unlock();
9833}
9834
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009835/*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009836 * This routine will record that the CPU is going idle with tick stopped.
Suresh Siddha0b005cf2011-12-01 17:07:34 -08009837 * This info will be used in performing idle load balancing in the future.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009838 */
Alex Shic1cc0172012-09-10 15:10:58 +08009839void nohz_balance_enter_idle(int cpu)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009840{
Peter Zijlstra00357f52017-12-21 15:06:50 +01009841 struct rq *rq = cpu_rq(cpu);
9842
9843 SCHED_WARN_ON(cpu != smp_processor_id());
9844
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009845 /* If this CPU is going down, then nothing needs to be done: */
Suresh Siddha71325962012-01-19 18:28:57 -08009846 if (!cpu_active(cpu))
9847 return;
9848
Frederic Weisbecker387bc8b2017-06-19 04:12:02 +02009849 /* Spare idle load balancing on CPUs that don't want to be disturbed: */
Frederic Weisbeckerde201552017-10-27 04:42:35 +02009850 if (!housekeeping_cpu(cpu, HK_FLAG_SCHED))
Frederic Weisbecker387bc8b2017-06-19 04:12:02 +02009851 return;
9852
Vincent Guittotf643ea22018-02-13 11:31:17 +01009853 /*
9854 * Can be set safely without rq->lock held
9855 * If a clear happens, it will have evaluated last additions because
9856 * rq->lock is held during the check and the clear
9857 */
9858 rq->has_blocked_load = 1;
9859
9860 /*
9861 * The tick is still stopped but load could have been added in the
9862 * meantime. We set the nohz.has_blocked flag to trig a check of the
9863 * *_avg. The CPU is already part of nohz.idle_cpus_mask so the clear
9864 * of nohz.has_blocked can only happen after checking the new load
9865 */
Peter Zijlstra00357f52017-12-21 15:06:50 +01009866 if (rq->nohz_tick_stopped)
Vincent Guittotf643ea22018-02-13 11:31:17 +01009867 goto out;
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009868
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009869 /* If we're a completely isolated CPU, we don't play: */
Peter Zijlstra00357f52017-12-21 15:06:50 +01009870 if (on_null_domain(rq))
Mike Galbraithd987fc72011-12-05 10:01:47 +01009871 return;
9872
Peter Zijlstra00357f52017-12-21 15:06:50 +01009873 rq->nohz_tick_stopped = 1;
9874
Alex Shic1cc0172012-09-10 15:10:58 +08009875 cpumask_set_cpu(cpu, nohz.idle_cpus_mask);
9876 atomic_inc(&nohz.nr_cpus);
Peter Zijlstra00357f52017-12-21 15:06:50 +01009877
Vincent Guittotf643ea22018-02-13 11:31:17 +01009878 /*
9879 * Ensures that if nohz_idle_balance() fails to observe our
9880 * @idle_cpus_mask store, it must observe the @has_blocked
9881 * store.
9882 */
9883 smp_mb__after_atomic();
9884
Peter Zijlstra00357f52017-12-21 15:06:50 +01009885 set_cpu_sd_state_idle(cpu);
Vincent Guittotf643ea22018-02-13 11:31:17 +01009886
9887out:
9888 /*
9889 * Each time a cpu enter idle, we assume that it has blocked load and
9890 * enable the periodic update of the load of idle cpus
9891 */
9892 WRITE_ONCE(nohz.has_blocked, 1);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009893}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01009894
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009895/*
Vincent Guittot31e77c92018-02-14 16:26:46 +01009896 * Internal function that runs load balance for all idle cpus. The load balance
9897 * can be a simple update of blocked load or a complete load balance with
9898 * tasks movement depending of flags.
9899 * The function returns false if the loop has stopped before running
9900 * through all idle CPUs.
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009901 */
Vincent Guittot31e77c92018-02-14 16:26:46 +01009902static bool _nohz_idle_balance(struct rq *this_rq, unsigned int flags,
9903 enum cpu_idle_type idle)
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009904{
Vincent Guittotc5afb6a2015-08-03 11:55:50 +02009905 /* Earliest time when we have to do rebalance again */
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009906 unsigned long now = jiffies;
9907 unsigned long next_balance = now + 60*HZ;
Vincent Guittotf643ea22018-02-13 11:31:17 +01009908 bool has_blocked_load = false;
Vincent Guittotc5afb6a2015-08-03 11:55:50 +02009909 int update_next_balance = 0;
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009910 int this_cpu = this_rq->cpu;
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009911 int balance_cpu;
Vincent Guittot31e77c92018-02-14 16:26:46 +01009912 int ret = false;
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009913 struct rq *rq;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009914
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009915 SCHED_WARN_ON((flags & NOHZ_KICK_MASK) == NOHZ_BALANCE_KICK);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009916
Vincent Guittotf643ea22018-02-13 11:31:17 +01009917 /*
9918 * We assume there will be no idle load after this update and clear
9919 * the has_blocked flag. If a cpu enters idle in the mean time, it will
9920 * set the has_blocked flag and trig another update of idle load.
9921 * Because a cpu that becomes idle, is added to idle_cpus_mask before
9922 * setting the flag, we are sure to not clear the state and not
9923 * check the load of an idle cpu.
9924 */
9925 WRITE_ONCE(nohz.has_blocked, 0);
9926
9927 /*
9928 * Ensures that if we miss the CPU, we must see the has_blocked
9929 * store from nohz_balance_enter_idle().
9930 */
9931 smp_mb();
9932
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009933 for_each_cpu(balance_cpu, nohz.idle_cpus_mask) {
Suresh Siddha8a6d42d2011-12-06 11:19:37 -08009934 if (balance_cpu == this_cpu || !idle_cpu(balance_cpu))
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009935 continue;
9936
9937 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +01009938 * If this CPU gets work to do, stop the load balancing
9939 * work being done for other CPUs. Next load
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009940 * balancing owner will pick it up.
9941 */
Vincent Guittotf643ea22018-02-13 11:31:17 +01009942 if (need_resched()) {
9943 has_blocked_load = true;
9944 goto abort;
9945 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009946
Vincent Guittot5ed4f1d2012-09-13 06:11:26 +02009947 rq = cpu_rq(balance_cpu);
9948
Peter Zijlstra63928382018-02-13 16:54:17 +01009949 has_blocked_load |= update_nohz_stats(rq, true);
Vincent Guittotf643ea22018-02-13 11:31:17 +01009950
Tim Chened61bbc2014-05-20 14:39:27 -07009951 /*
9952 * If time for next balance is due,
9953 * do the balance.
9954 */
9955 if (time_after_eq(jiffies, rq->next_balance)) {
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009956 struct rq_flags rf;
9957
Vincent Guittot31e77c92018-02-14 16:26:46 +01009958 rq_lock_irqsave(rq, &rf);
Tim Chened61bbc2014-05-20 14:39:27 -07009959 update_rq_clock(rq);
Vincent Guittot31e77c92018-02-14 16:26:46 +01009960 rq_unlock_irqrestore(rq, &rf);
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +02009961
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009962 if (flags & NOHZ_BALANCE_KICK)
9963 rebalance_domains(rq, CPU_IDLE);
Tim Chened61bbc2014-05-20 14:39:27 -07009964 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009965
Vincent Guittotc5afb6a2015-08-03 11:55:50 +02009966 if (time_after(next_balance, rq->next_balance)) {
9967 next_balance = rq->next_balance;
9968 update_next_balance = 1;
9969 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07009970 }
Vincent Guittotc5afb6a2015-08-03 11:55:50 +02009971
Vincent Guittot31e77c92018-02-14 16:26:46 +01009972 /* Newly idle CPU doesn't need an update */
9973 if (idle != CPU_NEWLY_IDLE) {
9974 update_blocked_averages(this_cpu);
9975 has_blocked_load |= this_rq->has_blocked_load;
9976 }
9977
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009978 if (flags & NOHZ_BALANCE_KICK)
9979 rebalance_domains(this_rq, CPU_IDLE);
9980
Vincent Guittotf643ea22018-02-13 11:31:17 +01009981 WRITE_ONCE(nohz.next_blocked,
9982 now + msecs_to_jiffies(LOAD_AVG_PERIOD));
9983
Vincent Guittot31e77c92018-02-14 16:26:46 +01009984 /* The full idle balance loop has been done */
9985 ret = true;
9986
Vincent Guittotf643ea22018-02-13 11:31:17 +01009987abort:
9988 /* There is still blocked load, enable periodic update */
9989 if (has_blocked_load)
9990 WRITE_ONCE(nohz.has_blocked, 1);
Peter Zijlstraa4064fb2017-12-21 10:42:50 +01009991
Vincent Guittotc5afb6a2015-08-03 11:55:50 +02009992 /*
9993 * next_balance will be updated only when there is a need.
9994 * When the CPU is attached to null domain for ex, it will not be
9995 * updated.
9996 */
9997 if (likely(update_next_balance))
9998 nohz.next_balance = next_balance;
Peter Zijlstrab7031a02017-12-21 10:11:09 +01009999
Vincent Guittot31e77c92018-02-14 16:26:46 +010010000 return ret;
10001}
10002
10003/*
10004 * In CONFIG_NO_HZ_COMMON case, the idle balance kickee will do the
10005 * rebalancing for all the cpus for whom scheduler ticks are stopped.
10006 */
10007static bool nohz_idle_balance(struct rq *this_rq, enum cpu_idle_type idle)
10008{
10009 int this_cpu = this_rq->cpu;
10010 unsigned int flags;
10011
10012 if (!(atomic_read(nohz_flags(this_cpu)) & NOHZ_KICK_MASK))
10013 return false;
10014
10015 if (idle != CPU_IDLE) {
10016 atomic_andnot(NOHZ_KICK_MASK, nohz_flags(this_cpu));
10017 return false;
10018 }
10019
Andrea Parri80eb8652018-11-27 12:01:10 +010010020 /* could be _relaxed() */
Vincent Guittot31e77c92018-02-14 16:26:46 +010010021 flags = atomic_fetch_andnot(NOHZ_KICK_MASK, nohz_flags(this_cpu));
10022 if (!(flags & NOHZ_KICK_MASK))
10023 return false;
10024
10025 _nohz_idle_balance(this_rq, flags, idle);
10026
Peter Zijlstrab7031a02017-12-21 10:11:09 +010010027 return true;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -070010028}
Vincent Guittot31e77c92018-02-14 16:26:46 +010010029
10030static void nohz_newidle_balance(struct rq *this_rq)
10031{
10032 int this_cpu = this_rq->cpu;
10033
10034 /*
10035 * This CPU doesn't want to be disturbed by scheduler
10036 * housekeeping
10037 */
10038 if (!housekeeping_cpu(this_cpu, HK_FLAG_SCHED))
10039 return;
10040
10041 /* Will wake up very soon. No time for doing anything else*/
10042 if (this_rq->avg_idle < sysctl_sched_migration_cost)
10043 return;
10044
10045 /* Don't need to update blocked load of idle CPUs*/
10046 if (!READ_ONCE(nohz.has_blocked) ||
10047 time_before(jiffies, READ_ONCE(nohz.next_blocked)))
10048 return;
10049
10050 raw_spin_unlock(&this_rq->lock);
10051 /*
10052 * This CPU is going to be idle and blocked load of idle CPUs
10053 * need to be updated. Run the ilb locally as it is a good
10054 * candidate for ilb instead of waking up another idle CPU.
10055 * Kick an normal ilb if we failed to do the update.
10056 */
10057 if (!_nohz_idle_balance(this_rq, NOHZ_STATS_KICK, CPU_NEWLY_IDLE))
10058 kick_ilb(NOHZ_STATS_KICK);
10059 raw_spin_lock(&this_rq->lock);
10060}
10061
Peter Zijlstradd707242018-02-20 10:59:45 +010010062#else /* !CONFIG_NO_HZ_COMMON */
10063static inline void nohz_balancer_kick(struct rq *rq) { }
10064
Vincent Guittot31e77c92018-02-14 16:26:46 +010010065static inline bool nohz_idle_balance(struct rq *this_rq, enum cpu_idle_type idle)
Peter Zijlstrab7031a02017-12-21 10:11:09 +010010066{
10067 return false;
10068}
Vincent Guittot31e77c92018-02-14 16:26:46 +010010069
10070static inline void nohz_newidle_balance(struct rq *this_rq) { }
Peter Zijlstradd707242018-02-20 10:59:45 +010010071#endif /* CONFIG_NO_HZ_COMMON */
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -070010072
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010073/*
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010074 * idle_balance is called by schedule() if this_cpu is about to become
10075 * idle. Attempts to pull tasks from other CPUs.
Peter Zijlstra7277a342019-11-08 14:15:55 +010010076 *
10077 * Returns:
10078 * < 0 - we released the lock and there are !fair tasks present
10079 * 0 - failed, no new tasks
10080 * > 0 - success, new (fair) tasks present
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010081 */
Peter Zijlstra5ba553e2019-05-29 20:36:42 +000010082int newidle_balance(struct rq *this_rq, struct rq_flags *rf)
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010083{
10084 unsigned long next_balance = jiffies + HZ;
10085 int this_cpu = this_rq->cpu;
10086 struct sched_domain *sd;
10087 int pulled_task = 0;
10088 u64 curr_cost = 0;
10089
Peter Zijlstra5ba553e2019-05-29 20:36:42 +000010090 update_misfit_status(NULL, this_rq);
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010091 /*
10092 * We must set idle_stamp _before_ calling idle_balance(), such that we
10093 * measure the duration of idle_balance() as idle time.
10094 */
10095 this_rq->idle_stamp = rq_clock(this_rq);
10096
10097 /*
10098 * Do not pull tasks towards !active CPUs...
10099 */
10100 if (!cpu_active(this_cpu))
10101 return 0;
10102
10103 /*
10104 * This is OK, because current is on_cpu, which avoids it being picked
10105 * for load-balance and preemption/IRQs are still disabled avoiding
10106 * further scheduler activity on it and we're being very careful to
10107 * re-start the picking loop.
10108 */
10109 rq_unpin_lock(this_rq, rf);
10110
10111 if (this_rq->avg_idle < sysctl_sched_migration_cost ||
Valentin Schneidere90c8fe2018-07-04 11:17:46 +010010112 !READ_ONCE(this_rq->rd->overload)) {
Vincent Guittot31e77c92018-02-14 16:26:46 +010010113
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010114 rcu_read_lock();
10115 sd = rcu_dereference_check_sched_domain(this_rq->sd);
10116 if (sd)
10117 update_next_balance(sd, &next_balance);
10118 rcu_read_unlock();
10119
Vincent Guittot31e77c92018-02-14 16:26:46 +010010120 nohz_newidle_balance(this_rq);
10121
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010122 goto out;
10123 }
10124
10125 raw_spin_unlock(&this_rq->lock);
10126
10127 update_blocked_averages(this_cpu);
10128 rcu_read_lock();
10129 for_each_domain(this_cpu, sd) {
10130 int continue_balancing = 1;
10131 u64 t0, domain_cost;
10132
10133 if (!(sd->flags & SD_LOAD_BALANCE))
10134 continue;
10135
10136 if (this_rq->avg_idle < curr_cost + sd->max_newidle_lb_cost) {
10137 update_next_balance(sd, &next_balance);
10138 break;
10139 }
10140
10141 if (sd->flags & SD_BALANCE_NEWIDLE) {
10142 t0 = sched_clock_cpu(this_cpu);
10143
10144 pulled_task = load_balance(this_cpu, this_rq,
10145 sd, CPU_NEWLY_IDLE,
10146 &continue_balancing);
10147
10148 domain_cost = sched_clock_cpu(this_cpu) - t0;
10149 if (domain_cost > sd->max_newidle_lb_cost)
10150 sd->max_newidle_lb_cost = domain_cost;
10151
10152 curr_cost += domain_cost;
10153 }
10154
10155 update_next_balance(sd, &next_balance);
10156
10157 /*
10158 * Stop searching for tasks to pull if there are
10159 * now runnable tasks on this rq.
10160 */
10161 if (pulled_task || this_rq->nr_running > 0)
10162 break;
10163 }
10164 rcu_read_unlock();
10165
10166 raw_spin_lock(&this_rq->lock);
10167
10168 if (curr_cost > this_rq->max_idle_balance_cost)
10169 this_rq->max_idle_balance_cost = curr_cost;
10170
Vincent Guittot457be902018-04-26 12:19:32 +020010171out:
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010172 /*
10173 * While browsing the domains, we released the rq lock, a task could
10174 * have been enqueued in the meantime. Since we're not going idle,
10175 * pretend we pulled a task.
10176 */
10177 if (this_rq->cfs.h_nr_running && !pulled_task)
10178 pulled_task = 1;
10179
Peter Zijlstra47ea5412018-02-20 11:45:47 +010010180 /* Move the next balance forward */
10181 if (time_after(this_rq->next_balance, next_balance))
10182 this_rq->next_balance = next_balance;
10183
10184 /* Is there a task of a high priority class? */
10185 if (this_rq->nr_running != this_rq->cfs.h_nr_running)
10186 pulled_task = -1;
10187
10188 if (pulled_task)
10189 this_rq->idle_stamp = 0;
10190
10191 rq_repin_lock(this_rq, rf);
10192
10193 return pulled_task;
10194}
10195
10196/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010197 * run_rebalance_domains is triggered when needed from the scheduler tick.
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -070010198 * Also triggered for nohz idle balancing (with nohz_balancing_kick set).
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010199 */
Emese Revfy0766f782016-06-20 20:42:34 +020010200static __latent_entropy void run_rebalance_domains(struct softirq_action *h)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010201{
Daniel Lezcano208cb162014-01-06 12:34:44 +010010202 struct rq *this_rq = this_rq();
Suresh Siddha6eb57e02011-10-03 15:09:01 -070010203 enum cpu_idle_type idle = this_rq->idle_balance ?
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010204 CPU_IDLE : CPU_NOT_IDLE;
10205
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010206 /*
Ingo Molnar97fb7a02018-03-03 14:01:12 +010010207 * If this CPU has a pending nohz_balance_kick, then do the
10208 * balancing on behalf of the other idle CPUs whose ticks are
Preeti U Murthyd4573c32015-03-26 18:32:44 +053010209 * stopped. Do nohz_idle_balance *before* rebalance_domains to
Ingo Molnar97fb7a02018-03-03 14:01:12 +010010210 * give the idle CPUs a chance to load balance. Else we may
Preeti U Murthyd4573c32015-03-26 18:32:44 +053010211 * load balance only within the local sched_domain hierarchy
10212 * and abort nohz_idle_balance altogether if we pull some load.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010213 */
Peter Zijlstrab7031a02017-12-21 10:11:09 +010010214 if (nohz_idle_balance(this_rq, idle))
10215 return;
10216
10217 /* normal load balance */
10218 update_blocked_averages(this_rq->cpu);
Preeti U Murthyd4573c32015-03-26 18:32:44 +053010219 rebalance_domains(this_rq, idle);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010220}
10221
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010222/*
10223 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010224 */
Daniel Lezcano7caff662014-01-06 12:34:38 +010010225void trigger_load_balance(struct rq *rq)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010226{
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010227 /* Don't need to rebalance while attached to NULL domain */
Daniel Lezcanoc7260992014-01-06 12:34:45 +010010228 if (unlikely(on_null_domain(rq)))
10229 return;
10230
10231 if (time_after_eq(jiffies, rq->next_balance))
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010232 raise_softirq(SCHED_SOFTIRQ);
Peter Zijlstra45504872017-12-21 10:47:48 +010010233
10234 nohz_balancer_kick(rq);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +010010235}
10236
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010010237static void rq_online_fair(struct rq *rq)
10238{
10239 update_sysctl();
Kirill Tkhai0e59bda2014-06-25 12:19:42 +040010240
10241 update_runtime_enabled(rq);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010010242}
10243
10244static void rq_offline_fair(struct rq *rq)
10245{
10246 update_sysctl();
Peter Boonstoppela4c96ae2012-08-09 15:34:47 -070010247
10248 /* Ensure any throttled groups are reachable by pick_next_task */
10249 unthrottle_offline_cfs_rqs(rq);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010010250}
10251
Dhaval Giani55e12e52008-06-24 23:39:43 +053010252#endif /* CONFIG_SMP */
Peter Williamse1d14842007-10-24 18:23:51 +020010253
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010254/*
Frederic Weisbeckerd84b3132018-02-21 05:17:27 +010010255 * scheduler tick hitting a task of our scheduling class.
10256 *
10257 * NOTE: This function can be called remotely by the tick offload that
10258 * goes along full dynticks. Therefore no local assumption can be made
10259 * and everything must be accessed through the @rq and @curr passed in
10260 * parameters.
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010261 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010010262static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010263{
10264 struct cfs_rq *cfs_rq;
10265 struct sched_entity *se = &curr->se;
10266
10267 for_each_sched_entity(se) {
10268 cfs_rq = cfs_rq_of(se);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010010269 entity_tick(cfs_rq, se, queued);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010270 }
Ben Segall18bf2802012-10-04 12:51:20 +020010271
Srikar Dronamrajub52da862015-10-02 07:48:25 +053010272 if (static_branch_unlikely(&sched_numa_balancing))
Peter Zijlstracbee9f82012-10-25 14:16:43 +020010273 task_tick_numa(rq, curr);
Morten Rasmussen3b1baa62018-07-04 11:17:40 +010010274
10275 update_misfit_status(curr, rq);
Morten Rasmussen2802bf32018-12-03 09:56:25 +000010276 update_overutilized_status(task_rq(curr));
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010277}
10278
10279/*
Peter Zijlstracd29fe62009-11-27 17:32:46 +010010280 * called on fork with the child task as argument from the parent's context
10281 * - child not yet on the tasklist
10282 * - preemption disabled
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010283 */
Peter Zijlstracd29fe62009-11-27 17:32:46 +010010284static void task_fork_fair(struct task_struct *p)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010285{
Daisuke Nishimura4fc420c2011-12-15 14:36:55 +090010286 struct cfs_rq *cfs_rq;
10287 struct sched_entity *se = &p->se, *curr;
Peter Zijlstracd29fe62009-11-27 17:32:46 +010010288 struct rq *rq = this_rq();
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +020010289 struct rq_flags rf;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010290
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +020010291 rq_lock(rq, &rf);
Peter Zijlstra861d0342010-08-19 13:31:43 +020010292 update_rq_clock(rq);
10293
Daisuke Nishimura4fc420c2011-12-15 14:36:55 +090010294 cfs_rq = task_cfs_rq(current);
10295 curr = cfs_rq->curr;
Peter Zijlstrae210bff2016-06-16 18:51:48 +020010296 if (curr) {
10297 update_curr(cfs_rq);
Mike Galbraithb5d9d732009-09-08 11:12:28 +020010298 se->vruntime = curr->vruntime;
Peter Zijlstrae210bff2016-06-16 18:51:48 +020010299 }
Peter Zijlstraaeb73b02007-10-15 17:00:05 +020010300 place_entity(cfs_rq, se, 1);
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +020010301
Peter Zijlstracd29fe62009-11-27 17:32:46 +010010302 if (sysctl_sched_child_runs_first && curr && entity_before(curr, se)) {
Dmitry Adamushko87fefa32007-10-15 17:00:08 +020010303 /*
Ingo Molnaredcb60a2007-10-15 17:00:08 +020010304 * Upon rescheduling, sched_class::put_prev_task() will place
10305 * 'current' within the tree based on its new key value.
10306 */
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +020010307 swap(curr->vruntime, se->vruntime);
Kirill Tkhai88751252014-06-29 00:03:57 +040010308 resched_curr(rq);
Peter Zijlstra4d78e7b2007-10-15 17:00:04 +020010309 }
10310
Peter Zijlstra88ec22d2009-12-16 18:04:41 +010010311 se->vruntime -= cfs_rq->min_vruntime;
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +020010312 rq_unlock(rq, &rf);
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010313}
10314
Steven Rostedtcb469842008-01-25 21:08:22 +010010315/*
10316 * Priority of the task has changed. Check to see if we preempt
10317 * the current task.
10318 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010319static void
10320prio_changed_fair(struct rq *rq, struct task_struct *p, int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +010010321{
Kirill Tkhaida0c1e62014-08-20 13:47:32 +040010322 if (!task_on_rq_queued(p))
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010323 return;
10324
Frederic Weisbecker7c2e8bb2019-12-03 17:01:05 +010010325 if (rq->cfs.nr_running == 1)
10326 return;
10327
Steven Rostedtcb469842008-01-25 21:08:22 +010010328 /*
10329 * Reschedule if we are currently running on this runqueue and
10330 * our priority decreased, or if we are not currently running on
10331 * this runqueue and our priority is higher than the current's
10332 */
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010333 if (rq->curr == p) {
Steven Rostedtcb469842008-01-25 21:08:22 +010010334 if (p->prio > oldprio)
Kirill Tkhai88751252014-06-29 00:03:57 +040010335 resched_curr(rq);
Steven Rostedtcb469842008-01-25 21:08:22 +010010336 } else
Peter Zijlstra15afe092008-09-20 23:38:02 +020010337 check_preempt_curr(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +010010338}
10339
Byungchul Parkdaa59402015-08-20 20:22:00 +090010340static inline bool vruntime_normalized(struct task_struct *p)
10341{
10342 struct sched_entity *se = &p->se;
10343
10344 /*
10345 * In both the TASK_ON_RQ_QUEUED and TASK_ON_RQ_MIGRATING cases,
10346 * the dequeue_entity(.flags=0) will already have normalized the
10347 * vruntime.
10348 */
10349 if (p->on_rq)
10350 return true;
10351
10352 /*
10353 * When !on_rq, vruntime of the task has usually NOT been normalized.
10354 * But there are some cases where it has already been normalized:
10355 *
10356 * - A forked child which is waiting for being woken up by
10357 * wake_up_new_task().
10358 * - A task which has been woken up by try_to_wake_up() and
10359 * waiting for actually being woken up by sched_ttwu_pending().
10360 */
Steve Muckled0cdb3c2018-08-31 15:42:17 -070010361 if (!se->sum_exec_runtime ||
10362 (p->state == TASK_WAKING && p->sched_remote_wakeup))
Byungchul Parkdaa59402015-08-20 20:22:00 +090010363 return true;
10364
10365 return false;
10366}
10367
Vincent Guittot09a43ac2016-11-08 10:53:45 +010010368#ifdef CONFIG_FAIR_GROUP_SCHED
10369/*
10370 * Propagate the changes of the sched_entity across the tg tree to make it
10371 * visible to the root
10372 */
10373static void propagate_entity_cfs_rq(struct sched_entity *se)
10374{
10375 struct cfs_rq *cfs_rq;
10376
10377 /* Start to propagate at parent */
10378 se = se->parent;
10379
10380 for_each_sched_entity(se) {
10381 cfs_rq = cfs_rq_of(se);
10382
10383 if (cfs_rq_throttled(cfs_rq))
10384 break;
10385
Peter Zijlstra88c06162017-05-06 17:32:43 +020010386 update_load_avg(cfs_rq, se, UPDATE_TG);
Vincent Guittot09a43ac2016-11-08 10:53:45 +010010387 }
10388}
10389#else
10390static void propagate_entity_cfs_rq(struct sched_entity *se) { }
10391#endif
10392
Vincent Guittotdf217912016-11-08 10:53:42 +010010393static void detach_entity_cfs_rq(struct sched_entity *se)
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010394{
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010395 struct cfs_rq *cfs_rq = cfs_rq_of(se);
10396
Yuyang Du9d89c252015-07-15 08:04:37 +080010397 /* Catch up with the cfs_rq and remove our load when we leave */
Peter Zijlstra88c06162017-05-06 17:32:43 +020010398 update_load_avg(cfs_rq, se, 0);
Byungchul Parka05e8c52015-08-20 20:21:56 +090010399 detach_entity_load_avg(cfs_rq, se);
Peter Zijlstra7c3edd22016-07-13 10:56:25 +020010400 update_tg_load_avg(cfs_rq, false);
Vincent Guittot09a43ac2016-11-08 10:53:45 +010010401 propagate_entity_cfs_rq(se);
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010402}
10403
Vincent Guittotdf217912016-11-08 10:53:42 +010010404static void attach_entity_cfs_rq(struct sched_entity *se)
Steven Rostedtcb469842008-01-25 21:08:22 +010010405{
Byungchul Parkdaa59402015-08-20 20:22:00 +090010406 struct cfs_rq *cfs_rq = cfs_rq_of(se);
Byungchul Park7855a352015-08-10 18:02:55 +090010407
10408#ifdef CONFIG_FAIR_GROUP_SCHED
Michael wangeb7a59b2014-02-20 11:14:53 +080010409 /*
10410 * Since the real-depth could have been changed (only FAIR
10411 * class maintain depth value), reset depth properly.
10412 */
10413 se->depth = se->parent ? se->parent->depth + 1 : 0;
10414#endif
Byungchul Park7855a352015-08-10 18:02:55 +090010415
Vincent Guittotdf217912016-11-08 10:53:42 +010010416 /* Synchronize entity with its cfs_rq */
Peter Zijlstra88c06162017-05-06 17:32:43 +020010417 update_load_avg(cfs_rq, se, sched_feat(ATTACH_AGE_LOAD) ? 0 : SKIP_AGE_LOAD);
Peter Zijlstraea14b57e2018-02-02 10:27:00 +010010418 attach_entity_load_avg(cfs_rq, se, 0);
Peter Zijlstra7c3edd22016-07-13 10:56:25 +020010419 update_tg_load_avg(cfs_rq, false);
Vincent Guittot09a43ac2016-11-08 10:53:45 +010010420 propagate_entity_cfs_rq(se);
Vincent Guittotdf217912016-11-08 10:53:42 +010010421}
10422
10423static void detach_task_cfs_rq(struct task_struct *p)
10424{
10425 struct sched_entity *se = &p->se;
10426 struct cfs_rq *cfs_rq = cfs_rq_of(se);
10427
10428 if (!vruntime_normalized(p)) {
10429 /*
10430 * Fix up our vruntime so that the current sleep doesn't
10431 * cause 'unlimited' sleep bonus.
10432 */
10433 place_entity(cfs_rq, se, 0);
10434 se->vruntime -= cfs_rq->min_vruntime;
10435 }
10436
10437 detach_entity_cfs_rq(se);
10438}
10439
10440static void attach_task_cfs_rq(struct task_struct *p)
10441{
10442 struct sched_entity *se = &p->se;
10443 struct cfs_rq *cfs_rq = cfs_rq_of(se);
10444
10445 attach_entity_cfs_rq(se);
Byungchul Park6efdb102015-08-20 20:21:59 +090010446
Byungchul Parkdaa59402015-08-20 20:22:00 +090010447 if (!vruntime_normalized(p))
10448 se->vruntime += cfs_rq->min_vruntime;
10449}
Byungchul Park7855a352015-08-10 18:02:55 +090010450
Byungchul Parkdaa59402015-08-20 20:22:00 +090010451static void switched_from_fair(struct rq *rq, struct task_struct *p)
10452{
10453 detach_task_cfs_rq(p);
10454}
10455
10456static void switched_to_fair(struct rq *rq, struct task_struct *p)
10457{
10458 attach_task_cfs_rq(p);
10459
10460 if (task_on_rq_queued(p)) {
Byungchul Park7855a352015-08-10 18:02:55 +090010461 /*
Byungchul Parkdaa59402015-08-20 20:22:00 +090010462 * We were most likely switched from sched_rt, so
10463 * kick off the schedule if running, otherwise just see
10464 * if we can still preempt the current task.
Byungchul Park7855a352015-08-10 18:02:55 +090010465 */
Byungchul Parkdaa59402015-08-20 20:22:00 +090010466 if (rq->curr == p)
10467 resched_curr(rq);
10468 else
10469 check_preempt_curr(rq, p, 0);
Byungchul Park7855a352015-08-10 18:02:55 +090010470 }
Steven Rostedtcb469842008-01-25 21:08:22 +010010471}
10472
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020010473/* Account for a task changing its policy or group.
10474 *
10475 * This routine is mostly called to set cfs_rq->curr field when a task
10476 * migrates between groups/classes.
10477 */
Peter Zijlstraa0e813f2019-11-08 14:16:00 +010010478static void set_next_task_fair(struct rq *rq, struct task_struct *p, bool first)
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020010479{
Peter Zijlstra03b7fad2019-05-29 20:36:41 +000010480 struct sched_entity *se = &p->se;
10481
10482#ifdef CONFIG_SMP
10483 if (task_on_rq_queued(p)) {
10484 /*
10485 * Move the next running task to the front of the list, so our
10486 * cfs_tasks list becomes MRU one.
10487 */
10488 list_move(&se->group_node, &rq->cfs_tasks);
10489 }
10490#endif
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020010491
Paul Turnerec12cb72011-07-21 09:43:30 -070010492 for_each_sched_entity(se) {
10493 struct cfs_rq *cfs_rq = cfs_rq_of(se);
10494
10495 set_next_entity(cfs_rq, se);
10496 /* ensure bandwidth has been allocated on our new cfs_rq */
10497 account_cfs_rq_runtime(cfs_rq, 0);
10498 }
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +020010499}
10500
Peter Zijlstra029632f2011-10-25 10:00:11 +020010501void init_cfs_rq(struct cfs_rq *cfs_rq)
10502{
Davidlohr Buesobfb06882017-09-08 16:14:55 -070010503 cfs_rq->tasks_timeline = RB_ROOT_CACHED;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010504 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
10505#ifndef CONFIG_64BIT
10506 cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
10507#endif
Alex Shi141965c2013-06-26 13:05:39 +080010508#ifdef CONFIG_SMP
Peter Zijlstra2a2f5d4e2017-05-08 16:51:41 +020010509 raw_spin_lock_init(&cfs_rq->removed.lock);
Paul Turner9ee474f2012-10-04 13:18:30 +020010510#endif
Peter Zijlstra029632f2011-10-25 10:00:11 +020010511}
10512
Peter Zijlstra810b3812008-02-29 15:21:01 -050010513#ifdef CONFIG_FAIR_GROUP_SCHED
Vincent Guittotea86cb42016-06-17 13:38:55 +020010514static void task_set_group_fair(struct task_struct *p)
10515{
10516 struct sched_entity *se = &p->se;
10517
10518 set_task_rq(p, task_cpu(p));
10519 se->depth = se->parent ? se->parent->depth + 1 : 0;
10520}
10521
Peter Zijlstrabc54da22015-08-31 17:13:55 +020010522static void task_move_group_fair(struct task_struct *p)
Peter Zijlstra810b3812008-02-29 15:21:01 -050010523{
Byungchul Parkdaa59402015-08-20 20:22:00 +090010524 detach_task_cfs_rq(p);
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +020010525 set_task_rq(p, task_cpu(p));
Byungchul Park6efdb102015-08-20 20:21:59 +090010526
10527#ifdef CONFIG_SMP
10528 /* Tell se's cfs_rq has been changed -- migrated */
10529 p->se.avg.last_update_time = 0;
10530#endif
Byungchul Parkdaa59402015-08-20 20:22:00 +090010531 attach_task_cfs_rq(p);
Peter Zijlstra810b3812008-02-29 15:21:01 -050010532}
Peter Zijlstra029632f2011-10-25 10:00:11 +020010533
Vincent Guittotea86cb42016-06-17 13:38:55 +020010534static void task_change_group_fair(struct task_struct *p, int type)
10535{
10536 switch (type) {
10537 case TASK_SET_GROUP:
10538 task_set_group_fair(p);
10539 break;
10540
10541 case TASK_MOVE_GROUP:
10542 task_move_group_fair(p);
10543 break;
10544 }
10545}
10546
Peter Zijlstra029632f2011-10-25 10:00:11 +020010547void free_fair_sched_group(struct task_group *tg)
10548{
10549 int i;
10550
10551 destroy_cfs_bandwidth(tg_cfs_bandwidth(tg));
10552
10553 for_each_possible_cpu(i) {
10554 if (tg->cfs_rq)
10555 kfree(tg->cfs_rq[i]);
Peter Zijlstra6fe1f342016-01-21 22:24:16 +010010556 if (tg->se)
Peter Zijlstra029632f2011-10-25 10:00:11 +020010557 kfree(tg->se[i]);
10558 }
10559
10560 kfree(tg->cfs_rq);
10561 kfree(tg->se);
10562}
10563
10564int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
10565{
Peter Zijlstra029632f2011-10-25 10:00:11 +020010566 struct sched_entity *se;
Peter Zijlstrab7fa30c2016-06-09 15:07:50 +020010567 struct cfs_rq *cfs_rq;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010568 int i;
10569
Kees Cook6396bb22018-06-12 14:03:40 -070010570 tg->cfs_rq = kcalloc(nr_cpu_ids, sizeof(cfs_rq), GFP_KERNEL);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010571 if (!tg->cfs_rq)
10572 goto err;
Kees Cook6396bb22018-06-12 14:03:40 -070010573 tg->se = kcalloc(nr_cpu_ids, sizeof(se), GFP_KERNEL);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010574 if (!tg->se)
10575 goto err;
10576
10577 tg->shares = NICE_0_LOAD;
10578
10579 init_cfs_bandwidth(tg_cfs_bandwidth(tg));
10580
10581 for_each_possible_cpu(i) {
10582 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
10583 GFP_KERNEL, cpu_to_node(i));
10584 if (!cfs_rq)
10585 goto err;
10586
10587 se = kzalloc_node(sizeof(struct sched_entity),
10588 GFP_KERNEL, cpu_to_node(i));
10589 if (!se)
10590 goto err_free_rq;
10591
10592 init_cfs_rq(cfs_rq);
10593 init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]);
Yuyang Du540247f2015-07-15 08:04:39 +080010594 init_entity_runnable_average(se);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010595 }
10596
10597 return 1;
10598
10599err_free_rq:
10600 kfree(cfs_rq);
10601err:
10602 return 0;
10603}
10604
Peter Zijlstra8663e242016-06-22 14:58:02 +020010605void online_fair_sched_group(struct task_group *tg)
10606{
10607 struct sched_entity *se;
Phil Aulda46d14e2019-08-01 09:37:49 -040010608 struct rq_flags rf;
Peter Zijlstra8663e242016-06-22 14:58:02 +020010609 struct rq *rq;
10610 int i;
10611
10612 for_each_possible_cpu(i) {
10613 rq = cpu_rq(i);
10614 se = tg->se[i];
Phil Aulda46d14e2019-08-01 09:37:49 -040010615 rq_lock_irq(rq, &rf);
Peter Zijlstra4126bad2016-10-03 16:20:59 +020010616 update_rq_clock(rq);
Vincent Guittotd0326692016-11-08 10:53:47 +010010617 attach_entity_cfs_rq(se);
Peter Zijlstra55e16d32016-06-22 15:14:26 +020010618 sync_throttle(tg, i);
Phil Aulda46d14e2019-08-01 09:37:49 -040010619 rq_unlock_irq(rq, &rf);
Peter Zijlstra8663e242016-06-22 14:58:02 +020010620 }
10621}
10622
Peter Zijlstra6fe1f342016-01-21 22:24:16 +010010623void unregister_fair_sched_group(struct task_group *tg)
Peter Zijlstra029632f2011-10-25 10:00:11 +020010624{
Peter Zijlstra029632f2011-10-25 10:00:11 +020010625 unsigned long flags;
Peter Zijlstra6fe1f342016-01-21 22:24:16 +010010626 struct rq *rq;
10627 int cpu;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010628
Peter Zijlstra6fe1f342016-01-21 22:24:16 +010010629 for_each_possible_cpu(cpu) {
10630 if (tg->se[cpu])
10631 remove_entity_load_avg(tg->se[cpu]);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010632
Peter Zijlstra6fe1f342016-01-21 22:24:16 +010010633 /*
10634 * Only empty task groups can be destroyed; so we can speculatively
10635 * check on_list without danger of it being re-added.
10636 */
10637 if (!tg->cfs_rq[cpu]->on_list)
10638 continue;
10639
10640 rq = cpu_rq(cpu);
10641
10642 raw_spin_lock_irqsave(&rq->lock, flags);
10643 list_del_leaf_cfs_rq(tg->cfs_rq[cpu]);
10644 raw_spin_unlock_irqrestore(&rq->lock, flags);
10645 }
Peter Zijlstra029632f2011-10-25 10:00:11 +020010646}
10647
10648void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
10649 struct sched_entity *se, int cpu,
10650 struct sched_entity *parent)
10651{
10652 struct rq *rq = cpu_rq(cpu);
10653
10654 cfs_rq->tg = tg;
10655 cfs_rq->rq = rq;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010656 init_cfs_rq_runtime(cfs_rq);
10657
10658 tg->cfs_rq[cpu] = cfs_rq;
10659 tg->se[cpu] = se;
10660
10661 /* se could be NULL for root_task_group */
10662 if (!se)
10663 return;
10664
Peter Zijlstrafed14d42012-02-11 06:05:00 +010010665 if (!parent) {
Peter Zijlstra029632f2011-10-25 10:00:11 +020010666 se->cfs_rq = &rq->cfs;
Peter Zijlstrafed14d42012-02-11 06:05:00 +010010667 se->depth = 0;
10668 } else {
Peter Zijlstra029632f2011-10-25 10:00:11 +020010669 se->cfs_rq = parent->my_q;
Peter Zijlstrafed14d42012-02-11 06:05:00 +010010670 se->depth = parent->depth + 1;
10671 }
Peter Zijlstra029632f2011-10-25 10:00:11 +020010672
10673 se->my_q = cfs_rq;
Paul Turner0ac9b1c2013-10-16 11:16:27 -070010674 /* guarantee group entities always have weight */
10675 update_load_set(&se->load, NICE_0_LOAD);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010676 se->parent = parent;
10677}
10678
10679static DEFINE_MUTEX(shares_mutex);
10680
10681int sched_group_set_shares(struct task_group *tg, unsigned long shares)
10682{
10683 int i;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010684
10685 /*
10686 * We can't change the weight of the root cgroup.
10687 */
10688 if (!tg->se[0])
10689 return -EINVAL;
10690
10691 shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES));
10692
10693 mutex_lock(&shares_mutex);
10694 if (tg->shares == shares)
10695 goto done;
10696
10697 tg->shares = shares;
10698 for_each_possible_cpu(i) {
10699 struct rq *rq = cpu_rq(i);
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +020010700 struct sched_entity *se = tg->se[i];
10701 struct rq_flags rf;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010702
Peter Zijlstra029632f2011-10-25 10:00:11 +020010703 /* Propagate contribution to hierarchy */
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +020010704 rq_lock_irqsave(rq, &rf);
Frederic Weisbecker71b1da42013-04-12 01:50:59 +020010705 update_rq_clock(rq);
Vincent Guittot89ee0482016-12-21 16:50:26 +010010706 for_each_sched_entity(se) {
Peter Zijlstra88c06162017-05-06 17:32:43 +020010707 update_load_avg(cfs_rq_of(se), se, UPDATE_TG);
Peter Zijlstra1ea6c462017-05-06 15:59:54 +020010708 update_cfs_group(se);
Vincent Guittot89ee0482016-12-21 16:50:26 +010010709 }
Peter Zijlstra8a8c69c2016-10-04 16:04:35 +020010710 rq_unlock_irqrestore(rq, &rf);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010711 }
10712
10713done:
10714 mutex_unlock(&shares_mutex);
10715 return 0;
10716}
10717#else /* CONFIG_FAIR_GROUP_SCHED */
10718
10719void free_fair_sched_group(struct task_group *tg) { }
10720
10721int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
10722{
10723 return 1;
10724}
10725
Peter Zijlstra8663e242016-06-22 14:58:02 +020010726void online_fair_sched_group(struct task_group *tg) { }
10727
Peter Zijlstra6fe1f342016-01-21 22:24:16 +010010728void unregister_fair_sched_group(struct task_group *tg) { }
Peter Zijlstra029632f2011-10-25 10:00:11 +020010729
10730#endif /* CONFIG_FAIR_GROUP_SCHED */
10731
Peter Zijlstra810b3812008-02-29 15:21:01 -050010732
H Hartley Sweeten6d686f42010-01-13 20:21:52 -070010733static unsigned int get_rr_interval_fair(struct rq *rq, struct task_struct *task)
Peter Williams0d721ce2009-09-21 01:31:53 +000010734{
10735 struct sched_entity *se = &task->se;
Peter Williams0d721ce2009-09-21 01:31:53 +000010736 unsigned int rr_interval = 0;
10737
10738 /*
10739 * Time slice is 0 for SCHED_OTHER tasks that are on an otherwise
10740 * idle runqueue:
10741 */
Peter Williams0d721ce2009-09-21 01:31:53 +000010742 if (rq->cfs.load.weight)
Zhu Yanhaia59f4e02013-01-08 12:56:52 +080010743 rr_interval = NS_TO_JIFFIES(sched_slice(cfs_rq_of(se), se));
Peter Williams0d721ce2009-09-21 01:31:53 +000010744
10745 return rr_interval;
10746}
10747
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010748/*
10749 * All the scheduling class methods:
10750 */
Peter Zijlstra029632f2011-10-25 10:00:11 +020010751const struct sched_class fair_sched_class = {
Ingo Molnar5522d5d2007-10-15 17:00:12 +020010752 .next = &idle_sched_class,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010753 .enqueue_task = enqueue_task_fair,
10754 .dequeue_task = dequeue_task_fair,
10755 .yield_task = yield_task_fair,
Mike Galbraithd95f4122011-02-01 09:50:51 -050010756 .yield_to_task = yield_to_task_fair,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010757
Ingo Molnar2e09bf52007-10-15 17:00:05 +020010758 .check_preempt_curr = check_preempt_wakeup,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010759
Peter Zijlstra98c2f702019-11-08 14:15:58 +010010760 .pick_next_task = __pick_next_task_fair,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010761 .put_prev_task = put_prev_task_fair,
Peter Zijlstra03b7fad2019-05-29 20:36:41 +000010762 .set_next_task = set_next_task_fair,
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010763
Peter Williams681f3e62007-10-24 18:23:51 +020010764#ifdef CONFIG_SMP
Peter Zijlstra6e2df052019-11-08 11:11:52 +010010765 .balance = balance_fair,
Li Zefan4ce72a22008-10-22 15:25:26 +080010766 .select_task_rq = select_task_rq_fair,
Paul Turner0a74bef2012-10-04 13:18:30 +020010767 .migrate_task_rq = migrate_task_rq_fair,
Alex Shi141965c2013-06-26 13:05:39 +080010768
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +010010769 .rq_online = rq_online_fair,
10770 .rq_offline = rq_offline_fair,
Peter Zijlstra88ec22d2009-12-16 18:04:41 +010010771
Yuyang Du12695572015-07-15 08:04:40 +080010772 .task_dead = task_dead_fair,
Peter Zijlstrac5b28032015-05-15 17:43:35 +020010773 .set_cpus_allowed = set_cpus_allowed_common,
Peter Williams681f3e62007-10-24 18:23:51 +020010774#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010775
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010776 .task_tick = task_tick_fair,
Peter Zijlstracd29fe62009-11-27 17:32:46 +010010777 .task_fork = task_fork_fair,
Steven Rostedtcb469842008-01-25 21:08:22 +010010778
10779 .prio_changed = prio_changed_fair,
Peter Zijlstrada7a7352011-01-17 17:03:27 +010010780 .switched_from = switched_from_fair,
Steven Rostedtcb469842008-01-25 21:08:22 +010010781 .switched_to = switched_to_fair,
Peter Zijlstra810b3812008-02-29 15:21:01 -050010782
Peter Williams0d721ce2009-09-21 01:31:53 +000010783 .get_rr_interval = get_rr_interval_fair,
10784
Stanislaw Gruszka6e998912014-11-12 16:58:44 +010010785 .update_curr = update_curr_fair,
10786
Peter Zijlstra810b3812008-02-29 15:21:01 -050010787#ifdef CONFIG_FAIR_GROUP_SCHED
Vincent Guittotea86cb42016-06-17 13:38:55 +020010788 .task_change_group = task_change_group_fair,
Peter Zijlstra810b3812008-02-29 15:21:01 -050010789#endif
Patrick Bellasi982d9cd2019-06-21 09:42:10 +010010790
10791#ifdef CONFIG_UCLAMP_TASK
10792 .uclamp_enabled = 1,
10793#endif
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010794};
10795
10796#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra029632f2011-10-25 10:00:11 +020010797void print_cfs_stats(struct seq_file *m, int cpu)
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010798{
Vincent Guittot039ae8b2019-02-06 17:14:22 +010010799 struct cfs_rq *cfs_rq, *pos;
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010800
Peter Zijlstra5973e5b2008-01-25 21:08:34 +010010801 rcu_read_lock();
Vincent Guittot039ae8b2019-02-06 17:14:22 +010010802 for_each_leaf_cfs_rq_safe(cpu_rq(cpu), cfs_rq, pos)
Ingo Molnar5cef9ec2007-08-09 11:16:47 +020010803 print_cfs_rq(m, cpu, cfs_rq);
Peter Zijlstra5973e5b2008-01-25 21:08:34 +010010804 rcu_read_unlock();
Ingo Molnarbf0f6f22007-07-09 18:51:58 +020010805}
Srikar Dronamraju397f2372015-06-25 22:51:43 +053010806
10807#ifdef CONFIG_NUMA_BALANCING
10808void show_numa_stats(struct task_struct *p, struct seq_file *m)
10809{
10810 int node;
10811 unsigned long tsf = 0, tpf = 0, gsf = 0, gpf = 0;
Jann Horncb361d82019-07-16 17:20:47 +020010812 struct numa_group *ng;
Srikar Dronamraju397f2372015-06-25 22:51:43 +053010813
Jann Horncb361d82019-07-16 17:20:47 +020010814 rcu_read_lock();
10815 ng = rcu_dereference(p->numa_group);
Srikar Dronamraju397f2372015-06-25 22:51:43 +053010816 for_each_online_node(node) {
10817 if (p->numa_faults) {
10818 tsf = p->numa_faults[task_faults_idx(NUMA_MEM, node, 0)];
10819 tpf = p->numa_faults[task_faults_idx(NUMA_MEM, node, 1)];
10820 }
Jann Horncb361d82019-07-16 17:20:47 +020010821 if (ng) {
10822 gsf = ng->faults[task_faults_idx(NUMA_MEM, node, 0)],
10823 gpf = ng->faults[task_faults_idx(NUMA_MEM, node, 1)];
Srikar Dronamraju397f2372015-06-25 22:51:43 +053010824 }
10825 print_numa_stats(m, node, tsf, tpf, gsf, gpf);
10826 }
Jann Horncb361d82019-07-16 17:20:47 +020010827 rcu_read_unlock();
Srikar Dronamraju397f2372015-06-25 22:51:43 +053010828}
10829#endif /* CONFIG_NUMA_BALANCING */
10830#endif /* CONFIG_SCHED_DEBUG */
Peter Zijlstra029632f2011-10-25 10:00:11 +020010831
10832__init void init_sched_fair_class(void)
10833{
10834#ifdef CONFIG_SMP
10835 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
10836
Frederic Weisbecker3451d022011-08-10 23:21:01 +020010837#ifdef CONFIG_NO_HZ_COMMON
Diwakar Tundlam554ceca2012-03-07 14:44:26 -080010838 nohz.next_balance = jiffies;
Vincent Guittotf643ea22018-02-13 11:31:17 +010010839 nohz.next_blocked = jiffies;
Peter Zijlstra029632f2011-10-25 10:00:11 +020010840 zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
Peter Zijlstra029632f2011-10-25 10:00:11 +020010841#endif
10842#endif /* SMP */
10843
10844}
Qais Yousef3c93a0c2019-06-04 12:14:55 +010010845
10846/*
10847 * Helper functions to facilitate extracting info from tracepoints.
10848 */
10849
10850const struct sched_avg *sched_trace_cfs_rq_avg(struct cfs_rq *cfs_rq)
10851{
10852#ifdef CONFIG_SMP
10853 return cfs_rq ? &cfs_rq->avg : NULL;
10854#else
10855 return NULL;
10856#endif
10857}
10858EXPORT_SYMBOL_GPL(sched_trace_cfs_rq_avg);
10859
10860char *sched_trace_cfs_rq_path(struct cfs_rq *cfs_rq, char *str, int len)
10861{
10862 if (!cfs_rq) {
10863 if (str)
10864 strlcpy(str, "(null)", len);
10865 else
10866 return NULL;
10867 }
10868
10869 cfs_rq_tg_path(cfs_rq, str, len);
10870 return str;
10871}
10872EXPORT_SYMBOL_GPL(sched_trace_cfs_rq_path);
10873
10874int sched_trace_cfs_rq_cpu(struct cfs_rq *cfs_rq)
10875{
10876 return cfs_rq ? cpu_of(rq_of(cfs_rq)) : -1;
10877}
10878EXPORT_SYMBOL_GPL(sched_trace_cfs_rq_cpu);
10879
10880const struct sched_avg *sched_trace_rq_avg_rt(struct rq *rq)
10881{
10882#ifdef CONFIG_SMP
10883 return rq ? &rq->avg_rt : NULL;
10884#else
10885 return NULL;
10886#endif
10887}
10888EXPORT_SYMBOL_GPL(sched_trace_rq_avg_rt);
10889
10890const struct sched_avg *sched_trace_rq_avg_dl(struct rq *rq)
10891{
10892#ifdef CONFIG_SMP
10893 return rq ? &rq->avg_dl : NULL;
10894#else
10895 return NULL;
10896#endif
10897}
10898EXPORT_SYMBOL_GPL(sched_trace_rq_avg_dl);
10899
10900const struct sched_avg *sched_trace_rq_avg_irq(struct rq *rq)
10901{
10902#if defined(CONFIG_SMP) && defined(CONFIG_HAVE_SCHED_AVG_IRQ)
10903 return rq ? &rq->avg_irq : NULL;
10904#else
10905 return NULL;
10906#endif
10907}
10908EXPORT_SYMBOL_GPL(sched_trace_rq_avg_irq);
10909
10910int sched_trace_rq_cpu(struct rq *rq)
10911{
10912 return rq ? cpu_of(rq) : -1;
10913}
10914EXPORT_SYMBOL_GPL(sched_trace_rq_cpu);
10915
10916const struct cpumask *sched_trace_rd_span(struct root_domain *rd)
10917{
10918#ifdef CONFIG_SMP
10919 return rd ? rd->span : NULL;
10920#else
10921 return NULL;
10922#endif
10923}
10924EXPORT_SYMBOL_GPL(sched_trace_rd_span);