xref: /linux/kernel/sched/fair.c (revision f4cdf7ca9a1fdcca413157df19753f388a5a224e)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
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, Linutronix GmbH, Thomas Gleixner <tglx@kernel.org>
19  *
20  *  Adaptive scheduling granularity, math enhancements by Peter Zijlstra
21  *  Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
22  */
23 #include <linux/energy_model.h>
24 #include <linux/mmap_lock.h>
25 #include <linux/hugetlb_inline.h>
26 #include <linux/jiffies.h>
27 #include <linux/mm_api.h>
28 #include <linux/highmem.h>
29 #include <linux/hrtimer.h>
30 #include <linux/hrtimer_bases.h>
31 #include <linux/spinlock_api.h>
32 #include <linux/cpumask_api.h>
33 #include <linux/lockdep_api.h>
34 #include <linux/softirq.h>
35 #include <linux/refcount_api.h>
36 #include <linux/topology.h>
37 #include <linux/sched/clock.h>
38 #include <linux/sched/cond_resched.h>
39 #include <linux/sched/cputime.h>
40 #include <linux/sched/isolation.h>
41 #include <linux/sched/nohz.h>
42 #include <linux/sched/prio.h>
43 #include <linux/static_call.h>
44 
45 #include <linux/cpuidle.h>
46 #include <linux/interrupt.h>
47 #include <linux/memory-tiers.h>
48 #include <linux/mempolicy.h>
49 #include <linux/mutex_api.h>
50 #include <linux/profile.h>
51 #include <linux/psi.h>
52 #include <linux/ratelimit.h>
53 #include <linux/task_work.h>
54 #include <linux/rbtree_augmented.h>
55 
56 #include <asm/switch_to.h>
57 
58 #include <uapi/linux/sched/types.h>
59 
60 #include "sched.h"
61 #include "stats.h"
62 #include "autogroup.h"
63 
64 /*
65  * The initial- and re-scaling of tunables is configurable
66  *
67  * Options are:
68  *
69  *   SCHED_TUNABLESCALING_NONE - unscaled, always *1
70  *   SCHED_TUNABLESCALING_LOG - scaled logarithmically, *1+ilog(ncpus)
71  *   SCHED_TUNABLESCALING_LINEAR - scaled linear, *ncpus
72  *
73  * (default SCHED_TUNABLESCALING_LOG = *(1+ilog(ncpus))
74  */
75 unsigned int sysctl_sched_tunable_scaling = SCHED_TUNABLESCALING_LOG;
76 
77 /*
78  * Default base time slice (request size r_i) for SCHED_NORMAL/SCHED_BATCH:
79  *
80  * Under EEVDF this is the request size used to compute the virtual
81  * deadline; see update_deadline().
82  *
83  * (default: 0.70 msec * (1 + ilog(ncpus)), units: nanoseconds)
84  */
85 unsigned int sysctl_sched_base_slice			= 700000ULL;
86 static unsigned int normalized_sysctl_sched_base_slice	= 700000ULL;
87 
88 __read_mostly unsigned int sysctl_sched_migration_cost	= 500000UL;
89 
90 static int __init setup_sched_thermal_decay_shift(char *str)
91 {
92 	pr_warn("Ignoring the deprecated sched_thermal_decay_shift= option\n");
93 	return 1;
94 }
95 __setup("sched_thermal_decay_shift=", setup_sched_thermal_decay_shift);
96 
97 /*
98  * For asym packing, by default the lower numbered CPU has higher priority.
99  */
100 int __weak arch_asym_cpu_priority(int cpu)
101 {
102 	return -cpu;
103 }
104 
105 /*
106  * The margin used when comparing utilization with CPU capacity.
107  *
108  * (default: ~20%)
109  */
110 #define fits_capacity(cap, max)	((cap) * 1280 < (max) * 1024)
111 
112 /*
113  * The margin used when comparing CPU capacities.
114  * is 'cap1' noticeably greater than 'cap2'
115  *
116  * (default: ~5%)
117  */
118 #define capacity_greater(cap1, cap2) ((cap1) * 1024 > (cap2) * 1078)
119 
120 #ifdef CONFIG_CFS_BANDWIDTH
121 /*
122  * Amount of runtime to allocate from global (tg) to local (per-cfs_rq) pool
123  * each time a cfs_rq requests quota.
124  *
125  * Note: in the case that the slice exceeds the runtime remaining (either due
126  * to consumption or the quota being specified to be smaller than the slice)
127  * we will always only issue the remaining available time.
128  *
129  * (default: 5 msec, units: microseconds)
130  */
131 static unsigned int sysctl_sched_cfs_bandwidth_slice		= 5000UL;
132 #endif
133 
134 #ifdef CONFIG_NUMA_BALANCING
135 /* Restrict the NUMA promotion throughput (MB/s) for each target node. */
136 static unsigned int sysctl_numa_balancing_promote_rate_limit = 65536;
137 #endif
138 
139 #ifdef CONFIG_SYSCTL
140 static const struct ctl_table sched_fair_sysctls[] = {
141 #ifdef CONFIG_CFS_BANDWIDTH
142 	{
143 		.procname       = "sched_cfs_bandwidth_slice_us",
144 		.data           = &sysctl_sched_cfs_bandwidth_slice,
145 		.maxlen         = sizeof(unsigned int),
146 		.mode           = 0644,
147 		.proc_handler   = proc_dointvec_minmax,
148 		.extra1         = SYSCTL_ONE,
149 	},
150 #endif
151 #ifdef CONFIG_NUMA_BALANCING
152 	{
153 		.procname	= "numa_balancing_promote_rate_limit_MBps",
154 		.data		= &sysctl_numa_balancing_promote_rate_limit,
155 		.maxlen		= sizeof(unsigned int),
156 		.mode		= 0644,
157 		.proc_handler	= proc_dointvec_minmax,
158 		.extra1		= SYSCTL_ZERO,
159 	},
160 #endif /* CONFIG_NUMA_BALANCING */
161 };
162 
163 static int __init sched_fair_sysctl_init(void)
164 {
165 	register_sysctl_init("kernel", sched_fair_sysctls);
166 	return 0;
167 }
168 late_initcall(sched_fair_sysctl_init);
169 #endif /* CONFIG_SYSCTL */
170 
171 static inline void update_load_add(struct load_weight *lw, unsigned long inc)
172 {
173 	lw->weight += inc;
174 	lw->inv_weight = 0;
175 }
176 
177 static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
178 {
179 	lw->weight -= dec;
180 	lw->inv_weight = 0;
181 }
182 
183 static inline void update_load_set(struct load_weight *lw, unsigned long w)
184 {
185 	lw->weight = w;
186 	lw->inv_weight = 0;
187 }
188 
189 /*
190  * Increase the granularity value when there are more CPUs,
191  * because with more CPUs the 'effective latency' as visible
192  * to users decreases. But the relationship is not linear,
193  * so pick a second-best guess by going with the log2 of the
194  * number of CPUs.
195  *
196  * This idea comes from the SD scheduler of Con Kolivas:
197  */
198 static unsigned int get_update_sysctl_factor(void)
199 {
200 	unsigned int cpus = min_t(unsigned int, num_online_cpus(), 8);
201 	unsigned int factor;
202 
203 	switch (sysctl_sched_tunable_scaling) {
204 	case SCHED_TUNABLESCALING_NONE:
205 		factor = 1;
206 		break;
207 	case SCHED_TUNABLESCALING_LINEAR:
208 		factor = cpus;
209 		break;
210 	case SCHED_TUNABLESCALING_LOG:
211 	default:
212 		factor = 1 + ilog2(cpus);
213 		break;
214 	}
215 
216 	return factor;
217 }
218 
219 static void update_sysctl(void)
220 {
221 	unsigned int factor = get_update_sysctl_factor();
222 
223 #define SET_SYSCTL(name) \
224 	(sysctl_##name = (factor) * normalized_sysctl_##name)
225 	SET_SYSCTL(sched_base_slice);
226 #undef SET_SYSCTL
227 }
228 
229 void __init sched_init_granularity(void)
230 {
231 	update_sysctl();
232 }
233 
234 #ifndef CONFIG_64BIT
235 #define WMULT_CONST	(~0U)
236 #define WMULT_SHIFT	32
237 
238 static void __update_inv_weight(struct load_weight *lw)
239 {
240 	unsigned long w;
241 
242 	if (likely(lw->inv_weight))
243 		return;
244 
245 	w = scale_load_down(lw->weight);
246 
247 	if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST))
248 		lw->inv_weight = 1;
249 	else if (unlikely(!w))
250 		lw->inv_weight = WMULT_CONST;
251 	else
252 		lw->inv_weight = WMULT_CONST / w;
253 }
254 
255 /*
256  * delta_exec * weight / lw.weight
257  *   OR
258  * (delta_exec * (weight * lw->inv_weight)) >> WMULT_SHIFT
259  *
260  * Either weight := NICE_0_LOAD and lw \e sched_prio_to_wmult[], in which case
261  * we're guaranteed shift stays positive because inv_weight is guaranteed to
262  * fit 32 bits, and NICE_0_LOAD gives another 10 bits; therefore shift >= 22.
263  *
264  * Or, weight =< lw.weight (because lw.weight is the runqueue weight), thus
265  * weight/lw.weight <= 1, and therefore our shift will also be positive.
266  */
267 static u64 __calc_delta(u64 delta_exec, unsigned long weight, struct load_weight *lw)
268 {
269 	u64 fact = scale_load_down(weight);
270 	u32 fact_hi = (u32)(fact >> 32);
271 	int shift = WMULT_SHIFT;
272 	int fs;
273 
274 	__update_inv_weight(lw);
275 
276 	if (unlikely(fact_hi)) {
277 		fs = fls(fact_hi);
278 		shift -= fs;
279 		fact >>= fs;
280 	}
281 
282 	fact = mul_u32_u32(fact, lw->inv_weight);
283 
284 	fact_hi = (u32)(fact >> 32);
285 	if (fact_hi) {
286 		fs = fls(fact_hi);
287 		shift -= fs;
288 		fact >>= fs;
289 	}
290 
291 	return mul_u64_u32_shr(delta_exec, fact, shift);
292 }
293 #else
294 static u64 __calc_delta(u64 delta_exec, unsigned long weight, struct load_weight *lw)
295 {
296 	return (delta_exec * weight) / lw->weight;
297 }
298 #endif
299 
300 /*
301  * delta /= w
302  */
303 static inline u64 calc_delta_fair(u64 delta, struct sched_entity *se)
304 {
305 	if (se->h_load.weight != NICE_0_LOAD)
306 		delta = __calc_delta(delta, NICE_0_LOAD, &se->h_load);
307 
308 	return delta;
309 }
310 
311 const struct sched_class fair_sched_class;
312 
313 /**************************************************************
314  * CFS operations on generic schedulable entities:
315  */
316 
317 #ifdef CONFIG_FAIR_GROUP_SCHED
318 
319 /* Walk up scheduling entities hierarchy */
320 #define for_each_sched_entity(se) \
321 		for (; se; se = se->parent)
322 
323 static inline bool list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
324 {
325 	struct rq *rq = rq_of(cfs_rq);
326 	int cpu = cpu_of(rq);
327 
328 	if (cfs_rq->on_list)
329 		return rq->tmp_alone_branch == &rq->leaf_cfs_rq_list;
330 
331 	cfs_rq->on_list = 1;
332 
333 	/*
334 	 * Ensure we either appear before our parent (if already
335 	 * enqueued) or force our parent to appear after us when it is
336 	 * enqueued. The fact that we always enqueue bottom-up
337 	 * reduces this to two cases and a special case for the root
338 	 * cfs_rq. Furthermore, it also means that we will always reset
339 	 * tmp_alone_branch either when the branch is connected
340 	 * to a tree or when we reach the top of the tree
341 	 */
342 	if (cfs_rq->tg->parent &&
343 	    tg_cfs_rq(cfs_rq->tg->parent, cpu)->on_list) {
344 		/*
345 		 * If parent is already on the list, we add the child
346 		 * just before. Thanks to circular linked property of
347 		 * the list, this means to put the child at the tail
348 		 * of the list that starts by parent.
349 		 */
350 		list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list,
351 			&(tg_cfs_rq(cfs_rq->tg->parent, cpu)->leaf_cfs_rq_list));
352 		/*
353 		 * The branch is now connected to its tree so we can
354 		 * reset tmp_alone_branch to the beginning of the
355 		 * list.
356 		 */
357 		rq->tmp_alone_branch = &rq->leaf_cfs_rq_list;
358 		return true;
359 	}
360 
361 	if (!cfs_rq->tg->parent) {
362 		/*
363 		 * cfs rq without parent should be put
364 		 * at the tail of the list.
365 		 */
366 		list_add_tail_rcu(&cfs_rq->leaf_cfs_rq_list,
367 			&rq->leaf_cfs_rq_list);
368 		/*
369 		 * We have reach the top of a tree so we can reset
370 		 * tmp_alone_branch to the beginning of the list.
371 		 */
372 		rq->tmp_alone_branch = &rq->leaf_cfs_rq_list;
373 		return true;
374 	}
375 
376 	/*
377 	 * The parent has not already been added so we want to
378 	 * make sure that it will be put after us.
379 	 * tmp_alone_branch points to the begin of the branch
380 	 * where we will add parent.
381 	 */
382 	list_add_rcu(&cfs_rq->leaf_cfs_rq_list, rq->tmp_alone_branch);
383 	/*
384 	 * update tmp_alone_branch to points to the new begin
385 	 * of the branch
386 	 */
387 	rq->tmp_alone_branch = &cfs_rq->leaf_cfs_rq_list;
388 	return false;
389 }
390 
391 static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
392 {
393 	if (cfs_rq->on_list) {
394 		struct rq *rq = rq_of(cfs_rq);
395 
396 		/*
397 		 * With cfs_rq being unthrottled/throttled during an enqueue,
398 		 * it can happen the tmp_alone_branch points to the leaf that
399 		 * we finally want to delete. In this case, tmp_alone_branch moves
400 		 * to the prev element but it will point to rq->leaf_cfs_rq_list
401 		 * at the end of the enqueue.
402 		 */
403 		if (rq->tmp_alone_branch == &cfs_rq->leaf_cfs_rq_list)
404 			rq->tmp_alone_branch = cfs_rq->leaf_cfs_rq_list.prev;
405 
406 		list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
407 		cfs_rq->on_list = 0;
408 	}
409 }
410 
411 static inline void assert_list_leaf_cfs_rq(struct rq *rq)
412 {
413 	WARN_ON_ONCE(rq->tmp_alone_branch != &rq->leaf_cfs_rq_list);
414 }
415 
416 /* Iterate through all leaf cfs_rq's on a runqueue */
417 #define for_each_leaf_cfs_rq_safe(rq, cfs_rq, pos)			\
418 	list_for_each_entry_safe(cfs_rq, pos, &rq->leaf_cfs_rq_list,	\
419 				 leaf_cfs_rq_list)
420 
421 /* Do the two (enqueued) entities belong to the same group ? */
422 static inline struct cfs_rq *
423 is_same_group(struct sched_entity *se, struct sched_entity *pse)
424 {
425 	if (se->cfs_rq == pse->cfs_rq)
426 		return se->cfs_rq;
427 
428 	return NULL;
429 }
430 
431 static inline struct sched_entity *parent_entity(const struct sched_entity *se)
432 {
433 	return se->parent;
434 }
435 
436 static int tg_is_idle(struct task_group *tg)
437 {
438 	return tg->idle > 0;
439 }
440 
441 static int cfs_rq_is_idle(struct cfs_rq *cfs_rq)
442 {
443 	return cfs_rq->idle > 0;
444 }
445 
446 static int se_is_idle(struct sched_entity *se)
447 {
448 	if (entity_is_task(se))
449 		return task_has_idle_policy(task_of(se));
450 	return cfs_rq_is_idle(group_cfs_rq(se));
451 }
452 
453 #else /* !CONFIG_FAIR_GROUP_SCHED: */
454 
455 #define for_each_sched_entity(se) \
456 		for (; se; se = NULL)
457 
458 static inline bool list_add_leaf_cfs_rq(struct cfs_rq *cfs_rq)
459 {
460 	return true;
461 }
462 
463 static inline void list_del_leaf_cfs_rq(struct cfs_rq *cfs_rq)
464 {
465 }
466 
467 static inline void assert_list_leaf_cfs_rq(struct rq *rq)
468 {
469 }
470 
471 #define for_each_leaf_cfs_rq_safe(rq, cfs_rq, pos)	\
472 		for (cfs_rq = &rq->cfs, pos = NULL; cfs_rq; cfs_rq = pos)
473 
474 static inline struct sched_entity *parent_entity(struct sched_entity *se)
475 {
476 	return NULL;
477 }
478 
479 static inline int tg_is_idle(struct task_group *tg)
480 {
481 	return 0;
482 }
483 
484 static int cfs_rq_is_idle(struct cfs_rq *cfs_rq)
485 {
486 	return 0;
487 }
488 
489 static int se_is_idle(struct sched_entity *se)
490 {
491 	return task_has_idle_policy(task_of(se));
492 }
493 
494 #endif /* !CONFIG_FAIR_GROUP_SCHED */
495 
496 static __always_inline
497 bool account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec);
498 
499 /**************************************************************
500  * Scheduling class tree data structure manipulation methods:
501  */
502 
503 extern void __BUILD_BUG_vruntime_cmp(void);
504 
505 /* Use __builtin_strcmp() because of __HAVE_ARCH_STRCMP: */
506 
507 #define vruntime_cmp(A, CMP_STR, B) ({				\
508 	int __res = 0;						\
509 								\
510 	if (!__builtin_strcmp(CMP_STR, "<")) {			\
511 		__res = ((s64)((A)-(B)) < 0);			\
512 	} else if (!__builtin_strcmp(CMP_STR, "<=")) {		\
513 		__res = ((s64)((A)-(B)) <= 0);			\
514 	} else if (!__builtin_strcmp(CMP_STR, ">")) {		\
515 		__res = ((s64)((A)-(B)) > 0);			\
516 	} else if (!__builtin_strcmp(CMP_STR, ">=")) {		\
517 		__res = ((s64)((A)-(B)) >= 0);			\
518 	} else {						\
519 		/* Unknown operator throws linker error: */	\
520 		__BUILD_BUG_vruntime_cmp();			\
521 	}							\
522 								\
523 	__res;							\
524 })
525 
526 extern void __BUILD_BUG_vruntime_op(void);
527 
528 #define vruntime_op(A, OP_STR, B) ({				\
529 	s64 __res = 0;						\
530 								\
531 	if (!__builtin_strcmp(OP_STR, "-")) {			\
532 		__res = (s64)((A)-(B));				\
533 	} else {						\
534 		/* Unknown operator throws linker error: */	\
535 		__BUILD_BUG_vruntime_op();			\
536 	}							\
537 								\
538 	__res;						\
539 })
540 
541 
542 static inline __maybe_unused u64 max_vruntime(u64 max_vruntime, u64 vruntime)
543 {
544 	if (vruntime_cmp(vruntime, ">", max_vruntime))
545 		max_vruntime = vruntime;
546 
547 	return max_vruntime;
548 }
549 
550 static inline __maybe_unused u64 min_vruntime(u64 min_vruntime, u64 vruntime)
551 {
552 	if (vruntime_cmp(vruntime, "<", min_vruntime))
553 		min_vruntime = vruntime;
554 
555 	return min_vruntime;
556 }
557 
558 static inline bool entity_before(const struct sched_entity *a,
559 				 const struct sched_entity *b)
560 {
561 	/*
562 	 * Tiebreak on vruntime seems unnecessary since it can
563 	 * hardly happen.
564 	 */
565 	return vruntime_cmp(a->deadline, "<", b->deadline);
566 }
567 
568 /*
569  * Per avg_vruntime() below, cfs_rq::zero_vruntime is only slightly stale
570  * and this value should be no more than two lag bounds. Which puts it in the
571  * general order of:
572  *
573  *	(slice + TICK_NSEC) << NICE_0_LOAD_SHIFT
574  *
575  * which is around 44 bits in size (on 64bit); that is 20 for
576  * NICE_0_LOAD_SHIFT, another 20 for NSEC_PER_MSEC and then a handful for
577  * however many msec the actual slice+tick ends up begin.
578  *
579  * (disregarding the actual divide-by-weight part makes for the worst case
580  * weight of 2, which nicely cancels vs the fuzz in zero_vruntime not actually
581  * being the zero-lag point).
582  */
583 static inline s64 entity_key(struct cfs_rq *cfs_rq, struct sched_entity *se)
584 {
585 	return vruntime_op(se->vruntime, "-", cfs_rq->zero_vruntime);
586 }
587 
588 #define __node_2_se(node) \
589 	rb_entry((node), struct sched_entity, run_node)
590 
591 /*
592  * Compute virtual time from the per-task service numbers:
593  *
594  * Fair schedulers conserve lag:
595  *
596  *   \Sum lag_i = 0
597  *
598  * Where lag_i is given by:
599  *
600  *   lag_i = S - s_i = w_i * (V - v_i)
601  *
602  * Where S is the ideal service time and V is it's virtual time counterpart.
603  * Therefore:
604  *
605  *   \Sum lag_i = 0
606  *   \Sum w_i * (V - v_i) = 0
607  *   \Sum (w_i * V - w_i * v_i) = 0
608  *
609  * From which we can solve an expression for V in v_i (which we have in
610  * se->vruntime):
611  *
612  *       \Sum v_i * w_i   \Sum v_i * w_i
613  *   V = -------------- = --------------
614  *          \Sum w_i            W
615  *
616  * Specifically, this is the weighted average of all entity virtual runtimes.
617  *
618  * [[ NOTE: this is only equal to the ideal scheduler under the condition
619  *          that join/leave operations happen at lag_i = 0, otherwise the
620  *          virtual time has non-contiguous motion equivalent to:
621  *
622  *	      V +-= lag_i / W
623  *
624  *	    Also see the comment in place_entity() that deals with this. ]]
625  *
626  * However, since v_i is u64, and the multiplication could easily overflow
627  * transform it into a relative form that uses smaller quantities:
628  *
629  * Substitute: v_i == (v_i - v0) + v0
630  *
631  *     \Sum ((v_i - v0) + v0) * w_i   \Sum (v_i - v0) * w_i
632  * V = ---------------------------- = --------------------- + v0
633  *                  W                            W
634  *
635  * Which we track using:
636  *
637  *                    v0 := cfs_rq->zero_vruntime
638  * \Sum (v_i - v0) * w_i := cfs_rq->sum_w_vruntime
639  *              \Sum w_i := cfs_rq->sum_weight
640  *
641  * Since zero_vruntime closely tracks the per-task service, these
642  * deltas: (v_i - v0), will be in the order of the maximal (virtual) lag
643  * induced in the system due to quantisation.
644  */
645 static inline unsigned long avg_vruntime_weight(struct cfs_rq *cfs_rq, unsigned long w)
646 {
647 #ifdef CONFIG_64BIT
648 	if (cfs_rq->sum_shift)
649 		w = max(2UL, w >> cfs_rq->sum_shift);
650 #endif
651 	return w;
652 }
653 
654 static inline void
655 __sum_w_vruntime_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
656 {
657 	unsigned long weight = avg_vruntime_weight(cfs_rq, se->h_load.weight);
658 	s64 w_vruntime, key = entity_key(cfs_rq, se);
659 
660 	w_vruntime = key * weight;
661 	WARN_ON_ONCE((w_vruntime >> 63) != (w_vruntime >> 62));
662 
663 	cfs_rq->sum_w_vruntime += w_vruntime;
664 	cfs_rq->sum_weight += weight;
665 }
666 
667 static void
668 sum_w_vruntime_add_paranoid(struct cfs_rq *cfs_rq, struct sched_entity *se)
669 {
670 	unsigned long weight;
671 	s64 key, tmp;
672 
673 again:
674 	weight = avg_vruntime_weight(cfs_rq, se->h_load.weight);
675 	key = entity_key(cfs_rq, se);
676 
677 	if (check_mul_overflow(key, weight, &key))
678 		goto overflow;
679 
680 	if (check_add_overflow(cfs_rq->sum_w_vruntime, key, &tmp))
681 		goto overflow;
682 
683 	cfs_rq->sum_w_vruntime = tmp;
684 	cfs_rq->sum_weight += weight;
685 	return;
686 
687 overflow:
688 	/*
689 	 * There's gotta be a limit -- if we're still failing at this point
690 	 * there's really nothing much to be done about things.
691 	 */
692 	BUG_ON(cfs_rq->sum_shift >= 10);
693 	cfs_rq->sum_shift++;
694 
695 	/*
696 	 * Note: \Sum (k_i * (w_i >> 1)) != (\Sum (k_i * w_i)) >> 1
697 	 */
698 	cfs_rq->sum_w_vruntime = 0;
699 	cfs_rq->sum_weight = 0;
700 
701 	for (struct rb_node *node = cfs_rq->tasks_timeline.rb_leftmost;
702 	     node; node = rb_next(node))
703 		__sum_w_vruntime_add(cfs_rq, __node_2_se(node));
704 
705 	goto again;
706 }
707 
708 static void
709 sum_w_vruntime_add(struct cfs_rq *cfs_rq, struct sched_entity *se)
710 {
711 	if (sched_feat(PARANOID_AVG))
712 		return sum_w_vruntime_add_paranoid(cfs_rq, se);
713 
714 	__sum_w_vruntime_add(cfs_rq, se);
715 }
716 
717 static void
718 sum_w_vruntime_sub(struct cfs_rq *cfs_rq, struct sched_entity *se)
719 {
720 	unsigned long weight = avg_vruntime_weight(cfs_rq, se->h_load.weight);
721 	s64 key = entity_key(cfs_rq, se);
722 
723 	cfs_rq->sum_w_vruntime -= key * weight;
724 	cfs_rq->sum_weight -= weight;
725 }
726 
727 static inline
728 void update_zero_vruntime(struct cfs_rq *cfs_rq, s64 delta)
729 {
730 	/*
731 	 * v' = v + d ==> sum_w_vruntime' = sum_w_vruntime - d*sum_weight
732 	 */
733 	cfs_rq->sum_w_vruntime -= cfs_rq->sum_weight * delta;
734 	cfs_rq->zero_vruntime += delta;
735 }
736 
737 /*
738  * Specifically: avg_vruntime() + 0 must result in entity_eligible() := true
739  * For this to be so, the result of this function must have a left bias.
740  *
741  * Called in:
742  *  - place_entity()      -- before enqueue
743  *  - update_entity_lag() -- before dequeue
744  *  - update_deadline()   -- slice expiration
745  *
746  * This means it is one entry 'behind' but that puts it close enough to where
747  * the bound on entity_key() is at most two lag bounds.
748  */
749 u64 avg_vruntime(struct cfs_rq *cfs_rq)
750 {
751 	struct sched_entity *curr = cfs_rq->curr;
752 	long weight = cfs_rq->sum_weight;
753 	s64 delta = 0;
754 
755 	if (curr && !curr->on_rq)
756 		curr = NULL;
757 
758 	if (weight) {
759 		s64 runtime = cfs_rq->sum_w_vruntime;
760 
761 		if (curr) {
762 			unsigned long w = avg_vruntime_weight(cfs_rq, curr->h_load.weight);
763 
764 			runtime += entity_key(cfs_rq, curr) * w;
765 			weight += w;
766 		}
767 
768 		/* sign flips effective floor / ceiling */
769 		if (runtime < 0)
770 			runtime -= (weight - 1);
771 
772 		delta = div64_long(runtime, weight);
773 	} else if (curr) {
774 		/*
775 		 * When there is but one element, it is the average.
776 		 */
777 		delta = curr->vruntime - cfs_rq->zero_vruntime;
778 	}
779 
780 	update_zero_vruntime(cfs_rq, delta);
781 
782 	return cfs_rq->zero_vruntime;
783 }
784 
785 /*
786  *     \Sum (v_i - v0)*w_i
787  * V = ------------------- + v0
788  *          \Sum w_i
789  *
790  * Let W = \Sum w_i, and move v_j such that 'v_j == V', thus:
791  *
792  * V = 1/W * {(v_j - v0)*w_j + \Sum_i!=j (v_i - v0)*w_i} + v0
793  *
794  * v_j = 1/W * {(v_j - v0)*w_j + \Sum_i!=j (v_i - v0)*w_i} + v0
795  *
796  * v_j = 1/W * (v_j - v0)*w_j + 1/W * \Sum_i!=j (v_i - v0)*w_i + v0
797  *
798  * v_j - 1/W * (v_j - v0)*w_j = 1/W * \Sum_i!=j (v_i - v0)*w_i + v0
799  *
800  * v_j*W - (v_j - v0)*w_j = \Sum_i!=j (v_i - v0)*w_i + v0*W
801  *
802  * v_j*(W - w_j) + v0*w_j = \Sum_i!=j (v_i - v0)*w_i + v0*W
803  *
804  * v_j*(W - w_j) = \Sum_i!=j (v_i - v0)*w_i + v0*(W - w_j)
805  *
806  *       \Sum_i!=j (v_i - v0)*w_i
807  * v_j = ------------------------ + v0
808  *               W - w_j
809  *
810  * When v_j happens to be curr, then '\Sum_i!=j (v_i - v0)*w_i'
811  * is cfs_rq->sum_w_runtime, and 'W - w_j' is cfs_rq->sum_weight, since curr
812  * is not included in the sum.
813  */
814 static u64 ineligible_vruntime(struct cfs_rq *cfs_rq)
815 {
816 	struct sched_entity *curr = cfs_rq->curr;
817 	long weight = cfs_rq->sum_weight;
818 	s64 delta = 0;
819 
820 	if (curr && !curr->on_rq)
821 		curr = NULL;
822 
823 	/*
824 	 * This is called from set_next_task_fair(.first=true) /
825 	 * set_protect_slice() so curr had better be set and on_rq.
826 	 */
827 	WARN_ON_ONCE(!curr);
828 
829 	if (weight) {
830 		s64 runtime = cfs_rq->sum_w_vruntime;
831 
832 		/*
833 		 * Do not add @curr to obtain the effective '- w_j' terms.
834 		 */
835 
836 		/* sign flips effective floor / ceiling */
837 		if (runtime < 0)
838 			runtime -= (weight - 1);
839 
840 		delta = div64_long(runtime, weight);
841 	}
842 
843 	return cfs_rq->zero_vruntime + delta + 1;
844 }
845 
846 static inline u64 cfs_rq_max_slice(struct cfs_rq *cfs_rq);
847 
848 /*
849  * lag_i = S - s_i = w_i * (V - v_i)
850  *
851  * However, since V is approximated by the weighted average of all entities it
852  * is possible -- by addition/removal/reweight to the tree -- to move V around
853  * and end up with a larger lag than we started with.
854  *
855  * Limit this to either double the slice length with a minimum of TICK_NSEC
856  * since that is the timing granularity.
857  *
858  * EEVDF gives the following limit for a steady state system:
859  *
860  *   -r_max < lag < max(r_max, q)
861  */
862 static s64 entity_lag(struct cfs_rq *cfs_rq, struct sched_entity *se, u64 avruntime)
863 {
864 	u64 max_slice = cfs_rq_max_slice(cfs_rq) + TICK_NSEC;
865 	s64 vlag, limit;
866 
867 	vlag = avruntime - se->vruntime;
868 	limit = calc_delta_fair(max_slice, se);
869 
870 	return clamp(vlag, -limit, limit);
871 }
872 
873 /*
874  * Delayed dequeue aims to reduce the negative lag of a dequeued task. While
875  * updating the lag of an entity, check that negative lag didn't increase
876  * during the delayed dequeue period which would be unfair.
877  * Similarly, check that the entity didn't gain positive lag when DELAY_ZERO
878  * is set.
879  *
880  * Return true if the vlag has been modified. Specifically:
881  *
882  *   se->vlag != avg_vruntime() - se->vruntime
883  *
884  * This can be due to clamping in entity_lag() or clamping due to
885  * sched_delayed. Either way, when vlag is modified and the entity is
886  * retained, the tree needs to be adjusted.
887  */
888 static __always_inline
889 bool update_entity_lag(struct cfs_rq *cfs_rq, struct sched_entity *se)
890 {
891 	u64 avruntime = avg_vruntime(cfs_rq);
892 	s64 vlag = entity_lag(cfs_rq, se, avruntime);
893 
894 	if (se->sched_delayed) {
895 		/* previous vlag < 0 otherwise se would not be delayed */
896 		vlag = max(vlag, se->vlag);
897 		if (sched_feat(DELAY_ZERO))
898 			vlag = min(vlag, 0);
899 	}
900 	se->vlag = vlag;
901 
902 	return avruntime - vlag != se->vruntime;
903 }
904 
905 /*
906  * Entity is eligible once it received less service than it ought to have,
907  * eg. lag >= 0.
908  *
909  * lag_i = S - s_i = w_i*(V - v_i)
910  *
911  * lag_i >= 0 -> V >= v_i
912  *
913  *     \Sum (v_i - v0)*w_i
914  * V = ------------------- + v0
915  *          \Sum w_i
916  *
917  * lag_i >= 0 -> \Sum (v_i - v0)*w_i >= (v_i - v0)*(\Sum w_i)
918  *
919  * Note: using 'avg_vruntime() > se->vruntime' is inaccurate due
920  *       to the loss in precision caused by the division.
921  */
922 static int vruntime_eligible(struct cfs_rq *cfs_rq, u64 vruntime)
923 {
924 	struct sched_entity *curr = cfs_rq->curr;
925 	s64 key, avg = cfs_rq->sum_w_vruntime;
926 	long load = cfs_rq->sum_weight;
927 
928 	if (curr && curr->on_rq) {
929 		unsigned long weight = avg_vruntime_weight(cfs_rq, curr->h_load.weight);
930 
931 		avg += entity_key(cfs_rq, curr) * weight;
932 		load += weight;
933 	}
934 
935 	key = vruntime_op(vruntime, "-", cfs_rq->zero_vruntime);
936 
937 	/*
938 	 * The worst case term for @key includes 'NSEC_TICK * NICE_0_LOAD'
939 	 * and @load obviously includes NICE_0_LOAD. NSEC_TICK is around 24
940 	 * bits, while NICE_0_LOAD is 20 on 64bit and 10 otherwise.
941 	 *
942 	 * This gives that on 64bit the product will be at least 64bit which
943 	 * overflows s64, while on 32bit it will only be 44bits and should fit
944 	 * comfortably.
945 	 */
946 #ifdef CONFIG_64BIT
947 #ifdef CONFIG_ARCH_SUPPORTS_INT128
948 	/* This often results in simpler code than __builtin_mul_overflow(). */
949 	return avg >= (__int128)key * load;
950 #else
951 	s64 rhs;
952 	/*
953 	 * On overflow, the sign of key tells us the correct answer: a large
954 	 * positive key means vruntime >> V, so not eligible; a large negative
955 	 * key means vruntime << V, so eligible.
956 	 */
957 	if (check_mul_overflow(key, load, &rhs))
958 		return key <= 0;
959 
960 	return avg >= rhs;
961 #endif
962 #else /* 32bit */
963 	return avg >= key * load;
964 #endif
965 }
966 
967 int entity_eligible(struct cfs_rq *cfs_rq, struct sched_entity *se)
968 {
969 	return vruntime_eligible(cfs_rq, se->vruntime);
970 }
971 
972 static inline u64 cfs_rq_min_slice(struct cfs_rq *cfs_rq)
973 {
974 	struct sched_entity *root = __pick_root_entity(cfs_rq);
975 	struct sched_entity *curr = cfs_rq->curr;
976 	u64 min_slice = ~0ULL;
977 
978 	if (curr && curr->on_rq)
979 		min_slice = curr->slice;
980 
981 	if (root)
982 		min_slice = min(min_slice, root->min_slice);
983 
984 	return min_slice;
985 }
986 
987 static inline u64 cfs_rq_max_slice(struct cfs_rq *cfs_rq)
988 {
989 	struct sched_entity *root = __pick_root_entity(cfs_rq);
990 	struct sched_entity *curr = cfs_rq->curr;
991 	u64 max_slice = 0ULL;
992 
993 	if (curr && curr->on_rq)
994 		max_slice = curr->slice;
995 
996 	if (root)
997 		max_slice = max(max_slice, root->max_slice);
998 
999 	return max_slice;
1000 }
1001 
1002 static inline bool __entity_less(struct rb_node *a, const struct rb_node *b)
1003 {
1004 	return entity_before(__node_2_se(a), __node_2_se(b));
1005 }
1006 
1007 static inline void __min_vruntime_update(struct sched_entity *se, struct rb_node *node)
1008 {
1009 	if (node) {
1010 		struct sched_entity *rse = __node_2_se(node);
1011 
1012 		if (vruntime_cmp(se->min_vruntime, ">", rse->min_vruntime))
1013 			se->min_vruntime = rse->min_vruntime;
1014 	}
1015 }
1016 
1017 static inline void __min_slice_update(struct sched_entity *se, struct rb_node *node)
1018 {
1019 	if (node) {
1020 		struct sched_entity *rse = __node_2_se(node);
1021 		if (rse->min_slice < se->min_slice)
1022 			se->min_slice = rse->min_slice;
1023 	}
1024 }
1025 
1026 static inline void __max_slice_update(struct sched_entity *se, struct rb_node *node)
1027 {
1028 	if (node) {
1029 		struct sched_entity *rse = __node_2_se(node);
1030 		if (rse->max_slice > se->max_slice)
1031 			se->max_slice = rse->max_slice;
1032 	}
1033 }
1034 
1035 /*
1036  * se->min_vruntime = min(se->vruntime, {left,right}->min_vruntime)
1037  */
1038 static inline bool min_vruntime_update(struct sched_entity *se, bool exit)
1039 {
1040 	u64 old_min_vruntime = se->min_vruntime;
1041 	u64 old_min_slice = se->min_slice;
1042 	u64 old_max_slice = se->max_slice;
1043 	struct rb_node *node = &se->run_node;
1044 
1045 	se->min_vruntime = se->vruntime;
1046 	__min_vruntime_update(se, node->rb_right);
1047 	__min_vruntime_update(se, node->rb_left);
1048 
1049 	se->min_slice = se->slice;
1050 	__min_slice_update(se, node->rb_right);
1051 	__min_slice_update(se, node->rb_left);
1052 
1053 	se->max_slice = se->slice;
1054 	__max_slice_update(se, node->rb_right);
1055 	__max_slice_update(se, node->rb_left);
1056 
1057 	return se->min_vruntime == old_min_vruntime &&
1058 	       se->min_slice == old_min_slice &&
1059 	       se->max_slice == old_max_slice;
1060 }
1061 
1062 RB_DECLARE_CALLBACKS(static, min_vruntime_cb, struct sched_entity,
1063 		     run_node, min_vruntime, min_vruntime_update);
1064 
1065 /*
1066  * Enqueue an entity into the rb-tree:
1067  */
1068 static void __enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
1069 {
1070 	WARN_ON_ONCE(&rq_of(cfs_rq)->cfs != cfs_rq);
1071 	WARN_ON_ONCE(!entity_is_task(se));
1072 
1073 	sum_w_vruntime_add(cfs_rq, se);
1074 	se->min_vruntime = se->vruntime;
1075 	se->min_slice = se->slice;
1076 	rb_add_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
1077 				__entity_less, &min_vruntime_cb);
1078 }
1079 
1080 static void __dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
1081 {
1082 	WARN_ON_ONCE(&rq_of(cfs_rq)->cfs != cfs_rq);
1083 	WARN_ON_ONCE(!entity_is_task(se));
1084 
1085 	rb_erase_augmented_cached(&se->run_node, &cfs_rq->tasks_timeline,
1086 				  &min_vruntime_cb);
1087 	sum_w_vruntime_sub(cfs_rq, se);
1088 }
1089 
1090 struct sched_entity *__pick_root_entity(struct cfs_rq *cfs_rq)
1091 {
1092 	struct rb_node *root = cfs_rq->tasks_timeline.rb_root.rb_node;
1093 
1094 	if (!root)
1095 		return NULL;
1096 
1097 	return __node_2_se(root);
1098 }
1099 
1100 struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq)
1101 {
1102 	struct rb_node *left = rb_first_cached(&cfs_rq->tasks_timeline);
1103 
1104 	if (!left)
1105 		return NULL;
1106 
1107 	return __node_2_se(left);
1108 }
1109 
1110 /*
1111  * Set the vruntime up to which an entity can run before looking
1112  * for another entity to pick.
1113  * In case of run to parity, we use the shortest slice of the enqueued
1114  * entities to set the protected period.
1115  * When run to parity is disabled, we give a minimum quantum to the running
1116  * entity to ensure progress.
1117  */
1118 static inline void set_protect_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
1119 {
1120 	u64 slice = normalized_sysctl_sched_base_slice;
1121 	u64 vprot = se->deadline;
1122 
1123 	if (sched_feat(RUN_TO_PARITY))
1124 		slice = cfs_rq_min_slice(cfs_rq);
1125 
1126 	slice = min(slice, se->slice);
1127 
1128 	/* If there are shorter slices than se's one */
1129 	if (slice != se->slice) {
1130 		if (sched_feat(PREEMPT_SHORT))
1131 			vprot = min_vruntime(vprot, ineligible_vruntime(cfs_rq));
1132 		else
1133 			vprot = min_vruntime(vprot, se->vruntime + calc_delta_fair(slice, se));
1134 	}
1135 
1136 	se->vprot = vprot;
1137 }
1138 
1139 static inline void update_protect_slice(struct cfs_rq *cfs_rq, struct sched_entity *se)
1140 {
1141 	u64 slice = cfs_rq_min_slice(cfs_rq);
1142 	u64 vruntime = min_vruntime(se->vruntime, avg_vruntime(cfs_rq));
1143 
1144 	se->vprot = min_vruntime(se->vprot, vruntime + calc_delta_fair(slice, se));
1145 }
1146 
1147 static inline bool protect_slice(struct sched_entity *se)
1148 {
1149 	return vruntime_cmp(se->vruntime, "<", se->vprot);
1150 }
1151 
1152 static inline void cancel_protect_slice(struct sched_entity *se)
1153 {
1154 	if (protect_slice(se))
1155 		se->vprot = se->vruntime;
1156 }
1157 
1158 /*
1159  * Earliest Eligible Virtual Deadline First
1160  *
1161  * In order to provide latency guarantees for different request sizes
1162  * EEVDF selects the best runnable task from two criteria:
1163  *
1164  *  1) the task must be eligible (must be owed service)
1165  *
1166  *  2) from those tasks that meet 1), we select the one
1167  *     with the earliest virtual deadline.
1168  *
1169  * We can do this in O(log n) time due to an augmented RB-tree. The
1170  * tree keeps the entries sorted on deadline, but also functions as a
1171  * heap based on the vruntime by keeping:
1172  *
1173  *  se->min_vruntime = min(se->vruntime, se->{left,right}->min_vruntime)
1174  *
1175  * Which allows tree pruning through eligibility.
1176  */
1177 static struct sched_entity *pick_eevdf(struct cfs_rq *cfs_rq, bool protect)
1178 {
1179 	struct rb_node *node = cfs_rq->tasks_timeline.rb_root.rb_node;
1180 	struct sched_entity *se = __pick_first_entity(cfs_rq);
1181 	struct sched_entity *curr = cfs_rq->curr;
1182 	struct sched_entity *best = NULL;
1183 
1184 	/*
1185 	 * We can safely skip eligibility check if there is only one entity
1186 	 * in this cfs_rq, saving some cycles.
1187 	 */
1188 	if (cfs_rq->h_nr_queued == 1)
1189 		return curr && curr->on_rq ? curr : se;
1190 
1191 	/*
1192 	 * Picking the ->next buddy will affect latency but not fairness.
1193 	 */
1194 	if (sched_feat(PICK_BUDDY) && protect &&
1195 	    cfs_rq->next && entity_eligible(cfs_rq, cfs_rq->next)) {
1196 		/* ->next will never be delayed */
1197 		WARN_ON_ONCE(cfs_rq->next->sched_delayed);
1198 		return cfs_rq->next;
1199 	}
1200 
1201 	if (curr && (!curr->on_rq || !entity_eligible(cfs_rq, curr)))
1202 		curr = NULL;
1203 
1204 	if (curr && protect && protect_slice(curr))
1205 		return curr;
1206 
1207 	/* Pick the leftmost entity if it's eligible */
1208 	if (se && entity_eligible(cfs_rq, se)) {
1209 		best = se;
1210 		goto found;
1211 	}
1212 
1213 	/* Heap search for the EEVD entity */
1214 	while (node) {
1215 		struct rb_node *left = node->rb_left;
1216 
1217 		/*
1218 		 * Eligible entities in left subtree are always better
1219 		 * choices, since they have earlier deadlines.
1220 		 */
1221 		if (left && vruntime_eligible(cfs_rq,
1222 					__node_2_se(left)->min_vruntime)) {
1223 			node = left;
1224 			continue;
1225 		}
1226 
1227 		se = __node_2_se(node);
1228 
1229 		/*
1230 		 * The left subtree either is empty or has no eligible
1231 		 * entity, so check the current node since it is the one
1232 		 * with earliest deadline that might be eligible.
1233 		 */
1234 		if (entity_eligible(cfs_rq, se)) {
1235 			best = se;
1236 			break;
1237 		}
1238 
1239 		node = node->rb_right;
1240 	}
1241 found:
1242 	if (!best || (curr && entity_before(curr, best)))
1243 		best = curr;
1244 
1245 	return best;
1246 }
1247 
1248 struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq)
1249 {
1250 	struct rb_node *last = rb_last(&cfs_rq->tasks_timeline.rb_root);
1251 
1252 	if (!last)
1253 		return NULL;
1254 
1255 	return __node_2_se(last);
1256 }
1257 
1258 /**************************************************************
1259  * Scheduling class statistics methods:
1260  */
1261 int sched_update_scaling(void)
1262 {
1263 	unsigned int factor = get_update_sysctl_factor();
1264 
1265 #define WRT_SYSCTL(name) \
1266 	(normalized_sysctl_##name = sysctl_##name / (factor))
1267 	WRT_SYSCTL(sched_base_slice);
1268 #undef WRT_SYSCTL
1269 
1270 	return 0;
1271 }
1272 
1273 static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se);
1274 
1275 /*
1276  * XXX: strictly: vd_i += N*r_i/w_i such that: vd_i > ve_i
1277  * this is probably good enough.
1278  */
1279 static bool update_deadline(struct cfs_rq *cfs_rq, struct sched_entity *se)
1280 {
1281 	if (vruntime_cmp(se->vruntime, "<", se->deadline))
1282 		return false;
1283 
1284 	/*
1285 	 * For EEVDF the virtual time slope is determined by w_i (iow.
1286 	 * nice) while the request time r_i is determined by
1287 	 * sysctl_sched_base_slice.
1288 	 */
1289 	if (!se->custom_slice)
1290 		se->slice = sysctl_sched_base_slice;
1291 
1292 	/*
1293 	 * EEVDF: vd_i = ve_i + r_i / w_i
1294 	 */
1295 	se->deadline = se->vruntime + calc_delta_fair(se->slice, se);
1296 	avg_vruntime(cfs_rq);
1297 
1298 	/*
1299 	 * The task has consumed its request, reschedule.
1300 	 */
1301 	return true;
1302 }
1303 
1304 #include "pelt.h"
1305 
1306 static int select_idle_sibling(struct task_struct *p, int prev_cpu, int cpu);
1307 static unsigned long task_h_load(struct task_struct *p);
1308 static unsigned long capacity_of(int cpu);
1309 
1310 /* Give new sched_entity start runnable values to heavy its load in infant time */
1311 void init_entity_runnable_average(struct sched_entity *se)
1312 {
1313 	struct sched_avg *sa = &se->avg;
1314 
1315 	memset(sa, 0, sizeof(*sa));
1316 
1317 	/*
1318 	 * Tasks are initialized with full load to be seen as heavy tasks until
1319 	 * they get a chance to stabilize to their real load level.
1320 	 * Group entities are initialized with zero load to reflect the fact that
1321 	 * nothing has been attached to the task group yet.
1322 	 */
1323 	if (entity_is_task(se))
1324 		sa->load_avg = scale_load_down(se->load.weight);
1325 
1326 	/* when this task is enqueued, it will contribute to its cfs_rq's load_avg */
1327 }
1328 
1329 /*
1330  * With new tasks being created, their initial util_avgs are extrapolated
1331  * based on the cfs_rq's current util_avg:
1332  *
1333  *   util_avg = cfs_rq->avg.util_avg / (cfs_rq->avg.load_avg + 1)
1334  *		* se_weight(se)
1335  *
1336  * However, in many cases, the above util_avg does not give a desired
1337  * value. Moreover, the sum of the util_avgs may be divergent, such
1338  * as when the series is a harmonic series.
1339  *
1340  * To solve this problem, we also cap the util_avg of successive tasks to
1341  * only 1/2 of the left utilization budget:
1342  *
1343  *   util_avg_cap = (cpu_scale - cfs_rq->avg.util_avg) / 2^n
1344  *
1345  * where n denotes the nth task and cpu_scale the CPU capacity.
1346  *
1347  * For example, for a CPU with 1024 of capacity, a simplest series from
1348  * the beginning would be like:
1349  *
1350  *  task  util_avg: 512, 256, 128,  64,  32,   16,    8, ...
1351  * cfs_rq util_avg: 512, 768, 896, 960, 992, 1008, 1016, ...
1352  *
1353  * Finally, that extrapolated util_avg is clamped to the cap (util_avg_cap)
1354  * if util_avg > util_avg_cap.
1355  */
1356 void post_init_entity_util_avg(struct task_struct *p)
1357 {
1358 	struct sched_entity *se = &p->se;
1359 	struct cfs_rq *cfs_rq = cfs_rq_of(se);
1360 	struct sched_avg *sa = &se->avg;
1361 	long cpu_scale = arch_scale_cpu_capacity(cpu_of(rq_of(cfs_rq)));
1362 	long cap = (long)(cpu_scale - cfs_rq->avg.util_avg) / 2;
1363 
1364 	if (p->sched_class != &fair_sched_class) {
1365 		/*
1366 		 * For !fair tasks do:
1367 		 *
1368 		update_cfs_rq_load_avg(now, cfs_rq);
1369 		attach_entity_load_avg(cfs_rq, se);
1370 		switched_from_fair(rq, p);
1371 		 *
1372 		 * such that the next switched_to_fair() has the
1373 		 * expected state.
1374 		 */
1375 		se->avg.last_update_time = cfs_rq_clock_pelt(cfs_rq);
1376 		return;
1377 	}
1378 
1379 	if (cap > 0) {
1380 		if (cfs_rq->avg.util_avg != 0) {
1381 			sa->util_avg  = cfs_rq->avg.util_avg * se_weight(se);
1382 			sa->util_avg /= (cfs_rq->avg.load_avg + 1);
1383 
1384 			if (sa->util_avg > cap)
1385 				sa->util_avg = cap;
1386 		} else {
1387 			sa->util_avg = cap;
1388 		}
1389 	}
1390 
1391 	sa->runnable_avg = sa->util_avg;
1392 }
1393 
1394 static inline void account_mm_sched(struct rq *rq, struct task_struct *p, s64 delta_exec);
1395 
1396 static s64 update_se(struct rq *rq, struct sched_entity *se)
1397 {
1398 	u64 now = rq_clock_task(rq);
1399 	s64 delta_exec;
1400 
1401 	delta_exec = now - se->exec_start;
1402 	if (unlikely(delta_exec <= 0))
1403 		return delta_exec;
1404 
1405 	se->exec_start = now;
1406 	if (entity_is_task(se)) {
1407 		struct task_struct *donor = task_of(se);
1408 		struct task_struct *running = rq->curr;
1409 		/*
1410 		 * If se is a task, we account the time against the running
1411 		 * task, as w/ proxy-exec they may not be the same.
1412 		 */
1413 		running->se.exec_start = now;
1414 		running->se.sum_exec_runtime += delta_exec;
1415 
1416 		trace_sched_stat_runtime(running, delta_exec);
1417 		account_group_exec_runtime(running, delta_exec);
1418 		account_mm_sched(rq, running, delta_exec);
1419 
1420 		/* cgroup time is always accounted against the donor */
1421 		cgroup_account_cputime(donor, delta_exec);
1422 	} else {
1423 		/* If not task, account the time against donor se  */
1424 		se->sum_exec_runtime += delta_exec;
1425 	}
1426 
1427 	if (schedstat_enabled()) {
1428 		struct sched_statistics *stats;
1429 
1430 		stats = __schedstats_from_se(se);
1431 		__schedstat_set(stats->exec_max,
1432 				max(delta_exec, stats->exec_max));
1433 	}
1434 
1435 	return delta_exec;
1436 }
1437 
1438 #ifdef CONFIG_SCHED_CACHE
1439 
1440 /*
1441  * XXX numbers come from a place the sun don't shine -- probably wants to be SD
1442  * tunable or so.
1443  */
1444 #define EPOCH_PERIOD	(HZ / 100)	/* 10 ms */
1445 #define EPOCH_LLC_AFFINITY_TIMEOUT	5	/* 50 ms */
1446 __read_mostly unsigned int llc_aggr_tolerance	= 1;
1447 __read_mostly unsigned int llc_epoch_period	= EPOCH_PERIOD;
1448 __read_mostly unsigned int llc_epoch_affinity_timeout = EPOCH_LLC_AFFINITY_TIMEOUT;
1449 __read_mostly unsigned int llc_imb_pct		= 20;
1450 __read_mostly unsigned int llc_overaggr_pct	= 50;
1451 
1452 static int llc_id(int cpu)
1453 {
1454 	if (cpu < 0)
1455 		return -1;
1456 
1457 	return per_cpu(sd_llc_id, cpu);
1458 }
1459 
1460 static inline int get_sched_cache_scale(int mul)
1461 {
1462 	unsigned int tol = READ_ONCE(llc_aggr_tolerance);
1463 
1464 	if (!tol)
1465 		return 0;
1466 
1467 	if (tol >= 100)
1468 		return INT_MAX;
1469 
1470 	return (1 + (tol - 1) * mul);
1471 }
1472 
1473 static bool exceed_llc_capacity(struct mm_struct *mm, int cpu)
1474 {
1475 #ifdef CONFIG_NUMA_BALANCING
1476 	unsigned long llc, footprint;
1477 	struct sched_domain *sd;
1478 	int scale;
1479 
1480 	guard(rcu)();
1481 
1482 	sd = rcu_dereference_sched_domain(cpu_rq(cpu)->sd);
1483 	if (!sd)
1484 		return true;
1485 
1486 	if (static_branch_likely(&sched_numa_balancing)) {
1487 		/*
1488 		 * TBD: RDT exclusive LLC ways reserved should be
1489 		 * excluded.
1490 		 */
1491 		llc = sd->llc_bytes;
1492 		footprint = READ_ONCE(mm->sc_stat.footprint);
1493 
1494 		/*
1495 		 * Scale the LLC size by 256*llc_aggr_tolerance
1496 		 * and compare it to the task's footprint.
1497 		 *
1498 		 * Suppose the L3 size is 32MB. If the
1499 		 * llc_aggr_tolerance is 1:
1500 		 * When the footprint is larger than 32MB, the
1501 		 * process is regarded as exceeding the LLC
1502 		 * capacity. If the llc_aggr_tolerance is 99:
1503 		 * When the footprint is larger than 784GB, the
1504 		 * process is regarded as exceeding the LLC
1505 		 * capacity:
1506 		 * 784GB = (1 + (99 - 1) * 256) * 32MB
1507 		 * If the llc_aggr_tolerance is 100:
1508 		 * ignore the footprint and do the aggregation
1509 		 * anyway.
1510 		 */
1511 		scale = get_sched_cache_scale(256);
1512 		if (scale == INT_MAX)
1513 			return false;
1514 
1515 		return ((llc * (u64)scale) < (footprint * PAGE_SIZE));
1516 	}
1517 #endif
1518 	return false;
1519 }
1520 
1521 static bool invalid_llc_nr(struct mm_struct *mm, struct task_struct *p,
1522 			   int cpu)
1523 {
1524 	int scale;
1525 
1526 	if (get_nr_threads(p) <= 1)
1527 		return true;
1528 
1529 	/*
1530 	 * Scale the number of 'cores' in a LLC by llc_aggr_tolerance
1531 	 * and compare it to the task's active threads.
1532 	 */
1533 	scale = get_sched_cache_scale(1);
1534 	if (scale == INT_MAX)
1535 		return false;
1536 
1537 	return !fits_capacity((mm->sc_stat.nr_running_avg * cpu_smt_num_threads),
1538 			(scale * per_cpu(sd_llc_size, cpu)));
1539 }
1540 
1541 static void account_llc_enqueue(struct rq *rq, struct task_struct *p)
1542 {
1543 	int pref_llc, pref_llc_queued;
1544 	struct sched_domain *sd;
1545 
1546 	pref_llc = p->preferred_llc;
1547 	if (pref_llc < 0)
1548 		return;
1549 
1550 	pref_llc_queued = (pref_llc == task_llc(p));
1551 	rq->nr_llc_running++;
1552 	rq->nr_pref_llc_running += pref_llc_queued;
1553 
1554 	/*
1555 	 * Record whether p is enqueued on its preferred
1556 	 * LLC, in order to pair with account_llc_dequeue()
1557 	 * to maintain a consistent nr_pref_llc_running per
1558 	 * runqueue.
1559 	 * This is necessary because a race condition exists:
1560 	 * after a task is enqueued on a runqueue, task_llc(p)
1561 	 * may change due to CPU hotplug. Therefore, checking
1562 	 * task_llc(p) to determine whether the task is being
1563 	 * dequeued from its preferred LLC is unreliable and
1564 	 * can cause inconsistent values - checking the
1565 	 * p->pref_llc_queued in account_llc_dequeue() would
1566 	 * be reliable.
1567 	 */
1568 	p->pref_llc_queued = pref_llc_queued;
1569 
1570 	sd = rcu_dereference_all(rq->sd);
1571 	if (sd && (unsigned int)pref_llc < sd->llc_max)
1572 		sd->llc_counts[pref_llc]++;
1573 }
1574 
1575 static void account_llc_dequeue(struct rq *rq, struct task_struct *p)
1576 {
1577 	struct sched_domain *sd;
1578 	int pref_llc;
1579 
1580 	pref_llc = p->preferred_llc;
1581 	if (pref_llc < 0)
1582 		return;
1583 
1584 	rq->nr_llc_running--;
1585 	if (p->pref_llc_queued) {
1586 		rq->nr_pref_llc_running--;
1587 		/*
1588 		 * Update the status in case
1589 		 * other logic might query
1590 		 * this.
1591 		 */
1592 		p->pref_llc_queued = 0;
1593 	}
1594 
1595 	sd = rcu_dereference_all(rq->sd);
1596 	if (sd && (unsigned int)pref_llc < sd->llc_max) {
1597 		/*
1598 		 * There is a race condition between dequeue
1599 		 * and CPU hotplug. After a task has been enqueued
1600 		 * on CPUx, a CPU hotplug event occurs, and all online
1601 		 * CPUs (including CPUx) rebuild their sched_domains
1602 		 * and reset statistics to zero(including sd->llc_counts).
1603 		 * This can cause temporary undercount and we have to
1604 		 * check for such underflow in sd->llc_counts.
1605 		 *
1606 		 * This undercount is temporary and accurate accounting
1607 		 * will resume once the rq has a chance to be idle.
1608 		 */
1609 		if (sd->llc_counts[pref_llc])
1610 			sd->llc_counts[pref_llc]--;
1611 	}
1612 }
1613 
1614 void mm_init_sched(struct mm_struct *mm,
1615 		   struct sched_cache_time __percpu *_pcpu_sched)
1616 {
1617 	unsigned long epoch = 0;
1618 	int i;
1619 
1620 	for_each_possible_cpu(i) {
1621 		struct sched_cache_time *pcpu_sched = per_cpu_ptr(_pcpu_sched, i);
1622 		struct rq *rq = cpu_rq(i);
1623 
1624 		pcpu_sched->runtime = 0;
1625 		/* a slightly stale cpu epoch is acceptible */
1626 		pcpu_sched->epoch = rq->cpu_epoch;
1627 		epoch = rq->cpu_epoch;
1628 	}
1629 
1630 	raw_spin_lock_init(&mm->sc_stat.lock);
1631 	mm->sc_stat.epoch = epoch;
1632 	mm->sc_stat.cpu = -1;
1633 	mm->sc_stat.next_scan = jiffies;
1634 	mm->sc_stat.nr_running_avg = 0;
1635 	mm->sc_stat.footprint = 0;
1636 	/*
1637 	 * The update to mm->sc_stat should not be reordered
1638 	 * before initialization to mm's other fields, in case
1639 	 * the readers may get invalid mm_sched_epoch, etc.
1640 	 */
1641 	smp_store_release(&mm->sc_stat.pcpu_sched, _pcpu_sched);
1642 }
1643 
1644 /* because why would C be fully specified */
1645 static __always_inline void __shr_u64(u64 *val, unsigned int n)
1646 {
1647 	if (n >= 64) {
1648 		*val = 0;
1649 		return;
1650 	}
1651 	*val >>= n;
1652 }
1653 
1654 static inline void __update_mm_sched(struct rq *rq,
1655 				     struct sched_cache_time *pcpu_sched)
1656 {
1657 	lockdep_assert_held(&rq->cpu_epoch_lock);
1658 
1659 	unsigned int period = max(READ_ONCE(llc_epoch_period), 1U);
1660 	unsigned long n, now = jiffies;
1661 	long delta = now - rq->cpu_epoch_next;
1662 
1663 	if (delta > 0) {
1664 		n = (delta + period - 1) / period;
1665 		rq->cpu_epoch += n;
1666 		rq->cpu_epoch_next += n * period;
1667 		__shr_u64(&rq->cpu_runtime, n);
1668 	}
1669 
1670 	n = rq->cpu_epoch - pcpu_sched->epoch;
1671 	if (n) {
1672 		pcpu_sched->epoch += n;
1673 		__shr_u64(&pcpu_sched->runtime, n);
1674 	}
1675 }
1676 
1677 static unsigned long fraction_mm_sched(struct rq *rq,
1678 				       struct sched_cache_time *pcpu_sched)
1679 {
1680 	guard(raw_spinlock_irqsave)(&rq->cpu_epoch_lock);
1681 
1682 	__update_mm_sched(rq, pcpu_sched);
1683 
1684 	/*
1685 	 * Runtime is a geometric series (r=0.5) and as such will sum to twice
1686 	 * the accumulation period, this means the multiplcation here should
1687 	 * not overflow.
1688 	 */
1689 	return div64_u64(NICE_0_LOAD * pcpu_sched->runtime, rq->cpu_runtime + 1);
1690 }
1691 
1692 static int get_pref_llc(struct task_struct *p, struct mm_struct *mm)
1693 {
1694 	int mm_sched_llc = -1, mm_sched_cpu;
1695 
1696 	if (!mm)
1697 		return -1;
1698 
1699 	mm_sched_cpu = READ_ONCE(mm->sc_stat.cpu);
1700 	if (mm_sched_cpu != -1) {
1701 		mm_sched_llc = llc_id(mm_sched_cpu);
1702 
1703 #ifdef CONFIG_NUMA_BALANCING
1704 		/*
1705 		 * Don't assign preferred LLC if it
1706 		 * conflicts with NUMA balancing.
1707 		 * This can happen when sched_setnuma() gets
1708 		 * called, however it is not much of an issue
1709 		 * because we expect account_mm_sched() to get
1710 		 * called fairly regularly -- at a higher rate
1711 		 * than sched_setnuma() at least -- and thus the
1712 		 * conflict only exists for a short period of time.
1713 		 */
1714 		if (static_branch_likely(&sched_numa_balancing) &&
1715 		    p->numa_preferred_nid >= 0 &&
1716 		    cpu_to_node(mm_sched_cpu) != p->numa_preferred_nid)
1717 			mm_sched_llc = -1;
1718 #endif
1719 	}
1720 
1721 	return mm_sched_llc;
1722 }
1723 
1724 static unsigned int task_running_on_cpu(int cpu, struct task_struct *p);
1725 
1726 static inline
1727 void account_mm_sched(struct rq *rq, struct task_struct *p, s64 delta_exec)
1728 {
1729 	struct sched_cache_time *pcpu_sched;
1730 	struct mm_struct *mm = p->mm;
1731 	int mm_sched_llc = -1;
1732 	unsigned long epoch;
1733 
1734 	if (!sched_cache_enabled())
1735 		return;
1736 
1737 	if (p->sched_class != &fair_sched_class)
1738 		return;
1739 	/*
1740 	 * init_task, kthreads and user thread created
1741 	 * by user_mode_thread() don't have mm.
1742 	 */
1743 	if (!mm || !mm->sc_stat.pcpu_sched)
1744 		return;
1745 
1746 	pcpu_sched = per_cpu_ptr(mm->sc_stat.pcpu_sched, cpu_of(rq));
1747 
1748 	scoped_guard (raw_spinlock, &rq->cpu_epoch_lock) {
1749 		__update_mm_sched(rq, pcpu_sched);
1750 		pcpu_sched->runtime += delta_exec;
1751 		rq->cpu_runtime += delta_exec;
1752 		epoch = rq->cpu_epoch;
1753 	}
1754 
1755 	/*
1756 	 * If this process hasn't hit task_cache_work() for a while invalidate
1757 	 * its preferred state.
1758 	 */
1759 	if ((long)(epoch - READ_ONCE(mm->sc_stat.epoch)) > llc_epoch_affinity_timeout ||
1760 	    invalid_llc_nr(mm, p, cpu_of(rq)) ||
1761 	    exceed_llc_capacity(mm, cpu_of(rq))) {
1762 		if (READ_ONCE(mm->sc_stat.cpu) != -1)
1763 			WRITE_ONCE(mm->sc_stat.cpu, -1);
1764 	}
1765 
1766 	mm_sched_llc = get_pref_llc(p, mm);
1767 
1768 	/* task not on rq accounted later in account_entity_enqueue() */
1769 	if (task_running_on_cpu(rq->cpu, p) &&
1770 	    READ_ONCE(p->preferred_llc) != mm_sched_llc) {
1771 		account_llc_dequeue(rq, p);
1772 		WRITE_ONCE(p->preferred_llc, mm_sched_llc);
1773 		account_llc_enqueue(rq, p);
1774 	}
1775 }
1776 
1777 static void task_tick_cache(struct rq *rq, struct task_struct *p)
1778 {
1779 	struct callback_head *work = &p->cache_work;
1780 	struct mm_struct *mm = p->mm;
1781 	unsigned long epoch;
1782 
1783 	if (!sched_cache_enabled())
1784 		return;
1785 
1786 	if (!mm || p->flags & PF_KTHREAD ||
1787 	    !mm->sc_stat.pcpu_sched)
1788 		return;
1789 
1790 	epoch = rq->cpu_epoch;
1791 	/* avoid moving backwards */
1792 	if (time_after_eq(mm->sc_stat.epoch, epoch))
1793 		return;
1794 
1795 	guard(raw_spinlock)(&mm->sc_stat.lock);
1796 
1797 	if (work->next == work) {
1798 		task_work_add(p, work, TWA_RESUME);
1799 		WRITE_ONCE(mm->sc_stat.epoch, epoch);
1800 	}
1801 }
1802 
1803 static void get_scan_cpumasks(cpumask_var_t cpus, struct task_struct *p)
1804 {
1805 #ifdef CONFIG_NUMA_BALANCING
1806 	int cpu, curr_cpu, nid, pref_nid;
1807 
1808 	if (!static_branch_likely(&sched_numa_balancing))
1809 		goto out;
1810 
1811 	cpu = READ_ONCE(p->mm->sc_stat.cpu);
1812 	if (cpu != -1)
1813 		nid = cpu_to_node(cpu);
1814 	curr_cpu = task_cpu(p);
1815 
1816 	/*
1817 	 * Scanning in the preferred NUMA node is ideal. However, the NUMA
1818 	 * preferred node is per-task rather than per-process. It is possible
1819 	 * for different threads of the process to have distinct preferred
1820 	 * nodes; consequently, the process-wide preferred LLC may bounce
1821 	 * between different nodes. As a workaround, maintain the scan
1822 	 * CPU mask to also cover the process's current preferred LLC and the
1823 	 * current running node to mitigate the bouncing risk.
1824 	 * TBD: numa_group should be considered during task aggregation.
1825 	 */
1826 	pref_nid = p->numa_preferred_nid;
1827 	/* honor the task's preferred node */
1828 	if (pref_nid == NUMA_NO_NODE)
1829 		goto out;
1830 
1831 	cpumask_or(cpus, cpus, cpumask_of_node(pref_nid));
1832 
1833 	/* honor the task's preferred LLC CPU */
1834 	if (cpu != -1 && !cpumask_test_cpu(cpu, cpus) && nid != NUMA_NO_NODE)
1835 		cpumask_or(cpus, cpus, cpumask_of_node(nid));
1836 
1837 	/* make sure the task's current running node is included */
1838 	if (!cpumask_test_cpu(curr_cpu, cpus))
1839 		cpumask_or(cpus, cpus, cpumask_of_node(cpu_to_node(curr_cpu)));
1840 
1841 	return;
1842 
1843 out:
1844 #endif
1845 	cpumask_copy(cpus, cpu_online_mask);
1846 }
1847 
1848 static inline void update_avg_scale(u64 *avg, u64 sample)
1849 {
1850 	int factor = per_cpu(sd_llc_size, raw_smp_processor_id());
1851 	s64 diff = sample - *avg;
1852 	u32 divisor;
1853 
1854 	/*
1855 	 * Scale the divisor based on the number of CPUs contained
1856 	 * in the LLC. This scaling ensures smaller LLC domains use
1857 	 * a smaller divisor to achieve more precise sensitivity to
1858 	 * changes in nr_running, while larger LLC domains are capped
1859 	 * at a maximum divisor of 8 which is the default smoothing
1860 	 * factor of EWMA in update_avg().
1861 	 */
1862 	divisor = clamp_t(u32, (factor >> 2), 2, 8);
1863 	*avg += div64_s64(diff, divisor);
1864 }
1865 
1866 static void task_cache_work(struct callback_head *work)
1867 {
1868 	int cpu, m_a_cpu = -1, nr_running = 0, curr_cpu;
1869 	unsigned long next_scan, now = jiffies;
1870 	struct task_struct *p = current, *cur;
1871 	unsigned long curr_m_a_occ = 0;
1872 	struct mm_struct *mm = p->mm;
1873 	unsigned long m_a_occ = 0;
1874 	cpumask_var_t cpus;
1875 
1876 	WARN_ON_ONCE(work != &p->cache_work);
1877 
1878 	work->next = work;
1879 
1880 	if (p->flags & PF_EXITING)
1881 		return;
1882 
1883 	next_scan = READ_ONCE(mm->sc_stat.next_scan);
1884 	if (time_before(now, next_scan))
1885 		return;
1886 
1887 	/* only 1 thread is allowed to scan */
1888 	if (!try_cmpxchg(&mm->sc_stat.next_scan, &next_scan,
1889 			 now + max_t(unsigned long,
1890 				     READ_ONCE(llc_epoch_period), 1)))
1891 		return;
1892 
1893 	curr_cpu = task_cpu(p);
1894 	if (invalid_llc_nr(mm, p, curr_cpu) ||
1895 	    exceed_llc_capacity(mm, curr_cpu)) {
1896 		if (READ_ONCE(mm->sc_stat.cpu) != -1)
1897 			WRITE_ONCE(mm->sc_stat.cpu, -1);
1898 
1899 		return;
1900 	}
1901 
1902 	if (!zalloc_cpumask_var(&cpus, GFP_KERNEL))
1903 		return;
1904 
1905 	scoped_guard (cpus_read_lock) {
1906 		guard(rcu)();
1907 
1908 		get_scan_cpumasks(cpus, p);
1909 
1910 		for_each_cpu(cpu, cpus) {
1911 			/* XXX sched_cluster_active */
1912 			struct sched_domain *sd = rcu_dereference_all(per_cpu(sd_llc, cpu));
1913 			unsigned long occ, m_occ = 0, a_occ = 0;
1914 			int m_cpu = -1, i;
1915 
1916 			if (!sd)
1917 				continue;
1918 
1919 			for_each_cpu(i, sched_domain_span(sd)) {
1920 				occ = fraction_mm_sched(cpu_rq(i),
1921 							per_cpu_ptr(mm->sc_stat.pcpu_sched, i));
1922 				a_occ += occ;
1923 				if (occ > m_occ) {
1924 					m_occ = occ;
1925 					m_cpu = i;
1926 				}
1927 
1928 				cur = rcu_dereference_all(cpu_rq(i)->curr);
1929 				if (cur && !(cur->flags & (PF_EXITING | PF_KTHREAD)) &&
1930 				    cur->mm == mm)
1931 					nr_running++;
1932 			}
1933 
1934 			/*
1935 			 * Compare the accumulated occupancy of each LLC. The
1936 			 * reason for using accumulated occupancy rather than average
1937 			 * per CPU occupancy is that it works better in asymmetric LLC
1938 			 * scenarios.
1939 			 * For example, if there are 2 threads in a 4CPU LLC and 3
1940 			 * threads in an 8CPU LLC, it might be better to choose the one
1941 			 * with 3 threads. However, this would not be the case if the
1942 			 * occupancy is divided by the number of CPUs in an LLC (i.e.,
1943 			 * if average per CPU occupancy is used).
1944 			 * Besides, NUMA balancing fault statistics behave similarly:
1945 			 * the total number of faults per node is compared rather than
1946 			 * the average number of faults per CPU. This strategy is also
1947 			 * followed here.
1948 			 */
1949 			if (a_occ > m_a_occ) {
1950 				m_a_occ = a_occ;
1951 				m_a_cpu = m_cpu;
1952 			}
1953 
1954 			if (llc_id(cpu) == llc_id(READ_ONCE(mm->sc_stat.cpu)))
1955 				curr_m_a_occ = a_occ;
1956 
1957 			cpumask_andnot(cpus, cpus, sched_domain_span(sd));
1958 		}
1959 	}
1960 
1961 	if (m_a_occ > (2 * curr_m_a_occ)) {
1962 		/*
1963 		 * Avoid switching sc_stat.cpu too fast.
1964 		 * The reason to choose 2X is because:
1965 		 * 1. It is better to keep the preferred LLC stable,
1966 		 *    rather than changing it frequently and cause migrations
1967 		 * 2. 2X means the new preferred LLC has at least 1 more
1968 		 *    busy CPU than the old one(200% vs 100%, eg)
1969 		 * 3. 2X is chosen based on test results, as it delivers
1970 		 *    the optimal performance gain so far.
1971 		 */
1972 		WRITE_ONCE(mm->sc_stat.cpu, m_a_cpu);
1973 	}
1974 
1975 	update_avg_scale(&mm->sc_stat.nr_running_avg, nr_running);
1976 	free_cpumask_var(cpus);
1977 }
1978 
1979 void init_sched_mm(struct task_struct *p)
1980 {
1981 	struct callback_head *work = &p->cache_work;
1982 
1983 	init_task_work(work, task_cache_work);
1984 	work->next = work;
1985 	/*
1986 	 * Reset new task's preference to avoid
1987 	 * polluting account_llc_enqueue().
1988 	 */
1989 	p->preferred_llc = -1;
1990 }
1991 
1992 #else /* CONFIG_SCHED_CACHE */
1993 
1994 static inline void account_mm_sched(struct rq *rq, struct task_struct *p,
1995 				    s64 delta_exec) { }
1996 
1997 void init_sched_mm(struct task_struct *p) { }
1998 
1999 static void task_tick_cache(struct rq *rq, struct task_struct *p) { }
2000 
2001 static inline int get_pref_llc(struct task_struct *p,
2002 			       struct mm_struct *mm)
2003 {
2004 	return -1;
2005 }
2006 
2007 static void account_llc_enqueue(struct rq *rq, struct task_struct *p) {}
2008 
2009 static void account_llc_dequeue(struct rq *rq, struct task_struct *p) {}
2010 
2011 #endif /* CONFIG_SCHED_CACHE */
2012 
2013 /*
2014  * Used by other classes to account runtime.
2015  */
2016 s64 update_curr_common(struct rq *rq)
2017 {
2018 	return update_se(rq, &rq->donor->se);
2019 }
2020 
2021 /*
2022  * Update the current task's runtime statistics.
2023  */
2024 static void update_curr(struct cfs_rq *cfs_rq)
2025 {
2026 	/*
2027 	 * Note: cfs_rq->curr corresponds to the task picked to
2028 	 * run (ie: rq->donor.se) which due to proxy-exec may
2029 	 * not necessarily be the actual task running
2030 	 * (rq->curr.se). This is easy to confuse!
2031 	 */
2032 	struct sched_entity *curr = cfs_rq->h_curr;
2033 	struct rq *rq = rq_of(cfs_rq);
2034 	s64 delta_exec;
2035 	bool resched;
2036 
2037 	if (unlikely(!curr))
2038 		return;
2039 
2040 	delta_exec = update_se(rq, curr);
2041 	if (unlikely(delta_exec <= 0))
2042 		return;
2043 
2044 	account_cfs_rq_runtime(cfs_rq, delta_exec);
2045 
2046 	if (!entity_is_task(curr))
2047 		return;
2048 
2049 	cfs_rq = &rq->cfs;
2050 
2051 	curr->vruntime += calc_delta_fair(delta_exec, curr);
2052 	resched = update_deadline(cfs_rq, curr);
2053 
2054 	/*
2055 	 * If the fair_server is active, we need to account for the
2056 	 * fair_server time whether or not the task is running on
2057 	 * behalf of fair_server or not:
2058 	 *  - If the task is running on behalf of fair_server, we need
2059 	 *    to limit its time based on the assigned runtime.
2060 	 *  - Fair task that runs outside of fair_server should account
2061 	 *    against fair_server such that it can account for this time
2062 	 *    and possibly avoid running this period.
2063 	 */
2064 	dl_server_update(&rq->fair_server, delta_exec);
2065 
2066 	if (cfs_rq->h_nr_queued == 1)
2067 		return;
2068 
2069 	if (resched || !protect_slice(curr)) {
2070 		resched_curr_lazy(rq);
2071 		clear_buddies(cfs_rq, curr);
2072 	}
2073 }
2074 
2075 static void update_curr_fair(struct rq *rq)
2076 {
2077 	struct sched_entity *se = &rq->donor->se;
2078 
2079 	for_each_sched_entity(se)
2080 		update_curr(cfs_rq_of(se));
2081 }
2082 
2083 static inline void
2084 update_stats_wait_start_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
2085 {
2086 	struct sched_statistics *stats;
2087 	struct task_struct *p = NULL;
2088 
2089 	if (!schedstat_enabled())
2090 		return;
2091 
2092 	stats = __schedstats_from_se(se);
2093 
2094 	if (entity_is_task(se))
2095 		p = task_of(se);
2096 
2097 	__update_stats_wait_start(rq_of(cfs_rq), p, stats);
2098 }
2099 
2100 static inline void
2101 update_stats_wait_end_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
2102 {
2103 	struct sched_statistics *stats;
2104 	struct task_struct *p = NULL;
2105 
2106 	if (!schedstat_enabled())
2107 		return;
2108 
2109 	stats = __schedstats_from_se(se);
2110 
2111 	/*
2112 	 * When the sched_schedstat changes from 0 to 1, some sched se
2113 	 * maybe already in the runqueue, the se->statistics.wait_start
2114 	 * will be 0.So it will let the delta wrong. We need to avoid this
2115 	 * scenario.
2116 	 */
2117 	if (unlikely(!schedstat_val(stats->wait_start)))
2118 		return;
2119 
2120 	if (entity_is_task(se))
2121 		p = task_of(se);
2122 
2123 	__update_stats_wait_end(rq_of(cfs_rq), p, stats);
2124 }
2125 
2126 static inline void
2127 update_stats_enqueue_sleeper_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
2128 {
2129 	struct sched_statistics *stats;
2130 	struct task_struct *tsk = NULL;
2131 
2132 	if (!schedstat_enabled())
2133 		return;
2134 
2135 	stats = __schedstats_from_se(se);
2136 
2137 	if (entity_is_task(se))
2138 		tsk = task_of(se);
2139 
2140 	__update_stats_enqueue_sleeper(rq_of(cfs_rq), tsk, stats);
2141 }
2142 
2143 /*
2144  * Task is being enqueued - update stats:
2145  */
2146 static inline void
2147 update_stats_enqueue_fair(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
2148 {
2149 	if (!schedstat_enabled())
2150 		return;
2151 
2152 	/*
2153 	 * Are we enqueueing a waiting task? (for current tasks
2154 	 * a dequeue/enqueue event is a NOP)
2155 	 */
2156 	if (se != cfs_rq->h_curr)
2157 		update_stats_wait_start_fair(cfs_rq, se);
2158 
2159 	if (flags & ENQUEUE_WAKEUP)
2160 		update_stats_enqueue_sleeper_fair(cfs_rq, se);
2161 }
2162 
2163 static inline void
2164 update_stats_dequeue_fair(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
2165 {
2166 
2167 	if (!schedstat_enabled())
2168 		return;
2169 
2170 	/*
2171 	 * Mark the end of the wait period if dequeueing a
2172 	 * waiting task:
2173 	 */
2174 	if (se != cfs_rq->h_curr)
2175 		update_stats_wait_end_fair(cfs_rq, se);
2176 
2177 	if ((flags & DEQUEUE_SLEEP) && entity_is_task(se)) {
2178 		struct task_struct *tsk = task_of(se);
2179 		unsigned int state;
2180 
2181 		/* XXX racy against TTWU */
2182 		state = READ_ONCE(tsk->__state);
2183 		if (state & TASK_INTERRUPTIBLE)
2184 			__schedstat_set(tsk->stats.sleep_start,
2185 				      rq_clock(rq_of(cfs_rq)));
2186 		if (state & TASK_UNINTERRUPTIBLE)
2187 			__schedstat_set(tsk->stats.block_start,
2188 				      rq_clock(rq_of(cfs_rq)));
2189 	}
2190 }
2191 
2192 /*
2193  * We are picking a new current task - update its stats:
2194  */
2195 static inline void
2196 update_stats_curr_start(struct cfs_rq *cfs_rq, struct sched_entity *se)
2197 {
2198 	/*
2199 	 * We are starting a new run period:
2200 	 */
2201 	se->exec_start = rq_clock_task(rq_of(cfs_rq));
2202 }
2203 
2204 /* Check sched_smt_active before calling this to avoid overheads in fastpaths */
2205 static inline bool is_core_idle(int cpu)
2206 {
2207 	int sibling;
2208 
2209 	for_each_cpu(sibling, cpu_smt_mask(cpu)) {
2210 		if (cpu == sibling)
2211 			continue;
2212 
2213 		if (!idle_cpu(sibling))
2214 			return false;
2215 	}
2216 
2217 	return true;
2218 }
2219 
2220 #ifdef CONFIG_NUMA
2221 #define NUMA_IMBALANCE_MIN 2
2222 
2223 static inline long
2224 adjust_numa_imbalance(int imbalance, int dst_running, int imb_numa_nr)
2225 {
2226 	/*
2227 	 * Allow a NUMA imbalance if busy CPUs is less than the maximum
2228 	 * threshold. Above this threshold, individual tasks may be contending
2229 	 * for both memory bandwidth and any shared HT resources.  This is an
2230 	 * approximation as the number of running tasks may not be related to
2231 	 * the number of busy CPUs due to sched_setaffinity.
2232 	 */
2233 	if (dst_running > imb_numa_nr)
2234 		return imbalance;
2235 
2236 	/*
2237 	 * Allow a small imbalance based on a simple pair of communicating
2238 	 * tasks that remain local when the destination is lightly loaded.
2239 	 */
2240 	if (imbalance <= NUMA_IMBALANCE_MIN)
2241 		return 0;
2242 
2243 	return imbalance;
2244 }
2245 #endif /* CONFIG_NUMA */
2246 
2247 #ifdef CONFIG_NUMA_BALANCING
2248 /*
2249  * Approximate time to scan a full NUMA task in ms. The task scan period is
2250  * calculated based on the tasks virtual memory size and
2251  * numa_balancing_scan_size.
2252  */
2253 unsigned int sysctl_numa_balancing_scan_period_min = 1000;
2254 unsigned int sysctl_numa_balancing_scan_period_max = 60000;
2255 
2256 /* Portion of address space to scan in MB */
2257 unsigned int sysctl_numa_balancing_scan_size = 256;
2258 
2259 /* Scan @scan_size MB every @scan_period after an initial @scan_delay in ms */
2260 unsigned int sysctl_numa_balancing_scan_delay = 1000;
2261 
2262 /* The page with hint page fault latency < threshold in ms is considered hot */
2263 unsigned int sysctl_numa_balancing_hot_threshold = MSEC_PER_SEC;
2264 
2265 struct numa_group {
2266 	refcount_t refcount;
2267 
2268 	spinlock_t lock; /* nr_tasks, tasks */
2269 	int nr_tasks;
2270 	pid_t gid;
2271 	int active_nodes;
2272 
2273 	struct rcu_head rcu;
2274 	unsigned long total_faults;
2275 	unsigned long max_faults_cpu;
2276 	/*
2277 	 * faults[] array is split into two regions: faults_mem and faults_cpu.
2278 	 *
2279 	 * Faults_cpu is used to decide whether memory should move
2280 	 * towards the CPU. As a consequence, these stats are weighted
2281 	 * more by CPU use than by memory faults.
2282 	 */
2283 	unsigned long faults[];
2284 };
2285 
2286 /*
2287  * For functions that can be called in multiple contexts that permit reading
2288  * ->numa_group (see struct task_struct for locking rules).
2289  */
2290 static struct numa_group *deref_task_numa_group(struct task_struct *p)
2291 {
2292 	return rcu_dereference_check(p->numa_group, p == current ||
2293 		(lockdep_is_held(__rq_lockp(task_rq(p))) && !READ_ONCE(p->on_cpu)));
2294 }
2295 
2296 static struct numa_group *deref_curr_numa_group(struct task_struct *p)
2297 {
2298 	return rcu_dereference_protected(p->numa_group, p == current);
2299 }
2300 
2301 static inline unsigned long group_faults_priv(struct numa_group *ng);
2302 static inline unsigned long group_faults_shared(struct numa_group *ng);
2303 
2304 static unsigned int task_nr_scan_windows(struct task_struct *p)
2305 {
2306 	unsigned long rss = 0;
2307 	unsigned long nr_scan_pages;
2308 
2309 	/*
2310 	 * Calculations based on RSS as non-present and empty pages are skipped
2311 	 * by the PTE scanner and NUMA hinting faults should be trapped based
2312 	 * on resident pages
2313 	 */
2314 	nr_scan_pages = MB_TO_PAGES(sysctl_numa_balancing_scan_size);
2315 	rss = get_mm_rss(p->mm);
2316 	if (!rss)
2317 		rss = nr_scan_pages;
2318 
2319 	rss = round_up(rss, nr_scan_pages);
2320 	return rss / nr_scan_pages;
2321 }
2322 
2323 /* For sanity's sake, never scan more PTEs than MAX_SCAN_WINDOW MB/sec. */
2324 #define MAX_SCAN_WINDOW 2560
2325 
2326 static unsigned int task_scan_min(struct task_struct *p)
2327 {
2328 	unsigned int scan_size = READ_ONCE(sysctl_numa_balancing_scan_size);
2329 	unsigned int scan, floor;
2330 	unsigned int windows = 1;
2331 
2332 	if (scan_size < MAX_SCAN_WINDOW)
2333 		windows = MAX_SCAN_WINDOW / scan_size;
2334 	floor = 1000 / windows;
2335 
2336 	scan = sysctl_numa_balancing_scan_period_min / task_nr_scan_windows(p);
2337 	return max_t(unsigned int, floor, scan);
2338 }
2339 
2340 static unsigned int task_scan_start(struct task_struct *p)
2341 {
2342 	unsigned long smin = task_scan_min(p);
2343 	unsigned long period = smin;
2344 	struct numa_group *ng;
2345 
2346 	/* Scale the maximum scan period with the amount of shared memory. */
2347 	rcu_read_lock();
2348 	ng = rcu_dereference_all(p->numa_group);
2349 	if (ng) {
2350 		unsigned long shared = group_faults_shared(ng);
2351 		unsigned long private = group_faults_priv(ng);
2352 
2353 		period *= refcount_read(&ng->refcount);
2354 		period *= shared + 1;
2355 		period /= private + shared + 1;
2356 	}
2357 	rcu_read_unlock();
2358 
2359 	return max(smin, period);
2360 }
2361 
2362 static unsigned int task_scan_max(struct task_struct *p)
2363 {
2364 	unsigned long smin = task_scan_min(p);
2365 	unsigned long smax;
2366 	struct numa_group *ng;
2367 
2368 	/* Watch for min being lower than max due to floor calculations */
2369 	smax = sysctl_numa_balancing_scan_period_max / task_nr_scan_windows(p);
2370 
2371 	/* Scale the maximum scan period with the amount of shared memory. */
2372 	ng = deref_curr_numa_group(p);
2373 	if (ng) {
2374 		unsigned long shared = group_faults_shared(ng);
2375 		unsigned long private = group_faults_priv(ng);
2376 		unsigned long period = smax;
2377 
2378 		period *= refcount_read(&ng->refcount);
2379 		period *= shared + 1;
2380 		period /= private + shared + 1;
2381 
2382 		smax = max(smax, period);
2383 	}
2384 
2385 	return max(smin, smax);
2386 }
2387 
2388 static void account_numa_enqueue(struct rq *rq, struct task_struct *p)
2389 {
2390 	rq->nr_numa_running += (p->numa_preferred_nid != NUMA_NO_NODE);
2391 	rq->nr_preferred_running += (p->numa_preferred_nid == task_node(p));
2392 }
2393 
2394 static void account_numa_dequeue(struct rq *rq, struct task_struct *p)
2395 {
2396 	rq->nr_numa_running -= (p->numa_preferred_nid != NUMA_NO_NODE);
2397 	rq->nr_preferred_running -= (p->numa_preferred_nid == task_node(p));
2398 }
2399 
2400 /* Shared or private faults. */
2401 #define NR_NUMA_HINT_FAULT_TYPES 2
2402 
2403 /* Memory and CPU locality */
2404 #define NR_NUMA_HINT_FAULT_STATS (NR_NUMA_HINT_FAULT_TYPES * 2)
2405 
2406 /* Averaged statistics, and temporary buffers. */
2407 #define NR_NUMA_HINT_FAULT_BUCKETS (NR_NUMA_HINT_FAULT_STATS * 2)
2408 
2409 pid_t task_numa_group_id(struct task_struct *p)
2410 {
2411 	struct numa_group *ng;
2412 	pid_t gid = 0;
2413 
2414 	rcu_read_lock();
2415 	ng = rcu_dereference_all(p->numa_group);
2416 	if (ng)
2417 		gid = ng->gid;
2418 	rcu_read_unlock();
2419 
2420 	return gid;
2421 }
2422 
2423 /*
2424  * The averaged statistics, shared & private, memory & CPU,
2425  * occupy the first half of the array. The second half of the
2426  * array is for current counters, which are averaged into the
2427  * first set by task_numa_placement.
2428  */
2429 static inline int task_faults_idx(enum numa_faults_stats s, int nid, int priv)
2430 {
2431 	return NR_NUMA_HINT_FAULT_TYPES * (s * nr_node_ids + nid) + priv;
2432 }
2433 
2434 static inline unsigned long task_faults(struct task_struct *p, int nid)
2435 {
2436 	if (!p->numa_faults)
2437 		return 0;
2438 
2439 	return p->numa_faults[task_faults_idx(NUMA_MEM, nid, 0)] +
2440 		p->numa_faults[task_faults_idx(NUMA_MEM, nid, 1)];
2441 }
2442 
2443 static inline unsigned long group_faults(struct task_struct *p, int nid)
2444 {
2445 	struct numa_group *ng = deref_task_numa_group(p);
2446 
2447 	if (!ng)
2448 		return 0;
2449 
2450 	return ng->faults[task_faults_idx(NUMA_MEM, nid, 0)] +
2451 		ng->faults[task_faults_idx(NUMA_MEM, nid, 1)];
2452 }
2453 
2454 static inline unsigned long group_faults_cpu(struct numa_group *group, int nid)
2455 {
2456 	return group->faults[task_faults_idx(NUMA_CPU, nid, 0)] +
2457 		group->faults[task_faults_idx(NUMA_CPU, nid, 1)];
2458 }
2459 
2460 static inline unsigned long group_faults_priv(struct numa_group *ng)
2461 {
2462 	unsigned long faults = 0;
2463 	int node;
2464 
2465 	for_each_online_node(node) {
2466 		faults += ng->faults[task_faults_idx(NUMA_MEM, node, 1)];
2467 	}
2468 
2469 	return faults;
2470 }
2471 
2472 static inline unsigned long group_faults_shared(struct numa_group *ng)
2473 {
2474 	unsigned long faults = 0;
2475 	int node;
2476 
2477 	for_each_online_node(node) {
2478 		faults += ng->faults[task_faults_idx(NUMA_MEM, node, 0)];
2479 	}
2480 
2481 	return faults;
2482 }
2483 
2484 /*
2485  * A node triggering more than 1/3 as many NUMA faults as the maximum is
2486  * considered part of a numa group's pseudo-interleaving set. Migrations
2487  * between these nodes are slowed down, to allow things to settle down.
2488  */
2489 #define ACTIVE_NODE_FRACTION 3
2490 
2491 static bool numa_is_active_node(int nid, struct numa_group *ng)
2492 {
2493 	return group_faults_cpu(ng, nid) * ACTIVE_NODE_FRACTION > ng->max_faults_cpu;
2494 }
2495 
2496 /* Handle placement on systems where not all nodes are directly connected. */
2497 static unsigned long score_nearby_nodes(struct task_struct *p, int nid,
2498 					int lim_dist, bool task)
2499 {
2500 	unsigned long score = 0;
2501 	int node, max_dist;
2502 
2503 	/*
2504 	 * All nodes are directly connected, and the same distance
2505 	 * from each other. No need for fancy placement algorithms.
2506 	 */
2507 	if (sched_numa_topology_type == NUMA_DIRECT)
2508 		return 0;
2509 
2510 	/* sched_max_numa_distance may be changed in parallel. */
2511 	max_dist = READ_ONCE(sched_max_numa_distance);
2512 	/*
2513 	 * This code is called for each node, introducing N^2 complexity,
2514 	 * which should be OK given the number of nodes rarely exceeds 8.
2515 	 */
2516 	for_each_online_node(node) {
2517 		unsigned long faults;
2518 		int dist = node_distance(nid, node);
2519 
2520 		/*
2521 		 * The furthest away nodes in the system are not interesting
2522 		 * for placement; nid was already counted.
2523 		 */
2524 		if (dist >= max_dist || node == nid)
2525 			continue;
2526 
2527 		/*
2528 		 * On systems with a backplane NUMA topology, compare groups
2529 		 * of nodes, and move tasks towards the group with the most
2530 		 * memory accesses. When comparing two nodes at distance
2531 		 * "hoplimit", only nodes closer by than "hoplimit" are part
2532 		 * of each group. Skip other nodes.
2533 		 */
2534 		if (sched_numa_topology_type == NUMA_BACKPLANE && dist >= lim_dist)
2535 			continue;
2536 
2537 		/* Add up the faults from nearby nodes. */
2538 		if (task)
2539 			faults = task_faults(p, node);
2540 		else
2541 			faults = group_faults(p, node);
2542 
2543 		/*
2544 		 * On systems with a glueless mesh NUMA topology, there are
2545 		 * no fixed "groups of nodes". Instead, nodes that are not
2546 		 * directly connected bounce traffic through intermediate
2547 		 * nodes; a numa_group can occupy any set of nodes.
2548 		 * The further away a node is, the less the faults count.
2549 		 * This seems to result in good task placement.
2550 		 */
2551 		if (sched_numa_topology_type == NUMA_GLUELESS_MESH) {
2552 			faults *= (max_dist - dist);
2553 			faults /= (max_dist - LOCAL_DISTANCE);
2554 		}
2555 
2556 		score += faults;
2557 	}
2558 
2559 	return score;
2560 }
2561 
2562 /*
2563  * These return the fraction of accesses done by a particular task, or
2564  * task group, on a particular numa node.  The group weight is given a
2565  * larger multiplier, in order to group tasks together that are almost
2566  * evenly spread out between numa nodes.
2567  */
2568 static inline unsigned long task_weight(struct task_struct *p, int nid,
2569 					int dist)
2570 {
2571 	unsigned long faults, total_faults;
2572 
2573 	if (!p->numa_faults)
2574 		return 0;
2575 
2576 	total_faults = p->total_numa_faults;
2577 
2578 	if (!total_faults)
2579 		return 0;
2580 
2581 	faults = task_faults(p, nid);
2582 	faults += score_nearby_nodes(p, nid, dist, true);
2583 
2584 	return 1000 * faults / total_faults;
2585 }
2586 
2587 static inline unsigned long group_weight(struct task_struct *p, int nid,
2588 					 int dist)
2589 {
2590 	struct numa_group *ng = deref_task_numa_group(p);
2591 	unsigned long faults, total_faults;
2592 
2593 	if (!ng)
2594 		return 0;
2595 
2596 	total_faults = ng->total_faults;
2597 
2598 	if (!total_faults)
2599 		return 0;
2600 
2601 	faults = group_faults(p, nid);
2602 	faults += score_nearby_nodes(p, nid, dist, false);
2603 
2604 	return 1000 * faults / total_faults;
2605 }
2606 
2607 /*
2608  * If memory tiering mode is enabled, cpupid of slow memory page is
2609  * used to record scan time instead of CPU and PID.  When tiering mode
2610  * is disabled at run time, the scan time (in cpupid) will be
2611  * interpreted as CPU and PID.  So CPU needs to be checked to avoid to
2612  * access out of array bound.
2613  */
2614 static inline bool cpupid_valid(int cpupid)
2615 {
2616 	return cpupid_to_cpu(cpupid) < nr_cpu_ids;
2617 }
2618 
2619 /*
2620  * For memory tiering mode, if there are enough free pages (more than
2621  * enough watermark defined here) in fast memory node, to take full
2622  * advantage of fast memory capacity, all recently accessed slow
2623  * memory pages will be migrated to fast memory node without
2624  * considering hot threshold.
2625  */
2626 static bool pgdat_free_space_enough(struct pglist_data *pgdat)
2627 {
2628 	int z;
2629 	unsigned long enough_wmark;
2630 
2631 	enough_wmark = max(1UL * 1024 * 1024 * 1024 >> PAGE_SHIFT,
2632 			   pgdat->node_present_pages >> 4);
2633 	for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2634 		struct zone *zone = pgdat->node_zones + z;
2635 
2636 		if (!populated_zone(zone))
2637 			continue;
2638 
2639 		if (zone_watermark_ok(zone, 0,
2640 				      promo_wmark_pages(zone) + enough_wmark,
2641 				      ZONE_MOVABLE, 0))
2642 			return true;
2643 	}
2644 	return false;
2645 }
2646 
2647 /*
2648  * For memory tiering mode, when page tables are scanned, the scan
2649  * time will be recorded in struct page in addition to make page
2650  * PROT_NONE for slow memory page.  So when the page is accessed, in
2651  * hint page fault handler, the hint page fault latency is calculated
2652  * via,
2653  *
2654  *	hint page fault latency = hint page fault time - scan time
2655  *
2656  * The smaller the hint page fault latency, the higher the possibility
2657  * for the page to be hot.
2658  */
2659 static int numa_hint_fault_latency(struct folio *folio)
2660 {
2661 	int last_time, time;
2662 
2663 	time = jiffies_to_msecs(jiffies);
2664 	last_time = folio_xchg_access_time(folio, time);
2665 
2666 	return (time - last_time) & PAGE_ACCESS_TIME_MASK;
2667 }
2668 
2669 /*
2670  * For memory tiering mode, too high promotion/demotion throughput may
2671  * hurt application latency.  So we provide a mechanism to rate limit
2672  * the number of pages that are tried to be promoted.
2673  */
2674 static bool numa_promotion_rate_limit(struct pglist_data *pgdat,
2675 				      unsigned long rate_limit, int nr)
2676 {
2677 	unsigned long nr_cand;
2678 	unsigned int now, start;
2679 
2680 	now = jiffies_to_msecs(jiffies);
2681 	mod_node_page_state(pgdat, PGPROMOTE_CANDIDATE, nr);
2682 	nr_cand = node_page_state(pgdat, PGPROMOTE_CANDIDATE);
2683 	start = pgdat->nbp_rl_start;
2684 	if (now - start > MSEC_PER_SEC &&
2685 	    cmpxchg(&pgdat->nbp_rl_start, start, now) == start)
2686 		pgdat->nbp_rl_nr_cand = nr_cand;
2687 	if (nr_cand - pgdat->nbp_rl_nr_cand >= rate_limit)
2688 		return true;
2689 	return false;
2690 }
2691 
2692 #define NUMA_MIGRATION_ADJUST_STEPS	16
2693 
2694 static void numa_promotion_adjust_threshold(struct pglist_data *pgdat,
2695 					    unsigned long rate_limit,
2696 					    unsigned int ref_th)
2697 {
2698 	unsigned int now, start, th_period, unit_th, th;
2699 	unsigned long nr_cand, ref_cand, diff_cand;
2700 
2701 	now = jiffies_to_msecs(jiffies);
2702 	th_period = sysctl_numa_balancing_scan_period_max;
2703 	start = pgdat->nbp_th_start;
2704 	if (now - start > th_period &&
2705 	    cmpxchg(&pgdat->nbp_th_start, start, now) == start) {
2706 		ref_cand = rate_limit *
2707 			sysctl_numa_balancing_scan_period_max / MSEC_PER_SEC;
2708 		nr_cand = node_page_state(pgdat, PGPROMOTE_CANDIDATE);
2709 		diff_cand = nr_cand - pgdat->nbp_th_nr_cand;
2710 		unit_th = ref_th * 2 / NUMA_MIGRATION_ADJUST_STEPS;
2711 		th = pgdat->nbp_threshold ? : ref_th;
2712 		if (diff_cand > ref_cand * 11 / 10)
2713 			th = max(th - unit_th, unit_th);
2714 		else if (diff_cand < ref_cand * 9 / 10)
2715 			th = min(th + unit_th, ref_th * 2);
2716 		pgdat->nbp_th_nr_cand = nr_cand;
2717 		pgdat->nbp_threshold = th;
2718 	}
2719 }
2720 
2721 bool should_numa_migrate_memory(struct task_struct *p, struct folio *folio,
2722 				int src_nid, int dst_cpu)
2723 {
2724 	struct numa_group *ng = deref_curr_numa_group(p);
2725 	int dst_nid = cpu_to_node(dst_cpu);
2726 	int last_cpupid, this_cpupid;
2727 
2728 	/*
2729 	 * Cannot migrate to memoryless nodes.
2730 	 */
2731 	if (!node_state(dst_nid, N_MEMORY))
2732 		return false;
2733 
2734 	/*
2735 	 * The pages in slow memory node should be migrated according
2736 	 * to hot/cold instead of private/shared.
2737 	 */
2738 	if (folio_use_access_time(folio)) {
2739 		struct pglist_data *pgdat;
2740 		unsigned long rate_limit;
2741 		unsigned int latency, th, def_th;
2742 		long nr = folio_nr_pages(folio);
2743 
2744 		pgdat = NODE_DATA(dst_nid);
2745 		if (pgdat_free_space_enough(pgdat)) {
2746 			/* workload changed, reset hot threshold */
2747 			pgdat->nbp_threshold = 0;
2748 			mod_node_page_state(pgdat, PGPROMOTE_CANDIDATE_NRL, nr);
2749 			return true;
2750 		}
2751 
2752 		def_th = sysctl_numa_balancing_hot_threshold;
2753 		rate_limit = MB_TO_PAGES(sysctl_numa_balancing_promote_rate_limit);
2754 		numa_promotion_adjust_threshold(pgdat, rate_limit, def_th);
2755 
2756 		th = pgdat->nbp_threshold ? : def_th;
2757 		latency = numa_hint_fault_latency(folio);
2758 		if (latency >= th)
2759 			return false;
2760 
2761 		return !numa_promotion_rate_limit(pgdat, rate_limit, nr);
2762 	}
2763 
2764 	this_cpupid = cpu_pid_to_cpupid(dst_cpu, current->pid);
2765 	last_cpupid = folio_xchg_last_cpupid(folio, this_cpupid);
2766 
2767 	if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) &&
2768 	    !node_is_toptier(src_nid) && !cpupid_valid(last_cpupid))
2769 		return false;
2770 
2771 	/*
2772 	 * Allow first faults or private faults to migrate immediately early in
2773 	 * the lifetime of a task. The magic number 4 is based on waiting for
2774 	 * two full passes of the "multi-stage node selection" test that is
2775 	 * executed below.
2776 	 */
2777 	if ((p->numa_preferred_nid == NUMA_NO_NODE || p->numa_scan_seq <= 4) &&
2778 	    (cpupid_pid_unset(last_cpupid) || cpupid_match_pid(p, last_cpupid)))
2779 		return true;
2780 
2781 	/*
2782 	 * Multi-stage node selection is used in conjunction with a periodic
2783 	 * migration fault to build a temporal task<->page relation. By using
2784 	 * a two-stage filter we remove short/unlikely relations.
2785 	 *
2786 	 * Using P(p) ~ n_p / n_t as per frequentist probability, we can equate
2787 	 * a task's usage of a particular page (n_p) per total usage of this
2788 	 * page (n_t) (in a given time-span) to a probability.
2789 	 *
2790 	 * Our periodic faults will sample this probability and getting the
2791 	 * same result twice in a row, given these samples are fully
2792 	 * independent, is then given by P(n)^2, provided our sample period
2793 	 * is sufficiently short compared to the usage pattern.
2794 	 *
2795 	 * This quadric squishes small probabilities, making it less likely we
2796 	 * act on an unlikely task<->page relation.
2797 	 */
2798 	if (!cpupid_pid_unset(last_cpupid) &&
2799 				cpupid_to_nid(last_cpupid) != dst_nid)
2800 		return false;
2801 
2802 	/* Always allow migrate on private faults */
2803 	if (cpupid_match_pid(p, last_cpupid))
2804 		return true;
2805 
2806 	/* A shared fault, but p->numa_group has not been set up yet. */
2807 	if (!ng)
2808 		return true;
2809 
2810 	/*
2811 	 * Destination node is much more heavily used than the source
2812 	 * node? Allow migration.
2813 	 */
2814 	if (group_faults_cpu(ng, dst_nid) > group_faults_cpu(ng, src_nid) *
2815 					ACTIVE_NODE_FRACTION)
2816 		return true;
2817 
2818 	/*
2819 	 * Distribute memory according to CPU & memory use on each node,
2820 	 * with 3/4 hysteresis to avoid unnecessary memory migrations:
2821 	 *
2822 	 * faults_cpu(dst)   3   faults_cpu(src)
2823 	 * --------------- * - > ---------------
2824 	 * faults_mem(dst)   4   faults_mem(src)
2825 	 */
2826 	return group_faults_cpu(ng, dst_nid) * group_faults(p, src_nid) * 3 >
2827 	       group_faults_cpu(ng, src_nid) * group_faults(p, dst_nid) * 4;
2828 }
2829 
2830 /*
2831  * 'numa_type' describes the node at the moment of load balancing.
2832  */
2833 enum numa_type {
2834 	/* The node has spare capacity that can be used to run more tasks.  */
2835 	node_has_spare = 0,
2836 	/*
2837 	 * The node is fully used and the tasks don't compete for more CPU
2838 	 * cycles. Nevertheless, some tasks might wait before running.
2839 	 */
2840 	node_fully_busy,
2841 	/*
2842 	 * The node is overloaded and can't provide expected CPU cycles to all
2843 	 * tasks.
2844 	 */
2845 	node_overloaded
2846 };
2847 
2848 /* Cached statistics for all CPUs within a node */
2849 struct numa_stats {
2850 	unsigned long load;
2851 	unsigned long runnable;
2852 	unsigned long util;
2853 	/* Total compute capacity of CPUs on a node */
2854 	unsigned long compute_capacity;
2855 	unsigned int nr_running;
2856 	unsigned int weight;
2857 	enum numa_type node_type;
2858 	int idle_cpu;
2859 };
2860 
2861 struct task_numa_env {
2862 	struct task_struct *p;
2863 
2864 	int src_cpu, src_nid;
2865 	int dst_cpu, dst_nid;
2866 	int imb_numa_nr;
2867 
2868 	struct numa_stats src_stats, dst_stats;
2869 
2870 	int imbalance_pct;
2871 	int dist;
2872 
2873 	struct task_struct *best_task;
2874 	long best_imp;
2875 	int best_cpu;
2876 };
2877 
2878 static unsigned long cpu_load(struct rq *rq);
2879 static unsigned long cpu_runnable(struct rq *rq);
2880 
2881 static inline enum
2882 numa_type numa_classify(unsigned int imbalance_pct,
2883 			 struct numa_stats *ns)
2884 {
2885 	if ((ns->nr_running > ns->weight) &&
2886 	    (((ns->compute_capacity * 100) < (ns->util * imbalance_pct)) ||
2887 	     ((ns->compute_capacity * imbalance_pct) < (ns->runnable * 100))))
2888 		return node_overloaded;
2889 
2890 	if ((ns->nr_running < ns->weight) ||
2891 	    (((ns->compute_capacity * 100) > (ns->util * imbalance_pct)) &&
2892 	     ((ns->compute_capacity * imbalance_pct) > (ns->runnable * 100))))
2893 		return node_has_spare;
2894 
2895 	return node_fully_busy;
2896 }
2897 
2898 /* Forward declarations of select_idle_sibling helpers */
2899 static inline bool test_idle_cores(int cpu);
2900 static inline int numa_idle_core(int idle_core, int cpu)
2901 {
2902 	if (!sched_smt_active() ||
2903 	    idle_core >= 0 || !test_idle_cores(cpu))
2904 		return idle_core;
2905 
2906 	/*
2907 	 * Prefer cores instead of packing HT siblings
2908 	 * and triggering future load balancing.
2909 	 */
2910 	if (is_core_idle(cpu))
2911 		idle_core = cpu;
2912 
2913 	return idle_core;
2914 }
2915 
2916 /*
2917  * Gather all necessary information to make NUMA balancing placement
2918  * decisions that are compatible with standard load balancer. This
2919  * borrows code and logic from update_sg_lb_stats but sharing a
2920  * common implementation is impractical.
2921  */
2922 static void update_numa_stats(struct task_numa_env *env,
2923 			      struct numa_stats *ns, int nid,
2924 			      bool find_idle)
2925 {
2926 	int cpu, idle_core = -1;
2927 
2928 	memset(ns, 0, sizeof(*ns));
2929 	ns->idle_cpu = -1;
2930 
2931 	rcu_read_lock();
2932 	for_each_cpu(cpu, cpumask_of_node(nid)) {
2933 		struct rq *rq = cpu_rq(cpu);
2934 
2935 		ns->load += cpu_load(rq);
2936 		ns->runnable += cpu_runnable(rq);
2937 		ns->util += cpu_util_cfs(cpu);
2938 		ns->nr_running += rq->cfs.h_nr_runnable;
2939 		ns->compute_capacity += capacity_of(cpu);
2940 
2941 		if (find_idle && idle_core < 0 && !rq->nr_running && idle_cpu(cpu)) {
2942 			if (READ_ONCE(rq->numa_migrate_on) ||
2943 			    !cpumask_test_cpu(cpu, env->p->cpus_ptr))
2944 				continue;
2945 
2946 			if (ns->idle_cpu == -1)
2947 				ns->idle_cpu = cpu;
2948 
2949 			idle_core = numa_idle_core(idle_core, cpu);
2950 		}
2951 	}
2952 	rcu_read_unlock();
2953 
2954 	ns->weight = cpumask_weight(cpumask_of_node(nid));
2955 
2956 	ns->node_type = numa_classify(env->imbalance_pct, ns);
2957 
2958 	if (idle_core >= 0)
2959 		ns->idle_cpu = idle_core;
2960 }
2961 
2962 static void task_numa_assign(struct task_numa_env *env,
2963 			     struct task_struct *p, long imp)
2964 {
2965 	struct rq *rq = cpu_rq(env->dst_cpu);
2966 
2967 	/* Check if run-queue part of active NUMA balance. */
2968 	if (env->best_cpu != env->dst_cpu && xchg(&rq->numa_migrate_on, 1)) {
2969 		int cpu;
2970 		int start = env->dst_cpu;
2971 
2972 		/* Find alternative idle CPU. */
2973 		for_each_cpu_wrap(cpu, cpumask_of_node(env->dst_nid), start + 1) {
2974 			if (cpu == env->best_cpu || !idle_cpu(cpu) ||
2975 			    !cpumask_test_cpu(cpu, env->p->cpus_ptr)) {
2976 				continue;
2977 			}
2978 
2979 			env->dst_cpu = cpu;
2980 			rq = cpu_rq(env->dst_cpu);
2981 			if (!xchg(&rq->numa_migrate_on, 1))
2982 				goto assign;
2983 		}
2984 
2985 		/* Failed to find an alternative idle CPU */
2986 		return;
2987 	}
2988 
2989 assign:
2990 	/*
2991 	 * Clear previous best_cpu/rq numa-migrate flag, since task now
2992 	 * found a better CPU to move/swap.
2993 	 */
2994 	if (env->best_cpu != -1 && env->best_cpu != env->dst_cpu) {
2995 		rq = cpu_rq(env->best_cpu);
2996 		WRITE_ONCE(rq->numa_migrate_on, 0);
2997 	}
2998 
2999 	if (env->best_task)
3000 		put_task_struct(env->best_task);
3001 	if (p)
3002 		get_task_struct(p);
3003 
3004 	env->best_task = p;
3005 	env->best_imp = imp;
3006 	env->best_cpu = env->dst_cpu;
3007 }
3008 
3009 static bool load_too_imbalanced(long src_load, long dst_load,
3010 				struct task_numa_env *env)
3011 {
3012 	long imb, old_imb;
3013 	long orig_src_load, orig_dst_load;
3014 	long src_capacity, dst_capacity;
3015 
3016 	/*
3017 	 * The load is corrected for the CPU capacity available on each node.
3018 	 *
3019 	 * src_load        dst_load
3020 	 * ------------ vs ---------
3021 	 * src_capacity    dst_capacity
3022 	 */
3023 	src_capacity = env->src_stats.compute_capacity;
3024 	dst_capacity = env->dst_stats.compute_capacity;
3025 
3026 	imb = abs(dst_load * src_capacity - src_load * dst_capacity);
3027 
3028 	orig_src_load = env->src_stats.load;
3029 	orig_dst_load = env->dst_stats.load;
3030 
3031 	old_imb = abs(orig_dst_load * src_capacity - orig_src_load * dst_capacity);
3032 
3033 	/* Would this change make things worse? */
3034 	return (imb > old_imb);
3035 }
3036 
3037 /*
3038  * Maximum NUMA importance can be 1998 (2*999);
3039  * SMALLIMP @ 30 would be close to 1998/64.
3040  * Used to deter task migration.
3041  */
3042 #define SMALLIMP	30
3043 
3044 /*
3045  * This checks if the overall compute and NUMA accesses of the system would
3046  * be improved if the source tasks was migrated to the target dst_cpu taking
3047  * into account that it might be best if task running on the dst_cpu should
3048  * be exchanged with the source task
3049  */
3050 static bool task_numa_compare(struct task_numa_env *env,
3051 			      long taskimp, long groupimp, bool maymove)
3052 {
3053 	struct numa_group *cur_ng, *p_ng = deref_curr_numa_group(env->p);
3054 	struct rq *dst_rq = cpu_rq(env->dst_cpu);
3055 	long imp = p_ng ? groupimp : taskimp;
3056 	struct task_struct *cur;
3057 	long src_load, dst_load;
3058 	int dist = env->dist;
3059 	long moveimp = imp;
3060 	long load;
3061 	bool stopsearch = false;
3062 
3063 	if (READ_ONCE(dst_rq->numa_migrate_on))
3064 		return false;
3065 
3066 	rcu_read_lock();
3067 	cur = rcu_dereference_all(dst_rq->curr);
3068 	if (cur && ((cur->flags & (PF_EXITING | PF_KTHREAD)) ||
3069 		    !cur->mm))
3070 		cur = NULL;
3071 
3072 	/*
3073 	 * Because we have preemption enabled we can get migrated around and
3074 	 * end try selecting ourselves (current == env->p) as a swap candidate.
3075 	 */
3076 	if (cur == env->p) {
3077 		stopsearch = true;
3078 		goto unlock;
3079 	}
3080 
3081 	if (!cur) {
3082 		if (maymove && moveimp >= env->best_imp)
3083 			goto assign;
3084 		else
3085 			goto unlock;
3086 	}
3087 
3088 	/* Skip this swap candidate if cannot move to the source cpu. */
3089 	if (!cpumask_test_cpu(env->src_cpu, cur->cpus_ptr))
3090 		goto unlock;
3091 
3092 	/*
3093 	 * Skip this swap candidate if it is not moving to its preferred
3094 	 * node and the best task is.
3095 	 */
3096 	if (env->best_task &&
3097 	    env->best_task->numa_preferred_nid == env->src_nid &&
3098 	    cur->numa_preferred_nid != env->src_nid) {
3099 		goto unlock;
3100 	}
3101 
3102 	/*
3103 	 * "imp" is the fault differential for the source task between the
3104 	 * source and destination node. Calculate the total differential for
3105 	 * the source task and potential destination task. The more negative
3106 	 * the value is, the more remote accesses that would be expected to
3107 	 * be incurred if the tasks were swapped.
3108 	 *
3109 	 * If dst and source tasks are in the same NUMA group, or not
3110 	 * in any group then look only at task weights.
3111 	 */
3112 	cur_ng = rcu_dereference_all(cur->numa_group);
3113 	if (cur_ng == p_ng) {
3114 		/*
3115 		 * Do not swap within a group or between tasks that have
3116 		 * no group if there is spare capacity. Swapping does
3117 		 * not address the load imbalance and helps one task at
3118 		 * the cost of punishing another.
3119 		 */
3120 		if (env->dst_stats.node_type == node_has_spare)
3121 			goto unlock;
3122 
3123 		imp = taskimp + task_weight(cur, env->src_nid, dist) -
3124 		      task_weight(cur, env->dst_nid, dist);
3125 		/*
3126 		 * Add some hysteresis to prevent swapping the
3127 		 * tasks within a group over tiny differences.
3128 		 */
3129 		if (cur_ng)
3130 			imp -= imp / 16;
3131 	} else {
3132 		/*
3133 		 * Compare the group weights. If a task is all by itself
3134 		 * (not part of a group), use the task weight instead.
3135 		 */
3136 		if (cur_ng && p_ng)
3137 			imp += group_weight(cur, env->src_nid, dist) -
3138 			       group_weight(cur, env->dst_nid, dist);
3139 		else
3140 			imp += task_weight(cur, env->src_nid, dist) -
3141 			       task_weight(cur, env->dst_nid, dist);
3142 	}
3143 
3144 	/* Discourage picking a task already on its preferred node */
3145 	if (cur->numa_preferred_nid == env->dst_nid)
3146 		imp -= imp / 16;
3147 
3148 	/*
3149 	 * Encourage picking a task that moves to its preferred node.
3150 	 * This potentially makes imp larger than it's maximum of
3151 	 * 1998 (see SMALLIMP and task_weight for why) but in this
3152 	 * case, it does not matter.
3153 	 */
3154 	if (cur->numa_preferred_nid == env->src_nid)
3155 		imp += imp / 8;
3156 
3157 	if (maymove && moveimp > imp && moveimp > env->best_imp) {
3158 		imp = moveimp;
3159 		cur = NULL;
3160 		goto assign;
3161 	}
3162 
3163 	/*
3164 	 * Prefer swapping with a task moving to its preferred node over a
3165 	 * task that is not.
3166 	 */
3167 	if (env->best_task && cur->numa_preferred_nid == env->src_nid &&
3168 	    env->best_task->numa_preferred_nid != env->src_nid) {
3169 		goto assign;
3170 	}
3171 
3172 	/*
3173 	 * If the NUMA importance is less than SMALLIMP,
3174 	 * task migration might only result in ping pong
3175 	 * of tasks and also hurt performance due to cache
3176 	 * misses.
3177 	 */
3178 	if (imp < SMALLIMP || imp <= env->best_imp + SMALLIMP / 2)
3179 		goto unlock;
3180 
3181 	/*
3182 	 * In the overloaded case, try and keep the load balanced.
3183 	 */
3184 	load = task_h_load(env->p) - task_h_load(cur);
3185 	if (!load)
3186 		goto assign;
3187 
3188 	dst_load = env->dst_stats.load + load;
3189 	src_load = env->src_stats.load - load;
3190 
3191 	if (load_too_imbalanced(src_load, dst_load, env))
3192 		goto unlock;
3193 
3194 assign:
3195 	/* Evaluate an idle CPU for a task numa move. */
3196 	if (!cur) {
3197 		int cpu = env->dst_stats.idle_cpu;
3198 
3199 		/* Nothing cached so current CPU went idle since the search. */
3200 		if (cpu < 0)
3201 			cpu = env->dst_cpu;
3202 
3203 		/*
3204 		 * If the CPU is no longer truly idle and the previous best CPU
3205 		 * is, keep using it.
3206 		 */
3207 		if (!idle_cpu(cpu) && env->best_cpu >= 0 &&
3208 		    idle_cpu(env->best_cpu)) {
3209 			cpu = env->best_cpu;
3210 		}
3211 
3212 		env->dst_cpu = cpu;
3213 	}
3214 
3215 	task_numa_assign(env, cur, imp);
3216 
3217 	/*
3218 	 * If a move to idle is allowed because there is capacity or load
3219 	 * balance improves then stop the search. While a better swap
3220 	 * candidate may exist, a search is not free.
3221 	 */
3222 	if (maymove && !cur && env->best_cpu >= 0 && idle_cpu(env->best_cpu))
3223 		stopsearch = true;
3224 
3225 	/*
3226 	 * If a swap candidate must be identified and the current best task
3227 	 * moves its preferred node then stop the search.
3228 	 */
3229 	if (!maymove && env->best_task &&
3230 	    env->best_task->numa_preferred_nid == env->src_nid) {
3231 		stopsearch = true;
3232 	}
3233 unlock:
3234 	rcu_read_unlock();
3235 
3236 	return stopsearch;
3237 }
3238 
3239 static void task_numa_find_cpu(struct task_numa_env *env,
3240 				long taskimp, long groupimp)
3241 {
3242 	bool maymove = false;
3243 	int cpu;
3244 
3245 	/*
3246 	 * If dst node has spare capacity, then check if there is an
3247 	 * imbalance that would be overruled by the load balancer.
3248 	 */
3249 	if (env->dst_stats.node_type == node_has_spare) {
3250 		unsigned int imbalance;
3251 		int src_running, dst_running;
3252 
3253 		/*
3254 		 * Would movement cause an imbalance? Note that if src has
3255 		 * more running tasks that the imbalance is ignored as the
3256 		 * move improves the imbalance from the perspective of the
3257 		 * CPU load balancer.
3258 		 * */
3259 		src_running = env->src_stats.nr_running - 1;
3260 		dst_running = env->dst_stats.nr_running + 1;
3261 		imbalance = max(0, dst_running - src_running);
3262 		imbalance = adjust_numa_imbalance(imbalance, dst_running,
3263 						  env->imb_numa_nr);
3264 
3265 		/* Use idle CPU if there is no imbalance */
3266 		if (!imbalance) {
3267 			maymove = true;
3268 			if (env->dst_stats.idle_cpu >= 0) {
3269 				env->dst_cpu = env->dst_stats.idle_cpu;
3270 				task_numa_assign(env, NULL, 0);
3271 				return;
3272 			}
3273 		}
3274 	} else {
3275 		long src_load, dst_load, load;
3276 		/*
3277 		 * If the improvement from just moving env->p direction is better
3278 		 * than swapping tasks around, check if a move is possible.
3279 		 */
3280 		load = task_h_load(env->p);
3281 		dst_load = env->dst_stats.load + load;
3282 		src_load = env->src_stats.load - load;
3283 		maymove = !load_too_imbalanced(src_load, dst_load, env);
3284 	}
3285 
3286 	/* Skip CPUs if the source task cannot migrate */
3287 	for_each_cpu_and(cpu, cpumask_of_node(env->dst_nid), env->p->cpus_ptr) {
3288 		env->dst_cpu = cpu;
3289 		if (task_numa_compare(env, taskimp, groupimp, maymove))
3290 			break;
3291 	}
3292 }
3293 
3294 static int task_numa_migrate(struct task_struct *p)
3295 {
3296 	struct task_numa_env env = {
3297 		.p = p,
3298 
3299 		.src_cpu = task_cpu(p),
3300 		.src_nid = task_node(p),
3301 
3302 		.imbalance_pct = 112,
3303 
3304 		.best_task = NULL,
3305 		.best_imp = 0,
3306 		.best_cpu = -1,
3307 	};
3308 	unsigned long taskweight, groupweight;
3309 	struct sched_domain *sd;
3310 	long taskimp, groupimp;
3311 	struct numa_group *ng;
3312 	struct rq *best_rq;
3313 	int nid, ret, dist;
3314 
3315 	/*
3316 	 * Pick the lowest SD_NUMA domain, as that would have the smallest
3317 	 * imbalance and would be the first to start moving tasks about.
3318 	 *
3319 	 * And we want to avoid any moving of tasks about, as that would create
3320 	 * random movement of tasks -- counter the numa conditions we're trying
3321 	 * to satisfy here.
3322 	 */
3323 	rcu_read_lock();
3324 	sd = rcu_dereference_all(per_cpu(sd_numa, env.src_cpu));
3325 	if (sd) {
3326 		env.imbalance_pct = 100 + (sd->imbalance_pct - 100) / 2;
3327 		env.imb_numa_nr = sd->imb_numa_nr;
3328 	}
3329 	rcu_read_unlock();
3330 
3331 	/*
3332 	 * Cpusets can break the scheduler domain tree into smaller
3333 	 * balance domains, some of which do not cross NUMA boundaries.
3334 	 * Tasks that are "trapped" in such domains cannot be migrated
3335 	 * elsewhere, so there is no point in (re)trying.
3336 	 */
3337 	if (unlikely(!sd)) {
3338 		sched_setnuma(p, task_node(p));
3339 		return -EINVAL;
3340 	}
3341 
3342 	env.dst_nid = p->numa_preferred_nid;
3343 	dist = env.dist = node_distance(env.src_nid, env.dst_nid);
3344 	taskweight = task_weight(p, env.src_nid, dist);
3345 	groupweight = group_weight(p, env.src_nid, dist);
3346 	update_numa_stats(&env, &env.src_stats, env.src_nid, false);
3347 	taskimp = task_weight(p, env.dst_nid, dist) - taskweight;
3348 	groupimp = group_weight(p, env.dst_nid, dist) - groupweight;
3349 	update_numa_stats(&env, &env.dst_stats, env.dst_nid, true);
3350 
3351 	/* Try to find a spot on the preferred nid. */
3352 	task_numa_find_cpu(&env, taskimp, groupimp);
3353 
3354 	/*
3355 	 * Look at other nodes in these cases:
3356 	 * - there is no space available on the preferred_nid
3357 	 * - the task is part of a numa_group that is interleaved across
3358 	 *   multiple NUMA nodes; in order to better consolidate the group,
3359 	 *   we need to check other locations.
3360 	 */
3361 	ng = deref_curr_numa_group(p);
3362 	if (env.best_cpu == -1 || (ng && ng->active_nodes > 1)) {
3363 		for_each_node_state(nid, N_CPU) {
3364 			if (nid == env.src_nid || nid == p->numa_preferred_nid)
3365 				continue;
3366 
3367 			dist = node_distance(env.src_nid, env.dst_nid);
3368 			if (sched_numa_topology_type == NUMA_BACKPLANE &&
3369 						dist != env.dist) {
3370 				taskweight = task_weight(p, env.src_nid, dist);
3371 				groupweight = group_weight(p, env.src_nid, dist);
3372 			}
3373 
3374 			/* Only consider nodes where both task and groups benefit */
3375 			taskimp = task_weight(p, nid, dist) - taskweight;
3376 			groupimp = group_weight(p, nid, dist) - groupweight;
3377 			if (taskimp < 0 && groupimp < 0)
3378 				continue;
3379 
3380 			env.dist = dist;
3381 			env.dst_nid = nid;
3382 			update_numa_stats(&env, &env.dst_stats, env.dst_nid, true);
3383 			task_numa_find_cpu(&env, taskimp, groupimp);
3384 		}
3385 	}
3386 
3387 	/*
3388 	 * If the task is part of a workload that spans multiple NUMA nodes,
3389 	 * and is migrating into one of the workload's active nodes, remember
3390 	 * this node as the task's preferred numa node, so the workload can
3391 	 * settle down.
3392 	 * A task that migrated to a second choice node will be better off
3393 	 * trying for a better one later. Do not set the preferred node here.
3394 	 */
3395 	if (ng) {
3396 		if (env.best_cpu == -1)
3397 			nid = env.src_nid;
3398 		else
3399 			nid = cpu_to_node(env.best_cpu);
3400 
3401 		if (nid != p->numa_preferred_nid)
3402 			sched_setnuma(p, nid);
3403 	}
3404 
3405 	/* No better CPU than the current one was found. */
3406 	if (env.best_cpu == -1) {
3407 		trace_sched_stick_numa(p, env.src_cpu, NULL, -1);
3408 		return -EAGAIN;
3409 	}
3410 
3411 	best_rq = cpu_rq(env.best_cpu);
3412 	if (env.best_task == NULL) {
3413 		ret = migrate_task_to(p, env.best_cpu);
3414 		WRITE_ONCE(best_rq->numa_migrate_on, 0);
3415 		if (ret != 0)
3416 			trace_sched_stick_numa(p, env.src_cpu, NULL, env.best_cpu);
3417 		return ret;
3418 	}
3419 
3420 	ret = migrate_swap(p, env.best_task, env.best_cpu, env.src_cpu);
3421 	WRITE_ONCE(best_rq->numa_migrate_on, 0);
3422 
3423 	if (ret != 0)
3424 		trace_sched_stick_numa(p, env.src_cpu, env.best_task, env.best_cpu);
3425 	put_task_struct(env.best_task);
3426 	return ret;
3427 }
3428 
3429 /* Attempt to migrate a task to a CPU on the preferred node. */
3430 static void numa_migrate_preferred(struct task_struct *p)
3431 {
3432 	unsigned long interval = HZ;
3433 
3434 	/* This task has no NUMA fault statistics yet */
3435 	if (unlikely(p->numa_preferred_nid == NUMA_NO_NODE || !p->numa_faults))
3436 		return;
3437 
3438 	/* Periodically retry migrating the task to the preferred node */
3439 	interval = min(interval, msecs_to_jiffies(p->numa_scan_period) / 16);
3440 	p->numa_migrate_retry = jiffies + interval;
3441 
3442 	/* Success if task is already running on preferred CPU */
3443 	if (task_node(p) == p->numa_preferred_nid)
3444 		return;
3445 
3446 	/* Otherwise, try migrate to a CPU on the preferred node */
3447 	task_numa_migrate(p);
3448 }
3449 
3450 /*
3451  * Find out how many nodes the workload is actively running on. Do this by
3452  * tracking the nodes from which NUMA hinting faults are triggered. This can
3453  * be different from the set of nodes where the workload's memory is currently
3454  * located.
3455  */
3456 static void numa_group_count_active_nodes(struct numa_group *numa_group)
3457 {
3458 	unsigned long faults, max_faults = 0;
3459 	int nid, active_nodes = 0;
3460 
3461 	for_each_node_state(nid, N_CPU) {
3462 		faults = group_faults_cpu(numa_group, nid);
3463 		if (faults > max_faults)
3464 			max_faults = faults;
3465 	}
3466 
3467 	for_each_node_state(nid, N_CPU) {
3468 		faults = group_faults_cpu(numa_group, nid);
3469 		if (faults * ACTIVE_NODE_FRACTION > max_faults)
3470 			active_nodes++;
3471 	}
3472 
3473 	numa_group->max_faults_cpu = max_faults;
3474 	numa_group->active_nodes = active_nodes;
3475 }
3476 
3477 /*
3478  * When adapting the scan rate, the period is divided into NUMA_PERIOD_SLOTS
3479  * increments. The more local the fault statistics are, the higher the scan
3480  * period will be for the next scan window. If local/(local+remote) ratio is
3481  * below NUMA_PERIOD_THRESHOLD (where range of ratio is 1..NUMA_PERIOD_SLOTS)
3482  * the scan period will decrease. Aim for 70% local accesses.
3483  */
3484 #define NUMA_PERIOD_SLOTS 10
3485 #define NUMA_PERIOD_THRESHOLD 7
3486 
3487 /*
3488  * Increase the scan period (slow down scanning) if the majority of
3489  * our memory is already on our local node, or if the majority of
3490  * the page accesses are shared with other processes.
3491  * Otherwise, decrease the scan period.
3492  */
3493 static void update_task_scan_period(struct task_struct *p,
3494 			unsigned long shared, unsigned long private)
3495 {
3496 	unsigned int period_slot;
3497 	int lr_ratio, ps_ratio;
3498 	int diff;
3499 
3500 	unsigned long remote = p->numa_faults_locality[0];
3501 	unsigned long local = p->numa_faults_locality[1];
3502 
3503 	/*
3504 	 * If there were no record hinting faults then either the task is
3505 	 * completely idle or all activity is in areas that are not of interest
3506 	 * to automatic numa balancing. Related to that, if there were failed
3507 	 * migration then it implies we are migrating too quickly or the local
3508 	 * node is overloaded. In either case, scan slower
3509 	 */
3510 	if (local + shared == 0 || p->numa_faults_locality[2]) {
3511 		p->numa_scan_period = min(p->numa_scan_period_max,
3512 			p->numa_scan_period << 1);
3513 
3514 		p->mm->numa_next_scan = jiffies +
3515 			msecs_to_jiffies(p->numa_scan_period);
3516 
3517 		return;
3518 	}
3519 
3520 	/*
3521 	 * Prepare to scale scan period relative to the current period.
3522 	 *	 == NUMA_PERIOD_THRESHOLD scan period stays the same
3523 	 *       <  NUMA_PERIOD_THRESHOLD scan period decreases (scan faster)
3524 	 *	 >= NUMA_PERIOD_THRESHOLD scan period increases (scan slower)
3525 	 */
3526 	period_slot = DIV_ROUND_UP(p->numa_scan_period, NUMA_PERIOD_SLOTS);
3527 	lr_ratio = (local * NUMA_PERIOD_SLOTS) / (local + remote);
3528 	ps_ratio = (private * NUMA_PERIOD_SLOTS) / (private + shared);
3529 
3530 	if (ps_ratio >= NUMA_PERIOD_THRESHOLD) {
3531 		/*
3532 		 * Most memory accesses are local. There is no need to
3533 		 * do fast NUMA scanning, since memory is already local.
3534 		 */
3535 		int slot = ps_ratio - NUMA_PERIOD_THRESHOLD;
3536 		if (!slot)
3537 			slot = 1;
3538 		diff = slot * period_slot;
3539 	} else if (lr_ratio >= NUMA_PERIOD_THRESHOLD) {
3540 		/*
3541 		 * Most memory accesses are shared with other tasks.
3542 		 * There is no point in continuing fast NUMA scanning,
3543 		 * since other tasks may just move the memory elsewhere.
3544 		 */
3545 		int slot = lr_ratio - NUMA_PERIOD_THRESHOLD;
3546 		if (!slot)
3547 			slot = 1;
3548 		diff = slot * period_slot;
3549 	} else {
3550 		/*
3551 		 * Private memory faults exceed (SLOTS-THRESHOLD)/SLOTS,
3552 		 * yet they are not on the local NUMA node. Speed up
3553 		 * NUMA scanning to get the memory moved over.
3554 		 */
3555 		int ratio = max(lr_ratio, ps_ratio);
3556 		diff = -(NUMA_PERIOD_THRESHOLD - ratio) * period_slot;
3557 	}
3558 
3559 	p->numa_scan_period = clamp(p->numa_scan_period + diff,
3560 			task_scan_min(p), task_scan_max(p));
3561 	memset(p->numa_faults_locality, 0, sizeof(p->numa_faults_locality));
3562 }
3563 
3564 /*
3565  * Get the fraction of time the task has been running since the last
3566  * NUMA placement cycle. The scheduler keeps similar statistics, but
3567  * decays those on a 32ms period, which is orders of magnitude off
3568  * from the dozens-of-seconds NUMA balancing period. Use the scheduler
3569  * stats only if the task is so new there are no NUMA statistics yet.
3570  */
3571 static u64 numa_get_avg_runtime(struct task_struct *p, u64 *period)
3572 {
3573 	u64 runtime, delta, now;
3574 	/* Use the start of this time slice to avoid calculations. */
3575 	now = p->se.exec_start;
3576 	runtime = p->se.sum_exec_runtime;
3577 
3578 	if (p->last_task_numa_placement) {
3579 		delta = runtime - p->last_sum_exec_runtime;
3580 		*period = now - p->last_task_numa_placement;
3581 
3582 		/* Avoid time going backwards, prevent potential divide error: */
3583 		if (unlikely((s64)*period < 0))
3584 			*period = 0;
3585 	} else {
3586 		delta = p->se.avg.load_sum;
3587 		*period = LOAD_AVG_MAX;
3588 	}
3589 
3590 	p->last_sum_exec_runtime = runtime;
3591 	p->last_task_numa_placement = now;
3592 
3593 	return delta;
3594 }
3595 
3596 /*
3597  * Determine the preferred nid for a task in a numa_group. This needs to
3598  * be done in a way that produces consistent results with group_weight,
3599  * otherwise workloads might not converge.
3600  */
3601 static int preferred_group_nid(struct task_struct *p, int nid)
3602 {
3603 	nodemask_t nodes;
3604 	int dist;
3605 
3606 	/* Direct connections between all NUMA nodes. */
3607 	if (sched_numa_topology_type == NUMA_DIRECT)
3608 		return nid;
3609 
3610 	/*
3611 	 * On a system with glueless mesh NUMA topology, group_weight
3612 	 * scores nodes according to the number of NUMA hinting faults on
3613 	 * both the node itself, and on nearby nodes.
3614 	 */
3615 	if (sched_numa_topology_type == NUMA_GLUELESS_MESH) {
3616 		unsigned long score, max_score = 0;
3617 		int node, max_node = nid;
3618 
3619 		dist = sched_max_numa_distance;
3620 
3621 		for_each_node_state(node, N_CPU) {
3622 			score = group_weight(p, node, dist);
3623 			if (score > max_score) {
3624 				max_score = score;
3625 				max_node = node;
3626 			}
3627 		}
3628 		return max_node;
3629 	}
3630 
3631 	/*
3632 	 * Finding the preferred nid in a system with NUMA backplane
3633 	 * interconnect topology is more involved. The goal is to locate
3634 	 * tasks from numa_groups near each other in the system, and
3635 	 * untangle workloads from different sides of the system. This requires
3636 	 * searching down the hierarchy of node groups, recursively searching
3637 	 * inside the highest scoring group of nodes. The nodemask tricks
3638 	 * keep the complexity of the search down.
3639 	 */
3640 	nodes = node_states[N_CPU];
3641 	for (dist = sched_max_numa_distance; dist > LOCAL_DISTANCE; dist--) {
3642 		unsigned long max_faults = 0;
3643 		nodemask_t max_group = NODE_MASK_NONE;
3644 		int a, b;
3645 
3646 		/* Are there nodes at this distance from each other? */
3647 		if (!find_numa_distance(dist))
3648 			continue;
3649 
3650 		for_each_node_mask(a, nodes) {
3651 			unsigned long faults = 0;
3652 			nodemask_t this_group;
3653 			nodes_clear(this_group);
3654 
3655 			/* Sum group's NUMA faults; includes a==b case. */
3656 			for_each_node_mask(b, nodes) {
3657 				if (node_distance(a, b) < dist) {
3658 					faults += group_faults(p, b);
3659 					node_set(b, this_group);
3660 					node_clear(b, nodes);
3661 				}
3662 			}
3663 
3664 			/* Remember the top group. */
3665 			if (faults > max_faults) {
3666 				max_faults = faults;
3667 				max_group = this_group;
3668 				/*
3669 				 * subtle: at the smallest distance there is
3670 				 * just one node left in each "group", the
3671 				 * winner is the preferred nid.
3672 				 */
3673 				nid = a;
3674 			}
3675 		}
3676 		/* Next round, evaluate the nodes within max_group. */
3677 		if (!max_faults)
3678 			break;
3679 		nodes = max_group;
3680 	}
3681 	return nid;
3682 }
3683 
3684 static void task_numa_placement(struct task_struct *p)
3685 	__context_unsafe(/* conditional locking */)
3686 {
3687 	int seq, nid, max_nid = NUMA_NO_NODE;
3688 	unsigned long max_faults = 0;
3689 	unsigned long fault_types[2] = { 0, 0 };
3690 	unsigned long total_faults;
3691 	u64 runtime, period;
3692 	spinlock_t *group_lock = NULL;
3693 	long __maybe_unused new_fp;
3694 	struct numa_group *ng;
3695 
3696 	/*
3697 	 * The p->mm->numa_scan_seq field gets updated without
3698 	 * exclusive access. Use READ_ONCE() here to ensure
3699 	 * that the field is read in a single access:
3700 	 */
3701 	seq = READ_ONCE(p->mm->numa_scan_seq);
3702 	if (p->numa_scan_seq == seq)
3703 		return;
3704 	p->numa_scan_seq = seq;
3705 	p->numa_scan_period_max = task_scan_max(p);
3706 
3707 	total_faults = p->numa_faults_locality[0] +
3708 		       p->numa_faults_locality[1];
3709 	runtime = numa_get_avg_runtime(p, &period);
3710 
3711 	/* If the task is part of a group prevent parallel updates to group stats */
3712 	ng = deref_curr_numa_group(p);
3713 	if (ng) {
3714 		group_lock = &ng->lock;
3715 		spin_lock_irq(group_lock);
3716 	}
3717 
3718 	/* Find the node with the highest number of faults */
3719 	for_each_online_node(nid) {
3720 		/* Keep track of the offsets in numa_faults array */
3721 		int mem_idx, membuf_idx, cpu_idx, cpubuf_idx;
3722 		unsigned long faults = 0, group_faults = 0;
3723 		int priv;
3724 
3725 		for (priv = 0; priv < NR_NUMA_HINT_FAULT_TYPES; priv++) {
3726 			long diff, f_diff, f_weight;
3727 
3728 			mem_idx = task_faults_idx(NUMA_MEM, nid, priv);
3729 			membuf_idx = task_faults_idx(NUMA_MEMBUF, nid, priv);
3730 			cpu_idx = task_faults_idx(NUMA_CPU, nid, priv);
3731 			cpubuf_idx = task_faults_idx(NUMA_CPUBUF, nid, priv);
3732 
3733 			/* Decay existing window, copy faults since last scan */
3734 			diff = p->numa_faults[membuf_idx] - p->numa_faults[mem_idx] / 2;
3735 			fault_types[priv] += p->numa_faults[membuf_idx];
3736 			p->numa_faults[membuf_idx] = 0;
3737 
3738 			/*
3739 			 * Normalize the faults_from, so all tasks in a group
3740 			 * count according to CPU use, instead of by the raw
3741 			 * number of faults. Tasks with little runtime have
3742 			 * little over-all impact on throughput, and thus their
3743 			 * faults are less important.
3744 			 */
3745 			f_weight = div64_u64(runtime << 16, period + 1);
3746 			f_weight = (f_weight * p->numa_faults[cpubuf_idx]) /
3747 				   (total_faults + 1);
3748 			f_diff = f_weight - p->numa_faults[cpu_idx] / 2;
3749 			p->numa_faults[cpubuf_idx] = 0;
3750 
3751 			p->numa_faults[mem_idx] += diff;
3752 			p->numa_faults[cpu_idx] += f_diff;
3753 			faults += p->numa_faults[mem_idx];
3754 			p->total_numa_faults += diff;
3755 			if (ng) {
3756 				/*
3757 				 * safe because we can only change our own group
3758 				 *
3759 				 * mem_idx represents the offset for a given
3760 				 * nid and priv in a specific region because it
3761 				 * is at the beginning of the numa_faults array.
3762 				 */
3763 				ng->faults[mem_idx] += diff;
3764 				ng->faults[cpu_idx] += f_diff;
3765 				ng->total_faults += diff;
3766 				group_faults += ng->faults[mem_idx];
3767 			}
3768 #ifdef CONFIG_SCHED_CACHE
3769 			/*
3770 			 * Per task p->numa_faults[mem_idx] converges,
3771 			 * so the accumulation of each task's faults
3772 			 * converges too - Given the number of threads,
3773 			 * it cannot overflow an unsigned long.
3774 			 * Racy with concurrent updates from other threads
3775 			 * sharing this mm. Acceptable since footprint is a
3776 			 * heuristic and occasional lost updates are tolerable.
3777 			 *
3778 			 * If a task exits, its corresponding footprint must
3779 			 * be subtracted from the mm->sc_stat.footprint, otherwise
3780 			 * the mm->sc_stat.footprint will not converge:
3781 			 * the exiting thread's footprint remains unchanged/undecayed
3782 			 * in mm->sc_stat.footprint. See exit_mm().
3783 			 *
3784 			 * Lost updates and unsynchronized subtraction
3785 			 * in exit_mm() can cause footprint + diff to
3786 			 * go negative. Clamp to zero to prevent the
3787 			 * unsigned footprint from wrapping.
3788 			 */
3789 			new_fp = (long)READ_ONCE(p->mm->sc_stat.footprint) + diff;
3790 			WRITE_ONCE(p->mm->sc_stat.footprint,
3791 				   max(new_fp, 0L));
3792 #endif
3793 		}
3794 
3795 		if (!ng) {
3796 			if (faults > max_faults) {
3797 				max_faults = faults;
3798 				max_nid = nid;
3799 			}
3800 		} else if (group_faults > max_faults) {
3801 			max_faults = group_faults;
3802 			max_nid = nid;
3803 		}
3804 	}
3805 
3806 	/* Cannot migrate task to CPU-less node */
3807 	max_nid = numa_nearest_node(max_nid, N_CPU);
3808 
3809 	if (ng) {
3810 		numa_group_count_active_nodes(ng);
3811 		spin_unlock_irq(group_lock);
3812 		max_nid = preferred_group_nid(p, max_nid);
3813 	}
3814 
3815 	if (max_faults) {
3816 		/* Set the new preferred node */
3817 		if (max_nid != p->numa_preferred_nid)
3818 			sched_setnuma(p, max_nid);
3819 	}
3820 
3821 	update_task_scan_period(p, fault_types[0], fault_types[1]);
3822 }
3823 
3824 static inline int get_numa_group(struct numa_group *grp)
3825 {
3826 	return refcount_inc_not_zero(&grp->refcount);
3827 }
3828 
3829 static inline void put_numa_group(struct numa_group *grp)
3830 {
3831 	if (refcount_dec_and_test(&grp->refcount))
3832 		kfree_rcu(grp, rcu);
3833 }
3834 
3835 static void task_numa_group(struct task_struct *p, int cpupid, int flags,
3836 			int *priv)
3837 {
3838 	struct numa_group *grp, *my_grp;
3839 	struct task_struct *tsk;
3840 	bool join = false;
3841 	int cpu = cpupid_to_cpu(cpupid);
3842 	int i;
3843 
3844 	if (unlikely(!deref_curr_numa_group(p))) {
3845 		unsigned int size = sizeof(struct numa_group) +
3846 				    NR_NUMA_HINT_FAULT_STATS *
3847 				    nr_node_ids * sizeof(unsigned long);
3848 
3849 		grp = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
3850 		if (!grp)
3851 			return;
3852 
3853 		refcount_set(&grp->refcount, 1);
3854 		grp->active_nodes = 1;
3855 		grp->max_faults_cpu = 0;
3856 		spin_lock_init(&grp->lock);
3857 		grp->gid = p->pid;
3858 
3859 		for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++)
3860 			grp->faults[i] = p->numa_faults[i];
3861 
3862 		grp->total_faults = p->total_numa_faults;
3863 
3864 		grp->nr_tasks++;
3865 		rcu_assign_pointer(p->numa_group, grp);
3866 	}
3867 
3868 	rcu_read_lock();
3869 	tsk = READ_ONCE(cpu_rq(cpu)->curr);
3870 
3871 	if (!cpupid_match_pid(tsk, cpupid))
3872 		goto no_join;
3873 
3874 	grp = rcu_dereference_all(tsk->numa_group);
3875 	if (!grp)
3876 		goto no_join;
3877 
3878 	my_grp = deref_curr_numa_group(p);
3879 	if (grp == my_grp)
3880 		goto no_join;
3881 
3882 	/*
3883 	 * Only join the other group if its bigger; if we're the bigger group,
3884 	 * the other task will join us.
3885 	 */
3886 	if (my_grp->nr_tasks > grp->nr_tasks)
3887 		goto no_join;
3888 
3889 	/*
3890 	 * Tie-break on the grp address.
3891 	 */
3892 	if (my_grp->nr_tasks == grp->nr_tasks && my_grp > grp)
3893 		goto no_join;
3894 
3895 	/* Always join threads in the same process. */
3896 	if (tsk->mm == current->mm)
3897 		join = true;
3898 
3899 	/* Simple filter to avoid false positives due to PID collisions */
3900 	if (flags & TNF_SHARED)
3901 		join = true;
3902 
3903 	/* Update priv based on whether false sharing was detected */
3904 	*priv = !join;
3905 
3906 	if (join && !get_numa_group(grp))
3907 		goto no_join;
3908 
3909 	rcu_read_unlock();
3910 
3911 	if (!join)
3912 		return;
3913 
3914 	WARN_ON_ONCE(irqs_disabled());
3915 	double_lock_irq(&my_grp->lock, &grp->lock);
3916 
3917 	for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++) {
3918 		my_grp->faults[i] -= p->numa_faults[i];
3919 		grp->faults[i] += p->numa_faults[i];
3920 	}
3921 	my_grp->total_faults -= p->total_numa_faults;
3922 	grp->total_faults += p->total_numa_faults;
3923 
3924 	my_grp->nr_tasks--;
3925 	grp->nr_tasks++;
3926 
3927 	spin_unlock(&my_grp->lock);
3928 	spin_unlock_irq(&grp->lock);
3929 
3930 	rcu_assign_pointer(p->numa_group, grp);
3931 
3932 	put_numa_group(my_grp);
3933 	return;
3934 
3935 no_join:
3936 	rcu_read_unlock();
3937 	return;
3938 }
3939 
3940 /*
3941  * Get rid of NUMA statistics associated with a task (either current or dead).
3942  * If @final is set, the task is dead and has reached refcount zero, so we can
3943  * safely free all relevant data structures. Otherwise, there might be
3944  * concurrent reads from places like load balancing and procfs, and we should
3945  * reset the data back to default state without freeing ->numa_faults.
3946  */
3947 void task_numa_free(struct task_struct *p, bool final)
3948 {
3949 	/* safe: p either is current or is being freed by current */
3950 	struct numa_group *grp = rcu_dereference_raw(p->numa_group);
3951 	unsigned long *numa_faults = p->numa_faults;
3952 	unsigned long flags;
3953 	int i;
3954 
3955 	if (!numa_faults)
3956 		return;
3957 
3958 	if (grp) {
3959 		spin_lock_irqsave(&grp->lock, flags);
3960 		for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++)
3961 			grp->faults[i] -= p->numa_faults[i];
3962 		grp->total_faults -= p->total_numa_faults;
3963 
3964 		grp->nr_tasks--;
3965 		spin_unlock_irqrestore(&grp->lock, flags);
3966 		RCU_INIT_POINTER(p->numa_group, NULL);
3967 		put_numa_group(grp);
3968 	}
3969 
3970 	if (final) {
3971 		p->numa_faults = NULL;
3972 		kfree(numa_faults);
3973 	} else {
3974 		p->total_numa_faults = 0;
3975 		for (i = 0; i < NR_NUMA_HINT_FAULT_STATS * nr_node_ids; i++)
3976 			numa_faults[i] = 0;
3977 	}
3978 }
3979 
3980 /*
3981  * Got a PROT_NONE fault for a page on @node.
3982  */
3983 void task_numa_fault(int last_cpupid, int mem_node, int pages, int flags)
3984 {
3985 	struct task_struct *p = current;
3986 	bool migrated = flags & TNF_MIGRATED;
3987 	int cpu_node = task_node(current);
3988 	int local = !!(flags & TNF_FAULT_LOCAL);
3989 	struct numa_group *ng;
3990 	int priv;
3991 
3992 	if (!static_branch_likely(&sched_numa_balancing))
3993 		return;
3994 
3995 	/* for example, ksmd faulting in a user's mm */
3996 	if (!p->mm)
3997 		return;
3998 
3999 	/*
4000 	 * NUMA faults statistics are unnecessary for the slow memory
4001 	 * node for memory tiering mode.
4002 	 */
4003 	if (!node_is_toptier(mem_node) &&
4004 	    (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING ||
4005 	     !cpupid_valid(last_cpupid)))
4006 		return;
4007 
4008 	/* Allocate buffer to track faults on a per-node basis */
4009 	if (unlikely(!p->numa_faults)) {
4010 		int size = sizeof(*p->numa_faults) *
4011 			   NR_NUMA_HINT_FAULT_BUCKETS * nr_node_ids;
4012 
4013 		p->numa_faults = kzalloc(size, GFP_KERNEL|__GFP_NOWARN);
4014 		if (!p->numa_faults)
4015 			return;
4016 
4017 		p->total_numa_faults = 0;
4018 		memset(p->numa_faults_locality, 0, sizeof(p->numa_faults_locality));
4019 	}
4020 
4021 	/*
4022 	 * First accesses are treated as private, otherwise consider accesses
4023 	 * to be private if the accessing pid has not changed
4024 	 */
4025 	if (unlikely(last_cpupid == (-1 & LAST_CPUPID_MASK))) {
4026 		priv = 1;
4027 	} else {
4028 		priv = cpupid_match_pid(p, last_cpupid);
4029 		if (!priv && !(flags & TNF_NO_GROUP))
4030 			task_numa_group(p, last_cpupid, flags, &priv);
4031 	}
4032 
4033 	/*
4034 	 * If a workload spans multiple NUMA nodes, a shared fault that
4035 	 * occurs wholly within the set of nodes that the workload is
4036 	 * actively using should be counted as local. This allows the
4037 	 * scan rate to slow down when a workload has settled down.
4038 	 */
4039 	ng = deref_curr_numa_group(p);
4040 	if (!priv && !local && ng && ng->active_nodes > 1 &&
4041 				numa_is_active_node(cpu_node, ng) &&
4042 				numa_is_active_node(mem_node, ng))
4043 		local = 1;
4044 
4045 	/*
4046 	 * Retry to migrate task to preferred node periodically, in case it
4047 	 * previously failed, or the scheduler moved us.
4048 	 */
4049 	if (time_after(jiffies, p->numa_migrate_retry)) {
4050 		task_numa_placement(p);
4051 		numa_migrate_preferred(p);
4052 	}
4053 
4054 	if (migrated)
4055 		p->numa_pages_migrated += pages;
4056 	if (flags & TNF_MIGRATE_FAIL)
4057 		p->numa_faults_locality[2] += pages;
4058 
4059 	p->numa_faults[task_faults_idx(NUMA_MEMBUF, mem_node, priv)] += pages;
4060 	p->numa_faults[task_faults_idx(NUMA_CPUBUF, cpu_node, priv)] += pages;
4061 	p->numa_faults_locality[local] += pages;
4062 }
4063 
4064 static void reset_ptenuma_scan(struct task_struct *p)
4065 {
4066 	/*
4067 	 * We only did a read acquisition of the mmap sem, so
4068 	 * p->mm->numa_scan_seq is written to without exclusive access
4069 	 * and the update is not guaranteed to be atomic. That's not
4070 	 * much of an issue though, since this is just used for
4071 	 * statistical sampling. Use READ_ONCE/WRITE_ONCE, which are not
4072 	 * expensive, to avoid any form of compiler optimizations:
4073 	 */
4074 	WRITE_ONCE(p->mm->numa_scan_seq, READ_ONCE(p->mm->numa_scan_seq) + 1);
4075 	p->mm->numa_scan_offset = 0;
4076 }
4077 
4078 static bool vma_is_accessed(struct mm_struct *mm, struct vm_area_struct *vma)
4079 {
4080 	unsigned long pids;
4081 	/*
4082 	 * Allow unconditional access first two times, so that all the (pages)
4083 	 * of VMAs get prot_none fault introduced irrespective of accesses.
4084 	 * This is also done to avoid any side effect of task scanning
4085 	 * amplifying the unfairness of disjoint set of VMAs' access.
4086 	 */
4087 	if ((READ_ONCE(current->mm->numa_scan_seq) - vma->numab_state->start_scan_seq) < 2)
4088 		return true;
4089 
4090 	pids = vma->numab_state->pids_active[0] | vma->numab_state->pids_active[1];
4091 	if (test_bit(hash_32(current->pid, ilog2(BITS_PER_LONG)), &pids))
4092 		return true;
4093 
4094 	/*
4095 	 * Complete a scan that has already started regardless of PID access, or
4096 	 * some VMAs may never be scanned in multi-threaded applications:
4097 	 */
4098 	if (mm->numa_scan_offset > vma->vm_start) {
4099 		trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_IGNORE_PID);
4100 		return true;
4101 	}
4102 
4103 	/*
4104 	 * This vma has not been accessed for a while, and if the number
4105 	 * the threads in the same process is low, which means no other
4106 	 * threads can help scan this vma, force a vma scan.
4107 	 */
4108 	if (READ_ONCE(mm->numa_scan_seq) >
4109 	   (vma->numab_state->prev_scan_seq + get_nr_threads(current)))
4110 		return true;
4111 
4112 	return false;
4113 }
4114 
4115 #define VMA_PID_RESET_PERIOD (4 * sysctl_numa_balancing_scan_delay)
4116 
4117 /*
4118  * The expensive part of numa migration is done from task_work context.
4119  * Triggered from task_tick_numa().
4120  */
4121 static void task_numa_work(struct callback_head *work)
4122 {
4123 	unsigned long migrate, next_scan, now = jiffies;
4124 	struct task_struct *p = current;
4125 	struct mm_struct *mm = p->mm;
4126 	u64 runtime = p->se.sum_exec_runtime;
4127 	struct vm_area_struct *vma;
4128 	unsigned long start, end;
4129 	unsigned long nr_pte_updates = 0;
4130 	long pages, virtpages;
4131 	struct vma_iterator vmi;
4132 	bool vma_pids_skipped;
4133 	bool vma_pids_forced = false;
4134 
4135 	WARN_ON_ONCE(p != container_of(work, struct task_struct, numa_work));
4136 
4137 	work->next = work;
4138 	/*
4139 	 * Who cares about NUMA placement when they're dying.
4140 	 *
4141 	 * NOTE: make sure not to dereference p->mm before this check,
4142 	 * exit_task_work() happens _after_ exit_mm() so we could be called
4143 	 * without p->mm even though we still had it when we enqueued this
4144 	 * work.
4145 	 */
4146 	if (p->flags & PF_EXITING)
4147 		return;
4148 
4149 	/*
4150 	 * Memory is pinned to only one NUMA node via cpuset.mems, naturally
4151 	 * no page can be migrated.
4152 	 */
4153 	if (cpusets_enabled() && nodes_weight(cpuset_current_mems_allowed) == 1) {
4154 		trace_sched_skip_cpuset_numa(current, &cpuset_current_mems_allowed);
4155 		return;
4156 	}
4157 
4158 	if (!mm->numa_next_scan) {
4159 		mm->numa_next_scan = now +
4160 			msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
4161 	}
4162 
4163 	/*
4164 	 * Enforce maximal scan/migration frequency..
4165 	 */
4166 	migrate = mm->numa_next_scan;
4167 	if (time_before(now, migrate))
4168 		return;
4169 
4170 	if (p->numa_scan_period == 0) {
4171 		p->numa_scan_period_max = task_scan_max(p);
4172 		p->numa_scan_period = task_scan_start(p);
4173 	}
4174 
4175 	next_scan = now + msecs_to_jiffies(p->numa_scan_period);
4176 	if (!try_cmpxchg(&mm->numa_next_scan, &migrate, next_scan))
4177 		return;
4178 
4179 	/*
4180 	 * Delay this task enough that another task of this mm will likely win
4181 	 * the next time around.
4182 	 */
4183 	p->node_stamp += 2 * TICK_NSEC;
4184 
4185 	pages = sysctl_numa_balancing_scan_size;
4186 	pages <<= 20 - PAGE_SHIFT; /* MB in pages */
4187 	virtpages = pages * 8;	   /* Scan up to this much virtual space */
4188 	if (!pages)
4189 		return;
4190 
4191 
4192 	if (!mmap_read_trylock(mm))
4193 		return;
4194 
4195 	/*
4196 	 * VMAs are skipped if the current PID has not trapped a fault within
4197 	 * the VMA recently. Allow scanning to be forced if there is no
4198 	 * suitable VMA remaining.
4199 	 */
4200 	vma_pids_skipped = false;
4201 
4202 retry_pids:
4203 	start = mm->numa_scan_offset;
4204 	vma_iter_init(&vmi, mm, start);
4205 	vma = vma_next(&vmi);
4206 	if (!vma) {
4207 		reset_ptenuma_scan(p);
4208 		start = 0;
4209 		vma_iter_set(&vmi, start);
4210 		vma = vma_next(&vmi);
4211 	}
4212 
4213 	for (; vma; vma = vma_next(&vmi)) {
4214 		if (!vma_migratable(vma) || !vma_policy_mof(vma) ||
4215 			is_vm_hugetlb_page(vma) || (vma->vm_flags & VM_MIXEDMAP)) {
4216 			trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_UNSUITABLE);
4217 			continue;
4218 		}
4219 
4220 		/*
4221 		 * Shared library pages mapped by multiple processes are not
4222 		 * migrated as it is expected they are cache replicated. Avoid
4223 		 * hinting faults in read-only file-backed mappings or the vDSO
4224 		 * as migrating the pages will be of marginal benefit.
4225 		 */
4226 		if (!vma->vm_mm ||
4227 		    (vma->vm_file && (vma->vm_flags & (VM_READ|VM_WRITE)) == (VM_READ))) {
4228 			trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_SHARED_RO);
4229 			continue;
4230 		}
4231 
4232 		/*
4233 		 * Skip inaccessible VMAs to avoid any confusion between
4234 		 * PROT_NONE and NUMA hinting PTEs
4235 		 */
4236 		if (!vma_is_accessible(vma)) {
4237 			trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_INACCESSIBLE);
4238 			continue;
4239 		}
4240 
4241 		/* Initialise new per-VMA NUMAB state. */
4242 		if (!vma->numab_state) {
4243 			struct vma_numab_state *ptr;
4244 
4245 			ptr = kzalloc_obj(*ptr);
4246 			if (!ptr)
4247 				continue;
4248 
4249 			if (cmpxchg(&vma->numab_state, NULL, ptr)) {
4250 				kfree(ptr);
4251 				continue;
4252 			}
4253 
4254 			vma->numab_state->start_scan_seq = mm->numa_scan_seq;
4255 
4256 			vma->numab_state->next_scan = now +
4257 				msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
4258 
4259 			/* Reset happens after 4 times scan delay of scan start */
4260 			vma->numab_state->pids_active_reset =  vma->numab_state->next_scan +
4261 				msecs_to_jiffies(VMA_PID_RESET_PERIOD);
4262 
4263 			/*
4264 			 * Ensure prev_scan_seq does not match numa_scan_seq,
4265 			 * to prevent VMAs being skipped prematurely on the
4266 			 * first scan:
4267 			 */
4268 			 vma->numab_state->prev_scan_seq = mm->numa_scan_seq - 1;
4269 		}
4270 
4271 		/*
4272 		 * Scanning the VMAs of short lived tasks add more overhead. So
4273 		 * delay the scan for new VMAs.
4274 		 */
4275 		if (mm->numa_scan_seq && time_before(jiffies,
4276 						vma->numab_state->next_scan)) {
4277 			trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_SCAN_DELAY);
4278 			continue;
4279 		}
4280 
4281 		/* RESET access PIDs regularly for old VMAs. */
4282 		if (mm->numa_scan_seq &&
4283 				time_after(jiffies, vma->numab_state->pids_active_reset)) {
4284 			vma->numab_state->pids_active_reset = vma->numab_state->pids_active_reset +
4285 				msecs_to_jiffies(VMA_PID_RESET_PERIOD);
4286 			vma->numab_state->pids_active[0] = READ_ONCE(vma->numab_state->pids_active[1]);
4287 			vma->numab_state->pids_active[1] = 0;
4288 		}
4289 
4290 		/* Do not rescan VMAs twice within the same sequence. */
4291 		if (vma->numab_state->prev_scan_seq == mm->numa_scan_seq) {
4292 			mm->numa_scan_offset = vma->vm_end;
4293 			trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_SEQ_COMPLETED);
4294 			continue;
4295 		}
4296 
4297 		/*
4298 		 * Do not scan the VMA if task has not accessed it, unless no other
4299 		 * VMA candidate exists.
4300 		 */
4301 		if (!vma_pids_forced && !vma_is_accessed(mm, vma)) {
4302 			vma_pids_skipped = true;
4303 			trace_sched_skip_vma_numa(mm, vma, NUMAB_SKIP_PID_INACTIVE);
4304 			continue;
4305 		}
4306 
4307 		do {
4308 			start = max(start, vma->vm_start);
4309 			end = ALIGN(start + (pages << PAGE_SHIFT), HPAGE_SIZE);
4310 			end = min(end, vma->vm_end);
4311 			nr_pte_updates = change_prot_numa(vma, start, end);
4312 
4313 			/*
4314 			 * Try to scan sysctl_numa_balancing_size worth of
4315 			 * hpages that have at least one present PTE that
4316 			 * is not already PTE-numa. If the VMA contains
4317 			 * areas that are unused or already full of prot_numa
4318 			 * PTEs, scan up to virtpages, to skip through those
4319 			 * areas faster.
4320 			 */
4321 			if (nr_pte_updates)
4322 				pages -= (end - start) >> PAGE_SHIFT;
4323 			virtpages -= (end - start) >> PAGE_SHIFT;
4324 
4325 			start = end;
4326 			if (pages <= 0 || virtpages <= 0)
4327 				goto out;
4328 
4329 			cond_resched();
4330 		} while (end != vma->vm_end);
4331 
4332 		/* VMA scan is complete, do not scan until next sequence. */
4333 		vma->numab_state->prev_scan_seq = mm->numa_scan_seq;
4334 
4335 		/*
4336 		 * Only force scan within one VMA at a time, to limit the
4337 		 * cost of scanning a potentially uninteresting VMA.
4338 		 */
4339 		if (vma_pids_forced)
4340 			break;
4341 	}
4342 
4343 	/*
4344 	 * If no VMAs are remaining and VMAs were skipped due to the PID
4345 	 * not accessing the VMA previously, then force a scan to ensure
4346 	 * forward progress:
4347 	 */
4348 	if (!vma && !vma_pids_forced && vma_pids_skipped) {
4349 		vma_pids_forced = true;
4350 		goto retry_pids;
4351 	}
4352 
4353 out:
4354 	/*
4355 	 * It is possible to reach the end of the VMA list but the last few
4356 	 * VMAs are not guaranteed to the vma_migratable. If they are not, we
4357 	 * would find the !migratable VMA on the next scan but not reset the
4358 	 * scanner to the start so check it now.
4359 	 */
4360 	if (vma)
4361 		mm->numa_scan_offset = start;
4362 	else
4363 		reset_ptenuma_scan(p);
4364 	mmap_read_unlock(mm);
4365 
4366 	/*
4367 	 * Make sure tasks use at least 32x as much time to run other code
4368 	 * than they used here, to limit NUMA PTE scanning overhead to 3% max.
4369 	 * Usually update_task_scan_period slows down scanning enough; on an
4370 	 * overloaded system we need to limit overhead on a per task basis.
4371 	 */
4372 	if (unlikely(p->se.sum_exec_runtime != runtime)) {
4373 		u64 diff = p->se.sum_exec_runtime - runtime;
4374 		p->node_stamp += 32 * diff;
4375 	}
4376 }
4377 
4378 void init_numa_balancing(u64 clone_flags, struct task_struct *p)
4379 {
4380 	int mm_users = 0;
4381 	struct mm_struct *mm = p->mm;
4382 
4383 	if (mm) {
4384 		mm_users = atomic_read(&mm->mm_users);
4385 		if (mm_users == 1) {
4386 			mm->numa_next_scan = jiffies + msecs_to_jiffies(sysctl_numa_balancing_scan_delay);
4387 			mm->numa_scan_seq = 0;
4388 		}
4389 	}
4390 	p->node_stamp			= 0;
4391 	p->numa_scan_seq		= mm ? mm->numa_scan_seq : 0;
4392 	p->numa_scan_period		= sysctl_numa_balancing_scan_delay;
4393 	p->numa_migrate_retry		= 0;
4394 	/* Protect against double add, see task_tick_numa and task_numa_work */
4395 	p->numa_work.next		= &p->numa_work;
4396 	p->numa_faults			= NULL;
4397 	p->numa_pages_migrated		= 0;
4398 	p->total_numa_faults		= 0;
4399 	RCU_INIT_POINTER(p->numa_group, NULL);
4400 	p->last_task_numa_placement	= 0;
4401 	p->last_sum_exec_runtime	= 0;
4402 
4403 	init_task_work(&p->numa_work, task_numa_work);
4404 
4405 	/* New address space, reset the preferred nid */
4406 	if (!(clone_flags & CLONE_VM)) {
4407 		p->numa_preferred_nid = NUMA_NO_NODE;
4408 		return;
4409 	}
4410 
4411 	/*
4412 	 * New thread, keep existing numa_preferred_nid which should be copied
4413 	 * already by arch_dup_task_struct but stagger when scans start.
4414 	 */
4415 	if (mm) {
4416 		unsigned int delay;
4417 
4418 		delay = min_t(unsigned int, task_scan_max(current),
4419 			current->numa_scan_period * mm_users * NSEC_PER_MSEC);
4420 		delay += 2 * TICK_NSEC;
4421 		p->node_stamp = delay;
4422 	}
4423 }
4424 
4425 /*
4426  * Drive the periodic memory faults..
4427  */
4428 static void task_tick_numa(struct rq *rq, struct task_struct *curr)
4429 {
4430 	struct callback_head *work = &curr->numa_work;
4431 	u64 period, now;
4432 
4433 	/*
4434 	 * We don't care about NUMA placement if we don't have memory.
4435 	 */
4436 	if (!curr->mm || (curr->flags & (PF_EXITING | PF_KTHREAD)) || work->next != work)
4437 		return;
4438 
4439 	/*
4440 	 * Using runtime rather than walltime has the dual advantage that
4441 	 * we (mostly) drive the selection from busy threads and that the
4442 	 * task needs to have done some actual work before we bother with
4443 	 * NUMA placement.
4444 	 */
4445 	now = curr->se.sum_exec_runtime;
4446 	period = (u64)curr->numa_scan_period * NSEC_PER_MSEC;
4447 
4448 	if (now > curr->node_stamp + period) {
4449 		if (!curr->node_stamp)
4450 			curr->numa_scan_period = task_scan_start(curr);
4451 		curr->node_stamp += period;
4452 
4453 		if (!time_before(jiffies, curr->mm->numa_next_scan))
4454 			task_work_add(curr, work, TWA_RESUME);
4455 	}
4456 }
4457 
4458 static void update_scan_period(struct task_struct *p, int new_cpu)
4459 {
4460 	int src_nid = cpu_to_node(task_cpu(p));
4461 	int dst_nid = cpu_to_node(new_cpu);
4462 
4463 	if (!static_branch_likely(&sched_numa_balancing))
4464 		return;
4465 
4466 	if (!p->mm || !p->numa_faults || (p->flags & PF_EXITING))
4467 		return;
4468 
4469 	if (src_nid == dst_nid)
4470 		return;
4471 
4472 	/*
4473 	 * Allow resets if faults have been trapped before one scan
4474 	 * has completed. This is most likely due to a new task that
4475 	 * is pulled cross-node due to wakeups or load balancing.
4476 	 */
4477 	if (p->numa_scan_seq) {
4478 		/*
4479 		 * Avoid scan adjustments if moving to the preferred
4480 		 * node or if the task was not previously running on
4481 		 * the preferred node.
4482 		 */
4483 		if (dst_nid == p->numa_preferred_nid ||
4484 		    (p->numa_preferred_nid != NUMA_NO_NODE &&
4485 			src_nid != p->numa_preferred_nid))
4486 			return;
4487 	}
4488 
4489 	p->numa_scan_period = task_scan_start(p);
4490 }
4491 
4492 #else /* !CONFIG_NUMA_BALANCING: */
4493 
4494 static void task_tick_numa(struct rq *rq, struct task_struct *curr)
4495 {
4496 }
4497 
4498 static inline void account_numa_enqueue(struct rq *rq, struct task_struct *p)
4499 {
4500 }
4501 
4502 static inline void account_numa_dequeue(struct rq *rq, struct task_struct *p)
4503 {
4504 }
4505 
4506 static inline void update_scan_period(struct task_struct *p, int new_cpu)
4507 {
4508 }
4509 
4510 #endif /* !CONFIG_NUMA_BALANCING */
4511 
4512 static void
4513 account_entity_enqueue(struct cfs_rq *cfs_rq, struct sched_entity *se)
4514 {
4515 	WARN_ON_ONCE(cfs_rq != cfs_rq_of(se));
4516 	update_load_add(&cfs_rq->load, se->load.weight);
4517 	if (entity_is_task(se)) {
4518 		struct task_struct *p = task_of(se);
4519 		struct rq *rq = rq_of(cfs_rq);
4520 
4521 		account_numa_enqueue(rq, p);
4522 		account_llc_enqueue(rq, p);
4523 		list_add(&se->group_node, &rq->cfs_tasks);
4524 	}
4525 	cfs_rq->nr_queued++;
4526 }
4527 
4528 static void
4529 account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se)
4530 {
4531 	WARN_ON_ONCE(cfs_rq != cfs_rq_of(se));
4532 	update_load_sub(&cfs_rq->load, se->load.weight);
4533 	if (entity_is_task(se)) {
4534 		struct task_struct *p = task_of(se);
4535 		struct rq *rq = rq_of(cfs_rq);
4536 
4537 		account_numa_dequeue(rq, p);
4538 		account_llc_dequeue(rq, p);
4539 		list_del_init(&se->group_node);
4540 	}
4541 	cfs_rq->nr_queued--;
4542 }
4543 
4544 /*
4545  * Signed add and clamp on underflow.
4546  *
4547  * Explicitly do a load-store to ensure the intermediate value never hits
4548  * memory. This allows lockless observations without ever seeing the negative
4549  * values.
4550  */
4551 #define add_positive(_ptr, _val) do {                           \
4552 	typeof(_ptr) ptr = (_ptr);                              \
4553 	__signed_scalar_typeof(*ptr) val = (_val);              \
4554 	typeof(*ptr) res, var = READ_ONCE(*ptr);                \
4555 								\
4556 	res = var + val;                                        \
4557 								\
4558 	if (val < 0 && res > var)                               \
4559 		res = 0;                                        \
4560 								\
4561 	WRITE_ONCE(*ptr, res);                                  \
4562 } while (0)
4563 
4564 /*
4565  * Remove and clamp on negative, from a local variable.
4566  *
4567  * A variant of sub_positive(), which does not use explicit load-store
4568  * and is thus optimized for local variable updates.
4569  */
4570 #define lsub_positive(_ptr, _val) do {				\
4571 	typeof(_ptr) ptr = (_ptr);				\
4572 	*ptr -= min_t(typeof(*ptr), *ptr, _val);		\
4573 } while (0)
4574 
4575 
4576 /*
4577  * Because of rounding, se->util_sum might ends up being +1 more than
4578  * cfs->util_sum. Although this is not a problem by itself, detaching
4579  * a lot of tasks with the rounding problem between 2 updates of
4580  * util_avg (~1ms) can make cfs->util_sum becoming null whereas
4581  * cfs_util_avg is not.
4582  *
4583  * Check that util_sum is still above its lower bound for the new
4584  * util_avg. Given that period_contrib might have moved since the last
4585  * sync, we are only sure that util_sum must be above or equal to
4586  *    util_avg * minimum possible divider
4587  */
4588 #define __update_sa(sa, name, delta_avg, delta_sum) do {	\
4589 	add_positive(&(sa)->name##_avg, delta_avg);		\
4590 	add_positive(&(sa)->name##_sum, delta_sum);		\
4591 	(sa)->name##_sum = max_t(typeof((sa)->name##_sum),	\
4592 			       (sa)->name##_sum,		\
4593 			       (sa)->name##_avg * PELT_MIN_DIVIDER); \
4594 } while (0)
4595 
4596 static inline void
4597 enqueue_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
4598 {
4599 	__update_sa(&cfs_rq->avg, load, se->avg.load_avg,
4600 		    se_weight(se) * se->avg.load_sum);
4601 }
4602 
4603 static inline void
4604 dequeue_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
4605 {
4606 	__update_sa(&cfs_rq->avg, load, -se->avg.load_avg,
4607 		    se_weight(se) * -se->avg.load_sum);
4608 }
4609 
4610 static void
4611 rescale_entity(struct sched_entity *se, unsigned long weight, bool rel_vprot)
4612 {
4613 	long old_weight = se->h_load.weight;
4614 
4615 	/*
4616 	 * VRUNTIME
4617 	 * --------
4618 	 *
4619 	 * COROLLARY #1: The virtual runtime of the entity needs to be
4620 	 * adjusted if re-weight at !0-lag point.
4621 	 *
4622 	 * Proof: For contradiction assume this is not true, so we can
4623 	 * re-weight without changing vruntime at !0-lag point.
4624 	 *
4625 	 *             Weight	VRuntime   Avg-VRuntime
4626 	 *     before    w          v            V
4627 	 *      after    w'         v'           V'
4628 	 *
4629 	 * Since lag needs to be preserved through re-weight:
4630 	 *
4631 	 *	lag = (V - v)*w = (V'- v')*w', where v = v'
4632 	 *	==>	V' = (V - v)*w/w' + v		(1)
4633 	 *
4634 	 * Let W be the total weight of the entities before reweight,
4635 	 * since V' is the new weighted average of entities:
4636 	 *
4637 	 *	V' = (WV + w'v - wv) / (W + w' - w)	(2)
4638 	 *
4639 	 * by using (1) & (2) we obtain:
4640 	 *
4641 	 *	(WV + w'v - wv) / (W + w' - w) = (V - v)*w/w' + v
4642 	 *	==> (WV-Wv+Wv+w'v-wv)/(W+w'-w) = (V - v)*w/w' + v
4643 	 *	==> (WV - Wv)/(W + w' - w) + v = (V - v)*w/w' + v
4644 	 *	==>	(V - v)*W/(W + w' - w) = (V - v)*w/w' (3)
4645 	 *
4646 	 * Since we are doing at !0-lag point which means V != v, we
4647 	 * can simplify (3):
4648 	 *
4649 	 *	==>	W / (W + w' - w) = w / w'
4650 	 *	==>	Ww' = Ww + ww' - ww
4651 	 *	==>	W * (w' - w) = w * (w' - w)
4652 	 *	==>	W = w	(re-weight indicates w' != w)
4653 	 *
4654 	 * So the cfs_rq contains only one entity, hence vruntime of
4655 	 * the entity @v should always equal to the cfs_rq's weighted
4656 	 * average vruntime @V, which means we will always re-weight
4657 	 * at 0-lag point, thus breach assumption. Proof completed.
4658 	 *
4659 	 *
4660 	 * COROLLARY #2: Re-weight does NOT affect weighted average
4661 	 * vruntime of all the entities.
4662 	 *
4663 	 * Proof: According to corollary #1, Eq. (1) should be:
4664 	 *
4665 	 *	(V - v)*w = (V' - v')*w'
4666 	 *	==>    v' = V' - (V - v)*w/w'		(4)
4667 	 *
4668 	 * According to the weighted average formula, we have:
4669 	 *
4670 	 *	V' = (WV - wv + w'v') / (W - w + w')
4671 	 *	   = (WV - wv + w'(V' - (V - v)w/w')) / (W - w + w')
4672 	 *	   = (WV - wv + w'V' - Vw + wv) / (W - w + w')
4673 	 *	   = (WV + w'V' - Vw) / (W - w + w')
4674 	 *
4675 	 *	==>  V'*(W - w + w') = WV + w'V' - Vw
4676 	 *	==>	V' * (W - w) = (W - w) * V	(5)
4677 	 *
4678 	 * If the entity is the only one in the cfs_rq, then reweight
4679 	 * always occurs at 0-lag point, so V won't change. Or else
4680 	 * there are other entities, hence W != w, then Eq. (5) turns
4681 	 * into V' = V. So V won't change in either case, proof done.
4682 	 *
4683 	 *
4684 	 * So according to corollary #1 & #2, the effect of re-weight
4685 	 * on vruntime should be:
4686 	 *
4687 	 *	v' = V' - (V - v) * w / w'		(4)
4688 	 *	   = V  - (V - v) * w / w'
4689 	 *	   = V  - vl * w / w'
4690 	 *	   = V  - vl'
4691 	 */
4692 	se->vlag = div64_long(se->vlag * old_weight, weight);
4693 
4694 	/*
4695 	 * DEADLINE
4696 	 * --------
4697 	 *
4698 	 * When the weight changes, the virtual time slope changes and
4699 	 * we should adjust the relative virtual deadline accordingly.
4700 	 *
4701 	 *	d' = v' + (d - v)*w/w'
4702 	 *	   = V' - (V - v)*w/w' + (d - v)*w/w'
4703 	 *	   = V  - (V - v)*w/w' + (d - v)*w/w'
4704 	 *	   = V  + (d - V)*w/w'
4705 	 */
4706 	if (se->rel_deadline)
4707 		se->deadline = div64_long(se->deadline * old_weight, weight);
4708 
4709 	if (rel_vprot)
4710 		se->vprot = div64_long(se->vprot * old_weight, weight);
4711 }
4712 
4713 static void reweight_eevdf(struct cfs_rq *cfs_rq, struct sched_entity *se,
4714 			   unsigned long weight, bool on_rq)
4715 {
4716 	bool curr = cfs_rq->curr == se;
4717 	bool rel_vprot = false;
4718 	u64 avruntime = 0;
4719 
4720 	if (se->h_load.weight == weight)
4721 		return;
4722 
4723 	if (on_rq) {
4724 		avruntime = avg_vruntime(cfs_rq);
4725 		se->vlag = entity_lag(cfs_rq, se, avruntime);
4726 		se->deadline -= avruntime;
4727 		se->rel_deadline = 1;
4728 		if (curr && protect_slice(se)) {
4729 			se->vprot -= avruntime;
4730 			rel_vprot = true;
4731 		}
4732 
4733 		cfs_rq->h_nr_queued--;
4734 		if (!curr)
4735 			__dequeue_entity(cfs_rq, se);
4736 	}
4737 
4738 	rescale_entity(se, weight, rel_vprot);
4739 
4740 	update_load_set(&se->h_load, weight);
4741 
4742 	if (on_rq) {
4743 		if (rel_vprot)
4744 			se->vprot += avruntime;
4745 		se->deadline += avruntime;
4746 		se->rel_deadline = 0;
4747 		se->vruntime = avruntime - se->vlag;
4748 
4749 		if (!curr)
4750 			__enqueue_entity(cfs_rq, se);
4751 		cfs_rq->h_nr_queued++;
4752 	}
4753 }
4754 
4755 static void reweight_entity(struct cfs_rq *cfs_rq, struct sched_entity *se,
4756 			    unsigned long weight)
4757 {
4758 	if (se->load.weight == weight)
4759 		return;
4760 
4761 	if (se->on_rq) {
4762 		WARN_ON_ONCE(cfs_rq != cfs_rq_of(se));
4763 		update_load_sub(&cfs_rq->load, se->load.weight);
4764 	}
4765 	dequeue_load_avg(cfs_rq, se);
4766 
4767 	update_load_set(&se->load, weight);
4768 
4769 	do {
4770 		u32 divider = get_pelt_divider(&se->avg);
4771 		se->avg.load_avg = div_u64(se_weight(se) * se->avg.load_sum, divider);
4772 	} while (0);
4773 
4774 	enqueue_load_avg(cfs_rq, se);
4775 
4776 	if (se->on_rq)
4777 		update_load_add(&cfs_rq->load, se->load.weight);
4778 }
4779 
4780 /*
4781  * weight = NICE_0_LOAD;
4782  * for_each_entity_se(se)
4783  *   weight = __calc_prop_weight(cfs_rq_of(se), se, weight);
4784  */
4785 static __always_inline
4786 unsigned long __calc_prop_weight(struct cfs_rq *cfs_rq, struct sched_entity *se,
4787 				 unsigned long weight)
4788 {
4789 	weight *= se->load.weight;
4790 	if (parent_entity(se))
4791 		weight /= cfs_rq->load.weight;
4792 	else
4793 		weight /= NICE_0_LOAD;
4794 
4795 	return max(weight, MIN_SHARES);
4796 }
4797 
4798 static void reweight_task_fair(struct rq *rq, struct task_struct *p,
4799 			       const struct load_weight *lw)
4800 {
4801 	struct sched_entity *se = &p->se;
4802 	unsigned long weight = NICE_0_LOAD;
4803 
4804 	if (se->on_rq)
4805 		update_curr_fair(rq);
4806 
4807 	reweight_entity(cfs_rq_of(se), se, lw->weight);
4808 	se->load.inv_weight = lw->inv_weight;
4809 
4810 	if (!se->on_rq)
4811 		return;
4812 
4813 	for_each_sched_entity(se)
4814 		weight = __calc_prop_weight(cfs_rq_of(se), se, weight);
4815 
4816 	reweight_eevdf(&rq->cfs, &p->se, weight, p->se.on_rq);
4817 }
4818 
4819 static inline int throttled_hierarchy(struct cfs_rq *cfs_rq);
4820 
4821 #ifdef CONFIG_FAIR_GROUP_SCHED
4822 /*
4823  * All this does is approximate the hierarchical proportion which includes that
4824  * global sum we all love to hate.
4825  *
4826  * That is, the weight of a group entity, is the proportional share of the
4827  * group weight based on the group runqueue weights. That is:
4828  *
4829  *                     tg->weight * grq->load.weight
4830  *   ge->load.weight = -----------------------------               (1)
4831  *                       \Sum grq->load.weight
4832  *
4833  * Now, because computing that sum is prohibitively expensive to compute (been
4834  * there, done that) we approximate it with this average stuff. The average
4835  * moves slower and therefore the approximation is cheaper and more stable.
4836  *
4837  * So instead of the above, we substitute:
4838  *
4839  *   grq->load.weight -> grq->avg.load_avg                         (2)
4840  *
4841  * which yields the following:
4842  *
4843  *                     tg->weight * grq->avg.load_avg
4844  *   ge->load.weight = ------------------------------              (3)
4845  *                             tg->load_avg
4846  *
4847  * Where: tg->load_avg ~= \Sum grq->avg.load_avg
4848  *
4849  * That is shares_avg, and it is right (given the approximation (2)).
4850  *
4851  * The problem with it is that because the average is slow -- it was designed
4852  * to be exactly that of course -- this leads to transients in boundary
4853  * conditions. In specific, the case where the group was idle and we start the
4854  * one task. It takes time for our CPU's grq->avg.load_avg to build up,
4855  * yielding bad latency etc..
4856  *
4857  * Now, in that special case (1) reduces to:
4858  *
4859  *                     tg->weight * grq->load.weight
4860  *   ge->load.weight = ----------------------------- = tg->weight   (4)
4861  *                         grp->load.weight
4862  *
4863  * That is, the sum collapses because all other CPUs are idle; the UP scenario.
4864  *
4865  * So what we do is modify our approximation (3) to approach (4) in the (near)
4866  * UP case, like:
4867  *
4868  *   ge->load.weight =
4869  *
4870  *              tg->weight * grq->load.weight
4871  *     ---------------------------------------------------         (5)
4872  *     tg->load_avg - grq->avg.load_avg + grq->load.weight
4873  *
4874  * But because grq->load.weight can drop to 0, resulting in a divide by zero,
4875  * we need to use grq->avg.load_avg as its lower bound, which then gives:
4876  *
4877  *
4878  *                     tg->weight * grq->load.weight
4879  *   ge->load.weight = -----------------------------		   (6)
4880  *                             tg_load_avg'
4881  *
4882  * Where:
4883  *
4884  *   tg_load_avg' = tg->load_avg - grq->avg.load_avg +
4885  *                  max(grq->load.weight, grq->avg.load_avg)
4886  *
4887  * And that is shares_weight and is icky. In the (near) UP case it approaches
4888  * (4) while in the normal case it approaches (3). It consistently
4889  * overestimates the ge->load.weight and therefore:
4890  *
4891  *   \Sum ge->load.weight >= tg->weight
4892  *
4893  * hence icky!
4894  */
4895 static long __calc_smp_shares(struct cfs_rq *cfs_rq, long tg_shares, long shares_max)
4896 {
4897 	struct task_group *tg = cfs_rq->tg;
4898 	long tg_weight, load, shares;
4899 
4900 	load = max(scale_load_down(cfs_rq->load.weight), cfs_rq->avg.load_avg);
4901 
4902 	tg_weight = atomic_long_read(&tg->load_avg);
4903 
4904 	/* Ensure tg_weight >= load */
4905 	tg_weight -= cfs_rq->tg_load_avg_contrib;
4906 	tg_weight += load;
4907 
4908 	shares = (tg_shares * load);
4909 	if (tg_weight)
4910 		shares /= tg_weight;
4911 
4912 	/*
4913 	 * MIN_SHARES has to be unscaled here to support per-CPU partitioning
4914 	 * of a group with small tg->shares value. It is a floor value which is
4915 	 * assigned as a minimum load.weight to the sched_entity representing
4916 	 * the group on a CPU.
4917 	 *
4918 	 * E.g. on 64-bit for a group with tg->shares of scale_load(15)=15*1024
4919 	 * on an 8-core system with 8 tasks each runnable on one CPU shares has
4920 	 * to be 15*1024*1/8=1920 instead of scale_load(MIN_SHARES)=2*1024. In
4921 	 * case no task is runnable on a CPU MIN_SHARES=2 should be returned
4922 	 * instead of 0.
4923 	 */
4924 	return clamp_t(long, shares, MIN_SHARES, shares_max);
4925 }
4926 
4927 static int tg_cpus(struct task_group *tg)
4928 {
4929 	int nr = num_online_cpus();
4930 
4931 	if (cpusets_enabled()) {
4932 		struct cgroup *cgrp = tg->css.cgroup;
4933 		if (cgrp)
4934 			nr = cpuset_num_cpus(cgrp);
4935 	}
4936 
4937 	return nr;
4938 }
4939 
4940 static inline int tg_tasks(struct task_group *tg)
4941 {
4942 	return max(1, atomic_long_read(&tg->runnable_avg) >> SCHED_CAPACITY_SHIFT);
4943 }
4944 
4945 /*
4946  * Func: fraction(nr_tasks * tg->shares)
4947  *
4948  * Scale tg->shares by the number of tasks.
4949  */
4950 static long calc_tasks_shares(struct cfs_rq *cfs_rq)
4951 {
4952 	struct task_group *tg = cfs_rq->tg;
4953 	int nr = tg_tasks(tg);
4954 	long tg_shares = READ_ONCE(tg->shares);
4955 	return __calc_smp_shares(cfs_rq, nr * tg_shares, nr * tg_shares);
4956 }
4957 
4958 /*
4959  * Func: min(fraction(nr_cpus * tg->shares), nice -20)
4960  *
4961  * Scale tg->shares by the maximal number of CPUs; but clip the max shares at
4962  * nice -20, otherwise a single spinner on a 512 CPU machine would result in
4963  * 512*NICE_0_LOAD, which is also crazy.
4964  */
4965 static long calc_max_shares(struct cfs_rq *cfs_rq)
4966 {
4967 	struct task_group *tg = cfs_rq->tg;
4968 	int nr = tg_cpus(tg);
4969 	long tg_shares = READ_ONCE(tg->shares);
4970 	long max_shares = scale_load(sched_prio_to_weight[0]);
4971 	return __calc_smp_shares(cfs_rq, tg_shares * nr, max_shares);
4972 }
4973 
4974 /*
4975  * Func: fraction(nr * tg->shares); nr = min(nr_tasks, nr_cpus)
4976  *
4977  * Scales between "smp" and "max" in a natural way. No longer needs clipping
4978  * since there are no unnatural inflations like with "max".
4979  */
4980 static long calc_concur_shares(struct cfs_rq *cfs_rq)
4981 {
4982 	struct task_group *tg = cfs_rq->tg;
4983 	int nr = min(tg_tasks(tg), tg_cpus(tg));
4984 	long tg_shares = READ_ONCE(tg->shares);
4985 	return __calc_smp_shares(cfs_rq, nr * tg_shares, nr * tg_shares);
4986 }
4987 
4988 /*
4989  * Func: fraction(tg->shares)
4990  *
4991  * This infamously results in tiny shares when you have many CPUs.
4992  */
4993 static long calc_smp_shares(struct cfs_rq *cfs_rq)
4994 {
4995 	struct task_group *tg = cfs_rq->tg;
4996 	long tg_shares = READ_ONCE(tg->shares);
4997 	return __calc_smp_shares(cfs_rq, tg_shares, tg_shares);
4998 }
4999 
5000 /*
5001  * Ignore this pesky SMP stuff, use (4).
5002  */
5003 static long calc_up_shares(struct cfs_rq *cfs_rq)
5004 {
5005 	struct task_group *tg = cfs_rq->tg;
5006 	return READ_ONCE(tg->shares);
5007 }
5008 
5009 DEFINE_STATIC_CALL(calc_group_shares, calc_concur_shares);
5010 
5011 void __sched_cgroup_mode_update(int mode)
5012 {
5013 	long (*func)(struct cfs_rq *);
5014 	switch (mode) {
5015 	case 0:
5016 		func = &calc_up_shares;
5017 		break;
5018 	case 1:
5019 		func = &calc_smp_shares;
5020 		break;
5021 	case 2:
5022 	default:
5023 		func = &calc_concur_shares;
5024 		break;
5025 	case 3:
5026 		func = &calc_max_shares;
5027 		break;
5028 	case 4:
5029 		func = &calc_tasks_shares;
5030 		break;
5031 	}
5032 	static_call_update(calc_group_shares, func);
5033 }
5034 
5035 /*
5036  * Recomputes the group entity based on the current state of its group
5037  * runqueue.
5038  */
5039 static void update_cfs_group(struct sched_entity *se)
5040 {
5041 	struct cfs_rq *gcfs_rq = group_cfs_rq(se);
5042 	long shares;
5043 
5044 	/*
5045 	 * When a group becomes empty, preserve its weight. This matters for
5046 	 * DELAY_DEQUEUE.
5047 	 */
5048 	if (!gcfs_rq || !gcfs_rq->load.weight)
5049 		return;
5050 
5051 	shares = static_call(calc_group_shares)(gcfs_rq);
5052 	reweight_entity(cfs_rq_of(se), se, shares);
5053 }
5054 
5055 #else /* !CONFIG_FAIR_GROUP_SCHED: */
5056 static inline void update_cfs_group(struct sched_entity *se)
5057 {
5058 }
5059 #endif /* !CONFIG_FAIR_GROUP_SCHED */
5060 
5061 static inline void cfs_rq_util_change(struct cfs_rq *cfs_rq, int flags)
5062 {
5063 	struct rq *rq = rq_of(cfs_rq);
5064 
5065 	if (&rq->cfs == cfs_rq) {
5066 		/*
5067 		 * There are a few boundary cases this might miss but it should
5068 		 * get called often enough that that should (hopefully) not be
5069 		 * a real problem.
5070 		 *
5071 		 * It will not get called when we go idle, because the idle
5072 		 * thread is a different class (!fair), nor will the utilization
5073 		 * number include things like RT tasks.
5074 		 *
5075 		 * As is, the util number is not freq-invariant (we'd have to
5076 		 * implement arch_scale_freq_capacity() for that).
5077 		 *
5078 		 * See cpu_util_cfs().
5079 		 */
5080 		cpufreq_update_util(rq, flags);
5081 	}
5082 }
5083 
5084 static inline bool load_avg_is_decayed(struct sched_avg *sa)
5085 {
5086 	if (sa->load_sum)
5087 		return false;
5088 
5089 	if (sa->util_sum)
5090 		return false;
5091 
5092 	if (sa->runnable_sum)
5093 		return false;
5094 
5095 	/*
5096 	 * _avg must be null when _sum are null because _avg = _sum / divider
5097 	 * Make sure that rounding and/or propagation of PELT values never
5098 	 * break this.
5099 	 */
5100 	WARN_ON_ONCE(sa->load_avg ||
5101 		      sa->util_avg ||
5102 		      sa->runnable_avg);
5103 
5104 	return true;
5105 }
5106 
5107 static inline u64 cfs_rq_last_update_time(struct cfs_rq *cfs_rq)
5108 {
5109 	return u64_u32_load_copy(cfs_rq->avg.last_update_time,
5110 				 cfs_rq->last_update_time_copy);
5111 }
5112 #ifdef CONFIG_FAIR_GROUP_SCHED
5113 /*
5114  * Because list_add_leaf_cfs_rq always places a child cfs_rq on the list
5115  * immediately before a parent cfs_rq, and cfs_rqs are removed from the list
5116  * bottom-up, we only have to test whether the cfs_rq before us on the list
5117  * is our child.
5118  * If cfs_rq is not on the list, test whether a child needs its to be added to
5119  * connect a branch to the tree  * (see list_add_leaf_cfs_rq() for details).
5120  */
5121 static inline bool child_cfs_rq_on_list(struct cfs_rq *cfs_rq)
5122 {
5123 	struct cfs_rq *prev_cfs_rq;
5124 	struct list_head *prev;
5125 	struct rq *rq = rq_of(cfs_rq);
5126 
5127 	if (cfs_rq->on_list) {
5128 		prev = cfs_rq->leaf_cfs_rq_list.prev;
5129 	} else {
5130 		prev = rq->tmp_alone_branch;
5131 	}
5132 
5133 	if (prev == &rq->leaf_cfs_rq_list)
5134 		return false;
5135 
5136 	prev_cfs_rq = container_of(prev, struct cfs_rq, leaf_cfs_rq_list);
5137 
5138 	return (prev_cfs_rq->tg->parent == cfs_rq->tg);
5139 }
5140 
5141 static inline bool cfs_rq_is_decayed(struct cfs_rq *cfs_rq)
5142 {
5143 	if (cfs_rq->load.weight)
5144 		return false;
5145 
5146 	if (!load_avg_is_decayed(&cfs_rq->avg))
5147 		return false;
5148 
5149 	if (child_cfs_rq_on_list(cfs_rq))
5150 		return false;
5151 
5152 	if (cfs_rq->tg_load_avg_contrib)
5153 		return false;
5154 
5155 	return true;
5156 }
5157 
5158 /**
5159  * update_tg_load_avg - update the tg's load avg
5160  * @cfs_rq: the cfs_rq whose avg changed
5161  *
5162  * This function 'ensures': tg->load_avg := \Sum tg->cfs_rq[]->avg.load.
5163  * However, because tg->load_avg is a global value there are performance
5164  * considerations.
5165  *
5166  * In order to avoid having to look at the other cfs_rq's, we use a
5167  * differential update where we store the last value we propagated. This in
5168  * turn allows skipping updates if the differential is 'small'.
5169  *
5170  * Updating tg's load_avg is necessary before update_cfs_group().
5171  */
5172 static inline void update_tg_load_avg(struct cfs_rq *cfs_rq)
5173 {
5174 	long dl, dr;
5175 	u64 now;
5176 
5177 	/*
5178 	 * No need to update load_avg for root_task_group as it is not used.
5179 	 */
5180 	if (cfs_rq->tg == &root_task_group)
5181 		return;
5182 
5183 	/* rq has been offline and doesn't contribute to the share anymore: */
5184 	if (!cpu_active(cpu_of(rq_of(cfs_rq))))
5185 		return;
5186 
5187 	/*
5188 	 * For migration heavy workloads, access to tg->load_avg can be
5189 	 * unbound. Limit the update rate to at most once per ms.
5190 	 */
5191 	now = rq_clock(rq_of(cfs_rq));
5192 	if (now - cfs_rq->last_update_tg_load_avg < NSEC_PER_MSEC)
5193 		return;
5194 
5195 	dl = cfs_rq->avg.load_avg - cfs_rq->tg_load_avg_contrib;
5196 	dr = cfs_rq->avg.runnable_avg - cfs_rq->tg_runnable_avg_contrib;
5197 	if (abs(dl) > cfs_rq->tg_load_avg_contrib / 64 ||
5198 	    abs(dr) > cfs_rq->tg_runnable_avg_contrib / 64) {
5199 		atomic_long_add(dl, &cfs_rq->tg->load_avg);
5200 		atomic_long_add(dr, &cfs_rq->tg->runnable_avg);
5201 		cfs_rq->tg_load_avg_contrib = cfs_rq->avg.load_avg;
5202 		cfs_rq->tg_runnable_avg_contrib = cfs_rq->avg.runnable_avg;
5203 		cfs_rq->last_update_tg_load_avg = now;
5204 	}
5205 }
5206 
5207 static inline void clear_tg_load_avg(struct cfs_rq *cfs_rq)
5208 {
5209 	long dl, dr;
5210 	u64 now;
5211 
5212 	/*
5213 	 * No need to update load_avg for root_task_group, as it is not used.
5214 	 */
5215 	if (cfs_rq->tg == &root_task_group)
5216 		return;
5217 
5218 	now = rq_clock(rq_of(cfs_rq));
5219 	dl = 0 - cfs_rq->tg_load_avg_contrib;
5220 	dr = 0 - cfs_rq->tg_runnable_avg_contrib;
5221 	atomic_long_add(dl, &cfs_rq->tg->load_avg);
5222 	atomic_long_add(dr, &cfs_rq->tg->runnable_avg);
5223 	cfs_rq->tg_load_avg_contrib = 0;
5224 	cfs_rq->tg_runnable_avg_contrib = 0;
5225 	cfs_rq->last_update_tg_load_avg = now;
5226 }
5227 
5228 /* CPU offline callback: */
5229 static void __maybe_unused clear_tg_offline_cfs_rqs(struct rq *rq)
5230 {
5231 	struct task_group *tg;
5232 
5233 	lockdep_assert_rq_held(rq);
5234 
5235 	/*
5236 	 * The rq clock has already been updated in
5237 	 * set_rq_offline(), so we should skip updating
5238 	 * the rq clock again in unthrottle_cfs_rq().
5239 	 */
5240 	rq_clock_start_loop_update(rq);
5241 
5242 	guard(rcu)();
5243 
5244 	list_for_each_entry_rcu(tg, &task_groups, list) {
5245 		struct cfs_rq *cfs_rq = tg_cfs_rq(tg, cpu_of(rq));
5246 
5247 		clear_tg_load_avg(cfs_rq);
5248 	}
5249 
5250 	rq_clock_stop_loop_update(rq);
5251 }
5252 
5253 /*
5254  * Called within set_task_rq() right before setting a task's CPU. The
5255  * caller only guarantees p->pi_lock is held; no other assumptions,
5256  * including the state of rq->lock, should be made.
5257  */
5258 void set_task_rq_fair(struct sched_entity *se,
5259 		      struct cfs_rq *prev, struct cfs_rq *next)
5260 {
5261 	u64 p_last_update_time;
5262 	u64 n_last_update_time;
5263 
5264 	if (!sched_feat(ATTACH_AGE_LOAD))
5265 		return;
5266 
5267 	/*
5268 	 * We are supposed to update the task to "current" time, then its up to
5269 	 * date and ready to go to new CPU/cfs_rq. But we have difficulty in
5270 	 * getting what current time is, so simply throw away the out-of-date
5271 	 * time. This will result in the wakee task is less decayed, but giving
5272 	 * the wakee more load sounds not bad.
5273 	 */
5274 	if (!(se->avg.last_update_time && prev))
5275 		return;
5276 
5277 	p_last_update_time = cfs_rq_last_update_time(prev);
5278 	n_last_update_time = cfs_rq_last_update_time(next);
5279 
5280 	__update_load_avg_blocked_se(p_last_update_time, se);
5281 	se->avg.last_update_time = n_last_update_time;
5282 }
5283 
5284 /*
5285  * When on migration a sched_entity joins/leaves the PELT hierarchy, we need to
5286  * propagate its contribution. The key to this propagation is the invariant
5287  * that for each group:
5288  *
5289  *   ge->avg == grq->avg						(1)
5290  *
5291  * _IFF_ we look at the pure running and runnable sums. Because they
5292  * represent the very same entity, just at different points in the hierarchy.
5293  *
5294  * Per the above update_tg_cfs_util() and update_tg_cfs_runnable() are trivial
5295  * and simply copies the running/runnable sum over (but still wrong, because
5296  * the group entity and group rq do not have their PELT windows aligned).
5297  *
5298  * However, update_tg_cfs_load() is more complex. So we have:
5299  *
5300  *   ge->avg.load_avg = ge->load.weight * ge->avg.runnable_avg		(2)
5301  *
5302  * And since, like util, the runnable part should be directly transferable,
5303  * the following would _appear_ to be the straight forward approach:
5304  *
5305  *   grq->avg.load_avg = grq->load.weight * grq->avg.runnable_avg	(3)
5306  *
5307  * And per (1) we have:
5308  *
5309  *   ge->avg.runnable_avg == grq->avg.runnable_avg
5310  *
5311  * Which gives:
5312  *
5313  *                      ge->load.weight * grq->avg.load_avg
5314  *   ge->avg.load_avg = -----------------------------------		(4)
5315  *                               grq->load.weight
5316  *
5317  * Except that is wrong!
5318  *
5319  * Because while for entities historical weight is not important and we
5320  * really only care about our future and therefore can consider a pure
5321  * runnable sum, runqueues can NOT do this.
5322  *
5323  * We specifically want runqueues to have a load_avg that includes
5324  * historical weights. Those represent the blocked load, the load we expect
5325  * to (shortly) return to us. This only works by keeping the weights as
5326  * integral part of the sum. We therefore cannot decompose as per (3).
5327  *
5328  * Another reason this doesn't work is that runnable isn't a 0-sum entity.
5329  * Imagine a rq with 2 tasks that each are runnable 2/3 of the time. Then the
5330  * rq itself is runnable anywhere between 2/3 and 1 depending on how the
5331  * runnable section of these tasks overlap (or not). If they were to perfectly
5332  * align the rq as a whole would be runnable 2/3 of the time. If however we
5333  * always have at least 1 runnable task, the rq as a whole is always runnable.
5334  *
5335  * So we'll have to approximate.. :/
5336  *
5337  * Given the constraint:
5338  *
5339  *   ge->avg.running_sum <= ge->avg.runnable_sum <= LOAD_AVG_MAX
5340  *
5341  * We can construct a rule that adds runnable to a rq by assuming minimal
5342  * overlap.
5343  *
5344  * On removal, we'll assume each task is equally runnable; which yields:
5345  *
5346  *   grq->avg.runnable_sum = grq->avg.load_sum / grq->load.weight
5347  *
5348  * XXX: only do this for the part of runnable > running ?
5349  *
5350  */
5351 static inline void
5352 update_tg_cfs_util(struct cfs_rq *cfs_rq, struct sched_entity *se, struct cfs_rq *gcfs_rq)
5353 {
5354 	long delta_sum, delta_avg = gcfs_rq->avg.util_avg - se->avg.util_avg;
5355 	u32 new_sum, divider;
5356 
5357 	/* Nothing to update */
5358 	if (!delta_avg)
5359 		return;
5360 
5361 	/*
5362 	 * cfs_rq->avg.period_contrib can be used for both cfs_rq and se.
5363 	 * See ___update_load_avg() for details.
5364 	 */
5365 	divider = get_pelt_divider(&cfs_rq->avg);
5366 
5367 	/* Set new sched_entity's utilization */
5368 	se->avg.util_avg = gcfs_rq->avg.util_avg;
5369 	new_sum = se->avg.util_avg * divider;
5370 	delta_sum = (long)new_sum - (long)se->avg.util_sum;
5371 	se->avg.util_sum = new_sum;
5372 
5373 	/* Update parent cfs_rq utilization */
5374 	__update_sa(&cfs_rq->avg, util, delta_avg, delta_sum);
5375 }
5376 
5377 static inline void
5378 update_tg_cfs_runnable(struct cfs_rq *cfs_rq, struct sched_entity *se, struct cfs_rq *gcfs_rq)
5379 {
5380 	long delta_sum, delta_avg = gcfs_rq->avg.runnable_avg - se->avg.runnable_avg;
5381 	u64 new_sum;
5382 	u32 divider;
5383 
5384 	/* Nothing to update */
5385 	if (!delta_avg)
5386 		return;
5387 
5388 	/*
5389 	 * cfs_rq->avg.period_contrib can be used for both cfs_rq and se.
5390 	 * See ___update_load_avg() for details.
5391 	 */
5392 	divider = get_pelt_divider(&cfs_rq->avg);
5393 
5394 	/* Set new sched_entity's runnable */
5395 	se->avg.runnable_avg = gcfs_rq->avg.runnable_avg;
5396 	new_sum = (u64)se->avg.runnable_avg * divider;
5397 	delta_sum = (long)new_sum - (long)se->avg.runnable_sum;
5398 	se->avg.runnable_sum = new_sum;
5399 
5400 	/* Update parent cfs_rq runnable */
5401 	__update_sa(&cfs_rq->avg, runnable, delta_avg, delta_sum);
5402 }
5403 
5404 static inline void
5405 update_tg_cfs_load(struct cfs_rq *cfs_rq, struct sched_entity *se, struct cfs_rq *gcfs_rq)
5406 {
5407 	long delta_avg, running_sum, runnable_sum = gcfs_rq->prop_runnable_sum;
5408 	unsigned long load_avg;
5409 	u64 load_sum = 0;
5410 	s64 delta_sum;
5411 	u32 divider;
5412 
5413 	if (!runnable_sum)
5414 		return;
5415 
5416 	gcfs_rq->prop_runnable_sum = 0;
5417 
5418 	/*
5419 	 * cfs_rq->avg.period_contrib can be used for both cfs_rq and se.
5420 	 * See ___update_load_avg() for details.
5421 	 */
5422 	divider = get_pelt_divider(&cfs_rq->avg);
5423 
5424 	if (runnable_sum >= 0) {
5425 		/*
5426 		 * Add runnable; clip at LOAD_AVG_MAX. Reflects that until
5427 		 * the CPU is saturated running == runnable.
5428 		 */
5429 		runnable_sum += se->avg.load_sum;
5430 		runnable_sum = min_t(long, runnable_sum, divider);
5431 	} else {
5432 		/*
5433 		 * Estimate the new unweighted runnable_sum of the gcfs_rq by
5434 		 * assuming all tasks are equally runnable.
5435 		 */
5436 		if (scale_load_down(gcfs_rq->load.weight)) {
5437 			load_sum = div_u64(gcfs_rq->avg.load_sum,
5438 				scale_load_down(gcfs_rq->load.weight));
5439 		}
5440 
5441 		/* But make sure to not inflate se's runnable */
5442 		runnable_sum = min(se->avg.load_sum, load_sum);
5443 	}
5444 
5445 	/*
5446 	 * runnable_sum can't be lower than running_sum
5447 	 * Rescale running sum to be in the same range as runnable sum
5448 	 * running_sum is in [0 : LOAD_AVG_MAX <<  SCHED_CAPACITY_SHIFT]
5449 	 * runnable_sum is in [0 : LOAD_AVG_MAX]
5450 	 */
5451 	running_sum = se->avg.util_sum >> SCHED_CAPACITY_SHIFT;
5452 	runnable_sum = max(runnable_sum, running_sum);
5453 
5454 	load_sum = se_weight(se) * runnable_sum;
5455 	load_avg = div_u64(load_sum, divider);
5456 
5457 	delta_avg = load_avg - se->avg.load_avg;
5458 	if (!delta_avg)
5459 		return;
5460 
5461 	delta_sum = load_sum - (s64)se_weight(se) * se->avg.load_sum;
5462 
5463 	se->avg.load_sum = runnable_sum;
5464 	se->avg.load_avg = load_avg;
5465 	__update_sa(&cfs_rq->avg, load, delta_avg, delta_sum);
5466 }
5467 
5468 static inline void add_tg_cfs_propagate(struct cfs_rq *cfs_rq, long runnable_sum)
5469 {
5470 	cfs_rq->propagate = 1;
5471 	cfs_rq->prop_runnable_sum += runnable_sum;
5472 }
5473 
5474 /* Update task and its cfs_rq load average */
5475 static inline int propagate_entity_load_avg(struct sched_entity *se)
5476 {
5477 	struct cfs_rq *cfs_rq, *gcfs_rq;
5478 
5479 	if (entity_is_task(se))
5480 		return 0;
5481 
5482 	gcfs_rq = group_cfs_rq(se);
5483 	if (!gcfs_rq->propagate)
5484 		return 0;
5485 
5486 	gcfs_rq->propagate = 0;
5487 
5488 	cfs_rq = cfs_rq_of(se);
5489 
5490 	add_tg_cfs_propagate(cfs_rq, gcfs_rq->prop_runnable_sum);
5491 
5492 	update_tg_cfs_util(cfs_rq, se, gcfs_rq);
5493 	update_tg_cfs_runnable(cfs_rq, se, gcfs_rq);
5494 	update_tg_cfs_load(cfs_rq, se, gcfs_rq);
5495 
5496 	trace_pelt_cfs_tp(cfs_rq);
5497 	trace_pelt_se_tp(se);
5498 
5499 	return 1;
5500 }
5501 
5502 /*
5503  * Check if we need to update the load and the utilization of a blocked
5504  * group_entity:
5505  */
5506 static inline bool skip_blocked_update(struct sched_entity *se)
5507 {
5508 	struct cfs_rq *gcfs_rq = group_cfs_rq(se);
5509 
5510 	/*
5511 	 * If sched_entity still have not zero load or utilization, we have to
5512 	 * decay it:
5513 	 */
5514 	if (se->avg.load_avg || se->avg.util_avg)
5515 		return false;
5516 
5517 	/*
5518 	 * If there is a pending propagation, we have to update the load and
5519 	 * the utilization of the sched_entity:
5520 	 */
5521 	if (gcfs_rq->propagate)
5522 		return false;
5523 
5524 	/*
5525 	 * Otherwise, the load and the utilization of the sched_entity is
5526 	 * already zero and there is no pending propagation, so it will be a
5527 	 * waste of time to try to decay it:
5528 	 */
5529 	return true;
5530 }
5531 
5532 #else /* !CONFIG_FAIR_GROUP_SCHED: */
5533 
5534 static inline void update_tg_load_avg(struct cfs_rq *cfs_rq) {}
5535 
5536 static inline void clear_tg_offline_cfs_rqs(struct rq *rq) {}
5537 
5538 static inline int propagate_entity_load_avg(struct sched_entity *se)
5539 {
5540 	return 0;
5541 }
5542 
5543 static inline void add_tg_cfs_propagate(struct cfs_rq *cfs_rq, long runnable_sum) {}
5544 
5545 #endif /* !CONFIG_FAIR_GROUP_SCHED */
5546 
5547 #ifdef CONFIG_NO_HZ_COMMON
5548 static inline void migrate_se_pelt_lag(struct sched_entity *se)
5549 {
5550 	u64 throttled = 0, now, lut;
5551 	struct cfs_rq *cfs_rq;
5552 	struct rq *rq;
5553 	bool is_idle;
5554 
5555 	if (load_avg_is_decayed(&se->avg))
5556 		return;
5557 
5558 	cfs_rq = cfs_rq_of(se);
5559 	rq = rq_of(cfs_rq);
5560 
5561 	rcu_read_lock();
5562 	is_idle = is_idle_task(rcu_dereference_all(rq->curr));
5563 	rcu_read_unlock();
5564 
5565 	/*
5566 	 * The lag estimation comes with a cost we don't want to pay all the
5567 	 * time. Hence, limiting to the case where the source CPU is idle and
5568 	 * we know we are at the greatest risk to have an outdated clock.
5569 	 */
5570 	if (!is_idle)
5571 		return;
5572 
5573 	/*
5574 	 * Estimated "now" is: last_update_time + cfs_idle_lag + rq_idle_lag, where:
5575 	 *
5576 	 *   last_update_time (the cfs_rq's last_update_time)
5577 	 *	= cfs_rq_clock_pelt()@cfs_rq_idle
5578 	 *      = rq_clock_pelt()@cfs_rq_idle
5579 	 *        - cfs->throttled_clock_pelt_time@cfs_rq_idle
5580 	 *
5581 	 *   cfs_idle_lag (delta between rq's update and cfs_rq's update)
5582 	 *      = rq_clock_pelt()@rq_idle - rq_clock_pelt()@cfs_rq_idle
5583 	 *
5584 	 *   rq_idle_lag (delta between now and rq's update)
5585 	 *      = sched_clock_cpu() - rq_clock()@rq_idle
5586 	 *
5587 	 * We can then write:
5588 	 *
5589 	 *    now = rq_clock_pelt()@rq_idle - cfs->throttled_clock_pelt_time +
5590 	 *          sched_clock_cpu() - rq_clock()@rq_idle
5591 	 * Where:
5592 	 *      rq_clock_pelt()@rq_idle is rq->clock_pelt_idle
5593 	 *      rq_clock()@rq_idle      is rq->clock_idle
5594 	 *      cfs->throttled_clock_pelt_time@cfs_rq_idle
5595 	 *                              is cfs_rq->throttled_pelt_idle
5596 	 */
5597 
5598 #ifdef CONFIG_CFS_BANDWIDTH
5599 	throttled = u64_u32_load(cfs_rq->throttled_pelt_idle);
5600 	/* The clock has been stopped for throttling */
5601 	if (throttled == U64_MAX)
5602 		return;
5603 #endif
5604 	now = u64_u32_load(rq->clock_pelt_idle);
5605 	/*
5606 	 * Paired with _update_idle_rq_clock_pelt(). It ensures at the worst case
5607 	 * is observed the old clock_pelt_idle value and the new clock_idle,
5608 	 * which lead to an underestimation. The opposite would lead to an
5609 	 * overestimation.
5610 	 */
5611 	smp_rmb();
5612 	lut = cfs_rq_last_update_time(cfs_rq);
5613 
5614 	now -= throttled;
5615 	if (now < lut)
5616 		/*
5617 		 * cfs_rq->avg.last_update_time is more recent than our
5618 		 * estimation, let's use it.
5619 		 */
5620 		now = lut;
5621 	else
5622 		now += sched_clock_cpu(cpu_of(rq)) - u64_u32_load(rq->clock_idle);
5623 
5624 	__update_load_avg_blocked_se(now, se);
5625 }
5626 #else /* !CONFIG_NO_HZ_COMMON: */
5627 static void migrate_se_pelt_lag(struct sched_entity *se) {}
5628 #endif /* !CONFIG_NO_HZ_COMMON */
5629 
5630 /**
5631  * update_cfs_rq_load_avg - update the cfs_rq's load/util averages
5632  * @now: current time, as per cfs_rq_clock_pelt()
5633  * @cfs_rq: cfs_rq to update
5634  *
5635  * The cfs_rq avg is the direct sum of all its entities (blocked and runnable)
5636  * avg. The immediate corollary is that all (fair) tasks must be attached.
5637  *
5638  * cfs_rq->avg is used for task_h_load() and update_cfs_group() for example.
5639  *
5640  * Return: true if the load decayed or we removed load.
5641  *
5642  * Since both these conditions indicate a changed cfs_rq->avg.load we should
5643  * call update_tg_load_avg() when this function returns true.
5644  */
5645 static inline int
5646 update_cfs_rq_load_avg(u64 now, struct cfs_rq *cfs_rq)
5647 {
5648 	unsigned long removed_load = 0, removed_util = 0, removed_runnable = 0;
5649 	struct sched_avg *sa = &cfs_rq->avg;
5650 	int decayed = 0;
5651 
5652 	if (cfs_rq->removed.nr) {
5653 		unsigned long r;
5654 		u32 divider = get_pelt_divider(&cfs_rq->avg);
5655 
5656 		raw_spin_lock(&cfs_rq->removed.lock);
5657 		swap(cfs_rq->removed.util_avg, removed_util);
5658 		swap(cfs_rq->removed.load_avg, removed_load);
5659 		swap(cfs_rq->removed.runnable_avg, removed_runnable);
5660 		cfs_rq->removed.nr = 0;
5661 		raw_spin_unlock(&cfs_rq->removed.lock);
5662 
5663 		r = removed_load;
5664 		__update_sa(sa, load, -r, -r*divider);
5665 
5666 		r = removed_util;
5667 		__update_sa(sa, util, -r, -r*divider);
5668 
5669 		r = removed_runnable;
5670 		__update_sa(sa, runnable, -r, -r*divider);
5671 
5672 		/*
5673 		 * removed_runnable is the unweighted version of removed_load so we
5674 		 * can use it to estimate removed_load_sum.
5675 		 */
5676 		add_tg_cfs_propagate(cfs_rq,
5677 			-(long)(removed_runnable * divider) >> SCHED_CAPACITY_SHIFT);
5678 
5679 		decayed = 1;
5680 	}
5681 
5682 	decayed |= __update_load_avg_cfs_rq(now, cfs_rq);
5683 	u64_u32_store_copy(sa->last_update_time,
5684 			   cfs_rq->last_update_time_copy,
5685 			   sa->last_update_time);
5686 	return decayed;
5687 }
5688 
5689 /**
5690  * attach_entity_load_avg - attach this entity to its cfs_rq load avg
5691  * @cfs_rq: cfs_rq to attach to
5692  * @se: sched_entity to attach
5693  *
5694  * Must call update_cfs_rq_load_avg() before this, since we rely on
5695  * cfs_rq->avg.last_update_time being current.
5696  */
5697 static void attach_entity_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
5698 {
5699 	/*
5700 	 * cfs_rq->avg.period_contrib can be used for both cfs_rq and se.
5701 	 * See ___update_load_avg() for details.
5702 	 */
5703 	u32 divider = get_pelt_divider(&cfs_rq->avg);
5704 
5705 	/*
5706 	 * When we attach the @se to the @cfs_rq, we must align the decay
5707 	 * window because without that, really weird and wonderful things can
5708 	 * happen.
5709 	 *
5710 	 * XXX illustrate
5711 	 */
5712 	se->avg.last_update_time = cfs_rq->avg.last_update_time;
5713 	se->avg.period_contrib = cfs_rq->avg.period_contrib;
5714 
5715 	/*
5716 	 * Hell(o) Nasty stuff.. we need to recompute _sum based on the new
5717 	 * period_contrib. This isn't strictly correct, but since we're
5718 	 * entirely outside of the PELT hierarchy, nobody cares if we truncate
5719 	 * _sum a little.
5720 	 */
5721 	se->avg.util_sum = se->avg.util_avg * divider;
5722 
5723 	se->avg.runnable_sum = se->avg.runnable_avg * divider;
5724 
5725 	se->avg.load_sum = se->avg.load_avg * divider;
5726 	if (se_weight(se) < se->avg.load_sum)
5727 		se->avg.load_sum = div_u64(se->avg.load_sum, se_weight(se));
5728 	else
5729 		se->avg.load_sum = 1;
5730 
5731 	enqueue_load_avg(cfs_rq, se);
5732 	cfs_rq->avg.util_avg += se->avg.util_avg;
5733 	cfs_rq->avg.util_sum += se->avg.util_sum;
5734 	cfs_rq->avg.runnable_avg += se->avg.runnable_avg;
5735 	cfs_rq->avg.runnable_sum += se->avg.runnable_sum;
5736 
5737 	add_tg_cfs_propagate(cfs_rq, se->avg.load_sum);
5738 
5739 	cfs_rq_util_change(cfs_rq, 0);
5740 
5741 	trace_pelt_cfs_tp(cfs_rq);
5742 }
5743 
5744 /**
5745  * detach_entity_load_avg - detach this entity from its cfs_rq load avg
5746  * @cfs_rq: cfs_rq to detach from
5747  * @se: sched_entity to detach
5748  *
5749  * Must call update_cfs_rq_load_avg() before this, since we rely on
5750  * cfs_rq->avg.last_update_time being current.
5751  */
5752 static void detach_entity_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se)
5753 {
5754 	dequeue_load_avg(cfs_rq, se);
5755 	__update_sa(&cfs_rq->avg, util, -se->avg.util_avg, -se->avg.util_sum);
5756 	__update_sa(&cfs_rq->avg, runnable, -se->avg.runnable_avg, -se->avg.runnable_sum);
5757 
5758 	add_tg_cfs_propagate(cfs_rq, -se->avg.load_sum);
5759 
5760 	cfs_rq_util_change(cfs_rq, 0);
5761 
5762 	trace_pelt_cfs_tp(cfs_rq);
5763 }
5764 
5765 #define UTIL_EST_MARGIN (SCHED_CAPACITY_SCALE / 100)
5766 
5767 static inline void util_est_update(struct sched_entity *se)
5768 {
5769 	unsigned int ewma, dequeued, last_ewma_diff;
5770 
5771 	if (!sched_feat(UTIL_EST))
5772 		return;
5773 
5774 	/* Get current estimate of utilization */
5775 	ewma = READ_ONCE(se->avg.util_est);
5776 
5777 	/*
5778 	 * If the PELT values haven't changed since enqueue time,
5779 	 * skip the util_est update.
5780 	 */
5781 	if (ewma & UTIL_AVG_UNCHANGED)
5782 		return;
5783 
5784 	/* Get utilization at dequeue */
5785 	dequeued = READ_ONCE(se->avg.util_avg);
5786 
5787 	/*
5788 	 * Reset EWMA on utilization increases, the moving average is used only
5789 	 * to smooth utilization decreases.
5790 	 */
5791 	if (ewma <= dequeued) {
5792 		ewma = dequeued;
5793 		goto done;
5794 	}
5795 
5796 	/*
5797 	 * Skip update of task's estimated utilization when its members are
5798 	 * already ~1% close to its last activation value.
5799 	 */
5800 	last_ewma_diff = ewma - dequeued;
5801 	if (last_ewma_diff < UTIL_EST_MARGIN)
5802 		goto done;
5803 
5804 	/*
5805 	 * To avoid underestimate of task utilization, skip updates of EWMA if
5806 	 * we cannot grant that thread got all CPU time it wanted.
5807 	 */
5808 	if ((dequeued + UTIL_EST_MARGIN) < READ_ONCE(se->avg.runnable_avg))
5809 		goto done;
5810 
5811 	/*
5812 	 * Update Task's estimated utilization
5813 	 *
5814 	 * When *p completes an activation we can consolidate another sample
5815 	 * of the task size. This is done by using this value to update the
5816 	 * Exponential Weighted Moving Average (EWMA):
5817 	 *
5818 	 *  ewma(t) = w *  task_util(p) + (1-w) * ewma(t-1)
5819 	 *          = w *  task_util(p) +         ewma(t-1)  - w * ewma(t-1)
5820 	 *          = w * (task_util(p) -         ewma(t-1)) +     ewma(t-1)
5821 	 *          = w * (      -last_ewma_diff           ) +     ewma(t-1)
5822 	 *          = w * (-last_ewma_diff +  ewma(t-1) / w)
5823 	 *
5824 	 * Where 'w' is the weight of new samples, which is configured to be
5825 	 * 0.25, thus making w=1/4 ( >>= UTIL_EST_WEIGHT_SHIFT)
5826 	 */
5827 	ewma <<= UTIL_EST_WEIGHT_SHIFT;
5828 	ewma  -= last_ewma_diff;
5829 	ewma >>= UTIL_EST_WEIGHT_SHIFT;
5830 done:
5831 	ewma |= UTIL_AVG_UNCHANGED;
5832 	WRITE_ONCE(se->avg.util_est, ewma);
5833 
5834 	trace_sched_util_est_se_tp(se);
5835 }
5836 
5837 /*
5838  * Optional action to be done while updating the load average
5839  */
5840 #define UPDATE_TG	0x01
5841 #define SKIP_AGE_LOAD	0x02
5842 #define DO_ATTACH	0x04
5843 #define DO_DETACH	0x08
5844 #define UPDATE_UTIL_EST	0x10
5845 
5846 /* Update task and its cfs_rq load average */
5847 static inline void update_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
5848 {
5849 	u64 now = cfs_rq_clock_pelt(cfs_rq);
5850 	int decayed;
5851 
5852 	/*
5853 	 * Track task load average for carrying it to new CPU after migrated, and
5854 	 * track group sched_entity load average for task_h_load calculation in migration
5855 	 */
5856 	if (se->avg.last_update_time && !(flags & SKIP_AGE_LOAD))
5857 		__update_load_avg_se(now, cfs_rq, se);
5858 
5859 	decayed  = update_cfs_rq_load_avg(now, cfs_rq);
5860 	decayed |= propagate_entity_load_avg(se);
5861 
5862 	if (!se->avg.last_update_time && (flags & DO_ATTACH)) {
5863 
5864 		/*
5865 		 * DO_ATTACH means we're here from enqueue_entity().
5866 		 * !last_update_time means we've passed through
5867 		 * migrate_task_rq_fair() indicating we migrated.
5868 		 *
5869 		 * IOW we're enqueueing a task on a new CPU.
5870 		 */
5871 		attach_entity_load_avg(cfs_rq, se);
5872 		update_tg_load_avg(cfs_rq);
5873 
5874 	} else if (flags & DO_DETACH) {
5875 		/*
5876 		 * DO_DETACH means we're here from dequeue_entity()
5877 		 * and we are migrating task out of the CPU.
5878 		 */
5879 		detach_entity_load_avg(cfs_rq, se);
5880 		update_tg_load_avg(cfs_rq);
5881 	} else if (decayed) {
5882 		cfs_rq_util_change(cfs_rq, 0);
5883 
5884 		if (flags & UPDATE_TG)
5885 			update_tg_load_avg(cfs_rq);
5886 	}
5887 
5888 	if (flags & UPDATE_UTIL_EST)
5889 		util_est_update(se);
5890 }
5891 
5892 /*
5893  * Synchronize entity load avg of dequeued entity without locking
5894  * the previous rq.
5895  */
5896 static void sync_entity_load_avg(struct sched_entity *se)
5897 {
5898 	struct cfs_rq *cfs_rq = cfs_rq_of(se);
5899 	u64 last_update_time;
5900 
5901 	last_update_time = cfs_rq_last_update_time(cfs_rq);
5902 	__update_load_avg_blocked_se(last_update_time, se);
5903 }
5904 
5905 /*
5906  * Task first catches up with cfs_rq, and then subtract
5907  * itself from the cfs_rq (task must be off the queue now).
5908  */
5909 static void remove_entity_load_avg(struct sched_entity *se)
5910 {
5911 	struct cfs_rq *cfs_rq = cfs_rq_of(se);
5912 	unsigned long flags;
5913 
5914 	/*
5915 	 * tasks cannot exit without having gone through wake_up_new_task() ->
5916 	 * enqueue_task_fair() which will have added things to the cfs_rq,
5917 	 * so we can remove unconditionally.
5918 	 */
5919 
5920 	sync_entity_load_avg(se);
5921 
5922 	raw_spin_lock_irqsave(&cfs_rq->removed.lock, flags);
5923 	++cfs_rq->removed.nr;
5924 	cfs_rq->removed.util_avg	+= se->avg.util_avg;
5925 	cfs_rq->removed.load_avg	+= se->avg.load_avg;
5926 	cfs_rq->removed.runnable_avg	+= se->avg.runnable_avg;
5927 	raw_spin_unlock_irqrestore(&cfs_rq->removed.lock, flags);
5928 }
5929 
5930 static inline unsigned long cfs_rq_runnable_avg(struct cfs_rq *cfs_rq)
5931 {
5932 	return cfs_rq->avg.runnable_avg;
5933 }
5934 
5935 static inline unsigned long cfs_rq_load_avg(struct cfs_rq *cfs_rq)
5936 {
5937 	return cfs_rq->avg.load_avg;
5938 }
5939 
5940 static int sched_balance_newidle(struct rq *this_rq, struct rq_flags *rf)
5941 	__must_hold(__rq_lockp(this_rq));
5942 
5943 static inline unsigned long task_util(struct task_struct *p)
5944 {
5945 	return READ_ONCE(p->se.avg.util_avg);
5946 }
5947 
5948 static inline unsigned long _task_util_est(struct task_struct *p)
5949 {
5950 	return READ_ONCE(p->se.avg.util_est) & ~UTIL_AVG_UNCHANGED;
5951 }
5952 
5953 static inline unsigned long task_util_est(struct task_struct *p)
5954 {
5955 	return max(task_util(p), _task_util_est(p));
5956 }
5957 
5958 static inline void util_est_enqueue(struct cfs_rq *cfs_rq,
5959 				    struct task_struct *p)
5960 {
5961 	unsigned int enqueued;
5962 
5963 	if (!sched_feat(UTIL_EST))
5964 		return;
5965 
5966 	/* Update root cfs_rq's estimated utilization */
5967 	enqueued  = cfs_rq->avg.util_est;
5968 	enqueued += _task_util_est(p);
5969 	WRITE_ONCE(cfs_rq->avg.util_est, enqueued);
5970 
5971 	trace_sched_util_est_cfs_tp(cfs_rq);
5972 }
5973 
5974 static inline void util_est_dequeue(struct cfs_rq *cfs_rq,
5975 				    struct task_struct *p)
5976 {
5977 	unsigned int enqueued;
5978 
5979 	if (!sched_feat(UTIL_EST))
5980 		return;
5981 
5982 	/* Update root cfs_rq's estimated utilization */
5983 	enqueued  = cfs_rq->avg.util_est;
5984 	enqueued -= min_t(unsigned int, enqueued, _task_util_est(p));
5985 	WRITE_ONCE(cfs_rq->avg.util_est, enqueued);
5986 
5987 	trace_sched_util_est_cfs_tp(cfs_rq);
5988 }
5989 
5990 static inline unsigned long get_actual_cpu_capacity(int cpu)
5991 {
5992 	unsigned long capacity = arch_scale_cpu_capacity(cpu);
5993 
5994 	capacity -= max(hw_load_avg(cpu_rq(cpu)), cpufreq_get_pressure(cpu));
5995 
5996 	return capacity;
5997 }
5998 
5999 static inline int util_fits_cpu(unsigned long util,
6000 				unsigned long uclamp_min,
6001 				unsigned long uclamp_max,
6002 				int cpu)
6003 {
6004 	unsigned long capacity = capacity_of(cpu);
6005 	unsigned long capacity_orig;
6006 	bool fits, uclamp_max_fits;
6007 
6008 	/*
6009 	 * Check if the real util fits without any uclamp boost/cap applied.
6010 	 */
6011 	fits = fits_capacity(util, capacity);
6012 
6013 	if (!uclamp_is_used())
6014 		return fits;
6015 
6016 	/*
6017 	 * We must use arch_scale_cpu_capacity() for comparing against uclamp_min and
6018 	 * uclamp_max. We only care about capacity pressure (by using
6019 	 * capacity_of()) for comparing against the real util.
6020 	 *
6021 	 * If a task is boosted to 1024 for example, we don't want a tiny
6022 	 * pressure to skew the check whether it fits a CPU or not.
6023 	 *
6024 	 * Similarly if a task is capped to arch_scale_cpu_capacity(little_cpu), it
6025 	 * should fit a little cpu even if there's some pressure.
6026 	 *
6027 	 * Only exception is for HW or cpufreq pressure since it has a direct impact
6028 	 * on available OPP of the system.
6029 	 *
6030 	 * We honour it for uclamp_min only as a drop in performance level
6031 	 * could result in not getting the requested minimum performance level.
6032 	 *
6033 	 * For uclamp_max, we can tolerate a drop in performance level as the
6034 	 * goal is to cap the task. So it's okay if it's getting less.
6035 	 */
6036 	capacity_orig = arch_scale_cpu_capacity(cpu);
6037 
6038 	/*
6039 	 * We want to force a task to fit a cpu as implied by uclamp_max.
6040 	 * But we do have some corner cases to cater for..
6041 	 *
6042 	 *
6043 	 *                                 C=z
6044 	 *   |                             ___
6045 	 *   |                  C=y       |   |
6046 	 *   |_ _ _ _ _ _ _ _ _ ___ _ _ _ | _ | _ _ _ _ _  uclamp_max
6047 	 *   |      C=x        |   |      |   |
6048 	 *   |      ___        |   |      |   |
6049 	 *   |     |   |       |   |      |   |    (util somewhere in this region)
6050 	 *   |     |   |       |   |      |   |
6051 	 *   |     |   |       |   |      |   |
6052 	 *   +----------------------------------------
6053 	 *         CPU0        CPU1       CPU2
6054 	 *
6055 	 *   In the above example if a task is capped to a specific performance
6056 	 *   point, y, then when:
6057 	 *
6058 	 *   * util = 80% of x then it does not fit on CPU0 and should migrate
6059 	 *     to CPU1
6060 	 *   * util = 80% of y then it is forced to fit on CPU1 to honour
6061 	 *     uclamp_max request.
6062 	 *
6063 	 *   which is what we're enforcing here. A task always fits if
6064 	 *   uclamp_max <= capacity_orig. But when uclamp_max > capacity_orig,
6065 	 *   the normal upmigration rules should withhold still.
6066 	 *
6067 	 *   Only exception is when we are on max capacity, then we need to be
6068 	 *   careful not to block overutilized state. This is so because:
6069 	 *
6070 	 *     1. There's no concept of capping at max_capacity! We can't go
6071 	 *        beyond this performance level anyway.
6072 	 *     2. The system is being saturated when we're operating near
6073 	 *        max capacity, it doesn't make sense to block overutilized.
6074 	 */
6075 	uclamp_max_fits = (capacity_orig == SCHED_CAPACITY_SCALE) && (uclamp_max == SCHED_CAPACITY_SCALE);
6076 	uclamp_max_fits = !uclamp_max_fits && (uclamp_max <= capacity_orig);
6077 	fits = fits || uclamp_max_fits;
6078 
6079 	/*
6080 	 *
6081 	 *                                 C=z
6082 	 *   |                             ___       (region a, capped, util >= uclamp_max)
6083 	 *   |                  C=y       |   |
6084 	 *   |_ _ _ _ _ _ _ _ _ ___ _ _ _ | _ | _ _ _ _ _ uclamp_max
6085 	 *   |      C=x        |   |      |   |
6086 	 *   |      ___        |   |      |   |      (region b, uclamp_min <= util <= uclamp_max)
6087 	 *   |_ _ _|_ _|_ _ _ _| _ | _ _ _| _ | _ _ _ _ _ uclamp_min
6088 	 *   |     |   |       |   |      |   |
6089 	 *   |     |   |       |   |      |   |      (region c, boosted, util < uclamp_min)
6090 	 *   +----------------------------------------
6091 	 *         CPU0        CPU1       CPU2
6092 	 *
6093 	 * a) If util > uclamp_max, then we're capped, we don't care about
6094 	 *    actual fitness value here. We only care if uclamp_max fits
6095 	 *    capacity without taking margin/pressure into account.
6096 	 *    See comment above.
6097 	 *
6098 	 * b) If uclamp_min <= util <= uclamp_max, then the normal
6099 	 *    fits_capacity() rules apply. Except we need to ensure that we
6100 	 *    enforce we remain within uclamp_max, see comment above.
6101 	 *
6102 	 * c) If util < uclamp_min, then we are boosted. Same as (b) but we
6103 	 *    need to take into account the boosted value fits the CPU without
6104 	 *    taking margin/pressure into account.
6105 	 *
6106 	 * Cases (a) and (b) are handled in the 'fits' variable already. We
6107 	 * just need to consider an extra check for case (c) after ensuring we
6108 	 * handle the case uclamp_min > uclamp_max.
6109 	 */
6110 	uclamp_min = min(uclamp_min, uclamp_max);
6111 	if (fits && (util < uclamp_min) &&
6112 	    (uclamp_min > get_actual_cpu_capacity(cpu)))
6113 		return -1;
6114 
6115 	return fits;
6116 }
6117 
6118 static inline int task_fits_cpu(struct task_struct *p, int cpu)
6119 {
6120 	unsigned long uclamp_min = uclamp_eff_value(p, UCLAMP_MIN);
6121 	unsigned long uclamp_max = uclamp_eff_value(p, UCLAMP_MAX);
6122 	unsigned long util = task_util_est(p);
6123 	/*
6124 	 * Return true only if the cpu fully fits the task requirements, which
6125 	 * include the utilization but also the performance hints.
6126 	 */
6127 	return (util_fits_cpu(util, uclamp_min, uclamp_max, cpu) > 0);
6128 }
6129 
6130 static inline void update_misfit_status(struct task_struct *p, struct rq *rq)
6131 {
6132 	int cpu = cpu_of(rq);
6133 
6134 	if (!sched_asym_cpucap_active())
6135 		return;
6136 
6137 	/*
6138 	 * Affinity allows us to go somewhere higher?  Or are we on biggest
6139 	 * available CPU already? Or do we fit into this CPU ?
6140 	 */
6141 	if (!p || (p->nr_cpus_allowed == 1) ||
6142 	    (arch_scale_cpu_capacity(cpu) == p->max_allowed_capacity) ||
6143 	    task_fits_cpu(p, cpu)) {
6144 
6145 		rq->misfit_task_load = 0;
6146 		return;
6147 	}
6148 
6149 	/*
6150 	 * Make sure that misfit_task_load will not be null even if
6151 	 * task_h_load() returns 0.
6152 	 */
6153 	rq->misfit_task_load = max_t(unsigned long, task_h_load(p), 1);
6154 }
6155 
6156 void __setparam_fair(struct task_struct *p, const struct sched_attr *attr)
6157 {
6158 	struct sched_entity *se = &p->se;
6159 
6160 	p->static_prio = NICE_TO_PRIO(attr->sched_nice);
6161 	if (attr->sched_runtime) {
6162 		se->custom_slice = 1;
6163 		se->slice = clamp_t(u64, attr->sched_runtime,
6164 				      NSEC_PER_MSEC/10,   /* HZ=1000 * 10 */
6165 				      NSEC_PER_MSEC*100); /* HZ=100  / 10 */
6166 	} else {
6167 		se->custom_slice = 0;
6168 		se->slice = sysctl_sched_base_slice;
6169 	}
6170 }
6171 
6172 static void
6173 place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
6174 {
6175 	u64 vslice, vruntime = avg_vruntime(cfs_rq);
6176 	unsigned int nr_queued = cfs_rq->h_nr_queued;
6177 	bool update_zero = false;
6178 	s64 lag = 0;
6179 
6180 	if (!se->custom_slice)
6181 		se->slice = sysctl_sched_base_slice;
6182 	vslice = calc_delta_fair(se->slice, se);
6183 
6184 	if (flags & ENQUEUE_QUEUED)
6185 		nr_queued -= 1;
6186 
6187 	/*
6188 	 * Due to how V is constructed as the weighted average of entities,
6189 	 * adding tasks with positive lag, or removing tasks with negative lag
6190 	 * will move 'time' backwards, this can screw around with the lag of
6191 	 * other tasks.
6192 	 *
6193 	 * EEVDF: placement strategy #1 / #2
6194 	 */
6195 	if (sched_feat(PLACE_LAG) && nr_queued && se->vlag) {
6196 		struct sched_entity *curr = cfs_rq->curr;
6197 		long load, weight;
6198 
6199 		lag = se->vlag;
6200 
6201 		/*
6202 		 * If we want to place a task and preserve lag, we have to
6203 		 * consider the effect of the new entity on the weighted
6204 		 * average and compensate for this, otherwise lag can quickly
6205 		 * evaporate.
6206 		 *
6207 		 * Lag is defined as:
6208 		 *
6209 		 *   lag_i = S - s_i = w_i * (V - v_i)
6210 		 *
6211 		 * To avoid the 'w_i' term all over the place, we only track
6212 		 * the virtual lag:
6213 		 *
6214 		 *   vl_i = V - v_i <=> v_i = V - vl_i
6215 		 *
6216 		 * And we take V to be the weighted average of all v:
6217 		 *
6218 		 *   V = (\Sum w_j*v_j) / W
6219 		 *
6220 		 * Where W is: \Sum w_j
6221 		 *
6222 		 * Then, the weighted average after adding an entity with lag
6223 		 * vl_i is given by:
6224 		 *
6225 		 *   V' = (\Sum w_j*v_j + w_i*v_i) / (W + w_i)
6226 		 *      = (W*V + w_i*(V - vl_i)) / (W + w_i)
6227 		 *      = (W*V + w_i*V - w_i*vl_i) / (W + w_i)
6228 		 *      = (V*(W + w_i) - w_i*vl_i) / (W + w_i)
6229 		 *      = V - w_i*vl_i / (W + w_i)
6230 		 *
6231 		 * And the actual lag after adding an entity with vl_i is:
6232 		 *
6233 		 *   vl'_i = V' - v_i
6234 		 *         = V - w_i*vl_i / (W + w_i) - (V - vl_i)
6235 		 *         = vl_i - w_i*vl_i / (W + w_i)
6236 		 *
6237 		 * Which is strictly less than vl_i. So in order to preserve lag
6238 		 * we should inflate the lag before placement such that the
6239 		 * effective lag after placement comes out right.
6240 		 *
6241 		 * As such, invert the above relation for vl'_i to get the vl_i
6242 		 * we need to use such that the lag after placement is the lag
6243 		 * we computed before dequeue.
6244 		 *
6245 		 *   vl'_i = vl_i - w_i*vl_i / (W + w_i)
6246 		 *         = ((W + w_i)*vl_i - w_i*vl_i) / (W + w_i)
6247 		 *
6248 		 *   (W + w_i)*vl'_i = (W + w_i)*vl_i - w_i*vl_i
6249 		 *                   = W*vl_i
6250 		 *
6251 		 *   vl_i = (W + w_i)*vl'_i / W
6252 		 */
6253 		load = cfs_rq->sum_weight;
6254 		if (curr && curr->on_rq)
6255 			load += avg_vruntime_weight(cfs_rq, curr->h_load.weight);
6256 
6257 		weight = avg_vruntime_weight(cfs_rq, se->h_load.weight);
6258 		lag *= load + weight;
6259 		if (WARN_ON_ONCE(!load))
6260 			load = 1;
6261 		lag = div64_long(lag, load);
6262 
6263 		/*
6264 		 * A heavy entity (relative to the tree) will pull the
6265 		 * avg_vruntime close to its vruntime position on enqueue. But
6266 		 * the zero_vruntime point is only updated at the next
6267 		 * update_deadline()/place_entity()/update_entity_lag().
6268 		 *
6269 		 * Specifically (see the comment near avg_vruntime_weight()):
6270 		 *
6271 		 *   sum_w_vruntime = \Sum (v_i - v0) * w_i
6272 		 *
6273 		 * Note that if v0 is near a light entity, both terms will be
6274 		 * small for the light entity, while in that case both terms
6275 		 * are large for the heavy entity, leading to risk of
6276 		 * overflow.
6277 		 *
6278 		 * OTOH if v0 is near the heavy entity, then the difference is
6279 		 * larger for the light entity, but the factor is small, while
6280 		 * for the heavy entity the difference is small but the factor
6281 		 * is large. Avoiding the multiplication overflow.
6282 		 */
6283 		if (weight > load)
6284 			update_zero = true;
6285 	}
6286 
6287 	se->vruntime = vruntime - lag;
6288 
6289 	if (update_zero)
6290 		update_zero_vruntime(cfs_rq, -lag);
6291 
6292 	if (sched_feat(PLACE_REL_DEADLINE) && se->rel_deadline) {
6293 		se->deadline += se->vruntime;
6294 		se->rel_deadline = 0;
6295 		return;
6296 	}
6297 
6298 	/*
6299 	 * When joining the competition; the existing tasks will be,
6300 	 * on average, halfway through their slice, as such start tasks
6301 	 * off with half a slice to ease into the competition.
6302 	 */
6303 	if (sched_feat(PLACE_DEADLINE_INITIAL) && (flags & ENQUEUE_INITIAL))
6304 		vslice /= 2;
6305 
6306 	/*
6307 	 * EEVDF: vd_i = ve_i + r_i/w_i
6308 	 */
6309 	se->deadline = se->vruntime + vslice;
6310 }
6311 
6312 static void check_enqueue_throttle(struct cfs_rq *cfs_rq);
6313 static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq);
6314 
6315 static void
6316 enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
6317 {
6318 	/*
6319 	 * When enqueuing a sched_entity, we must:
6320 	 *   - Update loads to have both entity and cfs_rq synced with now.
6321 	 *   - For group_entity, update its runnable_weight to reflect the new
6322 	 *     h_nr_runnable of its group cfs_rq.
6323 	 *   - For group_entity, update its weight to reflect the new share of
6324 	 *     its group cfs_rq
6325 	 *   - Add its new weight to cfs_rq->load.weight
6326 	 */
6327 	update_load_avg(cfs_rq, se, UPDATE_TG | DO_ATTACH);
6328 	se_update_runnable(se);
6329 	/*
6330 	 * XXX update_load_avg() above will have attached us to the pelt sum;
6331 	 * but update_cfs_group() here will re-adjust the weight and have to
6332 	 * undo/redo all that. Seems wasteful.
6333 	 */
6334 	update_cfs_group(se);
6335 
6336 	account_entity_enqueue(cfs_rq, se);
6337 
6338 	/* Entity has migrated, no longer consider this task hot */
6339 	if (flags & ENQUEUE_MIGRATED)
6340 		se->exec_start = 0;
6341 
6342 	check_schedstat_required();
6343 	update_stats_enqueue_fair(cfs_rq, se, flags);
6344 	se->on_rq = 1;
6345 
6346 	if (cfs_rq->nr_queued == 1) {
6347 		check_enqueue_throttle(cfs_rq);
6348 		list_add_leaf_cfs_rq(cfs_rq);
6349 #ifdef CONFIG_CFS_BANDWIDTH
6350 		if (cfs_rq->pelt_clock_throttled) {
6351 			struct rq *rq = rq_of(cfs_rq);
6352 
6353 			cfs_rq->throttled_clock_pelt_time += rq_clock_pelt(rq) -
6354 				cfs_rq->throttled_clock_pelt;
6355 			cfs_rq->pelt_clock_throttled = 0;
6356 		}
6357 #endif
6358 	}
6359 }
6360 
6361 static void set_next_buddy(struct cfs_rq *cfs_rq, struct sched_entity *se)
6362 {
6363 	if (WARN_ON_ONCE(!se->on_rq || se->sched_delayed))
6364 		return;
6365 	if (se_is_idle(se))
6366 		return;
6367 	cfs_rq->next = se;
6368 }
6369 
6370 static void clear_buddies(struct cfs_rq *cfs_rq, struct sched_entity *se)
6371 {
6372 	if (cfs_rq->next == se)
6373 		cfs_rq->next = NULL;
6374 }
6375 
6376 static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq);
6377 
6378 static void set_delayed(struct sched_entity *se)
6379 {
6380 	se->sched_delayed = 1;
6381 
6382 	/*
6383 	 * Delayed se of cfs_rq have no tasks queued on them.
6384 	 * Do not adjust h_nr_runnable since __dequeue_task()
6385 	 * will account it for blocked tasks.
6386 	 */
6387 	if (!entity_is_task(se))
6388 		return;
6389 
6390 	for_each_sched_entity(se) {
6391 		struct cfs_rq *cfs_rq = cfs_rq_of(se);
6392 
6393 		cfs_rq->h_nr_runnable--;
6394 	}
6395 }
6396 
6397 static void clear_delayed(struct sched_entity *se)
6398 {
6399 	se->sched_delayed = 0;
6400 
6401 	/*
6402 	 * Delayed se of cfs_rq have no tasks queued on them.
6403 	 * Do not adjust h_nr_runnable since a dequeue has
6404 	 * already accounted for it or an enqueue of a task
6405 	 * below it will account for it in enqueue_task_fair().
6406 	 */
6407 	if (!entity_is_task(se))
6408 		return;
6409 
6410 	for_each_sched_entity(se) {
6411 		struct cfs_rq *cfs_rq = cfs_rq_of(se);
6412 
6413 		cfs_rq->h_nr_runnable++;
6414 	}
6415 }
6416 
6417 static void
6418 dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
6419 {
6420 	int action = UPDATE_TG;
6421 
6422 	if (entity_is_task(se)) {
6423 		if (task_on_rq_migrating(task_of(se)))
6424 			action |= DO_DETACH;
6425 
6426 		if ((flags & DEQUEUE_SLEEP) && !(flags & DEQUEUE_DELAYED))
6427 			action |= UPDATE_UTIL_EST;
6428 	}
6429 
6430 	/*
6431 	 * When dequeuing a sched_entity, we must:
6432 	 *   - Update loads to have both entity and cfs_rq synced with now.
6433 	 *   - For group_entity, update its runnable_weight to reflect the new
6434 	 *     h_nr_runnable of its group cfs_rq.
6435 	 *   - Subtract its previous weight from cfs_rq->load.weight.
6436 	 *   - For group entity, update its weight to reflect the new share
6437 	 *     of its group cfs_rq.
6438 	 */
6439 	update_load_avg(cfs_rq, se, action);
6440 	se_update_runnable(se);
6441 
6442 	update_stats_dequeue_fair(cfs_rq, se, flags);
6443 
6444 	se->on_rq = 0;
6445 	account_entity_dequeue(cfs_rq, se);
6446 
6447 	/* return excess runtime on last dequeue */
6448 	return_cfs_rq_runtime(cfs_rq);
6449 
6450 	update_cfs_group(se);
6451 
6452 	if (cfs_rq->nr_queued == 0) {
6453 		update_idle_cfs_rq_clock_pelt(cfs_rq);
6454 #ifdef CONFIG_CFS_BANDWIDTH
6455 		if (throttled_hierarchy(cfs_rq)) {
6456 			struct rq *rq = rq_of(cfs_rq);
6457 
6458 			list_del_leaf_cfs_rq(cfs_rq);
6459 			cfs_rq->throttled_clock_pelt = rq_clock_pelt(rq);
6460 			cfs_rq->pelt_clock_throttled = 1;
6461 		}
6462 #endif
6463 	}
6464 }
6465 
6466 static void
6467 set_next_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
6468 {
6469 	/* 'current' is not kept within the tree. */
6470 	if (se->on_rq) {
6471 		/*
6472 		 * Any task has to be enqueued before it get to execute on
6473 		 * a CPU. So account for the time it spent waiting on the
6474 		 * runqueue.
6475 		 */
6476 		update_stats_wait_end_fair(cfs_rq, se);
6477 		update_load_avg(cfs_rq, se, UPDATE_TG);
6478 	}
6479 
6480 	update_stats_curr_start(cfs_rq, se);
6481 	WARN_ON_ONCE(cfs_rq->h_curr);
6482 	cfs_rq->h_curr = se;
6483 
6484 	/*
6485 	 * Track our maximum slice length, if the CPU's load is at
6486 	 * least twice that of our own weight (i.e. don't track it
6487 	 * when there are only lesser-weight tasks around):
6488 	 */
6489 	if (schedstat_enabled() &&
6490 	    rq_of(cfs_rq)->cfs.load.weight >= 2*se->load.weight) {
6491 		struct sched_statistics *stats;
6492 
6493 		stats = __schedstats_from_se(se);
6494 		__schedstat_set(stats->slice_max,
6495 				max((u64)stats->slice_max,
6496 				    se->sum_exec_runtime - se->prev_sum_exec_runtime));
6497 	}
6498 
6499 	se->prev_sum_exec_runtime = se->sum_exec_runtime;
6500 }
6501 
6502 static bool __dequeue_task(struct rq *rq, struct task_struct *p, int flags);
6503 
6504 static struct sched_entity *
6505 pick_next_entity(struct rq *rq, bool protect)
6506 {
6507 	struct cfs_rq *cfs_rq = &rq->cfs;
6508 	struct sched_entity *se;
6509 
6510 	se = pick_eevdf(cfs_rq, protect);
6511 	if (se->sched_delayed) {
6512 		__dequeue_task(rq, task_of(se), DEQUEUE_SLEEP | DEQUEUE_DELAYED);
6513 		/*
6514 		 * Must not reference @se again, see __block_task().
6515 		 */
6516 		return NULL;
6517 	}
6518 	return se;
6519 }
6520 
6521 static void put_prev_entity(struct cfs_rq *cfs_rq, struct sched_entity *prev)
6522 {
6523 	/*
6524 	 * If still on the runqueue then deactivate_task()
6525 	 * was not called and update_curr() has to be done:
6526 	 */
6527 	if (prev->on_rq)
6528 		update_curr(cfs_rq);
6529 
6530 	if (prev->on_rq) {
6531 		update_stats_wait_start_fair(cfs_rq, prev);
6532 		/* in !on_rq case, update occurred at dequeue */
6533 		update_load_avg(cfs_rq, prev, 0);
6534 	}
6535 	WARN_ON_ONCE(cfs_rq->h_curr != prev);
6536 	cfs_rq->h_curr = NULL;
6537 }
6538 
6539 static void
6540 entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
6541 {
6542 	/*
6543 	 * Update run-time statistics of the 'current'.
6544 	 */
6545 	update_curr(cfs_rq);
6546 
6547 	/*
6548 	 * Ensure that runnable average is periodically updated.
6549 	 */
6550 	update_load_avg(cfs_rq, curr, UPDATE_TG);
6551 	update_cfs_group(curr);
6552 
6553 #ifdef CONFIG_SCHED_HRTICK
6554 	/*
6555 	 * queued ticks are scheduled to match the slice, so don't bother
6556 	 * validating it and just reschedule.
6557 	 */
6558 	if (queued) {
6559 		resched_curr(rq_of(cfs_rq));
6560 		return;
6561 	}
6562 #endif
6563 }
6564 
6565 
6566 /**************************************************
6567  * CFS bandwidth control machinery
6568  */
6569 
6570 #ifdef CONFIG_CFS_BANDWIDTH
6571 
6572 #ifdef CONFIG_JUMP_LABEL
6573 static struct static_key __cfs_bandwidth_used;
6574 
6575 static inline bool cfs_bandwidth_used(void)
6576 {
6577 	return static_key_false(&__cfs_bandwidth_used);
6578 }
6579 
6580 void cfs_bandwidth_usage_inc(void)
6581 {
6582 	static_key_slow_inc_cpuslocked(&__cfs_bandwidth_used);
6583 }
6584 
6585 void cfs_bandwidth_usage_dec(void)
6586 {
6587 	static_key_slow_dec_cpuslocked(&__cfs_bandwidth_used);
6588 }
6589 #else /* !CONFIG_JUMP_LABEL: */
6590 static bool cfs_bandwidth_used(void)
6591 {
6592 	return true;
6593 }
6594 
6595 void cfs_bandwidth_usage_inc(void) {}
6596 void cfs_bandwidth_usage_dec(void) {}
6597 #endif /* !CONFIG_JUMP_LABEL */
6598 
6599 static inline u64 sched_cfs_bandwidth_slice(void)
6600 {
6601 	return (u64)sysctl_sched_cfs_bandwidth_slice * NSEC_PER_USEC;
6602 }
6603 
6604 /*
6605  * Replenish runtime according to assigned quota. We use sched_clock_cpu
6606  * directly instead of rq->clock to avoid adding additional synchronization
6607  * around rq->lock.
6608  *
6609  * requires cfs_b->lock
6610  */
6611 void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b)
6612 {
6613 	s64 runtime;
6614 
6615 	if (unlikely(cfs_b->quota == RUNTIME_INF))
6616 		return;
6617 
6618 	cfs_b->runtime += cfs_b->quota;
6619 	runtime = cfs_b->runtime_snap - cfs_b->runtime;
6620 	if (runtime > 0) {
6621 		cfs_b->burst_time += runtime;
6622 		cfs_b->nr_burst++;
6623 	}
6624 
6625 	cfs_b->runtime = min(cfs_b->runtime, cfs_b->quota + cfs_b->burst);
6626 	cfs_b->runtime_snap = cfs_b->runtime;
6627 }
6628 
6629 static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
6630 {
6631 	return &tg->cfs_bandwidth;
6632 }
6633 
6634 /* returns 0 on failure to allocate runtime */
6635 static int __assign_cfs_rq_runtime(struct cfs_bandwidth *cfs_b,
6636 				   struct cfs_rq *cfs_rq, u64 target_runtime)
6637 {
6638 	u64 min_amount, amount = 0;
6639 
6640 	lockdep_assert_held(&cfs_b->lock);
6641 
6642 	/* note: this is a positive sum as runtime_remaining <= 0 */
6643 	min_amount = target_runtime - cfs_rq->runtime_remaining;
6644 
6645 	if (cfs_b->quota == RUNTIME_INF)
6646 		amount = min_amount;
6647 	else {
6648 		start_cfs_bandwidth(cfs_b);
6649 
6650 		if (cfs_b->runtime > 0) {
6651 			amount = min(cfs_b->runtime, min_amount);
6652 			cfs_b->runtime -= amount;
6653 			cfs_b->idle = 0;
6654 		}
6655 	}
6656 
6657 	cfs_rq->runtime_remaining += amount;
6658 
6659 	return cfs_rq->runtime_remaining > 0;
6660 }
6661 
6662 static bool throttle_cfs_rq(struct cfs_rq *cfs_rq);
6663 
6664 static bool __account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec)
6665 {
6666 	/* dock delta_exec before expiring quota (as it could span periods) */
6667 	cfs_rq->runtime_remaining -= delta_exec;
6668 
6669 	if (likely(cfs_rq->runtime_remaining > 0))
6670 		return false;
6671 
6672 	if (cfs_rq->throttled)
6673 		return true;
6674 	/*
6675 	 * throttle_cfs_rq() will try to extend the runtime first
6676 	 * before throttling the hierarchy.
6677 	 */
6678 	return throttle_cfs_rq(cfs_rq);
6679 }
6680 
6681 static __always_inline
6682 bool account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec)
6683 {
6684 	if (!cfs_bandwidth_used() || !cfs_rq->runtime_enabled)
6685 		return false;
6686 
6687 	return __account_cfs_rq_runtime(cfs_rq, delta_exec);
6688 }
6689 
6690 static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
6691 {
6692 	return cfs_bandwidth_used() && cfs_rq->throttled;
6693 }
6694 
6695 static inline bool cfs_rq_pelt_clock_throttled(struct cfs_rq *cfs_rq)
6696 {
6697 	return cfs_bandwidth_used() && cfs_rq->pelt_clock_throttled;
6698 }
6699 
6700 /* check whether cfs_rq, or any parent, is throttled */
6701 static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
6702 {
6703 	return cfs_bandwidth_used() && cfs_rq->throttle_count;
6704 }
6705 
6706 static inline int lb_throttled_hierarchy(struct task_struct *p, int dst_cpu)
6707 {
6708 	return throttled_hierarchy(tg_cfs_rq(task_group(p), dst_cpu));
6709 }
6710 
6711 static inline bool task_is_throttled(struct task_struct *p)
6712 {
6713 	return cfs_bandwidth_used() && p->throttled;
6714 }
6715 
6716 static bool dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags);
6717 static void throttle_cfs_rq_work(struct callback_head *work)
6718 {
6719 	struct task_struct *p = container_of(work, struct task_struct, sched_throttle_work);
6720 	struct sched_entity *se;
6721 	struct cfs_rq *cfs_rq;
6722 	struct rq *rq;
6723 
6724 	WARN_ON_ONCE(p != current);
6725 	p->sched_throttle_work.next = &p->sched_throttle_work;
6726 
6727 	/*
6728 	 * If task is exiting, then there won't be a return to userspace, so we
6729 	 * don't have to bother with any of this.
6730 	 */
6731 	if ((p->flags & PF_EXITING))
6732 		return;
6733 
6734 	scoped_guard(task_rq_lock, p) {
6735 		se = &p->se;
6736 		cfs_rq = cfs_rq_of(se);
6737 
6738 		/* Raced, forget */
6739 		if (p->sched_class != &fair_sched_class)
6740 			return;
6741 
6742 		/*
6743 		 * If not in limbo, then either replenish has happened or this
6744 		 * task got migrated out of the throttled cfs_rq, move along.
6745 		 */
6746 		if (!cfs_rq->throttle_count)
6747 			return;
6748 		rq = scope.rq;
6749 		update_rq_clock(rq);
6750 		WARN_ON_ONCE(p->throttled || !list_empty(&p->throttle_node));
6751 		dequeue_task_fair(rq, p, DEQUEUE_SLEEP | DEQUEUE_THROTTLE);
6752 		list_add(&p->throttle_node, &cfs_rq->throttled_limbo_list);
6753 		/*
6754 		 * Must not set throttled before dequeue or dequeue will
6755 		 * mistakenly regard this task as an already throttled one.
6756 		 */
6757 		p->throttled = true;
6758 		resched_curr(rq);
6759 	}
6760 }
6761 
6762 void init_cfs_throttle_work(struct task_struct *p)
6763 {
6764 	init_task_work(&p->sched_throttle_work, throttle_cfs_rq_work);
6765 	/* Protect against double add, see throttle_cfs_rq() and throttle_cfs_rq_work() */
6766 	p->sched_throttle_work.next = &p->sched_throttle_work;
6767 	INIT_LIST_HEAD(&p->throttle_node);
6768 }
6769 
6770 /*
6771  * Task is throttled and someone wants to dequeue it again:
6772  * it could be sched/core when core needs to do things like
6773  * task affinity change, task group change, task sched class
6774  * change etc. and in these cases, DEQUEUE_SLEEP is not set;
6775  * or the task is blocked after throttled due to freezer etc.
6776  * and in these cases, DEQUEUE_SLEEP is set.
6777  */
6778 static void detach_task_cfs_rq(struct task_struct *p);
6779 static void dequeue_throttled_task(struct task_struct *p, int flags)
6780 {
6781 	WARN_ON_ONCE(p->se.on_rq);
6782 	list_del_init(&p->throttle_node);
6783 
6784 	/* task blocked after throttled */
6785 	if (flags & DEQUEUE_SLEEP) {
6786 		p->throttled = false;
6787 		return;
6788 	}
6789 
6790 	/*
6791 	 * task is migrating off its old cfs_rq, detach
6792 	 * the task's load from its old cfs_rq.
6793 	 */
6794 	if (task_on_rq_migrating(p))
6795 		detach_task_cfs_rq(p);
6796 }
6797 
6798 static bool enqueue_throttled_task(struct task_struct *p)
6799 {
6800 	struct cfs_rq *cfs_rq = cfs_rq_of(&p->se);
6801 
6802 	/* @p should have gone through dequeue_throttled_task() first */
6803 	WARN_ON_ONCE(!list_empty(&p->throttle_node));
6804 
6805 	/*
6806 	 * If the throttled task @p is enqueued to a throttled cfs_rq,
6807 	 * take the fast path by directly putting the task on the
6808 	 * target cfs_rq's limbo list.
6809 	 *
6810 	 * Do not do that when @p is current because the following race can
6811 	 * cause @p's group_node to be incorectly re-insterted in its rq's
6812 	 * cfs_tasks list, despite being throttled:
6813 	 *
6814 	 *     cpuX                       cpuY
6815 	 *   p ret2user
6816 	 *  throttle_cfs_rq_work()  sched_move_task(p)
6817 	 *  LOCK task_rq_lock
6818 	 *  dequeue_task_fair(p)
6819 	 *  UNLOCK task_rq_lock
6820 	 *                          LOCK task_rq_lock
6821 	 *                          task_current_donor(p) == true
6822 	 *                          task_on_rq_queued(p) == true
6823 	 *                          dequeue_task(p)
6824 	 *                          put_prev_task(p)
6825 	 *                          sched_change_group()
6826 	 *                          enqueue_task(p) -> p's new cfs_rq
6827 	 *                                             is throttled, go
6828 	 *                                             fast path and skip
6829 	 *                                             actual enqueue
6830 	 *                          set_next_task(p)
6831 	 *                    list_move(&se->group_node, &rq->cfs_tasks); // bug
6832 	 *  schedule()
6833 	 *
6834 	 * In the above race case, @p current cfs_rq is in the same rq as
6835 	 * its previous cfs_rq because sched_move_task() only moves a task
6836 	 * to a different group from the same rq, so we can use its current
6837 	 * cfs_rq to derive rq and test if the task is current.
6838 	 */
6839 	if (throttled_hierarchy(cfs_rq) &&
6840 	    !task_current_donor(rq_of(cfs_rq), p)) {
6841 		list_add(&p->throttle_node, &cfs_rq->throttled_limbo_list);
6842 		return true;
6843 	}
6844 
6845 	/* we can't take the fast path, do an actual enqueue*/
6846 	p->throttled = false;
6847 	return false;
6848 }
6849 
6850 static void enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags);
6851 static int tg_unthrottle_up(struct task_group *tg, void *data)
6852 {
6853 	struct rq *rq = data;
6854 	struct cfs_rq *cfs_rq = tg_cfs_rq(tg, cpu_of(rq));
6855 	struct task_struct *p, *tmp;
6856 	LIST_HEAD(throttled_tasks);
6857 
6858 	/*
6859 	 * If cfs_rq->curr is set, the cfs_rq might not have caught up
6860 	 * since the last clock update. Do it now before we begin
6861 	 * queueing task onto it to save the need for unnecessarily
6862 	 * unthrottle the hierarchy for this cfs_rq to be throttled
6863 	 * right back again.
6864 	 */
6865 	update_curr(cfs_rq);
6866 
6867 	if (--cfs_rq->throttle_count)
6868 		return 0;
6869 
6870 	if (cfs_rq->pelt_clock_throttled) {
6871 		cfs_rq->throttled_clock_pelt_time += rq_clock_pelt(rq) -
6872 					     cfs_rq->throttled_clock_pelt;
6873 		cfs_rq->pelt_clock_throttled = 0;
6874 	}
6875 
6876 	if (cfs_rq->throttled_clock_self) {
6877 		u64 delta = rq_clock(rq) - cfs_rq->throttled_clock_self;
6878 
6879 		cfs_rq->throttled_clock_self = 0;
6880 
6881 		if (WARN_ON_ONCE((s64)delta < 0))
6882 			delta = 0;
6883 
6884 		cfs_rq->throttled_clock_self_time += delta;
6885 	}
6886 
6887 	/*
6888 	 * Move the tasks to a local list since an update_curr() during
6889 	 * enqueue_task_fair() can throttle a higher cfs_rq, and it can
6890 	 * see the "throttled_limbo_list" being non-empty in
6891 	 * tg_throttle_down() if throttle_count turned 0 above.
6892 	 */
6893 	list_splice_init(&cfs_rq->throttled_limbo_list, &throttled_tasks);
6894 
6895 	/* Re-enqueue the tasks that have been throttled at this level. */
6896 	list_for_each_entry_safe(p, tmp, &throttled_tasks, throttle_node) {
6897 		/*
6898 		 * Back to being throttled! Break out and put the remaining
6899 		 * tasks back onto the limbo_list to prevent running them
6900 		 * unnecessarily.
6901 		 */
6902 		if (cfs_rq->throttle_count)
6903 			break;
6904 
6905 		list_del_init(&p->throttle_node);
6906 		p->throttled = false;
6907 		enqueue_task_fair(rq, p, ENQUEUE_WAKEUP);
6908 	}
6909 
6910 	list_splice(&throttled_tasks, &cfs_rq->throttled_limbo_list);
6911 
6912 	/* Add cfs_rq with load or one or more already running entities to the list */
6913 	if (!cfs_rq_is_decayed(cfs_rq))
6914 		list_add_leaf_cfs_rq(cfs_rq);
6915 
6916 	return 0;
6917 }
6918 
6919 static inline bool task_has_throttle_work(struct task_struct *p)
6920 {
6921 	return p->sched_throttle_work.next != &p->sched_throttle_work;
6922 }
6923 
6924 static inline void task_throttle_setup_work(struct task_struct *p)
6925 {
6926 	if (task_has_throttle_work(p))
6927 		return;
6928 
6929 	/*
6930 	 * Kthreads and exiting tasks don't return to userspace, so adding the
6931 	 * work is pointless
6932 	 */
6933 	if ((p->flags & (PF_EXITING | PF_KTHREAD)))
6934 		return;
6935 
6936 	task_work_add(p, &p->sched_throttle_work, TWA_RESUME);
6937 }
6938 
6939 static void record_throttle_clock(struct cfs_rq *cfs_rq)
6940 {
6941 	struct rq *rq = rq_of(cfs_rq);
6942 
6943 	if (cfs_rq_throttled(cfs_rq) && !cfs_rq->throttled_clock)
6944 		cfs_rq->throttled_clock = rq_clock(rq);
6945 
6946 	if (!cfs_rq->throttled_clock_self)
6947 		cfs_rq->throttled_clock_self = rq_clock(rq);
6948 }
6949 
6950 static int tg_throttle_down(struct task_group *tg, void *data)
6951 {
6952 	struct rq *rq = data;
6953 	struct cfs_rq *cfs_rq = tg_cfs_rq(tg, cpu_of(rq));
6954 
6955 	if (cfs_rq->throttle_count++)
6956 		return 0;
6957 
6958 	/*
6959 	 * For cfs_rqs that still have entities enqueued, PELT clock
6960 	 * stop happens at dequeue time when all entities are dequeued.
6961 	 */
6962 	if (!cfs_rq->nr_queued) {
6963 		list_del_leaf_cfs_rq(cfs_rq);
6964 		cfs_rq->throttled_clock_pelt = rq_clock_pelt(rq);
6965 		cfs_rq->pelt_clock_throttled = 1;
6966 	}
6967 
6968 	WARN_ON_ONCE(cfs_rq->throttled_clock_self);
6969 	WARN_ON_ONCE(!list_empty(&cfs_rq->throttled_limbo_list));
6970 	return 0;
6971 }
6972 
6973 static bool throttle_cfs_rq(struct cfs_rq *cfs_rq)
6974 {
6975 	struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
6976 	struct sched_entity *curr = cfs_rq->curr;
6977 	struct rq *rq = rq_of(cfs_rq);
6978 
6979 	scoped_guard(raw_spinlock, &cfs_b->lock) {
6980 		u64 target_runtime = 1;
6981 
6982 		/*
6983 		 * If cfs_rq->curr is still runnable, we are here from an
6984 		 * update_curr(). Request sysctl_sched_cfs_bandwidth_slice
6985 		 * worth of bandwidth to continue running.
6986 		 *
6987 		 * If the curr is not runnable, just request enough bandwidth
6988 		 * to be runnable next time the pick selects this cfs_rq.
6989 		 */
6990 		if (curr && curr->on_rq)
6991 			target_runtime = sched_cfs_bandwidth_slice();
6992 
6993 		/*
6994 		 * Check if We have raced with bandwidth becoming available. If
6995 		 * we actually throttled the timer might not unthrottle us for
6996 		 * an entire period. We additionally needed to make sure that
6997 		 * any subsequent check_cfs_rq_runtime calls agree not to
6998 		 * throttle us, as we may commit to do cfs put_prev+pick_next,
6999 		 * so we ask for 1ns of runtime rather than just check cfs_b.
7000 		 *
7001 		 * This will start the period timer if necessary.
7002 		 */
7003 		if (__assign_cfs_rq_runtime(cfs_b, cfs_rq, target_runtime))
7004 			return false;
7005 
7006 		/*
7007 		 * No bandwidth available; Add ourselves on the list to be
7008 		 * unthrottled later.
7009 		 */
7010 		list_add_tail_rcu(&cfs_rq->throttled_list,
7011 				  &cfs_b->throttled_cfs_rq);
7012 	}
7013 
7014 	/* freeze hierarchy runnable averages while throttled */
7015 	scoped_guard(rcu)
7016 		walk_tg_tree_from(cfs_rq->tg, tg_throttle_down, tg_nop, (void *)rq);
7017 
7018 	/*
7019 	 * Note: distribution will already see us throttled via the
7020 	 * throttled-list.  rq->lock protects completion.
7021 	 */
7022 	cfs_rq->throttled = 1;
7023 	WARN_ON_ONCE(cfs_rq->throttled_clock);
7024 
7025 	/*
7026 	 * If current hierarchy was throttled, add throttle work to the
7027 	 * current donor. In case of proxy-execution, the execution
7028 	 * context cannot exit to the userspace while holding a mutex
7029 	 * and the rule of throttle deferral to only throttle the
7030 	 * throttled context at exit to userspace is still preserved.
7031 	 */
7032 	if (curr && curr->on_rq)
7033 		task_throttle_setup_work(rq->donor);
7034 
7035 	return true;
7036 }
7037 
7038 void unthrottle_cfs_rq(struct cfs_rq *cfs_rq)
7039 {
7040 	struct rq *rq = rq_of(cfs_rq);
7041 	struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
7042 	struct sched_entity *se = cfs_rq_se(cfs_rq);
7043 
7044 	/*
7045 	 * It's possible we are called with runtime_remaining < 0 due to things
7046 	 * like async unthrottled us with a positive runtime_remaining but other
7047 	 * still running entities consumed those runtime before we reached here.
7048 	 *
7049 	 * We can't unthrottle this cfs_rq without any runtime remaining because
7050 	 * any enqueue in tg_unthrottle_up() will immediately trigger a throttle,
7051 	 * which is not supposed to happen on unthrottle path.
7052 	 *
7053 	 * Catch up on the remaining runtime since last clock update before
7054 	 * checking runtime remaining.
7055 	 */
7056 	update_curr(cfs_rq);
7057 	if (cfs_rq->runtime_enabled && cfs_rq->runtime_remaining <= 0)
7058 		return;
7059 
7060 	cfs_rq->throttled = 0;
7061 
7062 	scoped_guard(raw_spinlock, &cfs_b->lock) {
7063 		list_del_rcu(&cfs_rq->throttled_list);
7064 
7065 		if (!cfs_rq->throttled_clock)
7066 			break;
7067 
7068 		cfs_b->throttled_time += rq_clock(rq) - cfs_rq->throttled_clock;
7069 		cfs_rq->throttled_clock = 0;
7070 	}
7071 
7072 	/* update hierarchical throttle state */
7073 	walk_tg_tree_from(cfs_rq->tg, tg_nop, tg_unthrottle_up, (void *)rq);
7074 
7075 	if (!cfs_rq->load.weight) {
7076 		if (!cfs_rq->on_list)
7077 			return;
7078 		/*
7079 		 * Nothing to run but something to decay (on_list)?
7080 		 * Complete the branch.
7081 		 */
7082 		for_each_sched_entity(se) {
7083 			if (list_add_leaf_cfs_rq(cfs_rq_of(se)))
7084 				break;
7085 		}
7086 	}
7087 
7088 	assert_list_leaf_cfs_rq(rq);
7089 
7090 	/* Determine whether we need to wake up potentially idle CPU: */
7091 	if (rq->curr == rq->idle && rq->cfs.h_nr_queued)
7092 		resched_curr(rq);
7093 }
7094 
7095 static void __cfsb_csd_unthrottle(void *arg)
7096 {
7097 	struct cfs_rq *cursor, *tmp;
7098 	struct rq *rq = arg;
7099 
7100 	guard(rq_lock)(rq);
7101 
7102 	/*
7103 	 * Iterating over the list can trigger several call to
7104 	 * update_rq_clock() in unthrottle_cfs_rq().
7105 	 * Do it once and skip the potential next ones.
7106 	 */
7107 	update_rq_clock(rq);
7108 	rq_clock_start_loop_update(rq);
7109 
7110 	/*
7111 	 * Since we hold rq lock we're safe from concurrent manipulation of
7112 	 * the CSD list. However, this RCU critical section annotates the
7113 	 * fact that we pair with sched_free_group_rcu(), so that we cannot
7114 	 * race with group being freed in the window between removing it
7115 	 * from the list and advancing to the next entry in the list.
7116 	 */
7117 	guard(rcu)();
7118 
7119 	list_for_each_entry_safe(cursor, tmp, &rq->cfsb_csd_list,
7120 				 throttled_csd_list) {
7121 		list_del_init(&cursor->throttled_csd_list);
7122 
7123 		if (cfs_rq_throttled(cursor))
7124 			unthrottle_cfs_rq(cursor);
7125 	}
7126 
7127 	rq_clock_stop_loop_update(rq);
7128 }
7129 
7130 static inline void __unthrottle_cfs_rq_async(struct cfs_rq *cfs_rq)
7131 {
7132 	struct rq *rq = rq_of(cfs_rq);
7133 	bool first;
7134 
7135 	if (rq == this_rq()) {
7136 		update_rq_clock(rq);
7137 		unthrottle_cfs_rq(cfs_rq);
7138 		return;
7139 	}
7140 
7141 	/* Already enqueued */
7142 	if (WARN_ON_ONCE(!list_empty(&cfs_rq->throttled_csd_list)))
7143 		return;
7144 
7145 	first = list_empty(&rq->cfsb_csd_list);
7146 	list_add_tail(&cfs_rq->throttled_csd_list, &rq->cfsb_csd_list);
7147 	if (first)
7148 		smp_call_function_single_async(cpu_of(rq), &rq->cfsb_csd);
7149 }
7150 
7151 static void unthrottle_cfs_rq_async(struct cfs_rq *cfs_rq)
7152 {
7153 	lockdep_assert_rq_held(rq_of(cfs_rq));
7154 
7155 	if (WARN_ON_ONCE(!cfs_rq_throttled(cfs_rq) ||
7156 	    cfs_rq->runtime_remaining <= 0))
7157 		return;
7158 
7159 	__unthrottle_cfs_rq_async(cfs_rq);
7160 }
7161 
7162 static bool distribute_cfs_runtime(struct cfs_bandwidth *cfs_b)
7163 {
7164 	bool throttled = false, unthrottle_local = false;
7165 	int this_cpu = smp_processor_id();
7166 	u64 runtime, remaining = 1;
7167 	struct cfs_rq *cfs_rq;
7168 	struct rq *rq;
7169 
7170 	guard(rcu)();
7171 
7172 	list_for_each_entry_rcu(cfs_rq, &cfs_b->throttled_cfs_rq,
7173 				throttled_list) {
7174 		rq = rq_of(cfs_rq);
7175 
7176 		if (!remaining) {
7177 			throttled = true;
7178 			break;
7179 		}
7180 
7181 		guard(rq_lock_irqsave)(rq);
7182 
7183 		if (!cfs_rq_throttled(cfs_rq))
7184 			continue;
7185 
7186 		/* Already queued for async unthrottle */
7187 		if (!list_empty(&cfs_rq->throttled_csd_list))
7188 			continue;
7189 
7190 		if (cfs_rq->curr) {
7191 			update_rq_clock(rq);
7192 			update_curr(cfs_rq);
7193 		}
7194 
7195 		/* By the above checks, this should never be true */
7196 		WARN_ON_ONCE(cfs_rq->runtime_remaining > 0);
7197 
7198 		scoped_guard(raw_spinlock, &cfs_b->lock) {
7199 			runtime = -cfs_rq->runtime_remaining + 1;
7200 			if (runtime > cfs_b->runtime)
7201 				runtime = cfs_b->runtime;
7202 			cfs_b->runtime -= runtime;
7203 			remaining = cfs_b->runtime;
7204 		}
7205 
7206 		cfs_rq->runtime_remaining += runtime;
7207 
7208 		/*
7209 		 * Ran out of bandwidth during distribution!
7210 		 * Indicate throttled entities and break early.
7211 		 */
7212 		if (cfs_rq->runtime_remaining <= 0) {
7213 			throttled = true;
7214 			break;
7215 		}
7216 
7217 		/* we check whether we're throttled above */
7218 		if (cpu_of(rq) != this_cpu) {
7219 			unthrottle_cfs_rq_async(cfs_rq);
7220 			continue;
7221 		}
7222 
7223 		/*
7224 		 * Allow a parallel async unthrottle to unthrottle
7225 		 * this cfs_rq too via __cfsb_csd_unthrottle().
7226 		 * If we are first, do it ourselves at the end and
7227 		 * save on an IPI from remote CPUs.
7228 		 */
7229 		unthrottle_local = list_empty(&rq->cfsb_csd_list);
7230 		list_add_tail(&cfs_rq->throttled_csd_list, &rq->cfsb_csd_list);
7231 	}
7232 
7233 	if (unthrottle_local) {
7234 		/*
7235 		 * Protect against an IPI that is also trying to flush
7236 		 * the unthrottled cfs_rq(s) from this CPU's csd_list.
7237 		 */
7238 		scoped_guard(irqsave)
7239 			__cfsb_csd_unthrottle(cpu_rq(this_cpu));
7240 	}
7241 
7242 	return throttled;
7243 }
7244 
7245 /*
7246  * Responsible for refilling a task_group's bandwidth and unthrottling its
7247  * cfs_rqs as appropriate. If there has been no activity within the last
7248  * period the timer is deactivated until scheduling resumes; cfs_b->idle is
7249  * used to track this state.
7250  */
7251 static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun)
7252 	__must_hold(&cfs_b->lock)
7253 {
7254 	int throttled;
7255 
7256 	/* no need to continue the timer with no bandwidth constraint */
7257 	if (cfs_b->quota == RUNTIME_INF)
7258 		goto out_deactivate;
7259 
7260 	throttled = !list_empty(&cfs_b->throttled_cfs_rq);
7261 	cfs_b->nr_periods += overrun;
7262 
7263 	/* Refill extra burst quota even if cfs_b->idle */
7264 	__refill_cfs_bandwidth_runtime(cfs_b);
7265 
7266 	/*
7267 	 * idle depends on !throttled (for the case of a large deficit), and if
7268 	 * we're going inactive then everything else can be deferred
7269 	 */
7270 	if (cfs_b->idle && !throttled)
7271 		goto out_deactivate;
7272 
7273 	if (!throttled) {
7274 		/* mark as potentially idle for the upcoming period */
7275 		cfs_b->idle = 1;
7276 		return 0;
7277 	}
7278 
7279 	/* account preceding periods in which throttling occurred */
7280 	cfs_b->nr_throttled += overrun;
7281 
7282 	/*
7283 	 * This check is repeated as we release cfs_b->lock while we unthrottle.
7284 	 */
7285 	while (throttled && cfs_b->runtime > 0) {
7286 		raw_spin_unlock_irq_enable(&cfs_b->lock);
7287 		/* we can't nest cfs_b->lock while distributing bandwidth */
7288 		throttled = distribute_cfs_runtime(cfs_b);
7289 		raw_spin_lock_irq_disable(&cfs_b->lock);
7290 	}
7291 
7292 	/*
7293 	 * While we are ensured activity in the period following an
7294 	 * unthrottle, this also covers the case in which the new bandwidth is
7295 	 * insufficient to cover the existing bandwidth deficit.  (Forcing the
7296 	 * timer to remain active while there are any throttled entities.)
7297 	 */
7298 	cfs_b->idle = 0;
7299 
7300 	return 0;
7301 
7302 out_deactivate:
7303 	return 1;
7304 }
7305 
7306 /* a cfs_rq won't donate quota below this amount */
7307 static const u64 min_cfs_rq_runtime = 1 * NSEC_PER_MSEC;
7308 /* minimum remaining period time to redistribute slack quota */
7309 static const u64 min_bandwidth_expiration = 2 * NSEC_PER_MSEC;
7310 /* how long we wait to gather additional slack before distributing */
7311 static const u64 cfs_bandwidth_slack_period = 5 * NSEC_PER_MSEC;
7312 
7313 /*
7314  * Are we near the end of the current quota period?
7315  *
7316  * Requires cfs_b->lock for hrtimer_expires_remaining to be safe against the
7317  * hrtimer base being cleared by hrtimer_start. In the case of
7318  * migrate_hrtimers, base is never cleared, so we are fine.
7319  */
7320 static int runtime_refresh_within(struct cfs_bandwidth *cfs_b, u64 min_expire)
7321 {
7322 	struct hrtimer *refresh_timer = &cfs_b->period_timer;
7323 	s64 remaining;
7324 
7325 	/* if the call-back is running a quota refresh is already occurring */
7326 	if (hrtimer_callback_running(refresh_timer))
7327 		return 1;
7328 
7329 	/* is a quota refresh about to occur? */
7330 	remaining = ktime_to_ns(hrtimer_expires_remaining(refresh_timer));
7331 	if (remaining < (s64)min_expire)
7332 		return 1;
7333 
7334 	return 0;
7335 }
7336 
7337 static void start_cfs_slack_bandwidth(struct cfs_bandwidth *cfs_b)
7338 {
7339 	u64 min_left = cfs_bandwidth_slack_period + min_bandwidth_expiration;
7340 
7341 	/* if there's a quota refresh soon don't bother with slack */
7342 	if (runtime_refresh_within(cfs_b, min_left))
7343 		return;
7344 
7345 	/* don't push forwards an existing deferred unthrottle */
7346 	if (cfs_b->slack_started)
7347 		return;
7348 	cfs_b->slack_started = true;
7349 
7350 	hrtimer_start(&cfs_b->slack_timer,
7351 			ns_to_ktime(cfs_bandwidth_slack_period),
7352 			HRTIMER_MODE_REL);
7353 }
7354 
7355 /* we know any runtime found here is valid as update_curr() precedes return */
7356 static void __return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
7357 {
7358 	struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(cfs_rq->tg);
7359 	s64 slack_runtime = cfs_rq->runtime_remaining - min_cfs_rq_runtime;
7360 
7361 	if (slack_runtime <= 0)
7362 		return;
7363 
7364 	guard(raw_spinlock)(&cfs_b->lock);
7365 
7366 	if (cfs_b->quota != RUNTIME_INF) {
7367 		cfs_b->runtime += slack_runtime;
7368 
7369 		/* we are under rq->lock, defer unthrottling using a timer */
7370 		if (cfs_b->runtime > sched_cfs_bandwidth_slice() &&
7371 		    !list_empty(&cfs_b->throttled_cfs_rq))
7372 			start_cfs_slack_bandwidth(cfs_b);
7373 	}
7374 
7375 	/* even if it's not valid for return we don't want to try again */
7376 	cfs_rq->runtime_remaining -= slack_runtime;
7377 }
7378 
7379 static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq)
7380 {
7381 	if (!cfs_bandwidth_used())
7382 		return;
7383 
7384 	if (!cfs_rq->runtime_enabled || cfs_rq->nr_queued)
7385 		return;
7386 
7387 	__return_cfs_rq_runtime(cfs_rq);
7388 }
7389 
7390 /*
7391  * This is done with a timer (instead of inline with bandwidth return) since
7392  * it's necessary to juggle rq->locks to unthrottle their respective cfs_rqs.
7393  */
7394 static void do_sched_cfs_slack_timer(struct cfs_bandwidth *cfs_b)
7395 {
7396 	/* confirm we're still not at a refresh boundary */
7397 	scoped_guard(raw_spinlock_irq, &cfs_b->lock) {
7398 		u64 runtime = 0, slice = sched_cfs_bandwidth_slice();
7399 
7400 		cfs_b->slack_started = false;
7401 
7402 		if (runtime_refresh_within(cfs_b, min_bandwidth_expiration))
7403 			return;
7404 
7405 		if (cfs_b->quota != RUNTIME_INF && cfs_b->runtime > slice)
7406 			runtime = cfs_b->runtime;
7407 
7408 		if (!runtime)
7409 			return;
7410 	}
7411 
7412 	distribute_cfs_runtime(cfs_b);
7413 }
7414 
7415 /*
7416  * When a group wakes up we want to make sure that its quota is not already
7417  * expired/exceeded, otherwise it may be allowed to steal additional ticks of
7418  * runtime as update_curr() throttling can not trigger until it's on-rq.
7419  */
7420 static void check_enqueue_throttle(struct cfs_rq *cfs_rq)
7421 {
7422 	if (!cfs_bandwidth_used())
7423 		return;
7424 
7425 	/* an active group must be handled by the update_curr() path */
7426 	if (!cfs_rq->runtime_enabled || cfs_rq->h_curr)
7427 		return;
7428 
7429 	/* ensure the group is not already throttled */
7430 	if (cfs_rq_throttled(cfs_rq))
7431 		return;
7432 
7433 	/* update runtime allocation */
7434 	account_cfs_rq_runtime(cfs_rq, 0);
7435 }
7436 
7437 static void sync_throttle(struct task_group *tg, int cpu)
7438 {
7439 	struct cfs_rq *pcfs_rq, *cfs_rq;
7440 
7441 	if (!cfs_bandwidth_used())
7442 		return;
7443 
7444 	if (!tg->parent)
7445 		return;
7446 
7447 	cfs_rq = tg_cfs_rq(tg, cpu);
7448 	pcfs_rq = tg_cfs_rq(tg->parent, cpu);
7449 
7450 	cfs_rq->throttle_count = pcfs_rq->throttle_count;
7451 	cfs_rq->throttled_clock_pelt = rq_clock_pelt(cpu_rq(cpu));
7452 
7453 	/*
7454 	 * It is not enough to sync the "pelt_clock_throttled" indicator
7455 	 * with the parent cfs_rq when the hierarchy is not queued.
7456 	 * Always join a throttled hierarchy with PELT clock throttled
7457 	 * and leaf it to the first enqueue, or distribution to
7458 	 * unthrottle the PELT clock.
7459 	 */
7460 	if (cfs_rq->throttle_count)
7461 		cfs_rq->pelt_clock_throttled = 1;
7462 }
7463 
7464 static enum hrtimer_restart sched_cfs_slack_timer(struct hrtimer *timer)
7465 {
7466 	struct cfs_bandwidth *cfs_b =
7467 		container_of(timer, struct cfs_bandwidth, slack_timer);
7468 
7469 	do_sched_cfs_slack_timer(cfs_b);
7470 
7471 	return HRTIMER_NORESTART;
7472 }
7473 
7474 static enum hrtimer_restart sched_cfs_period_timer(struct hrtimer *timer)
7475 {
7476 	struct cfs_bandwidth *cfs_b =
7477 		container_of(timer, struct cfs_bandwidth, period_timer);
7478 	int overrun;
7479 	int idle = 0;
7480 	int count = 0;
7481 
7482 	guard(raw_spinlock_irq)(&cfs_b->lock);
7483 
7484 	for (;;) {
7485 		overrun = hrtimer_forward_now(timer, cfs_b->period);
7486 		if (!overrun)
7487 			break;
7488 
7489 		idle = do_sched_cfs_period_timer(cfs_b, overrun);
7490 
7491 		if (++count > 3) {
7492 			u64 new, old = ktime_to_ns(cfs_b->period);
7493 
7494 			/*
7495 			 * Grow period by a factor of 2 to avoid losing precision.
7496 			 * Precision loss in the quota/period ratio can cause __cfs_schedulable
7497 			 * to fail.
7498 			 */
7499 			new = old * 2;
7500 			if (new < max_bw_quota_period_us * NSEC_PER_USEC) {
7501 				cfs_b->period = ns_to_ktime(new);
7502 				cfs_b->quota *= 2;
7503 				cfs_b->burst *= 2;
7504 
7505 				pr_warn_ratelimited(
7506 	"cfs_period_timer[cpu%d]: period too short, scaling up (new cfs_period_us = %lld, cfs_quota_us = %lld)\n",
7507 					smp_processor_id(),
7508 					div_u64(new, NSEC_PER_USEC),
7509 					div_u64(cfs_b->quota, NSEC_PER_USEC));
7510 			} else {
7511 				pr_warn_ratelimited(
7512 	"cfs_period_timer[cpu%d]: period too short, but cannot scale up without losing precision (cfs_period_us = %lld, cfs_quota_us = %lld)\n",
7513 					smp_processor_id(),
7514 					div_u64(old, NSEC_PER_USEC),
7515 					div_u64(cfs_b->quota, NSEC_PER_USEC));
7516 			}
7517 
7518 			/* reset count so we don't come right back in here */
7519 			count = 0;
7520 		}
7521 	}
7522 
7523 	if (idle) {
7524 		cfs_b->period_active = 0;
7525 		return HRTIMER_NORESTART;
7526 	}
7527 
7528 	return HRTIMER_RESTART;
7529 }
7530 
7531 void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b, struct cfs_bandwidth *parent)
7532 {
7533 	raw_spin_lock_init(&cfs_b->lock);
7534 	cfs_b->runtime = 0;
7535 	cfs_b->quota = RUNTIME_INF;
7536 	cfs_b->period = us_to_ktime(default_bw_period_us());
7537 	cfs_b->burst = 0;
7538 	cfs_b->hierarchical_quota = parent ? parent->hierarchical_quota : RUNTIME_INF;
7539 
7540 	INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq);
7541 	hrtimer_setup(&cfs_b->period_timer, sched_cfs_period_timer, CLOCK_MONOTONIC,
7542 		      HRTIMER_MODE_ABS_PINNED);
7543 
7544 	/* Add a random offset so that timers interleave */
7545 	hrtimer_set_expires(&cfs_b->period_timer,
7546 			    get_random_u32_below(cfs_b->period));
7547 	hrtimer_setup(&cfs_b->slack_timer, sched_cfs_slack_timer, CLOCK_MONOTONIC,
7548 		      HRTIMER_MODE_REL);
7549 	cfs_b->slack_started = false;
7550 }
7551 
7552 static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
7553 {
7554 	cfs_rq->runtime_enabled = 0;
7555 	INIT_LIST_HEAD(&cfs_rq->throttled_list);
7556 	INIT_LIST_HEAD(&cfs_rq->throttled_csd_list);
7557 	INIT_LIST_HEAD(&cfs_rq->throttled_limbo_list);
7558 }
7559 
7560 void start_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
7561 {
7562 	lockdep_assert_held(&cfs_b->lock);
7563 
7564 	if (cfs_b->period_active)
7565 		return;
7566 
7567 	cfs_b->period_active = 1;
7568 	hrtimer_forward_now(&cfs_b->period_timer, cfs_b->period);
7569 	hrtimer_start_expires(&cfs_b->period_timer, HRTIMER_MODE_ABS_PINNED);
7570 }
7571 
7572 static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
7573 {
7574 	int __maybe_unused i;
7575 
7576 	/* init_cfs_bandwidth() was not called */
7577 	if (!cfs_b->throttled_cfs_rq.next)
7578 		return;
7579 
7580 	hrtimer_cancel(&cfs_b->period_timer);
7581 	hrtimer_cancel(&cfs_b->slack_timer);
7582 
7583 	/*
7584 	 * It is possible that we still have some cfs_rq's pending on a CSD
7585 	 * list, though this race is very rare. In order for this to occur, we
7586 	 * must have raced with the last task leaving the group while there
7587 	 * exist throttled cfs_rq(s), and the period_timer must have queued the
7588 	 * CSD item but the remote cpu has not yet processed it. To handle this,
7589 	 * we can simply flush all pending CSD work inline here. We're
7590 	 * guaranteed at this point that no additional cfs_rq of this group can
7591 	 * join a CSD list.
7592 	 */
7593 	for_each_possible_cpu(i) {
7594 		struct rq *rq = cpu_rq(i);
7595 
7596 		if (list_empty(&rq->cfsb_csd_list))
7597 			continue;
7598 
7599 		scoped_guard(irqsave)
7600 			__cfsb_csd_unthrottle(rq);
7601 	}
7602 }
7603 
7604 /*
7605  * Both these CPU hotplug callbacks race against unregister_fair_sched_group()
7606  *
7607  * The race is harmless, since modifying bandwidth settings of unhooked group
7608  * bits doesn't do much.
7609  */
7610 
7611 /* cpu online callback */
7612 static void __maybe_unused update_runtime_enabled(struct rq *rq)
7613 {
7614 	struct task_group *tg;
7615 
7616 	lockdep_assert_rq_held(rq);
7617 
7618 	guard(rcu)();
7619 
7620 	list_for_each_entry_rcu(tg, &task_groups, list) {
7621 		struct cfs_bandwidth *cfs_b = &tg->cfs_bandwidth;
7622 		struct cfs_rq *cfs_rq = tg_cfs_rq(tg, cpu_of(rq));
7623 
7624 		scoped_guard(raw_spinlock, &cfs_b->lock)
7625 			cfs_rq->runtime_enabled = cfs_b->quota != RUNTIME_INF;
7626 	}
7627 }
7628 
7629 /* cpu offline callback */
7630 static void __maybe_unused unthrottle_offline_cfs_rqs(struct rq *rq)
7631 {
7632 	struct task_group *tg;
7633 
7634 	lockdep_assert_rq_held(rq);
7635 
7636 	// Do not unthrottle for an active CPU
7637 	if (cpumask_test_cpu(cpu_of(rq), cpu_active_mask))
7638 		return;
7639 
7640 	/*
7641 	 * The rq clock has already been updated in the
7642 	 * set_rq_offline(), so we should skip updating
7643 	 * the rq clock again in unthrottle_cfs_rq().
7644 	 */
7645 	rq_clock_start_loop_update(rq);
7646 
7647 	guard(rcu)();
7648 
7649 	list_for_each_entry_rcu(tg, &task_groups, list) {
7650 		struct cfs_rq *cfs_rq = tg_cfs_rq(tg, cpu_of(rq));
7651 
7652 		if (!cfs_rq->runtime_enabled)
7653 			continue;
7654 
7655 		/*
7656 		 * Offline rq is schedulable till CPU is completely disabled
7657 		 * in take_cpu_down(), so we prevent new cfs throttling here.
7658 		 */
7659 		cfs_rq->runtime_enabled = 0;
7660 
7661 		if (!cfs_rq_throttled(cfs_rq))
7662 			continue;
7663 
7664 		/*
7665 		 * clock_task is not advancing so we just need to make sure
7666 		 * there's some valid quota amount
7667 		 */
7668 		cfs_rq->runtime_remaining = 1;
7669 		unthrottle_cfs_rq(cfs_rq);
7670 	}
7671 
7672 	rq_clock_stop_loop_update(rq);
7673 }
7674 
7675 bool cfs_task_bw_constrained(struct task_struct *p)
7676 {
7677 	struct cfs_rq *cfs_rq = task_cfs_rq(p);
7678 
7679 	if (!cfs_bandwidth_used())
7680 		return false;
7681 
7682 	if (cfs_rq->runtime_enabled ||
7683 	    tg_cfs_bandwidth(cfs_rq->tg)->hierarchical_quota != RUNTIME_INF)
7684 		return true;
7685 
7686 	return false;
7687 }
7688 
7689 #ifdef CONFIG_NO_HZ_FULL
7690 /* called from pick_next_task_fair() */
7691 static void sched_fair_update_stop_tick(struct rq *rq, struct task_struct *p)
7692 {
7693 	int cpu = cpu_of(rq);
7694 
7695 	if (!cfs_bandwidth_used())
7696 		return;
7697 
7698 	if (!tick_nohz_full_cpu(cpu))
7699 		return;
7700 
7701 	if (rq->nr_running != 1)
7702 		return;
7703 
7704 	/*
7705 	 *  We know there is only one task runnable and we've just picked it. The
7706 	 *  normal enqueue path will have cleared TICK_DEP_BIT_SCHED if we will
7707 	 *  be otherwise able to stop the tick. Just need to check if we are using
7708 	 *  bandwidth control.
7709 	 */
7710 	if (cfs_task_bw_constrained(p))
7711 		tick_nohz_dep_set_cpu(cpu, TICK_DEP_BIT_SCHED);
7712 }
7713 #endif /* CONFIG_NO_HZ_FULL */
7714 
7715 #else /* !CONFIG_CFS_BANDWIDTH: */
7716 
7717 static bool account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec) { return false; }
7718 static void check_enqueue_throttle(struct cfs_rq *cfs_rq) {}
7719 static inline void sync_throttle(struct task_group *tg, int cpu) {}
7720 static __always_inline void return_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
7721 static void task_throttle_setup_work(struct task_struct *p) {}
7722 static bool task_is_throttled(struct task_struct *p) { return false; }
7723 static void dequeue_throttled_task(struct task_struct *p, int flags) {}
7724 static bool enqueue_throttled_task(struct task_struct *p) { return false; }
7725 static void record_throttle_clock(struct cfs_rq *cfs_rq) {}
7726 
7727 static inline int cfs_rq_throttled(struct cfs_rq *cfs_rq)
7728 {
7729 	return 0;
7730 }
7731 
7732 static inline bool cfs_rq_pelt_clock_throttled(struct cfs_rq *cfs_rq)
7733 {
7734 	return false;
7735 }
7736 
7737 static inline int throttled_hierarchy(struct cfs_rq *cfs_rq)
7738 {
7739 	return 0;
7740 }
7741 
7742 static inline int lb_throttled_hierarchy(struct task_struct *p, int dst_cpu)
7743 {
7744 	return 0;
7745 }
7746 
7747 #ifdef CONFIG_FAIR_GROUP_SCHED
7748 void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b, struct cfs_bandwidth *parent) {}
7749 static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
7750 #endif
7751 
7752 static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
7753 {
7754 	return NULL;
7755 }
7756 static inline void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
7757 static inline void update_runtime_enabled(struct rq *rq) {}
7758 static inline void unthrottle_offline_cfs_rqs(struct rq *rq) {}
7759 #ifdef CONFIG_CGROUP_SCHED
7760 bool cfs_task_bw_constrained(struct task_struct *p)
7761 {
7762 	return false;
7763 }
7764 #endif
7765 #endif /* !CONFIG_CFS_BANDWIDTH */
7766 
7767 #if !defined(CONFIG_CFS_BANDWIDTH) || !defined(CONFIG_NO_HZ_FULL)
7768 static inline void sched_fair_update_stop_tick(struct rq *rq, struct task_struct *p) {}
7769 #endif
7770 
7771 /**************************************************
7772  * CFS operations on tasks:
7773  */
7774 
7775 #ifdef CONFIG_SCHED_HRTICK
7776 static void hrtick_start_fair(struct rq *rq, struct task_struct *p)
7777 {
7778 	struct sched_entity *se = &p->se;
7779 	unsigned long scale = 1024;
7780 	unsigned long util = 0;
7781 	u64 vdelta;
7782 	u64 delta;
7783 
7784 	WARN_ON_ONCE(task_rq(p) != rq);
7785 
7786 	if (rq->cfs.h_nr_queued <= 1)
7787 		return;
7788 
7789 	/*
7790 	 * Compute time until virtual deadline
7791 	 */
7792 	vdelta = se->deadline - se->vruntime;
7793 	if ((s64)vdelta < 0) {
7794 		if (task_current_donor(rq, p))
7795 			resched_curr(rq);
7796 		return;
7797 	}
7798 	delta = (se->h_load.weight * vdelta) / NICE_0_LOAD;
7799 
7800 	/*
7801 	 * Correct for instantaneous load of other classes.
7802 	 */
7803 	util += cpu_util_irq(rq);
7804 	if (util && util < 1024) {
7805 		scale *= 1024;
7806 		scale /= (1024 - util);
7807 	}
7808 
7809 	hrtick_start(rq, (scale * delta) / 1024);
7810 }
7811 
7812 /*
7813  * Called on enqueue to start the hrtick when h_nr_queued becomes more than 1.
7814  */
7815 static void hrtick_update(struct rq *rq)
7816 {
7817 	struct task_struct *donor = rq->donor;
7818 
7819 	if (!hrtick_enabled_fair(rq) || donor->sched_class != &fair_sched_class)
7820 		return;
7821 
7822 	if (hrtick_active(rq))
7823 		return;
7824 
7825 	hrtick_start_fair(rq, donor);
7826 }
7827 #else /* !CONFIG_SCHED_HRTICK: */
7828 static inline void
7829 hrtick_start_fair(struct rq *rq, struct task_struct *p)
7830 {
7831 }
7832 
7833 static inline void hrtick_update(struct rq *rq)
7834 {
7835 }
7836 #endif /* !CONFIG_SCHED_HRTICK */
7837 
7838 static inline bool cpu_overutilized(int cpu)
7839 {
7840 	unsigned long rq_util_max;
7841 
7842 	if (!sched_energy_enabled())
7843 		return false;
7844 
7845 	rq_util_max = uclamp_rq_get(cpu_rq(cpu), UCLAMP_MAX);
7846 
7847 	/* Return true only if the utilization doesn't fit CPU's capacity */
7848 	return !util_fits_cpu(cpu_util_cfs(cpu), 0, rq_util_max, cpu);
7849 }
7850 
7851 /*
7852  * overutilized value make sense only if EAS is enabled
7853  */
7854 static inline bool is_rd_overutilized(struct root_domain *rd)
7855 {
7856 	return !sched_energy_enabled() || READ_ONCE(rd->overutilized);
7857 }
7858 
7859 static inline void set_rd_overutilized(struct root_domain *rd, bool flag)
7860 {
7861 	if (!sched_energy_enabled())
7862 		return;
7863 
7864 	WRITE_ONCE(rd->overutilized, flag);
7865 	trace_sched_overutilized_tp(rd, flag);
7866 }
7867 
7868 static inline void check_update_overutilized_status(struct rq *rq)
7869 {
7870 	/*
7871 	 * overutilized field is used for load balancing decisions only
7872 	 * if energy aware scheduler is being used
7873 	 */
7874 
7875 	if (!is_rd_overutilized(rq->rd) && cpu_overutilized(rq->cpu))
7876 		set_rd_overutilized(rq->rd, 1);
7877 }
7878 
7879 /* Runqueue only has SCHED_IDLE tasks enqueued */
7880 static int sched_idle_rq(struct rq *rq)
7881 {
7882 	return unlikely(rq->nr_running == rq->cfs.h_nr_idle &&
7883 			rq->nr_running);
7884 }
7885 
7886 static int choose_sched_idle_rq(struct rq *rq, struct task_struct *p)
7887 {
7888 	return sched_idle_rq(rq) && !task_has_idle_policy(p);
7889 }
7890 
7891 static int choose_idle_cpu(int cpu, struct task_struct *p)
7892 {
7893 	return available_idle_cpu(cpu) ||
7894 	       choose_sched_idle_rq(cpu_rq(cpu), p);
7895 }
7896 
7897 static void
7898 requeue_delayed_entity(struct cfs_rq *cfs_rq, struct sched_entity *se)
7899 {
7900 	/*
7901 	 * se->sched_delayed should imply: se->on_rq == 1.
7902 	 * Because a delayed entity is one that is still on
7903 	 * the runqueue competing until elegibility.
7904 	 */
7905 	WARN_ON_ONCE(!se->sched_delayed);
7906 	WARN_ON_ONCE(!se->on_rq);
7907 
7908 	if (update_entity_lag(cfs_rq, se)) {
7909 		cfs_rq->h_nr_queued--;
7910 		if (se != cfs_rq->curr)
7911 			__dequeue_entity(cfs_rq, se);
7912 		place_entity(cfs_rq, se, 0);
7913 		if (se != cfs_rq->curr)
7914 			__enqueue_entity(cfs_rq, se);
7915 		cfs_rq->h_nr_queued++;
7916 	}
7917 
7918 	update_load_avg(cfs_rq, se, 0);
7919 	clear_delayed(se);
7920 }
7921 
7922 static unsigned long enqueue_hierarchy(struct task_struct *p, int flags)
7923 {
7924 	unsigned long weight = NICE_0_LOAD;
7925 	int task_new = !(flags & ENQUEUE_WAKEUP);
7926 	struct sched_entity *se = &p->se;
7927 	int h_nr_idle = task_has_idle_policy(p);
7928 	int h_nr_runnable = 1;
7929 
7930 	if (task_new && se->sched_delayed)
7931 		h_nr_runnable = 0;
7932 
7933 	for_each_sched_entity(se) {
7934 		struct cfs_rq *cfs_rq = cfs_rq_of(se);
7935 
7936 		update_curr(cfs_rq);
7937 
7938 		if (!se->on_rq) {
7939 			enqueue_entity(cfs_rq, se, flags);
7940 		} else {
7941 			update_load_avg(cfs_rq, se, UPDATE_TG);
7942 			se_update_runnable(se);
7943 			update_cfs_group(se);
7944 		}
7945 
7946 		cfs_rq->h_nr_runnable += h_nr_runnable;
7947 		cfs_rq->h_nr_queued++;
7948 		cfs_rq->h_nr_idle += h_nr_idle;
7949 
7950 		if (cfs_rq_is_idle(cfs_rq))
7951 			h_nr_idle = 1;
7952 
7953 		weight = __calc_prop_weight(cfs_rq, se, weight);
7954 
7955 		flags = ENQUEUE_WAKEUP;
7956 	}
7957 
7958 	return weight;
7959 }
7960 
7961 /* Update curr's vruntime before placing entity or updating lag */
7962 static inline void update_curr_eevdf(struct cfs_rq *cfs_rq)
7963 {
7964 	if (!cfs_rq->curr)
7965 		return;
7966 
7967 	update_curr(cfs_rq_of(cfs_rq->curr));
7968 }
7969 
7970 /*
7971  * The enqueue_task method is called before nr_running is
7972  * increased. Here we update the fair scheduling stats and
7973  * then put the task into the rbtree:
7974  */
7975 static void
7976 enqueue_task_fair(struct rq *rq, struct task_struct *p, int flags)
7977 {
7978 	int rq_h_nr_queued = rq->cfs.h_nr_queued;
7979 	int task_new = !(flags & ENQUEUE_WAKEUP);
7980 	struct sched_entity *se = &p->se;
7981 	struct cfs_rq *cfs_rq = &rq->cfs;
7982 	unsigned long weight;
7983 	bool curr;
7984 
7985 	if (task_is_throttled(p) && enqueue_throttled_task(p))
7986 		return;
7987 
7988 	/*
7989 	 * The code below (indirectly) updates schedutil which looks at
7990 	 * the cfs_rq utilization to select a frequency.
7991 	 * Let's add the task's estimated utilization to the cfs_rq's
7992 	 * estimated utilization, before we update schedutil.
7993 	 */
7994 	if (!p->se.sched_delayed || (flags & ENQUEUE_DELAYED))
7995 		util_est_enqueue(cfs_rq, p);
7996 
7997 	update_curr_eevdf(cfs_rq);
7998 
7999 	if (flags & ENQUEUE_DELAYED) {
8000 		requeue_delayed_entity(cfs_rq, se);
8001 		return;
8002 	}
8003 
8004 	/*
8005 	 * If in_iowait is set, the code below may not trigger any cpufreq
8006 	 * utilization updates, so do it here explicitly with the IOWAIT flag
8007 	 * passed.
8008 	 */
8009 	if (p->in_iowait)
8010 		cpufreq_update_util(rq, SCHED_CPUFREQ_IOWAIT);
8011 
8012 	/*
8013 	 * XXX comment on the curr thing
8014 	 */
8015 	curr = (cfs_rq->curr == se);
8016 	if (curr)
8017 		place_entity(cfs_rq, se, flags);
8018 
8019 	if (se->on_rq && se->sched_delayed)
8020 		requeue_delayed_entity(cfs_rq, se);
8021 
8022 	weight = enqueue_hierarchy(p, flags);
8023 
8024 	if (!curr) {
8025 		reweight_eevdf(cfs_rq, se, weight, false);
8026 		place_entity(cfs_rq, se, flags | ENQUEUE_QUEUED);
8027 		__enqueue_entity(cfs_rq, se);
8028 	}
8029 
8030 	if (!rq_h_nr_queued && rq->cfs.h_nr_queued)
8031 		dl_server_start(&rq->fair_server);
8032 
8033 	/* At this point se is NULL and we are at root level*/
8034 	add_nr_running(rq, 1);
8035 
8036 	/*
8037 	 * Since new tasks are assigned an initial util_avg equal to
8038 	 * half of the spare capacity of their CPU, tiny tasks have the
8039 	 * ability to cross the overutilized threshold, which will
8040 	 * result in the load balancer ruining all the task placement
8041 	 * done by EAS. As a way to mitigate that effect, do not account
8042 	 * for the first enqueue operation of new tasks during the
8043 	 * overutilized flag detection.
8044 	 *
8045 	 * A better way of solving this problem would be to wait for
8046 	 * the PELT signals of tasks to converge before taking them
8047 	 * into account, but that is not straightforward to implement,
8048 	 * and the following generally works well enough in practice.
8049 	 */
8050 	if (!task_new)
8051 		check_update_overutilized_status(rq);
8052 
8053 	assert_list_leaf_cfs_rq(rq);
8054 
8055 	hrtick_update(rq);
8056 }
8057 
8058 static void dequeue_hierarchy(struct task_struct *p, int flags)
8059 {
8060 	struct sched_entity *se = &p->se;
8061 	bool task_sleep = flags & DEQUEUE_SLEEP;
8062 	bool task_delayed = flags & DEQUEUE_DELAYED;
8063 	bool task_throttled = flags & DEQUEUE_THROTTLE;
8064 	int h_nr_runnable = 0;
8065 	int h_nr_idle = task_has_idle_policy(p);
8066 	bool dequeue = true;
8067 
8068 	if (task_sleep || task_delayed || !se->sched_delayed)
8069 		h_nr_runnable = 1;
8070 
8071 	for_each_sched_entity(se) {
8072 		struct cfs_rq *cfs_rq = cfs_rq_of(se);
8073 
8074 		update_curr(cfs_rq);
8075 
8076 		if (dequeue) {
8077 			dequeue_entity(cfs_rq, se, flags);
8078 			/* Don't dequeue parent if it has other entities besides us */
8079 			if (cfs_rq->load.weight)
8080 				dequeue = false;
8081 		} else {
8082 			update_load_avg(cfs_rq, se, UPDATE_TG);
8083 			se_update_runnable(se);
8084 			update_cfs_group(se);
8085 		}
8086 
8087 		cfs_rq->h_nr_runnable -= h_nr_runnable;
8088 		cfs_rq->h_nr_queued--;
8089 		cfs_rq->h_nr_idle -= h_nr_idle;
8090 
8091 		if (cfs_rq_is_idle(cfs_rq))
8092 			h_nr_idle = 1;
8093 
8094 		if (throttled_hierarchy(cfs_rq) && task_throttled)
8095 			record_throttle_clock(cfs_rq);
8096 
8097 		flags |= DEQUEUE_SLEEP;
8098 		flags &= ~(DEQUEUE_DELAYED | DEQUEUE_SPECIAL);
8099 	}
8100 }
8101 
8102 /*
8103  * The part of dequeue_task_fair() that is needed to dequeue delayed tasks.
8104  *
8105  * Returns:
8106  *   true  - dequeued
8107  *   false - delayed
8108  */
8109 static bool __dequeue_task(struct rq *rq, struct task_struct *p, int flags)
8110 {
8111 	struct sched_entity *se = &p->se;
8112 	struct cfs_rq *cfs_rq = &rq->cfs;
8113 	bool was_sched_idle = sched_idle_rq(rq);
8114 	bool task_sleep = flags & DEQUEUE_SLEEP;
8115 	bool task_delayed = flags & DEQUEUE_DELAYED;
8116 
8117 	clear_buddies(cfs_rq, se);
8118 
8119 	update_curr_eevdf(cfs_rq);
8120 	update_entity_lag(cfs_rq, se);
8121 
8122 	if (flags & DEQUEUE_DELAYED) {
8123 		WARN_ON_ONCE(!se->sched_delayed);
8124 	} else {
8125 		bool delay = task_sleep;
8126 		/*
8127 		 * DELAY_DEQUEUE relies on spurious wakeups, special task
8128 		 * states must not suffer spurious wakeups, excempt them.
8129 		 */
8130 		if (flags & (DEQUEUE_SPECIAL | DEQUEUE_THROTTLE))
8131 			delay = false;
8132 
8133 		WARN_ON_ONCE(delay && se->sched_delayed);
8134 
8135 		if (sched_feat(DELAY_DEQUEUE) && delay &&
8136 		    !entity_eligible(cfs_rq, se)) {
8137 			update_load_avg(cfs_rq_of(se), se, UPDATE_UTIL_EST);
8138 			set_delayed(se);
8139 			return false;
8140 		}
8141 	}
8142 
8143 	dequeue_hierarchy(p, flags);
8144 
8145 	if (sched_feat(PLACE_REL_DEADLINE) && !task_sleep) {
8146 		se->deadline -= se->vruntime;
8147 		se->rel_deadline = 1;
8148 	}
8149 	if (se != cfs_rq->curr)
8150 		__dequeue_entity(cfs_rq, se);
8151 
8152 	sub_nr_running(rq, 1);
8153 
8154 	/* balance early to pull high priority tasks */
8155 	if (unlikely(!was_sched_idle && sched_idle_rq(rq)))
8156 		rq->next_balance = jiffies;
8157 
8158 	if (task_delayed) {
8159 		clear_delayed(se);
8160 
8161 		WARN_ON_ONCE(!task_sleep);
8162 		WARN_ON_ONCE(p->on_rq != 1);
8163 
8164 		/*
8165 		 * Fix-up what block_task() skipped.
8166 		 *
8167 		 * Must be last, @p might not be valid after this.
8168 		 */
8169 		__block_task(rq, p);
8170 	}
8171 
8172 	return true;
8173 }
8174 
8175 /*
8176  * The dequeue_task method is called before nr_running is
8177  * decreased. We remove the task from the rbtree and
8178  * update the fair scheduling stats:
8179  */
8180 static bool dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
8181 {
8182 	if (task_is_throttled(p)) {
8183 		dequeue_throttled_task(p, flags);
8184 		return true;
8185 	}
8186 
8187 	if (!p->se.sched_delayed)
8188 		util_est_dequeue(&rq->cfs, p);
8189 
8190 	if (!__dequeue_task(rq, p, flags))
8191 		return false;
8192 
8193 	/*
8194 	 * Must not reference @p after __dequeue_task(DEQUEUE_DELAYED).
8195 	 */
8196 	return true;
8197 }
8198 
8199 static inline unsigned int cfs_h_nr_delayed(struct rq *rq)
8200 {
8201 	return (rq->cfs.h_nr_queued - rq->cfs.h_nr_runnable);
8202 }
8203 
8204 /* Working cpumask for: sched_balance_rq(), sched_balance_newidle(). */
8205 static DEFINE_PER_CPU(cpumask_var_t, load_balance_mask);
8206 static DEFINE_PER_CPU(cpumask_var_t, select_rq_mask);
8207 static DEFINE_PER_CPU(cpumask_var_t, should_we_balance_tmpmask);
8208 
8209 #ifdef CONFIG_NO_HZ_COMMON
8210 
8211 static struct {
8212 	cpumask_var_t idle_cpus_mask;
8213 	int has_blocked_load;		/* Idle CPUS has blocked load */
8214 	int needs_update;		/* Newly idle CPUs need their next_balance collated */
8215 	unsigned long next_balance;     /* in jiffy units */
8216 	unsigned long next_blocked;	/* Next update of blocked load in jiffies */
8217 } nohz ____cacheline_aligned;
8218 
8219 #endif /* CONFIG_NO_HZ_COMMON */
8220 
8221 static unsigned long cpu_load(struct rq *rq)
8222 {
8223 	return cfs_rq_load_avg(&rq->cfs);
8224 }
8225 
8226 /*
8227  * cpu_load_without - compute CPU load without any contributions from *p
8228  * @cpu: the CPU which load is requested
8229  * @p: the task which load should be discounted
8230  *
8231  * The load of a CPU is defined by the load of tasks currently enqueued on that
8232  * CPU as well as tasks which are currently sleeping after an execution on that
8233  * CPU.
8234  *
8235  * This method returns the load of the specified CPU by discounting the load of
8236  * the specified task, whenever the task is currently contributing to the CPU
8237  * load.
8238  */
8239 static unsigned long cpu_load_without(struct rq *rq, struct task_struct *p)
8240 {
8241 	struct cfs_rq *cfs_rq;
8242 	unsigned int load;
8243 
8244 	/* Task has no contribution or is new */
8245 	if (cpu_of(rq) != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
8246 		return cpu_load(rq);
8247 
8248 	cfs_rq = &rq->cfs;
8249 	load = READ_ONCE(cfs_rq->avg.load_avg);
8250 
8251 	/* Discount task's util from CPU's util */
8252 	lsub_positive(&load, task_h_load(p));
8253 
8254 	return load;
8255 }
8256 
8257 static unsigned long cpu_runnable(struct rq *rq)
8258 {
8259 	return cfs_rq_runnable_avg(&rq->cfs);
8260 }
8261 
8262 static unsigned long cpu_runnable_without(struct rq *rq, struct task_struct *p)
8263 {
8264 	struct cfs_rq *cfs_rq;
8265 	unsigned int runnable;
8266 
8267 	/* Task has no contribution or is new */
8268 	if (cpu_of(rq) != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
8269 		return cpu_runnable(rq);
8270 
8271 	cfs_rq = &rq->cfs;
8272 	runnable = READ_ONCE(cfs_rq->avg.runnable_avg);
8273 
8274 	/* Discount task's runnable from CPU's runnable */
8275 	lsub_positive(&runnable, p->se.avg.runnable_avg);
8276 
8277 	return runnable;
8278 }
8279 
8280 static unsigned long capacity_of(int cpu)
8281 {
8282 	return cpu_rq(cpu)->cpu_capacity;
8283 }
8284 
8285 static void record_wakee(struct task_struct *p)
8286 {
8287 	/*
8288 	 * Only decay a single time; tasks that have less then 1 wakeup per
8289 	 * jiffy will not have built up many flips.
8290 	 */
8291 	if (time_after(jiffies, current->wakee_flip_decay_ts + HZ)) {
8292 		current->wakee_flips >>= 1;
8293 		current->wakee_flip_decay_ts = jiffies;
8294 	}
8295 
8296 	if (current->last_wakee != p) {
8297 		current->last_wakee = p;
8298 		current->wakee_flips++;
8299 	}
8300 }
8301 
8302 /*
8303  * Detect M:N waker/wakee relationships via a switching-frequency heuristic.
8304  *
8305  * A waker of many should wake a different task than the one last awakened
8306  * at a frequency roughly N times higher than one of its wakees.
8307  *
8308  * In order to determine whether we should let the load spread vs consolidating
8309  * to shared cache, we look for a minimum 'flip' frequency of llc_size in one
8310  * partner, and a factor of lls_size higher frequency in the other.
8311  *
8312  * With both conditions met, we can be relatively sure that the relationship is
8313  * non-monogamous, with partner count exceeding socket size.
8314  *
8315  * Waker/wakee being client/server, worker/dispatcher, interrupt source or
8316  * whatever is irrelevant, spread criteria is apparent partner count exceeds
8317  * socket size.
8318  */
8319 static int wake_wide(struct task_struct *p)
8320 {
8321 	unsigned int master = current->wakee_flips;
8322 	unsigned int slave = p->wakee_flips;
8323 	int factor = __this_cpu_read(sd_llc_size);
8324 
8325 	if (master < slave)
8326 		swap(master, slave);
8327 	if (slave < factor || master < slave * factor)
8328 		return 0;
8329 	return 1;
8330 }
8331 
8332 /*
8333  * The purpose of wake_affine() is to quickly determine on which CPU we can run
8334  * soonest. For the purpose of speed we only consider the waking and previous
8335  * CPU.
8336  *
8337  * wake_affine_idle() - only considers 'now', it check if the waking CPU is
8338  *			cache-affine and is (or	will be) idle.
8339  *
8340  * wake_affine_weight() - considers the weight to reflect the average
8341  *			  scheduling latency of the CPUs. This seems to work
8342  *			  for the overloaded case.
8343  */
8344 static int
8345 wake_affine_idle(int this_cpu, int prev_cpu, int sync)
8346 {
8347 	/*
8348 	 * If this_cpu is idle, it implies the wakeup is from interrupt
8349 	 * context. Only allow the move if cache is shared. Otherwise an
8350 	 * interrupt intensive workload could force all tasks onto one
8351 	 * node depending on the IO topology or IRQ affinity settings.
8352 	 *
8353 	 * If the prev_cpu is idle and cache affine then avoid a migration.
8354 	 * There is no guarantee that the cache hot data from an interrupt
8355 	 * is more important than cache hot data on the prev_cpu and from
8356 	 * a cpufreq perspective, it's better to have higher utilisation
8357 	 * on one CPU.
8358 	 */
8359 	if (available_idle_cpu(this_cpu) && cpus_share_cache(this_cpu, prev_cpu))
8360 		return available_idle_cpu(prev_cpu) ? prev_cpu : this_cpu;
8361 
8362 	if (sync) {
8363 		struct rq *rq = cpu_rq(this_cpu);
8364 
8365 		if ((rq->nr_running - cfs_h_nr_delayed(rq)) == 1)
8366 			return this_cpu;
8367 	}
8368 
8369 	if (available_idle_cpu(prev_cpu))
8370 		return prev_cpu;
8371 
8372 	return nr_cpumask_bits;
8373 }
8374 
8375 static int
8376 wake_affine_weight(struct sched_domain *sd, struct task_struct *p,
8377 		   int this_cpu, int prev_cpu, int sync)
8378 {
8379 	s64 this_eff_load, prev_eff_load;
8380 	unsigned long task_load;
8381 
8382 	this_eff_load = cpu_load(cpu_rq(this_cpu));
8383 
8384 	if (sync) {
8385 		unsigned long current_load = task_h_load(current);
8386 
8387 		if (current_load > this_eff_load)
8388 			return this_cpu;
8389 
8390 		this_eff_load -= current_load;
8391 	}
8392 
8393 	task_load = task_h_load(p);
8394 
8395 	this_eff_load += task_load;
8396 	if (sched_feat(WA_BIAS))
8397 		this_eff_load *= 100;
8398 	this_eff_load *= capacity_of(prev_cpu);
8399 
8400 	prev_eff_load = cpu_load(cpu_rq(prev_cpu));
8401 	prev_eff_load -= task_load;
8402 	if (sched_feat(WA_BIAS))
8403 		prev_eff_load *= 100 + (sd->imbalance_pct - 100) / 2;
8404 	prev_eff_load *= capacity_of(this_cpu);
8405 
8406 	/*
8407 	 * If sync, adjust the weight of prev_eff_load such that if
8408 	 * prev_eff == this_eff that select_idle_sibling() will consider
8409 	 * stacking the wakee on top of the waker if no other CPU is
8410 	 * idle.
8411 	 */
8412 	if (sync)
8413 		prev_eff_load += 1;
8414 
8415 	return this_eff_load < prev_eff_load ? this_cpu : nr_cpumask_bits;
8416 }
8417 
8418 static int wake_affine(struct sched_domain *sd, struct task_struct *p,
8419 		       int this_cpu, int prev_cpu, int sync)
8420 {
8421 	int target = nr_cpumask_bits;
8422 
8423 	if (sched_feat(WA_IDLE))
8424 		target = wake_affine_idle(this_cpu, prev_cpu, sync);
8425 
8426 	if (sched_feat(WA_WEIGHT) && target == nr_cpumask_bits)
8427 		target = wake_affine_weight(sd, p, this_cpu, prev_cpu, sync);
8428 
8429 	schedstat_inc(p->stats.nr_wakeups_affine_attempts);
8430 	if (target != this_cpu)
8431 		return prev_cpu;
8432 
8433 	schedstat_inc(sd->ttwu_move_affine);
8434 	schedstat_inc(p->stats.nr_wakeups_affine);
8435 	return target;
8436 }
8437 
8438 static struct sched_group *
8439 sched_balance_find_dst_group(struct sched_domain *sd, struct task_struct *p, int this_cpu);
8440 
8441 /*
8442  * sched_balance_find_dst_group_cpu - find the idlest CPU among the CPUs in the group.
8443  */
8444 static int
8445 sched_balance_find_dst_group_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
8446 {
8447 	unsigned long load, min_load = ULONG_MAX;
8448 	unsigned int min_exit_latency = UINT_MAX;
8449 	u64 latest_idle_timestamp = 0;
8450 	int least_loaded_cpu = this_cpu;
8451 	int shallowest_idle_cpu = -1;
8452 	int i;
8453 
8454 	/* Check if we have any choice: */
8455 	if (group->group_weight == 1)
8456 		return cpumask_first(sched_group_span(group));
8457 
8458 	/* Traverse only the allowed CPUs */
8459 	for_each_cpu_and(i, sched_group_span(group), p->cpus_ptr) {
8460 		struct rq *rq = cpu_rq(i);
8461 
8462 		if (!sched_core_cookie_match(rq, p))
8463 			continue;
8464 
8465 		if (choose_sched_idle_rq(rq, p))
8466 			return i;
8467 
8468 		if (available_idle_cpu(i)) {
8469 			struct cpuidle_state *idle = idle_get_state(rq);
8470 			if (idle && idle->exit_latency < min_exit_latency) {
8471 				/*
8472 				 * We give priority to a CPU whose idle state
8473 				 * has the smallest exit latency irrespective
8474 				 * of any idle timestamp.
8475 				 */
8476 				min_exit_latency = idle->exit_latency;
8477 				latest_idle_timestamp = rq->idle_stamp;
8478 				shallowest_idle_cpu = i;
8479 			} else if ((!idle || idle->exit_latency == min_exit_latency) &&
8480 				   rq->idle_stamp > latest_idle_timestamp) {
8481 				/*
8482 				 * If equal or no active idle state, then
8483 				 * the most recently idled CPU might have
8484 				 * a warmer cache.
8485 				 */
8486 				latest_idle_timestamp = rq->idle_stamp;
8487 				shallowest_idle_cpu = i;
8488 			}
8489 		} else if (shallowest_idle_cpu == -1) {
8490 			load = cpu_load(cpu_rq(i));
8491 			if (load < min_load) {
8492 				min_load = load;
8493 				least_loaded_cpu = i;
8494 			}
8495 		}
8496 	}
8497 
8498 	return shallowest_idle_cpu != -1 ? shallowest_idle_cpu : least_loaded_cpu;
8499 }
8500 
8501 static inline int sched_balance_find_dst_cpu(struct sched_domain *sd, struct task_struct *p,
8502 				  int cpu, int prev_cpu, int sd_flag)
8503 {
8504 	int new_cpu = cpu;
8505 
8506 	if (!cpumask_intersects(sched_domain_span(sd), p->cpus_ptr))
8507 		return prev_cpu;
8508 
8509 	/*
8510 	 * We need task's util for cpu_util_without, sync it up to
8511 	 * prev_cpu's last_update_time.
8512 	 */
8513 	if (!(sd_flag & SD_BALANCE_FORK))
8514 		sync_entity_load_avg(&p->se);
8515 
8516 	while (sd) {
8517 		struct sched_group *group;
8518 		struct sched_domain *tmp;
8519 		int weight;
8520 
8521 		if (!(sd->flags & sd_flag)) {
8522 			sd = sd->child;
8523 			continue;
8524 		}
8525 
8526 		group = sched_balance_find_dst_group(sd, p, cpu);
8527 		if (!group) {
8528 			sd = sd->child;
8529 			continue;
8530 		}
8531 
8532 		new_cpu = sched_balance_find_dst_group_cpu(group, p, cpu);
8533 		if (new_cpu == cpu) {
8534 			/* Now try balancing at a lower domain level of 'cpu': */
8535 			sd = sd->child;
8536 			continue;
8537 		}
8538 
8539 		/* Now try balancing at a lower domain level of 'new_cpu': */
8540 		cpu = new_cpu;
8541 		weight = sd->span_weight;
8542 		sd = NULL;
8543 		for_each_domain(cpu, tmp) {
8544 			if (weight <= tmp->span_weight)
8545 				break;
8546 			if (tmp->flags & sd_flag)
8547 				sd = tmp;
8548 		}
8549 	}
8550 
8551 	return new_cpu;
8552 }
8553 
8554 static inline int __select_idle_cpu(int cpu, struct task_struct *p)
8555 {
8556 	if (choose_idle_cpu(cpu, p) && sched_cpu_cookie_match(cpu_rq(cpu), p))
8557 		return cpu;
8558 
8559 	return -1;
8560 }
8561 
8562 DEFINE_STATIC_KEY_FALSE(sched_smt_present);
8563 EXPORT_SYMBOL_GPL(sched_smt_present);
8564 
8565 static inline void set_idle_cores(int cpu, int val)
8566 {
8567 	struct sched_domain_shared *sds;
8568 
8569 	sds = rcu_dereference_all(per_cpu(sd_balance_shared, cpu));
8570 	if (sds)
8571 		WRITE_ONCE(sds->has_idle_cores, val);
8572 }
8573 
8574 static inline bool test_idle_cores(int cpu)
8575 {
8576 	struct sched_domain_shared *sds;
8577 
8578 	sds = rcu_dereference_all(per_cpu(sd_balance_shared, cpu));
8579 	if (sds)
8580 		return READ_ONCE(sds->has_idle_cores);
8581 
8582 	return false;
8583 }
8584 
8585 /*
8586  * Scans the local SMT mask to see if the entire core is idle, and records this
8587  * information in sd_balance_shared->has_idle_cores.
8588  *
8589  * Since SMT siblings share all cache levels, inspecting this limited remote
8590  * state should be fairly cheap.
8591  */
8592 void __update_idle_core(struct rq *rq)
8593 {
8594 	int core = cpu_of(rq);
8595 	int cpu;
8596 
8597 	rcu_read_lock();
8598 	if (test_idle_cores(core))
8599 		goto unlock;
8600 
8601 	for_each_cpu(cpu, cpu_smt_mask(core)) {
8602 		if (cpu == core)
8603 			continue;
8604 
8605 		if (!available_idle_cpu(cpu))
8606 			goto unlock;
8607 	}
8608 
8609 	set_idle_cores(core, 1);
8610 unlock:
8611 	rcu_read_unlock();
8612 }
8613 
8614 /*
8615  * Scan the entire LLC domain for idle cores; this dynamically switches off if
8616  * there are no idle cores left in the system; tracked through
8617  * sd_balance_shared->has_idle_cores and enabled through update_idle_core()
8618  * above.
8619  */
8620 static int select_idle_core(struct task_struct *p, int core, struct cpumask *cpus, int *idle_cpu)
8621 {
8622 	bool idle = true;
8623 	int cpu;
8624 
8625 	for_each_cpu(cpu, cpu_smt_mask(core)) {
8626 		if (!available_idle_cpu(cpu)) {
8627 			idle = false;
8628 			if (*idle_cpu == -1) {
8629 				if (choose_sched_idle_rq(cpu_rq(cpu), p) &&
8630 				    cpumask_test_cpu(cpu, cpus)) {
8631 					*idle_cpu = cpu;
8632 					break;
8633 				}
8634 				continue;
8635 			}
8636 			break;
8637 		}
8638 		if (*idle_cpu == -1 && cpumask_test_cpu(cpu, cpus))
8639 			*idle_cpu = cpu;
8640 	}
8641 
8642 	if (idle)
8643 		return core;
8644 
8645 	cpumask_andnot(cpus, cpus, cpu_smt_mask(core));
8646 	return -1;
8647 }
8648 
8649 /*
8650  * Scan the local SMT mask for idle CPUs.
8651  */
8652 static int select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target)
8653 {
8654 	int cpu;
8655 
8656 	for_each_cpu_and(cpu, cpu_smt_mask(target), p->cpus_ptr) {
8657 		if (cpu == target)
8658 			continue;
8659 		/*
8660 		 * Check if the CPU is in the LLC scheduling domain of @target.
8661 		 * Due to isolcpus, there is no guarantee that all the siblings are in the domain.
8662 		 */
8663 		if (!cpumask_test_cpu(cpu, sched_domain_span(sd)))
8664 			continue;
8665 		if (choose_idle_cpu(cpu, p))
8666 			return cpu;
8667 	}
8668 
8669 	return -1;
8670 }
8671 
8672 /*
8673  * Scan the LLC domain for idle CPUs; this is dynamically regulated by
8674  * comparing the average scan cost (tracked in sd->avg_scan_cost) against the
8675  * average idle time for this rq (as found in rq->avg_idle).
8676  */
8677 static int select_idle_cpu(struct task_struct *p, struct sched_domain *sd, bool has_idle_core, int target)
8678 {
8679 	struct cpumask *cpus = this_cpu_cpumask_var_ptr(select_rq_mask);
8680 	int i, cpu, idle_cpu = -1, nr = INT_MAX;
8681 
8682 	if (sched_feat(SIS_UTIL) && sd->shared) {
8683 		/*
8684 		 * Increment because !--nr is the condition to stop scan.
8685 		 *
8686 		 * Since "sd" is "sd_llc" for target CPU dereferenced in the
8687 		 * caller, it is safe to directly dereference "sd->shared".
8688 		 * Topology bits always ensure it assigned for "sd_llc" abd it
8689 		 * cannot disappear as long as we have a RCU protected
8690 		 * reference to one the associated "sd" here.
8691 		 */
8692 		nr = READ_ONCE(sd->shared->nr_idle_scan) + 1;
8693 		/* overloaded LLC is unlikely to have idle cpu/core */
8694 		if (nr == 1)
8695 			return -1;
8696 	}
8697 
8698 	if (!cpumask_and(cpus, sched_domain_span(sd), p->cpus_ptr))
8699 		return -1;
8700 
8701 	if (static_branch_unlikely(&sched_cluster_active)) {
8702 		struct sched_group *sg = sd->groups;
8703 
8704 		if (sg->flags & SD_CLUSTER) {
8705 			for_each_cpu_wrap(cpu, sched_group_span(sg), target + 1) {
8706 				if (!cpumask_test_cpu(cpu, cpus))
8707 					continue;
8708 
8709 				if (has_idle_core) {
8710 					i = select_idle_core(p, cpu, cpus, &idle_cpu);
8711 					if ((unsigned int)i < nr_cpumask_bits)
8712 						return i;
8713 				} else {
8714 					if (--nr <= 0)
8715 						return -1;
8716 					idle_cpu = __select_idle_cpu(cpu, p);
8717 					if ((unsigned int)idle_cpu < nr_cpumask_bits)
8718 						return idle_cpu;
8719 				}
8720 			}
8721 			cpumask_andnot(cpus, cpus, sched_group_span(sg));
8722 		}
8723 	}
8724 
8725 	for_each_cpu_wrap(cpu, cpus, target + 1) {
8726 		if (has_idle_core) {
8727 			i = select_idle_core(p, cpu, cpus, &idle_cpu);
8728 			if ((unsigned int)i < nr_cpumask_bits)
8729 				return i;
8730 
8731 		} else {
8732 			if (--nr <= 0)
8733 				return -1;
8734 			idle_cpu = __select_idle_cpu(cpu, p);
8735 			if ((unsigned int)idle_cpu < nr_cpumask_bits)
8736 				break;
8737 		}
8738 	}
8739 
8740 	if (has_idle_core)
8741 		set_idle_cores(target, false);
8742 
8743 	return idle_cpu;
8744 }
8745 
8746 /*
8747  * Idle-capacity scan converts util_fits_cpu() outcomes into preference ranks,
8748  * where lower values indicate a better fit - see select_idle_capacity().
8749  *
8750  * A CPU that both fits the task and sits on a fully-idle SMT core is returned
8751  * immediately and is never assigned one of these ranks. On !SMT every CPU is
8752  * its own "core", so the early return covers all fits-and-idle cases and the
8753  * core-tier ranks below become unreachable.
8754  *
8755  *   Rank                            Val  Tier    Meaning
8756  *   ------------------------------  ---  ------  ---------------------------
8757  *   ASYM_IDLE_UCLAMP_MISFIT         -4   core    Idle core; capacity fits
8758  *                                                util but uclamp_min misses.
8759  *   ASYM_IDLE_COMPLETE_MISFIT       -3   core    Idle core; capacity does
8760  *                                                not fit. Still beats every
8761  *                                                thread-tier rank: a busy
8762  *                                                sibling cuts effective
8763  *                                                capacity more than a
8764  *                                                misfit hurts a quiet core.
8765  *   ASYM_IDLE_THREAD_FITS           -2   thread  Busy SMT sibling; capacity
8766  *                                                fits util + uclamp.
8767  *   ASYM_IDLE_THREAD_UCLAMP_MISFIT  -1   thread  Busy SMT sibling; capacity
8768  *                                                fits but uclamp_min misses
8769  *                                                (native util_fits_cpu()
8770  *                                                return value).
8771  *   ASYM_IDLE_THREAD_MISFIT          0   thread  Busy SMT sibling; capacity
8772  *                                                does not fit.
8773  *
8774  * ASYM_IDLE_CORE_BIAS (-3) is an offset, not a state. On an idle core,
8775  * fits += ASYM_IDLE_CORE_BIAS rebases thread-tier ranks into the core tier:
8776  *
8777  *   ASYM_IDLE_THREAD_UCLAMP_MISFIT (-1) + BIAS -> ASYM_IDLE_UCLAMP_MISFIT   (-4)
8778  *   ASYM_IDLE_THREAD_MISFIT         (0) + BIAS -> ASYM_IDLE_COMPLETE_MISFIT (-3)
8779  *
8780  * ASYM_IDLE_THREAD_FITS (-2) is never rebased because a fully-fitting idle-core
8781  * candidate early-returns from select_idle_capacity().
8782  */
8783 enum asym_fits_state {
8784 	ASYM_IDLE_UCLAMP_MISFIT = -4,
8785 	ASYM_IDLE_COMPLETE_MISFIT,
8786 	ASYM_IDLE_THREAD_FITS,
8787 	ASYM_IDLE_THREAD_UCLAMP_MISFIT,
8788 	ASYM_IDLE_THREAD_MISFIT,
8789 
8790 	/* util_fits_cpu() bias for idle core */
8791 	ASYM_IDLE_CORE_BIAS = -3,
8792 };
8793 
8794 /*
8795  * Scan the asym_capacity domain for idle CPUs; pick the first idle one on which
8796  * the task fits. If no CPU is big enough, but there are idle ones, try to
8797  * maximize capacity.
8798  */
8799 static int
8800 select_idle_capacity(struct task_struct *p, struct sched_domain *sd, int target)
8801 {
8802 	/*
8803 	 * On !SMT systems, has_idle_core is always false and preferred_core
8804 	 * is always true (CPU == core), so the SMT preference logic below
8805 	 * collapses to the plain capacity scan.
8806 	 */
8807 	bool has_idle_core = sched_smt_active() && test_idle_cores(target);
8808 	unsigned long task_util, util_min, util_max, best_cap = 0;
8809 	int fits, best_fits = ASYM_IDLE_THREAD_MISFIT;
8810 	int cpu, best_cpu = -1;
8811 	struct cpumask *cpus;
8812 	int nr = INT_MAX;
8813 
8814 	cpus = this_cpu_cpumask_var_ptr(select_rq_mask);
8815 	cpumask_and(cpus, sched_domain_span(sd), p->cpus_ptr);
8816 
8817 	task_util = task_util_est(p);
8818 	util_min = uclamp_eff_value(p, UCLAMP_MIN);
8819 	util_max = uclamp_eff_value(p, UCLAMP_MAX);
8820 
8821 	if (sched_feat(SIS_UTIL) && sd->shared) {
8822 		/*
8823 		 * Same nr_idle_scan hint as select_idle_cpu(), nr only limits
8824 		 * the scan when not preferring an idle core.
8825 		 */
8826 		nr = READ_ONCE(sd->shared->nr_idle_scan) + 1;
8827 		/* overloaded domain is unlikely to have idle cpu/core */
8828 		if (nr == 1)
8829 			return -1;
8830 	}
8831 
8832 	for_each_cpu_wrap(cpu, cpus, target) {
8833 		bool preferred_core = !has_idle_core || is_core_idle(cpu);
8834 		unsigned long cpu_cap = capacity_of(cpu);
8835 
8836 		/*
8837 		 * Stop when the nr_idle_scan is exhausted (mirrors
8838 		 * select_idle_cpu() logic).
8839 		 */
8840 		if (!has_idle_core && --nr <= 0)
8841 			return best_cpu;
8842 
8843 		if (!choose_idle_cpu(cpu, p))
8844 			continue;
8845 
8846 		fits = util_fits_cpu(task_util, util_min, util_max, cpu);
8847 
8848 		/*
8849 		 * Perfect fit: capacity satisfies util + uclamp and the CPU
8850 		 * sits on a fully-idle SMT core, this is a !SMT system, or
8851 		 * there is no idle core to find.
8852 		 * Short-circuit the rank-based selection and return
8853 		 * immediately.
8854 		 */
8855 		if (fits > 0 && preferred_core)
8856 			return cpu;
8857 		/*
8858 		 * Only the min performance hint (i.e. uclamp_min) doesn't fit.
8859 		 * Look for the CPU with best capacity.
8860 		 */
8861 		else if (fits < 0)
8862 			cpu_cap = get_actual_cpu_capacity(cpu);
8863 		/*
8864 		 * fits > 0 implies we are not on a preferred core, but the util
8865 		 * fits CPU capacity. Set fits to ASYM_IDLE_THREAD_FITS
8866 		 * so the effective range becomes
8867 		 * [ASYM_IDLE_THREAD_FITS, ASYM_IDLE_THREAD_MISFIT], where:
8868 		 *    ASYM_IDLE_THREAD_MISFIT - does not fit
8869 		 *    ASYM_IDLE_THREAD_UCLAMP_MISFIT - fits with the exception of UCLAMP_MIN
8870 		 *    ASYM_IDLE_THREAD_FITS - fits with the exception of preferred_core
8871 		 */
8872 		else if (fits > 0)
8873 			fits = ASYM_IDLE_THREAD_FITS;
8874 
8875 		/*
8876 		 * If we are on a preferred core, translate the range of fits
8877 		 * of [ASYM_IDLE_THREAD_UCLAMP_MISFIT, ASYM_IDLE_THREAD_MISFIT] to
8878 		 * [ASYM_IDLE_UCLAMP_MISFIT, ASYM_IDLE_COMPLETE_MISFIT].
8879 		 * This ensures that an idle core is always given priority over
8880 		 * (partially) busy core.
8881 		 *
8882 		 * A fully fitting idle core would have returned early and hence
8883 		 * fits > 0 for preferred_core need not be dealt with.
8884 		 */
8885 		if (preferred_core)
8886 			fits += ASYM_IDLE_CORE_BIAS;
8887 
8888 		/*
8889 		 * First, select CPU which fits better (lower is more preferred).
8890 		 * Then, select the one with best capacity at same level.
8891 		 */
8892 		if ((fits < best_fits) ||
8893 		    ((fits == best_fits) && (cpu_cap > best_cap))) {
8894 			best_cap = cpu_cap;
8895 			best_cpu = cpu;
8896 			best_fits = fits;
8897 		}
8898 	}
8899 
8900 	/*
8901 	 * A value in the [ASYM_IDLE_UCLAMP_MISFIT, ASYM_IDLE_COMPLETE_MISFIT]
8902 	 * range means the chosen CPU is in a fully idle SMT core. Values above
8903 	 * ASYM_IDLE_COMPLETE_MISFIT mean we never ranked such a CPU best.
8904 	 *
8905 	 * The asym-capacity wakeup path returns from select_idle_sibling()
8906 	 * after this function and never runs select_idle_cpu(), so the usual
8907 	 * select_idle_cpu() tail that clears idle cores must live here when the
8908 	 * idle-core preference did not win.
8909 	 */
8910 	if (has_idle_core && best_fits > ASYM_IDLE_COMPLETE_MISFIT)
8911 		set_idle_cores(target, false);
8912 
8913 	return best_cpu;
8914 }
8915 
8916 static inline bool asym_fits_cpu(unsigned long util,
8917 				 unsigned long util_min,
8918 				 unsigned long util_max,
8919 				 int cpu)
8920 {
8921 	if (sched_asym_cpucap_active()) {
8922 		/*
8923 		 * Return true only if the cpu fully fits the task requirements
8924 		 * which include the utilization and the performance hints.
8925 		 *
8926 		 * When SMT is active, also require that the core has no busy
8927 		 * siblings.
8928 		 *
8929 		 * Note: gating on is_core_idle() also makes the early-bailout
8930 		 * candidates in select_idle_sibling() (target, prev,
8931 		 * recent_used_cpu) idle-core-aware on ASYM+SMT, which the
8932 		 * NO_ASYM path does not do.
8933 		 */
8934 		return (!sched_smt_active() || is_core_idle(cpu)) &&
8935 		       (util_fits_cpu(util, util_min, util_max, cpu) > 0);
8936 	}
8937 
8938 	return true;
8939 }
8940 
8941 /*
8942  * Try and locate an idle core/thread in the LLC cache domain.
8943  */
8944 static int select_idle_sibling(struct task_struct *p, int prev, int target)
8945 {
8946 	bool has_idle_core = false;
8947 	struct sched_domain *sd;
8948 	unsigned long task_util, util_min, util_max;
8949 	int i, recent_used_cpu, prev_aff = -1;
8950 
8951 	/*
8952 	 * On asymmetric system, update task utilization because we will check
8953 	 * that the task fits with CPU's capacity.
8954 	 */
8955 	if (sched_asym_cpucap_active()) {
8956 		sync_entity_load_avg(&p->se);
8957 		task_util = task_util_est(p);
8958 		util_min = uclamp_eff_value(p, UCLAMP_MIN);
8959 		util_max = uclamp_eff_value(p, UCLAMP_MAX);
8960 	}
8961 
8962 	/*
8963 	 * per-cpu select_rq_mask usage
8964 	 */
8965 	lockdep_assert_irqs_disabled();
8966 
8967 	if (choose_idle_cpu(target, p) &&
8968 	    asym_fits_cpu(task_util, util_min, util_max, target))
8969 		return target;
8970 
8971 	/*
8972 	 * If the previous CPU is cache affine and idle, don't be stupid:
8973 	 */
8974 	if (prev != target && cpus_share_cache(prev, target) &&
8975 	    choose_idle_cpu(prev, p) &&
8976 	    asym_fits_cpu(task_util, util_min, util_max, prev)) {
8977 
8978 		if (!static_branch_unlikely(&sched_cluster_active) ||
8979 		    cpus_share_resources(prev, target))
8980 			return prev;
8981 
8982 		prev_aff = prev;
8983 	}
8984 
8985 	/*
8986 	 * Allow a per-cpu kthread to stack with the wakee if the
8987 	 * kworker thread and the tasks previous CPUs are the same.
8988 	 * The assumption is that the wakee queued work for the
8989 	 * per-cpu kthread that is now complete and the wakeup is
8990 	 * essentially a sync wakeup. An obvious example of this
8991 	 * pattern is IO completions.
8992 	 */
8993 	if (is_per_cpu_kthread(current) &&
8994 	    in_task() &&
8995 	    prev == smp_processor_id() &&
8996 	    this_rq()->nr_running <= 1 &&
8997 	    asym_fits_cpu(task_util, util_min, util_max, prev)) {
8998 		return prev;
8999 	}
9000 
9001 	/* Check a recently used CPU as a potential idle candidate: */
9002 	recent_used_cpu = p->recent_used_cpu;
9003 	p->recent_used_cpu = prev;
9004 	if (recent_used_cpu != prev &&
9005 	    recent_used_cpu != target &&
9006 	    cpus_share_cache(recent_used_cpu, target) &&
9007 	    choose_idle_cpu(recent_used_cpu, p) &&
9008 	    cpumask_test_cpu(recent_used_cpu, p->cpus_ptr) &&
9009 	    asym_fits_cpu(task_util, util_min, util_max, recent_used_cpu)) {
9010 
9011 		if (!static_branch_unlikely(&sched_cluster_active) ||
9012 		    cpus_share_resources(recent_used_cpu, target))
9013 			return recent_used_cpu;
9014 
9015 	} else {
9016 		recent_used_cpu = -1;
9017 	}
9018 
9019 	/*
9020 	 * For asymmetric CPU capacity systems, our domain of interest is
9021 	 * sd_asym_cpucapacity rather than sd_llc.
9022 	 */
9023 	if (sched_asym_cpucap_active()) {
9024 		sd = rcu_dereference_all(per_cpu(sd_asym_cpucapacity, target));
9025 		/*
9026 		 * On an asymmetric CPU capacity system where an exclusive
9027 		 * cpuset defines a symmetric island (i.e. one unique
9028 		 * capacity_orig value through the cpuset), the key will be set
9029 		 * but the CPUs within that cpuset will not have a domain with
9030 		 * SD_ASYM_CPUCAPACITY. These should follow the usual symmetric
9031 		 * capacity path.
9032 		 */
9033 		if (sd) {
9034 			i = select_idle_capacity(p, sd, target);
9035 			return ((unsigned)i < nr_cpumask_bits) ? i : target;
9036 		}
9037 	}
9038 
9039 	sd = rcu_dereference_all(per_cpu(sd_llc, target));
9040 	if (!sd)
9041 		return target;
9042 
9043 	if (sched_smt_active()) {
9044 		has_idle_core = test_idle_cores(target);
9045 
9046 		if (!has_idle_core && cpus_share_cache(prev, target)) {
9047 			i = select_idle_smt(p, sd, prev);
9048 			if ((unsigned int)i < nr_cpumask_bits)
9049 				return i;
9050 		}
9051 	}
9052 
9053 	i = select_idle_cpu(p, sd, has_idle_core, target);
9054 	if ((unsigned)i < nr_cpumask_bits)
9055 		return i;
9056 
9057 	/*
9058 	 * For cluster machines which have lower sharing cache like L2 or
9059 	 * LLC Tag, we tend to find an idle CPU in the target's cluster
9060 	 * first. But prev_cpu or recent_used_cpu may also be a good candidate,
9061 	 * use them if possible when no idle CPU found in select_idle_cpu().
9062 	 */
9063 	if ((unsigned int)prev_aff < nr_cpumask_bits)
9064 		return prev_aff;
9065 	if ((unsigned int)recent_used_cpu < nr_cpumask_bits)
9066 		return recent_used_cpu;
9067 
9068 	return target;
9069 }
9070 
9071 /**
9072  * cpu_util() - Estimates the amount of CPU capacity used by CFS tasks.
9073  * @cpu: the CPU to get the utilization for
9074  * @p: task for which the CPU utilization should be predicted or NULL
9075  * @dst_cpu: CPU @p migrates to, -1 if @p moves from @cpu or @p == NULL
9076  * @boost: 1 to enable boosting, otherwise 0
9077  *
9078  * The unit of the return value must be the same as the one of CPU capacity
9079  * so that CPU utilization can be compared with CPU capacity.
9080  *
9081  * CPU utilization is the sum of running time of runnable tasks plus the
9082  * recent utilization of currently non-runnable tasks on that CPU.
9083  * It represents the amount of CPU capacity currently used by CFS tasks in
9084  * the range [0..max CPU capacity] with max CPU capacity being the CPU
9085  * capacity at f_max.
9086  *
9087  * The estimated CPU utilization is defined as the maximum between CPU
9088  * utilization and sum of the estimated utilization of the currently
9089  * runnable tasks on that CPU. It preserves a utilization "snapshot" of
9090  * previously-executed tasks, which helps better deduce how busy a CPU will
9091  * be when a long-sleeping task wakes up. The contribution to CPU utilization
9092  * of such a task would be significantly decayed at this point of time.
9093  *
9094  * Boosted CPU utilization is defined as max(CPU runnable, CPU utilization).
9095  * CPU contention for CFS tasks can be detected by CPU runnable > CPU
9096  * utilization. Boosting is implemented in cpu_util() so that internal
9097  * users (e.g. EAS) can use it next to external users (e.g. schedutil),
9098  * latter via cpu_util_cfs_boost().
9099  *
9100  * CPU utilization can be higher than the current CPU capacity
9101  * (f_curr/f_max * max CPU capacity) or even the max CPU capacity because
9102  * of rounding errors as well as task migrations or wakeups of new tasks.
9103  * CPU utilization has to be capped to fit into the [0..max CPU capacity]
9104  * range. Otherwise a group of CPUs (CPU0 util = 121% + CPU1 util = 80%)
9105  * could be seen as over-utilized even though CPU1 has 20% of spare CPU
9106  * capacity. CPU utilization is allowed to overshoot current CPU capacity
9107  * though since this is useful for predicting the CPU capacity required
9108  * after task migrations (scheduler-driven DVFS).
9109  *
9110  * Return: (Boosted) (estimated) utilization for the specified CPU.
9111  */
9112 static unsigned long
9113 cpu_util(int cpu, struct task_struct *p, int dst_cpu, int boost)
9114 {
9115 	bool add_task = p && task_cpu(p) != cpu && dst_cpu == cpu;
9116 	bool sub_task = p && task_cpu(p) == cpu && dst_cpu != cpu;
9117 	struct cfs_rq *cfs_rq = &cpu_rq(cpu)->cfs;
9118 	unsigned long util = READ_ONCE(cfs_rq->avg.util_avg);
9119 	unsigned long runnable;
9120 
9121 	/*
9122 	 * If @dst_cpu is -1 or @p migrates from @cpu to @dst_cpu remove its
9123 	 * contribution. If @p migrates from another CPU to @cpu add its
9124 	 * contribution. In all the other cases @cpu is not impacted by the
9125 	 * migration so its util_avg is already correct.
9126 	 */
9127 	if (add_task)
9128 		util += task_util(p);
9129 	else if (sub_task)
9130 		lsub_positive(&util, task_util(p));
9131 
9132 	if (boost) {
9133 		runnable = READ_ONCE(cfs_rq->avg.runnable_avg);
9134 		if (add_task)
9135 			runnable += READ_ONCE(p->se.avg.runnable_avg);
9136 		else if (sub_task)
9137 			lsub_positive(&runnable,
9138 				      READ_ONCE(p->se.avg.runnable_avg));
9139 		util = max(util, runnable);
9140 	}
9141 
9142 	if (sched_feat(UTIL_EST)) {
9143 		unsigned long util_est;
9144 
9145 		util_est = READ_ONCE(cfs_rq->avg.util_est);
9146 
9147 		/*
9148 		 * During wake-up @p isn't enqueued yet and doesn't contribute
9149 		 * to any cpu_rq(cpu)->cfs.avg.util_est.
9150 		 * If @dst_cpu == @cpu add it to "simulate" cpu_util after @p
9151 		 * has been enqueued.
9152 		 *
9153 		 * During exec (@dst_cpu = -1) @p is enqueued and does
9154 		 * contribute to cpu_rq(cpu)->cfs.util_est.
9155 		 * Remove it to "simulate" cpu_util without @p's contribution.
9156 		 *
9157 		 * Despite the task_on_rq_queued(@p) check there is still a
9158 		 * small window for a possible race when an exec
9159 		 * select_task_rq_fair() races with LB's detach_task().
9160 		 *
9161 		 *   detach_task()
9162 		 *     deactivate_task()
9163 		 *       p->on_rq = TASK_ON_RQ_MIGRATING;
9164 		 *       -------------------------------- A
9165 		 *       dequeue_task()                    \
9166 		 *         dequeue_task_fair()              + Race Time
9167 		 *           util_est_dequeue()            /
9168 		 *       -------------------------------- B
9169 		 *
9170 		 * The additional check "current == p" is required to further
9171 		 * reduce the race window.
9172 		 */
9173 		if (dst_cpu == cpu)
9174 			util_est += _task_util_est(p);
9175 		else if (p && unlikely(task_on_rq_queued(p) || current == p))
9176 			lsub_positive(&util_est, _task_util_est(p));
9177 
9178 		util = max(util, util_est);
9179 	}
9180 
9181 	return min(util, arch_scale_cpu_capacity(cpu));
9182 }
9183 
9184 unsigned long cpu_util_cfs(int cpu)
9185 {
9186 	return cpu_util(cpu, NULL, -1, 0);
9187 }
9188 
9189 unsigned long cpu_util_cfs_boost(int cpu)
9190 {
9191 	return cpu_util(cpu, NULL, -1, 1);
9192 }
9193 
9194 /*
9195  * cpu_util_without: compute cpu utilization without any contributions from *p
9196  * @cpu: the CPU which utilization is requested
9197  * @p: the task which utilization should be discounted
9198  *
9199  * The utilization of a CPU is defined by the utilization of tasks currently
9200  * enqueued on that CPU as well as tasks which are currently sleeping after an
9201  * execution on that CPU.
9202  *
9203  * This method returns the utilization of the specified CPU by discounting the
9204  * utilization of the specified task, whenever the task is currently
9205  * contributing to the CPU utilization.
9206  */
9207 static unsigned long cpu_util_without(int cpu, struct task_struct *p)
9208 {
9209 	/* Task has no contribution or is new */
9210 	if (cpu != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
9211 		p = NULL;
9212 
9213 	return cpu_util(cpu, p, -1, 0);
9214 }
9215 
9216 /*
9217  * This function computes an effective utilization for the given CPU, to be
9218  * used for frequency selection given the linear relation: f = u * f_max.
9219  *
9220  * The scheduler tracks the following metrics:
9221  *
9222  *   cpu_util_{cfs,rt,dl,irq}()
9223  *   cpu_bw_dl()
9224  *
9225  * Where the cfs,rt and dl util numbers are tracked with the same metric and
9226  * synchronized windows and are thus directly comparable.
9227  *
9228  * The cfs,rt,dl utilization are the running times measured with rq->clock_task
9229  * which excludes things like IRQ and steal-time. These latter are then accrued
9230  * in the IRQ utilization.
9231  *
9232  * The DL bandwidth number OTOH is not a measured metric but a value computed
9233  * based on the task model parameters and gives the minimal utilization
9234  * required to meet deadlines.
9235  */
9236 unsigned long effective_cpu_util(int cpu, unsigned long util_cfs,
9237 				 unsigned long *min,
9238 				 unsigned long *max)
9239 {
9240 	unsigned long util, irq, scale;
9241 	struct rq *rq = cpu_rq(cpu);
9242 
9243 	scale = arch_scale_cpu_capacity(cpu);
9244 
9245 	/*
9246 	 * Early check to see if IRQ/steal time saturates the CPU, can be
9247 	 * because of inaccuracies in how we track these -- see
9248 	 * update_irq_load_avg().
9249 	 */
9250 	irq = cpu_util_irq(rq);
9251 	if (unlikely(irq >= scale)) {
9252 		if (min)
9253 			*min = scale;
9254 		if (max)
9255 			*max = scale;
9256 		return scale;
9257 	}
9258 
9259 	if (min) {
9260 		/*
9261 		 * The minimum utilization returns the highest level between:
9262 		 * - the computed DL bandwidth needed with the IRQ pressure which
9263 		 *   steals time to the deadline task.
9264 		 * - The minimum performance requirement for CFS and/or RT.
9265 		 */
9266 		*min = max(irq + cpu_bw_dl(rq), uclamp_rq_get(rq, UCLAMP_MIN));
9267 
9268 		/*
9269 		 * When an RT task is runnable and uclamp is not used, we must
9270 		 * ensure that the task will run at maximum compute capacity.
9271 		 */
9272 		if (!uclamp_is_used() && rt_rq_is_runnable(&rq->rt))
9273 			*min = max(*min, scale);
9274 	}
9275 
9276 	/*
9277 	 * Because the time spend on RT/DL tasks is visible as 'lost' time to
9278 	 * CFS tasks and we use the same metric to track the effective
9279 	 * utilization (PELT windows are synchronized) we can directly add them
9280 	 * to obtain the CPU's actual utilization.
9281 	 */
9282 	util = util_cfs + cpu_util_rt(rq);
9283 	util += cpu_util_dl(rq);
9284 
9285 	/*
9286 	 * The maximum hint is a soft bandwidth requirement, which can be lower
9287 	 * than the actual utilization because of uclamp_max requirements.
9288 	 */
9289 	if (max)
9290 		*max = min(scale, uclamp_rq_get(rq, UCLAMP_MAX));
9291 
9292 	if (util >= scale)
9293 		return scale;
9294 
9295 	/*
9296 	 * There is still idle time; further improve the number by using the
9297 	 * IRQ metric. Because IRQ/steal time is hidden from the task clock we
9298 	 * need to scale the task numbers:
9299 	 *
9300 	 *              max - irq
9301 	 *   U' = irq + --------- * U
9302 	 *                 max
9303 	 */
9304 	util = scale_irq_capacity(util, irq, scale);
9305 	util += irq;
9306 
9307 	return min(scale, util);
9308 }
9309 
9310 unsigned long sched_cpu_util(int cpu)
9311 {
9312 	return effective_cpu_util(cpu, cpu_util_cfs(cpu), NULL, NULL);
9313 }
9314 
9315 /*
9316  * energy_env - Utilization landscape for energy estimation.
9317  * @task_busy_time: Utilization contribution by the task for which we test the
9318  *                  placement. Given by eenv_task_busy_time().
9319  * @pd_busy_time:   Utilization of the whole perf domain without the task
9320  *                  contribution. Given by eenv_pd_busy_time().
9321  * @cpu_cap:        Maximum CPU capacity for the perf domain.
9322  * @pd_cap:         Entire perf domain capacity. (pd->nr_cpus * cpu_cap).
9323  */
9324 struct energy_env {
9325 	unsigned long task_busy_time;
9326 	unsigned long pd_busy_time;
9327 	unsigned long cpu_cap;
9328 	unsigned long pd_cap;
9329 };
9330 
9331 /*
9332  * Compute the task busy time for compute_energy(). This time cannot be
9333  * injected directly into effective_cpu_util() because of the IRQ scaling.
9334  * The latter only makes sense with the most recent CPUs where the task has
9335  * run.
9336  */
9337 static inline void eenv_task_busy_time(struct energy_env *eenv,
9338 				       struct task_struct *p, int prev_cpu)
9339 {
9340 	unsigned long busy_time, max_cap = arch_scale_cpu_capacity(prev_cpu);
9341 	unsigned long irq = cpu_util_irq(cpu_rq(prev_cpu));
9342 
9343 	if (unlikely(irq >= max_cap))
9344 		busy_time = max_cap;
9345 	else
9346 		busy_time = scale_irq_capacity(task_util_est(p), irq, max_cap);
9347 
9348 	eenv->task_busy_time = busy_time;
9349 }
9350 
9351 /*
9352  * Compute the perf_domain (PD) busy time for compute_energy(). Based on the
9353  * utilization for each @pd_cpus, it however doesn't take into account
9354  * clamping since the ratio (utilization / cpu_capacity) is already enough to
9355  * scale the EM reported power consumption at the (eventually clamped)
9356  * cpu_capacity.
9357  *
9358  * The contribution of the task @p for which we want to estimate the
9359  * energy cost is removed (by cpu_util()) and must be calculated
9360  * separately (see eenv_task_busy_time). This ensures:
9361  *
9362  *   - A stable PD utilization, no matter which CPU of that PD we want to place
9363  *     the task on.
9364  *
9365  *   - A fair comparison between CPUs as the task contribution (task_util())
9366  *     will always be the same no matter which CPU utilization we rely on
9367  *     (util_avg or util_est).
9368  *
9369  * Set @eenv busy time for the PD that spans @pd_cpus. This busy time can't
9370  * exceed @eenv->pd_cap.
9371  */
9372 static inline void eenv_pd_busy_time(struct energy_env *eenv,
9373 				     struct cpumask *pd_cpus,
9374 				     struct task_struct *p)
9375 {
9376 	unsigned long busy_time = 0;
9377 	int cpu;
9378 
9379 	for_each_cpu(cpu, pd_cpus) {
9380 		unsigned long util = cpu_util(cpu, p, -1, 0);
9381 
9382 		busy_time += effective_cpu_util(cpu, util, NULL, NULL);
9383 	}
9384 
9385 	eenv->pd_busy_time = min(eenv->pd_cap, busy_time);
9386 }
9387 
9388 /*
9389  * Compute the maximum utilization for compute_energy() when the task @p
9390  * is placed on the cpu @dst_cpu.
9391  *
9392  * Returns the maximum utilization among @eenv->cpus. This utilization can't
9393  * exceed @eenv->cpu_cap.
9394  */
9395 static inline unsigned long
9396 eenv_pd_max_util(struct energy_env *eenv, struct cpumask *pd_cpus,
9397 		 struct task_struct *p, int dst_cpu)
9398 {
9399 	unsigned long max_util = 0;
9400 	int cpu;
9401 
9402 	for_each_cpu(cpu, pd_cpus) {
9403 		struct task_struct *tsk = (cpu == dst_cpu) ? p : NULL;
9404 		unsigned long util = cpu_util(cpu, p, dst_cpu, 1);
9405 		unsigned long eff_util, min, max;
9406 
9407 		/*
9408 		 * Performance domain frequency: utilization clamping
9409 		 * must be considered since it affects the selection
9410 		 * of the performance domain frequency.
9411 		 * NOTE: in case RT tasks are running, by default the min
9412 		 * utilization can be max OPP.
9413 		 */
9414 		eff_util = effective_cpu_util(cpu, util, &min, &max);
9415 
9416 		/* Task's uclamp can modify min and max value */
9417 		if (tsk && uclamp_is_used()) {
9418 			min = max(min, uclamp_eff_value(p, UCLAMP_MIN));
9419 
9420 			/*
9421 			 * If there is no active max uclamp constraint,
9422 			 * directly use task's one, otherwise keep max.
9423 			 */
9424 			if (uclamp_rq_is_idle(cpu_rq(cpu)))
9425 				max = uclamp_eff_value(p, UCLAMP_MAX);
9426 			else
9427 				max = max(max, uclamp_eff_value(p, UCLAMP_MAX));
9428 		}
9429 
9430 		eff_util = sugov_effective_cpu_perf(cpu, eff_util, min, max);
9431 		max_util = max(max_util, eff_util);
9432 	}
9433 
9434 	return min(max_util, eenv->cpu_cap);
9435 }
9436 
9437 /*
9438  * compute_energy(): Use the Energy Model to estimate the energy that @pd would
9439  * consume for a given utilization landscape @eenv. When @dst_cpu < 0, the task
9440  * contribution is ignored.
9441  */
9442 static inline unsigned long
9443 compute_energy(struct energy_env *eenv, struct perf_domain *pd,
9444 	       struct cpumask *pd_cpus, struct task_struct *p, int dst_cpu)
9445 {
9446 	unsigned long max_util = eenv_pd_max_util(eenv, pd_cpus, p, dst_cpu);
9447 	unsigned long busy_time = eenv->pd_busy_time;
9448 	unsigned long energy;
9449 
9450 	if (dst_cpu >= 0)
9451 		busy_time = min(eenv->pd_cap, busy_time + eenv->task_busy_time);
9452 
9453 	energy = em_cpu_energy(pd->em_pd, max_util, busy_time, eenv->cpu_cap);
9454 
9455 	trace_sched_compute_energy_tp(p, dst_cpu, energy, max_util, busy_time);
9456 
9457 	return energy;
9458 }
9459 
9460 /*
9461  * find_energy_efficient_cpu(): Find most energy-efficient target CPU for the
9462  * waking task. find_energy_efficient_cpu() looks for the CPU with maximum
9463  * spare capacity in each performance domain and uses it as a potential
9464  * candidate to execute the task. Then, it uses the Energy Model to figure
9465  * out which of the CPU candidates is the most energy-efficient.
9466  *
9467  * The rationale for this heuristic is as follows. In a performance domain,
9468  * all the most energy efficient CPU candidates (according to the Energy
9469  * Model) are those for which we'll request a low frequency. When there are
9470  * several CPUs for which the frequency request will be the same, we don't
9471  * have enough data to break the tie between them, because the Energy Model
9472  * only includes active power costs. With this model, if we assume that
9473  * frequency requests follow utilization (e.g. using schedutil), the CPU with
9474  * the maximum spare capacity in a performance domain is guaranteed to be among
9475  * the best candidates of the performance domain.
9476  *
9477  * In practice, it could be preferable from an energy standpoint to pack
9478  * small tasks on a CPU in order to let other CPUs go in deeper idle states,
9479  * but that could also hurt our chances to go cluster idle, and we have no
9480  * ways to tell with the current Energy Model if this is actually a good
9481  * idea or not. So, find_energy_efficient_cpu() basically favors
9482  * cluster-packing, and spreading inside a cluster. That should at least be
9483  * a good thing for latency, and this is consistent with the idea that most
9484  * of the energy savings of EAS come from the asymmetry of the system, and
9485  * not so much from breaking the tie between identical CPUs. That's also the
9486  * reason why EAS is enabled in the topology code only for systems where
9487  * SD_ASYM_CPUCAPACITY is set.
9488  *
9489  * NOTE: Forkees are not accepted in the energy-aware wake-up path because
9490  * they don't have any useful utilization data yet and it's not possible to
9491  * forecast their impact on energy consumption. Consequently, they will be
9492  * placed by sched_balance_find_dst_cpu() on the least loaded CPU, which might turn out
9493  * to be energy-inefficient in some use-cases. The alternative would be to
9494  * bias new tasks towards specific types of CPUs first, or to try to infer
9495  * their util_avg from the parent task, but those heuristics could hurt
9496  * other use-cases too. So, until someone finds a better way to solve this,
9497  * let's keep things simple by re-using the existing slow path.
9498  */
9499 static int find_energy_efficient_cpu(struct task_struct *p, int prev_cpu)
9500 {
9501 	struct cpumask *cpus = this_cpu_cpumask_var_ptr(select_rq_mask);
9502 	unsigned long prev_delta = ULONG_MAX, best_delta = ULONG_MAX;
9503 	unsigned long p_util_min = uclamp_is_used() ? uclamp_eff_value(p, UCLAMP_MIN) : 0;
9504 	unsigned long p_util_max = uclamp_is_used() ? uclamp_eff_value(p, UCLAMP_MAX) : 1024;
9505 	struct root_domain *rd = this_rq()->rd;
9506 	int cpu, best_energy_cpu, target = -1;
9507 	int prev_fits = -1, best_fits = -1;
9508 	unsigned long best_actual_cap = 0;
9509 	unsigned long prev_actual_cap = 0;
9510 	struct sched_domain *sd;
9511 	struct perf_domain *pd;
9512 	struct energy_env eenv;
9513 
9514 	pd = rcu_dereference_all(rd->pd);
9515 	if (!pd)
9516 		return target;
9517 
9518 	/*
9519 	 * Energy-aware wake-up happens on the lowest sched_domain starting
9520 	 * from sd_asym_cpucapacity spanning over this_cpu and prev_cpu.
9521 	 */
9522 	sd = rcu_dereference_all(*this_cpu_ptr(&sd_asym_cpucapacity));
9523 	while (sd && !cpumask_test_cpu(prev_cpu, sched_domain_span(sd)))
9524 		sd = sd->parent;
9525 	if (!sd)
9526 		return target;
9527 
9528 	target = prev_cpu;
9529 
9530 	sync_entity_load_avg(&p->se);
9531 	if (!task_util_est(p) && p_util_min == 0)
9532 		return target;
9533 
9534 	eenv_task_busy_time(&eenv, p, prev_cpu);
9535 
9536 	for (; pd; pd = pd->next) {
9537 		unsigned long util_min = p_util_min, util_max = p_util_max;
9538 		unsigned long cpu_cap, cpu_actual_cap, util;
9539 		long prev_spare_cap = -1, max_spare_cap = -1;
9540 		unsigned long rq_util_min, rq_util_max;
9541 		unsigned long cur_delta, base_energy;
9542 		int max_spare_cap_cpu = -1;
9543 		int fits, max_fits = -1;
9544 
9545 		if (!cpumask_and(cpus, perf_domain_span(pd), cpu_online_mask))
9546 			continue;
9547 
9548 		/* Account external pressure for the energy estimation */
9549 		cpu = cpumask_first(cpus);
9550 		cpu_actual_cap = get_actual_cpu_capacity(cpu);
9551 
9552 		eenv.cpu_cap = cpu_actual_cap;
9553 		eenv.pd_cap = 0;
9554 
9555 		for_each_cpu(cpu, cpus) {
9556 			struct rq *rq = cpu_rq(cpu);
9557 
9558 			eenv.pd_cap += cpu_actual_cap;
9559 
9560 			if (!cpumask_test_cpu(cpu, sched_domain_span(sd)))
9561 				continue;
9562 
9563 			if (!cpumask_test_cpu(cpu, p->cpus_ptr))
9564 				continue;
9565 
9566 			util = cpu_util(cpu, p, cpu, 0);
9567 			cpu_cap = capacity_of(cpu);
9568 
9569 			/*
9570 			 * Skip CPUs that cannot satisfy the capacity request.
9571 			 * IOW, placing the task there would make the CPU
9572 			 * overutilized. Take uclamp into account to see how
9573 			 * much capacity we can get out of the CPU; this is
9574 			 * aligned with sched_cpu_util().
9575 			 */
9576 			if (uclamp_is_used() && !uclamp_rq_is_idle(rq)) {
9577 				/*
9578 				 * Open code uclamp_rq_util_with() except for
9579 				 * the clamp() part. I.e.: apply max aggregation
9580 				 * only. util_fits_cpu() logic requires to
9581 				 * operate on non clamped util but must use the
9582 				 * max-aggregated uclamp_{min, max}.
9583 				 */
9584 				rq_util_min = uclamp_rq_get(rq, UCLAMP_MIN);
9585 				rq_util_max = uclamp_rq_get(rq, UCLAMP_MAX);
9586 
9587 				util_min = max(rq_util_min, p_util_min);
9588 				util_max = max(rq_util_max, p_util_max);
9589 			}
9590 
9591 			fits = util_fits_cpu(util, util_min, util_max, cpu);
9592 			if (!fits)
9593 				continue;
9594 
9595 			lsub_positive(&cpu_cap, util);
9596 
9597 			if (cpu == prev_cpu) {
9598 				/* Always use prev_cpu as a candidate. */
9599 				prev_spare_cap = cpu_cap;
9600 				prev_fits = fits;
9601 			} else if ((fits > max_fits) ||
9602 				   ((fits == max_fits) && ((long)cpu_cap > max_spare_cap))) {
9603 				/*
9604 				 * Find the CPU with the maximum spare capacity
9605 				 * among the remaining CPUs in the performance
9606 				 * domain.
9607 				 */
9608 				max_spare_cap = cpu_cap;
9609 				max_spare_cap_cpu = cpu;
9610 				max_fits = fits;
9611 			}
9612 		}
9613 
9614 		if (max_spare_cap_cpu < 0 && prev_spare_cap < 0)
9615 			continue;
9616 
9617 		eenv_pd_busy_time(&eenv, cpus, p);
9618 		/* Compute the 'base' energy of the pd, without @p */
9619 		base_energy = compute_energy(&eenv, pd, cpus, p, -1);
9620 
9621 		/* Evaluate the energy impact of using prev_cpu. */
9622 		if (prev_spare_cap > -1) {
9623 			prev_delta = compute_energy(&eenv, pd, cpus, p,
9624 						    prev_cpu);
9625 			/* CPU utilization has changed */
9626 			if (prev_delta < base_energy)
9627 				return target;
9628 			prev_delta -= base_energy;
9629 			prev_actual_cap = cpu_actual_cap;
9630 			best_delta = min(best_delta, prev_delta);
9631 		}
9632 
9633 		/* Evaluate the energy impact of using max_spare_cap_cpu. */
9634 		if (max_spare_cap_cpu >= 0 && max_spare_cap > prev_spare_cap) {
9635 			/* Current best energy cpu fits better */
9636 			if (max_fits < best_fits)
9637 				continue;
9638 
9639 			/*
9640 			 * Both don't fit performance hint (i.e. uclamp_min)
9641 			 * but best energy cpu has better capacity.
9642 			 */
9643 			if ((max_fits < 0) &&
9644 			    (cpu_actual_cap <= best_actual_cap))
9645 				continue;
9646 
9647 			cur_delta = compute_energy(&eenv, pd, cpus, p,
9648 						   max_spare_cap_cpu);
9649 			/* CPU utilization has changed */
9650 			if (cur_delta < base_energy)
9651 				return target;
9652 			cur_delta -= base_energy;
9653 
9654 			/*
9655 			 * Both fit for the task but best energy cpu has lower
9656 			 * energy impact.
9657 			 */
9658 			if ((max_fits > 0) && (best_fits > 0) &&
9659 			    (cur_delta >= best_delta))
9660 				continue;
9661 
9662 			best_delta = cur_delta;
9663 			best_energy_cpu = max_spare_cap_cpu;
9664 			best_fits = max_fits;
9665 			best_actual_cap = cpu_actual_cap;
9666 		}
9667 	}
9668 
9669 	if ((best_fits > prev_fits) ||
9670 	    ((best_fits > 0) && (best_delta < prev_delta)) ||
9671 	    ((best_fits < 0) && (best_actual_cap > prev_actual_cap)))
9672 		target = best_energy_cpu;
9673 
9674 	return target;
9675 }
9676 
9677 /*
9678  * select_task_rq_fair: Select target runqueue for the waking task in domains
9679  * that have the relevant SD flag set. In practice, this is SD_BALANCE_WAKE,
9680  * SD_BALANCE_FORK, or SD_BALANCE_EXEC.
9681  *
9682  * Balances load by selecting the idlest CPU in the idlest group, or under
9683  * certain conditions an idle sibling CPU if the domain has SD_WAKE_AFFINE set.
9684  *
9685  * Returns the target CPU number.
9686  */
9687 static int
9688 select_task_rq_fair(struct task_struct *p, int prev_cpu, int wake_flags)
9689 {
9690 	int sync = (wake_flags & WF_SYNC) && !(current->flags & PF_EXITING);
9691 	struct sched_domain *tmp, *sd = NULL;
9692 	int cpu = smp_processor_id();
9693 	int new_cpu = prev_cpu;
9694 	int want_affine = 0;
9695 	/* SD_flags and WF_flags share the first nibble */
9696 	int sd_flag = wake_flags & 0xF;
9697 
9698 	/*
9699 	 * required for stable ->cpus_allowed
9700 	 */
9701 	lockdep_assert_held(&p->pi_lock);
9702 	if (wake_flags & WF_TTWU) {
9703 		record_wakee(p);
9704 
9705 		if ((wake_flags & WF_CURRENT_CPU) &&
9706 		    cpumask_test_cpu(cpu, p->cpus_ptr))
9707 			return cpu;
9708 
9709 		if (!is_rd_overutilized(this_rq()->rd)) {
9710 			new_cpu = find_energy_efficient_cpu(p, prev_cpu);
9711 			if (new_cpu >= 0)
9712 				return new_cpu;
9713 			new_cpu = prev_cpu;
9714 		}
9715 
9716 		want_affine = !wake_wide(p) && cpumask_test_cpu(cpu, p->cpus_ptr);
9717 	}
9718 
9719 	for_each_domain(cpu, tmp) {
9720 		/*
9721 		 * If both 'cpu' and 'prev_cpu' are part of this domain,
9722 		 * cpu is a valid SD_WAKE_AFFINE target.
9723 		 */
9724 		if (want_affine && (tmp->flags & SD_WAKE_AFFINE) &&
9725 		    cpumask_test_cpu(prev_cpu, sched_domain_span(tmp))) {
9726 			if (cpu != prev_cpu)
9727 				new_cpu = wake_affine(tmp, p, cpu, prev_cpu, sync);
9728 
9729 			sd = NULL; /* Prefer wake_affine over balance flags */
9730 			break;
9731 		}
9732 
9733 		/*
9734 		 * Usually only true for WF_EXEC and WF_FORK, as sched_domains
9735 		 * usually do not have SD_BALANCE_WAKE set. That means wakeup
9736 		 * will usually go to the fast path.
9737 		 */
9738 		if (tmp->flags & sd_flag)
9739 			sd = tmp;
9740 		else if (!want_affine)
9741 			break;
9742 	}
9743 
9744 	/* Slow path */
9745 	if (unlikely(sd))
9746 		return sched_balance_find_dst_cpu(sd, p, cpu, prev_cpu, sd_flag);
9747 
9748 	/* Fast path */
9749 	if (wake_flags & WF_TTWU)
9750 		return select_idle_sibling(p, prev_cpu, new_cpu);
9751 
9752 	return new_cpu;
9753 }
9754 
9755 /*
9756  * Called immediately before a task is migrated to a new CPU; task_cpu(p) and
9757  * cfs_rq_of(p) references at time of call are still valid and identify the
9758  * previous CPU. The caller guarantees p->pi_lock or task_rq(p)->lock is held.
9759  */
9760 static void migrate_task_rq_fair(struct task_struct *p, int new_cpu)
9761 {
9762 	struct sched_entity *se = &p->se;
9763 
9764 	if (!task_on_rq_migrating(p)) {
9765 		remove_entity_load_avg(se);
9766 
9767 		/*
9768 		 * Here, the task's PELT values have been updated according to
9769 		 * the current rq's clock. But if that clock hasn't been
9770 		 * updated in a while, a substantial idle time will be missed,
9771 		 * leading to an inflation after wake-up on the new rq.
9772 		 *
9773 		 * Estimate the missing time from the cfs_rq last_update_time
9774 		 * and update sched_avg to improve the PELT continuity after
9775 		 * migration.
9776 		 */
9777 		migrate_se_pelt_lag(se);
9778 	}
9779 
9780 	/* Tell new CPU we are migrated */
9781 	se->avg.last_update_time = 0;
9782 
9783 	update_scan_period(p, new_cpu);
9784 }
9785 
9786 static void task_dead_fair(struct task_struct *p)
9787 {
9788 	struct sched_entity *se = &p->se;
9789 	remove_entity_load_avg(se);
9790 }
9791 
9792 /*
9793  * Set the max capacity the task is allowed to run at for misfit detection.
9794  */
9795 static void set_task_max_allowed_capacity(struct task_struct *p)
9796 {
9797 	struct asym_cap_data *entry;
9798 
9799 	if (!sched_asym_cpucap_active())
9800 		return;
9801 
9802 	rcu_read_lock();
9803 	list_for_each_entry_rcu(entry, &asym_cap_list, link) {
9804 		cpumask_t *cpumask;
9805 
9806 		cpumask = cpu_capacity_span(entry);
9807 		if (!cpumask_intersects(p->cpus_ptr, cpumask))
9808 			continue;
9809 
9810 		p->max_allowed_capacity = entry->capacity;
9811 		break;
9812 	}
9813 	rcu_read_unlock();
9814 }
9815 
9816 static void set_cpus_allowed_fair(struct task_struct *p, struct affinity_context *ctx)
9817 {
9818 	set_cpus_allowed_common(p, ctx);
9819 	set_task_max_allowed_capacity(p);
9820 }
9821 
9822 enum preempt_wakeup_action {
9823 	PREEMPT_WAKEUP_NONE,	/* No preemption. */
9824 	PREEMPT_WAKEUP_SHORT,	/* Ignore slice protection. */
9825 	PREEMPT_WAKEUP_PICK,	/* Let pick_eevdf() decide. */
9826 	PREEMPT_WAKEUP_RESCHED,	/* Force reschedule. */
9827 };
9828 
9829 static inline bool set_preempt_buddy(struct cfs_rq *cfs_rq, struct sched_entity *pse)
9830 {
9831 	/*
9832 	 * Keep existing buddy if the deadline is sooner than pse.
9833 	 * The older buddy may be cache cold and completely unrelated
9834 	 * to the current wakeup but that is unpredictable where as
9835 	 * obeying the deadline is more in line with EEVDF objectives.
9836 	 */
9837 	if (cfs_rq->next && entity_before(cfs_rq->next, pse))
9838 		return false;
9839 
9840 	set_next_buddy(cfs_rq, pse);
9841 	return true;
9842 }
9843 
9844 static inline bool set_short_buddy(struct cfs_rq *cfs_rq, struct sched_entity *pse)
9845 {
9846 	if (cfs_rq->next && cfs_rq->next->slice < pse->slice)
9847 		return false;
9848 
9849 	set_next_buddy(cfs_rq, pse);
9850 	return true;
9851 }
9852 
9853 /*
9854  * WF_SYNC|WF_TTWU indicates the waker expects to sleep but it is not
9855  * strictly enforced because the hint is either misunderstood or
9856  * multiple tasks must be woken up.
9857  */
9858 static inline enum preempt_wakeup_action
9859 preempt_sync(struct rq *rq, int wake_flags,
9860 	     struct sched_entity *pse, struct sched_entity *se)
9861 {
9862 	u64 threshold, delta;
9863 
9864 	/*
9865 	 * WF_SYNC without WF_TTWU is not expected so warn if it happens even
9866 	 * though it is likely harmless.
9867 	 */
9868 	WARN_ON_ONCE(!(wake_flags & WF_TTWU));
9869 
9870 	threshold = sysctl_sched_migration_cost;
9871 	delta = rq_clock_task(rq) - se->exec_start;
9872 	if ((s64)delta < 0)
9873 		delta = 0;
9874 
9875 	/*
9876 	 * WF_RQ_SELECTED implies the tasks are stacking on a CPU when they
9877 	 * could run on other CPUs. Reduce the threshold before preemption is
9878 	 * allowed to an arbitrary lower value as it is more likely (but not
9879 	 * guaranteed) the waker requires the wakee to finish.
9880 	 */
9881 	if (wake_flags & WF_RQ_SELECTED)
9882 		threshold >>= 2;
9883 
9884 	/*
9885 	 * As WF_SYNC is not strictly obeyed, allow some runtime for batch
9886 	 * wakeups to be issued.
9887 	 */
9888 	if (entity_before(pse, se) && delta >= threshold)
9889 		return PREEMPT_WAKEUP_RESCHED;
9890 
9891 	return PREEMPT_WAKEUP_NONE;
9892 }
9893 
9894 /*
9895  * Preempt the current task with a newly woken task if needed:
9896  */
9897 static void wakeup_preempt_fair(struct rq *rq, struct task_struct *p, int wake_flags)
9898 {
9899 	enum preempt_wakeup_action preempt_action = PREEMPT_WAKEUP_PICK;
9900 	struct task_struct *donor = rq->donor;
9901 	struct sched_entity *nse, *se = &donor->se, *pse = &p->se;
9902 	struct cfs_rq *cfs_rq = &rq->cfs;
9903 	int cse_is_idle, pse_is_idle;
9904 
9905 	/*
9906 	 * XXX Getting preempted by higher class, try and find idle CPU?
9907 	 */
9908 	if (p->sched_class != &fair_sched_class ||
9909 	    donor->sched_class != &fair_sched_class)
9910 		return;
9911 
9912 	if (unlikely(se == pse))
9913 		return;
9914 
9915 	/*
9916 	 * This is possible from callers such as attach_tasks(), in which we
9917 	 * unconditionally wakeup_preempt() after an enqueue (which may have
9918 	 * lead to a throttle).  This both saves work and prevents false
9919 	 * next-buddy nomination below.
9920 	 */
9921 	if (task_is_throttled(p))
9922 		return;
9923 
9924 	/*
9925 	 * We can come here with TIF_NEED_RESCHED already set from new task
9926 	 * wake up path.
9927 	 *
9928 	 * Note: this also catches the edge-case of curr being in a throttled
9929 	 * group (e.g. via set_curr_task), since update_curr() (in the
9930 	 * enqueue of curr) will have resulted in resched being set.  This
9931 	 * prevents us from potentially nominating it as a false LAST_BUDDY
9932 	 * below.
9933 	 */
9934 	if (!sched_feat(PREEMPT_SHORT) && test_tsk_need_resched(rq->curr))
9935 		return;
9936 
9937 	if (!sched_feat(WAKEUP_PREEMPTION))
9938 		return;
9939 
9940 	WARN_ON_ONCE(!pse);
9941 
9942 	cse_is_idle = se_is_idle(se);
9943 	pse_is_idle = se_is_idle(pse);
9944 
9945 	nse = se;
9946 	/*
9947 	 * Preempt an idle entity in favor of a non-idle entity (and don't preempt
9948 	 * in the inverse case).
9949 	 */
9950 	if (cse_is_idle && !pse_is_idle)
9951 		goto preempt;
9952 
9953 	update_curr_fair(rq);
9954 
9955 	if (cse_is_idle != pse_is_idle)
9956 		goto update;
9957 
9958 	/*
9959 	 * BATCH and IDLE tasks do not preempt others.
9960 	 */
9961 	if (unlikely(!normal_policy(p->policy)))
9962 		goto update;
9963 
9964 	/*
9965 	 * Do not preempt for tasks that are sched_delayed as it would violate
9966 	 * EEVDF to forcibly queue an ineligible task.
9967 	 */
9968 	if (pse->sched_delayed)
9969 		goto update;
9970 
9971 	/*
9972 	 * If @p has a shorter slice than current and @p is eligible, override
9973 	 * current's slice protection in order to allow preemption.
9974 	 */
9975 	if (sched_feat(PREEMPT_SHORT) && (pse->slice < se->slice)) {
9976 		preempt_action = PREEMPT_WAKEUP_SHORT;
9977 		goto pick;
9978 	}
9979 
9980 	/*
9981 	 * Ignore wakee preemption on WF_FORK as it is less likely that
9982 	 * there is shared data as exec often follow fork.
9983 	 */
9984 	if (wake_flags & WF_FORK)
9985 		goto update;
9986 
9987 	/* Prefer picking wakee soon if appropriate. */
9988 	if (sched_feat(NEXT_BUDDY) && set_preempt_buddy(cfs_rq, pse)) {
9989 		/*
9990 		 * Decide whether to obey WF_SYNC hint for a new buddy. Old
9991 		 * buddies are ignored as they may not be relevant to the
9992 		 * waker and less likely to be cache hot.
9993 		 */
9994 		if (wake_flags & WF_SYNC)
9995 			preempt_action = preempt_sync(rq, wake_flags, pse, se);
9996 	}
9997 
9998 	switch (preempt_action) {
9999 	case PREEMPT_WAKEUP_NONE:
10000 		return;
10001 	case PREEMPT_WAKEUP_RESCHED:
10002 		goto preempt;
10003 	case PREEMPT_WAKEUP_SHORT:
10004 		fallthrough;
10005 	case PREEMPT_WAKEUP_PICK:
10006 		break;
10007 	}
10008 
10009 pick:
10010 	if (cfs_rq->h_nr_queued) {
10011 		nse = pick_next_entity(rq, preempt_action != PREEMPT_WAKEUP_SHORT);
10012 		if (unlikely(!nse))
10013 			goto pick;
10014 
10015 		/* If @p has become the most eligible task, force preemption */
10016 		if (nse == pse)
10017 			goto preempt;
10018 	}
10019 
10020 	/*
10021 	 * If @p is eligible but not the next task to run then cancel protection
10022 	 * to prevent large scheduling latency
10023 	 */
10024 	if (preempt_action == PREEMPT_WAKEUP_SHORT && entity_eligible(cfs_rq, pse))
10025 		goto preempt;
10026 update:
10027 	if (sched_feat(RUN_TO_PARITY))
10028 		update_protect_slice(cfs_rq, se);
10029 
10030 	return;
10031 
10032 preempt:
10033 	cancel_protect_slice(se);
10034 
10035 	if (preempt_action == PREEMPT_WAKEUP_SHORT)
10036 		set_short_buddy(cfs_rq, pse);
10037 
10038 	resched_curr_lazy(rq);
10039 }
10040 
10041 struct task_struct *pick_task_fair(struct rq *rq, struct rq_flags *rf)
10042 	__must_hold(__rq_lockp(rq))
10043 {
10044 	struct cfs_rq *cfs_rq = &rq->cfs;
10045 	struct sched_entity *se;
10046 	struct task_struct *p;
10047 	int new_tasks;
10048 
10049 again:
10050 	if (!cfs_rq->h_nr_queued)
10051 		goto idle;
10052 
10053 	/* Might not have done put_prev_entity() */
10054 	if (cfs_rq->curr && cfs_rq->curr->on_rq)
10055 		update_curr(cfs_rq);
10056 
10057 	se = pick_next_entity(rq, true);
10058 	if (!se)
10059 		goto again;
10060 
10061 	p = task_of(se);
10062 	return p;
10063 
10064 idle:
10065 	if (sched_core_enabled(rq))
10066 		return NULL;
10067 
10068 	new_tasks = sched_balance_newidle(rq, rf);
10069 	if (new_tasks < 0)
10070 		return RETRY_TASK;
10071 	if (new_tasks > 0)
10072 		goto again;
10073 	return NULL;
10074 }
10075 
10076 static struct task_struct *
10077 fair_server_pick_task(struct sched_dl_entity *dl_se, struct rq_flags *rf)
10078 	__must_hold(__rq_lockp(dl_se->rq))
10079 {
10080 	return pick_task_fair(dl_se->rq, rf);
10081 }
10082 
10083 void fair_server_init(struct rq *rq)
10084 {
10085 	struct sched_dl_entity *dl_se = &rq->fair_server;
10086 
10087 	init_dl_entity(dl_se);
10088 
10089 	dl_server_init(dl_se, rq, fair_server_pick_task);
10090 }
10091 
10092 /*
10093  * Account for a descheduled task:
10094  */
10095 static void put_prev_task_fair(struct rq *rq, struct task_struct *prev, struct task_struct *next)
10096 {
10097 	struct sched_entity *se = &prev->se;
10098 	struct cfs_rq *cfs_rq = &rq->cfs;
10099 	struct sched_entity *nse = NULL;
10100 
10101 #ifdef CONFIG_FAIR_GROUP_SCHED
10102 	if (next && next->sched_class == &fair_sched_class)
10103 		nse = &next->se;
10104 #endif
10105 
10106 	while (se) {
10107 		cfs_rq = cfs_rq_of(se);
10108 		if (!nse || cfs_rq->h_curr)
10109 			put_prev_entity(cfs_rq, se);
10110 #ifdef CONFIG_FAIR_GROUP_SCHED
10111 		if (nse) {
10112 			if (is_same_group(se, nse))
10113 				break;
10114 
10115 			int d = nse->depth - se->depth;
10116 			if (d >= 0) {
10117 				/* nse has equal or greater depth, ascend */
10118 				nse = parent_entity(nse);
10119 				/* if nse is the deeper, do not ascend se */
10120 				if (d > 0)
10121 					continue;
10122 			}
10123 		}
10124 #endif
10125 		se = parent_entity(se);
10126 	}
10127 
10128 	/* Put 'current' back into the tree. */
10129 	cfs_rq = &rq->cfs;
10130 	se = &prev->se;
10131 	WARN_ON_ONCE(cfs_rq->curr != se);
10132 	cfs_rq->curr = NULL;
10133 	if (se->on_rq)
10134 		__enqueue_entity(cfs_rq, se);
10135 }
10136 
10137 /*
10138  * sched_yield() is very simple
10139  */
10140 static void yield_task_fair(struct rq *rq)
10141 {
10142 	struct task_struct *curr = rq->donor;
10143 	struct sched_entity *se = &curr->se;
10144 	struct cfs_rq *cfs_rq = &rq->cfs;
10145 
10146 	/*
10147 	 * Are we the only task in the tree?
10148 	 */
10149 	if (unlikely(rq->nr_running == 1))
10150 		return;
10151 
10152 	clear_buddies(cfs_rq, se);
10153 
10154 	update_rq_clock(rq);
10155 	/*
10156 	 * Update run-time statistics of the 'current'.
10157 	 */
10158 	update_curr(cfs_rq);
10159 	/*
10160 	 * Tell update_rq_clock() that we've just updated,
10161 	 * so we don't do microscopic update in schedule()
10162 	 * and double the fastpath cost.
10163 	 */
10164 	rq_clock_skip_update(rq);
10165 
10166 	/*
10167 	 * Forfeit the remaining vruntime, only if the entity is eligible. This
10168 	 * condition is necessary because in core scheduling we prefer to run
10169 	 * ineligible tasks rather than force idling. If this happens we may
10170 	 * end up in a loop where the core scheduler picks the yielding task,
10171 	 * which yields immediately again; without the condition the vruntime
10172 	 * ends up quickly running away.
10173 	 */
10174 	if (entity_eligible(cfs_rq, se)) {
10175 		se->vruntime = se->deadline;
10176 		update_deadline(cfs_rq, se);
10177 	}
10178 }
10179 
10180 static bool yield_to_task_fair(struct rq *rq, struct task_struct *p)
10181 {
10182 	struct sched_entity *se = &p->se;
10183 
10184 	/* !se->on_rq also covers throttled task */
10185 	if (!se->on_rq || se->sched_delayed)
10186 		return false;
10187 
10188 	/* Tell the scheduler that we'd really like se to run next. */
10189 	set_next_buddy(&task_rq(p)->cfs, se);
10190 
10191 	yield_task_fair(rq);
10192 
10193 	return true;
10194 }
10195 
10196 /**************************************************
10197  * Fair scheduling class load-balancing methods.
10198  *
10199  * BASICS
10200  *
10201  * The purpose of load-balancing is to achieve the same basic fairness the
10202  * per-CPU scheduler provides, namely provide a proportional amount of compute
10203  * time to each task. This is expressed in the following equation:
10204  *
10205  *   W_i,n/P_i == W_j,n/P_j for all i,j                               (1)
10206  *
10207  * Where W_i,n is the n-th weight average for CPU i. The instantaneous weight
10208  * W_i,0 is defined as:
10209  *
10210  *   W_i,0 = \Sum_j w_i,j                                             (2)
10211  *
10212  * Where w_i,j is the weight of the j-th runnable task on CPU i. This weight
10213  * is derived from the nice value as per sched_prio_to_weight[].
10214  *
10215  * The weight average is an exponential decay average of the instantaneous
10216  * weight:
10217  *
10218  *   W'_i,n = (2^n - 1) / 2^n * W_i,n + 1 / 2^n * W_i,0               (3)
10219  *
10220  * C_i is the compute capacity of CPU i, typically it is the
10221  * fraction of 'recent' time available for SCHED_OTHER task execution. But it
10222  * can also include other factors [XXX].
10223  *
10224  * To achieve this balance we define a measure of imbalance which follows
10225  * directly from (1):
10226  *
10227  *   imb_i,j = max{ avg(W/C), W_i/C_i } - min{ avg(W/C), W_j/C_j }    (4)
10228  *
10229  * We them move tasks around to minimize the imbalance. In the continuous
10230  * function space it is obvious this converges, in the discrete case we get
10231  * a few fun cases generally called infeasible weight scenarios.
10232  *
10233  * [XXX expand on:
10234  *     - infeasible weights;
10235  *     - local vs global optima in the discrete case. ]
10236  *
10237  *
10238  * SCHED DOMAINS
10239  *
10240  * In order to solve the imbalance equation (4), and avoid the obvious O(n^2)
10241  * for all i,j solution, we create a tree of CPUs that follows the hardware
10242  * topology where each level pairs two lower groups (or better). This results
10243  * in O(log n) layers. Furthermore we reduce the number of CPUs going up the
10244  * tree to only the first of the previous level and we decrease the frequency
10245  * of load-balance at each level inversely proportional to the number of CPUs in
10246  * the groups.
10247  *
10248  * This yields:
10249  *
10250  *     log_2 n     1     n
10251  *   \Sum       { --- * --- * 2^i } = O(n)                            (5)
10252  *     i = 0      2^i   2^i
10253  *                               `- size of each group
10254  *         |         |     `- number of CPUs doing load-balance
10255  *         |         `- freq
10256  *         `- sum over all levels
10257  *
10258  * Coupled with a limit on how many tasks we can migrate every balance pass,
10259  * this makes (5) the runtime complexity of the balancer.
10260  *
10261  * An important property here is that each CPU is still (indirectly) connected
10262  * to every other CPU in at most O(log n) steps:
10263  *
10264  * The adjacency matrix of the resulting graph is given by:
10265  *
10266  *             log_2 n
10267  *   A_i,j = \Union     (i % 2^k == 0) && i / 2^(k+1) == j / 2^(k+1)  (6)
10268  *             k = 0
10269  *
10270  * And you'll find that:
10271  *
10272  *   A^(log_2 n)_i,j != 0  for all i,j                                (7)
10273  *
10274  * Showing there's indeed a path between every CPU in at most O(log n) steps.
10275  * The task movement gives a factor of O(m), giving a convergence complexity
10276  * of:
10277  *
10278  *   O(nm log n),  n := nr_cpus, m := nr_tasks                        (8)
10279  *
10280  *
10281  * WORK CONSERVING
10282  *
10283  * In order to avoid CPUs going idle while there's still work to do, new idle
10284  * balancing is more aggressive and has the newly idle CPU iterate up the domain
10285  * tree itself instead of relying on other CPUs to bring it work.
10286  *
10287  * This adds some complexity to both (5) and (8) but it reduces the total idle
10288  * time.
10289  *
10290  * [XXX more?]
10291  *
10292  *
10293  * CGROUPS
10294  *
10295  * Cgroups make a horror show out of (2), instead of a simple sum we get:
10296  *
10297  *                                s_k,i
10298  *   W_i,0 = \Sum_j \Prod_k w_k * -----                               (9)
10299  *                                 S_k
10300  *
10301  * Where
10302  *
10303  *   s_k,i = \Sum_j w_i,j,k  and  S_k = \Sum_i s_k,i                 (10)
10304  *
10305  * w_i,j,k is the weight of the j-th runnable task in the k-th cgroup on CPU i.
10306  *
10307  * The big problem is S_k, its a global sum needed to compute a local (W_i)
10308  * property.
10309  *
10310  * [XXX write more on how we solve this.. _after_ merging pjt's patches that
10311  *      rewrite all of this once again.]
10312  */
10313 
10314 static unsigned long __read_mostly max_load_balance_interval = HZ/10;
10315 
10316 enum fbq_type { regular, remote, all };
10317 
10318 /*
10319  * 'group_type' describes the group of CPUs at the moment of load balancing.
10320  *
10321  * The enum is ordered by pulling priority, with the group with lowest priority
10322  * first so the group_type can simply be compared when selecting the busiest
10323  * group. See update_sd_pick_busiest().
10324  */
10325 enum group_type {
10326 	/* The group has spare capacity that can be used to run more tasks.  */
10327 	group_has_spare = 0,
10328 	/*
10329 	 * The group is fully used and the tasks don't compete for more CPU
10330 	 * cycles. Nevertheless, some tasks might wait before running.
10331 	 */
10332 	group_fully_busy,
10333 	/*
10334 	 * One task doesn't fit with CPU's capacity and must be migrated to a
10335 	 * more powerful CPU.
10336 	 */
10337 	group_misfit_task,
10338 	/*
10339 	 * Balance SMT group that's fully busy. Can benefit from migration
10340 	 * a task on SMT with busy sibling to another CPU on idle core.
10341 	 */
10342 	group_smt_balance,
10343 	/*
10344 	 * SD_ASYM_PACKING only: One local CPU with higher capacity is available,
10345 	 * and the task should be migrated to it instead of running on the
10346 	 * current CPU.
10347 	 */
10348 	group_asym_packing,
10349 	/*
10350 	 * The tasks' affinity constraints previously prevented the scheduler
10351 	 * from balancing the load across the system.
10352 	 */
10353 	group_imbalanced,
10354 	/*
10355 	 * There are tasks running on non-preferred LLC, possible to move
10356 	 * them to their preferred LLC without creating too much imbalance.
10357 	 * The priority of group_llc_balance is lower than that of
10358 	 * group_overloaded and higher than that of all other group types.
10359 	 * This is because group_llc_balance may exacerbate load imbalance.
10360 	 * If the LLC balancing attempt fails, the nr_balance_failed
10361 	 * mechanism will trigger other group types to rebalance the load.
10362 	 */
10363 	group_llc_balance,
10364 	/*
10365 	 * The CPU is overloaded and can't provide expected CPU cycles to all
10366 	 * tasks.
10367 	 */
10368 	group_overloaded
10369 };
10370 
10371 enum migration_type {
10372 	migrate_load = 0,
10373 	migrate_util,
10374 	migrate_task,
10375 	migrate_misfit,
10376 	migrate_llc_task
10377 };
10378 
10379 #define LBF_ALL_PINNED	0x01
10380 #define LBF_NEED_BREAK	0x02
10381 #define LBF_DST_PINNED  0x04
10382 #define LBF_SOME_PINNED	0x08
10383 #define LBF_ACTIVE_LB	0x10
10384 #define LBF_LLC_PINNED	0x20
10385 
10386 struct lb_env {
10387 	struct sched_domain	*sd;
10388 
10389 	struct rq		*src_rq;
10390 	int			src_cpu;
10391 
10392 	int			dst_cpu;
10393 	struct rq		*dst_rq;
10394 	bool			dst_core_idle;
10395 
10396 	struct cpumask		*dst_grpmask;
10397 	int			new_dst_cpu;
10398 	enum cpu_idle_type	idle;
10399 	long			imbalance;
10400 	/* The set of CPUs under consideration for load-balancing */
10401 	struct cpumask		*cpus;
10402 
10403 	unsigned int		flags;
10404 
10405 	unsigned int		loop;
10406 	unsigned int		loop_break;
10407 	unsigned int		loop_max;
10408 
10409 	enum fbq_type		fbq_type;
10410 	enum migration_type	migration_type;
10411 	struct list_head	tasks;
10412 };
10413 
10414 /*
10415  * Is this task likely cache-hot:
10416  */
10417 static int task_hot(struct task_struct *p, struct lb_env *env)
10418 {
10419 	s64 delta;
10420 
10421 	lockdep_assert_rq_held(env->src_rq);
10422 
10423 	if (p->sched_class != &fair_sched_class)
10424 		return 0;
10425 
10426 	if (unlikely(task_has_idle_policy(p)))
10427 		return 0;
10428 
10429 	/* SMT siblings share cache */
10430 	if (env->sd->flags & SD_SHARE_CPUCAPACITY)
10431 		return 0;
10432 
10433 	/*
10434 	 * Buddy candidates are cache hot:
10435 	 */
10436 	if (sched_feat(CACHE_HOT_BUDDY) && env->dst_rq->nr_running &&
10437 	    (&p->se == cfs_rq_of(&p->se)->next))
10438 		return 1;
10439 
10440 	if (sysctl_sched_migration_cost == -1)
10441 		return 1;
10442 
10443 	/*
10444 	 * Don't migrate task if the task's cookie does not match
10445 	 * with the destination CPU's core cookie.
10446 	 */
10447 	if (!sched_core_cookie_match(cpu_rq(env->dst_cpu), p))
10448 		return 1;
10449 
10450 	if (sysctl_sched_migration_cost == 0)
10451 		return 0;
10452 
10453 	delta = rq_clock_task(env->src_rq) - p->se.exec_start;
10454 
10455 	return delta < (s64)sysctl_sched_migration_cost;
10456 }
10457 
10458 #ifdef CONFIG_NUMA_BALANCING
10459 /*
10460  * Returns a positive value, if task migration degrades locality.
10461  * Returns 0, if task migration is not affected by locality.
10462  * Returns a negative value, if task migration improves locality i.e migration preferred.
10463  */
10464 static long migrate_degrades_locality(struct task_struct *p, struct lb_env *env)
10465 {
10466 	struct numa_group *numa_group = rcu_dereference_all(p->numa_group);
10467 	unsigned long src_weight, dst_weight;
10468 	int src_nid, dst_nid, dist;
10469 
10470 	if (!static_branch_likely(&sched_numa_balancing))
10471 		return 0;
10472 
10473 	if (!p->numa_faults || !(env->sd->flags & SD_NUMA))
10474 		return 0;
10475 
10476 	src_nid = cpu_to_node(env->src_cpu);
10477 	dst_nid = cpu_to_node(env->dst_cpu);
10478 
10479 	if (src_nid == dst_nid)
10480 		return 0;
10481 
10482 	/* Migrating away from the preferred node is always bad. */
10483 	if (src_nid == p->numa_preferred_nid) {
10484 		if (env->src_rq->nr_running > env->src_rq->nr_preferred_running)
10485 			return 1;
10486 		else
10487 			return 0;
10488 	}
10489 
10490 	/* Encourage migration to the preferred node. */
10491 	if (dst_nid == p->numa_preferred_nid)
10492 		return -1;
10493 
10494 	/* Leaving a core idle is often worse than degrading locality. */
10495 	if (env->idle == CPU_IDLE)
10496 		return 0;
10497 
10498 	dist = node_distance(src_nid, dst_nid);
10499 	if (numa_group) {
10500 		src_weight = group_weight(p, src_nid, dist);
10501 		dst_weight = group_weight(p, dst_nid, dist);
10502 	} else {
10503 		src_weight = task_weight(p, src_nid, dist);
10504 		dst_weight = task_weight(p, dst_nid, dist);
10505 	}
10506 
10507 	return src_weight - dst_weight;
10508 }
10509 
10510 #else /* !CONFIG_NUMA_BALANCING: */
10511 static inline long migrate_degrades_locality(struct task_struct *p,
10512 					     struct lb_env *env)
10513 {
10514 	return 0;
10515 }
10516 #endif /* !CONFIG_NUMA_BALANCING */
10517 
10518 /*
10519  * Check whether the task is ineligible on the destination cpu
10520  *
10521  * When the PLACE_LAG scheduling feature is enabled and
10522  * dst_cfs_rq->nr_queued is greater than 1, if the task
10523  * is ineligible, it will also be ineligible when
10524  * it is migrated to the destination cpu.
10525  */
10526 static inline int task_is_ineligible_on_dst_cpu(struct task_struct *p, int dest_cpu)
10527 {
10528 	struct cfs_rq *dst_cfs_rq = &cpu_rq(dest_cpu)->cfs;
10529 
10530 	if (sched_feat(PLACE_LAG) && dst_cfs_rq->h_nr_queued &&
10531 	    !entity_eligible(&task_rq(p)->cfs, &p->se))
10532 		return 1;
10533 
10534 	return 0;
10535 }
10536 
10537 #ifdef CONFIG_SCHED_CACHE
10538 /*
10539  * The margin used when comparing LLC utilization with CPU capacity.
10540  * It determines the LLC load level where active LLC aggregation is
10541  * done.
10542  * Derived from fits_capacity().
10543  *
10544  * (default: ~50%, tunable via debugfs)
10545  */
10546 static bool fits_llc_capacity(unsigned long util, unsigned long max)
10547 {
10548 	u32 aggr_pct = llc_overaggr_pct;
10549 
10550 	/*
10551 	 * For single core systems, raise the aggregation
10552 	 * threshold to accommodate more tasks.
10553 	 */
10554 	if (cpu_smt_num_threads == 1)
10555 		aggr_pct = (aggr_pct * 3 / 2);
10556 
10557 	return util * 100 < max * aggr_pct;
10558 }
10559 
10560 /*
10561  * The margin used when comparing utilization.
10562  * is 'util1' noticeably greater than 'util2'
10563  * Derived from capacity_greater().
10564  * Bias is in perentage.
10565  */
10566 /* Allows dst util to be bigger than src util by up to bias percent */
10567 #define util_greater(util1, util2) \
10568 	((util1) * 100 > (util2) * (100 + llc_imb_pct))
10569 
10570 static __maybe_unused bool get_llc_stats(int cpu, unsigned long *util,
10571 					 unsigned long *cap)
10572 {
10573 	struct sched_domain_shared *sd_share;
10574 
10575 	sd_share = rcu_dereference_all(per_cpu(sd_llc_shared, cpu));
10576 	if (!sd_share)
10577 		return false;
10578 
10579 	*util = READ_ONCE(sd_share->util_avg);
10580 	*cap = READ_ONCE(sd_share->capacity);
10581 
10582 	return true;
10583 }
10584 
10585 /*
10586  * Decision matrix according to the LLC utilization. To
10587  * decide whether we can do task aggregation across LLC.
10588  *
10589  * By default, 50% is the threshold for treating the LLC
10590  * as busy. The reason for choosing 50% is to avoid saturation
10591  * of SMT-2, and it is also a safe cutoff for other SMT-n
10592  * platforms. SMT-1 has higher threshold because it is
10593  * supposed to accommodate more tasks, see fits_llc_capacity().
10594  *
10595  * 20% is the utilization imbalance percentage to decide
10596  * if the preferred LLC is busier than the non-preferred LLC.
10597  * 20 is a little higher than the LLC domain's imbalance_pct
10598  * 17. The hysteresis is used to avoid task bouncing between the
10599  * preferred LLC and the non-preferred LLC, and it will
10600  * be turned into tunable debugfs.
10601  *
10602  * 1. moving towards the preferred LLC, dst is the preferred
10603  *    LLC, src is not.
10604  *
10605  * src \ dst      30%  40%  50%  60%
10606  * 30%            Y    Y    Y    N
10607  * 40%            Y    Y    Y    Y
10608  * 50%            Y    Y    G    G
10609  * 60%            Y    Y    G    G
10610  *
10611  * 2. moving out of the preferred LLC, src is the preferred
10612  *    LLC, dst is not:
10613  *
10614  * src \ dst      30%  40%  50%  60%
10615  * 30%            N    N    N    N
10616  * 40%            N    N    N    N
10617  * 50%            N    N    G    G
10618  * 60%            Y    N    G    G
10619  *
10620  * src :      src_util
10621  * dst :      dst_util
10622  * Y :        Yes, migrate
10623  * N :        No, do not migrate
10624  * G :        let the Generic load balance to even the load.
10625  *
10626  * The intention is that if both LLCs are quite busy, cache aware
10627  * load balance should not be performed, and generic load balance
10628  * should take effect. However, if one is busy and the other is not,
10629  * the preferred LLC capacity(50%) and imbalance criteria(20%) should
10630  * be considered to determine whether LLC aggregation should be
10631  * performed to bias the load towards the preferred LLC.
10632  */
10633 
10634 /* migration decision, 3 states are orthogonal. */
10635 enum llc_mig {
10636 	mig_forbid = 0,		/* N: Don't migrate task, respect LLC preference */
10637 	mig_llc,		/* Y: Do LLC preference based migration */
10638 	mig_unrestricted	/* G: Don't restrict generic load balance migration */
10639 };
10640 
10641 /*
10642  * Check if task can be moved from the source LLC to the
10643  * destination LLC without breaking cache aware preferrence.
10644  * src_cpu and dst_cpu are arbitrary CPUs within the source
10645  * and destination LLCs, respectively.
10646  */
10647 static enum llc_mig can_migrate_llc(int src_cpu, int dst_cpu,
10648 				    unsigned long tsk_util,
10649 				    bool to_pref)
10650 {
10651 	unsigned long src_util, dst_util, src_cap, dst_cap;
10652 
10653 	if (!get_llc_stats(src_cpu, &src_util, &src_cap) ||
10654 	    !get_llc_stats(dst_cpu, &dst_util, &dst_cap))
10655 		return mig_unrestricted;
10656 
10657 	src_util = src_util < tsk_util ? 0 : src_util - tsk_util;
10658 	dst_util = dst_util + tsk_util;
10659 
10660 	if (!fits_llc_capacity(dst_util, dst_cap) &&
10661 	    !fits_llc_capacity(src_util, src_cap))
10662 		return mig_unrestricted;
10663 
10664 	if (to_pref) {
10665 		/*
10666 		 * Don't migrate if we will get preferred LLC too
10667 		 * heavily loaded and if the dest is much busier
10668 		 * than the src, in which case migration will
10669 		 * increase the imbalance too much.
10670 		 */
10671 		if (!fits_llc_capacity(dst_util, dst_cap) &&
10672 		    util_greater(dst_util, src_util))
10673 			return mig_forbid;
10674 	} else {
10675 		/*
10676 		 * Don't migrate if we will leave preferred LLC
10677 		 * too idle, or if this migration leads to the
10678 		 * non-preferred LLC falls within sysctl_aggr_imb percent
10679 		 * of preferred LLC, leading to migration again
10680 		 * back to preferred LLC.
10681 		 */
10682 		if (fits_llc_capacity(src_util, src_cap) ||
10683 		    !util_greater(src_util, dst_util))
10684 			return mig_forbid;
10685 	}
10686 	return mig_llc;
10687 }
10688 
10689 /*
10690  * Check if task p can migrate from source LLC to
10691  * destination LLC in terms of cache aware load balance.
10692  */
10693 static enum llc_mig can_migrate_llc_task(int src_cpu, int dst_cpu,
10694 					 struct task_struct *p)
10695 {
10696 	struct mm_struct *mm;
10697 	bool to_pref;
10698 	int cpu;
10699 
10700 	mm = p->mm;
10701 	if (!mm)
10702 		return mig_unrestricted;
10703 
10704 	cpu = READ_ONCE(mm->sc_stat.cpu);
10705 	if (cpu < 0 || cpus_share_cache(src_cpu, dst_cpu))
10706 		return mig_unrestricted;
10707 
10708 	/* skip cache aware load balance for too many threads */
10709 	if (invalid_llc_nr(mm, p, dst_cpu) ||
10710 	    exceed_llc_capacity(mm, dst_cpu)) {
10711 		if (READ_ONCE(mm->sc_stat.cpu) != -1)
10712 			WRITE_ONCE(mm->sc_stat.cpu, -1);
10713 		return mig_unrestricted;
10714 	}
10715 
10716 	if (cpus_share_cache(dst_cpu, cpu))
10717 		to_pref = true;
10718 	else if (cpus_share_cache(src_cpu, cpu))
10719 		to_pref = false;
10720 	else
10721 		return mig_unrestricted;
10722 
10723 	return can_migrate_llc(src_cpu, dst_cpu,
10724 			       task_util(p), to_pref);
10725 }
10726 
10727 /*
10728  * Check if active load balance breaks LLC locality in
10729  * terms of cache aware load balance. The load level and
10730  * imbalance do not warrant breaking LLC preference per
10731  * the can_migrate_llc() policy. Here, the benefit of
10732  * LLC locality outweighs the power efficiency gained from
10733  * migrating the only runnable task away.
10734  */
10735 static inline bool
10736 alb_break_llc(struct lb_env *env)
10737 {
10738 	if (!sched_cache_enabled())
10739 		return false;
10740 
10741 	if (cpus_share_cache(env->src_cpu, env->dst_cpu))
10742 		return false;
10743 	/*
10744 	 * All tasks prefer to stay on their current CPU.
10745 	 * Do not pull a task from its preferred CPU if:
10746 	 * 1. It is the only task running and does not exceed
10747 	 *    imbalance allowance; OR
10748 	 * 2. Migrating it away from its preferred LLC would violate
10749 	 *    the cache-aware scheduling policy.
10750 	 */
10751 	if (env->src_rq->nr_pref_llc_running &&
10752 	    env->src_rq->nr_pref_llc_running == env->src_rq->cfs.h_nr_runnable) {
10753 		unsigned long util = 0;
10754 		struct task_struct *cur;
10755 
10756 		if (env->src_rq->nr_running <= 1)
10757 			return true;
10758 
10759 		cur = rcu_dereference_all(env->src_rq->curr);
10760 		if (cur && cur->sched_class == &fair_sched_class)
10761 			util = task_util(cur);
10762 
10763 		if (can_migrate_llc(env->src_cpu, env->dst_cpu,
10764 				    util, false) == mig_forbid)
10765 			return true;
10766 	}
10767 
10768 	return false;
10769 }
10770 
10771 /*
10772  * Check if migrating task p from env->src_cpu to
10773  * env->dst_cpu breaks LLC localiy.
10774  */
10775 static bool migrate_degrades_llc(struct task_struct *p, struct lb_env *env)
10776 {
10777 	if (!sched_cache_enabled())
10778 		return false;
10779 
10780 	if (task_has_sched_core(p))
10781 		return false;
10782 	/*
10783 	 * Skip over tasks that would degrade LLC locality;
10784 	 * only when nr_balanced_failed is sufficiently high do we
10785 	 * ignore this constraint.
10786 	 *
10787 	 * Threshold of cache_nice_tries is set to 1 higher
10788 	 * than nr_balance_failed to avoid excessive task
10789 	 * migration at the same time.
10790 	 */
10791 	if (env->sd->nr_balance_failed >= env->sd->cache_nice_tries + 1)
10792 		return false;
10793 
10794 	/*
10795 	 * We know the env->src_cpu has some tasks prefer to
10796 	 * run on env->dst_cpu, skip the tasks do not prefer
10797 	 * env->dst_cpu, and find the one that prefers.
10798 	 */
10799 	if (env->migration_type == migrate_llc_task &&
10800 	    READ_ONCE(p->preferred_llc) != llc_id(env->dst_cpu))
10801 		return true;
10802 
10803 	if (can_migrate_llc_task(env->src_cpu,
10804 				 env->dst_cpu, p) != mig_forbid)
10805 		return false;
10806 
10807 	return true;
10808 }
10809 
10810 #else
10811 static inline bool get_llc_stats(int cpu, unsigned long *util,
10812 				 unsigned long *cap)
10813 {
10814 	return false;
10815 }
10816 
10817 static inline bool
10818 alb_break_llc(struct lb_env *env)
10819 {
10820 	return false;
10821 }
10822 
10823 static inline bool
10824 migrate_degrades_llc(struct task_struct *p, struct lb_env *env)
10825 {
10826 	return false;
10827 }
10828 #endif
10829 /*
10830  * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
10831  */
10832 static
10833 int can_migrate_task(struct task_struct *p, struct lb_env *env)
10834 {
10835 	long degrades, hot;
10836 
10837 	lockdep_assert_rq_held(env->src_rq);
10838 	if (p->sched_task_hot)
10839 		p->sched_task_hot = 0;
10840 
10841 	/*
10842 	 * We do not migrate tasks that are:
10843 	 * 1) delayed dequeued unless we migrate load, or
10844 	 * 2) target cfs_rq is in throttled hierarchy, or
10845 	 * 3) cannot be migrated to this CPU due to cpus_ptr, or
10846 	 * 4) running (obviously), or
10847 	 * 5) are cache-hot on their current CPU, or
10848 	 * 6) are blocked on mutexes (if SCHED_PROXY_EXEC is enabled)
10849 	 */
10850 	if ((p->se.sched_delayed) && (env->migration_type != migrate_load))
10851 		return 0;
10852 
10853 	if (lb_throttled_hierarchy(p, env->dst_cpu))
10854 		return 0;
10855 
10856 	/*
10857 	 * We want to prioritize the migration of eligible tasks.
10858 	 * For ineligible tasks we soft-limit them and only allow
10859 	 * them to migrate when nr_balance_failed is non-zero to
10860 	 * avoid load-balancing trying very hard to balance the load.
10861 	 */
10862 	if (!env->sd->nr_balance_failed &&
10863 	    task_is_ineligible_on_dst_cpu(p, env->dst_cpu))
10864 		return 0;
10865 
10866 	/* Disregard percpu kthreads; they are where they need to be. */
10867 	if (kthread_is_per_cpu(p))
10868 		return 0;
10869 
10870 	if (task_is_blocked(p))
10871 		return 0;
10872 
10873 	if (!cpumask_test_cpu(env->dst_cpu, p->cpus_ptr)) {
10874 		int cpu;
10875 
10876 		schedstat_inc(p->stats.nr_failed_migrations_affine);
10877 
10878 		env->flags |= LBF_SOME_PINNED;
10879 
10880 		/*
10881 		 * Remember if this task can be migrated to any other CPU in
10882 		 * our sched_group. We may want to revisit it if we couldn't
10883 		 * meet load balance goals by pulling other tasks on src_cpu.
10884 		 *
10885 		 * Avoid computing new_dst_cpu
10886 		 * - for NEWLY_IDLE
10887 		 * - if we have already computed one in current iteration
10888 		 * - if it's an active balance
10889 		 */
10890 		if (env->idle == CPU_NEWLY_IDLE ||
10891 		    env->flags & (LBF_DST_PINNED | LBF_ACTIVE_LB))
10892 			return 0;
10893 
10894 		/* Prevent to re-select dst_cpu via env's CPUs: */
10895 		cpu = cpumask_first_and_and(env->dst_grpmask, env->cpus, p->cpus_ptr);
10896 
10897 		if (cpu < nr_cpu_ids) {
10898 			env->flags |= LBF_DST_PINNED;
10899 			env->new_dst_cpu = cpu;
10900 		}
10901 
10902 		return 0;
10903 	}
10904 
10905 	/* Record that we found at least one task that could run on dst_cpu */
10906 	env->flags &= ~LBF_ALL_PINNED;
10907 
10908 	if (task_on_cpu(env->src_rq, p) ||
10909 	    task_current_donor(env->src_rq, p)) {
10910 		schedstat_inc(p->stats.nr_failed_migrations_running);
10911 		return 0;
10912 	}
10913 
10914 	/*
10915 	 * Aggressive migration if:
10916 	 * 1) active balance
10917 	 * 2) destination numa is preferred
10918 	 * 3) task is cache cold, or
10919 	 * 4) too many balance attempts have failed.
10920 	 */
10921 	if (env->flags & LBF_ACTIVE_LB)
10922 		return 1;
10923 
10924 	degrades = migrate_degrades_locality(p, env);
10925 	if (!degrades) {
10926 		/*
10927 		 * If the NUMA locality is not broken,
10928 		 * further check if migration would hurt
10929 		 * LLC locality.
10930 		 */
10931 		if (migrate_degrades_llc(p, env)) {
10932 			/*
10933 			 * If regular load balancing fails to pull a task
10934 			 * due to LLC locality, this is expected behavior
10935 			 * and we set LBF_LLC_PINNED so we don't increase
10936 			 * nr_balance_failed unecessarily.
10937 			 */
10938 			if (env->migration_type != migrate_llc_task)
10939 				env->flags |= LBF_LLC_PINNED;
10940 
10941 			return 0;
10942 		}
10943 
10944 		hot = task_hot(p, env);
10945 	} else {
10946 		hot = degrades > 0;
10947 	}
10948 
10949 	if (!hot || env->sd->nr_balance_failed > env->sd->cache_nice_tries) {
10950 		if (hot)
10951 			p->sched_task_hot = 1;
10952 		return 1;
10953 	}
10954 
10955 	schedstat_inc(p->stats.nr_failed_migrations_hot);
10956 	return 0;
10957 }
10958 
10959 /*
10960  * detach_task() -- detach the task for the migration specified in env
10961  */
10962 static void detach_task(struct task_struct *p, struct lb_env *env)
10963 {
10964 	lockdep_assert_rq_held(env->src_rq);
10965 
10966 	if (p->sched_task_hot) {
10967 		p->sched_task_hot = 0;
10968 		schedstat_inc(env->sd->lb_hot_gained[env->idle]);
10969 		schedstat_inc(p->stats.nr_forced_migrations);
10970 	}
10971 
10972 	WARN_ON(task_current(env->src_rq, p));
10973 	WARN_ON(task_current_donor(env->src_rq, p));
10974 
10975 	deactivate_task(env->src_rq, p, DEQUEUE_NOCLOCK);
10976 	set_task_cpu(p, env->dst_cpu);
10977 }
10978 
10979 /*
10980  * detach_one_task() -- tries to dequeue exactly one task from env->src_rq, as
10981  * part of active balancing operations within "domain".
10982  *
10983  * Returns a task if successful and NULL otherwise.
10984  */
10985 static struct task_struct *detach_one_task(struct lb_env *env)
10986 {
10987 	struct task_struct *p;
10988 
10989 	lockdep_assert_rq_held(env->src_rq);
10990 
10991 	list_for_each_entry_reverse(p,
10992 			&env->src_rq->cfs_tasks, se.group_node) {
10993 		if (!can_migrate_task(p, env))
10994 			continue;
10995 
10996 		detach_task(p, env);
10997 
10998 		/*
10999 		 * Right now, this is only the second place where
11000 		 * lb_gained[env->idle] is updated (other is detach_tasks)
11001 		 * so we can safely collect stats here rather than
11002 		 * inside detach_tasks().
11003 		 */
11004 		schedstat_inc(env->sd->lb_gained[env->idle]);
11005 		return p;
11006 	}
11007 	return NULL;
11008 }
11009 
11010 /*
11011  * detach_tasks() -- tries to detach up to imbalance load/util/tasks from
11012  * busiest_rq, as part of a balancing operation within domain "sd".
11013  *
11014  * Returns number of detached tasks if successful and 0 otherwise.
11015  */
11016 static int detach_tasks(struct lb_env *env)
11017 {
11018 	struct list_head *tasks = &env->src_rq->cfs_tasks;
11019 	unsigned long util, load;
11020 	struct task_struct *p;
11021 	int detached = 0;
11022 
11023 	lockdep_assert_rq_held(env->src_rq);
11024 
11025 	/*
11026 	 * Source run queue has been emptied by another CPU, clear
11027 	 * LBF_ALL_PINNED flag as we will not test any task.
11028 	 */
11029 	if (env->src_rq->nr_running <= 1) {
11030 		env->flags &= ~LBF_ALL_PINNED;
11031 		return 0;
11032 	}
11033 
11034 	if (env->imbalance <= 0)
11035 		return 0;
11036 
11037 	while (!list_empty(tasks)) {
11038 		/*
11039 		 * We don't want to steal all, otherwise we may be treated likewise,
11040 		 * which could at worst lead to a livelock crash.
11041 		 */
11042 		if (env->idle && env->src_rq->nr_running <= 1)
11043 			break;
11044 
11045 		env->loop++;
11046 		/* We've more or less seen every task there is, call it quits */
11047 		if (env->loop > env->loop_max)
11048 			break;
11049 
11050 		/* take a breather every nr_migrate tasks */
11051 		if (env->loop > env->loop_break) {
11052 			env->loop_break += SCHED_NR_MIGRATE_BREAK;
11053 			env->flags |= LBF_NEED_BREAK;
11054 			break;
11055 		}
11056 
11057 		p = list_last_entry(tasks, struct task_struct, se.group_node);
11058 
11059 		if (!can_migrate_task(p, env))
11060 			goto next;
11061 
11062 		switch (env->migration_type) {
11063 		case migrate_load:
11064 			/*
11065 			 * Depending of the number of CPUs and tasks and the
11066 			 * cgroup hierarchy, task_h_load() can return a null
11067 			 * value. Make sure that env->imbalance decreases
11068 			 * otherwise detach_tasks() will stop only after
11069 			 * detaching up to loop_max tasks.
11070 			 */
11071 			load = max_t(unsigned long, task_h_load(p), 1);
11072 
11073 			if (sched_feat(LB_MIN) &&
11074 			    load < 16 && !env->sd->nr_balance_failed)
11075 				goto next;
11076 
11077 			/*
11078 			 * Make sure that we don't migrate too much load.
11079 			 * Nevertheless, let relax the constraint if
11080 			 * scheduler fails to find a good waiting task to
11081 			 * migrate.
11082 			 */
11083 			if (shr_bound(load, env->sd->nr_balance_failed) > env->imbalance)
11084 				goto next;
11085 
11086 			env->imbalance -= load;
11087 			break;
11088 
11089 		case migrate_util:
11090 			util = task_util_est(p);
11091 
11092 			if (shr_bound(util, env->sd->nr_balance_failed) > env->imbalance)
11093 				goto next;
11094 
11095 			env->imbalance -= util;
11096 			break;
11097 
11098 		case migrate_task:
11099 			env->imbalance--;
11100 			break;
11101 
11102 		case migrate_misfit:
11103 			/* This is not a misfit task */
11104 			if (task_fits_cpu(p, env->src_cpu))
11105 				goto next;
11106 
11107 			env->imbalance = 0;
11108 			break;
11109 
11110 		case migrate_llc_task:
11111 			env->imbalance--;
11112 			break;
11113 		}
11114 
11115 		detach_task(p, env);
11116 		list_add(&p->se.group_node, &env->tasks);
11117 
11118 		detached++;
11119 
11120 #ifdef CONFIG_PREEMPTION
11121 		/*
11122 		 * NEWIDLE balancing is a source of latency, so preemptible
11123 		 * kernels will stop after the first task is detached to minimize
11124 		 * the critical section.
11125 		 */
11126 		if (env->idle == CPU_NEWLY_IDLE)
11127 			break;
11128 #endif
11129 
11130 		/*
11131 		 * We only want to steal up to the prescribed amount of
11132 		 * load/util/tasks.
11133 		 */
11134 		if (env->imbalance <= 0)
11135 			break;
11136 
11137 		continue;
11138 next:
11139 		if (p->sched_task_hot)
11140 			schedstat_inc(p->stats.nr_failed_migrations_hot);
11141 
11142 		list_move(&p->se.group_node, tasks);
11143 	}
11144 
11145 	/*
11146 	 * Right now, this is one of only two places we collect this stat
11147 	 * so we can safely collect detach_one_task() stats here rather
11148 	 * than inside detach_one_task().
11149 	 */
11150 	schedstat_add(env->sd->lb_gained[env->idle], detached);
11151 
11152 	return detached;
11153 }
11154 
11155 /*
11156  * attach_tasks() -- attaches all tasks detached by detach_tasks() to their
11157  * new rq.
11158  */
11159 static void attach_tasks(struct lb_env *env)
11160 {
11161 	struct list_head *tasks = &env->tasks;
11162 	struct task_struct *p;
11163 	struct rq_flags rf;
11164 
11165 	rq_lock(env->dst_rq, &rf);
11166 	update_rq_clock(env->dst_rq);
11167 
11168 	while (!list_empty(tasks)) {
11169 		p = list_first_entry(tasks, struct task_struct, se.group_node);
11170 		list_del_init(&p->se.group_node);
11171 
11172 		attach_task(env->dst_rq, p);
11173 	}
11174 
11175 	rq_unlock(env->dst_rq, &rf);
11176 }
11177 
11178 #ifdef CONFIG_NO_HZ_COMMON
11179 static inline bool cfs_rq_has_blocked_load(struct cfs_rq *cfs_rq)
11180 {
11181 	if (cfs_rq->avg.load_avg)
11182 		return true;
11183 
11184 	if (cfs_rq->avg.util_avg)
11185 		return true;
11186 
11187 	return false;
11188 }
11189 
11190 static inline bool others_have_blocked(struct rq *rq)
11191 {
11192 	if (cpu_util_rt(rq))
11193 		return true;
11194 
11195 	if (cpu_util_dl(rq))
11196 		return true;
11197 
11198 	if (hw_load_avg(rq))
11199 		return true;
11200 
11201 	if (cpu_util_irq(rq))
11202 		return true;
11203 
11204 	return false;
11205 }
11206 
11207 static inline void update_blocked_load_tick(struct rq *rq)
11208 {
11209 	WRITE_ONCE(rq->last_blocked_load_update_tick, jiffies);
11210 }
11211 
11212 static inline void update_has_blocked_load_status(struct rq *rq, bool has_blocked_load)
11213 {
11214 	if (!has_blocked_load)
11215 		rq->has_blocked_load = 0;
11216 }
11217 #else /* !CONFIG_NO_HZ_COMMON: */
11218 static inline bool cfs_rq_has_blocked_load(struct cfs_rq *cfs_rq) { return false; }
11219 static inline bool others_have_blocked(struct rq *rq) { return false; }
11220 static inline void update_blocked_load_tick(struct rq *rq) {}
11221 static inline void update_has_blocked_load_status(struct rq *rq, bool has_blocked_load) {}
11222 #endif /* !CONFIG_NO_HZ_COMMON */
11223 
11224 static bool __update_blocked_others(struct rq *rq, bool *done)
11225 {
11226 	bool updated;
11227 
11228 	/*
11229 	 * update_load_avg() can call cpufreq_update_util(). Make sure that RT,
11230 	 * DL and IRQ signals have been updated before updating CFS.
11231 	 */
11232 	updated = update_other_load_avgs(rq);
11233 
11234 	if (others_have_blocked(rq))
11235 		*done = false;
11236 
11237 	return updated;
11238 }
11239 
11240 #ifdef CONFIG_FAIR_GROUP_SCHED
11241 
11242 static bool __update_blocked_fair(struct rq *rq, bool *done)
11243 {
11244 	struct cfs_rq *cfs_rq, *pos;
11245 	bool decayed = false;
11246 
11247 	/*
11248 	 * Iterates the task_group tree in a bottom up fashion, see
11249 	 * list_add_leaf_cfs_rq() for details.
11250 	 */
11251 	for_each_leaf_cfs_rq_safe(rq, cfs_rq, pos) {
11252 		struct sched_entity *se;
11253 
11254 		if (update_cfs_rq_load_avg(cfs_rq_clock_pelt(cfs_rq), cfs_rq)) {
11255 			update_tg_load_avg(cfs_rq);
11256 
11257 			if (cfs_rq->nr_queued == 0)
11258 				update_idle_cfs_rq_clock_pelt(cfs_rq);
11259 
11260 			if (cfs_rq == &rq->cfs)
11261 				decayed = true;
11262 		}
11263 
11264 		/* Propagate pending load changes to the parent, if any: */
11265 		se = cfs_rq_se(cfs_rq);
11266 		if (se && !skip_blocked_update(se))
11267 			update_load_avg(cfs_rq_of(se), se, UPDATE_TG);
11268 
11269 		/*
11270 		 * There can be a lot of idle CPU cgroups.  Don't let fully
11271 		 * decayed cfs_rqs linger on the list.
11272 		 */
11273 		if (cfs_rq_is_decayed(cfs_rq))
11274 			list_del_leaf_cfs_rq(cfs_rq);
11275 
11276 		/* Don't need periodic decay once load/util_avg are null */
11277 		if (cfs_rq_has_blocked_load(cfs_rq))
11278 			*done = false;
11279 	}
11280 
11281 	return decayed;
11282 }
11283 
11284 /*
11285  * Compute the hierarchical load factor for cfs_rq and all its ascendants.
11286  * This needs to be done in a top-down fashion because the load of a child
11287  * group is a fraction of its parents load.
11288  */
11289 static void update_cfs_rq_h_load(struct cfs_rq *cfs_rq)
11290 {
11291 	struct sched_entity *se = cfs_rq_se(cfs_rq);
11292 	unsigned long now = jiffies;
11293 	unsigned long load;
11294 
11295 	if (cfs_rq->last_h_load_update == now)
11296 		return;
11297 
11298 	WRITE_ONCE(cfs_rq->h_load_next, NULL);
11299 	for_each_sched_entity(se) {
11300 		cfs_rq = cfs_rq_of(se);
11301 		WRITE_ONCE(cfs_rq->h_load_next, se);
11302 		if (cfs_rq->last_h_load_update == now)
11303 			break;
11304 	}
11305 
11306 	if (!se) {
11307 		cfs_rq->h_load = cfs_rq_load_avg(cfs_rq);
11308 		cfs_rq->last_h_load_update = now;
11309 	}
11310 
11311 	while ((se = READ_ONCE(cfs_rq->h_load_next)) != NULL) {
11312 		load = cfs_rq->h_load;
11313 		load = div64_ul(load * se->avg.load_avg,
11314 				cfs_rq_load_avg(cfs_rq) + 1);
11315 		cfs_rq = group_cfs_rq(se);
11316 		cfs_rq->h_load = load;
11317 		cfs_rq->last_h_load_update = now;
11318 	}
11319 }
11320 
11321 static unsigned long task_h_load(struct task_struct *p)
11322 {
11323 	struct cfs_rq *cfs_rq = task_cfs_rq(p);
11324 
11325 	update_cfs_rq_h_load(cfs_rq);
11326 	return div64_ul(p->se.avg.load_avg * cfs_rq->h_load,
11327 			cfs_rq_load_avg(cfs_rq) + 1);
11328 }
11329 #else /* !CONFIG_FAIR_GROUP_SCHED: */
11330 static bool __update_blocked_fair(struct rq *rq, bool *done)
11331 {
11332 	struct cfs_rq *cfs_rq = &rq->cfs;
11333 	bool decayed;
11334 
11335 	decayed = update_cfs_rq_load_avg(cfs_rq_clock_pelt(cfs_rq), cfs_rq);
11336 	if (cfs_rq_has_blocked_load(cfs_rq))
11337 		*done = false;
11338 
11339 	return decayed;
11340 }
11341 
11342 static unsigned long task_h_load(struct task_struct *p)
11343 {
11344 	return p->se.avg.load_avg;
11345 }
11346 #endif /* !CONFIG_FAIR_GROUP_SCHED */
11347 
11348 static void __sched_balance_update_blocked_averages(struct rq *rq)
11349 {
11350 	bool decayed = false, done = true;
11351 
11352 	update_blocked_load_tick(rq);
11353 
11354 	decayed |= __update_blocked_others(rq, &done);
11355 	decayed |= __update_blocked_fair(rq, &done);
11356 
11357 	update_has_blocked_load_status(rq, !done);
11358 	if (decayed)
11359 		cpufreq_update_util(rq, 0);
11360 }
11361 
11362 static void sched_balance_update_blocked_averages(int cpu)
11363 {
11364 	struct rq *rq = cpu_rq(cpu);
11365 
11366 	guard(rq_lock_irqsave)(rq);
11367 	update_rq_clock(rq);
11368 	__sched_balance_update_blocked_averages(rq);
11369 }
11370 
11371 /********** Helpers for sched_balance_find_src_group ************************/
11372 
11373 /*
11374  * sg_lb_stats - stats of a sched_group required for load-balancing:
11375  */
11376 struct sg_lb_stats {
11377 	unsigned long avg_load;			/* Avg load            over the CPUs of the group */
11378 	unsigned long group_load;		/* Total load          over the CPUs of the group */
11379 	unsigned long group_capacity;		/* Capacity            over the CPUs of the group */
11380 	unsigned long group_util;		/* Total utilization   over the CPUs of the group */
11381 	unsigned long group_runnable;		/* Total runnable time over the CPUs of the group */
11382 	unsigned int sum_nr_running;		/* Nr of all tasks running in the group */
11383 	unsigned int sum_h_nr_running;		/* Nr of CFS tasks running in the group */
11384 	unsigned int idle_cpus;                 /* Nr of idle CPUs         in the group */
11385 	unsigned int group_weight;
11386 	enum group_type group_type;
11387 	unsigned int group_asym_packing;	/* Tasks should be moved to preferred CPU */
11388 	unsigned int group_smt_balance;		/* Task on busy SMT be moved */
11389 	unsigned int group_llc_balance;		/* Tasks should be moved to preferred LLC */
11390 	unsigned long group_misfit_task_load;	/* A CPU has a task too big for its capacity */
11391 	unsigned int group_overutilized;	/* At least one CPU is overutilized in the group */
11392 #ifdef CONFIG_NUMA_BALANCING
11393 	unsigned int nr_numa_running;
11394 	unsigned int nr_preferred_running;
11395 #endif
11396 #ifdef CONFIG_SCHED_CACHE
11397 	unsigned int nr_pref_dst_llc;
11398 #endif
11399 };
11400 
11401 /*
11402  * sd_lb_stats - stats of a sched_domain required for load-balancing:
11403  */
11404 struct sd_lb_stats {
11405 	struct sched_group *busiest;		/* Busiest group in this sd */
11406 	struct sched_group *local;		/* Local group in this sd */
11407 	unsigned long total_load;		/* Total load of all groups in sd */
11408 	unsigned long total_capacity;		/* Total capacity of all groups in sd */
11409 	unsigned long avg_load;			/* Average load across all groups in sd */
11410 	unsigned int prefer_sibling;		/* Tasks should go to sibling first */
11411 
11412 	struct sg_lb_stats busiest_stat;	/* Statistics of the busiest group */
11413 	struct sg_lb_stats local_stat;		/* Statistics of the local group */
11414 };
11415 
11416 static inline void init_sd_lb_stats(struct sd_lb_stats *sds)
11417 {
11418 	/*
11419 	 * Skimp on the clearing to avoid duplicate work. We can avoid clearing
11420 	 * local_stat because update_sg_lb_stats() does a full clear/assignment.
11421 	 * We must however set busiest_stat::group_type and
11422 	 * busiest_stat::idle_cpus to the worst busiest group because
11423 	 * update_sd_pick_busiest() reads these before assignment.
11424 	 */
11425 	*sds = (struct sd_lb_stats){
11426 		.busiest = NULL,
11427 		.local = NULL,
11428 		.total_load = 0UL,
11429 		.total_capacity = 0UL,
11430 		.busiest_stat = {
11431 			.idle_cpus = UINT_MAX,
11432 			.group_type = group_has_spare,
11433 		},
11434 	};
11435 }
11436 
11437 static unsigned long scale_rt_capacity(int cpu)
11438 {
11439 	unsigned long max = get_actual_cpu_capacity(cpu);
11440 	struct rq *rq = cpu_rq(cpu);
11441 	unsigned long used, free;
11442 	unsigned long irq;
11443 
11444 	irq = cpu_util_irq(rq);
11445 
11446 	if (unlikely(irq >= max))
11447 		return 1;
11448 
11449 	/*
11450 	 * avg_rt.util_avg and avg_dl.util_avg track binary signals
11451 	 * (running and not running) with weights 0 and 1024 respectively.
11452 	 */
11453 	used = cpu_util_rt(rq);
11454 	used += cpu_util_dl(rq);
11455 
11456 	if (unlikely(used >= max))
11457 		return 1;
11458 
11459 	free = max - used;
11460 
11461 	return scale_irq_capacity(free, irq, max);
11462 }
11463 
11464 static void update_cpu_capacity(struct sched_domain *sd, int cpu)
11465 {
11466 	unsigned long capacity = scale_rt_capacity(cpu);
11467 	struct sched_group *sdg = sd->groups;
11468 
11469 	if (!capacity)
11470 		capacity = 1;
11471 
11472 	cpu_rq(cpu)->cpu_capacity = capacity;
11473 	trace_sched_cpu_capacity_tp(cpu_rq(cpu));
11474 
11475 	sdg->sgc->capacity = capacity;
11476 	sdg->sgc->min_capacity = capacity;
11477 	sdg->sgc->max_capacity = capacity;
11478 }
11479 
11480 void update_group_capacity(struct sched_domain *sd, int cpu)
11481 {
11482 	struct sched_domain *child = sd->child;
11483 	struct sched_group *group, *sdg = sd->groups;
11484 	unsigned long capacity, min_capacity, max_capacity;
11485 	unsigned long interval;
11486 
11487 	interval = msecs_to_jiffies(sd->balance_interval);
11488 	interval = clamp(interval, 1UL, max_load_balance_interval);
11489 	sdg->sgc->next_update = jiffies + interval;
11490 
11491 	if (!child) {
11492 		update_cpu_capacity(sd, cpu);
11493 		return;
11494 	}
11495 
11496 	capacity = 0;
11497 	min_capacity = ULONG_MAX;
11498 	max_capacity = 0;
11499 
11500 	if (child->flags & SD_NUMA) {
11501 		/*
11502 		 * SD_NUMA domains cannot assume that child groups
11503 		 * span the current group.
11504 		 */
11505 
11506 		for_each_cpu(cpu, sched_group_span(sdg)) {
11507 			unsigned long cpu_cap = capacity_of(cpu);
11508 
11509 			capacity += cpu_cap;
11510 			min_capacity = min(cpu_cap, min_capacity);
11511 			max_capacity = max(cpu_cap, max_capacity);
11512 		}
11513 	} else  {
11514 		/*
11515 		 * !SD_NUMA domains can assume that child groups
11516 		 * span the current group.
11517 		 */
11518 
11519 		group = child->groups;
11520 		do {
11521 			struct sched_group_capacity *sgc = group->sgc;
11522 
11523 			capacity += sgc->capacity;
11524 			min_capacity = min(sgc->min_capacity, min_capacity);
11525 			max_capacity = max(sgc->max_capacity, max_capacity);
11526 			group = group->next;
11527 		} while (group != child->groups);
11528 	}
11529 
11530 	sdg->sgc->capacity = capacity;
11531 	sdg->sgc->min_capacity = min_capacity;
11532 	sdg->sgc->max_capacity = max_capacity;
11533 }
11534 
11535 /*
11536  * Check whether the capacity of the rq has been noticeably reduced by side
11537  * activity. The imbalance_pct is used for the threshold.
11538  * Return true is the capacity is reduced
11539  */
11540 static inline int
11541 check_cpu_capacity(struct rq *rq, struct sched_domain *sd)
11542 {
11543 	return ((rq->cpu_capacity * sd->imbalance_pct) <
11544 				(arch_scale_cpu_capacity(cpu_of(rq)) * 100));
11545 }
11546 
11547 /* Check if the rq has a misfit task */
11548 static inline bool check_misfit_status(struct rq *rq)
11549 {
11550 	return rq->misfit_task_load;
11551 }
11552 
11553 /*
11554  * Group imbalance indicates (and tries to solve) the problem where balancing
11555  * groups is inadequate due to ->cpus_ptr constraints.
11556  *
11557  * Imagine a situation of two groups of 4 CPUs each and 4 tasks each with a
11558  * cpumask covering 1 CPU of the first group and 3 CPUs of the second group.
11559  * Something like:
11560  *
11561  *	{ 0 1 2 3 } { 4 5 6 7 }
11562  *	        *     * * *
11563  *
11564  * If we were to balance group-wise we'd place two tasks in the first group and
11565  * two tasks in the second group. Clearly this is undesired as it will overload
11566  * cpu 3 and leave one of the CPUs in the second group unused.
11567  *
11568  * The current solution to this issue is detecting the skew in the first group
11569  * by noticing the lower domain failed to reach balance and had difficulty
11570  * moving tasks due to affinity constraints.
11571  *
11572  * When this is so detected; this group becomes a candidate for busiest; see
11573  * update_sd_pick_busiest(). And calculate_imbalance() and
11574  * sched_balance_find_src_group() avoid some of the usual balance conditions to allow it
11575  * to create an effective group imbalance.
11576  *
11577  * This is a somewhat tricky proposition since the next run might not find the
11578  * group imbalance and decide the groups need to be balanced again. A most
11579  * subtle and fragile situation.
11580  */
11581 
11582 static inline int sg_imbalanced(struct sched_group *group)
11583 {
11584 	return group->sgc->imbalance;
11585 }
11586 
11587 /*
11588  * group_has_capacity returns true if the group has spare capacity that could
11589  * be used by some tasks.
11590  * We consider that a group has spare capacity if the number of task is
11591  * smaller than the number of CPUs or if the utilization is lower than the
11592  * available capacity for CFS tasks.
11593  * For the latter, we use a threshold to stabilize the state, to take into
11594  * account the variance of the tasks' load and to return true if the available
11595  * capacity in meaningful for the load balancer.
11596  * As an example, an available capacity of 1% can appear but it doesn't make
11597  * any benefit for the load balance.
11598  */
11599 static inline bool
11600 group_has_capacity(unsigned int imbalance_pct, struct sg_lb_stats *sgs)
11601 {
11602 	if (sgs->sum_nr_running < sgs->group_weight)
11603 		return true;
11604 
11605 	if ((sgs->group_capacity * imbalance_pct) <
11606 			(sgs->group_runnable * 100))
11607 		return false;
11608 
11609 	if ((sgs->group_capacity * 100) >
11610 			(sgs->group_util * imbalance_pct))
11611 		return true;
11612 
11613 	return false;
11614 }
11615 
11616 /*
11617  *  group_is_overloaded returns true if the group has more tasks than it can
11618  *  handle.
11619  *  group_is_overloaded is not equals to !group_has_capacity because a group
11620  *  with the exact right number of tasks, has no more spare capacity but is not
11621  *  overloaded so both group_has_capacity and group_is_overloaded return
11622  *  false.
11623  */
11624 static inline bool
11625 group_is_overloaded(unsigned int imbalance_pct, struct sg_lb_stats *sgs)
11626 {
11627 	/*
11628 	 * With EAS and uclamp, 1 CPU in the group must be overutilized to
11629 	 * consider the group overloaded.
11630 	 */
11631 	if (sched_energy_enabled() && !sgs->group_overutilized)
11632 		return false;
11633 
11634 	if (sgs->sum_nr_running <= sgs->group_weight)
11635 		return false;
11636 
11637 	if ((sgs->group_capacity * 100) <
11638 			(sgs->group_util * imbalance_pct))
11639 		return true;
11640 
11641 	if ((sgs->group_capacity * imbalance_pct) <
11642 			(sgs->group_runnable * 100))
11643 		return true;
11644 
11645 	return false;
11646 }
11647 
11648 static inline enum
11649 group_type group_classify(unsigned int imbalance_pct,
11650 			  struct sched_group *group,
11651 			  struct sg_lb_stats *sgs)
11652 {
11653 	if (group_is_overloaded(imbalance_pct, sgs))
11654 		return group_overloaded;
11655 
11656 	if (sgs->group_llc_balance)
11657 		return group_llc_balance;
11658 
11659 	if (sg_imbalanced(group))
11660 		return group_imbalanced;
11661 
11662 	if (sgs->group_asym_packing)
11663 		return group_asym_packing;
11664 
11665 	if (sgs->group_smt_balance)
11666 		return group_smt_balance;
11667 
11668 	if (sgs->group_misfit_task_load)
11669 		return group_misfit_task;
11670 
11671 	if (!group_has_capacity(imbalance_pct, sgs))
11672 		return group_fully_busy;
11673 
11674 	return group_has_spare;
11675 }
11676 
11677 /**
11678  * sched_use_asym_prio - Check whether asym_packing priority must be used
11679  * @sd:		The scheduling domain of the load balancing
11680  * @cpu:	A CPU
11681  *
11682  * Always use CPU priority when balancing load between SMT siblings. When
11683  * balancing load between cores, it is not sufficient that @cpu is idle. Only
11684  * use CPU priority if the whole core is idle.
11685  *
11686  * Returns: True if the priority of @cpu must be followed. False otherwise.
11687  */
11688 static bool sched_use_asym_prio(struct sched_domain *sd, int cpu)
11689 {
11690 	if (!(sd->flags & SD_ASYM_PACKING))
11691 		return false;
11692 
11693 	if (!sched_smt_active())
11694 		return true;
11695 
11696 	return sd->flags & SD_SHARE_CPUCAPACITY || is_core_idle(cpu);
11697 }
11698 
11699 static inline bool sched_asym(struct sched_domain *sd, int dst_cpu, int src_cpu)
11700 {
11701 	/*
11702 	 * First check if @dst_cpu can do asym_packing load balance. Only do it
11703 	 * if it has higher priority than @src_cpu.
11704 	 */
11705 	return sched_use_asym_prio(sd, dst_cpu) &&
11706 		sched_asym_prefer(dst_cpu, src_cpu);
11707 }
11708 
11709 /**
11710  * sched_group_asym - Check if the destination CPU can do asym_packing balance
11711  * @env:	The load balancing environment
11712  * @sgs:	Load-balancing statistics of the candidate busiest group
11713  * @group:	The candidate busiest group
11714  *
11715  * @env::dst_cpu can do asym_packing if it has higher priority than the
11716  * preferred CPU of @group.
11717  *
11718  * Return: true if @env::dst_cpu can do with asym_packing load balance. False
11719  * otherwise.
11720  */
11721 static inline bool
11722 sched_group_asym(struct lb_env *env, struct sg_lb_stats *sgs, struct sched_group *group)
11723 {
11724 	/*
11725 	 * CPU priorities do not make sense for SMT cores with more than one
11726 	 * busy sibling.
11727 	 */
11728 	if ((group->flags & SD_SHARE_CPUCAPACITY) &&
11729 	    (sgs->group_weight - sgs->idle_cpus != 1))
11730 		return false;
11731 
11732 	return sched_asym(env->sd, env->dst_cpu, READ_ONCE(group->asym_prefer_cpu));
11733 }
11734 
11735 /* One group has more than one SMT CPU while the other group does not */
11736 static inline bool smt_vs_nonsmt_groups(struct sched_group *sg1,
11737 				    struct sched_group *sg2)
11738 {
11739 	if (!sg1 || !sg2)
11740 		return false;
11741 
11742 	return (sg1->flags & SD_SHARE_CPUCAPACITY) !=
11743 		(sg2->flags & SD_SHARE_CPUCAPACITY);
11744 }
11745 
11746 static inline bool smt_balance(struct lb_env *env, struct sg_lb_stats *sgs,
11747 			       struct sched_group *group)
11748 {
11749 	if (!env->idle)
11750 		return false;
11751 
11752 	/*
11753 	 * For SMT source group, it is better to move a task
11754 	 * to a CPU that doesn't have multiple tasks sharing its CPU capacity.
11755 	 * Note that if a group has a single SMT, SD_SHARE_CPUCAPACITY
11756 	 * will not be on.
11757 	 */
11758 	if (group->flags & SD_SHARE_CPUCAPACITY &&
11759 	    sgs->sum_h_nr_running > 1)
11760 		return true;
11761 
11762 	return false;
11763 }
11764 
11765 static inline long sibling_imbalance(struct lb_env *env,
11766 				    struct sd_lb_stats *sds,
11767 				    struct sg_lb_stats *busiest,
11768 				    struct sg_lb_stats *local)
11769 {
11770 	int ncores_busiest, ncores_local;
11771 	long imbalance;
11772 
11773 	if (!env->idle || !busiest->sum_nr_running)
11774 		return 0;
11775 
11776 	ncores_busiest = sds->busiest->cores;
11777 	ncores_local = sds->local->cores;
11778 
11779 	if (ncores_busiest == ncores_local) {
11780 		imbalance = busiest->sum_nr_running;
11781 		lsub_positive(&imbalance, local->sum_nr_running);
11782 		return imbalance;
11783 	}
11784 
11785 	/* Balance such that nr_running/ncores ratio are same on both groups */
11786 	imbalance = ncores_local * busiest->sum_nr_running;
11787 	lsub_positive(&imbalance, ncores_busiest * local->sum_nr_running);
11788 	/* Normalize imbalance and do rounding on normalization */
11789 	imbalance = 2 * imbalance + ncores_local + ncores_busiest;
11790 	imbalance /= ncores_local + ncores_busiest;
11791 
11792 	/* Take advantage of resource in an empty sched group */
11793 	if (imbalance <= 1 && local->sum_nr_running == 0 &&
11794 	    busiest->sum_nr_running > 1)
11795 		imbalance = 2;
11796 
11797 	return imbalance;
11798 }
11799 
11800 static inline bool
11801 sched_reduced_capacity(struct rq *rq, struct sched_domain *sd)
11802 {
11803 	/*
11804 	 * When there is more than 1 task, the group_overloaded case already
11805 	 * takes care of cpu with reduced capacity
11806 	 */
11807 	if (rq->cfs.h_nr_runnable != 1)
11808 		return false;
11809 
11810 	return check_cpu_capacity(rq, sd);
11811 }
11812 
11813 #ifdef CONFIG_SCHED_CACHE
11814 /*
11815  * Record the statistics for this scheduler group for later
11816  * use. These values guide load balancing on aggregating tasks
11817  * to a LLC.
11818  */
11819 static void record_sg_llc_stats(struct lb_env *env,
11820 				struct sg_lb_stats *sgs,
11821 				struct sched_group *group)
11822 {
11823 	struct sched_domain_shared *sd_share;
11824 	int cpu;
11825 
11826 	if (!sched_cache_enabled() || env->idle == CPU_NEWLY_IDLE)
11827 		return;
11828 
11829 	/* Only care about sched domain spanning multiple LLCs */
11830 	if (env->sd->child != rcu_dereference_all(per_cpu(sd_llc, env->dst_cpu)))
11831 		return;
11832 
11833 	/*
11834 	 * At this point we know this group spans a LLC domain.
11835 	 * Record the statistic of this group in its corresponding
11836 	 * shared LLC domain.
11837 	 * Note: sd_share cannot be obtained via sd->child->shared,
11838 	 * because the latter refers to the domain that covers the
11839 	 * local group. Instead, sd_share should be located using
11840 	 * the first CPU of the LLC group.
11841 	 */
11842 	cpu = cpumask_first(sched_group_span(group));
11843 	sd_share = rcu_dereference_all(per_cpu(sd_llc_shared, cpu));
11844 	if (!sd_share)
11845 		return;
11846 
11847 	if (READ_ONCE(sd_share->util_avg) != sgs->group_util)
11848 		WRITE_ONCE(sd_share->util_avg, sgs->group_util);
11849 
11850 	if (unlikely(READ_ONCE(sd_share->capacity) != sgs->group_capacity))
11851 		WRITE_ONCE(sd_share->capacity, sgs->group_capacity);
11852 }
11853 
11854 /*
11855  * Do LLC balance on sched group that contains LLC, and have tasks preferring
11856  * to run on LLC in idle dst_cpu.
11857  */
11858 static inline bool llc_balance(struct lb_env *env, struct sg_lb_stats *sgs,
11859 			       struct sched_group *group)
11860 {
11861 	if (!sched_cache_enabled())
11862 		return false;
11863 
11864 	if (env->sd->flags & SD_SHARE_LLC)
11865 		return false;
11866 
11867 	/*
11868 	 * Skip cache aware tagging if nr_balanced_failed is sufficiently high.
11869 	 * Threshold of cache_nice_tries is set to 1 higher than nr_balance_failed
11870 	 * to avoid excessive task migration at the same time.
11871 	 */
11872 	if (env->sd->nr_balance_failed >= env->sd->cache_nice_tries + 1)
11873 		return false;
11874 
11875 	if (sgs->nr_pref_dst_llc &&
11876 	    can_migrate_llc(cpumask_first(sched_group_span(group)),
11877 			    env->dst_cpu, 0, true) == mig_llc)
11878 		return true;
11879 
11880 	return false;
11881 }
11882 
11883 static bool update_llc_busiest(struct lb_env *env,
11884 			       struct sg_lb_stats *busiest,
11885 			       struct sg_lb_stats *sgs)
11886 {
11887 	/*
11888 	 * There are more tasks that want to run on dst_cpu's LLC.
11889 	 */
11890 	return sgs->nr_pref_dst_llc > busiest->nr_pref_dst_llc;
11891 }
11892 #else
11893 static inline void record_sg_llc_stats(struct lb_env *env, struct sg_lb_stats *sgs,
11894 				       struct sched_group *group)
11895 {
11896 }
11897 
11898 static inline bool llc_balance(struct lb_env *env, struct sg_lb_stats *sgs,
11899 			       struct sched_group *group)
11900 {
11901 	return false;
11902 }
11903 
11904 static bool update_llc_busiest(struct lb_env *env,
11905 			       struct sg_lb_stats *busiest,
11906 			       struct sg_lb_stats *sgs)
11907 {
11908 	return false;
11909 }
11910 #endif
11911 
11912 /**
11913  * update_sg_lb_stats - Update sched_group's statistics for load balancing.
11914  * @env: The load balancing environment.
11915  * @sds: Load-balancing data with statistics of the local group.
11916  * @group: sched_group whose statistics are to be updated.
11917  * @sgs: variable to hold the statistics for this group.
11918  * @sg_overloaded: sched_group is overloaded
11919  */
11920 static inline void update_sg_lb_stats(struct lb_env *env,
11921 				      struct sd_lb_stats *sds,
11922 				      struct sched_group *group,
11923 				      struct sg_lb_stats *sgs,
11924 				      bool *sg_overloaded)
11925 {
11926 	int i, nr_running, local_group, sd_flags = env->sd->flags;
11927 	bool balancing_at_rd = !env->sd->parent;
11928 
11929 	memset(sgs, 0, sizeof(*sgs));
11930 
11931 	local_group = group == sds->local;
11932 
11933 	for_each_cpu_and(i, sched_group_span(group), env->cpus) {
11934 		struct rq *rq = cpu_rq(i);
11935 		unsigned long load = cpu_load(rq);
11936 
11937 		sgs->group_load += load;
11938 		sgs->group_util += cpu_util_cfs(i);
11939 		sgs->group_runnable += cpu_runnable(rq);
11940 		sgs->sum_h_nr_running += rq->cfs.h_nr_runnable;
11941 
11942 		nr_running = rq->nr_running;
11943 		sgs->sum_nr_running += nr_running;
11944 
11945 		if (cpu_overutilized(i))
11946 			sgs->group_overutilized = 1;
11947 
11948 #ifdef CONFIG_SCHED_CACHE
11949 		if (sched_cache_enabled()) {
11950 			struct sched_domain *sd_tmp;
11951 			int dst_llc;
11952 
11953 			dst_llc = llc_id(env->dst_cpu);
11954 			if (llc_id(i) != dst_llc) {
11955 				sd_tmp = rcu_dereference_all(rq->sd);
11956 				if (sd_tmp && (unsigned int)dst_llc < sd_tmp->llc_max)
11957 					sgs->nr_pref_dst_llc += sd_tmp->llc_counts[dst_llc];
11958 			}
11959 		}
11960 #endif
11961 
11962 		/*
11963 		 * No need to call idle_cpu() if nr_running is not 0
11964 		 */
11965 		if (!nr_running && idle_cpu(i)) {
11966 			sgs->idle_cpus++;
11967 			/* Idle cpu can't have misfit task */
11968 			continue;
11969 		}
11970 
11971 		/* Overload indicator is only updated at root domain */
11972 		if (balancing_at_rd && nr_running > 1)
11973 			*sg_overloaded = 1;
11974 
11975 #ifdef CONFIG_NUMA_BALANCING
11976 		/* Only fbq_classify_group() uses this to classify NUMA groups */
11977 		if (sd_flags & SD_NUMA) {
11978 			sgs->nr_numa_running += rq->nr_numa_running;
11979 			sgs->nr_preferred_running += rq->nr_preferred_running;
11980 		}
11981 #endif
11982 		if (local_group)
11983 			continue;
11984 
11985 		if (sd_flags & SD_ASYM_CPUCAPACITY) {
11986 			if (rq->misfit_task_load) {
11987 				/*
11988 				 * Always mark the root domain overloaded so big
11989 				 * CPUs can pick up misfit tasks via newly idle
11990 				 * balance.
11991 				 */
11992 				if (balancing_at_rd)
11993 					*sg_overloaded = 1;
11994 
11995 				/*
11996 				 * Only account misfit load if @dst_cpu can
11997 				 * help; otherwise, the group may be classified
11998 				 * as misfit_task and update_sd_pick_busiest()
11999 				 * will skip it.
12000 				 */
12001 				if (capacity_greater(capacity_of(env->dst_cpu),
12002 						     group->sgc->max_capacity) &&
12003 				    (sgs->group_misfit_task_load < rq->misfit_task_load))
12004 					sgs->group_misfit_task_load = rq->misfit_task_load;
12005 			}
12006 		} else if (env->idle && sched_reduced_capacity(rq, env->sd)) {
12007 			/* Check for a task running on a CPU with reduced capacity */
12008 			if (sgs->group_misfit_task_load < load)
12009 				sgs->group_misfit_task_load = load;
12010 		}
12011 	}
12012 
12013 	sgs->group_capacity = group->sgc->capacity;
12014 
12015 	sgs->group_weight = group->group_weight;
12016 
12017 	if (!local_group) {
12018 		/* Check if dst CPU is idle and preferred to this group */
12019 		if (env->idle && sgs->sum_h_nr_running &&
12020 		    sched_group_asym(env, sgs, group))
12021 			sgs->group_asym_packing = 1;
12022 
12023 		/* Check for loaded SMT group to be balanced to dst CPU */
12024 		if (smt_balance(env, sgs, group))
12025 			sgs->group_smt_balance = 1;
12026 
12027 		/* Check for tasks in this group can be moved to their preferred LLC */
12028 		if (llc_balance(env, sgs, group))
12029 			sgs->group_llc_balance = 1;
12030 	}
12031 
12032 	sgs->group_type = group_classify(env->sd->imbalance_pct, group, sgs);
12033 
12034 	record_sg_llc_stats(env, sgs, group);
12035 	/* Computing avg_load makes sense only when group is overloaded */
12036 	if (sgs->group_type == group_overloaded)
12037 		sgs->avg_load = (sgs->group_load * SCHED_CAPACITY_SCALE) /
12038 				sgs->group_capacity;
12039 }
12040 
12041 /**
12042  * update_sd_pick_busiest - return 1 on busiest group
12043  * @env: The load balancing environment.
12044  * @sds: sched_domain statistics
12045  * @sg: sched_group candidate to be checked for being the busiest
12046  * @sgs: sched_group statistics
12047  *
12048  * Determine if @sg is a busier group than the previously selected
12049  * busiest group.
12050  *
12051  * Return: %true if @sg is a busier group than the previously selected
12052  * busiest group. %false otherwise.
12053  */
12054 static bool update_sd_pick_busiest(struct lb_env *env,
12055 				   struct sd_lb_stats *sds,
12056 				   struct sched_group *sg,
12057 				   struct sg_lb_stats *sgs)
12058 {
12059 	struct sg_lb_stats *busiest = &sds->busiest_stat;
12060 
12061 	/* Make sure that there is at least one task to pull */
12062 	if (!sgs->sum_h_nr_running)
12063 		return false;
12064 
12065 	/*
12066 	 * Don't try to pull misfit tasks we can't help.
12067 	 * We can use max_capacity here as reduction in capacity on some
12068 	 * CPUs in the group should either be possible to resolve
12069 	 * internally or be covered by avg_load imbalance (eventually).
12070 	 *
12071 	 * When SMT is active, only pull a misfit to dst_cpu if it is on a
12072 	 * fully idle core; otherwise the effective capacity of the core is
12073 	 * reduced and we may not actually provide more capacity than the
12074 	 * source.
12075 	 */
12076 	if ((env->sd->flags & SD_ASYM_CPUCAPACITY) &&
12077 	    (sgs->group_type == group_misfit_task) &&
12078 	    (!env->dst_core_idle ||
12079 	     !capacity_greater(capacity_of(env->dst_cpu), sg->sgc->max_capacity) ||
12080 	     sds->local_stat.group_type != group_has_spare))
12081 		return false;
12082 
12083 	/*
12084 	 * Candidate sg has no more than one task per CPU and has higher
12085 	 * per-CPU capacity. Migrating tasks to less capable CPUs may harm
12086 	 * throughput. Maximize throughput, power/energy consequences are not
12087 	 * considered.
12088 	 */
12089 	if ((env->sd->flags & SD_ASYM_CPUCAPACITY) &&
12090 	    (sgs->group_type <= group_fully_busy) &&
12091 	    (capacity_greater(sg->sgc->min_capacity, capacity_of(env->dst_cpu))))
12092 		return false;
12093 
12094 	if (sgs->group_type > busiest->group_type)
12095 		return true;
12096 
12097 	if (sgs->group_type < busiest->group_type)
12098 		return false;
12099 
12100 	/*
12101 	 * The candidate and the current busiest group are the same type of
12102 	 * group. Let check which one is the busiest according to the type.
12103 	 */
12104 
12105 	switch (sgs->group_type) {
12106 	case group_overloaded:
12107 		/* Select the overloaded group with highest avg_load. */
12108 		return sgs->avg_load > busiest->avg_load;
12109 
12110 	case group_llc_balance:
12111 		/* Select the group with most tasks preferring dst LLC */
12112 		return update_llc_busiest(env, busiest, sgs);
12113 
12114 	case group_imbalanced:
12115 		/*
12116 		 * Select the 1st imbalanced group as we don't have any way to
12117 		 * choose one more than another.
12118 		 */
12119 		return false;
12120 
12121 	case group_asym_packing:
12122 		/* Prefer to move from lowest priority CPU's work */
12123 		return sched_asym_prefer(READ_ONCE(sds->busiest->asym_prefer_cpu),
12124 					 READ_ONCE(sg->asym_prefer_cpu));
12125 
12126 	case group_misfit_task:
12127 		/*
12128 		 * If we have more than one misfit sg go with the biggest
12129 		 * misfit.
12130 		 */
12131 		return sgs->group_misfit_task_load > busiest->group_misfit_task_load;
12132 
12133 	case group_smt_balance:
12134 		/*
12135 		 * Check if we have spare CPUs on either SMT group to
12136 		 * choose has spare or fully busy handling.
12137 		 */
12138 		if (sgs->idle_cpus != 0 || busiest->idle_cpus != 0)
12139 			goto has_spare;
12140 
12141 		fallthrough;
12142 
12143 	case group_fully_busy:
12144 		/*
12145 		 * Select the fully busy group with highest avg_load. In
12146 		 * theory, there is no need to pull task from such kind of
12147 		 * group because tasks have all compute capacity that they need
12148 		 * but we can still improve the overall throughput by reducing
12149 		 * contention when accessing shared HW resources.
12150 		 *
12151 		 * XXX for now avg_load is not computed and always 0 so we
12152 		 * select the 1st one, except if @sg is composed of SMT
12153 		 * siblings.
12154 		 */
12155 
12156 		if (sgs->avg_load < busiest->avg_load)
12157 			return false;
12158 
12159 		if (sgs->avg_load == busiest->avg_load) {
12160 			/*
12161 			 * SMT sched groups need more help than non-SMT groups.
12162 			 * If @sg happens to also be SMT, either choice is good.
12163 			 */
12164 			if (sds->busiest->flags & SD_SHARE_CPUCAPACITY)
12165 				return false;
12166 		}
12167 
12168 		break;
12169 
12170 	case group_has_spare:
12171 		/*
12172 		 * Do not pick sg with SMT CPUs over sg with pure CPUs,
12173 		 * as we do not want to pull task off SMT core with one task
12174 		 * and make the core idle.
12175 		 */
12176 		if (smt_vs_nonsmt_groups(sds->busiest, sg)) {
12177 			if (sg->flags & SD_SHARE_CPUCAPACITY && sgs->sum_h_nr_running <= 1)
12178 				return false;
12179 			else
12180 				return true;
12181 		}
12182 has_spare:
12183 
12184 		/*
12185 		 * Select not overloaded group with lowest number of idle CPUs
12186 		 * and highest number of running tasks. We could also compare
12187 		 * the spare capacity which is more stable but it can end up
12188 		 * that the group has less spare capacity but finally more idle
12189 		 * CPUs which means less opportunity to pull tasks.
12190 		 */
12191 		if (sgs->idle_cpus > busiest->idle_cpus)
12192 			return false;
12193 		else if ((sgs->idle_cpus == busiest->idle_cpus) &&
12194 			 (sgs->sum_nr_running <= busiest->sum_nr_running))
12195 			return false;
12196 
12197 		break;
12198 	}
12199 
12200 	return true;
12201 }
12202 
12203 #ifdef CONFIG_NUMA_BALANCING
12204 static inline enum fbq_type fbq_classify_group(struct sg_lb_stats *sgs)
12205 {
12206 	if (sgs->sum_h_nr_running > sgs->nr_numa_running)
12207 		return regular;
12208 	if (sgs->sum_h_nr_running > sgs->nr_preferred_running)
12209 		return remote;
12210 	return all;
12211 }
12212 
12213 static inline enum fbq_type fbq_classify_rq(struct rq *rq)
12214 {
12215 	if (rq->nr_running > rq->nr_numa_running)
12216 		return regular;
12217 	if (rq->nr_running > rq->nr_preferred_running)
12218 		return remote;
12219 	return all;
12220 }
12221 #else /* !CONFIG_NUMA_BALANCING: */
12222 static inline enum fbq_type fbq_classify_group(struct sg_lb_stats *sgs)
12223 {
12224 	return all;
12225 }
12226 
12227 static inline enum fbq_type fbq_classify_rq(struct rq *rq)
12228 {
12229 	return regular;
12230 }
12231 #endif /* !CONFIG_NUMA_BALANCING */
12232 
12233 
12234 struct sg_lb_stats;
12235 
12236 /*
12237  * task_running_on_cpu - return 1 if @p is running on @cpu.
12238  */
12239 
12240 static unsigned int task_running_on_cpu(int cpu, struct task_struct *p)
12241 {
12242 	/* Task has no contribution or is new */
12243 	if (cpu != task_cpu(p) || !READ_ONCE(p->se.avg.last_update_time))
12244 		return 0;
12245 
12246 	if (task_on_rq_queued(p))
12247 		return 1;
12248 
12249 	return 0;
12250 }
12251 
12252 /**
12253  * idle_cpu_without - would a given CPU be idle without p ?
12254  * @cpu: the processor on which idleness is tested.
12255  * @p: task which should be ignored.
12256  *
12257  * Return: 1 if the CPU would be idle. 0 otherwise.
12258  */
12259 static int idle_cpu_without(int cpu, struct task_struct *p)
12260 {
12261 	struct rq *rq = cpu_rq(cpu);
12262 
12263 	if (rq->curr != rq->idle && rq->curr != p)
12264 		return 0;
12265 
12266 	/*
12267 	 * rq->nr_running can't be used but an updated version without the
12268 	 * impact of p on cpu must be used instead. The updated nr_running
12269 	 * be computed and tested before calling idle_cpu_without().
12270 	 */
12271 
12272 	if (rq->ttwu_pending)
12273 		return 0;
12274 
12275 	return 1;
12276 }
12277 
12278 /*
12279  * update_sg_wakeup_stats - Update sched_group's statistics for wakeup.
12280  * @sd: The sched_domain level to look for idlest group.
12281  * @group: sched_group whose statistics are to be updated.
12282  * @sgs: variable to hold the statistics for this group.
12283  * @p: The task for which we look for the idlest group/CPU.
12284  */
12285 static inline void update_sg_wakeup_stats(struct sched_domain *sd,
12286 					  struct sched_group *group,
12287 					  struct sg_lb_stats *sgs,
12288 					  struct task_struct *p)
12289 {
12290 	int i, nr_running;
12291 
12292 	memset(sgs, 0, sizeof(*sgs));
12293 
12294 	/* Assume that task can't fit any CPU of the group */
12295 	if (sd->flags & SD_ASYM_CPUCAPACITY)
12296 		sgs->group_misfit_task_load = 1;
12297 
12298 	for_each_cpu_and(i, sched_group_span(group), p->cpus_ptr) {
12299 		struct rq *rq = cpu_rq(i);
12300 		unsigned int local;
12301 
12302 		sgs->group_load += cpu_load_without(rq, p);
12303 		sgs->group_util += cpu_util_without(i, p);
12304 		sgs->group_runnable += cpu_runnable_without(rq, p);
12305 		local = task_running_on_cpu(i, p);
12306 		sgs->sum_h_nr_running += rq->cfs.h_nr_runnable - local;
12307 
12308 		nr_running = rq->nr_running - local;
12309 		sgs->sum_nr_running += nr_running;
12310 
12311 		/*
12312 		 * No need to call idle_cpu_without() if nr_running is not 0
12313 		 */
12314 		if (!nr_running && idle_cpu_without(i, p))
12315 			sgs->idle_cpus++;
12316 
12317 		/* Check if task fits in the CPU */
12318 		if (sd->flags & SD_ASYM_CPUCAPACITY &&
12319 		    sgs->group_misfit_task_load &&
12320 		    task_fits_cpu(p, i))
12321 			sgs->group_misfit_task_load = 0;
12322 
12323 	}
12324 
12325 	sgs->group_capacity = group->sgc->capacity;
12326 
12327 	sgs->group_weight = group->group_weight;
12328 
12329 	sgs->group_type = group_classify(sd->imbalance_pct, group, sgs);
12330 
12331 	/*
12332 	 * Computing avg_load makes sense only when group is fully busy or
12333 	 * overloaded
12334 	 */
12335 	if (sgs->group_type == group_fully_busy ||
12336 		sgs->group_type == group_overloaded)
12337 		sgs->avg_load = (sgs->group_load * SCHED_CAPACITY_SCALE) /
12338 				sgs->group_capacity;
12339 }
12340 
12341 static bool update_pick_idlest(struct sched_group *idlest,
12342 			       struct sg_lb_stats *idlest_sgs,
12343 			       struct sched_group *group,
12344 			       struct sg_lb_stats *sgs)
12345 {
12346 	if (sgs->group_type < idlest_sgs->group_type)
12347 		return true;
12348 
12349 	if (sgs->group_type > idlest_sgs->group_type)
12350 		return false;
12351 
12352 	/*
12353 	 * The candidate and the current idlest group are the same type of
12354 	 * group. Let check which one is the idlest according to the type.
12355 	 */
12356 
12357 	switch (sgs->group_type) {
12358 	case group_overloaded:
12359 	case group_fully_busy:
12360 		/* Select the group with lowest avg_load. */
12361 		if (idlest_sgs->avg_load <= sgs->avg_load)
12362 			return false;
12363 		break;
12364 
12365 	case group_llc_balance:
12366 	case group_imbalanced:
12367 	case group_asym_packing:
12368 	case group_smt_balance:
12369 		/* Those types are not used in the slow wakeup path */
12370 		return false;
12371 
12372 	case group_misfit_task:
12373 		/* Select group with the highest max capacity */
12374 		if (idlest->sgc->max_capacity >= group->sgc->max_capacity)
12375 			return false;
12376 		break;
12377 
12378 	case group_has_spare:
12379 		/* Select group with most idle CPUs */
12380 		if (idlest_sgs->idle_cpus > sgs->idle_cpus)
12381 			return false;
12382 
12383 		/* Select group with lowest group_util */
12384 		if (idlest_sgs->idle_cpus == sgs->idle_cpus &&
12385 			idlest_sgs->group_util <= sgs->group_util)
12386 			return false;
12387 
12388 		break;
12389 	}
12390 
12391 	return true;
12392 }
12393 
12394 /*
12395  * sched_balance_find_dst_group() finds and returns the least busy CPU group within the
12396  * domain.
12397  *
12398  * Assumes p is allowed on at least one CPU in sd.
12399  */
12400 static struct sched_group *
12401 sched_balance_find_dst_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
12402 {
12403 	struct sched_group *idlest = NULL, *local = NULL, *group = sd->groups;
12404 	struct sg_lb_stats local_sgs, tmp_sgs;
12405 	struct sg_lb_stats *sgs;
12406 	unsigned long imbalance;
12407 	struct sg_lb_stats idlest_sgs = {
12408 			.avg_load = UINT_MAX,
12409 			.group_type = group_overloaded,
12410 	};
12411 
12412 	do {
12413 		int local_group;
12414 
12415 		/* Skip over this group if it has no CPUs allowed */
12416 		if (!cpumask_intersects(sched_group_span(group),
12417 					p->cpus_ptr))
12418 			continue;
12419 
12420 		/* Skip over this group if no cookie matched */
12421 		if (!sched_group_cookie_match(cpu_rq(this_cpu), p, group))
12422 			continue;
12423 
12424 		local_group = cpumask_test_cpu(this_cpu,
12425 					       sched_group_span(group));
12426 
12427 		if (local_group) {
12428 			sgs = &local_sgs;
12429 			local = group;
12430 		} else {
12431 			sgs = &tmp_sgs;
12432 		}
12433 
12434 		update_sg_wakeup_stats(sd, group, sgs, p);
12435 
12436 		if (!local_group && update_pick_idlest(idlest, &idlest_sgs, group, sgs)) {
12437 			idlest = group;
12438 			idlest_sgs = *sgs;
12439 		}
12440 
12441 	} while (group = group->next, group != sd->groups);
12442 
12443 
12444 	/* There is no idlest group to push tasks to */
12445 	if (!idlest)
12446 		return NULL;
12447 
12448 	/* The local group has been skipped because of CPU affinity */
12449 	if (!local)
12450 		return idlest;
12451 
12452 	/*
12453 	 * If the local group is idler than the selected idlest group
12454 	 * don't try and push the task.
12455 	 */
12456 	if (local_sgs.group_type < idlest_sgs.group_type)
12457 		return NULL;
12458 
12459 	/*
12460 	 * If the local group is busier than the selected idlest group
12461 	 * try and push the task.
12462 	 */
12463 	if (local_sgs.group_type > idlest_sgs.group_type)
12464 		return idlest;
12465 
12466 	switch (local_sgs.group_type) {
12467 	case group_overloaded:
12468 	case group_fully_busy:
12469 
12470 		/* Calculate allowed imbalance based on load */
12471 		imbalance = scale_load_down(NICE_0_LOAD) *
12472 				(sd->imbalance_pct-100) / 100;
12473 
12474 		/*
12475 		 * When comparing groups across NUMA domains, it's possible for
12476 		 * the local domain to be very lightly loaded relative to the
12477 		 * remote domains but "imbalance" skews the comparison making
12478 		 * remote CPUs look much more favourable. When considering
12479 		 * cross-domain, add imbalance to the load on the remote node
12480 		 * and consider staying local.
12481 		 */
12482 
12483 		if ((sd->flags & SD_NUMA) &&
12484 		    ((idlest_sgs.avg_load + imbalance) >= local_sgs.avg_load))
12485 			return NULL;
12486 
12487 		/*
12488 		 * If the local group is less loaded than the selected
12489 		 * idlest group don't try and push any tasks.
12490 		 */
12491 		if (idlest_sgs.avg_load >= (local_sgs.avg_load + imbalance))
12492 			return NULL;
12493 
12494 		if (100 * local_sgs.avg_load <= sd->imbalance_pct * idlest_sgs.avg_load)
12495 			return NULL;
12496 		break;
12497 
12498 	case group_llc_balance:
12499 	case group_imbalanced:
12500 	case group_asym_packing:
12501 	case group_smt_balance:
12502 		/* Those type are not used in the slow wakeup path */
12503 		return NULL;
12504 
12505 	case group_misfit_task:
12506 		/* Select group with the highest max capacity */
12507 		if (local->sgc->max_capacity >= idlest->sgc->max_capacity)
12508 			return NULL;
12509 		break;
12510 
12511 	case group_has_spare:
12512 #ifdef CONFIG_NUMA
12513 		if (sd->flags & SD_NUMA) {
12514 			int imb_numa_nr = sd->imb_numa_nr;
12515 #ifdef CONFIG_NUMA_BALANCING
12516 			int idlest_cpu;
12517 			/*
12518 			 * If there is spare capacity at NUMA, try to select
12519 			 * the preferred node
12520 			 */
12521 			if (cpu_to_node(this_cpu) == p->numa_preferred_nid)
12522 				return NULL;
12523 
12524 			idlest_cpu = cpumask_first(sched_group_span(idlest));
12525 			if (cpu_to_node(idlest_cpu) == p->numa_preferred_nid)
12526 				return idlest;
12527 #endif /* CONFIG_NUMA_BALANCING */
12528 			/*
12529 			 * Otherwise, keep the task close to the wakeup source
12530 			 * and improve locality if the number of running tasks
12531 			 * would remain below threshold where an imbalance is
12532 			 * allowed while accounting for the possibility the
12533 			 * task is pinned to a subset of CPUs. If there is a
12534 			 * real need of migration, periodic load balance will
12535 			 * take care of it.
12536 			 */
12537 			if (p->nr_cpus_allowed != NR_CPUS) {
12538 				unsigned int w = cpumask_weight_and(p->cpus_ptr,
12539 								sched_group_span(local));
12540 				imb_numa_nr = min(w, sd->imb_numa_nr);
12541 			}
12542 
12543 			imbalance = abs(local_sgs.idle_cpus - idlest_sgs.idle_cpus);
12544 			if (!adjust_numa_imbalance(imbalance,
12545 						   local_sgs.sum_nr_running + 1,
12546 						   imb_numa_nr)) {
12547 				return NULL;
12548 			}
12549 		}
12550 #endif /* CONFIG_NUMA */
12551 
12552 		/*
12553 		 * Select group with highest number of idle CPUs. We could also
12554 		 * compare the utilization which is more stable but it can end
12555 		 * up that the group has less spare capacity but finally more
12556 		 * idle CPUs which means more opportunity to run task.
12557 		 */
12558 		if (local_sgs.idle_cpus >= idlest_sgs.idle_cpus)
12559 			return NULL;
12560 		break;
12561 	}
12562 
12563 	return idlest;
12564 }
12565 
12566 static void update_idle_cpu_scan(struct lb_env *env,
12567 				 unsigned long sum_util)
12568 {
12569 	struct sched_domain_shared *sd_share;
12570 	struct sched_domain *sd = env->sd;
12571 	int llc_weight, pct;
12572 	u64 x, y, tmp;
12573 	/*
12574 	 * Update the number of CPUs to scan in LLC domain, which could
12575 	 * be used as a hint in select_idle_cpu(). The update of sd_share
12576 	 * could be expensive because it is within a shared cache line.
12577 	 * So the write of this hint only occurs during periodic load
12578 	 * balancing, rather than CPU_NEWLY_IDLE, because the latter
12579 	 * can fire way more frequently than the former.
12580 	 */
12581 	if (!sched_feat(SIS_UTIL) || env->idle == CPU_NEWLY_IDLE)
12582 		return;
12583 
12584 	sd_share = sd->shared;
12585 	if (!sd_share)
12586 		return;
12587 
12588 	/*
12589 	 * The number of CPUs to search drops as sum_util increases, when
12590 	 * sum_util hits 85% or above, the scan stops.
12591 	 * The reason to choose 85% as the threshold is because this is the
12592 	 * imbalance_pct(117) when a LLC sched group is overloaded.
12593 	 *
12594 	 * let y = SCHED_CAPACITY_SCALE - p * x^2                       [1]
12595 	 * and y'= y / SCHED_CAPACITY_SCALE
12596 	 *
12597 	 * x is the ratio of sum_util compared to the CPU capacity:
12598 	 * x = sum_util / (llc_weight * SCHED_CAPACITY_SCALE)
12599 	 * y' is the ratio of CPUs to be scanned in the LLC domain,
12600 	 * and the number of CPUs to scan is calculated by:
12601 	 *
12602 	 * nr_scan = llc_weight * y'                                    [2]
12603 	 *
12604 	 * When x hits the threshold of overloaded, AKA, when
12605 	 * x = 100 / pct, y drops to 0. According to [1],
12606 	 * p should be SCHED_CAPACITY_SCALE * pct^2 / 10000
12607 	 *
12608 	 * Scale x by SCHED_CAPACITY_SCALE:
12609 	 * x' = sum_util / llc_weight;                                  [3]
12610 	 *
12611 	 * and finally [1] becomes:
12612 	 * y = SCHED_CAPACITY_SCALE -
12613 	 *     x'^2 * pct^2 / (10000 * SCHED_CAPACITY_SCALE)            [4]
12614 	 *
12615 	 */
12616 	/* equation [3] */
12617 	x = sum_util;
12618 	llc_weight = sd->span_weight;
12619 	do_div(x, llc_weight);
12620 
12621 	/* equation [4] */
12622 	pct = sd->imbalance_pct;
12623 	tmp = x * x * pct * pct;
12624 	do_div(tmp, 10000 * SCHED_CAPACITY_SCALE);
12625 	tmp = min_t(long, tmp, SCHED_CAPACITY_SCALE);
12626 	y = SCHED_CAPACITY_SCALE - tmp;
12627 
12628 	/* equation [2] */
12629 	y *= llc_weight;
12630 	do_div(y, SCHED_CAPACITY_SCALE);
12631 	if ((int)y != sd_share->nr_idle_scan)
12632 		WRITE_ONCE(sd_share->nr_idle_scan, (int)y);
12633 }
12634 
12635 /**
12636  * update_sd_lb_stats - Update sched_domain's statistics for load balancing.
12637  * @env: The load balancing environment.
12638  * @sds: variable to hold the statistics for this sched_domain.
12639  */
12640 
12641 static inline void update_sd_lb_stats(struct lb_env *env, struct sd_lb_stats *sds)
12642 {
12643 	struct sched_group *sg = env->sd->groups;
12644 	struct sg_lb_stats *local = &sds->local_stat;
12645 	struct sg_lb_stats tmp_sgs;
12646 	unsigned long sum_util = 0;
12647 	bool sg_overloaded = 0, sg_overutilized = 0;
12648 
12649 	env->dst_core_idle = !sched_smt_active() || is_core_idle(env->dst_cpu);
12650 
12651 	do {
12652 		struct sg_lb_stats *sgs = &tmp_sgs;
12653 		int local_group;
12654 
12655 		local_group = cpumask_test_cpu(env->dst_cpu, sched_group_span(sg));
12656 		if (local_group) {
12657 			sds->local = sg;
12658 			sgs = local;
12659 
12660 			if (env->idle != CPU_NEWLY_IDLE ||
12661 			    time_after_eq(jiffies, sg->sgc->next_update))
12662 				update_group_capacity(env->sd, env->dst_cpu);
12663 		}
12664 
12665 		update_sg_lb_stats(env, sds, sg, sgs, &sg_overloaded);
12666 
12667 		if (!local_group && update_sd_pick_busiest(env, sds, sg, sgs)) {
12668 			sds->busiest = sg;
12669 			sds->busiest_stat = *sgs;
12670 		}
12671 
12672 		sg_overutilized |= sgs->group_overutilized;
12673 
12674 		/* Now, start updating sd_lb_stats */
12675 		sds->total_load += sgs->group_load;
12676 		sds->total_capacity += sgs->group_capacity;
12677 
12678 		sum_util += sgs->group_util;
12679 		sg = sg->next;
12680 	} while (sg != env->sd->groups);
12681 
12682 	/*
12683 	 * Indicate that the child domain of the busiest group prefers tasks
12684 	 * go to a child's sibling domains first. NB the flags of a sched group
12685 	 * are those of the child domain.
12686 	 */
12687 	if (sds->busiest)
12688 		sds->prefer_sibling = !!(sds->busiest->flags & SD_PREFER_SIBLING);
12689 
12690 
12691 	if (env->sd->flags & SD_NUMA)
12692 		env->fbq_type = fbq_classify_group(&sds->busiest_stat);
12693 
12694 	if (!env->sd->parent) {
12695 		/* update overload indicator if we are at root domain */
12696 		set_rd_overloaded(env->dst_rq->rd, sg_overloaded);
12697 
12698 		/* Update over-utilization (tipping point, U >= 0) indicator */
12699 		set_rd_overutilized(env->dst_rq->rd, sg_overutilized);
12700 	} else if (sg_overutilized) {
12701 		set_rd_overutilized(env->dst_rq->rd, sg_overutilized);
12702 	}
12703 
12704 	update_idle_cpu_scan(env, sum_util);
12705 }
12706 
12707 /**
12708  * calculate_imbalance - Calculate the amount of imbalance present within the
12709  *			 groups of a given sched_domain during load balance.
12710  * @env: load balance environment
12711  * @sds: statistics of the sched_domain whose imbalance is to be calculated.
12712  */
12713 static inline void calculate_imbalance(struct lb_env *env, struct sd_lb_stats *sds)
12714 {
12715 	struct sg_lb_stats *local, *busiest;
12716 
12717 	local = &sds->local_stat;
12718 	busiest = &sds->busiest_stat;
12719 
12720 	if (busiest->group_type == group_misfit_task) {
12721 		if (env->sd->flags & SD_ASYM_CPUCAPACITY) {
12722 			/* Set imbalance to allow misfit tasks to be balanced. */
12723 			env->migration_type = migrate_misfit;
12724 			env->imbalance = 1;
12725 		} else {
12726 			/*
12727 			 * Set load imbalance to allow moving task from cpu
12728 			 * with reduced capacity.
12729 			 */
12730 			env->migration_type = migrate_load;
12731 			env->imbalance = busiest->group_misfit_task_load;
12732 		}
12733 		return;
12734 	}
12735 
12736 	if (busiest->group_type == group_asym_packing) {
12737 		/*
12738 		 * In case of asym capacity, we will try to migrate all load to
12739 		 * the preferred CPU.
12740 		 */
12741 		env->migration_type = migrate_task;
12742 		env->imbalance = busiest->sum_h_nr_running;
12743 		return;
12744 	}
12745 
12746 	if (busiest->group_type == group_smt_balance) {
12747 		/* Reduce number of tasks sharing CPU capacity */
12748 		env->migration_type = migrate_task;
12749 		env->imbalance = 1;
12750 		return;
12751 	}
12752 
12753 #ifdef CONFIG_SCHED_CACHE
12754 	if (busiest->group_type == group_llc_balance) {
12755 		/* Move a task that prefer local LLC */
12756 		env->migration_type = migrate_llc_task;
12757 		env->imbalance = 1;
12758 		return;
12759 	}
12760 #endif
12761 
12762 	if (busiest->group_type == group_imbalanced) {
12763 		/*
12764 		 * In the group_imb case we cannot rely on group-wide averages
12765 		 * to ensure CPU-load equilibrium, try to move any task to fix
12766 		 * the imbalance. The next load balance will take care of
12767 		 * balancing back the system.
12768 		 */
12769 		env->migration_type = migrate_task;
12770 		env->imbalance = 1;
12771 		return;
12772 	}
12773 
12774 	/*
12775 	 * Try to use spare capacity of local group without overloading it or
12776 	 * emptying busiest.
12777 	 */
12778 	if (local->group_type == group_has_spare) {
12779 		if ((busiest->group_type > group_fully_busy) &&
12780 		    !(env->sd->flags & SD_SHARE_LLC)) {
12781 			/*
12782 			 * If busiest is overloaded, try to fill spare
12783 			 * capacity. This might end up creating spare capacity
12784 			 * in busiest or busiest still being overloaded but
12785 			 * there is no simple way to directly compute the
12786 			 * amount of load to migrate in order to balance the
12787 			 * system.
12788 			 */
12789 			env->migration_type = migrate_util;
12790 			env->imbalance = max(local->group_capacity, local->group_util) -
12791 					 local->group_util;
12792 
12793 			/*
12794 			 * In some cases, the group's utilization is max or even
12795 			 * higher than capacity because of migrations but the
12796 			 * local CPU is (newly) idle. There is at least one
12797 			 * waiting task in this overloaded busiest group. Let's
12798 			 * try to pull it.
12799 			 */
12800 			if (env->idle && env->imbalance == 0) {
12801 				env->migration_type = migrate_task;
12802 				env->imbalance = 1;
12803 			}
12804 
12805 			return;
12806 		}
12807 
12808 		if (busiest->group_weight == 1 || sds->prefer_sibling) {
12809 			/*
12810 			 * When prefer sibling, evenly spread running tasks on
12811 			 * groups.
12812 			 */
12813 			env->migration_type = migrate_task;
12814 			env->imbalance = sibling_imbalance(env, sds, busiest, local);
12815 		} else {
12816 
12817 			/*
12818 			 * If there is no overload, we just want to even the number of
12819 			 * idle CPUs.
12820 			 */
12821 			env->migration_type = migrate_task;
12822 			env->imbalance = max_t(long, 0,
12823 					       (local->idle_cpus - busiest->idle_cpus));
12824 		}
12825 
12826 #ifdef CONFIG_NUMA
12827 		/* Consider allowing a small imbalance between NUMA groups */
12828 		if (env->sd->flags & SD_NUMA) {
12829 			env->imbalance = adjust_numa_imbalance(env->imbalance,
12830 							       local->sum_nr_running + 1,
12831 							       env->sd->imb_numa_nr);
12832 		}
12833 #endif
12834 
12835 		/* Number of tasks to move to restore balance */
12836 		env->imbalance >>= 1;
12837 
12838 		return;
12839 	}
12840 
12841 	/*
12842 	 * Local is fully busy but has to take more load to relieve the
12843 	 * busiest group
12844 	 */
12845 	if (local->group_type < group_overloaded) {
12846 		/*
12847 		 * Local will become overloaded so the avg_load metrics are
12848 		 * finally needed.
12849 		 */
12850 
12851 		local->avg_load = (local->group_load * SCHED_CAPACITY_SCALE) /
12852 				  local->group_capacity;
12853 
12854 		/*
12855 		 * If the local group is more loaded than the selected
12856 		 * busiest group don't try to pull any tasks.
12857 		 */
12858 		if (local->avg_load >= busiest->avg_load) {
12859 			env->imbalance = 0;
12860 			return;
12861 		}
12862 
12863 		sds->avg_load = (sds->total_load * SCHED_CAPACITY_SCALE) /
12864 				sds->total_capacity;
12865 
12866 		/*
12867 		 * If the local group is more loaded than the average system
12868 		 * load, don't try to pull any tasks.
12869 		 */
12870 		if (local->avg_load >= sds->avg_load) {
12871 			env->imbalance = 0;
12872 			return;
12873 		}
12874 
12875 	}
12876 
12877 	/*
12878 	 * Both group are or will become overloaded and we're trying to get all
12879 	 * the CPUs to the average_load, so we don't want to push ourselves
12880 	 * above the average load, nor do we wish to reduce the max loaded CPU
12881 	 * below the average load. At the same time, we also don't want to
12882 	 * reduce the group load below the group capacity. Thus we look for
12883 	 * the minimum possible imbalance.
12884 	 */
12885 	env->migration_type = migrate_load;
12886 	env->imbalance = min(
12887 		(busiest->avg_load - sds->avg_load) * busiest->group_capacity,
12888 		(sds->avg_load - local->avg_load) * local->group_capacity
12889 	) / SCHED_CAPACITY_SCALE;
12890 }
12891 
12892 /******* sched_balance_find_src_group() helpers end here *********************/
12893 
12894 /*
12895  * Decision matrix according to the local and busiest group type:
12896  *
12897  * busiest \ local has_spare fully_busy misfit asym imbalanced overloaded
12898  * has_spare        nr_idle   balanced   N/A    N/A  balanced   balanced
12899  * fully_busy       nr_idle   nr_idle    N/A    N/A  balanced   balanced
12900  * misfit_task      force     N/A        N/A    N/A  N/A        N/A
12901  * asym_packing     force     force      N/A    N/A  force      force
12902  * imbalanced       force     force      N/A    N/A  force      force
12903  * overloaded       force     force      N/A    N/A  force      avg_load
12904  *
12905  * N/A :      Not Applicable because already filtered while updating
12906  *            statistics.
12907  * balanced : The system is balanced for these 2 groups.
12908  * force :    Calculate the imbalance as load migration is probably needed.
12909  * avg_load : Only if imbalance is significant enough.
12910  * nr_idle :  dst_cpu is not busy and the number of idle CPUs is quite
12911  *            different in groups.
12912  */
12913 
12914 /**
12915  * sched_balance_find_src_group - Returns the busiest group within the sched_domain
12916  * if there is an imbalance.
12917  * @env: The load balancing environment.
12918  *
12919  * Also calculates the amount of runnable load which should be moved
12920  * to restore balance.
12921  *
12922  * Return:	- The busiest group if imbalance exists.
12923  */
12924 static struct sched_group *sched_balance_find_src_group(struct lb_env *env)
12925 {
12926 	struct sg_lb_stats *local, *busiest;
12927 	struct sd_lb_stats sds;
12928 
12929 	init_sd_lb_stats(&sds);
12930 
12931 	/*
12932 	 * Compute the various statistics relevant for load balancing at
12933 	 * this level.
12934 	 */
12935 	update_sd_lb_stats(env, &sds);
12936 
12937 	/* There is no busy sibling group to pull tasks from */
12938 	if (!sds.busiest)
12939 		goto out_balanced;
12940 
12941 	busiest = &sds.busiest_stat;
12942 
12943 	/* Misfit tasks should be dealt with regardless of the avg load */
12944 	if (busiest->group_type == group_misfit_task)
12945 		goto force_balance;
12946 
12947 	if (!is_rd_overutilized(env->dst_rq->rd) &&
12948 	    rcu_dereference_all(env->dst_rq->rd->pd))
12949 		goto out_balanced;
12950 
12951 	/* ASYM feature bypasses nice load balance check */
12952 	if (busiest->group_type == group_asym_packing)
12953 		goto force_balance;
12954 
12955 	/*
12956 	 * If the busiest group is imbalanced the below checks don't
12957 	 * work because they assume all things are equal, which typically
12958 	 * isn't true due to cpus_ptr constraints and the like.
12959 	 */
12960 	if (busiest->group_type == group_imbalanced)
12961 		goto force_balance;
12962 
12963 	local = &sds.local_stat;
12964 	/*
12965 	 * If the local group is busier than the selected busiest group
12966 	 * don't try and pull any tasks.
12967 	 */
12968 	if (local->group_type > busiest->group_type)
12969 		goto out_balanced;
12970 
12971 	/*
12972 	 * When groups are overloaded, use the avg_load to ensure fairness
12973 	 * between tasks.
12974 	 */
12975 	if (local->group_type == group_overloaded) {
12976 		/*
12977 		 * If the local group is more loaded than the selected
12978 		 * busiest group don't try to pull any tasks.
12979 		 */
12980 		if (local->avg_load >= busiest->avg_load)
12981 			goto out_balanced;
12982 
12983 		/* XXX broken for overlapping NUMA groups */
12984 		sds.avg_load = (sds.total_load * SCHED_CAPACITY_SCALE) /
12985 				sds.total_capacity;
12986 
12987 		/*
12988 		 * Don't pull any tasks if this group is already above the
12989 		 * domain average load.
12990 		 */
12991 		if (local->avg_load >= sds.avg_load)
12992 			goto out_balanced;
12993 
12994 		/*
12995 		 * If the busiest group is more loaded, use imbalance_pct to be
12996 		 * conservative.
12997 		 */
12998 		if (100 * busiest->avg_load <=
12999 				env->sd->imbalance_pct * local->avg_load)
13000 			goto out_balanced;
13001 	}
13002 
13003 	/*
13004 	 * Try to move all excess tasks to a sibling domain of the busiest
13005 	 * group's child domain.
13006 	 */
13007 	if (sds.prefer_sibling && local->group_type == group_has_spare &&
13008 	    (busiest->group_type == group_llc_balance ||
13009 	    sibling_imbalance(env, &sds, busiest, local) > 1))
13010 		goto force_balance;
13011 
13012 	if (busiest->group_type != group_overloaded) {
13013 		if (!env->idle) {
13014 			/*
13015 			 * If the busiest group is not overloaded (and as a
13016 			 * result the local one too) but this CPU is already
13017 			 * busy, let another idle CPU try to pull task.
13018 			 */
13019 			goto out_balanced;
13020 		}
13021 
13022 		if (busiest->group_type == group_smt_balance &&
13023 		    smt_vs_nonsmt_groups(sds.local, sds.busiest)) {
13024 			/* Let non SMT CPU pull from SMT CPU sharing with sibling */
13025 			goto force_balance;
13026 		}
13027 
13028 		if (busiest->group_weight > 1 &&
13029 		    local->idle_cpus <= (busiest->idle_cpus + 1)) {
13030 			/*
13031 			 * If the busiest group is not overloaded
13032 			 * and there is no imbalance between this and busiest
13033 			 * group wrt idle CPUs, it is balanced. The imbalance
13034 			 * becomes significant if the diff is greater than 1
13035 			 * otherwise we might end up to just move the imbalance
13036 			 * on another group. Of course this applies only if
13037 			 * there is more than 1 CPU per group.
13038 			 */
13039 			goto out_balanced;
13040 		}
13041 
13042 		if (busiest->sum_h_nr_running == 1) {
13043 			/*
13044 			 * busiest doesn't have any tasks waiting to run
13045 			 */
13046 			goto out_balanced;
13047 		}
13048 	}
13049 
13050 force_balance:
13051 	/* Looks like there is an imbalance. Compute it */
13052 	calculate_imbalance(env, &sds);
13053 	return env->imbalance ? sds.busiest : NULL;
13054 
13055 out_balanced:
13056 	env->imbalance = 0;
13057 	return NULL;
13058 }
13059 
13060 /*
13061  * sched_balance_find_src_rq - find the busiest runqueue among the CPUs in the group.
13062  */
13063 static struct rq *sched_balance_find_src_rq(struct lb_env *env,
13064 				     struct sched_group *group)
13065 {
13066 	struct rq *busiest = NULL, *rq;
13067 	unsigned long busiest_util = 0, busiest_load = 0, busiest_capacity = 1;
13068 	unsigned int __maybe_unused busiest_pref_llc = 0;
13069 	struct sched_domain __maybe_unused *sd_tmp;
13070 	unsigned int busiest_nr = 0;
13071 	int __maybe_unused dst_llc;
13072 	int i;
13073 
13074 	for_each_cpu_and(i, sched_group_span(group), env->cpus) {
13075 		unsigned long capacity, load, util;
13076 		unsigned int nr_running;
13077 		enum fbq_type rt;
13078 
13079 		rq = cpu_rq(i);
13080 		rt = fbq_classify_rq(rq);
13081 
13082 		/*
13083 		 * We classify groups/runqueues into three groups:
13084 		 *  - regular: there are !numa tasks
13085 		 *  - remote:  there are numa tasks that run on the 'wrong' node
13086 		 *  - all:     there is no distinction
13087 		 *
13088 		 * In order to avoid migrating ideally placed numa tasks,
13089 		 * ignore those when there's better options.
13090 		 *
13091 		 * If we ignore the actual busiest queue to migrate another
13092 		 * task, the next balance pass can still reduce the busiest
13093 		 * queue by moving tasks around inside the node.
13094 		 *
13095 		 * If we cannot move enough load due to this classification
13096 		 * the next pass will adjust the group classification and
13097 		 * allow migration of more tasks.
13098 		 *
13099 		 * Both cases only affect the total convergence complexity.
13100 		 */
13101 		if (rt > env->fbq_type)
13102 			continue;
13103 
13104 		nr_running = rq->cfs.h_nr_runnable;
13105 		if (!nr_running)
13106 			continue;
13107 
13108 		capacity = capacity_of(i);
13109 
13110 		/*
13111 		 * For ASYM_CPUCAPACITY domains, don't pick a CPU that could
13112 		 * eventually lead to active_balancing high->low capacity.
13113 		 * Higher per-CPU capacity is considered better than balancing
13114 		 * average load.
13115 		 */
13116 		if (env->sd->flags & SD_ASYM_CPUCAPACITY &&
13117 		    nr_running == 1) {
13118 			bool cluster_equal_cap = static_branch_unlikely(&sched_cluster_active) &&
13119 						 (get_actual_cpu_capacity(env->dst_cpu) ==
13120 						  get_actual_cpu_capacity(i));
13121 			bool smt_degraded_cap = sched_smt_active() && !is_core_idle(i);
13122 
13123 			/*
13124 			 * Busy SMT siblings reduce the capacity of CPU @i. Do
13125 			 * not skip it in this case.
13126 			 *
13127 			 * CONFIG_SCHED_CLUSTER requires balancing load across
13128 			 * clusters of identical capacity, accounting for
13129 			 * hardware and cpufreq pressure.
13130 			 */
13131 			if (!smt_degraded_cap && !cluster_equal_cap &&
13132 			    !capacity_greater(capacity_of(env->dst_cpu), capacity))
13133 				continue;
13134 		}
13135 
13136 		/*
13137 		 * Make sure we only pull tasks from a CPU of lower priority
13138 		 * when balancing between SMT siblings.
13139 		 *
13140 		 * If balancing between cores, let lower priority CPUs help
13141 		 * SMT cores with more than one busy sibling.
13142 		 */
13143 		if (sched_asym(env->sd, i, env->dst_cpu) && nr_running == 1)
13144 			continue;
13145 
13146 		switch (env->migration_type) {
13147 		case migrate_load:
13148 			/*
13149 			 * When comparing with load imbalance, use cpu_load()
13150 			 * which is not scaled with the CPU capacity.
13151 			 */
13152 			load = cpu_load(rq);
13153 
13154 			if (nr_running == 1 && load > env->imbalance &&
13155 			    !check_cpu_capacity(rq, env->sd))
13156 				break;
13157 
13158 			/*
13159 			 * For the load comparisons with the other CPUs,
13160 			 * consider the cpu_load() scaled with the CPU
13161 			 * capacity, so that the load can be moved away
13162 			 * from the CPU that is potentially running at a
13163 			 * lower capacity.
13164 			 *
13165 			 * Thus we're looking for max(load_i / capacity_i),
13166 			 * crosswise multiplication to rid ourselves of the
13167 			 * division works out to:
13168 			 * load_i * capacity_j > load_j * capacity_i;
13169 			 * where j is our previous maximum.
13170 			 */
13171 			if (load * busiest_capacity > busiest_load * capacity) {
13172 				busiest_load = load;
13173 				busiest_capacity = capacity;
13174 				busiest = rq;
13175 			}
13176 			break;
13177 
13178 		case migrate_util:
13179 			util = cpu_util_cfs_boost(i);
13180 
13181 			/*
13182 			 * Don't try to pull utilization from a CPU with one
13183 			 * running task. Whatever its utilization, we will fail
13184 			 * detach the task.
13185 			 */
13186 			if (nr_running <= 1)
13187 				continue;
13188 
13189 			if (busiest_util < util) {
13190 				busiest_util = util;
13191 				busiest = rq;
13192 			}
13193 			break;
13194 
13195 		case migrate_task:
13196 			if (busiest_nr < nr_running) {
13197 				busiest_nr = nr_running;
13198 				busiest = rq;
13199 			}
13200 			break;
13201 
13202 		case migrate_misfit:
13203 			/*
13204 			 * For ASYM_CPUCAPACITY domains with misfit tasks we
13205 			 * simply seek the "biggest" misfit task.
13206 			 */
13207 			if (rq->misfit_task_load > busiest_load) {
13208 				busiest_load = rq->misfit_task_load;
13209 				busiest = rq;
13210 			}
13211 
13212 			break;
13213 
13214 		case migrate_llc_task:
13215 #ifdef CONFIG_SCHED_CACHE
13216 			sd_tmp = rcu_dereference_all(rq->sd);
13217 			dst_llc = llc_id(env->dst_cpu);
13218 
13219 			if (sd_tmp && (unsigned)dst_llc < sd_tmp->llc_max) {
13220 				unsigned int this_pref_llc =
13221 					sd_tmp->llc_counts[dst_llc];
13222 
13223 				if (busiest_pref_llc < this_pref_llc) {
13224 					busiest_pref_llc = this_pref_llc;
13225 					busiest = rq;
13226 				}
13227 			}
13228 #endif
13229 			break;
13230 
13231 		}
13232 	}
13233 
13234 	return busiest;
13235 }
13236 
13237 /*
13238  * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
13239  * so long as it is large enough.
13240  */
13241 #define MAX_PINNED_INTERVAL	512
13242 
13243 static inline bool
13244 asym_active_balance(struct lb_env *env)
13245 {
13246 	/*
13247 	 * ASYM_PACKING needs to force migrate tasks from busy but lower
13248 	 * priority CPUs in order to pack all tasks in the highest priority
13249 	 * CPUs. When done between cores, do it only if the whole core if the
13250 	 * whole core is idle.
13251 	 *
13252 	 * If @env::src_cpu is an SMT core with busy siblings, let
13253 	 * the lower priority @env::dst_cpu help it. Do not follow
13254 	 * CPU priority.
13255 	 */
13256 	return env->idle && sched_use_asym_prio(env->sd, env->dst_cpu) &&
13257 	       (sched_asym_prefer(env->dst_cpu, env->src_cpu) ||
13258 		!sched_use_asym_prio(env->sd, env->src_cpu));
13259 }
13260 
13261 static inline bool
13262 imbalanced_active_balance(struct lb_env *env)
13263 {
13264 	struct sched_domain *sd = env->sd;
13265 
13266 	/*
13267 	 * The imbalanced case includes the case of pinned tasks preventing a fair
13268 	 * distribution of the load on the system but also the even distribution of the
13269 	 * threads on a system with spare capacity
13270 	 */
13271 	if ((env->migration_type == migrate_task) &&
13272 	    (sd->nr_balance_failed > sd->cache_nice_tries+2))
13273 		return 1;
13274 
13275 	return 0;
13276 }
13277 
13278 static int need_active_balance(struct lb_env *env)
13279 {
13280 	struct sched_domain *sd = env->sd;
13281 
13282 	if (alb_break_llc(env))
13283 		return 0;
13284 
13285 	if (asym_active_balance(env))
13286 		return 1;
13287 
13288 	if (imbalanced_active_balance(env))
13289 		return 1;
13290 
13291 	/*
13292 	 * The dst_cpu is idle and the src_cpu CPU has only 1 CFS task.
13293 	 * It's worth migrating the task if the src_cpu's capacity is reduced
13294 	 * because of other sched_class or IRQs if more capacity stays
13295 	 * available on dst_cpu.
13296 	 */
13297 	if (env->idle &&
13298 	    (env->src_rq->cfs.h_nr_runnable == 1)) {
13299 		if ((check_cpu_capacity(env->src_rq, sd)) &&
13300 		    (capacity_of(env->src_cpu)*sd->imbalance_pct < capacity_of(env->dst_cpu)*100))
13301 			return 1;
13302 	}
13303 
13304 	if (env->migration_type == migrate_misfit ||
13305 	    env->migration_type == migrate_llc_task)
13306 		return 1;
13307 
13308 	return 0;
13309 }
13310 
13311 static int active_load_balance_cpu_stop(void *data);
13312 
13313 static int should_we_balance(struct lb_env *env)
13314 {
13315 	struct cpumask *swb_cpus = this_cpu_cpumask_var_ptr(should_we_balance_tmpmask);
13316 	struct sched_group *sg = env->sd->groups;
13317 	int cpu, idle_smt = -1;
13318 
13319 	/*
13320 	 * Ensure the balancing environment is consistent; can happen
13321 	 * when the softirq triggers 'during' hotplug.
13322 	 */
13323 	if (!cpumask_test_cpu(env->dst_cpu, env->cpus))
13324 		return 0;
13325 
13326 	/*
13327 	 * In the newly idle case, we will allow all the CPUs
13328 	 * to do the newly idle load balance.
13329 	 *
13330 	 * However, we bail out if we already have tasks or a wakeup pending,
13331 	 * to optimize wakeup latency.
13332 	 */
13333 	if (env->idle == CPU_NEWLY_IDLE) {
13334 		if (env->dst_rq->nr_running > 0 || env->dst_rq->ttwu_pending)
13335 			return 0;
13336 		return 1;
13337 	}
13338 
13339 	cpumask_copy(swb_cpus, group_balance_mask(sg));
13340 	/* Try to find first idle CPU */
13341 	for_each_cpu_and(cpu, swb_cpus, env->cpus) {
13342 		if (!idle_cpu(cpu))
13343 			continue;
13344 
13345 		/*
13346 		 * Don't balance to idle SMT in busy core right away when
13347 		 * balancing cores, but remember the first idle SMT CPU for
13348 		 * later consideration.  Find CPU on an idle core first.
13349 		 */
13350 		if (sched_smt_active() &&
13351 		    !(env->sd->flags & SD_SHARE_CPUCAPACITY) &&
13352 		    !is_core_idle(cpu)) {
13353 			if (idle_smt == -1)
13354 				idle_smt = cpu;
13355 			/*
13356 			 * If the core is not idle, and first SMT sibling which is
13357 			 * idle has been found, then its not needed to check other
13358 			 * SMT siblings for idleness:
13359 			 */
13360 			cpumask_andnot(swb_cpus, swb_cpus, cpu_smt_mask(cpu));
13361 			continue;
13362 		}
13363 
13364 		/*
13365 		 * Are we the first idle core in a non-SMT domain or higher,
13366 		 * or the first idle CPU in a SMT domain?
13367 		 */
13368 		return cpu == env->dst_cpu;
13369 	}
13370 
13371 	/* Are we the first idle CPU with busy siblings? */
13372 	if (idle_smt != -1)
13373 		return idle_smt == env->dst_cpu;
13374 
13375 	/* Are we the first CPU of this group ? */
13376 	return group_balance_cpu(sg) == env->dst_cpu;
13377 }
13378 
13379 static void update_lb_imbalance_stat(struct lb_env *env, struct sched_domain *sd,
13380 				     enum cpu_idle_type idle)
13381 {
13382 	if (!schedstat_enabled())
13383 		return;
13384 
13385 	switch (env->migration_type) {
13386 	case migrate_load:
13387 		__schedstat_add(sd->lb_imbalance_load[idle], env->imbalance);
13388 		break;
13389 	case migrate_util:
13390 		__schedstat_add(sd->lb_imbalance_util[idle], env->imbalance);
13391 		break;
13392 	case migrate_task:
13393 		__schedstat_add(sd->lb_imbalance_task[idle], env->imbalance);
13394 		break;
13395 	case migrate_misfit:
13396 		__schedstat_add(sd->lb_imbalance_misfit[idle], env->imbalance);
13397 		break;
13398 	case migrate_llc_task:
13399 		break;
13400 	}
13401 }
13402 
13403 /*
13404  * This flag serializes load-balancing passes over large domains
13405  * (above the NODE topology level) - only one load-balancing instance
13406  * may run at a time, to reduce overhead on very large systems with
13407  * lots of CPUs and large NUMA distances.
13408  *
13409  * - Note that load-balancing passes triggered while another one
13410  *   is executing are skipped and not re-tried.
13411  *
13412  * - Also note that this does not serialize rebalance_domains()
13413  *   execution, as non-SD_SERIALIZE domains will still be
13414  *   load-balanced in parallel.
13415  */
13416 static atomic_t sched_balance_running = ATOMIC_INIT(0);
13417 
13418 /*
13419  * Check this_cpu to ensure it is balanced within domain. Attempt to move
13420  * tasks if there is an imbalance.
13421  */
13422 static int sched_balance_rq(int this_cpu, struct rq *this_rq,
13423 			struct sched_domain *sd, enum cpu_idle_type idle,
13424 			int *continue_balancing)
13425 {
13426 	int ld_moved, cur_ld_moved, active_balance = 0;
13427 	struct sched_domain *sd_parent = sd->parent;
13428 	struct sched_group *group;
13429 	struct rq *busiest;
13430 	struct rq_flags rf;
13431 	struct cpumask *cpus = this_cpu_cpumask_var_ptr(load_balance_mask);
13432 	struct lb_env env = {
13433 		.sd		= sd,
13434 		.dst_cpu	= this_cpu,
13435 		.dst_rq		= this_rq,
13436 		.dst_grpmask    = group_balance_mask(sd->groups),
13437 		.idle		= idle,
13438 		.loop_break	= SCHED_NR_MIGRATE_BREAK,
13439 		.cpus		= cpus,
13440 		.fbq_type	= all,
13441 		.tasks		= LIST_HEAD_INIT(env.tasks),
13442 	};
13443 	bool need_unlock = false;
13444 
13445 	cpumask_and(cpus, sched_domain_span(sd), cpu_active_mask);
13446 
13447 	schedstat_inc(sd->lb_count[idle]);
13448 
13449 redo:
13450 	if (!should_we_balance(&env)) {
13451 		*continue_balancing = 0;
13452 		goto out_balanced;
13453 	}
13454 
13455 	if (!need_unlock && (sd->flags & SD_SERIALIZE)) {
13456 		int zero = 0;
13457 		if (!atomic_try_cmpxchg_acquire(&sched_balance_running, &zero, 1))
13458 			goto out_balanced;
13459 
13460 		need_unlock = true;
13461 	}
13462 
13463 	group = sched_balance_find_src_group(&env);
13464 	if (!group) {
13465 		schedstat_inc(sd->lb_nobusyg[idle]);
13466 		goto out_balanced;
13467 	}
13468 
13469 	busiest = sched_balance_find_src_rq(&env, group);
13470 	if (!busiest) {
13471 		schedstat_inc(sd->lb_nobusyq[idle]);
13472 		goto out_balanced;
13473 	}
13474 
13475 	WARN_ON_ONCE(busiest == env.dst_rq);
13476 
13477 	update_lb_imbalance_stat(&env, sd, idle);
13478 
13479 	env.src_cpu = busiest->cpu;
13480 	env.src_rq = busiest;
13481 
13482 	ld_moved = 0;
13483 	/* Clear this flag as soon as we find a pullable task */
13484 	env.flags |= LBF_ALL_PINNED;
13485 	if (busiest->nr_running > 1) {
13486 		/*
13487 		 * Attempt to move tasks. If sched_balance_find_src_group has found
13488 		 * an imbalance but busiest->nr_running <= 1, the group is
13489 		 * still unbalanced. ld_moved simply stays zero, so it is
13490 		 * correctly treated as an imbalance.
13491 		 */
13492 		env.loop_max  = min(sysctl_sched_nr_migrate, busiest->nr_running);
13493 
13494 more_balance:
13495 		rq_lock_irqsave(busiest, &rf);
13496 		update_rq_clock(busiest);
13497 
13498 		/*
13499 		 * cur_ld_moved - load moved in current iteration
13500 		 * ld_moved     - cumulative load moved across iterations
13501 		 */
13502 		cur_ld_moved = detach_tasks(&env);
13503 
13504 		/*
13505 		 * We've detached some tasks from busiest_rq. Every
13506 		 * task is masked "TASK_ON_RQ_MIGRATING", so we can safely
13507 		 * unlock busiest->lock, and we are able to be sure
13508 		 * that nobody can manipulate the tasks in parallel.
13509 		 * See task_rq_lock() family for the details.
13510 		 */
13511 
13512 		rq_unlock(busiest, &rf);
13513 
13514 		if (cur_ld_moved) {
13515 			attach_tasks(&env);
13516 			ld_moved += cur_ld_moved;
13517 		}
13518 
13519 		local_irq_restore(rf.flags);
13520 
13521 		if (env.flags & LBF_NEED_BREAK) {
13522 			env.flags &= ~LBF_NEED_BREAK;
13523 			goto more_balance;
13524 		}
13525 
13526 		/*
13527 		 * Revisit (affine) tasks on src_cpu that couldn't be moved to
13528 		 * us and move them to an alternate dst_cpu in our sched_group
13529 		 * where they can run. The upper limit on how many times we
13530 		 * iterate on same src_cpu is dependent on number of CPUs in our
13531 		 * sched_group.
13532 		 *
13533 		 * This changes load balance semantics a bit on who can move
13534 		 * load to a given_cpu. In addition to the given_cpu itself
13535 		 * (or a ilb_cpu acting on its behalf where given_cpu is
13536 		 * nohz-idle), we now have balance_cpu in a position to move
13537 		 * load to given_cpu. In rare situations, this may cause
13538 		 * conflicts (balance_cpu and given_cpu/ilb_cpu deciding
13539 		 * _independently_ and at _same_ time to move some load to
13540 		 * given_cpu) causing excess load to be moved to given_cpu.
13541 		 * This however should not happen so much in practice and
13542 		 * moreover subsequent load balance cycles should correct the
13543 		 * excess load moved.
13544 		 */
13545 		if ((env.flags & LBF_DST_PINNED) && env.imbalance > 0) {
13546 
13547 			/* Prevent to re-select dst_cpu via env's CPUs */
13548 			__cpumask_clear_cpu(env.dst_cpu, env.cpus);
13549 
13550 			env.dst_rq	 = cpu_rq(env.new_dst_cpu);
13551 			env.dst_cpu	 = env.new_dst_cpu;
13552 			env.flags	&= ~LBF_DST_PINNED;
13553 			env.loop	 = 0;
13554 			env.loop_break	 = SCHED_NR_MIGRATE_BREAK;
13555 
13556 			/*
13557 			 * Go back to "more_balance" rather than "redo" since we
13558 			 * need to continue with same src_cpu.
13559 			 */
13560 			goto more_balance;
13561 		}
13562 
13563 		/*
13564 		 * We failed to reach balance because of affinity.
13565 		 */
13566 		if (sd_parent) {
13567 			int *group_imbalance = &sd_parent->groups->sgc->imbalance;
13568 
13569 			if ((env.flags & LBF_SOME_PINNED) && env.imbalance > 0)
13570 				*group_imbalance = 1;
13571 		}
13572 
13573 		/* All tasks on this runqueue were pinned by CPU affinity */
13574 		if (unlikely(env.flags & LBF_ALL_PINNED)) {
13575 			__cpumask_clear_cpu(cpu_of(busiest), cpus);
13576 			/*
13577 			 * Attempting to continue load balancing at the current
13578 			 * sched_domain level only makes sense if there are
13579 			 * active CPUs remaining as possible busiest CPUs to
13580 			 * pull load from which are not contained within the
13581 			 * destination group that is receiving any migrated
13582 			 * load.
13583 			 */
13584 			if (!cpumask_subset(cpus, env.dst_grpmask)) {
13585 				env.loop = 0;
13586 				env.loop_break = SCHED_NR_MIGRATE_BREAK;
13587 				goto redo;
13588 			}
13589 			goto out_all_pinned;
13590 		}
13591 	}
13592 
13593 	if (ld_moved) {
13594 		sd->nr_balance_failed = 0;
13595 		goto out_unbalanced;
13596 	}
13597 
13598 	schedstat_inc(sd->lb_failed[idle]);
13599 	/*
13600 	 * Increment the failure counter only on periodic balance.
13601 	 * We do not want newidle balance, which can be very
13602 	 * frequent, pollute the failure counter causing
13603 	 * excessive cache_hot migrations and active balances.
13604 	 *
13605 	 * Similarly for migration_misfit which is not related to
13606 	 * load/util migration, don't pollute nr_balance_failed.
13607 	 *
13608 	 * The same for cache aware scheduling's allowance for
13609 	 * load imbalance. If regular load balance does not
13610 	 * migrate task due to LLC locality, it is a expected
13611 	 * behavior and don't pollute nr_balance_failed.
13612 	 * See can_migrate_task().
13613 	 */
13614 	if (idle != CPU_NEWLY_IDLE &&
13615 	    env.migration_type != migrate_misfit &&
13616 	    !(env.flags & LBF_LLC_PINNED))
13617 		sd->nr_balance_failed++;
13618 
13619 	if (!need_active_balance(&env))
13620 		goto out_unbalanced;
13621 
13622 	scoped_guard (raw_spin_rq_lock_irqsave, busiest) {
13623 		/*
13624 		 * Don't kick the active_load_balance_cpu_stop,
13625 		 * if the curr task on busiest CPU can't be
13626 		 * moved to this_cpu:
13627 		 */
13628 		if (!cpumask_test_cpu(this_cpu, busiest->curr->cpus_ptr))
13629 			goto out_one_pinned;
13630 
13631 		/* Record that we found at least one task that could run on this_cpu */
13632 		env.flags &= ~LBF_ALL_PINNED;
13633 
13634 		/*
13635 		 * ->active_balance synchronizes accesses to
13636 		 * ->active_balance_work.  Once set, it's cleared
13637 		 * only after active load balance is finished.
13638 		 */
13639 		if (busiest->active_balance)
13640 			goto out_unbalanced;
13641 
13642 		/*
13643 		 * @busiest dropped its rq_lock in the middle of
13644 		 * scheduling out its ->curr task (->on_rq := 0), no
13645 		 * need to forcefully punt it away with active balance.
13646 		 */
13647 		if (!busiest->curr->on_rq)
13648 			goto out_unbalanced;
13649 
13650 		busiest->active_balance = 1;
13651 		busiest->push_cpu = this_cpu;
13652 		active_balance = 1;
13653 		preempt_disable();
13654 	}
13655 	if (active_balance) {
13656 		stop_one_cpu_nowait(cpu_of(busiest),
13657 				    active_load_balance_cpu_stop, busiest,
13658 				    &busiest->active_balance_work);
13659 	}
13660 	preempt_enable();
13661 
13662 out_unbalanced:
13663 	/* We were unbalanced, so reset the balancing interval */
13664 	sd->balance_interval = sd->min_interval;
13665 	goto out;
13666 
13667 out_balanced:
13668 	/*
13669 	 * We reach balance although we may have faced some affinity
13670 	 * constraints. Clear the imbalance flag only if other tasks got
13671 	 * a chance to move and fix the imbalance.
13672 	 */
13673 	if (sd_parent && !(env.flags & LBF_ALL_PINNED)) {
13674 		int *group_imbalance = &sd_parent->groups->sgc->imbalance;
13675 
13676 		if (*group_imbalance)
13677 			*group_imbalance = 0;
13678 	}
13679 
13680 out_all_pinned:
13681 	/*
13682 	 * We reach balance because all tasks are pinned at this level so
13683 	 * we can't migrate them. Let the imbalance flag set so parent level
13684 	 * can try to migrate them.
13685 	 */
13686 	schedstat_inc(sd->lb_balanced[idle]);
13687 
13688 	sd->nr_balance_failed = 0;
13689 
13690 out_one_pinned:
13691 	ld_moved = 0;
13692 
13693 	/*
13694 	 * sched_balance_newidle() disregards balance intervals, so we could
13695 	 * repeatedly reach this code, which would lead to balance_interval
13696 	 * skyrocketing in a short amount of time. Skip the balance_interval
13697 	 * increase logic to avoid that.
13698 	 *
13699 	 * Similarly misfit migration which is not necessarily an indication of
13700 	 * the system being busy and requires lb to backoff to let it settle
13701 	 * down.
13702 	 */
13703 	if (env.idle == CPU_NEWLY_IDLE ||
13704 	    env.migration_type == migrate_misfit)
13705 		goto out;
13706 
13707 	/* tune up the balancing interval */
13708 	if ((env.flags & LBF_ALL_PINNED &&
13709 	     sd->balance_interval < MAX_PINNED_INTERVAL) ||
13710 	    sd->balance_interval < sd->max_interval)
13711 		sd->balance_interval *= 2;
13712 out:
13713 	if (need_unlock)
13714 		atomic_set_release(&sched_balance_running, 0);
13715 
13716 	return ld_moved;
13717 }
13718 
13719 static inline unsigned long
13720 get_sd_balance_interval(struct sched_domain *sd, int cpu_busy)
13721 {
13722 	unsigned long interval = sd->balance_interval;
13723 
13724 	if (cpu_busy)
13725 		interval *= sd->busy_factor;
13726 
13727 	/* scale ms to jiffies */
13728 	interval = msecs_to_jiffies(interval);
13729 
13730 	/*
13731 	 * Reduce likelihood of busy balancing at higher domains racing with
13732 	 * balancing at lower domains by preventing their balancing periods
13733 	 * from being multiples of each other.
13734 	 */
13735 	if (cpu_busy)
13736 		interval -= 1;
13737 
13738 	interval = clamp(interval, 1UL, max_load_balance_interval);
13739 
13740 	return interval;
13741 }
13742 
13743 static inline void
13744 update_next_balance(struct sched_domain *sd, unsigned long *next_balance)
13745 {
13746 	unsigned long interval, next;
13747 
13748 	/* used by idle balance, so cpu_busy = 0 */
13749 	interval = get_sd_balance_interval(sd, 0);
13750 	next = sd->last_balance + interval;
13751 
13752 	if (time_after(*next_balance, next))
13753 		*next_balance = next;
13754 }
13755 
13756 /*
13757  * active_load_balance_cpu_stop is run by the CPU stopper. It pushes
13758  * running tasks off the busiest CPU onto idle CPUs. It requires at
13759  * least 1 task to be running on each physical CPU where possible, and
13760  * avoids physical / logical imbalances.
13761  */
13762 static int active_load_balance_cpu_stop(void *data)
13763 {
13764 	struct rq *busiest_rq = data;
13765 	int busiest_cpu = cpu_of(busiest_rq);
13766 	int target_cpu = busiest_rq->push_cpu;
13767 	struct rq *target_rq = cpu_rq(target_cpu);
13768 	struct sched_domain *sd;
13769 	struct task_struct *p = NULL;
13770 	struct rq_flags rf;
13771 
13772 	rq_lock_irq(busiest_rq, &rf);
13773 	/*
13774 	 * Between queueing the stop-work and running it is a hole in which
13775 	 * CPUs can become inactive. We should not move tasks from or to
13776 	 * inactive CPUs.
13777 	 */
13778 	if (!cpu_active(busiest_cpu) || !cpu_active(target_cpu))
13779 		goto out_unlock;
13780 
13781 	/* Make sure the requested CPU hasn't gone down in the meantime: */
13782 	if (unlikely(busiest_cpu != smp_processor_id() ||
13783 		     !busiest_rq->active_balance))
13784 		goto out_unlock;
13785 
13786 	/* Is there any task to move? */
13787 	if (busiest_rq->nr_running <= 1)
13788 		goto out_unlock;
13789 
13790 	/*
13791 	 * This condition is "impossible", if it occurs
13792 	 * we need to fix it. Originally reported by
13793 	 * Bjorn Helgaas on a 128-CPU setup.
13794 	 */
13795 	WARN_ON_ONCE(busiest_rq == target_rq);
13796 
13797 	/* Search for an sd spanning us and the target CPU. */
13798 	rcu_read_lock();
13799 	for_each_domain(target_cpu, sd) {
13800 		if (cpumask_test_cpu(busiest_cpu, sched_domain_span(sd)))
13801 			break;
13802 	}
13803 
13804 	if (likely(sd)) {
13805 		struct lb_env env = {
13806 			.sd		= sd,
13807 			.dst_cpu	= target_cpu,
13808 			.dst_rq		= target_rq,
13809 			.src_cpu	= busiest_rq->cpu,
13810 			.src_rq		= busiest_rq,
13811 			.idle		= CPU_IDLE,
13812 			.flags		= LBF_ACTIVE_LB,
13813 		};
13814 
13815 		schedstat_inc(sd->alb_count);
13816 		update_rq_clock(busiest_rq);
13817 
13818 		p = detach_one_task(&env);
13819 		if (p) {
13820 			schedstat_inc(sd->alb_pushed);
13821 			/* Active balancing done, reset the failure counter. */
13822 			sd->nr_balance_failed = 0;
13823 		} else {
13824 			schedstat_inc(sd->alb_failed);
13825 		}
13826 	}
13827 	rcu_read_unlock();
13828 out_unlock:
13829 	busiest_rq->active_balance = 0;
13830 	rq_unlock(busiest_rq, &rf);
13831 
13832 	if (p)
13833 		attach_one_task(target_rq, p);
13834 
13835 	local_irq_enable();
13836 
13837 	return 0;
13838 }
13839 
13840 /*
13841  * Scale the max sched_balance_rq interval with the number of CPUs in the system.
13842  * This trades load-balance latency on larger machines for less cross talk.
13843  */
13844 void update_max_interval(void)
13845 {
13846 	max_load_balance_interval = HZ*num_online_cpus()/10;
13847 }
13848 
13849 static inline void update_newidle_stats(struct sched_domain *sd, unsigned int success)
13850 {
13851 	sd->newidle_call++;
13852 	sd->newidle_success += success;
13853 
13854 	if (sd->newidle_call >= 1024) {
13855 		u64 now = sched_clock();
13856 		s64 delta = now - sd->newidle_stamp;
13857 		sd->newidle_stamp = now;
13858 		int ratio = 0;
13859 
13860 		if (delta < 0)
13861 			delta = 0;
13862 
13863 		if (sched_feat(NI_RATE)) {
13864 			/*
13865 			 * ratio  delta   freq
13866 			 *
13867 			 * 1024 -  4  s -  128 Hz
13868 			 *  512 -  2  s -  256 Hz
13869 			 *  256 -  1  s -  512 Hz
13870 			 *  128 - .5  s - 1024 Hz
13871 			 *   64 - .25 s - 2048 Hz
13872 			 */
13873 			ratio = delta >> 22;
13874 		}
13875 
13876 		ratio += sd->newidle_success;
13877 
13878 		sd->newidle_ratio = min(1024, ratio);
13879 		sd->newidle_call /= 2;
13880 		sd->newidle_success /= 2;
13881 	}
13882 }
13883 
13884 static inline bool
13885 update_newidle_cost(struct sched_domain *sd, u64 cost, unsigned int success)
13886 {
13887 	unsigned long next_decay = sd->last_decay_max_lb_cost + HZ;
13888 	unsigned long now = jiffies;
13889 
13890 	if (cost)
13891 		update_newidle_stats(sd, success);
13892 
13893 	if (cost > sd->max_newidle_lb_cost) {
13894 		/*
13895 		 * Track max cost of a domain to make sure to not delay the
13896 		 * next wakeup on the CPU.
13897 		 */
13898 		sd->max_newidle_lb_cost = cost;
13899 		sd->last_decay_max_lb_cost = now;
13900 
13901 	} else if (time_after(now, next_decay)) {
13902 		/*
13903 		 * Decay the newidle max times by ~1% per second to ensure that
13904 		 * it is not outdated and the current max cost is actually
13905 		 * shorter.
13906 		 */
13907 		sd->max_newidle_lb_cost = (sd->max_newidle_lb_cost * 253) / 256;
13908 		sd->last_decay_max_lb_cost = now;
13909 		return true;
13910 	}
13911 
13912 	return false;
13913 }
13914 
13915 /*
13916  * It checks each scheduling domain to see if it is due to be balanced,
13917  * and initiates a balancing operation if so.
13918  *
13919  * Balancing parameters are set up in init_sched_domains.
13920  */
13921 static void sched_balance_domains(struct rq *rq, enum cpu_idle_type idle)
13922 {
13923 	int continue_balancing = 1;
13924 	int cpu = rq->cpu;
13925 	int busy = idle != CPU_IDLE && !sched_idle_rq(rq);
13926 	unsigned long interval;
13927 	struct sched_domain *sd;
13928 	/* Earliest time when we have to do rebalance again */
13929 	unsigned long next_balance = jiffies + 60*HZ;
13930 	int update_next_balance = 0;
13931 	int need_decay = 0;
13932 	u64 max_cost = 0;
13933 
13934 	rcu_read_lock();
13935 	for_each_domain(cpu, sd) {
13936 		/*
13937 		 * Decay the newidle max times here because this is a regular
13938 		 * visit to all the domains.
13939 		 */
13940 		need_decay = update_newidle_cost(sd, 0, 0);
13941 		max_cost += sd->max_newidle_lb_cost;
13942 
13943 		/*
13944 		 * Stop the load balance at this level. There is another
13945 		 * CPU in our sched group which is doing load balancing more
13946 		 * actively.
13947 		 */
13948 		if (!continue_balancing) {
13949 			if (need_decay)
13950 				continue;
13951 			break;
13952 		}
13953 
13954 		interval = get_sd_balance_interval(sd, busy);
13955 		if (time_after_eq(jiffies, sd->last_balance + interval)) {
13956 			if (sched_balance_rq(cpu, rq, sd, idle, &continue_balancing)) {
13957 				/*
13958 				 * The LBF_DST_PINNED logic could have changed
13959 				 * env->dst_cpu, so we can't know our idle
13960 				 * state even if we migrated tasks. Update it.
13961 				 */
13962 				idle = idle_cpu(cpu);
13963 				busy = !idle && !sched_idle_rq(rq);
13964 			}
13965 			sd->last_balance = jiffies;
13966 			interval = get_sd_balance_interval(sd, busy);
13967 		}
13968 		if (time_after(next_balance, sd->last_balance + interval)) {
13969 			next_balance = sd->last_balance + interval;
13970 			update_next_balance = 1;
13971 		}
13972 	}
13973 	if (need_decay) {
13974 		/*
13975 		 * Ensure the rq-wide value also decays but keep it at a
13976 		 * reasonable floor to avoid funnies with rq->avg_idle.
13977 		 */
13978 		rq->max_idle_balance_cost =
13979 			max((u64)sysctl_sched_migration_cost, max_cost);
13980 	}
13981 	rcu_read_unlock();
13982 
13983 	/*
13984 	 * next_balance will be updated only when there is a need.
13985 	 * When the cpu is attached to null domain for ex, it will not be
13986 	 * updated.
13987 	 */
13988 	if (likely(update_next_balance))
13989 		rq->next_balance = next_balance;
13990 
13991 }
13992 
13993 static inline int on_null_domain(struct rq *rq)
13994 {
13995 	return unlikely(!rcu_dereference_sched(rq->sd));
13996 }
13997 
13998 #ifdef CONFIG_NO_HZ_COMMON
13999 /*
14000  * NOHZ idle load balancing (ILB) details:
14001  *
14002  * - When one of the busy CPUs notices that there may be an idle rebalancing
14003  *   needed, they will kick the idle load balancer, which then does idle
14004  *   load balancing for all the idle CPUs.
14005  */
14006 static inline int find_new_ilb(void)
14007 {
14008 	struct cpumask *ilb_cpus;
14009 	int ilb_cpu, fallback = -1;
14010 
14011 	lockdep_assert_irqs_disabled();
14012 
14013 	/*
14014 	 * Reuse the per-CPU select_rq_mask, which is protected from concurrent
14015 	 * use on this CPU by having interrupts disabled.
14016 	 */
14017 	ilb_cpus = this_cpu_cpumask_var_ptr(select_rq_mask);
14018 	cpumask_and(ilb_cpus, nohz.idle_cpus_mask,
14019 		    housekeeping_cpumask(HK_TYPE_KERNEL_NOISE));
14020 
14021 	for_each_cpu(ilb_cpu, ilb_cpus) {
14022 		if (!idle_cpu(ilb_cpu)) {
14023 			/*
14024 			 * Once an idle fallback exists, a busy CPU proves that
14025 			 * this core cannot be fully idle. Skip its siblings.
14026 			 */
14027 			if (sched_smt_active() && fallback >= 0)
14028 				cpumask_andnot(ilb_cpus, ilb_cpus, cpu_smt_mask(ilb_cpu));
14029 			continue;
14030 		}
14031 
14032 		/*
14033 		 * Running the idle load balancer on an idle sibling of a busy
14034 		 * SMT core can reduce the capacity available to its sibling. Prefer
14035 		 * a CPU whose entire core is idle, but retain the first idle CPU as
14036 		 * a fallback so idle balancing can still make progress when no fully
14037 		 * idle core exists.
14038 		 */
14039 		if (sched_smt_active() && !is_core_idle(ilb_cpu)) {
14040 			if (fallback < 0)
14041 				fallback = ilb_cpu;
14042 
14043 			/*
14044 			 * The core is not idle, so there is no need to check
14045 			 * any of its other SMT siblings.
14046 			 */
14047 			cpumask_andnot(ilb_cpus, ilb_cpus,
14048 				       cpu_smt_mask(ilb_cpu));
14049 			continue;
14050 		}
14051 
14052 		return ilb_cpu;
14053 	}
14054 
14055 	return fallback;
14056 }
14057 
14058 /*
14059  * Kick a CPU to do the NOHZ balancing, if it is time for it, via a cross-CPU
14060  * SMP function call (IPI).
14061  *
14062  * Prefer a CPU on a fully idle core in the HK_TYPE_KERNEL_NOISE housekeeping
14063  * set. Fall back to the first idle CPU when no fully idle core exists.
14064  */
14065 static void kick_ilb(unsigned int flags)
14066 {
14067 	int ilb_cpu;
14068 
14069 	/*
14070 	 * Increase nohz.next_balance only when if full ilb is triggered but
14071 	 * not if we only update stats.
14072 	 */
14073 	if (flags & NOHZ_BALANCE_KICK)
14074 		nohz.next_balance = jiffies+1;
14075 
14076 	ilb_cpu = find_new_ilb();
14077 	if (ilb_cpu < 0)
14078 		return;
14079 
14080 	/*
14081 	 * Don't bother if no new NOHZ balance work items for ilb_cpu,
14082 	 * i.e. all bits in flags are already set in ilb_cpu.
14083 	 */
14084 	if ((atomic_read(nohz_flags(ilb_cpu)) & flags) == flags)
14085 		return;
14086 
14087 	/*
14088 	 * Access to rq::nohz_csd is serialized by NOHZ_KICK_MASK; he who sets
14089 	 * the first flag owns it; cleared by nohz_csd_func().
14090 	 */
14091 	flags = atomic_fetch_or(flags, nohz_flags(ilb_cpu));
14092 	if (flags & NOHZ_KICK_MASK)
14093 		return;
14094 
14095 	/*
14096 	 * This way we generate an IPI on the target CPU which
14097 	 * is idle, and the softirq performing NOHZ idle load balancing
14098 	 * will be run before returning from the IPI.
14099 	 */
14100 	smp_call_function_single_async(ilb_cpu, &cpu_rq(ilb_cpu)->nohz_csd);
14101 }
14102 
14103 /*
14104  * Current decision point for kicking the idle load balancer in the presence
14105  * of idle CPUs in the system.
14106  */
14107 static void nohz_balancer_kick(struct rq *rq)
14108 {
14109 	unsigned long now = jiffies;
14110 	struct sched_domain_shared *sds;
14111 	struct sched_domain *sd;
14112 	int nr_busy, i, cpu = rq->cpu;
14113 	unsigned int flags = 0;
14114 
14115 	if (unlikely(rq->idle_balance))
14116 		return;
14117 
14118 	/*
14119 	 * We may be recently in ticked or tickless idle mode. At the first
14120 	 * busy tick after returning from idle, we will update the busy stats.
14121 	 */
14122 	nohz_balance_exit_idle(rq);
14123 
14124 	if (READ_ONCE(nohz.has_blocked_load) &&
14125 	    time_after(now, READ_ONCE(nohz.next_blocked)))
14126 		flags = NOHZ_STATS_KICK;
14127 
14128 	/*
14129 	 * Most of the time system is not 100% busy. i.e nohz.nr_cpus > 0
14130 	 * Skip the read if time is not due.
14131 	 *
14132 	 * If none are in tickless mode, there maybe a narrow window
14133 	 * (28 jiffies, HZ=1000) where flags maybe set and kick_ilb called.
14134 	 * But idle load balancing is not done as find_new_ilb fails.
14135 	 * That's very rare. So read nohz.nr_cpus only if time is due.
14136 	 */
14137 	if (time_before(now, nohz.next_balance))
14138 		goto out;
14139 
14140 	/*
14141 	 * None are in tickless mode and hence no need for NOHZ idle load
14142 	 * balancing
14143 	 */
14144 	if (unlikely(cpumask_empty(nohz.idle_cpus_mask)))
14145 		return;
14146 
14147 	if (rq->nr_running >= 2) {
14148 		flags = NOHZ_STATS_KICK | NOHZ_BALANCE_KICK;
14149 		goto out;
14150 	}
14151 
14152 	sd = rcu_dereference_all(rq->sd);
14153 	if (sd) {
14154 		/*
14155 		 * If there's a runnable CFS task and the current CPU has reduced
14156 		 * capacity, kick the ILB to see if there's a better CPU to run on:
14157 		 */
14158 		if (rq->cfs.h_nr_runnable >= 1 && check_cpu_capacity(rq, sd)) {
14159 			flags |= NOHZ_STATS_KICK | NOHZ_BALANCE_KICK;
14160 			goto out;
14161 		}
14162 	}
14163 
14164 	sd = rcu_dereference_all(per_cpu(sd_asym_packing, cpu));
14165 	if (sd) {
14166 		/*
14167 		 * When ASYM_PACKING; see if there's a more preferred CPU
14168 		 * currently idle; in which case, kick the ILB to move tasks
14169 		 * around.
14170 		 *
14171 		 * When balancing between cores, all the SMT siblings of the
14172 		 * preferred CPU must be idle.
14173 		 */
14174 		for_each_cpu_and(i, sched_domain_span(sd), nohz.idle_cpus_mask) {
14175 			if (sched_asym(sd, i, cpu)) {
14176 				flags |= NOHZ_STATS_KICK | NOHZ_BALANCE_KICK;
14177 				goto out;
14178 			}
14179 		}
14180 	}
14181 
14182 	sd = rcu_dereference_all(per_cpu(sd_asym_cpucapacity, cpu));
14183 	if (sd) {
14184 		/*
14185 		 * When ASYM_CPUCAPACITY; see if there's a higher capacity CPU
14186 		 * to run the misfit task on.
14187 		 */
14188 		if (check_misfit_status(rq))
14189 			flags |= NOHZ_STATS_KICK | NOHZ_BALANCE_KICK;
14190 
14191 		/*
14192 		 * For asymmetric systems, we do not want to nicely balance
14193 		 * cache use, instead we want to embrace asymmetry and only
14194 		 * ensure tasks have enough CPU capacity.
14195 		 *
14196 		 * Skip the LLC logic because it's not relevant in that case.
14197 		 */
14198 		goto out;
14199 	}
14200 
14201 	sds = rcu_dereference_all(per_cpu(sd_balance_shared, cpu));
14202 	if (sds) {
14203 		/*
14204 		 * If there is an imbalance between LLC domains (IOW we could
14205 		 * increase the overall cache utilization), we need a less-loaded LLC
14206 		 * domain to pull some load from. Likewise, we may need to spread
14207 		 * load within the current LLC domain (e.g. packed SMT cores but
14208 		 * other CPUs are idle). We can't really know from here how busy
14209 		 * the others are - so just get a NOHZ balance going if it looks
14210 		 * like this LLC domain has tasks we could move.
14211 		 */
14212 		nr_busy = atomic_read(&sds->nr_busy_cpus);
14213 		if (nr_busy > 1)
14214 			flags |= NOHZ_STATS_KICK | NOHZ_BALANCE_KICK;
14215 	}
14216 out:
14217 	if (READ_ONCE(nohz.needs_update))
14218 		flags |= NOHZ_NEXT_KICK;
14219 
14220 	if (flags)
14221 		kick_ilb(flags);
14222 }
14223 
14224 static void set_cpu_sd_state_busy(int cpu)
14225 {
14226 	struct sched_domain *sd;
14227 	sd = rcu_dereference_all(per_cpu(sd_llc, cpu));
14228 
14229 	/*
14230 	 * sd->nohz_idle only pairs with nr_busy_cpus on sd->shared; if this
14231 	 * domain has no shared object there is nothing to clear or account.
14232 	 */
14233 	if (!sd || !sd->shared || !sd->nohz_idle)
14234 		return;
14235 	sd->nohz_idle = 0;
14236 
14237 	atomic_inc(&sd->shared->nr_busy_cpus);
14238 }
14239 
14240 void nohz_balance_exit_idle(struct rq *rq)
14241 {
14242 	WARN_ON_ONCE(rq != this_rq());
14243 
14244 	if (likely(!rq->nohz_tick_stopped))
14245 		return;
14246 
14247 	rq->nohz_tick_stopped = 0;
14248 	cpumask_clear_cpu(rq->cpu, nohz.idle_cpus_mask);
14249 
14250 	set_cpu_sd_state_busy(rq->cpu);
14251 }
14252 
14253 static void set_cpu_sd_state_idle(int cpu)
14254 {
14255 	struct sched_domain *sd;
14256 	sd = rcu_dereference_all(per_cpu(sd_llc, cpu));
14257 
14258 	/* See set_cpu_sd_state_busy(): nohz_idle is only used with sd->shared. */
14259 	if (!sd || !sd->shared || sd->nohz_idle)
14260 		return;
14261 	sd->nohz_idle = 1;
14262 
14263 	atomic_dec(&sd->shared->nr_busy_cpus);
14264 }
14265 
14266 /*
14267  * This routine will record that the CPU is going idle with tick stopped.
14268  * This info will be used in performing idle load balancing in the future.
14269  */
14270 void nohz_balance_enter_idle(int cpu)
14271 {
14272 	struct rq *rq = cpu_rq(cpu);
14273 
14274 	WARN_ON_ONCE(cpu != smp_processor_id());
14275 
14276 	/* If this CPU is going down, then nothing needs to be done: */
14277 	if (!cpu_active(cpu))
14278 		return;
14279 
14280 	/*
14281 	 * Can be set safely without rq->lock held
14282 	 * If a clear happens, it will have evaluated last additions because
14283 	 * rq->lock is held during the check and the clear
14284 	 */
14285 	rq->has_blocked_load = 1;
14286 
14287 	/*
14288 	 * The tick is still stopped but load could have been added in the
14289 	 * meantime. We set the nohz.has_blocked_load flag to trig a check of the
14290 	 * *_avg. The CPU is already part of nohz.idle_cpus_mask so the clear
14291 	 * of nohz.has_blocked_load can only happen after checking the new load
14292 	 */
14293 	if (rq->nohz_tick_stopped)
14294 		goto out;
14295 
14296 	/* If we're a completely isolated CPU, we don't play: */
14297 	if (on_null_domain(rq))
14298 		return;
14299 
14300 	rq->nohz_tick_stopped = 1;
14301 
14302 	cpumask_set_cpu(cpu, nohz.idle_cpus_mask);
14303 
14304 	/*
14305 	 * Ensures that if nohz_idle_balance() fails to observe our
14306 	 * @idle_cpus_mask store, it must observe the @has_blocked_load
14307 	 * and @needs_update stores.
14308 	 */
14309 	smp_mb__after_atomic();
14310 
14311 	set_cpu_sd_state_idle(cpu);
14312 
14313 	WRITE_ONCE(nohz.needs_update, 1);
14314 out:
14315 	/*
14316 	 * Each time a cpu enter idle, we assume that it has blocked load and
14317 	 * enable the periodic update of the load of idle CPUs
14318 	 */
14319 	WRITE_ONCE(nohz.has_blocked_load, 1);
14320 }
14321 
14322 static bool update_nohz_stats(struct rq *rq)
14323 {
14324 	unsigned int cpu = rq->cpu;
14325 
14326 	if (!rq->has_blocked_load)
14327 		return false;
14328 
14329 	if (!cpumask_test_cpu(cpu, nohz.idle_cpus_mask))
14330 		return false;
14331 
14332 	if (!time_after(jiffies, READ_ONCE(rq->last_blocked_load_update_tick)))
14333 		return true;
14334 
14335 	sched_balance_update_blocked_averages(cpu);
14336 
14337 	return rq->has_blocked_load;
14338 }
14339 
14340 /*
14341  * Internal function that runs load balance for all idle CPUs. The load balance
14342  * can be a simple update of blocked load or a complete load balance with
14343  * tasks movement depending of flags.
14344  */
14345 static void _nohz_idle_balance(struct rq *this_rq, unsigned int flags)
14346 {
14347 	/* Earliest time when we have to do rebalance again */
14348 	unsigned long now = jiffies;
14349 	unsigned long next_balance = now + 60*HZ;
14350 	bool has_blocked_load = false;
14351 	int update_next_balance = 0;
14352 	int this_cpu = this_rq->cpu;
14353 	int balance_cpu;
14354 	struct rq *rq;
14355 
14356 	WARN_ON_ONCE((flags & NOHZ_KICK_MASK) == NOHZ_BALANCE_KICK);
14357 
14358 	/*
14359 	 * We assume there will be no idle load after this update and clear
14360 	 * the has_blocked_load flag. If a cpu enters idle in the mean time, it will
14361 	 * set the has_blocked_load flag and trigger another update of idle load.
14362 	 * Because a cpu that becomes idle, is added to idle_cpus_mask before
14363 	 * setting the flag, we are sure to not clear the state and not
14364 	 * check the load of an idle cpu.
14365 	 *
14366 	 * Same applies to idle_cpus_mask vs needs_update.
14367 	 */
14368 	if (flags & NOHZ_STATS_KICK)
14369 		WRITE_ONCE(nohz.has_blocked_load, 0);
14370 	if (flags & NOHZ_NEXT_KICK)
14371 		WRITE_ONCE(nohz.needs_update, 0);
14372 
14373 	/*
14374 	 * Ensures that if we miss the CPU, we must see the has_blocked_load
14375 	 * store from nohz_balance_enter_idle().
14376 	 */
14377 	smp_mb();
14378 
14379 	/*
14380 	 * Start with the next CPU after this_cpu so we will end with this_cpu and let a
14381 	 * chance for other idle cpu to pull load.
14382 	 */
14383 	for_each_cpu_wrap(balance_cpu,  nohz.idle_cpus_mask, this_cpu+1) {
14384 		if (!idle_cpu(balance_cpu))
14385 			continue;
14386 
14387 		/*
14388 		 * If this CPU gets work to do, stop the load balancing
14389 		 * work being done for other CPUs. Next load
14390 		 * balancing owner will pick it up.
14391 		 */
14392 		if (!idle_cpu(this_cpu) && need_resched()) {
14393 			if (flags & NOHZ_STATS_KICK)
14394 				has_blocked_load = true;
14395 			if (flags & NOHZ_NEXT_KICK)
14396 				WRITE_ONCE(nohz.needs_update, 1);
14397 			goto abort;
14398 		}
14399 
14400 		rq = cpu_rq(balance_cpu);
14401 
14402 		if (flags & NOHZ_STATS_KICK)
14403 			has_blocked_load |= update_nohz_stats(rq);
14404 
14405 		/*
14406 		 * If time for next balance is due,
14407 		 * do the balance.
14408 		 */
14409 		if (time_after_eq(jiffies, rq->next_balance)) {
14410 			struct rq_flags rf;
14411 
14412 			rq_lock_irqsave(rq, &rf);
14413 			update_rq_clock(rq);
14414 			rq_unlock_irqrestore(rq, &rf);
14415 
14416 			if (flags & NOHZ_BALANCE_KICK)
14417 				sched_balance_domains(rq, CPU_IDLE);
14418 		}
14419 
14420 		if (time_after(next_balance, rq->next_balance)) {
14421 			next_balance = rq->next_balance;
14422 			update_next_balance = 1;
14423 		}
14424 	}
14425 
14426 	/*
14427 	 * next_balance will be updated only when there is a need.
14428 	 * When the CPU is attached to null domain for ex, it will not be
14429 	 * updated.
14430 	 */
14431 	if (likely(update_next_balance))
14432 		nohz.next_balance = next_balance;
14433 
14434 	if (flags & NOHZ_STATS_KICK)
14435 		WRITE_ONCE(nohz.next_blocked,
14436 			   now + msecs_to_jiffies(LOAD_AVG_PERIOD));
14437 
14438 abort:
14439 	/* There is still blocked load, enable periodic update */
14440 	if (has_blocked_load)
14441 		WRITE_ONCE(nohz.has_blocked_load, 1);
14442 }
14443 
14444 /*
14445  * In CONFIG_NO_HZ_COMMON case, the idle balance kickee will do the
14446  * rebalancing for all the CPUs for whom scheduler ticks are stopped.
14447  */
14448 static bool nohz_idle_balance(struct rq *this_rq, enum cpu_idle_type idle)
14449 {
14450 	unsigned int flags = this_rq->nohz_idle_balance;
14451 
14452 	if (!flags)
14453 		return false;
14454 
14455 	this_rq->nohz_idle_balance = 0;
14456 
14457 	if (idle != CPU_IDLE)
14458 		return false;
14459 
14460 	_nohz_idle_balance(this_rq, flags);
14461 
14462 	return true;
14463 }
14464 
14465 /*
14466  * Check if we need to directly run the ILB for updating blocked load before
14467  * entering idle state. Here we run ILB directly without issuing IPIs.
14468  *
14469  * Note that when this function is called, the tick may not yet be stopped on
14470  * this CPU yet. nohz.idle_cpus_mask is updated only when tick is stopped and
14471  * cleared on the next busy tick. In other words, nohz.idle_cpus_mask updates
14472  * don't align with CPUs enter/exit idle to avoid bottlenecks due to high idle
14473  * entry/exit rate (usec). So it is possible that _nohz_idle_balance() is
14474  * called from this function on (this) CPU that's not yet in the mask. That's
14475  * OK because the goal of nohz_run_idle_balance() is to run ILB only for
14476  * updating the blocked load of already idle CPUs without waking up one of
14477  * those idle CPUs and outside the preempt disable / IRQ off phase of the local
14478  * cpu about to enter idle, because it can take a long time.
14479  */
14480 void nohz_run_idle_balance(int cpu)
14481 {
14482 	unsigned int flags;
14483 
14484 	flags = atomic_fetch_andnot(NOHZ_NEWILB_KICK, nohz_flags(cpu));
14485 
14486 	/*
14487 	 * Update the blocked load only if no SCHED_SOFTIRQ is about to happen
14488 	 * (i.e. NOHZ_STATS_KICK set) and will do the same.
14489 	 */
14490 	if ((flags == NOHZ_NEWILB_KICK) && !need_resched())
14491 		_nohz_idle_balance(cpu_rq(cpu), NOHZ_STATS_KICK);
14492 }
14493 
14494 static void nohz_newidle_balance(struct rq *this_rq)
14495 {
14496 	int this_cpu = this_rq->cpu;
14497 
14498 	/* Will wake up very soon. No time for doing anything else*/
14499 	if (this_rq->avg_idle < sysctl_sched_migration_cost)
14500 		return;
14501 
14502 	/* Don't need to update blocked load of idle CPUs*/
14503 	if (!READ_ONCE(nohz.has_blocked_load) ||
14504 	    time_before(jiffies, READ_ONCE(nohz.next_blocked)))
14505 		return;
14506 
14507 	/*
14508 	 * Set the need to trigger ILB in order to update blocked load
14509 	 * before entering idle state.
14510 	 */
14511 	atomic_or(NOHZ_NEWILB_KICK, nohz_flags(this_cpu));
14512 }
14513 
14514 #else /* !CONFIG_NO_HZ_COMMON: */
14515 static inline void nohz_balancer_kick(struct rq *rq) { }
14516 
14517 static inline bool nohz_idle_balance(struct rq *this_rq, enum cpu_idle_type idle)
14518 {
14519 	return false;
14520 }
14521 
14522 static inline void nohz_newidle_balance(struct rq *this_rq) { }
14523 #endif /* !CONFIG_NO_HZ_COMMON */
14524 
14525 /*
14526  * sched_balance_newidle is called by schedule() if this_cpu is about to become
14527  * idle. Attempts to pull tasks from other CPUs.
14528  *
14529  * Returns:
14530  *   < 0 - we released the lock and there are !fair tasks present
14531  *     0 - failed, no new tasks
14532  *   > 0 - success, new (fair) tasks present
14533  */
14534 static int sched_balance_newidle(struct rq *this_rq, struct rq_flags *rf)
14535 	__must_hold(__rq_lockp(this_rq))
14536 {
14537 	unsigned long next_balance = jiffies + HZ;
14538 	int this_cpu = this_rq->cpu;
14539 	int continue_balancing = 1;
14540 	u64 t0, t1, curr_cost = 0;
14541 	struct sched_domain *sd;
14542 	int pulled_task = 0;
14543 
14544 	update_misfit_status(NULL, this_rq);
14545 
14546 	/*
14547 	 * There is a task waiting to run. No need to search for one.
14548 	 * Return 0; the task will be enqueued when switching to idle.
14549 	 */
14550 	if (this_rq->ttwu_pending)
14551 		return 0;
14552 
14553 	/*
14554 	 * We must set idle_stamp _before_ calling sched_balance_rq()
14555 	 * for CPU_NEWLY_IDLE, such that we measure the this duration
14556 	 * as idle time.
14557 	 */
14558 	this_rq->idle_stamp = rq_clock(this_rq);
14559 
14560 	/*
14561 	 * Do not pull tasks towards !active CPUs...
14562 	 */
14563 	if (!cpu_active(this_cpu))
14564 		return 0;
14565 
14566 	/*
14567 	 * This is OK, because current is on_cpu, which avoids it being picked
14568 	 * for load-balance and preemption/IRQs are still disabled avoiding
14569 	 * further scheduler activity on it and we're being very careful to
14570 	 * re-start the picking loop.
14571 	 */
14572 	rq_unpin_lock(this_rq, rf);
14573 
14574 	sd = rcu_dereference_sched_domain(this_rq->sd);
14575 	if (!sd)
14576 		goto out;
14577 
14578 	if (!get_rd_overloaded(this_rq->rd) ||
14579 	    this_rq->avg_idle < sd->max_newidle_lb_cost) {
14580 
14581 		update_next_balance(sd, &next_balance);
14582 		goto out;
14583 	}
14584 
14585 	/*
14586 	 * Include sched_balance_update_blocked_averages() in the cost
14587 	 * calculation because it can be quite costly -- this ensures we skip
14588 	 * it when avg_idle gets to be very low.
14589 	 */
14590 	t0 = sched_clock_cpu(this_cpu);
14591 	__sched_balance_update_blocked_averages(this_rq);
14592 
14593 	rq_modified_begin(this_rq, &fair_sched_class);
14594 	raw_spin_rq_unlock(this_rq);
14595 
14596 	for_each_domain(this_cpu, sd) {
14597 		u64 domain_cost;
14598 
14599 		update_next_balance(sd, &next_balance);
14600 
14601 		if (this_rq->avg_idle < curr_cost + sd->max_newidle_lb_cost)
14602 			break;
14603 
14604 		if (sd->flags & SD_BALANCE_NEWIDLE) {
14605 			unsigned int weight = 1;
14606 
14607 			if (sched_feat(NI_RANDOM) && sd->newidle_ratio < 1024) {
14608 				/*
14609 				 * Throw a 1k sided dice; and only run
14610 				 * newidle_balance according to the success
14611 				 * rate.
14612 				 */
14613 				u32 d1k = sched_rng() % 1024;
14614 				weight = 1 + sd->newidle_ratio;
14615 				if (d1k > weight) {
14616 					update_newidle_stats(sd, 0);
14617 					continue;
14618 				}
14619 				weight = (1024 + weight/2) / weight;
14620 			}
14621 
14622 			pulled_task = sched_balance_rq(this_cpu, this_rq,
14623 						   sd, CPU_NEWLY_IDLE,
14624 						   &continue_balancing);
14625 
14626 			t1 = sched_clock_cpu(this_cpu);
14627 			domain_cost = t1 - t0;
14628 			curr_cost += domain_cost;
14629 			t0 = t1;
14630 
14631 			/*
14632 			 * Track max cost of a domain to make sure to not delay the
14633 			 * next wakeup on the CPU.
14634 			 */
14635 			update_newidle_cost(sd, domain_cost, weight * !!pulled_task);
14636 		}
14637 
14638 		/*
14639 		 * Stop searching for tasks to pull if there are
14640 		 * now runnable tasks on this rq.
14641 		 */
14642 		if (pulled_task || !continue_balancing)
14643 			break;
14644 	}
14645 
14646 	raw_spin_rq_lock(this_rq);
14647 
14648 	if (curr_cost > this_rq->max_idle_balance_cost)
14649 		this_rq->max_idle_balance_cost = curr_cost;
14650 
14651 	/*
14652 	 * While browsing the domains, we released the rq lock, a task could
14653 	 * have been enqueued in the meantime. Since we're not going idle,
14654 	 * pretend we pulled a task.
14655 	 */
14656 	if (this_rq->cfs.h_nr_queued && !pulled_task)
14657 		pulled_task = 1;
14658 
14659 	/* If a higher prio class was modified, restart the pick */
14660 	if (rq_modified_above(this_rq, &fair_sched_class))
14661 		pulled_task = -1;
14662 
14663 out:
14664 	/* Move the next balance forward */
14665 	if (time_after(this_rq->next_balance, next_balance))
14666 		this_rq->next_balance = next_balance;
14667 
14668 	if (pulled_task)
14669 		this_rq->idle_stamp = 0;
14670 	else
14671 		nohz_newidle_balance(this_rq);
14672 
14673 	rq_repin_lock(this_rq, rf);
14674 
14675 	return pulled_task;
14676 }
14677 
14678 /*
14679  * This softirq handler is triggered via SCHED_SOFTIRQ from two places:
14680  *
14681  * - directly from the local sched_tick() for periodic load balancing
14682  *
14683  * - indirectly from a remote sched_tick() for NOHZ idle balancing
14684  *   through the SMP cross-call nohz_csd_func()
14685  */
14686 static __latent_entropy void sched_balance_softirq(void)
14687 {
14688 	struct rq *this_rq = this_rq();
14689 	enum cpu_idle_type idle = this_rq->idle_balance;
14690 	/*
14691 	 * If this CPU has a pending NOHZ_BALANCE_KICK, then do the
14692 	 * balancing on behalf of the other idle CPUs whose ticks are
14693 	 * stopped. Do nohz_idle_balance *before* sched_balance_domains to
14694 	 * give the idle CPUs a chance to load balance. Else we may
14695 	 * load balance only within the local sched_domain hierarchy
14696 	 * and abort nohz_idle_balance altogether if we pull some load.
14697 	 */
14698 	if (nohz_idle_balance(this_rq, idle))
14699 		return;
14700 
14701 	/* normal load balance */
14702 	sched_balance_update_blocked_averages(this_rq->cpu);
14703 	sched_balance_domains(this_rq, idle);
14704 }
14705 
14706 /*
14707  * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
14708  */
14709 void sched_balance_trigger(struct rq *rq)
14710 {
14711 	/*
14712 	 * Don't need to rebalance while attached to NULL domain or
14713 	 * runqueue CPU is not active
14714 	 */
14715 	if (unlikely(on_null_domain(rq) || !cpu_active(cpu_of(rq))))
14716 		return;
14717 
14718 	if (time_after_eq(jiffies, rq->next_balance))
14719 		raise_softirq(SCHED_SOFTIRQ);
14720 
14721 	nohz_balancer_kick(rq);
14722 }
14723 
14724 static void rq_online_fair(struct rq *rq)
14725 {
14726 	update_sysctl();
14727 
14728 	update_runtime_enabled(rq);
14729 }
14730 
14731 static void rq_offline_fair(struct rq *rq)
14732 {
14733 	update_sysctl();
14734 
14735 	/* Ensure any throttled groups are reachable by pick_next_task */
14736 	unthrottle_offline_cfs_rqs(rq);
14737 
14738 	/* Ensure that we remove rq contribution to group share: */
14739 	clear_tg_offline_cfs_rqs(rq);
14740 }
14741 
14742 #ifdef CONFIG_SCHED_CORE
14743 static inline bool
14744 __entity_slice_used(struct sched_entity *se, int min_nr_tasks)
14745 {
14746 	u64 rtime = se->sum_exec_runtime - se->prev_sum_exec_runtime;
14747 	u64 slice = se->slice;
14748 
14749 	return (rtime * min_nr_tasks > slice);
14750 }
14751 
14752 #define MIN_NR_TASKS_DURING_FORCEIDLE	2
14753 static inline void task_tick_core(struct rq *rq, struct task_struct *curr)
14754 {
14755 	if (!sched_core_enabled(rq))
14756 		return;
14757 
14758 	/*
14759 	 * If runqueue has only one task which used up its slice and
14760 	 * if the sibling is forced idle, then trigger schedule to
14761 	 * give forced idle task a chance.
14762 	 *
14763 	 * __entity_slice_used() considers only this active rq and it gets the
14764 	 * whole slice. But during force idle, we have siblings acting
14765 	 * like a single runqueue and hence we need to consider runnable
14766 	 * tasks on this CPU and the forced idle CPU. Ideally, we should
14767 	 * go through the forced idle rq, but that would be a perf hit.
14768 	 * We can assume that the forced idle CPU has at least
14769 	 * MIN_NR_TASKS_DURING_FORCEIDLE - 1 tasks and use that to check
14770 	 * if we need to give up the CPU.
14771 	 */
14772 	if (rq->core->core_forceidle_count && rq->cfs.h_nr_queued == 1 &&
14773 	    __entity_slice_used(&curr->se, MIN_NR_TASKS_DURING_FORCEIDLE))
14774 		resched_curr(rq);
14775 }
14776 
14777 /*
14778  * Consider any infeasible weight scenario. Take for instance two tasks,
14779  * each bound to their respective sibling, one with weight 1 and one with
14780  * weight 2. Then the lower weight task will run ahead of the higher weight
14781  * task without bound.
14782  *
14783  * This utterly destroys the concept of a shared time base.
14784  *
14785  * Remember; all this is about a proportionally fair scheduling, where each
14786  * tasks receives:
14787  *
14788  *              w_i
14789  *   dt_i = ---------- dt                                     (1)
14790  *          \Sum_j w_j
14791  *
14792  * which we do by tracking a virtual time, s_i:
14793  *
14794  *          1
14795  *   s_i = --- d[t]_i                                         (2)
14796  *         w_i
14797  *
14798  * Where d[t] is a delta of discrete time, while dt is an infinitesimal.
14799  * The immediate corollary is that the ideal schedule S, where (2) to use
14800  * an infinitesimal delta, is:
14801  *
14802  *           1
14803  *   S = ---------- dt                                        (3)
14804  *       \Sum_i w_i
14805  *
14806  * From which we can define the lag, or deviation from the ideal, as:
14807  *
14808  *   lag(i) = S - s_i                                         (4)
14809  *
14810  * And since the one and only purpose is to approximate S, we get that:
14811  *
14812  *   \Sum_i w_i lag(i) := 0                                   (5)
14813  *
14814  * If this were not so, we no longer converge to S, and we can no longer
14815  * claim our scheduler has any of the properties we derive from S. This is
14816  * exactly what you did above, you broke it!
14817  *
14818  *
14819  * Let's continue for a while though; to see if there is anything useful to
14820  * be learned. We can combine (1)-(3) or (4)-(5) and express S in s_i:
14821  *
14822  *       \Sum_i w_i s_i
14823  *   S = --------------                                       (6)
14824  *         \Sum_i w_i
14825  *
14826  * Which gives us a way to compute S, given our s_i. Now, if you've read
14827  * our code, you know that we do not in fact do this, the reason for this
14828  * is two-fold. Firstly, computing S in that way requires a 64bit division
14829  * for every time we'd use it (see 12), and secondly, this only describes
14830  * the steady-state, it doesn't handle dynamics.
14831  *
14832  * Anyway, in (6):  s_i -> x + (s_i - x), to get:
14833  *
14834  *           \Sum_i w_i (s_i - x)
14835  *   S - x = --------------------                             (7)
14836  *              \Sum_i w_i
14837  *
14838  * Which shows that S and s_i transform alike (which makes perfect sense
14839  * given that S is basically the (weighted) average of s_i).
14840  *
14841  * So the thing to remember is that the above is strictly UP. It is
14842  * possible to generalize to multiple runqueues -- however it gets really
14843  * yuck when you have to add affinity support, as illustrated by our very
14844  * first counter-example.
14845  *
14846  * Luckily I think we can avoid needing a full multi-queue variant for
14847  * core-scheduling (or load-balancing). The crucial observation is that we
14848  * only actually need this comparison in the presence of forced-idle; only
14849  * then do we need to tell if the stalled rq has higher priority over the
14850  * other.
14851  *
14852  * [XXX assumes SMT2; better consider the more general case, I suspect
14853  * it'll work out because our comparison is always between 2 rqs and the
14854  * answer is only interesting if one of them is forced-idle]
14855  *
14856  * And (under assumption of SMT2) when there is forced-idle, there is only
14857  * a single queue, so everything works like normal.
14858  *
14859  * Let, for our runqueue 'k':
14860  *
14861  *   T_k = \Sum_i w_i s_i
14862  *   W_k = \Sum_i w_i      ; for all i of k                  (8)
14863  *
14864  * Then we can write (6) like:
14865  *
14866  *         T_k
14867  *   S_k = ---                                               (9)
14868  *         W_k
14869  *
14870  * From which immediately follows that:
14871  *
14872  *           T_k + T_l
14873  *   S_k+l = ---------                                       (10)
14874  *           W_k + W_l
14875  *
14876  * On which we can define a combined lag:
14877  *
14878  *   lag_k+l(i) := S_k+l - s_i                               (11)
14879  *
14880  * And that gives us the tools to compare tasks across a combined runqueue.
14881  *
14882  *
14883  * Combined this gives the following:
14884  *
14885  *  a) when a runqueue enters force-idle, sync it against it's sibling rq(s)
14886  *     using (7); this only requires storing single 'time'-stamps.
14887  *
14888  *  b) when comparing tasks between 2 runqueues of which one is forced-idle,
14889  *     compare the combined lag, per (11).
14890  *
14891  * Now, of course cgroups (I so hate them) make this more interesting in
14892  * that a) seems to suggest we need to iterate all cgroup on a CPU at such
14893  * boundaries, but I think we can avoid that. The force-idle is for the
14894  * whole CPU, all it's rqs. So we can mark it in the root and lazily
14895  * propagate downward on demand.
14896  */
14897 
14898 /*
14899  * So this sync is basically a relative reset of S to 0.
14900  *
14901  * So with 2 queues, when one goes idle, we drop them both to 0 and one
14902  * then increases due to not being idle, and the idle one builds up lag to
14903  * get re-elected. So far so simple, right?
14904  *
14905  * When there's 3, we can have the situation where 2 run and one is idle,
14906  * we sync to 0 and let the idle one build up lag to get re-election. Now
14907  * suppose another one also drops idle. At this point dropping all to 0
14908  * again would destroy the built-up lag from the queue that was already
14909  * idle, not good.
14910  *
14911  * So instead of syncing everything, we can:
14912  *
14913  *   less := !((s64)(s_a - s_b) <= 0)
14914  *
14915  *   (v_a - S_a) - (v_b - S_b) == v_a - v_b - S_a + S_b
14916  *                             == v_a - (v_b - S_a + S_b)
14917  *
14918  * IOW, we can recast the (lag) comparison to a one-sided difference.
14919  * So if then, instead of syncing the whole queue, sync the idle queue
14920  * against the active queue with S_a + S_b at the point where we sync.
14921  *
14922  * (XXX consider the implication of living in a cyclic group: N / 2^n N)
14923  *
14924  * This gives us means of syncing single queues against the active queue,
14925  * and for already idle queues to preserve their build-up lag.
14926  *
14927  * Of course, then we get the situation where there's 2 active and one
14928  * going idle, who do we pick to sync against? Theory would have us sync
14929  * against the combined S, but as we've already demonstrated, there is no
14930  * such thing in infeasible weight scenarios.
14931  *
14932  * One thing I've considered; and this is where that core_active rudiment
14933  * came from, is having active queues sync up between themselves after
14934  * every tick. This limits the observed divergence due to the work
14935  * conservancy.
14936  *
14937  * On top of that, we can improve upon things by employing (10) here.
14938  */
14939 
14940 /*
14941  * se_fi_update - Update the cfs_rq->zero_vruntime_fi in a CFS hierarchy if needed.
14942  */
14943 static void se_fi_update(const struct sched_entity *se, unsigned int fi_seq,
14944 			 bool forceidle)
14945 {
14946 	for_each_sched_entity(se) {
14947 		struct cfs_rq *cfs_rq = cfs_rq_of(se);
14948 
14949 		if (forceidle) {
14950 			if (cfs_rq->forceidle_seq == fi_seq)
14951 				break;
14952 			cfs_rq->forceidle_seq = fi_seq;
14953 		}
14954 
14955 		cfs_rq->zero_vruntime_fi = cfs_rq->zero_vruntime;
14956 	}
14957 }
14958 
14959 void task_vruntime_update(struct rq *rq, struct task_struct *p, bool in_fi)
14960 {
14961 	struct sched_entity *se = &p->se;
14962 
14963 	if (p->sched_class != &fair_sched_class)
14964 		return;
14965 
14966 	se_fi_update(se, rq->core->core_forceidle_seq, in_fi);
14967 }
14968 
14969 bool cfs_prio_less(const struct task_struct *a, const struct task_struct *b,
14970 			bool in_fi)
14971 {
14972 	struct rq *rq = task_rq(a);
14973 	const struct sched_entity *sea = &a->se;
14974 	const struct sched_entity *seb = &b->se;
14975 	struct cfs_rq *cfs_rqa;
14976 	struct cfs_rq *cfs_rqb;
14977 	s64 delta;
14978 
14979 	WARN_ON_ONCE(task_rq(b)->core != rq->core);
14980 
14981 	cfs_rqa = &task_rq(a)->cfs;
14982 	cfs_rqb = &task_rq(b)->cfs;
14983 
14984 	/*
14985 	 * Find delta after normalizing se's vruntime with its cfs_rq's
14986 	 * zero_vruntime_fi, which would have been updated in prior calls
14987 	 * to se_fi_update().
14988 	 */
14989 	delta = vruntime_op(sea->vruntime, "-", seb->vruntime) +
14990 		vruntime_op(cfs_rqb->zero_vruntime_fi, "-", cfs_rqa->zero_vruntime_fi);
14991 
14992 	return delta > 0;
14993 }
14994 
14995 static int task_is_throttled_fair(struct task_struct *p, int cpu)
14996 {
14997 	struct cfs_rq *cfs_rq;
14998 
14999 #ifdef CONFIG_FAIR_GROUP_SCHED
15000 	cfs_rq = tg_cfs_rq(task_group(p), cpu);
15001 #else
15002 	cfs_rq = &cpu_rq(cpu)->cfs;
15003 #endif
15004 	return throttled_hierarchy(cfs_rq);
15005 }
15006 #else /* !CONFIG_SCHED_CORE: */
15007 static inline void task_tick_core(struct rq *rq, struct task_struct *curr) {}
15008 #endif /* !CONFIG_SCHED_CORE */
15009 
15010 /*
15011  * scheduler tick hitting a task of our scheduling class.
15012  *
15013  * NOTE: This function can be called remotely by the tick offload that
15014  * goes along full dynticks. Therefore no local assumption can be made
15015  * and everything must be accessed through the @rq and @curr passed in
15016  * parameters.
15017  */
15018 static void task_tick_fair(struct rq *rq, struct task_struct *curr, int queued)
15019 {
15020 	struct sched_entity *se = &curr->se;
15021 
15022 	if (se->on_rq) {
15023 		unsigned long weight = NICE_0_LOAD;
15024 		struct cfs_rq *cfs_rq;
15025 
15026 		for_each_sched_entity(se) {
15027 			cfs_rq = cfs_rq_of(se);
15028 			entity_tick(cfs_rq, se, queued);
15029 
15030 			weight = __calc_prop_weight(cfs_rq, se, weight);
15031 		}
15032 
15033 		se = &curr->se;
15034 		reweight_eevdf(cfs_rq, se, weight, se->on_rq);
15035 	}
15036 
15037 	if (queued)
15038 		return;
15039 
15040 	if (static_branch_unlikely(&sched_numa_balancing))
15041 		task_tick_numa(rq, curr);
15042 
15043 	task_tick_cache(rq, curr);
15044 
15045 	update_misfit_status(curr, rq);
15046 	check_update_overutilized_status(task_rq(curr));
15047 
15048 	task_tick_core(rq, curr);
15049 }
15050 
15051 /*
15052  * called on fork with the child task as argument from the parent's context
15053  *  - child not yet on the tasklist
15054  *  - preemption disabled
15055  */
15056 static void task_fork_fair(struct task_struct *p)
15057 {
15058 	set_task_max_allowed_capacity(p);
15059 }
15060 
15061 /*
15062  * Priority of the task has changed. Check to see if we preempt
15063  * the current task.
15064  */
15065 static void
15066 prio_changed_fair(struct rq *rq, struct task_struct *p, u64 oldprio)
15067 {
15068 	if (!task_on_rq_queued(p))
15069 		return;
15070 
15071 	if (p->prio == oldprio)
15072 		return;
15073 
15074 	if (rq->cfs.h_nr_queued == 1)
15075 		return;
15076 
15077 	/*
15078 	 * Reschedule if we are currently running on this runqueue and
15079 	 * our priority decreased, or if we are not currently running on
15080 	 * this runqueue and our priority is higher than the current's
15081 	 */
15082 	if (task_current_donor(rq, p)) {
15083 		if (p->prio > oldprio)
15084 			resched_curr(rq);
15085 	} else {
15086 		wakeup_preempt(rq, p, 0);
15087 	}
15088 }
15089 
15090 #ifdef CONFIG_FAIR_GROUP_SCHED
15091 /*
15092  * Propagate the changes of the sched_entity across the tg tree to make it
15093  * visible to the root
15094  */
15095 static void propagate_entity_cfs_rq(struct sched_entity *se)
15096 {
15097 	struct cfs_rq *cfs_rq = cfs_rq_of(se);
15098 
15099 	/*
15100 	 * If a task gets attached to this cfs_rq and before being queued,
15101 	 * it gets migrated to another CPU due to reasons like affinity
15102 	 * change, make sure this cfs_rq stays on leaf cfs_rq list to have
15103 	 * that removed load decayed or it can cause faireness problem.
15104 	 */
15105 	if (!cfs_rq_pelt_clock_throttled(cfs_rq))
15106 		list_add_leaf_cfs_rq(cfs_rq);
15107 
15108 	/* Start to propagate at parent */
15109 	se = se->parent;
15110 
15111 	for_each_sched_entity(se) {
15112 		cfs_rq = cfs_rq_of(se);
15113 
15114 		update_load_avg(cfs_rq, se, UPDATE_TG);
15115 
15116 		if (!cfs_rq_pelt_clock_throttled(cfs_rq))
15117 			list_add_leaf_cfs_rq(cfs_rq);
15118 	}
15119 
15120 	assert_list_leaf_cfs_rq(rq_of(cfs_rq));
15121 }
15122 #else /* !CONFIG_FAIR_GROUP_SCHED: */
15123 static void propagate_entity_cfs_rq(struct sched_entity *se) { }
15124 #endif /* !CONFIG_FAIR_GROUP_SCHED */
15125 
15126 static void detach_entity_cfs_rq(struct sched_entity *se)
15127 {
15128 	struct cfs_rq *cfs_rq = cfs_rq_of(se);
15129 
15130 	/*
15131 	 * In case the task sched_avg hasn't been attached:
15132 	 * - A forked task which hasn't been woken up by wake_up_new_task().
15133 	 * - A task which has been woken up by try_to_wake_up() but is
15134 	 *   waiting for actually being woken up by sched_ttwu_pending().
15135 	 */
15136 	if (!se->avg.last_update_time)
15137 		return;
15138 
15139 	/* Catch up with the cfs_rq and remove our load when we leave */
15140 	update_load_avg(cfs_rq, se, 0);
15141 	detach_entity_load_avg(cfs_rq, se);
15142 	update_tg_load_avg(cfs_rq);
15143 	propagate_entity_cfs_rq(se);
15144 }
15145 
15146 static void attach_entity_cfs_rq(struct sched_entity *se)
15147 {
15148 	struct cfs_rq *cfs_rq = cfs_rq_of(se);
15149 
15150 	/* Synchronize entity with its cfs_rq */
15151 	update_load_avg(cfs_rq, se, sched_feat(ATTACH_AGE_LOAD) ? 0 : SKIP_AGE_LOAD);
15152 	attach_entity_load_avg(cfs_rq, se);
15153 	update_tg_load_avg(cfs_rq);
15154 	propagate_entity_cfs_rq(se);
15155 }
15156 
15157 static void detach_task_cfs_rq(struct task_struct *p)
15158 {
15159 	struct sched_entity *se = &p->se;
15160 
15161 	detach_entity_cfs_rq(se);
15162 }
15163 
15164 static void attach_task_cfs_rq(struct task_struct *p)
15165 {
15166 	struct sched_entity *se = &p->se;
15167 
15168 	attach_entity_cfs_rq(se);
15169 }
15170 
15171 static void switching_from_fair(struct rq *rq, struct task_struct *p)
15172 {
15173 	if (p->se.sched_delayed)
15174 		dequeue_task(rq, p, DEQUEUE_SLEEP | DEQUEUE_DELAYED | DEQUEUE_NOCLOCK);
15175 }
15176 
15177 static void switched_from_fair(struct rq *rq, struct task_struct *p)
15178 {
15179 	detach_task_cfs_rq(p);
15180 }
15181 
15182 static void switched_to_fair(struct rq *rq, struct task_struct *p)
15183 {
15184 	WARN_ON_ONCE(p->se.sched_delayed);
15185 
15186 	attach_task_cfs_rq(p);
15187 
15188 	set_task_max_allowed_capacity(p);
15189 
15190 	if (task_on_rq_queued(p)) {
15191 		/*
15192 		 * We were most likely switched from sched_rt, so
15193 		 * kick off the schedule if running, otherwise just see
15194 		 * if we can still preempt the current task.
15195 		 */
15196 		if (task_current_donor(rq, p))
15197 			resched_curr(rq);
15198 		else
15199 			wakeup_preempt(rq, p, 0);
15200 	}
15201 }
15202 
15203 static void set_next_task_fair(struct rq *rq, struct task_struct *p, bool first)
15204 {
15205 	struct sched_entity *se = &p->se;
15206 	bool throttled = false;
15207 	struct cfs_rq *cfs_rq = &rq->cfs;
15208 	unsigned long weight = NICE_0_LOAD;
15209 	bool on_rq = se->on_rq;
15210 
15211 	clear_buddies(cfs_rq, se);
15212 
15213 	if (on_rq)
15214 		__dequeue_entity(cfs_rq, se);
15215 
15216 	for_each_sched_entity(se) {
15217 		cfs_rq = cfs_rq_of(se);
15218 
15219 		if (!IS_ENABLED(CONFIG_FAIR_GROUP_SCHED) ||
15220 		    !first || !cfs_rq->h_curr)
15221 			set_next_entity(cfs_rq, se);
15222 
15223 		/* ensure bandwidth has been allocated on our new cfs_rq */
15224 		throttled |= account_cfs_rq_runtime(cfs_rq, 0);
15225 
15226 		if (on_rq)
15227 			weight = __calc_prop_weight(cfs_rq, se, weight);
15228 	}
15229 
15230 	if (throttled)
15231 		task_throttle_setup_work(p);
15232 
15233 	se = &p->se;
15234 	cfs_rq->curr = se;
15235 
15236 	if (on_rq) {
15237 		reweight_eevdf(cfs_rq, se, weight, se->on_rq);
15238 		if (first)
15239 			set_protect_slice(cfs_rq, se);
15240 	}
15241 
15242 	if (task_on_rq_queued(p)) {
15243 		/*
15244 		 * Move the next running task to the front of the list, so our
15245 		 * cfs_tasks list becomes MRU one.
15246 		 */
15247 		list_move(&se->group_node, &rq->cfs_tasks);
15248 	}
15249 	if (!first)
15250 		return;
15251 
15252 	WARN_ON_ONCE(se->sched_delayed);
15253 
15254 	if (hrtick_enabled_fair(rq))
15255 		hrtick_start_fair(rq, p);
15256 
15257 	update_misfit_status(p, rq);
15258 	sched_fair_update_stop_tick(rq, p);
15259 }
15260 
15261 void init_cfs_rq(struct cfs_rq *cfs_rq)
15262 {
15263 	cfs_rq->tasks_timeline = RB_ROOT_CACHED;
15264 	cfs_rq->zero_vruntime = (u64)(-(1LL << 20));
15265 	raw_spin_lock_init(&cfs_rq->removed.lock);
15266 }
15267 
15268 #ifdef CONFIG_FAIR_GROUP_SCHED
15269 static void task_change_group_fair(struct task_struct *p)
15270 {
15271 	/*
15272 	 * We couldn't detach or attach a forked task which
15273 	 * hasn't been woken up by wake_up_new_task().
15274 	 */
15275 	if (READ_ONCE(p->__state) == TASK_NEW)
15276 		return;
15277 
15278 	detach_task_cfs_rq(p);
15279 
15280 	/* Tell se's cfs_rq has been changed -- migrated */
15281 	p->se.avg.last_update_time = 0;
15282 	set_task_rq(p, task_cpu(p));
15283 	attach_task_cfs_rq(p);
15284 }
15285 
15286 void free_fair_sched_group(struct task_group *tg)
15287 {
15288 	free_percpu(tg->cfs_rq);
15289 }
15290 
15291 int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
15292 {
15293 	struct cfs_tg_state __percpu *state;
15294 	struct sched_entity *se;
15295 	struct cfs_rq *cfs_rq;
15296 	int i;
15297 
15298 	state = alloc_percpu_gfp(struct cfs_tg_state, GFP_KERNEL);
15299 	if (!state)
15300 		goto err;
15301 
15302 	tg->cfs_rq = &state->cfs_rq;
15303 	tg->shares = NICE_0_LOAD;
15304 
15305 	init_cfs_bandwidth(tg_cfs_bandwidth(tg), tg_cfs_bandwidth(parent));
15306 
15307 	for_each_possible_cpu(i) {
15308 		cfs_rq = tg_cfs_rq(tg, i);
15309 		if (!cfs_rq)
15310 			goto err;
15311 
15312 		se = tg_se(tg, i);
15313 		init_cfs_rq(cfs_rq);
15314 		init_tg_cfs_entry(tg, cfs_rq, se, i, tg_se(parent, i));
15315 		init_entity_runnable_average(se);
15316 	}
15317 
15318 	return 1;
15319 
15320 err:
15321 	return 0;
15322 }
15323 
15324 void online_fair_sched_group(struct task_group *tg)
15325 {
15326 	struct sched_entity *se;
15327 	struct rq_flags rf;
15328 	struct rq *rq;
15329 	int i;
15330 
15331 	for_each_possible_cpu(i) {
15332 		rq = cpu_rq(i);
15333 		se = tg_se(tg, i);
15334 		rq_lock_irq(rq, &rf);
15335 		update_rq_clock(rq);
15336 		attach_entity_cfs_rq(se);
15337 		sync_throttle(tg, i);
15338 		rq_unlock_irq(rq, &rf);
15339 	}
15340 }
15341 
15342 void unregister_fair_sched_group(struct task_group *tg)
15343 {
15344 	int cpu;
15345 
15346 	destroy_cfs_bandwidth(tg_cfs_bandwidth(tg));
15347 
15348 	for_each_possible_cpu(cpu) {
15349 		struct cfs_rq *cfs_rq = tg_cfs_rq(tg, cpu);
15350 		struct sched_entity *se = tg_se(tg, cpu);
15351 		struct rq *rq = cpu_rq(cpu);
15352 
15353 		if (se)
15354 			remove_entity_load_avg(se);
15355 
15356 		/*
15357 		 * Only empty task groups can be destroyed; so we can speculatively
15358 		 * check on_list without danger of it being re-added.
15359 		 */
15360 		if (cfs_rq->on_list) {
15361 			guard(rq_lock_irqsave)(rq);
15362 			list_del_leaf_cfs_rq(cfs_rq);
15363 		}
15364 	}
15365 }
15366 
15367 void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
15368 			struct sched_entity *se, int cpu,
15369 			struct sched_entity *parent)
15370 {
15371 	struct rq *rq = cpu_rq(cpu);
15372 
15373 	cfs_rq->tg = tg;
15374 	cfs_rq->rq = rq;
15375 	init_cfs_rq_runtime(cfs_rq);
15376 
15377 	/* se could be NULL for root_task_group */
15378 	if (!se)
15379 		return;
15380 
15381 	if (!parent) {
15382 		se->cfs_rq = &rq->cfs;
15383 		se->depth = 0;
15384 	} else {
15385 		se->cfs_rq = parent->my_q;
15386 		se->depth = parent->depth + 1;
15387 	}
15388 
15389 	se->my_q = cfs_rq;
15390 	/* guarantee group entities always have weight */
15391 	update_load_set(&se->load, NICE_0_LOAD);
15392 	se->parent = parent;
15393 }
15394 
15395 static DEFINE_MUTEX(shares_mutex);
15396 
15397 static int __sched_group_set_shares(struct task_group *tg, unsigned long shares)
15398 {
15399 	int i;
15400 
15401 	lockdep_assert_held(&shares_mutex);
15402 
15403 	/*
15404 	 * We can't change the weight of the root cgroup.
15405 	 */
15406 	if (is_root_task_group(tg))
15407 		return -EINVAL;
15408 
15409 	shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES));
15410 
15411 	if (tg->shares == shares)
15412 		return 0;
15413 
15414 	tg->shares = shares;
15415 	for_each_possible_cpu(i) {
15416 		struct rq *rq = cpu_rq(i);
15417 		struct sched_entity *se = tg_se(tg, i);
15418 		struct rq_flags rf;
15419 
15420 		/* Propagate contribution to hierarchy */
15421 		rq_lock_irqsave(rq, &rf);
15422 		update_rq_clock(rq);
15423 		for_each_sched_entity(se) {
15424 			update_load_avg(cfs_rq_of(se), se, UPDATE_TG);
15425 			update_cfs_group(se);
15426 		}
15427 		rq_unlock_irqrestore(rq, &rf);
15428 	}
15429 
15430 	return 0;
15431 }
15432 
15433 int sched_group_set_shares(struct task_group *tg, unsigned long shares)
15434 {
15435 	int ret;
15436 
15437 	mutex_lock(&shares_mutex);
15438 	if (tg_is_idle(tg))
15439 		ret = -EINVAL;
15440 	else
15441 		ret = __sched_group_set_shares(tg, shares);
15442 	mutex_unlock(&shares_mutex);
15443 
15444 	return ret;
15445 }
15446 
15447 int sched_group_set_idle(struct task_group *tg, long idle)
15448 {
15449 	int i;
15450 
15451 	if (tg == &root_task_group)
15452 		return -EINVAL;
15453 
15454 	if (idle < 0 || idle > 1)
15455 		return -EINVAL;
15456 
15457 	mutex_lock(&shares_mutex);
15458 
15459 	if (tg->idle == idle) {
15460 		mutex_unlock(&shares_mutex);
15461 		return 0;
15462 	}
15463 
15464 	tg->idle = idle;
15465 
15466 	for_each_possible_cpu(i) {
15467 		struct rq *rq = cpu_rq(i);
15468 		struct sched_entity *se = tg_se(tg, i);
15469 		struct cfs_rq *grp_cfs_rq = tg_cfs_rq(tg, i);
15470 		bool was_idle = cfs_rq_is_idle(grp_cfs_rq);
15471 		long idle_task_delta;
15472 		struct rq_flags rf;
15473 
15474 		rq_lock_irqsave(rq, &rf);
15475 
15476 		grp_cfs_rq->idle = idle;
15477 		if (WARN_ON_ONCE(was_idle == cfs_rq_is_idle(grp_cfs_rq)))
15478 			goto next_cpu;
15479 
15480 		idle_task_delta = grp_cfs_rq->h_nr_queued -
15481 				  grp_cfs_rq->h_nr_idle;
15482 		if (!cfs_rq_is_idle(grp_cfs_rq))
15483 			idle_task_delta *= -1;
15484 
15485 		for_each_sched_entity(se) {
15486 			struct cfs_rq *cfs_rq = cfs_rq_of(se);
15487 
15488 			if (!se->on_rq)
15489 				break;
15490 
15491 			cfs_rq->h_nr_idle += idle_task_delta;
15492 
15493 			/* Already accounted at parent level and above. */
15494 			if (cfs_rq_is_idle(cfs_rq))
15495 				break;
15496 		}
15497 
15498 next_cpu:
15499 		rq_unlock_irqrestore(rq, &rf);
15500 	}
15501 
15502 	/* Idle groups have minimum weight. */
15503 	if (tg_is_idle(tg))
15504 		__sched_group_set_shares(tg, scale_load(WEIGHT_IDLEPRIO));
15505 	else
15506 		__sched_group_set_shares(tg, NICE_0_LOAD);
15507 
15508 	mutex_unlock(&shares_mutex);
15509 	return 0;
15510 }
15511 
15512 #endif /* CONFIG_FAIR_GROUP_SCHED */
15513 
15514 
15515 static unsigned int get_rr_interval_fair(struct rq *rq, struct task_struct *task)
15516 {
15517 	struct sched_entity *se = &task->se;
15518 	unsigned int rr_interval = 0;
15519 
15520 	/*
15521 	 * Time slice is 0 for SCHED_OTHER tasks that are on an otherwise
15522 	 * idle runqueue:
15523 	 */
15524 	if (rq->cfs.load.weight)
15525 		rr_interval = NS_TO_JIFFIES(se->slice);
15526 
15527 	return rr_interval;
15528 }
15529 
15530 /*
15531  * All the scheduling class methods:
15532  */
15533 DEFINE_SCHED_CLASS(fair) = {
15534 	.enqueue_task		= enqueue_task_fair,
15535 	.dequeue_task		= dequeue_task_fair,
15536 	.yield_task		= yield_task_fair,
15537 	.yield_to_task		= yield_to_task_fair,
15538 
15539 	.wakeup_preempt		= wakeup_preempt_fair,
15540 
15541 	.pick_task		= pick_task_fair,
15542 	.put_prev_task		= put_prev_task_fair,
15543 	.set_next_task          = set_next_task_fair,
15544 
15545 	.select_task_rq		= select_task_rq_fair,
15546 	.migrate_task_rq	= migrate_task_rq_fair,
15547 
15548 	.rq_online		= rq_online_fair,
15549 	.rq_offline		= rq_offline_fair,
15550 
15551 	.task_dead		= task_dead_fair,
15552 	.set_cpus_allowed	= set_cpus_allowed_fair,
15553 
15554 	.task_tick		= task_tick_fair,
15555 	.task_fork		= task_fork_fair,
15556 
15557 	.reweight_task		= reweight_task_fair,
15558 	.prio_changed		= prio_changed_fair,
15559 	.switching_from		= switching_from_fair,
15560 	.switched_from		= switched_from_fair,
15561 	.switched_to		= switched_to_fair,
15562 
15563 	.get_rr_interval	= get_rr_interval_fair,
15564 
15565 	.update_curr		= update_curr_fair,
15566 
15567 #ifdef CONFIG_FAIR_GROUP_SCHED
15568 	.task_change_group	= task_change_group_fair,
15569 #endif
15570 
15571 #ifdef CONFIG_SCHED_CORE
15572 	.task_is_throttled	= task_is_throttled_fair,
15573 #endif
15574 
15575 #ifdef CONFIG_UCLAMP_TASK
15576 	.uclamp_enabled		= 1,
15577 #endif
15578 };
15579 
15580 void print_cfs_stats(struct seq_file *m, int cpu)
15581 {
15582 	struct cfs_rq *cfs_rq, *pos;
15583 
15584 	rcu_read_lock();
15585 	for_each_leaf_cfs_rq_safe(cpu_rq(cpu), cfs_rq, pos)
15586 		print_cfs_rq(m, cpu, cfs_rq);
15587 	rcu_read_unlock();
15588 }
15589 
15590 #ifdef CONFIG_NUMA_BALANCING
15591 void show_numa_stats(struct task_struct *p, struct seq_file *m)
15592 {
15593 	int node;
15594 	unsigned long tsf = 0, tpf = 0, gsf = 0, gpf = 0;
15595 	struct numa_group *ng;
15596 
15597 	rcu_read_lock();
15598 	ng = rcu_dereference_all(p->numa_group);
15599 	for_each_online_node(node) {
15600 		if (p->numa_faults) {
15601 			tsf = p->numa_faults[task_faults_idx(NUMA_MEM, node, 0)];
15602 			tpf = p->numa_faults[task_faults_idx(NUMA_MEM, node, 1)];
15603 		}
15604 		if (ng) {
15605 			gsf = ng->faults[task_faults_idx(NUMA_MEM, node, 0)];
15606 			gpf = ng->faults[task_faults_idx(NUMA_MEM, node, 1)];
15607 		}
15608 		print_numa_stats(m, node, tsf, tpf, gsf, gpf);
15609 	}
15610 	rcu_read_unlock();
15611 }
15612 #endif /* CONFIG_NUMA_BALANCING */
15613 
15614 __init void init_sched_fair_class(void)
15615 {
15616 	int i;
15617 
15618 	for_each_possible_cpu(i) {
15619 		zalloc_cpumask_var_node(&per_cpu(load_balance_mask, i), GFP_KERNEL, cpu_to_node(i));
15620 		zalloc_cpumask_var_node(&per_cpu(select_rq_mask,    i), GFP_KERNEL, cpu_to_node(i));
15621 		zalloc_cpumask_var_node(&per_cpu(should_we_balance_tmpmask, i),
15622 					GFP_KERNEL, cpu_to_node(i));
15623 
15624 #ifdef CONFIG_CFS_BANDWIDTH
15625 		INIT_CSD(&cpu_rq(i)->cfsb_csd, __cfsb_csd_unthrottle, cpu_rq(i));
15626 		INIT_LIST_HEAD(&cpu_rq(i)->cfsb_csd_list);
15627 #endif
15628 	}
15629 
15630 	open_softirq(SCHED_SOFTIRQ, sched_balance_softirq);
15631 
15632 #ifdef CONFIG_NO_HZ_COMMON
15633 	nohz.next_balance = jiffies;
15634 	nohz.next_blocked = jiffies;
15635 	zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
15636 #endif
15637 }
15638