xref: /linux/kernel/sched/topology.c (revision 2d9db778ddca079228ef10e60bceea06b34b0eaa)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Scheduler topology setup/handling methods
4  */
5 
6 #include <linux/bsearch.h>
7 
8 DEFINE_MUTEX(sched_domains_mutex);
9 
10 /* Protected by sched_domains_mutex: */
11 static cpumask_var_t sched_domains_tmpmask;
12 static cpumask_var_t sched_domains_tmpmask2;
13 
14 #ifdef CONFIG_SCHED_DEBUG
15 
16 static int __init sched_debug_setup(char *str)
17 {
18 	sched_debug_verbose = true;
19 
20 	return 0;
21 }
22 early_param("sched_verbose", sched_debug_setup);
23 
24 static inline bool sched_debug(void)
25 {
26 	return sched_debug_verbose;
27 }
28 
29 #define SD_FLAG(_name, mflags) [__##_name] = { .meta_flags = mflags, .name = #_name },
30 const struct sd_flag_debug sd_flag_debug[] = {
31 #include <linux/sched/sd_flags.h>
32 };
33 #undef SD_FLAG
34 
35 static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
36 				  struct cpumask *groupmask)
37 {
38 	struct sched_group *group = sd->groups;
39 	unsigned long flags = sd->flags;
40 	unsigned int idx;
41 
42 	cpumask_clear(groupmask);
43 
44 	printk(KERN_DEBUG "%*s domain-%d: ", level, "", level);
45 	printk(KERN_CONT "span=%*pbl level=%s\n",
46 	       cpumask_pr_args(sched_domain_span(sd)), sd->name);
47 
48 	if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
49 		printk(KERN_ERR "ERROR: domain->span does not contain CPU%d\n", cpu);
50 	}
51 	if (group && !cpumask_test_cpu(cpu, sched_group_span(group))) {
52 		printk(KERN_ERR "ERROR: domain->groups does not contain CPU%d\n", cpu);
53 	}
54 
55 	for_each_set_bit(idx, &flags, __SD_FLAG_CNT) {
56 		unsigned int flag = BIT(idx);
57 		unsigned int meta_flags = sd_flag_debug[idx].meta_flags;
58 
59 		if ((meta_flags & SDF_SHARED_CHILD) && sd->child &&
60 		    !(sd->child->flags & flag))
61 			printk(KERN_ERR "ERROR: flag %s set here but not in child\n",
62 			       sd_flag_debug[idx].name);
63 
64 		if ((meta_flags & SDF_SHARED_PARENT) && sd->parent &&
65 		    !(sd->parent->flags & flag))
66 			printk(KERN_ERR "ERROR: flag %s set here but not in parent\n",
67 			       sd_flag_debug[idx].name);
68 	}
69 
70 	printk(KERN_DEBUG "%*s groups:", level + 1, "");
71 	do {
72 		if (!group) {
73 			printk("\n");
74 			printk(KERN_ERR "ERROR: group is NULL\n");
75 			break;
76 		}
77 
78 		if (cpumask_empty(sched_group_span(group))) {
79 			printk(KERN_CONT "\n");
80 			printk(KERN_ERR "ERROR: empty group\n");
81 			break;
82 		}
83 
84 		if (!(sd->flags & SD_OVERLAP) &&
85 		    cpumask_intersects(groupmask, sched_group_span(group))) {
86 			printk(KERN_CONT "\n");
87 			printk(KERN_ERR "ERROR: repeated CPUs\n");
88 			break;
89 		}
90 
91 		cpumask_or(groupmask, groupmask, sched_group_span(group));
92 
93 		printk(KERN_CONT " %d:{ span=%*pbl",
94 				group->sgc->id,
95 				cpumask_pr_args(sched_group_span(group)));
96 
97 		if ((sd->flags & SD_OVERLAP) &&
98 		    !cpumask_equal(group_balance_mask(group), sched_group_span(group))) {
99 			printk(KERN_CONT " mask=%*pbl",
100 				cpumask_pr_args(group_balance_mask(group)));
101 		}
102 
103 		if (group->sgc->capacity != SCHED_CAPACITY_SCALE)
104 			printk(KERN_CONT " cap=%lu", group->sgc->capacity);
105 
106 		if (group == sd->groups && sd->child &&
107 		    !cpumask_equal(sched_domain_span(sd->child),
108 				   sched_group_span(group))) {
109 			printk(KERN_ERR "ERROR: domain->groups does not match domain->child\n");
110 		}
111 
112 		printk(KERN_CONT " }");
113 
114 		group = group->next;
115 
116 		if (group != sd->groups)
117 			printk(KERN_CONT ",");
118 
119 	} while (group != sd->groups);
120 	printk(KERN_CONT "\n");
121 
122 	if (!cpumask_equal(sched_domain_span(sd), groupmask))
123 		printk(KERN_ERR "ERROR: groups don't span domain->span\n");
124 
125 	if (sd->parent &&
126 	    !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
127 		printk(KERN_ERR "ERROR: parent span is not a superset of domain->span\n");
128 	return 0;
129 }
130 
131 static void sched_domain_debug(struct sched_domain *sd, int cpu)
132 {
133 	int level = 0;
134 
135 	if (!sched_debug_verbose)
136 		return;
137 
138 	if (!sd) {
139 		printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
140 		return;
141 	}
142 
143 	printk(KERN_DEBUG "CPU%d attaching sched-domain(s):\n", cpu);
144 
145 	for (;;) {
146 		if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
147 			break;
148 		level++;
149 		sd = sd->parent;
150 		if (!sd)
151 			break;
152 	}
153 }
154 #else /* !CONFIG_SCHED_DEBUG */
155 
156 # define sched_debug_verbose 0
157 # define sched_domain_debug(sd, cpu) do { } while (0)
158 static inline bool sched_debug(void)
159 {
160 	return false;
161 }
162 #endif /* CONFIG_SCHED_DEBUG */
163 
164 /* Generate a mask of SD flags with the SDF_NEEDS_GROUPS metaflag */
165 #define SD_FLAG(name, mflags) (name * !!((mflags) & SDF_NEEDS_GROUPS)) |
166 static const unsigned int SD_DEGENERATE_GROUPS_MASK =
167 #include <linux/sched/sd_flags.h>
168 0;
169 #undef SD_FLAG
170 
171 static int sd_degenerate(struct sched_domain *sd)
172 {
173 	if (cpumask_weight(sched_domain_span(sd)) == 1)
174 		return 1;
175 
176 	/* Following flags need at least 2 groups */
177 	if ((sd->flags & SD_DEGENERATE_GROUPS_MASK) &&
178 	    (sd->groups != sd->groups->next))
179 		return 0;
180 
181 	/* Following flags don't use groups */
182 	if (sd->flags & (SD_WAKE_AFFINE))
183 		return 0;
184 
185 	return 1;
186 }
187 
188 static int
189 sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
190 {
191 	unsigned long cflags = sd->flags, pflags = parent->flags;
192 
193 	if (sd_degenerate(parent))
194 		return 1;
195 
196 	if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
197 		return 0;
198 
199 	/* Flags needing groups don't count if only 1 group in parent */
200 	if (parent->groups == parent->groups->next)
201 		pflags &= ~SD_DEGENERATE_GROUPS_MASK;
202 
203 	if (~cflags & pflags)
204 		return 0;
205 
206 	return 1;
207 }
208 
209 #if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
210 DEFINE_STATIC_KEY_FALSE(sched_energy_present);
211 static unsigned int sysctl_sched_energy_aware = 1;
212 static DEFINE_MUTEX(sched_energy_mutex);
213 static bool sched_energy_update;
214 
215 static bool sched_is_eas_possible(const struct cpumask *cpu_mask)
216 {
217 	bool any_asym_capacity = false;
218 	struct cpufreq_policy *policy;
219 	struct cpufreq_governor *gov;
220 	int i;
221 
222 	/* EAS is enabled for asymmetric CPU capacity topologies. */
223 	for_each_cpu(i, cpu_mask) {
224 		if (rcu_access_pointer(per_cpu(sd_asym_cpucapacity, i))) {
225 			any_asym_capacity = true;
226 			break;
227 		}
228 	}
229 	if (!any_asym_capacity) {
230 		if (sched_debug()) {
231 			pr_info("rd %*pbl: Checking EAS, CPUs do not have asymmetric capacities\n",
232 				cpumask_pr_args(cpu_mask));
233 		}
234 		return false;
235 	}
236 
237 	/* EAS definitely does *not* handle SMT */
238 	if (sched_smt_active()) {
239 		if (sched_debug()) {
240 			pr_info("rd %*pbl: Checking EAS, SMT is not supported\n",
241 				cpumask_pr_args(cpu_mask));
242 		}
243 		return false;
244 	}
245 
246 	if (!arch_scale_freq_invariant()) {
247 		if (sched_debug()) {
248 			pr_info("rd %*pbl: Checking EAS: frequency-invariant load tracking not yet supported",
249 				cpumask_pr_args(cpu_mask));
250 		}
251 		return false;
252 	}
253 
254 	/* Do not attempt EAS if schedutil is not being used. */
255 	for_each_cpu(i, cpu_mask) {
256 		policy = cpufreq_cpu_get(i);
257 		if (!policy) {
258 			if (sched_debug()) {
259 				pr_info("rd %*pbl: Checking EAS, cpufreq policy not set for CPU: %d",
260 					cpumask_pr_args(cpu_mask), i);
261 			}
262 			return false;
263 		}
264 		gov = policy->governor;
265 		cpufreq_cpu_put(policy);
266 		if (gov != &schedutil_gov) {
267 			if (sched_debug()) {
268 				pr_info("rd %*pbl: Checking EAS, schedutil is mandatory\n",
269 					cpumask_pr_args(cpu_mask));
270 			}
271 			return false;
272 		}
273 	}
274 
275 	return true;
276 }
277 
278 void rebuild_sched_domains_energy(void)
279 {
280 	mutex_lock(&sched_energy_mutex);
281 	sched_energy_update = true;
282 	rebuild_sched_domains();
283 	sched_energy_update = false;
284 	mutex_unlock(&sched_energy_mutex);
285 }
286 
287 #ifdef CONFIG_PROC_SYSCTL
288 static int sched_energy_aware_handler(struct ctl_table *table, int write,
289 		void *buffer, size_t *lenp, loff_t *ppos)
290 {
291 	int ret, state;
292 
293 	if (write && !capable(CAP_SYS_ADMIN))
294 		return -EPERM;
295 
296 	if (!sched_is_eas_possible(cpu_active_mask)) {
297 		if (write) {
298 			return -EOPNOTSUPP;
299 		} else {
300 			*lenp = 0;
301 			return 0;
302 		}
303 	}
304 
305 	ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
306 	if (!ret && write) {
307 		state = static_branch_unlikely(&sched_energy_present);
308 		if (state != sysctl_sched_energy_aware)
309 			rebuild_sched_domains_energy();
310 	}
311 
312 	return ret;
313 }
314 
315 static struct ctl_table sched_energy_aware_sysctls[] = {
316 	{
317 		.procname       = "sched_energy_aware",
318 		.data           = &sysctl_sched_energy_aware,
319 		.maxlen         = sizeof(unsigned int),
320 		.mode           = 0644,
321 		.proc_handler   = sched_energy_aware_handler,
322 		.extra1         = SYSCTL_ZERO,
323 		.extra2         = SYSCTL_ONE,
324 	},
325 	{}
326 };
327 
328 static int __init sched_energy_aware_sysctl_init(void)
329 {
330 	register_sysctl_init("kernel", sched_energy_aware_sysctls);
331 	return 0;
332 }
333 
334 late_initcall(sched_energy_aware_sysctl_init);
335 #endif
336 
337 static void free_pd(struct perf_domain *pd)
338 {
339 	struct perf_domain *tmp;
340 
341 	while (pd) {
342 		tmp = pd->next;
343 		kfree(pd);
344 		pd = tmp;
345 	}
346 }
347 
348 static struct perf_domain *find_pd(struct perf_domain *pd, int cpu)
349 {
350 	while (pd) {
351 		if (cpumask_test_cpu(cpu, perf_domain_span(pd)))
352 			return pd;
353 		pd = pd->next;
354 	}
355 
356 	return NULL;
357 }
358 
359 static struct perf_domain *pd_init(int cpu)
360 {
361 	struct em_perf_domain *obj = em_cpu_get(cpu);
362 	struct perf_domain *pd;
363 
364 	if (!obj) {
365 		if (sched_debug())
366 			pr_info("%s: no EM found for CPU%d\n", __func__, cpu);
367 		return NULL;
368 	}
369 
370 	pd = kzalloc(sizeof(*pd), GFP_KERNEL);
371 	if (!pd)
372 		return NULL;
373 	pd->em_pd = obj;
374 
375 	return pd;
376 }
377 
378 static void perf_domain_debug(const struct cpumask *cpu_map,
379 						struct perf_domain *pd)
380 {
381 	if (!sched_debug() || !pd)
382 		return;
383 
384 	printk(KERN_DEBUG "root_domain %*pbl:", cpumask_pr_args(cpu_map));
385 
386 	while (pd) {
387 		printk(KERN_CONT " pd%d:{ cpus=%*pbl nr_pstate=%d }",
388 				cpumask_first(perf_domain_span(pd)),
389 				cpumask_pr_args(perf_domain_span(pd)),
390 				em_pd_nr_perf_states(pd->em_pd));
391 		pd = pd->next;
392 	}
393 
394 	printk(KERN_CONT "\n");
395 }
396 
397 static void destroy_perf_domain_rcu(struct rcu_head *rp)
398 {
399 	struct perf_domain *pd;
400 
401 	pd = container_of(rp, struct perf_domain, rcu);
402 	free_pd(pd);
403 }
404 
405 static void sched_energy_set(bool has_eas)
406 {
407 	if (!has_eas && static_branch_unlikely(&sched_energy_present)) {
408 		if (sched_debug())
409 			pr_info("%s: stopping EAS\n", __func__);
410 		static_branch_disable_cpuslocked(&sched_energy_present);
411 	} else if (has_eas && !static_branch_unlikely(&sched_energy_present)) {
412 		if (sched_debug())
413 			pr_info("%s: starting EAS\n", __func__);
414 		static_branch_enable_cpuslocked(&sched_energy_present);
415 	}
416 }
417 
418 /*
419  * EAS can be used on a root domain if it meets all the following conditions:
420  *    1. an Energy Model (EM) is available;
421  *    2. the SD_ASYM_CPUCAPACITY flag is set in the sched_domain hierarchy.
422  *    3. no SMT is detected.
423  *    4. schedutil is driving the frequency of all CPUs of the rd;
424  *    5. frequency invariance support is present;
425  */
426 static bool build_perf_domains(const struct cpumask *cpu_map)
427 {
428 	int i;
429 	struct perf_domain *pd = NULL, *tmp;
430 	int cpu = cpumask_first(cpu_map);
431 	struct root_domain *rd = cpu_rq(cpu)->rd;
432 
433 	if (!sysctl_sched_energy_aware)
434 		goto free;
435 
436 	if (!sched_is_eas_possible(cpu_map))
437 		goto free;
438 
439 	for_each_cpu(i, cpu_map) {
440 		/* Skip already covered CPUs. */
441 		if (find_pd(pd, i))
442 			continue;
443 
444 		/* Create the new pd and add it to the local list. */
445 		tmp = pd_init(i);
446 		if (!tmp)
447 			goto free;
448 		tmp->next = pd;
449 		pd = tmp;
450 	}
451 
452 	perf_domain_debug(cpu_map, pd);
453 
454 	/* Attach the new list of performance domains to the root domain. */
455 	tmp = rd->pd;
456 	rcu_assign_pointer(rd->pd, pd);
457 	if (tmp)
458 		call_rcu(&tmp->rcu, destroy_perf_domain_rcu);
459 
460 	return !!pd;
461 
462 free:
463 	free_pd(pd);
464 	tmp = rd->pd;
465 	rcu_assign_pointer(rd->pd, NULL);
466 	if (tmp)
467 		call_rcu(&tmp->rcu, destroy_perf_domain_rcu);
468 
469 	return false;
470 }
471 #else
472 static void free_pd(struct perf_domain *pd) { }
473 #endif /* CONFIG_ENERGY_MODEL && CONFIG_CPU_FREQ_GOV_SCHEDUTIL*/
474 
475 static void free_rootdomain(struct rcu_head *rcu)
476 {
477 	struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
478 
479 	cpupri_cleanup(&rd->cpupri);
480 	cpudl_cleanup(&rd->cpudl);
481 	free_cpumask_var(rd->dlo_mask);
482 	free_cpumask_var(rd->rto_mask);
483 	free_cpumask_var(rd->online);
484 	free_cpumask_var(rd->span);
485 	free_pd(rd->pd);
486 	kfree(rd);
487 }
488 
489 void rq_attach_root(struct rq *rq, struct root_domain *rd)
490 {
491 	struct root_domain *old_rd = NULL;
492 	struct rq_flags rf;
493 
494 	rq_lock_irqsave(rq, &rf);
495 
496 	if (rq->rd) {
497 		old_rd = rq->rd;
498 
499 		if (cpumask_test_cpu(rq->cpu, old_rd->online))
500 			set_rq_offline(rq);
501 
502 		cpumask_clear_cpu(rq->cpu, old_rd->span);
503 
504 		/*
505 		 * If we dont want to free the old_rd yet then
506 		 * set old_rd to NULL to skip the freeing later
507 		 * in this function:
508 		 */
509 		if (!atomic_dec_and_test(&old_rd->refcount))
510 			old_rd = NULL;
511 	}
512 
513 	atomic_inc(&rd->refcount);
514 	rq->rd = rd;
515 
516 	cpumask_set_cpu(rq->cpu, rd->span);
517 	if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
518 		set_rq_online(rq);
519 
520 	rq_unlock_irqrestore(rq, &rf);
521 
522 	if (old_rd)
523 		call_rcu(&old_rd->rcu, free_rootdomain);
524 }
525 
526 void sched_get_rd(struct root_domain *rd)
527 {
528 	atomic_inc(&rd->refcount);
529 }
530 
531 void sched_put_rd(struct root_domain *rd)
532 {
533 	if (!atomic_dec_and_test(&rd->refcount))
534 		return;
535 
536 	call_rcu(&rd->rcu, free_rootdomain);
537 }
538 
539 static int init_rootdomain(struct root_domain *rd)
540 {
541 	if (!zalloc_cpumask_var(&rd->span, GFP_KERNEL))
542 		goto out;
543 	if (!zalloc_cpumask_var(&rd->online, GFP_KERNEL))
544 		goto free_span;
545 	if (!zalloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
546 		goto free_online;
547 	if (!zalloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
548 		goto free_dlo_mask;
549 
550 #ifdef HAVE_RT_PUSH_IPI
551 	rd->rto_cpu = -1;
552 	raw_spin_lock_init(&rd->rto_lock);
553 	rd->rto_push_work = IRQ_WORK_INIT_HARD(rto_push_irq_work_func);
554 #endif
555 
556 	rd->visit_gen = 0;
557 	init_dl_bw(&rd->dl_bw);
558 	if (cpudl_init(&rd->cpudl) != 0)
559 		goto free_rto_mask;
560 
561 	if (cpupri_init(&rd->cpupri) != 0)
562 		goto free_cpudl;
563 	return 0;
564 
565 free_cpudl:
566 	cpudl_cleanup(&rd->cpudl);
567 free_rto_mask:
568 	free_cpumask_var(rd->rto_mask);
569 free_dlo_mask:
570 	free_cpumask_var(rd->dlo_mask);
571 free_online:
572 	free_cpumask_var(rd->online);
573 free_span:
574 	free_cpumask_var(rd->span);
575 out:
576 	return -ENOMEM;
577 }
578 
579 /*
580  * By default the system creates a single root-domain with all CPUs as
581  * members (mimicking the global state we have today).
582  */
583 struct root_domain def_root_domain;
584 
585 void __init init_defrootdomain(void)
586 {
587 	init_rootdomain(&def_root_domain);
588 
589 	atomic_set(&def_root_domain.refcount, 1);
590 }
591 
592 static struct root_domain *alloc_rootdomain(void)
593 {
594 	struct root_domain *rd;
595 
596 	rd = kzalloc(sizeof(*rd), GFP_KERNEL);
597 	if (!rd)
598 		return NULL;
599 
600 	if (init_rootdomain(rd) != 0) {
601 		kfree(rd);
602 		return NULL;
603 	}
604 
605 	return rd;
606 }
607 
608 static void free_sched_groups(struct sched_group *sg, int free_sgc)
609 {
610 	struct sched_group *tmp, *first;
611 
612 	if (!sg)
613 		return;
614 
615 	first = sg;
616 	do {
617 		tmp = sg->next;
618 
619 		if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
620 			kfree(sg->sgc);
621 
622 		if (atomic_dec_and_test(&sg->ref))
623 			kfree(sg);
624 		sg = tmp;
625 	} while (sg != first);
626 }
627 
628 static void destroy_sched_domain(struct sched_domain *sd)
629 {
630 	/*
631 	 * A normal sched domain may have multiple group references, an
632 	 * overlapping domain, having private groups, only one.  Iterate,
633 	 * dropping group/capacity references, freeing where none remain.
634 	 */
635 	free_sched_groups(sd->groups, 1);
636 
637 	if (sd->shared && atomic_dec_and_test(&sd->shared->ref))
638 		kfree(sd->shared);
639 	kfree(sd);
640 }
641 
642 static void destroy_sched_domains_rcu(struct rcu_head *rcu)
643 {
644 	struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
645 
646 	while (sd) {
647 		struct sched_domain *parent = sd->parent;
648 		destroy_sched_domain(sd);
649 		sd = parent;
650 	}
651 }
652 
653 static void destroy_sched_domains(struct sched_domain *sd)
654 {
655 	if (sd)
656 		call_rcu(&sd->rcu, destroy_sched_domains_rcu);
657 }
658 
659 /*
660  * Keep a special pointer to the highest sched_domain that has SD_SHARE_LLC set
661  * (Last Level Cache Domain) for this allows us to avoid some pointer chasing
662  * select_idle_sibling().
663  *
664  * Also keep a unique ID per domain (we use the first CPU number in the cpumask
665  * of the domain), this allows us to quickly tell if two CPUs are in the same
666  * cache domain, see cpus_share_cache().
667  */
668 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_llc);
669 DEFINE_PER_CPU(int, sd_llc_size);
670 DEFINE_PER_CPU(int, sd_llc_id);
671 DEFINE_PER_CPU(int, sd_share_id);
672 DEFINE_PER_CPU(struct sched_domain_shared __rcu *, sd_llc_shared);
673 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_numa);
674 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_asym_packing);
675 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_asym_cpucapacity);
676 
677 DEFINE_STATIC_KEY_FALSE(sched_asym_cpucapacity);
678 DEFINE_STATIC_KEY_FALSE(sched_cluster_active);
679 
680 static void update_top_cache_domain(int cpu)
681 {
682 	struct sched_domain_shared *sds = NULL;
683 	struct sched_domain *sd;
684 	int id = cpu;
685 	int size = 1;
686 
687 	sd = highest_flag_domain(cpu, SD_SHARE_LLC);
688 	if (sd) {
689 		id = cpumask_first(sched_domain_span(sd));
690 		size = cpumask_weight(sched_domain_span(sd));
691 		sds = sd->shared;
692 	}
693 
694 	rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
695 	per_cpu(sd_llc_size, cpu) = size;
696 	per_cpu(sd_llc_id, cpu) = id;
697 	rcu_assign_pointer(per_cpu(sd_llc_shared, cpu), sds);
698 
699 	sd = lowest_flag_domain(cpu, SD_CLUSTER);
700 	if (sd)
701 		id = cpumask_first(sched_domain_span(sd));
702 
703 	/*
704 	 * This assignment should be placed after the sd_llc_id as
705 	 * we want this id equals to cluster id on cluster machines
706 	 * but equals to LLC id on non-Cluster machines.
707 	 */
708 	per_cpu(sd_share_id, cpu) = id;
709 
710 	sd = lowest_flag_domain(cpu, SD_NUMA);
711 	rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
712 
713 	sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
714 	rcu_assign_pointer(per_cpu(sd_asym_packing, cpu), sd);
715 
716 	sd = lowest_flag_domain(cpu, SD_ASYM_CPUCAPACITY_FULL);
717 	rcu_assign_pointer(per_cpu(sd_asym_cpucapacity, cpu), sd);
718 }
719 
720 /*
721  * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
722  * hold the hotplug lock.
723  */
724 static void
725 cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
726 {
727 	struct rq *rq = cpu_rq(cpu);
728 	struct sched_domain *tmp;
729 
730 	/* Remove the sched domains which do not contribute to scheduling. */
731 	for (tmp = sd; tmp; ) {
732 		struct sched_domain *parent = tmp->parent;
733 		if (!parent)
734 			break;
735 
736 		if (sd_parent_degenerate(tmp, parent)) {
737 			tmp->parent = parent->parent;
738 
739 			if (parent->parent) {
740 				parent->parent->child = tmp;
741 				parent->parent->groups->flags = tmp->flags;
742 			}
743 
744 			/*
745 			 * Transfer SD_PREFER_SIBLING down in case of a
746 			 * degenerate parent; the spans match for this
747 			 * so the property transfers.
748 			 */
749 			if (parent->flags & SD_PREFER_SIBLING)
750 				tmp->flags |= SD_PREFER_SIBLING;
751 			destroy_sched_domain(parent);
752 		} else
753 			tmp = tmp->parent;
754 	}
755 
756 	if (sd && sd_degenerate(sd)) {
757 		tmp = sd;
758 		sd = sd->parent;
759 		destroy_sched_domain(tmp);
760 		if (sd) {
761 			struct sched_group *sg = sd->groups;
762 
763 			/*
764 			 * sched groups hold the flags of the child sched
765 			 * domain for convenience. Clear such flags since
766 			 * the child is being destroyed.
767 			 */
768 			do {
769 				sg->flags = 0;
770 			} while (sg != sd->groups);
771 
772 			sd->child = NULL;
773 		}
774 	}
775 
776 	sched_domain_debug(sd, cpu);
777 
778 	rq_attach_root(rq, rd);
779 	tmp = rq->sd;
780 	rcu_assign_pointer(rq->sd, sd);
781 	dirty_sched_domain_sysctl(cpu);
782 	destroy_sched_domains(tmp);
783 
784 	update_top_cache_domain(cpu);
785 }
786 
787 struct s_data {
788 	struct sched_domain * __percpu *sd;
789 	struct root_domain	*rd;
790 };
791 
792 enum s_alloc {
793 	sa_rootdomain,
794 	sa_sd,
795 	sa_sd_storage,
796 	sa_none,
797 };
798 
799 /*
800  * Return the canonical balance CPU for this group, this is the first CPU
801  * of this group that's also in the balance mask.
802  *
803  * The balance mask are all those CPUs that could actually end up at this
804  * group. See build_balance_mask().
805  *
806  * Also see should_we_balance().
807  */
808 int group_balance_cpu(struct sched_group *sg)
809 {
810 	return cpumask_first(group_balance_mask(sg));
811 }
812 
813 
814 /*
815  * NUMA topology (first read the regular topology blurb below)
816  *
817  * Given a node-distance table, for example:
818  *
819  *   node   0   1   2   3
820  *     0:  10  20  30  20
821  *     1:  20  10  20  30
822  *     2:  30  20  10  20
823  *     3:  20  30  20  10
824  *
825  * which represents a 4 node ring topology like:
826  *
827  *   0 ----- 1
828  *   |       |
829  *   |       |
830  *   |       |
831  *   3 ----- 2
832  *
833  * We want to construct domains and groups to represent this. The way we go
834  * about doing this is to build the domains on 'hops'. For each NUMA level we
835  * construct the mask of all nodes reachable in @level hops.
836  *
837  * For the above NUMA topology that gives 3 levels:
838  *
839  * NUMA-2	0-3		0-3		0-3		0-3
840  *  groups:	{0-1,3},{1-3}	{0-2},{0,2-3}	{1-3},{0-1,3}	{0,2-3},{0-2}
841  *
842  * NUMA-1	0-1,3		0-2		1-3		0,2-3
843  *  groups:	{0},{1},{3}	{0},{1},{2}	{1},{2},{3}	{0},{2},{3}
844  *
845  * NUMA-0	0		1		2		3
846  *
847  *
848  * As can be seen; things don't nicely line up as with the regular topology.
849  * When we iterate a domain in child domain chunks some nodes can be
850  * represented multiple times -- hence the "overlap" naming for this part of
851  * the topology.
852  *
853  * In order to minimize this overlap, we only build enough groups to cover the
854  * domain. For instance Node-0 NUMA-2 would only get groups: 0-1,3 and 1-3.
855  *
856  * Because:
857  *
858  *  - the first group of each domain is its child domain; this
859  *    gets us the first 0-1,3
860  *  - the only uncovered node is 2, who's child domain is 1-3.
861  *
862  * However, because of the overlap, computing a unique CPU for each group is
863  * more complicated. Consider for instance the groups of NODE-1 NUMA-2, both
864  * groups include the CPUs of Node-0, while those CPUs would not in fact ever
865  * end up at those groups (they would end up in group: 0-1,3).
866  *
867  * To correct this we have to introduce the group balance mask. This mask
868  * will contain those CPUs in the group that can reach this group given the
869  * (child) domain tree.
870  *
871  * With this we can once again compute balance_cpu and sched_group_capacity
872  * relations.
873  *
874  * XXX include words on how balance_cpu is unique and therefore can be
875  * used for sched_group_capacity links.
876  *
877  *
878  * Another 'interesting' topology is:
879  *
880  *   node   0   1   2   3
881  *     0:  10  20  20  30
882  *     1:  20  10  20  20
883  *     2:  20  20  10  20
884  *     3:  30  20  20  10
885  *
886  * Which looks a little like:
887  *
888  *   0 ----- 1
889  *   |     / |
890  *   |   /   |
891  *   | /     |
892  *   2 ----- 3
893  *
894  * This topology is asymmetric, nodes 1,2 are fully connected, but nodes 0,3
895  * are not.
896  *
897  * This leads to a few particularly weird cases where the sched_domain's are
898  * not of the same number for each CPU. Consider:
899  *
900  * NUMA-2	0-3						0-3
901  *  groups:	{0-2},{1-3}					{1-3},{0-2}
902  *
903  * NUMA-1	0-2		0-3		0-3		1-3
904  *
905  * NUMA-0	0		1		2		3
906  *
907  */
908 
909 
910 /*
911  * Build the balance mask; it contains only those CPUs that can arrive at this
912  * group and should be considered to continue balancing.
913  *
914  * We do this during the group creation pass, therefore the group information
915  * isn't complete yet, however since each group represents a (child) domain we
916  * can fully construct this using the sched_domain bits (which are already
917  * complete).
918  */
919 static void
920 build_balance_mask(struct sched_domain *sd, struct sched_group *sg, struct cpumask *mask)
921 {
922 	const struct cpumask *sg_span = sched_group_span(sg);
923 	struct sd_data *sdd = sd->private;
924 	struct sched_domain *sibling;
925 	int i;
926 
927 	cpumask_clear(mask);
928 
929 	for_each_cpu(i, sg_span) {
930 		sibling = *per_cpu_ptr(sdd->sd, i);
931 
932 		/*
933 		 * Can happen in the asymmetric case, where these siblings are
934 		 * unused. The mask will not be empty because those CPUs that
935 		 * do have the top domain _should_ span the domain.
936 		 */
937 		if (!sibling->child)
938 			continue;
939 
940 		/* If we would not end up here, we can't continue from here */
941 		if (!cpumask_equal(sg_span, sched_domain_span(sibling->child)))
942 			continue;
943 
944 		cpumask_set_cpu(i, mask);
945 	}
946 
947 	/* We must not have empty masks here */
948 	WARN_ON_ONCE(cpumask_empty(mask));
949 }
950 
951 /*
952  * XXX: This creates per-node group entries; since the load-balancer will
953  * immediately access remote memory to construct this group's load-balance
954  * statistics having the groups node local is of dubious benefit.
955  */
956 static struct sched_group *
957 build_group_from_child_sched_domain(struct sched_domain *sd, int cpu)
958 {
959 	struct sched_group *sg;
960 	struct cpumask *sg_span;
961 
962 	sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
963 			GFP_KERNEL, cpu_to_node(cpu));
964 
965 	if (!sg)
966 		return NULL;
967 
968 	sg_span = sched_group_span(sg);
969 	if (sd->child) {
970 		cpumask_copy(sg_span, sched_domain_span(sd->child));
971 		sg->flags = sd->child->flags;
972 	} else {
973 		cpumask_copy(sg_span, sched_domain_span(sd));
974 	}
975 
976 	atomic_inc(&sg->ref);
977 	return sg;
978 }
979 
980 static void init_overlap_sched_group(struct sched_domain *sd,
981 				     struct sched_group *sg)
982 {
983 	struct cpumask *mask = sched_domains_tmpmask2;
984 	struct sd_data *sdd = sd->private;
985 	struct cpumask *sg_span;
986 	int cpu;
987 
988 	build_balance_mask(sd, sg, mask);
989 	cpu = cpumask_first(mask);
990 
991 	sg->sgc = *per_cpu_ptr(sdd->sgc, cpu);
992 	if (atomic_inc_return(&sg->sgc->ref) == 1)
993 		cpumask_copy(group_balance_mask(sg), mask);
994 	else
995 		WARN_ON_ONCE(!cpumask_equal(group_balance_mask(sg), mask));
996 
997 	/*
998 	 * Initialize sgc->capacity such that even if we mess up the
999 	 * domains and no possible iteration will get us here, we won't
1000 	 * die on a /0 trap.
1001 	 */
1002 	sg_span = sched_group_span(sg);
1003 	sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
1004 	sg->sgc->min_capacity = SCHED_CAPACITY_SCALE;
1005 	sg->sgc->max_capacity = SCHED_CAPACITY_SCALE;
1006 }
1007 
1008 static struct sched_domain *
1009 find_descended_sibling(struct sched_domain *sd, struct sched_domain *sibling)
1010 {
1011 	/*
1012 	 * The proper descendant would be the one whose child won't span out
1013 	 * of sd
1014 	 */
1015 	while (sibling->child &&
1016 	       !cpumask_subset(sched_domain_span(sibling->child),
1017 			       sched_domain_span(sd)))
1018 		sibling = sibling->child;
1019 
1020 	/*
1021 	 * As we are referencing sgc across different topology level, we need
1022 	 * to go down to skip those sched_domains which don't contribute to
1023 	 * scheduling because they will be degenerated in cpu_attach_domain
1024 	 */
1025 	while (sibling->child &&
1026 	       cpumask_equal(sched_domain_span(sibling->child),
1027 			     sched_domain_span(sibling)))
1028 		sibling = sibling->child;
1029 
1030 	return sibling;
1031 }
1032 
1033 static int
1034 build_overlap_sched_groups(struct sched_domain *sd, int cpu)
1035 {
1036 	struct sched_group *first = NULL, *last = NULL, *sg;
1037 	const struct cpumask *span = sched_domain_span(sd);
1038 	struct cpumask *covered = sched_domains_tmpmask;
1039 	struct sd_data *sdd = sd->private;
1040 	struct sched_domain *sibling;
1041 	int i;
1042 
1043 	cpumask_clear(covered);
1044 
1045 	for_each_cpu_wrap(i, span, cpu) {
1046 		struct cpumask *sg_span;
1047 
1048 		if (cpumask_test_cpu(i, covered))
1049 			continue;
1050 
1051 		sibling = *per_cpu_ptr(sdd->sd, i);
1052 
1053 		/*
1054 		 * Asymmetric node setups can result in situations where the
1055 		 * domain tree is of unequal depth, make sure to skip domains
1056 		 * that already cover the entire range.
1057 		 *
1058 		 * In that case build_sched_domains() will have terminated the
1059 		 * iteration early and our sibling sd spans will be empty.
1060 		 * Domains should always include the CPU they're built on, so
1061 		 * check that.
1062 		 */
1063 		if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
1064 			continue;
1065 
1066 		/*
1067 		 * Usually we build sched_group by sibling's child sched_domain
1068 		 * But for machines whose NUMA diameter are 3 or above, we move
1069 		 * to build sched_group by sibling's proper descendant's child
1070 		 * domain because sibling's child sched_domain will span out of
1071 		 * the sched_domain being built as below.
1072 		 *
1073 		 * Smallest diameter=3 topology is:
1074 		 *
1075 		 *   node   0   1   2   3
1076 		 *     0:  10  20  30  40
1077 		 *     1:  20  10  20  30
1078 		 *     2:  30  20  10  20
1079 		 *     3:  40  30  20  10
1080 		 *
1081 		 *   0 --- 1 --- 2 --- 3
1082 		 *
1083 		 * NUMA-3       0-3             N/A             N/A             0-3
1084 		 *  groups:     {0-2},{1-3}                                     {1-3},{0-2}
1085 		 *
1086 		 * NUMA-2       0-2             0-3             0-3             1-3
1087 		 *  groups:     {0-1},{1-3}     {0-2},{2-3}     {1-3},{0-1}     {2-3},{0-2}
1088 		 *
1089 		 * NUMA-1       0-1             0-2             1-3             2-3
1090 		 *  groups:     {0},{1}         {1},{2},{0}     {2},{3},{1}     {3},{2}
1091 		 *
1092 		 * NUMA-0       0               1               2               3
1093 		 *
1094 		 * The NUMA-2 groups for nodes 0 and 3 are obviously buggered, as the
1095 		 * group span isn't a subset of the domain span.
1096 		 */
1097 		if (sibling->child &&
1098 		    !cpumask_subset(sched_domain_span(sibling->child), span))
1099 			sibling = find_descended_sibling(sd, sibling);
1100 
1101 		sg = build_group_from_child_sched_domain(sibling, cpu);
1102 		if (!sg)
1103 			goto fail;
1104 
1105 		sg_span = sched_group_span(sg);
1106 		cpumask_or(covered, covered, sg_span);
1107 
1108 		init_overlap_sched_group(sibling, sg);
1109 
1110 		if (!first)
1111 			first = sg;
1112 		if (last)
1113 			last->next = sg;
1114 		last = sg;
1115 		last->next = first;
1116 	}
1117 	sd->groups = first;
1118 
1119 	return 0;
1120 
1121 fail:
1122 	free_sched_groups(first, 0);
1123 
1124 	return -ENOMEM;
1125 }
1126 
1127 
1128 /*
1129  * Package topology (also see the load-balance blurb in fair.c)
1130  *
1131  * The scheduler builds a tree structure to represent a number of important
1132  * topology features. By default (default_topology[]) these include:
1133  *
1134  *  - Simultaneous multithreading (SMT)
1135  *  - Multi-Core Cache (MC)
1136  *  - Package (PKG)
1137  *
1138  * Where the last one more or less denotes everything up to a NUMA node.
1139  *
1140  * The tree consists of 3 primary data structures:
1141  *
1142  *	sched_domain -> sched_group -> sched_group_capacity
1143  *	    ^ ^             ^ ^
1144  *          `-'             `-'
1145  *
1146  * The sched_domains are per-CPU and have a two way link (parent & child) and
1147  * denote the ever growing mask of CPUs belonging to that level of topology.
1148  *
1149  * Each sched_domain has a circular (double) linked list of sched_group's, each
1150  * denoting the domains of the level below (or individual CPUs in case of the
1151  * first domain level). The sched_group linked by a sched_domain includes the
1152  * CPU of that sched_domain [*].
1153  *
1154  * Take for instance a 2 threaded, 2 core, 2 cache cluster part:
1155  *
1156  * CPU   0   1   2   3   4   5   6   7
1157  *
1158  * PKG  [                             ]
1159  * MC   [             ] [             ]
1160  * SMT  [     ] [     ] [     ] [     ]
1161  *
1162  *  - or -
1163  *
1164  * PKG  0-7 0-7 0-7 0-7 0-7 0-7 0-7 0-7
1165  * MC	0-3 0-3 0-3 0-3 4-7 4-7 4-7 4-7
1166  * SMT  0-1 0-1 2-3 2-3 4-5 4-5 6-7 6-7
1167  *
1168  * CPU   0   1   2   3   4   5   6   7
1169  *
1170  * One way to think about it is: sched_domain moves you up and down among these
1171  * topology levels, while sched_group moves you sideways through it, at child
1172  * domain granularity.
1173  *
1174  * sched_group_capacity ensures each unique sched_group has shared storage.
1175  *
1176  * There are two related construction problems, both require a CPU that
1177  * uniquely identify each group (for a given domain):
1178  *
1179  *  - The first is the balance_cpu (see should_we_balance() and the
1180  *    load-balance blub in fair.c); for each group we only want 1 CPU to
1181  *    continue balancing at a higher domain.
1182  *
1183  *  - The second is the sched_group_capacity; we want all identical groups
1184  *    to share a single sched_group_capacity.
1185  *
1186  * Since these topologies are exclusive by construction. That is, its
1187  * impossible for an SMT thread to belong to multiple cores, and cores to
1188  * be part of multiple caches. There is a very clear and unique location
1189  * for each CPU in the hierarchy.
1190  *
1191  * Therefore computing a unique CPU for each group is trivial (the iteration
1192  * mask is redundant and set all 1s; all CPUs in a group will end up at _that_
1193  * group), we can simply pick the first CPU in each group.
1194  *
1195  *
1196  * [*] in other words, the first group of each domain is its child domain.
1197  */
1198 
1199 static struct sched_group *get_group(int cpu, struct sd_data *sdd)
1200 {
1201 	struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
1202 	struct sched_domain *child = sd->child;
1203 	struct sched_group *sg;
1204 	bool already_visited;
1205 
1206 	if (child)
1207 		cpu = cpumask_first(sched_domain_span(child));
1208 
1209 	sg = *per_cpu_ptr(sdd->sg, cpu);
1210 	sg->sgc = *per_cpu_ptr(sdd->sgc, cpu);
1211 
1212 	/* Increase refcounts for claim_allocations: */
1213 	already_visited = atomic_inc_return(&sg->ref) > 1;
1214 	/* sgc visits should follow a similar trend as sg */
1215 	WARN_ON(already_visited != (atomic_inc_return(&sg->sgc->ref) > 1));
1216 
1217 	/* If we have already visited that group, it's already initialized. */
1218 	if (already_visited)
1219 		return sg;
1220 
1221 	if (child) {
1222 		cpumask_copy(sched_group_span(sg), sched_domain_span(child));
1223 		cpumask_copy(group_balance_mask(sg), sched_group_span(sg));
1224 		sg->flags = child->flags;
1225 	} else {
1226 		cpumask_set_cpu(cpu, sched_group_span(sg));
1227 		cpumask_set_cpu(cpu, group_balance_mask(sg));
1228 	}
1229 
1230 	sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sched_group_span(sg));
1231 	sg->sgc->min_capacity = SCHED_CAPACITY_SCALE;
1232 	sg->sgc->max_capacity = SCHED_CAPACITY_SCALE;
1233 
1234 	return sg;
1235 }
1236 
1237 /*
1238  * build_sched_groups will build a circular linked list of the groups
1239  * covered by the given span, will set each group's ->cpumask correctly,
1240  * and will initialize their ->sgc.
1241  *
1242  * Assumes the sched_domain tree is fully constructed
1243  */
1244 static int
1245 build_sched_groups(struct sched_domain *sd, int cpu)
1246 {
1247 	struct sched_group *first = NULL, *last = NULL;
1248 	struct sd_data *sdd = sd->private;
1249 	const struct cpumask *span = sched_domain_span(sd);
1250 	struct cpumask *covered;
1251 	int i;
1252 
1253 	lockdep_assert_held(&sched_domains_mutex);
1254 	covered = sched_domains_tmpmask;
1255 
1256 	cpumask_clear(covered);
1257 
1258 	for_each_cpu_wrap(i, span, cpu) {
1259 		struct sched_group *sg;
1260 
1261 		if (cpumask_test_cpu(i, covered))
1262 			continue;
1263 
1264 		sg = get_group(i, sdd);
1265 
1266 		cpumask_or(covered, covered, sched_group_span(sg));
1267 
1268 		if (!first)
1269 			first = sg;
1270 		if (last)
1271 			last->next = sg;
1272 		last = sg;
1273 	}
1274 	last->next = first;
1275 	sd->groups = first;
1276 
1277 	return 0;
1278 }
1279 
1280 /*
1281  * Initialize sched groups cpu_capacity.
1282  *
1283  * cpu_capacity indicates the capacity of sched group, which is used while
1284  * distributing the load between different sched groups in a sched domain.
1285  * Typically cpu_capacity for all the groups in a sched domain will be same
1286  * unless there are asymmetries in the topology. If there are asymmetries,
1287  * group having more cpu_capacity will pickup more load compared to the
1288  * group having less cpu_capacity.
1289  */
1290 static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
1291 {
1292 	struct sched_group *sg = sd->groups;
1293 	struct cpumask *mask = sched_domains_tmpmask2;
1294 
1295 	WARN_ON(!sg);
1296 
1297 	do {
1298 		int cpu, cores = 0, max_cpu = -1;
1299 
1300 		sg->group_weight = cpumask_weight(sched_group_span(sg));
1301 
1302 		cpumask_copy(mask, sched_group_span(sg));
1303 		for_each_cpu(cpu, mask) {
1304 			cores++;
1305 #ifdef CONFIG_SCHED_SMT
1306 			cpumask_andnot(mask, mask, cpu_smt_mask(cpu));
1307 #endif
1308 		}
1309 		sg->cores = cores;
1310 
1311 		if (!(sd->flags & SD_ASYM_PACKING))
1312 			goto next;
1313 
1314 		for_each_cpu(cpu, sched_group_span(sg)) {
1315 			if (max_cpu < 0)
1316 				max_cpu = cpu;
1317 			else if (sched_asym_prefer(cpu, max_cpu))
1318 				max_cpu = cpu;
1319 		}
1320 		sg->asym_prefer_cpu = max_cpu;
1321 
1322 next:
1323 		sg = sg->next;
1324 	} while (sg != sd->groups);
1325 
1326 	if (cpu != group_balance_cpu(sg))
1327 		return;
1328 
1329 	update_group_capacity(sd, cpu);
1330 }
1331 
1332 /*
1333  * Set of available CPUs grouped by their corresponding capacities
1334  * Each list entry contains a CPU mask reflecting CPUs that share the same
1335  * capacity.
1336  * The lifespan of data is unlimited.
1337  */
1338 LIST_HEAD(asym_cap_list);
1339 
1340 /*
1341  * Verify whether there is any CPU capacity asymmetry in a given sched domain.
1342  * Provides sd_flags reflecting the asymmetry scope.
1343  */
1344 static inline int
1345 asym_cpu_capacity_classify(const struct cpumask *sd_span,
1346 			   const struct cpumask *cpu_map)
1347 {
1348 	struct asym_cap_data *entry;
1349 	int count = 0, miss = 0;
1350 
1351 	/*
1352 	 * Count how many unique CPU capacities this domain spans across
1353 	 * (compare sched_domain CPUs mask with ones representing  available
1354 	 * CPUs capacities). Take into account CPUs that might be offline:
1355 	 * skip those.
1356 	 */
1357 	list_for_each_entry(entry, &asym_cap_list, link) {
1358 		if (cpumask_intersects(sd_span, cpu_capacity_span(entry)))
1359 			++count;
1360 		else if (cpumask_intersects(cpu_map, cpu_capacity_span(entry)))
1361 			++miss;
1362 	}
1363 
1364 	WARN_ON_ONCE(!count && !list_empty(&asym_cap_list));
1365 
1366 	/* No asymmetry detected */
1367 	if (count < 2)
1368 		return 0;
1369 	/* Some of the available CPU capacity values have not been detected */
1370 	if (miss)
1371 		return SD_ASYM_CPUCAPACITY;
1372 
1373 	/* Full asymmetry */
1374 	return SD_ASYM_CPUCAPACITY | SD_ASYM_CPUCAPACITY_FULL;
1375 
1376 }
1377 
1378 static void free_asym_cap_entry(struct rcu_head *head)
1379 {
1380 	struct asym_cap_data *entry = container_of(head, struct asym_cap_data, rcu);
1381 	kfree(entry);
1382 }
1383 
1384 static inline void asym_cpu_capacity_update_data(int cpu)
1385 {
1386 	unsigned long capacity = arch_scale_cpu_capacity(cpu);
1387 	struct asym_cap_data *insert_entry = NULL;
1388 	struct asym_cap_data *entry;
1389 
1390 	/*
1391 	 * Search if capacity already exits. If not, track which the entry
1392 	 * where we should insert to keep the list ordered descendingly.
1393 	 */
1394 	list_for_each_entry(entry, &asym_cap_list, link) {
1395 		if (capacity == entry->capacity)
1396 			goto done;
1397 		else if (!insert_entry && capacity > entry->capacity)
1398 			insert_entry = list_prev_entry(entry, link);
1399 	}
1400 
1401 	entry = kzalloc(sizeof(*entry) + cpumask_size(), GFP_KERNEL);
1402 	if (WARN_ONCE(!entry, "Failed to allocate memory for asymmetry data\n"))
1403 		return;
1404 	entry->capacity = capacity;
1405 
1406 	/* If NULL then the new capacity is the smallest, add last. */
1407 	if (!insert_entry)
1408 		list_add_tail_rcu(&entry->link, &asym_cap_list);
1409 	else
1410 		list_add_rcu(&entry->link, &insert_entry->link);
1411 done:
1412 	__cpumask_set_cpu(cpu, cpu_capacity_span(entry));
1413 }
1414 
1415 /*
1416  * Build-up/update list of CPUs grouped by their capacities
1417  * An update requires explicit request to rebuild sched domains
1418  * with state indicating CPU topology changes.
1419  */
1420 static void asym_cpu_capacity_scan(void)
1421 {
1422 	struct asym_cap_data *entry, *next;
1423 	int cpu;
1424 
1425 	list_for_each_entry(entry, &asym_cap_list, link)
1426 		cpumask_clear(cpu_capacity_span(entry));
1427 
1428 	for_each_cpu_and(cpu, cpu_possible_mask, housekeeping_cpumask(HK_TYPE_DOMAIN))
1429 		asym_cpu_capacity_update_data(cpu);
1430 
1431 	list_for_each_entry_safe(entry, next, &asym_cap_list, link) {
1432 		if (cpumask_empty(cpu_capacity_span(entry))) {
1433 			list_del_rcu(&entry->link);
1434 			call_rcu(&entry->rcu, free_asym_cap_entry);
1435 		}
1436 	}
1437 
1438 	/*
1439 	 * Only one capacity value has been detected i.e. this system is symmetric.
1440 	 * No need to keep this data around.
1441 	 */
1442 	if (list_is_singular(&asym_cap_list)) {
1443 		entry = list_first_entry(&asym_cap_list, typeof(*entry), link);
1444 		list_del_rcu(&entry->link);
1445 		call_rcu(&entry->rcu, free_asym_cap_entry);
1446 	}
1447 }
1448 
1449 /*
1450  * Initializers for schedule domains
1451  * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
1452  */
1453 
1454 static int default_relax_domain_level = -1;
1455 int sched_domain_level_max;
1456 
1457 static int __init setup_relax_domain_level(char *str)
1458 {
1459 	if (kstrtoint(str, 0, &default_relax_domain_level))
1460 		pr_warn("Unable to set relax_domain_level\n");
1461 
1462 	return 1;
1463 }
1464 __setup("relax_domain_level=", setup_relax_domain_level);
1465 
1466 static void set_domain_attribute(struct sched_domain *sd,
1467 				 struct sched_domain_attr *attr)
1468 {
1469 	int request;
1470 
1471 	if (!attr || attr->relax_domain_level < 0) {
1472 		if (default_relax_domain_level < 0)
1473 			return;
1474 		request = default_relax_domain_level;
1475 	} else
1476 		request = attr->relax_domain_level;
1477 
1478 	if (sd->level > request) {
1479 		/* Turn off idle balance on this domain: */
1480 		sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
1481 	}
1482 }
1483 
1484 static void __sdt_free(const struct cpumask *cpu_map);
1485 static int __sdt_alloc(const struct cpumask *cpu_map);
1486 
1487 static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
1488 				 const struct cpumask *cpu_map)
1489 {
1490 	switch (what) {
1491 	case sa_rootdomain:
1492 		if (!atomic_read(&d->rd->refcount))
1493 			free_rootdomain(&d->rd->rcu);
1494 		fallthrough;
1495 	case sa_sd:
1496 		free_percpu(d->sd);
1497 		fallthrough;
1498 	case sa_sd_storage:
1499 		__sdt_free(cpu_map);
1500 		fallthrough;
1501 	case sa_none:
1502 		break;
1503 	}
1504 }
1505 
1506 static enum s_alloc
1507 __visit_domain_allocation_hell(struct s_data *d, const struct cpumask *cpu_map)
1508 {
1509 	memset(d, 0, sizeof(*d));
1510 
1511 	if (__sdt_alloc(cpu_map))
1512 		return sa_sd_storage;
1513 	d->sd = alloc_percpu(struct sched_domain *);
1514 	if (!d->sd)
1515 		return sa_sd_storage;
1516 	d->rd = alloc_rootdomain();
1517 	if (!d->rd)
1518 		return sa_sd;
1519 
1520 	return sa_rootdomain;
1521 }
1522 
1523 /*
1524  * NULL the sd_data elements we've used to build the sched_domain and
1525  * sched_group structure so that the subsequent __free_domain_allocs()
1526  * will not free the data we're using.
1527  */
1528 static void claim_allocations(int cpu, struct sched_domain *sd)
1529 {
1530 	struct sd_data *sdd = sd->private;
1531 
1532 	WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
1533 	*per_cpu_ptr(sdd->sd, cpu) = NULL;
1534 
1535 	if (atomic_read(&(*per_cpu_ptr(sdd->sds, cpu))->ref))
1536 		*per_cpu_ptr(sdd->sds, cpu) = NULL;
1537 
1538 	if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
1539 		*per_cpu_ptr(sdd->sg, cpu) = NULL;
1540 
1541 	if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
1542 		*per_cpu_ptr(sdd->sgc, cpu) = NULL;
1543 }
1544 
1545 #ifdef CONFIG_NUMA
1546 enum numa_topology_type sched_numa_topology_type;
1547 
1548 static int			sched_domains_numa_levels;
1549 static int			sched_domains_curr_level;
1550 
1551 int				sched_max_numa_distance;
1552 static int			*sched_domains_numa_distance;
1553 static struct cpumask		***sched_domains_numa_masks;
1554 #endif
1555 
1556 /*
1557  * SD_flags allowed in topology descriptions.
1558  *
1559  * These flags are purely descriptive of the topology and do not prescribe
1560  * behaviour. Behaviour is artificial and mapped in the below sd_init()
1561  * function. For details, see include/linux/sched/sd_flags.h.
1562  *
1563  *   SD_SHARE_CPUCAPACITY
1564  *   SD_SHARE_LLC
1565  *   SD_CLUSTER
1566  *   SD_NUMA
1567  *
1568  * Odd one out, which beside describing the topology has a quirk also
1569  * prescribes the desired behaviour that goes along with it:
1570  *
1571  *   SD_ASYM_PACKING        - describes SMT quirks
1572  */
1573 #define TOPOLOGY_SD_FLAGS		\
1574 	(SD_SHARE_CPUCAPACITY	|	\
1575 	 SD_CLUSTER		|	\
1576 	 SD_SHARE_LLC		|	\
1577 	 SD_NUMA		|	\
1578 	 SD_ASYM_PACKING)
1579 
1580 static struct sched_domain *
1581 sd_init(struct sched_domain_topology_level *tl,
1582 	const struct cpumask *cpu_map,
1583 	struct sched_domain *child, int cpu)
1584 {
1585 	struct sd_data *sdd = &tl->data;
1586 	struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
1587 	int sd_id, sd_weight, sd_flags = 0;
1588 	struct cpumask *sd_span;
1589 
1590 #ifdef CONFIG_NUMA
1591 	/*
1592 	 * Ugly hack to pass state to sd_numa_mask()...
1593 	 */
1594 	sched_domains_curr_level = tl->numa_level;
1595 #endif
1596 
1597 	sd_weight = cpumask_weight(tl->mask(cpu));
1598 
1599 	if (tl->sd_flags)
1600 		sd_flags = (*tl->sd_flags)();
1601 	if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
1602 			"wrong sd_flags in topology description\n"))
1603 		sd_flags &= TOPOLOGY_SD_FLAGS;
1604 
1605 	*sd = (struct sched_domain){
1606 		.min_interval		= sd_weight,
1607 		.max_interval		= 2*sd_weight,
1608 		.busy_factor		= 16,
1609 		.imbalance_pct		= 117,
1610 
1611 		.cache_nice_tries	= 0,
1612 
1613 		.flags			= 1*SD_BALANCE_NEWIDLE
1614 					| 1*SD_BALANCE_EXEC
1615 					| 1*SD_BALANCE_FORK
1616 					| 0*SD_BALANCE_WAKE
1617 					| 1*SD_WAKE_AFFINE
1618 					| 0*SD_SHARE_CPUCAPACITY
1619 					| 0*SD_SHARE_LLC
1620 					| 0*SD_SERIALIZE
1621 					| 1*SD_PREFER_SIBLING
1622 					| 0*SD_NUMA
1623 					| sd_flags
1624 					,
1625 
1626 		.last_balance		= jiffies,
1627 		.balance_interval	= sd_weight,
1628 		.max_newidle_lb_cost	= 0,
1629 		.last_decay_max_lb_cost	= jiffies,
1630 		.child			= child,
1631 #ifdef CONFIG_SCHED_DEBUG
1632 		.name			= tl->name,
1633 #endif
1634 	};
1635 
1636 	sd_span = sched_domain_span(sd);
1637 	cpumask_and(sd_span, cpu_map, tl->mask(cpu));
1638 	sd_id = cpumask_first(sd_span);
1639 
1640 	sd->flags |= asym_cpu_capacity_classify(sd_span, cpu_map);
1641 
1642 	WARN_ONCE((sd->flags & (SD_SHARE_CPUCAPACITY | SD_ASYM_CPUCAPACITY)) ==
1643 		  (SD_SHARE_CPUCAPACITY | SD_ASYM_CPUCAPACITY),
1644 		  "CPU capacity asymmetry not supported on SMT\n");
1645 
1646 	/*
1647 	 * Convert topological properties into behaviour.
1648 	 */
1649 	/* Don't attempt to spread across CPUs of different capacities. */
1650 	if ((sd->flags & SD_ASYM_CPUCAPACITY) && sd->child)
1651 		sd->child->flags &= ~SD_PREFER_SIBLING;
1652 
1653 	if (sd->flags & SD_SHARE_CPUCAPACITY) {
1654 		sd->imbalance_pct = 110;
1655 
1656 	} else if (sd->flags & SD_SHARE_LLC) {
1657 		sd->imbalance_pct = 117;
1658 		sd->cache_nice_tries = 1;
1659 
1660 #ifdef CONFIG_NUMA
1661 	} else if (sd->flags & SD_NUMA) {
1662 		sd->cache_nice_tries = 2;
1663 
1664 		sd->flags &= ~SD_PREFER_SIBLING;
1665 		sd->flags |= SD_SERIALIZE;
1666 		if (sched_domains_numa_distance[tl->numa_level] > node_reclaim_distance) {
1667 			sd->flags &= ~(SD_BALANCE_EXEC |
1668 				       SD_BALANCE_FORK |
1669 				       SD_WAKE_AFFINE);
1670 		}
1671 
1672 #endif
1673 	} else {
1674 		sd->cache_nice_tries = 1;
1675 	}
1676 
1677 	/*
1678 	 * For all levels sharing cache; connect a sched_domain_shared
1679 	 * instance.
1680 	 */
1681 	if (sd->flags & SD_SHARE_LLC) {
1682 		sd->shared = *per_cpu_ptr(sdd->sds, sd_id);
1683 		atomic_inc(&sd->shared->ref);
1684 		atomic_set(&sd->shared->nr_busy_cpus, sd_weight);
1685 	}
1686 
1687 	sd->private = sdd;
1688 
1689 	return sd;
1690 }
1691 
1692 /*
1693  * Topology list, bottom-up.
1694  */
1695 static struct sched_domain_topology_level default_topology[] = {
1696 #ifdef CONFIG_SCHED_SMT
1697 	{ cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
1698 #endif
1699 
1700 #ifdef CONFIG_SCHED_CLUSTER
1701 	{ cpu_clustergroup_mask, cpu_cluster_flags, SD_INIT_NAME(CLS) },
1702 #endif
1703 
1704 #ifdef CONFIG_SCHED_MC
1705 	{ cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
1706 #endif
1707 	{ cpu_cpu_mask, SD_INIT_NAME(PKG) },
1708 	{ NULL, },
1709 };
1710 
1711 static struct sched_domain_topology_level *sched_domain_topology =
1712 	default_topology;
1713 static struct sched_domain_topology_level *sched_domain_topology_saved;
1714 
1715 #define for_each_sd_topology(tl)			\
1716 	for (tl = sched_domain_topology; tl->mask; tl++)
1717 
1718 void __init set_sched_topology(struct sched_domain_topology_level *tl)
1719 {
1720 	if (WARN_ON_ONCE(sched_smp_initialized))
1721 		return;
1722 
1723 	sched_domain_topology = tl;
1724 	sched_domain_topology_saved = NULL;
1725 }
1726 
1727 #ifdef CONFIG_NUMA
1728 
1729 static const struct cpumask *sd_numa_mask(int cpu)
1730 {
1731 	return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
1732 }
1733 
1734 static void sched_numa_warn(const char *str)
1735 {
1736 	static int done = false;
1737 	int i,j;
1738 
1739 	if (done)
1740 		return;
1741 
1742 	done = true;
1743 
1744 	printk(KERN_WARNING "ERROR: %s\n\n", str);
1745 
1746 	for (i = 0; i < nr_node_ids; i++) {
1747 		printk(KERN_WARNING "  ");
1748 		for (j = 0; j < nr_node_ids; j++) {
1749 			if (!node_state(i, N_CPU) || !node_state(j, N_CPU))
1750 				printk(KERN_CONT "(%02d) ", node_distance(i,j));
1751 			else
1752 				printk(KERN_CONT " %02d  ", node_distance(i,j));
1753 		}
1754 		printk(KERN_CONT "\n");
1755 	}
1756 	printk(KERN_WARNING "\n");
1757 }
1758 
1759 bool find_numa_distance(int distance)
1760 {
1761 	bool found = false;
1762 	int i, *distances;
1763 
1764 	if (distance == node_distance(0, 0))
1765 		return true;
1766 
1767 	rcu_read_lock();
1768 	distances = rcu_dereference(sched_domains_numa_distance);
1769 	if (!distances)
1770 		goto unlock;
1771 	for (i = 0; i < sched_domains_numa_levels; i++) {
1772 		if (distances[i] == distance) {
1773 			found = true;
1774 			break;
1775 		}
1776 	}
1777 unlock:
1778 	rcu_read_unlock();
1779 
1780 	return found;
1781 }
1782 
1783 #define for_each_cpu_node_but(n, nbut)		\
1784 	for_each_node_state(n, N_CPU)		\
1785 		if (n == nbut)			\
1786 			continue;		\
1787 		else
1788 
1789 /*
1790  * A system can have three types of NUMA topology:
1791  * NUMA_DIRECT: all nodes are directly connected, or not a NUMA system
1792  * NUMA_GLUELESS_MESH: some nodes reachable through intermediary nodes
1793  * NUMA_BACKPLANE: nodes can reach other nodes through a backplane
1794  *
1795  * The difference between a glueless mesh topology and a backplane
1796  * topology lies in whether communication between not directly
1797  * connected nodes goes through intermediary nodes (where programs
1798  * could run), or through backplane controllers. This affects
1799  * placement of programs.
1800  *
1801  * The type of topology can be discerned with the following tests:
1802  * - If the maximum distance between any nodes is 1 hop, the system
1803  *   is directly connected.
1804  * - If for two nodes A and B, located N > 1 hops away from each other,
1805  *   there is an intermediary node C, which is < N hops away from both
1806  *   nodes A and B, the system is a glueless mesh.
1807  */
1808 static void init_numa_topology_type(int offline_node)
1809 {
1810 	int a, b, c, n;
1811 
1812 	n = sched_max_numa_distance;
1813 
1814 	if (sched_domains_numa_levels <= 2) {
1815 		sched_numa_topology_type = NUMA_DIRECT;
1816 		return;
1817 	}
1818 
1819 	for_each_cpu_node_but(a, offline_node) {
1820 		for_each_cpu_node_but(b, offline_node) {
1821 			/* Find two nodes furthest removed from each other. */
1822 			if (node_distance(a, b) < n)
1823 				continue;
1824 
1825 			/* Is there an intermediary node between a and b? */
1826 			for_each_cpu_node_but(c, offline_node) {
1827 				if (node_distance(a, c) < n &&
1828 				    node_distance(b, c) < n) {
1829 					sched_numa_topology_type =
1830 							NUMA_GLUELESS_MESH;
1831 					return;
1832 				}
1833 			}
1834 
1835 			sched_numa_topology_type = NUMA_BACKPLANE;
1836 			return;
1837 		}
1838 	}
1839 
1840 	pr_err("Failed to find a NUMA topology type, defaulting to DIRECT\n");
1841 	sched_numa_topology_type = NUMA_DIRECT;
1842 }
1843 
1844 
1845 #define NR_DISTANCE_VALUES (1 << DISTANCE_BITS)
1846 
1847 void sched_init_numa(int offline_node)
1848 {
1849 	struct sched_domain_topology_level *tl;
1850 	unsigned long *distance_map;
1851 	int nr_levels = 0;
1852 	int i, j;
1853 	int *distances;
1854 	struct cpumask ***masks;
1855 
1856 	/*
1857 	 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
1858 	 * unique distances in the node_distance() table.
1859 	 */
1860 	distance_map = bitmap_alloc(NR_DISTANCE_VALUES, GFP_KERNEL);
1861 	if (!distance_map)
1862 		return;
1863 
1864 	bitmap_zero(distance_map, NR_DISTANCE_VALUES);
1865 	for_each_cpu_node_but(i, offline_node) {
1866 		for_each_cpu_node_but(j, offline_node) {
1867 			int distance = node_distance(i, j);
1868 
1869 			if (distance < LOCAL_DISTANCE || distance >= NR_DISTANCE_VALUES) {
1870 				sched_numa_warn("Invalid distance value range");
1871 				bitmap_free(distance_map);
1872 				return;
1873 			}
1874 
1875 			bitmap_set(distance_map, distance, 1);
1876 		}
1877 	}
1878 	/*
1879 	 * We can now figure out how many unique distance values there are and
1880 	 * allocate memory accordingly.
1881 	 */
1882 	nr_levels = bitmap_weight(distance_map, NR_DISTANCE_VALUES);
1883 
1884 	distances = kcalloc(nr_levels, sizeof(int), GFP_KERNEL);
1885 	if (!distances) {
1886 		bitmap_free(distance_map);
1887 		return;
1888 	}
1889 
1890 	for (i = 0, j = 0; i < nr_levels; i++, j++) {
1891 		j = find_next_bit(distance_map, NR_DISTANCE_VALUES, j);
1892 		distances[i] = j;
1893 	}
1894 	rcu_assign_pointer(sched_domains_numa_distance, distances);
1895 
1896 	bitmap_free(distance_map);
1897 
1898 	/*
1899 	 * 'nr_levels' contains the number of unique distances
1900 	 *
1901 	 * The sched_domains_numa_distance[] array includes the actual distance
1902 	 * numbers.
1903 	 */
1904 
1905 	/*
1906 	 * Here, we should temporarily reset sched_domains_numa_levels to 0.
1907 	 * If it fails to allocate memory for array sched_domains_numa_masks[][],
1908 	 * the array will contain less then 'nr_levels' members. This could be
1909 	 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
1910 	 * in other functions.
1911 	 *
1912 	 * We reset it to 'nr_levels' at the end of this function.
1913 	 */
1914 	sched_domains_numa_levels = 0;
1915 
1916 	masks = kzalloc(sizeof(void *) * nr_levels, GFP_KERNEL);
1917 	if (!masks)
1918 		return;
1919 
1920 	/*
1921 	 * Now for each level, construct a mask per node which contains all
1922 	 * CPUs of nodes that are that many hops away from us.
1923 	 */
1924 	for (i = 0; i < nr_levels; i++) {
1925 		masks[i] = kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
1926 		if (!masks[i])
1927 			return;
1928 
1929 		for_each_cpu_node_but(j, offline_node) {
1930 			struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
1931 			int k;
1932 
1933 			if (!mask)
1934 				return;
1935 
1936 			masks[i][j] = mask;
1937 
1938 			for_each_cpu_node_but(k, offline_node) {
1939 				if (sched_debug() && (node_distance(j, k) != node_distance(k, j)))
1940 					sched_numa_warn("Node-distance not symmetric");
1941 
1942 				if (node_distance(j, k) > sched_domains_numa_distance[i])
1943 					continue;
1944 
1945 				cpumask_or(mask, mask, cpumask_of_node(k));
1946 			}
1947 		}
1948 	}
1949 	rcu_assign_pointer(sched_domains_numa_masks, masks);
1950 
1951 	/* Compute default topology size */
1952 	for (i = 0; sched_domain_topology[i].mask; i++);
1953 
1954 	tl = kzalloc((i + nr_levels + 1) *
1955 			sizeof(struct sched_domain_topology_level), GFP_KERNEL);
1956 	if (!tl)
1957 		return;
1958 
1959 	/*
1960 	 * Copy the default topology bits..
1961 	 */
1962 	for (i = 0; sched_domain_topology[i].mask; i++)
1963 		tl[i] = sched_domain_topology[i];
1964 
1965 	/*
1966 	 * Add the NUMA identity distance, aka single NODE.
1967 	 */
1968 	tl[i++] = (struct sched_domain_topology_level){
1969 		.mask = sd_numa_mask,
1970 		.numa_level = 0,
1971 		SD_INIT_NAME(NODE)
1972 	};
1973 
1974 	/*
1975 	 * .. and append 'j' levels of NUMA goodness.
1976 	 */
1977 	for (j = 1; j < nr_levels; i++, j++) {
1978 		tl[i] = (struct sched_domain_topology_level){
1979 			.mask = sd_numa_mask,
1980 			.sd_flags = cpu_numa_flags,
1981 			.flags = SDTL_OVERLAP,
1982 			.numa_level = j,
1983 			SD_INIT_NAME(NUMA)
1984 		};
1985 	}
1986 
1987 	sched_domain_topology_saved = sched_domain_topology;
1988 	sched_domain_topology = tl;
1989 
1990 	sched_domains_numa_levels = nr_levels;
1991 	WRITE_ONCE(sched_max_numa_distance, sched_domains_numa_distance[nr_levels - 1]);
1992 
1993 	init_numa_topology_type(offline_node);
1994 }
1995 
1996 
1997 static void sched_reset_numa(void)
1998 {
1999 	int nr_levels, *distances;
2000 	struct cpumask ***masks;
2001 
2002 	nr_levels = sched_domains_numa_levels;
2003 	sched_domains_numa_levels = 0;
2004 	sched_max_numa_distance = 0;
2005 	sched_numa_topology_type = NUMA_DIRECT;
2006 	distances = sched_domains_numa_distance;
2007 	rcu_assign_pointer(sched_domains_numa_distance, NULL);
2008 	masks = sched_domains_numa_masks;
2009 	rcu_assign_pointer(sched_domains_numa_masks, NULL);
2010 	if (distances || masks) {
2011 		int i, j;
2012 
2013 		synchronize_rcu();
2014 		kfree(distances);
2015 		for (i = 0; i < nr_levels && masks; i++) {
2016 			if (!masks[i])
2017 				continue;
2018 			for_each_node(j)
2019 				kfree(masks[i][j]);
2020 			kfree(masks[i]);
2021 		}
2022 		kfree(masks);
2023 	}
2024 	if (sched_domain_topology_saved) {
2025 		kfree(sched_domain_topology);
2026 		sched_domain_topology = sched_domain_topology_saved;
2027 		sched_domain_topology_saved = NULL;
2028 	}
2029 }
2030 
2031 /*
2032  * Call with hotplug lock held
2033  */
2034 void sched_update_numa(int cpu, bool online)
2035 {
2036 	int node;
2037 
2038 	node = cpu_to_node(cpu);
2039 	/*
2040 	 * Scheduler NUMA topology is updated when the first CPU of a
2041 	 * node is onlined or the last CPU of a node is offlined.
2042 	 */
2043 	if (cpumask_weight(cpumask_of_node(node)) != 1)
2044 		return;
2045 
2046 	sched_reset_numa();
2047 	sched_init_numa(online ? NUMA_NO_NODE : node);
2048 }
2049 
2050 void sched_domains_numa_masks_set(unsigned int cpu)
2051 {
2052 	int node = cpu_to_node(cpu);
2053 	int i, j;
2054 
2055 	for (i = 0; i < sched_domains_numa_levels; i++) {
2056 		for (j = 0; j < nr_node_ids; j++) {
2057 			if (!node_state(j, N_CPU))
2058 				continue;
2059 
2060 			/* Set ourselves in the remote node's masks */
2061 			if (node_distance(j, node) <= sched_domains_numa_distance[i])
2062 				cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
2063 		}
2064 	}
2065 }
2066 
2067 void sched_domains_numa_masks_clear(unsigned int cpu)
2068 {
2069 	int i, j;
2070 
2071 	for (i = 0; i < sched_domains_numa_levels; i++) {
2072 		for (j = 0; j < nr_node_ids; j++) {
2073 			if (sched_domains_numa_masks[i][j])
2074 				cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
2075 		}
2076 	}
2077 }
2078 
2079 /*
2080  * sched_numa_find_closest() - given the NUMA topology, find the cpu
2081  *                             closest to @cpu from @cpumask.
2082  * cpumask: cpumask to find a cpu from
2083  * cpu: cpu to be close to
2084  *
2085  * returns: cpu, or nr_cpu_ids when nothing found.
2086  */
2087 int sched_numa_find_closest(const struct cpumask *cpus, int cpu)
2088 {
2089 	int i, j = cpu_to_node(cpu), found = nr_cpu_ids;
2090 	struct cpumask ***masks;
2091 
2092 	rcu_read_lock();
2093 	masks = rcu_dereference(sched_domains_numa_masks);
2094 	if (!masks)
2095 		goto unlock;
2096 	for (i = 0; i < sched_domains_numa_levels; i++) {
2097 		if (!masks[i][j])
2098 			break;
2099 		cpu = cpumask_any_and(cpus, masks[i][j]);
2100 		if (cpu < nr_cpu_ids) {
2101 			found = cpu;
2102 			break;
2103 		}
2104 	}
2105 unlock:
2106 	rcu_read_unlock();
2107 
2108 	return found;
2109 }
2110 
2111 struct __cmp_key {
2112 	const struct cpumask *cpus;
2113 	struct cpumask ***masks;
2114 	int node;
2115 	int cpu;
2116 	int w;
2117 };
2118 
2119 static int hop_cmp(const void *a, const void *b)
2120 {
2121 	struct cpumask **prev_hop, **cur_hop = *(struct cpumask ***)b;
2122 	struct __cmp_key *k = (struct __cmp_key *)a;
2123 
2124 	if (cpumask_weight_and(k->cpus, cur_hop[k->node]) <= k->cpu)
2125 		return 1;
2126 
2127 	if (b == k->masks) {
2128 		k->w = 0;
2129 		return 0;
2130 	}
2131 
2132 	prev_hop = *((struct cpumask ***)b - 1);
2133 	k->w = cpumask_weight_and(k->cpus, prev_hop[k->node]);
2134 	if (k->w <= k->cpu)
2135 		return 0;
2136 
2137 	return -1;
2138 }
2139 
2140 /**
2141  * sched_numa_find_nth_cpu() - given the NUMA topology, find the Nth closest CPU
2142  *                             from @cpus to @cpu, taking into account distance
2143  *                             from a given @node.
2144  * @cpus: cpumask to find a cpu from
2145  * @cpu: CPU to start searching
2146  * @node: NUMA node to order CPUs by distance
2147  *
2148  * Return: cpu, or nr_cpu_ids when nothing found.
2149  */
2150 int sched_numa_find_nth_cpu(const struct cpumask *cpus, int cpu, int node)
2151 {
2152 	struct __cmp_key k = { .cpus = cpus, .cpu = cpu };
2153 	struct cpumask ***hop_masks;
2154 	int hop, ret = nr_cpu_ids;
2155 
2156 	if (node == NUMA_NO_NODE)
2157 		return cpumask_nth_and(cpu, cpus, cpu_online_mask);
2158 
2159 	rcu_read_lock();
2160 
2161 	/* CPU-less node entries are uninitialized in sched_domains_numa_masks */
2162 	node = numa_nearest_node(node, N_CPU);
2163 	k.node = node;
2164 
2165 	k.masks = rcu_dereference(sched_domains_numa_masks);
2166 	if (!k.masks)
2167 		goto unlock;
2168 
2169 	hop_masks = bsearch(&k, k.masks, sched_domains_numa_levels, sizeof(k.masks[0]), hop_cmp);
2170 	hop = hop_masks	- k.masks;
2171 
2172 	ret = hop ?
2173 		cpumask_nth_and_andnot(cpu - k.w, cpus, k.masks[hop][node], k.masks[hop-1][node]) :
2174 		cpumask_nth_and(cpu, cpus, k.masks[0][node]);
2175 unlock:
2176 	rcu_read_unlock();
2177 	return ret;
2178 }
2179 EXPORT_SYMBOL_GPL(sched_numa_find_nth_cpu);
2180 
2181 /**
2182  * sched_numa_hop_mask() - Get the cpumask of CPUs at most @hops hops away from
2183  *                         @node
2184  * @node: The node to count hops from.
2185  * @hops: Include CPUs up to that many hops away. 0 means local node.
2186  *
2187  * Return: On success, a pointer to a cpumask of CPUs at most @hops away from
2188  * @node, an error value otherwise.
2189  *
2190  * Requires rcu_lock to be held. Returned cpumask is only valid within that
2191  * read-side section, copy it if required beyond that.
2192  *
2193  * Note that not all hops are equal in distance; see sched_init_numa() for how
2194  * distances and masks are handled.
2195  * Also note that this is a reflection of sched_domains_numa_masks, which may change
2196  * during the lifetime of the system (offline nodes are taken out of the masks).
2197  */
2198 const struct cpumask *sched_numa_hop_mask(unsigned int node, unsigned int hops)
2199 {
2200 	struct cpumask ***masks;
2201 
2202 	if (node >= nr_node_ids || hops >= sched_domains_numa_levels)
2203 		return ERR_PTR(-EINVAL);
2204 
2205 	masks = rcu_dereference(sched_domains_numa_masks);
2206 	if (!masks)
2207 		return ERR_PTR(-EBUSY);
2208 
2209 	return masks[hops][node];
2210 }
2211 EXPORT_SYMBOL_GPL(sched_numa_hop_mask);
2212 
2213 #endif /* CONFIG_NUMA */
2214 
2215 static int __sdt_alloc(const struct cpumask *cpu_map)
2216 {
2217 	struct sched_domain_topology_level *tl;
2218 	int j;
2219 
2220 	for_each_sd_topology(tl) {
2221 		struct sd_data *sdd = &tl->data;
2222 
2223 		sdd->sd = alloc_percpu(struct sched_domain *);
2224 		if (!sdd->sd)
2225 			return -ENOMEM;
2226 
2227 		sdd->sds = alloc_percpu(struct sched_domain_shared *);
2228 		if (!sdd->sds)
2229 			return -ENOMEM;
2230 
2231 		sdd->sg = alloc_percpu(struct sched_group *);
2232 		if (!sdd->sg)
2233 			return -ENOMEM;
2234 
2235 		sdd->sgc = alloc_percpu(struct sched_group_capacity *);
2236 		if (!sdd->sgc)
2237 			return -ENOMEM;
2238 
2239 		for_each_cpu(j, cpu_map) {
2240 			struct sched_domain *sd;
2241 			struct sched_domain_shared *sds;
2242 			struct sched_group *sg;
2243 			struct sched_group_capacity *sgc;
2244 
2245 			sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
2246 					GFP_KERNEL, cpu_to_node(j));
2247 			if (!sd)
2248 				return -ENOMEM;
2249 
2250 			*per_cpu_ptr(sdd->sd, j) = sd;
2251 
2252 			sds = kzalloc_node(sizeof(struct sched_domain_shared),
2253 					GFP_KERNEL, cpu_to_node(j));
2254 			if (!sds)
2255 				return -ENOMEM;
2256 
2257 			*per_cpu_ptr(sdd->sds, j) = sds;
2258 
2259 			sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
2260 					GFP_KERNEL, cpu_to_node(j));
2261 			if (!sg)
2262 				return -ENOMEM;
2263 
2264 			sg->next = sg;
2265 
2266 			*per_cpu_ptr(sdd->sg, j) = sg;
2267 
2268 			sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
2269 					GFP_KERNEL, cpu_to_node(j));
2270 			if (!sgc)
2271 				return -ENOMEM;
2272 
2273 #ifdef CONFIG_SCHED_DEBUG
2274 			sgc->id = j;
2275 #endif
2276 
2277 			*per_cpu_ptr(sdd->sgc, j) = sgc;
2278 		}
2279 	}
2280 
2281 	return 0;
2282 }
2283 
2284 static void __sdt_free(const struct cpumask *cpu_map)
2285 {
2286 	struct sched_domain_topology_level *tl;
2287 	int j;
2288 
2289 	for_each_sd_topology(tl) {
2290 		struct sd_data *sdd = &tl->data;
2291 
2292 		for_each_cpu(j, cpu_map) {
2293 			struct sched_domain *sd;
2294 
2295 			if (sdd->sd) {
2296 				sd = *per_cpu_ptr(sdd->sd, j);
2297 				if (sd && (sd->flags & SD_OVERLAP))
2298 					free_sched_groups(sd->groups, 0);
2299 				kfree(*per_cpu_ptr(sdd->sd, j));
2300 			}
2301 
2302 			if (sdd->sds)
2303 				kfree(*per_cpu_ptr(sdd->sds, j));
2304 			if (sdd->sg)
2305 				kfree(*per_cpu_ptr(sdd->sg, j));
2306 			if (sdd->sgc)
2307 				kfree(*per_cpu_ptr(sdd->sgc, j));
2308 		}
2309 		free_percpu(sdd->sd);
2310 		sdd->sd = NULL;
2311 		free_percpu(sdd->sds);
2312 		sdd->sds = NULL;
2313 		free_percpu(sdd->sg);
2314 		sdd->sg = NULL;
2315 		free_percpu(sdd->sgc);
2316 		sdd->sgc = NULL;
2317 	}
2318 }
2319 
2320 static struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
2321 		const struct cpumask *cpu_map, struct sched_domain_attr *attr,
2322 		struct sched_domain *child, int cpu)
2323 {
2324 	struct sched_domain *sd = sd_init(tl, cpu_map, child, cpu);
2325 
2326 	if (child) {
2327 		sd->level = child->level + 1;
2328 		sched_domain_level_max = max(sched_domain_level_max, sd->level);
2329 		child->parent = sd;
2330 
2331 		if (!cpumask_subset(sched_domain_span(child),
2332 				    sched_domain_span(sd))) {
2333 			pr_err("BUG: arch topology borken\n");
2334 #ifdef CONFIG_SCHED_DEBUG
2335 			pr_err("     the %s domain not a subset of the %s domain\n",
2336 					child->name, sd->name);
2337 #endif
2338 			/* Fixup, ensure @sd has at least @child CPUs. */
2339 			cpumask_or(sched_domain_span(sd),
2340 				   sched_domain_span(sd),
2341 				   sched_domain_span(child));
2342 		}
2343 
2344 	}
2345 	set_domain_attribute(sd, attr);
2346 
2347 	return sd;
2348 }
2349 
2350 /*
2351  * Ensure topology masks are sane, i.e. there are no conflicts (overlaps) for
2352  * any two given CPUs at this (non-NUMA) topology level.
2353  */
2354 static bool topology_span_sane(struct sched_domain_topology_level *tl,
2355 			      const struct cpumask *cpu_map, int cpu)
2356 {
2357 	int i;
2358 
2359 	/* NUMA levels are allowed to overlap */
2360 	if (tl->flags & SDTL_OVERLAP)
2361 		return true;
2362 
2363 	/*
2364 	 * Non-NUMA levels cannot partially overlap - they must be either
2365 	 * completely equal or completely disjoint. Otherwise we can end up
2366 	 * breaking the sched_group lists - i.e. a later get_group() pass
2367 	 * breaks the linking done for an earlier span.
2368 	 */
2369 	for_each_cpu(i, cpu_map) {
2370 		if (i == cpu)
2371 			continue;
2372 		/*
2373 		 * We should 'and' all those masks with 'cpu_map' to exactly
2374 		 * match the topology we're about to build, but that can only
2375 		 * remove CPUs, which only lessens our ability to detect
2376 		 * overlaps
2377 		 */
2378 		if (!cpumask_equal(tl->mask(cpu), tl->mask(i)) &&
2379 		    cpumask_intersects(tl->mask(cpu), tl->mask(i)))
2380 			return false;
2381 	}
2382 
2383 	return true;
2384 }
2385 
2386 /*
2387  * Build sched domains for a given set of CPUs and attach the sched domains
2388  * to the individual CPUs
2389  */
2390 static int
2391 build_sched_domains(const struct cpumask *cpu_map, struct sched_domain_attr *attr)
2392 {
2393 	enum s_alloc alloc_state = sa_none;
2394 	struct sched_domain *sd;
2395 	struct s_data d;
2396 	struct rq *rq = NULL;
2397 	int i, ret = -ENOMEM;
2398 	bool has_asym = false;
2399 	bool has_cluster = false;
2400 
2401 	if (WARN_ON(cpumask_empty(cpu_map)))
2402 		goto error;
2403 
2404 	alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
2405 	if (alloc_state != sa_rootdomain)
2406 		goto error;
2407 
2408 	/* Set up domains for CPUs specified by the cpu_map: */
2409 	for_each_cpu(i, cpu_map) {
2410 		struct sched_domain_topology_level *tl;
2411 
2412 		sd = NULL;
2413 		for_each_sd_topology(tl) {
2414 
2415 			if (WARN_ON(!topology_span_sane(tl, cpu_map, i)))
2416 				goto error;
2417 
2418 			sd = build_sched_domain(tl, cpu_map, attr, sd, i);
2419 
2420 			has_asym |= sd->flags & SD_ASYM_CPUCAPACITY;
2421 
2422 			if (tl == sched_domain_topology)
2423 				*per_cpu_ptr(d.sd, i) = sd;
2424 			if (tl->flags & SDTL_OVERLAP)
2425 				sd->flags |= SD_OVERLAP;
2426 			if (cpumask_equal(cpu_map, sched_domain_span(sd)))
2427 				break;
2428 		}
2429 	}
2430 
2431 	/* Build the groups for the domains */
2432 	for_each_cpu(i, cpu_map) {
2433 		for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
2434 			sd->span_weight = cpumask_weight(sched_domain_span(sd));
2435 			if (sd->flags & SD_OVERLAP) {
2436 				if (build_overlap_sched_groups(sd, i))
2437 					goto error;
2438 			} else {
2439 				if (build_sched_groups(sd, i))
2440 					goto error;
2441 			}
2442 		}
2443 	}
2444 
2445 	/*
2446 	 * Calculate an allowed NUMA imbalance such that LLCs do not get
2447 	 * imbalanced.
2448 	 */
2449 	for_each_cpu(i, cpu_map) {
2450 		unsigned int imb = 0;
2451 		unsigned int imb_span = 1;
2452 
2453 		for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
2454 			struct sched_domain *child = sd->child;
2455 
2456 			if (!(sd->flags & SD_SHARE_LLC) && child &&
2457 			    (child->flags & SD_SHARE_LLC)) {
2458 				struct sched_domain __rcu *top_p;
2459 				unsigned int nr_llcs;
2460 
2461 				/*
2462 				 * For a single LLC per node, allow an
2463 				 * imbalance up to 12.5% of the node. This is
2464 				 * arbitrary cutoff based two factors -- SMT and
2465 				 * memory channels. For SMT-2, the intent is to
2466 				 * avoid premature sharing of HT resources but
2467 				 * SMT-4 or SMT-8 *may* benefit from a different
2468 				 * cutoff. For memory channels, this is a very
2469 				 * rough estimate of how many channels may be
2470 				 * active and is based on recent CPUs with
2471 				 * many cores.
2472 				 *
2473 				 * For multiple LLCs, allow an imbalance
2474 				 * until multiple tasks would share an LLC
2475 				 * on one node while LLCs on another node
2476 				 * remain idle. This assumes that there are
2477 				 * enough logical CPUs per LLC to avoid SMT
2478 				 * factors and that there is a correlation
2479 				 * between LLCs and memory channels.
2480 				 */
2481 				nr_llcs = sd->span_weight / child->span_weight;
2482 				if (nr_llcs == 1)
2483 					imb = sd->span_weight >> 3;
2484 				else
2485 					imb = nr_llcs;
2486 				imb = max(1U, imb);
2487 				sd->imb_numa_nr = imb;
2488 
2489 				/* Set span based on the first NUMA domain. */
2490 				top_p = sd->parent;
2491 				while (top_p && !(top_p->flags & SD_NUMA)) {
2492 					top_p = top_p->parent;
2493 				}
2494 				imb_span = top_p ? top_p->span_weight : sd->span_weight;
2495 			} else {
2496 				int factor = max(1U, (sd->span_weight / imb_span));
2497 
2498 				sd->imb_numa_nr = imb * factor;
2499 			}
2500 		}
2501 	}
2502 
2503 	/* Calculate CPU capacity for physical packages and nodes */
2504 	for (i = nr_cpumask_bits-1; i >= 0; i--) {
2505 		if (!cpumask_test_cpu(i, cpu_map))
2506 			continue;
2507 
2508 		for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
2509 			claim_allocations(i, sd);
2510 			init_sched_groups_capacity(i, sd);
2511 		}
2512 	}
2513 
2514 	/* Attach the domains */
2515 	rcu_read_lock();
2516 	for_each_cpu(i, cpu_map) {
2517 		rq = cpu_rq(i);
2518 		sd = *per_cpu_ptr(d.sd, i);
2519 
2520 		cpu_attach_domain(sd, d.rd, i);
2521 
2522 		if (lowest_flag_domain(i, SD_CLUSTER))
2523 			has_cluster = true;
2524 	}
2525 	rcu_read_unlock();
2526 
2527 	if (has_asym)
2528 		static_branch_inc_cpuslocked(&sched_asym_cpucapacity);
2529 
2530 	if (has_cluster)
2531 		static_branch_inc_cpuslocked(&sched_cluster_active);
2532 
2533 	if (rq && sched_debug_verbose)
2534 		pr_info("root domain span: %*pbl\n", cpumask_pr_args(cpu_map));
2535 
2536 	ret = 0;
2537 error:
2538 	__free_domain_allocs(&d, alloc_state, cpu_map);
2539 
2540 	return ret;
2541 }
2542 
2543 /* Current sched domains: */
2544 static cpumask_var_t			*doms_cur;
2545 
2546 /* Number of sched domains in 'doms_cur': */
2547 static int				ndoms_cur;
2548 
2549 /* Attributes of custom domains in 'doms_cur' */
2550 static struct sched_domain_attr		*dattr_cur;
2551 
2552 /*
2553  * Special case: If a kmalloc() of a doms_cur partition (array of
2554  * cpumask) fails, then fallback to a single sched domain,
2555  * as determined by the single cpumask fallback_doms.
2556  */
2557 static cpumask_var_t			fallback_doms;
2558 
2559 /*
2560  * arch_update_cpu_topology lets virtualized architectures update the
2561  * CPU core maps. It is supposed to return 1 if the topology changed
2562  * or 0 if it stayed the same.
2563  */
2564 int __weak arch_update_cpu_topology(void)
2565 {
2566 	return 0;
2567 }
2568 
2569 cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
2570 {
2571 	int i;
2572 	cpumask_var_t *doms;
2573 
2574 	doms = kmalloc_array(ndoms, sizeof(*doms), GFP_KERNEL);
2575 	if (!doms)
2576 		return NULL;
2577 	for (i = 0; i < ndoms; i++) {
2578 		if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
2579 			free_sched_domains(doms, i);
2580 			return NULL;
2581 		}
2582 	}
2583 	return doms;
2584 }
2585 
2586 void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
2587 {
2588 	unsigned int i;
2589 	for (i = 0; i < ndoms; i++)
2590 		free_cpumask_var(doms[i]);
2591 	kfree(doms);
2592 }
2593 
2594 /*
2595  * Set up scheduler domains and groups.  For now this just excludes isolated
2596  * CPUs, but could be used to exclude other special cases in the future.
2597  */
2598 int __init sched_init_domains(const struct cpumask *cpu_map)
2599 {
2600 	int err;
2601 
2602 	zalloc_cpumask_var(&sched_domains_tmpmask, GFP_KERNEL);
2603 	zalloc_cpumask_var(&sched_domains_tmpmask2, GFP_KERNEL);
2604 	zalloc_cpumask_var(&fallback_doms, GFP_KERNEL);
2605 
2606 	arch_update_cpu_topology();
2607 	asym_cpu_capacity_scan();
2608 	ndoms_cur = 1;
2609 	doms_cur = alloc_sched_domains(ndoms_cur);
2610 	if (!doms_cur)
2611 		doms_cur = &fallback_doms;
2612 	cpumask_and(doms_cur[0], cpu_map, housekeeping_cpumask(HK_TYPE_DOMAIN));
2613 	err = build_sched_domains(doms_cur[0], NULL);
2614 
2615 	return err;
2616 }
2617 
2618 /*
2619  * Detach sched domains from a group of CPUs specified in cpu_map
2620  * These CPUs will now be attached to the NULL domain
2621  */
2622 static void detach_destroy_domains(const struct cpumask *cpu_map)
2623 {
2624 	unsigned int cpu = cpumask_any(cpu_map);
2625 	int i;
2626 
2627 	if (rcu_access_pointer(per_cpu(sd_asym_cpucapacity, cpu)))
2628 		static_branch_dec_cpuslocked(&sched_asym_cpucapacity);
2629 
2630 	if (static_branch_unlikely(&sched_cluster_active))
2631 		static_branch_dec_cpuslocked(&sched_cluster_active);
2632 
2633 	rcu_read_lock();
2634 	for_each_cpu(i, cpu_map)
2635 		cpu_attach_domain(NULL, &def_root_domain, i);
2636 	rcu_read_unlock();
2637 }
2638 
2639 /* handle null as "default" */
2640 static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
2641 			struct sched_domain_attr *new, int idx_new)
2642 {
2643 	struct sched_domain_attr tmp;
2644 
2645 	/* Fast path: */
2646 	if (!new && !cur)
2647 		return 1;
2648 
2649 	tmp = SD_ATTR_INIT;
2650 
2651 	return !memcmp(cur ? (cur + idx_cur) : &tmp,
2652 			new ? (new + idx_new) : &tmp,
2653 			sizeof(struct sched_domain_attr));
2654 }
2655 
2656 /*
2657  * Partition sched domains as specified by the 'ndoms_new'
2658  * cpumasks in the array doms_new[] of cpumasks. This compares
2659  * doms_new[] to the current sched domain partitioning, doms_cur[].
2660  * It destroys each deleted domain and builds each new domain.
2661  *
2662  * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
2663  * The masks don't intersect (don't overlap.) We should setup one
2664  * sched domain for each mask. CPUs not in any of the cpumasks will
2665  * not be load balanced. If the same cpumask appears both in the
2666  * current 'doms_cur' domains and in the new 'doms_new', we can leave
2667  * it as it is.
2668  *
2669  * The passed in 'doms_new' should be allocated using
2670  * alloc_sched_domains.  This routine takes ownership of it and will
2671  * free_sched_domains it when done with it. If the caller failed the
2672  * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
2673  * and partition_sched_domains() will fallback to the single partition
2674  * 'fallback_doms', it also forces the domains to be rebuilt.
2675  *
2676  * If doms_new == NULL it will be replaced with cpu_online_mask.
2677  * ndoms_new == 0 is a special case for destroying existing domains,
2678  * and it will not create the default domain.
2679  *
2680  * Call with hotplug lock and sched_domains_mutex held
2681  */
2682 void partition_sched_domains_locked(int ndoms_new, cpumask_var_t doms_new[],
2683 				    struct sched_domain_attr *dattr_new)
2684 {
2685 	bool __maybe_unused has_eas = false;
2686 	int i, j, n;
2687 	int new_topology;
2688 
2689 	lockdep_assert_held(&sched_domains_mutex);
2690 
2691 	/* Let the architecture update CPU core mappings: */
2692 	new_topology = arch_update_cpu_topology();
2693 	/* Trigger rebuilding CPU capacity asymmetry data */
2694 	if (new_topology)
2695 		asym_cpu_capacity_scan();
2696 
2697 	if (!doms_new) {
2698 		WARN_ON_ONCE(dattr_new);
2699 		n = 0;
2700 		doms_new = alloc_sched_domains(1);
2701 		if (doms_new) {
2702 			n = 1;
2703 			cpumask_and(doms_new[0], cpu_active_mask,
2704 				    housekeeping_cpumask(HK_TYPE_DOMAIN));
2705 		}
2706 	} else {
2707 		n = ndoms_new;
2708 	}
2709 
2710 	/* Destroy deleted domains: */
2711 	for (i = 0; i < ndoms_cur; i++) {
2712 		for (j = 0; j < n && !new_topology; j++) {
2713 			if (cpumask_equal(doms_cur[i], doms_new[j]) &&
2714 			    dattrs_equal(dattr_cur, i, dattr_new, j)) {
2715 				struct root_domain *rd;
2716 
2717 				/*
2718 				 * This domain won't be destroyed and as such
2719 				 * its dl_bw->total_bw needs to be cleared.  It
2720 				 * will be recomputed in function
2721 				 * update_tasks_root_domain().
2722 				 */
2723 				rd = cpu_rq(cpumask_any(doms_cur[i]))->rd;
2724 				dl_clear_root_domain(rd);
2725 				goto match1;
2726 			}
2727 		}
2728 		/* No match - a current sched domain not in new doms_new[] */
2729 		detach_destroy_domains(doms_cur[i]);
2730 match1:
2731 		;
2732 	}
2733 
2734 	n = ndoms_cur;
2735 	if (!doms_new) {
2736 		n = 0;
2737 		doms_new = &fallback_doms;
2738 		cpumask_and(doms_new[0], cpu_active_mask,
2739 			    housekeeping_cpumask(HK_TYPE_DOMAIN));
2740 	}
2741 
2742 	/* Build new domains: */
2743 	for (i = 0; i < ndoms_new; i++) {
2744 		for (j = 0; j < n && !new_topology; j++) {
2745 			if (cpumask_equal(doms_new[i], doms_cur[j]) &&
2746 			    dattrs_equal(dattr_new, i, dattr_cur, j))
2747 				goto match2;
2748 		}
2749 		/* No match - add a new doms_new */
2750 		build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
2751 match2:
2752 		;
2753 	}
2754 
2755 #if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
2756 	/* Build perf. domains: */
2757 	for (i = 0; i < ndoms_new; i++) {
2758 		for (j = 0; j < n && !sched_energy_update; j++) {
2759 			if (cpumask_equal(doms_new[i], doms_cur[j]) &&
2760 			    cpu_rq(cpumask_first(doms_cur[j]))->rd->pd) {
2761 				has_eas = true;
2762 				goto match3;
2763 			}
2764 		}
2765 		/* No match - add perf. domains for a new rd */
2766 		has_eas |= build_perf_domains(doms_new[i]);
2767 match3:
2768 		;
2769 	}
2770 	sched_energy_set(has_eas);
2771 #endif
2772 
2773 	/* Remember the new sched domains: */
2774 	if (doms_cur != &fallback_doms)
2775 		free_sched_domains(doms_cur, ndoms_cur);
2776 
2777 	kfree(dattr_cur);
2778 	doms_cur = doms_new;
2779 	dattr_cur = dattr_new;
2780 	ndoms_cur = ndoms_new;
2781 
2782 	update_sched_domain_debugfs();
2783 }
2784 
2785 /*
2786  * Call with hotplug lock held
2787  */
2788 void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
2789 			     struct sched_domain_attr *dattr_new)
2790 {
2791 	mutex_lock(&sched_domains_mutex);
2792 	partition_sched_domains_locked(ndoms_new, doms_new, dattr_new);
2793 	mutex_unlock(&sched_domains_mutex);
2794 }
2795