1 // SPDX-License-Identifier: GPL-2.0
3 * Scheduler topology setup/handling methods
6 #include <linux/bsearch.h>
8 DEFINE_MUTEX(sched_domains_mutex);
10 /* Protected by sched_domains_mutex: */
11 static cpumask_var_t sched_domains_tmpmask;
12 static cpumask_var_t sched_domains_tmpmask2;
14 #ifdef CONFIG_SCHED_DEBUG
16 static int __init sched_debug_setup(char *str)
18 sched_debug_verbose = true;
22 early_param("sched_verbose", sched_debug_setup);
24 static inline bool sched_debug(void)
26 return sched_debug_verbose;
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>
35 static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
36 struct cpumask *groupmask)
38 struct sched_group *group = sd->groups;
39 unsigned long flags = sd->flags;
42 cpumask_clear(groupmask);
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);
48 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
49 printk(KERN_ERR "ERROR: domain->span does not contain CPU%d\n", cpu);
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);
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;
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);
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);
70 printk(KERN_DEBUG "%*s groups:", level + 1, "");
74 printk(KERN_ERR "ERROR: group is NULL\n");
78 if (cpumask_empty(sched_group_span(group))) {
79 printk(KERN_CONT "\n");
80 printk(KERN_ERR "ERROR: empty group\n");
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");
91 cpumask_or(groupmask, groupmask, sched_group_span(group));
93 printk(KERN_CONT " %d:{ span=%*pbl",
95 cpumask_pr_args(sched_group_span(group)));
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)));
103 if (group->sgc->capacity != SCHED_CAPACITY_SCALE)
104 printk(KERN_CONT " cap=%lu", group->sgc->capacity);
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");
112 printk(KERN_CONT " }");
116 if (group != sd->groups)
117 printk(KERN_CONT ",");
119 } while (group != sd->groups);
120 printk(KERN_CONT "\n");
122 if (!cpumask_equal(sched_domain_span(sd), groupmask))
123 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
126 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
127 printk(KERN_ERR "ERROR: parent span is not a superset of domain->span\n");
131 static void sched_domain_debug(struct sched_domain *sd, int cpu)
135 if (!sched_debug_verbose)
139 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
143 printk(KERN_DEBUG "CPU%d attaching sched-domain(s):\n", cpu);
146 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
154 #else /* !CONFIG_SCHED_DEBUG */
156 # define sched_debug_verbose 0
157 # define sched_domain_debug(sd, cpu) do { } while (0)
158 static inline bool sched_debug(void)
162 #endif /* CONFIG_SCHED_DEBUG */
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>
171 static int sd_degenerate(struct sched_domain *sd)
173 if (cpumask_weight(sched_domain_span(sd)) == 1)
176 /* Following flags need at least 2 groups */
177 if ((sd->flags & SD_DEGENERATE_GROUPS_MASK) &&
178 (sd->groups != sd->groups->next))
181 /* Following flags don't use groups */
182 if (sd->flags & (SD_WAKE_AFFINE))
189 sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
191 unsigned long cflags = sd->flags, pflags = parent->flags;
193 if (sd_degenerate(parent))
196 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
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;
203 if (~cflags & pflags)
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;
215 void rebuild_sched_domains_energy(void)
217 mutex_lock(&sched_energy_mutex);
218 sched_energy_update = true;
219 rebuild_sched_domains();
220 sched_energy_update = false;
221 mutex_unlock(&sched_energy_mutex);
224 #ifdef CONFIG_PROC_SYSCTL
225 static int sched_energy_aware_handler(struct ctl_table *table, int write,
226 void *buffer, size_t *lenp, loff_t *ppos)
230 if (write && !capable(CAP_SYS_ADMIN))
233 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
235 state = static_branch_unlikely(&sched_energy_present);
236 if (state != sysctl_sched_energy_aware)
237 rebuild_sched_domains_energy();
243 static struct ctl_table sched_energy_aware_sysctls[] = {
245 .procname = "sched_energy_aware",
246 .data = &sysctl_sched_energy_aware,
247 .maxlen = sizeof(unsigned int),
249 .proc_handler = sched_energy_aware_handler,
250 .extra1 = SYSCTL_ZERO,
251 .extra2 = SYSCTL_ONE,
256 static int __init sched_energy_aware_sysctl_init(void)
258 register_sysctl_init("kernel", sched_energy_aware_sysctls);
262 late_initcall(sched_energy_aware_sysctl_init);
265 static void free_pd(struct perf_domain *pd)
267 struct perf_domain *tmp;
276 static struct perf_domain *find_pd(struct perf_domain *pd, int cpu)
279 if (cpumask_test_cpu(cpu, perf_domain_span(pd)))
287 static struct perf_domain *pd_init(int cpu)
289 struct em_perf_domain *obj = em_cpu_get(cpu);
290 struct perf_domain *pd;
294 pr_info("%s: no EM found for CPU%d\n", __func__, cpu);
298 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
306 static void perf_domain_debug(const struct cpumask *cpu_map,
307 struct perf_domain *pd)
309 if (!sched_debug() || !pd)
312 printk(KERN_DEBUG "root_domain %*pbl:", cpumask_pr_args(cpu_map));
315 printk(KERN_CONT " pd%d:{ cpus=%*pbl nr_pstate=%d }",
316 cpumask_first(perf_domain_span(pd)),
317 cpumask_pr_args(perf_domain_span(pd)),
318 em_pd_nr_perf_states(pd->em_pd));
322 printk(KERN_CONT "\n");
325 static void destroy_perf_domain_rcu(struct rcu_head *rp)
327 struct perf_domain *pd;
329 pd = container_of(rp, struct perf_domain, rcu);
333 static void sched_energy_set(bool has_eas)
335 if (!has_eas && static_branch_unlikely(&sched_energy_present)) {
337 pr_info("%s: stopping EAS\n", __func__);
338 static_branch_disable_cpuslocked(&sched_energy_present);
339 } else if (has_eas && !static_branch_unlikely(&sched_energy_present)) {
341 pr_info("%s: starting EAS\n", __func__);
342 static_branch_enable_cpuslocked(&sched_energy_present);
347 * EAS can be used on a root domain if it meets all the following conditions:
348 * 1. an Energy Model (EM) is available;
349 * 2. the SD_ASYM_CPUCAPACITY flag is set in the sched_domain hierarchy.
350 * 3. no SMT is detected.
351 * 4. the EM complexity is low enough to keep scheduling overheads low;
352 * 5. schedutil is driving the frequency of all CPUs of the rd;
353 * 6. frequency invariance support is present;
355 * The complexity of the Energy Model is defined as:
357 * C = nr_pd * (nr_cpus + nr_ps)
359 * with parameters defined as:
360 * - nr_pd: the number of performance domains
361 * - nr_cpus: the number of CPUs
362 * - nr_ps: the sum of the number of performance states of all performance
363 * domains (for example, on a system with 2 performance domains,
364 * with 10 performance states each, nr_ps = 2 * 10 = 20).
366 * It is generally not a good idea to use such a model in the wake-up path on
367 * very complex platforms because of the associated scheduling overheads. The
368 * arbitrary constraint below prevents that. It makes EAS usable up to 16 CPUs
369 * with per-CPU DVFS and less than 8 performance states each, for example.
371 #define EM_MAX_COMPLEXITY 2048
373 extern struct cpufreq_governor schedutil_gov;
374 static bool build_perf_domains(const struct cpumask *cpu_map)
376 int i, nr_pd = 0, nr_ps = 0, nr_cpus = cpumask_weight(cpu_map);
377 struct perf_domain *pd = NULL, *tmp;
378 int cpu = cpumask_first(cpu_map);
379 struct root_domain *rd = cpu_rq(cpu)->rd;
380 struct cpufreq_policy *policy;
381 struct cpufreq_governor *gov;
383 if (!sysctl_sched_energy_aware)
386 /* EAS is enabled for asymmetric CPU capacity topologies. */
387 if (!per_cpu(sd_asym_cpucapacity, cpu)) {
389 pr_info("rd %*pbl: CPUs do not have asymmetric capacities\n",
390 cpumask_pr_args(cpu_map));
395 /* EAS definitely does *not* handle SMT */
396 if (sched_smt_active()) {
397 pr_warn("rd %*pbl: Disabling EAS, SMT is not supported\n",
398 cpumask_pr_args(cpu_map));
402 if (!arch_scale_freq_invariant()) {
404 pr_warn("rd %*pbl: Disabling EAS: frequency-invariant load tracking not yet supported",
405 cpumask_pr_args(cpu_map));
410 for_each_cpu(i, cpu_map) {
411 /* Skip already covered CPUs. */
415 /* Do not attempt EAS if schedutil is not being used. */
416 policy = cpufreq_cpu_get(i);
419 gov = policy->governor;
420 cpufreq_cpu_put(policy);
421 if (gov != &schedutil_gov) {
423 pr_warn("rd %*pbl: Disabling EAS, schedutil is mandatory\n",
424 cpumask_pr_args(cpu_map));
428 /* Create the new pd and add it to the local list. */
436 * Count performance domains and performance states for the
440 nr_ps += em_pd_nr_perf_states(pd->em_pd);
443 /* Bail out if the Energy Model complexity is too high. */
444 if (nr_pd * (nr_ps + nr_cpus) > EM_MAX_COMPLEXITY) {
445 WARN(1, "rd %*pbl: Failed to start EAS, EM complexity is too high\n",
446 cpumask_pr_args(cpu_map));
450 perf_domain_debug(cpu_map, pd);
452 /* Attach the new list of performance domains to the root domain. */
454 rcu_assign_pointer(rd->pd, pd);
456 call_rcu(&tmp->rcu, destroy_perf_domain_rcu);
463 rcu_assign_pointer(rd->pd, NULL);
465 call_rcu(&tmp->rcu, destroy_perf_domain_rcu);
470 static void free_pd(struct perf_domain *pd) { }
471 #endif /* CONFIG_ENERGY_MODEL && CONFIG_CPU_FREQ_GOV_SCHEDUTIL*/
473 static void free_rootdomain(struct rcu_head *rcu)
475 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
477 cpupri_cleanup(&rd->cpupri);
478 cpudl_cleanup(&rd->cpudl);
479 free_cpumask_var(rd->dlo_mask);
480 free_cpumask_var(rd->rto_mask);
481 free_cpumask_var(rd->online);
482 free_cpumask_var(rd->span);
487 void rq_attach_root(struct rq *rq, struct root_domain *rd)
489 struct root_domain *old_rd = NULL;
492 rq_lock_irqsave(rq, &rf);
497 if (cpumask_test_cpu(rq->cpu, old_rd->online))
500 cpumask_clear_cpu(rq->cpu, old_rd->span);
503 * If we dont want to free the old_rd yet then
504 * set old_rd to NULL to skip the freeing later
507 if (!atomic_dec_and_test(&old_rd->refcount))
511 atomic_inc(&rd->refcount);
514 cpumask_set_cpu(rq->cpu, rd->span);
515 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
518 rq_unlock_irqrestore(rq, &rf);
521 call_rcu(&old_rd->rcu, free_rootdomain);
524 void sched_get_rd(struct root_domain *rd)
526 atomic_inc(&rd->refcount);
529 void sched_put_rd(struct root_domain *rd)
531 if (!atomic_dec_and_test(&rd->refcount))
534 call_rcu(&rd->rcu, free_rootdomain);
537 static int init_rootdomain(struct root_domain *rd)
539 if (!zalloc_cpumask_var(&rd->span, GFP_KERNEL))
541 if (!zalloc_cpumask_var(&rd->online, GFP_KERNEL))
543 if (!zalloc_cpumask_var(&rd->dlo_mask, GFP_KERNEL))
545 if (!zalloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
548 #ifdef HAVE_RT_PUSH_IPI
550 raw_spin_lock_init(&rd->rto_lock);
551 rd->rto_push_work = IRQ_WORK_INIT_HARD(rto_push_irq_work_func);
555 init_dl_bw(&rd->dl_bw);
556 if (cpudl_init(&rd->cpudl) != 0)
559 if (cpupri_init(&rd->cpupri) != 0)
564 cpudl_cleanup(&rd->cpudl);
566 free_cpumask_var(rd->rto_mask);
568 free_cpumask_var(rd->dlo_mask);
570 free_cpumask_var(rd->online);
572 free_cpumask_var(rd->span);
578 * By default the system creates a single root-domain with all CPUs as
579 * members (mimicking the global state we have today).
581 struct root_domain def_root_domain;
583 void __init init_defrootdomain(void)
585 init_rootdomain(&def_root_domain);
587 atomic_set(&def_root_domain.refcount, 1);
590 static struct root_domain *alloc_rootdomain(void)
592 struct root_domain *rd;
594 rd = kzalloc(sizeof(*rd), GFP_KERNEL);
598 if (init_rootdomain(rd) != 0) {
606 static void free_sched_groups(struct sched_group *sg, int free_sgc)
608 struct sched_group *tmp, *first;
617 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref))
620 if (atomic_dec_and_test(&sg->ref))
623 } while (sg != first);
626 static void destroy_sched_domain(struct sched_domain *sd)
629 * A normal sched domain may have multiple group references, an
630 * overlapping domain, having private groups, only one. Iterate,
631 * dropping group/capacity references, freeing where none remain.
633 free_sched_groups(sd->groups, 1);
635 if (sd->shared && atomic_dec_and_test(&sd->shared->ref))
640 static void destroy_sched_domains_rcu(struct rcu_head *rcu)
642 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
645 struct sched_domain *parent = sd->parent;
646 destroy_sched_domain(sd);
651 static void destroy_sched_domains(struct sched_domain *sd)
654 call_rcu(&sd->rcu, destroy_sched_domains_rcu);
658 * Keep a special pointer to the highest sched_domain that has
659 * SD_SHARE_PKG_RESOURCE set (Last Level Cache Domain) for this
660 * allows us to avoid some pointer chasing select_idle_sibling().
662 * Also keep a unique ID per domain (we use the first CPU number in
663 * the cpumask of the domain), this allows us to quickly tell if
664 * two CPUs are in the same cache domain, see cpus_share_cache().
666 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_llc);
667 DEFINE_PER_CPU(int, sd_llc_size);
668 DEFINE_PER_CPU(int, sd_llc_id);
669 DEFINE_PER_CPU(struct sched_domain_shared __rcu *, sd_llc_shared);
670 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_numa);
671 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_asym_packing);
672 DEFINE_PER_CPU(struct sched_domain __rcu *, sd_asym_cpucapacity);
673 DEFINE_STATIC_KEY_FALSE(sched_asym_cpucapacity);
675 static void update_top_cache_domain(int cpu)
677 struct sched_domain_shared *sds = NULL;
678 struct sched_domain *sd;
682 sd = highest_flag_domain(cpu, SD_SHARE_PKG_RESOURCES);
684 id = cpumask_first(sched_domain_span(sd));
685 size = cpumask_weight(sched_domain_span(sd));
689 rcu_assign_pointer(per_cpu(sd_llc, cpu), sd);
690 per_cpu(sd_llc_size, cpu) = size;
691 per_cpu(sd_llc_id, cpu) = id;
692 rcu_assign_pointer(per_cpu(sd_llc_shared, cpu), sds);
694 sd = lowest_flag_domain(cpu, SD_NUMA);
695 rcu_assign_pointer(per_cpu(sd_numa, cpu), sd);
697 sd = highest_flag_domain(cpu, SD_ASYM_PACKING);
698 rcu_assign_pointer(per_cpu(sd_asym_packing, cpu), sd);
700 sd = lowest_flag_domain(cpu, SD_ASYM_CPUCAPACITY_FULL);
701 rcu_assign_pointer(per_cpu(sd_asym_cpucapacity, cpu), sd);
705 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
706 * hold the hotplug lock.
709 cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
711 struct rq *rq = cpu_rq(cpu);
712 struct sched_domain *tmp;
714 /* Remove the sched domains which do not contribute to scheduling. */
715 for (tmp = sd; tmp; ) {
716 struct sched_domain *parent = tmp->parent;
720 if (sd_parent_degenerate(tmp, parent)) {
721 tmp->parent = parent->parent;
723 if (parent->parent) {
724 parent->parent->child = tmp;
725 parent->parent->groups->flags = tmp->flags;
729 * Transfer SD_PREFER_SIBLING down in case of a
730 * degenerate parent; the spans match for this
731 * so the property transfers.
733 if (parent->flags & SD_PREFER_SIBLING)
734 tmp->flags |= SD_PREFER_SIBLING;
735 destroy_sched_domain(parent);
740 if (sd && sd_degenerate(sd)) {
743 destroy_sched_domain(tmp);
745 struct sched_group *sg = sd->groups;
748 * sched groups hold the flags of the child sched
749 * domain for convenience. Clear such flags since
750 * the child is being destroyed.
754 } while (sg != sd->groups);
760 sched_domain_debug(sd, cpu);
762 rq_attach_root(rq, rd);
764 rcu_assign_pointer(rq->sd, sd);
765 dirty_sched_domain_sysctl(cpu);
766 destroy_sched_domains(tmp);
768 update_top_cache_domain(cpu);
772 struct sched_domain * __percpu *sd;
773 struct root_domain *rd;
784 * Return the canonical balance CPU for this group, this is the first CPU
785 * of this group that's also in the balance mask.
787 * The balance mask are all those CPUs that could actually end up at this
788 * group. See build_balance_mask().
790 * Also see should_we_balance().
792 int group_balance_cpu(struct sched_group *sg)
794 return cpumask_first(group_balance_mask(sg));
799 * NUMA topology (first read the regular topology blurb below)
801 * Given a node-distance table, for example:
809 * which represents a 4 node ring topology like:
817 * We want to construct domains and groups to represent this. The way we go
818 * about doing this is to build the domains on 'hops'. For each NUMA level we
819 * construct the mask of all nodes reachable in @level hops.
821 * For the above NUMA topology that gives 3 levels:
823 * NUMA-2 0-3 0-3 0-3 0-3
824 * groups: {0-1,3},{1-3} {0-2},{0,2-3} {1-3},{0-1,3} {0,2-3},{0-2}
826 * NUMA-1 0-1,3 0-2 1-3 0,2-3
827 * groups: {0},{1},{3} {0},{1},{2} {1},{2},{3} {0},{2},{3}
832 * As can be seen; things don't nicely line up as with the regular topology.
833 * When we iterate a domain in child domain chunks some nodes can be
834 * represented multiple times -- hence the "overlap" naming for this part of
837 * In order to minimize this overlap, we only build enough groups to cover the
838 * domain. For instance Node-0 NUMA-2 would only get groups: 0-1,3 and 1-3.
842 * - the first group of each domain is its child domain; this
843 * gets us the first 0-1,3
844 * - the only uncovered node is 2, who's child domain is 1-3.
846 * However, because of the overlap, computing a unique CPU for each group is
847 * more complicated. Consider for instance the groups of NODE-1 NUMA-2, both
848 * groups include the CPUs of Node-0, while those CPUs would not in fact ever
849 * end up at those groups (they would end up in group: 0-1,3).
851 * To correct this we have to introduce the group balance mask. This mask
852 * will contain those CPUs in the group that can reach this group given the
853 * (child) domain tree.
855 * With this we can once again compute balance_cpu and sched_group_capacity
858 * XXX include words on how balance_cpu is unique and therefore can be
859 * used for sched_group_capacity links.
862 * Another 'interesting' topology is:
870 * Which looks a little like:
878 * This topology is asymmetric, nodes 1,2 are fully connected, but nodes 0,3
881 * This leads to a few particularly weird cases where the sched_domain's are
882 * not of the same number for each CPU. Consider:
885 * groups: {0-2},{1-3} {1-3},{0-2}
887 * NUMA-1 0-2 0-3 0-3 1-3
895 * Build the balance mask; it contains only those CPUs that can arrive at this
896 * group and should be considered to continue balancing.
898 * We do this during the group creation pass, therefore the group information
899 * isn't complete yet, however since each group represents a (child) domain we
900 * can fully construct this using the sched_domain bits (which are already
904 build_balance_mask(struct sched_domain *sd, struct sched_group *sg, struct cpumask *mask)
906 const struct cpumask *sg_span = sched_group_span(sg);
907 struct sd_data *sdd = sd->private;
908 struct sched_domain *sibling;
913 for_each_cpu(i, sg_span) {
914 sibling = *per_cpu_ptr(sdd->sd, i);
917 * Can happen in the asymmetric case, where these siblings are
918 * unused. The mask will not be empty because those CPUs that
919 * do have the top domain _should_ span the domain.
924 /* If we would not end up here, we can't continue from here */
925 if (!cpumask_equal(sg_span, sched_domain_span(sibling->child)))
928 cpumask_set_cpu(i, mask);
931 /* We must not have empty masks here */
932 WARN_ON_ONCE(cpumask_empty(mask));
936 * XXX: This creates per-node group entries; since the load-balancer will
937 * immediately access remote memory to construct this group's load-balance
938 * statistics having the groups node local is of dubious benefit.
940 static struct sched_group *
941 build_group_from_child_sched_domain(struct sched_domain *sd, int cpu)
943 struct sched_group *sg;
944 struct cpumask *sg_span;
946 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
947 GFP_KERNEL, cpu_to_node(cpu));
952 sg_span = sched_group_span(sg);
954 cpumask_copy(sg_span, sched_domain_span(sd->child));
955 sg->flags = sd->child->flags;
957 cpumask_copy(sg_span, sched_domain_span(sd));
960 atomic_inc(&sg->ref);
964 static void init_overlap_sched_group(struct sched_domain *sd,
965 struct sched_group *sg)
967 struct cpumask *mask = sched_domains_tmpmask2;
968 struct sd_data *sdd = sd->private;
969 struct cpumask *sg_span;
972 build_balance_mask(sd, sg, mask);
973 cpu = cpumask_first(mask);
975 sg->sgc = *per_cpu_ptr(sdd->sgc, cpu);
976 if (atomic_inc_return(&sg->sgc->ref) == 1)
977 cpumask_copy(group_balance_mask(sg), mask);
979 WARN_ON_ONCE(!cpumask_equal(group_balance_mask(sg), mask));
982 * Initialize sgc->capacity such that even if we mess up the
983 * domains and no possible iteration will get us here, we won't
986 sg_span = sched_group_span(sg);
987 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span);
988 sg->sgc->min_capacity = SCHED_CAPACITY_SCALE;
989 sg->sgc->max_capacity = SCHED_CAPACITY_SCALE;
992 static struct sched_domain *
993 find_descended_sibling(struct sched_domain *sd, struct sched_domain *sibling)
996 * The proper descendant would be the one whose child won't span out
999 while (sibling->child &&
1000 !cpumask_subset(sched_domain_span(sibling->child),
1001 sched_domain_span(sd)))
1002 sibling = sibling->child;
1005 * As we are referencing sgc across different topology level, we need
1006 * to go down to skip those sched_domains which don't contribute to
1007 * scheduling because they will be degenerated in cpu_attach_domain
1009 while (sibling->child &&
1010 cpumask_equal(sched_domain_span(sibling->child),
1011 sched_domain_span(sibling)))
1012 sibling = sibling->child;
1018 build_overlap_sched_groups(struct sched_domain *sd, int cpu)
1020 struct sched_group *first = NULL, *last = NULL, *sg;
1021 const struct cpumask *span = sched_domain_span(sd);
1022 struct cpumask *covered = sched_domains_tmpmask;
1023 struct sd_data *sdd = sd->private;
1024 struct sched_domain *sibling;
1027 cpumask_clear(covered);
1029 for_each_cpu_wrap(i, span, cpu) {
1030 struct cpumask *sg_span;
1032 if (cpumask_test_cpu(i, covered))
1035 sibling = *per_cpu_ptr(sdd->sd, i);
1038 * Asymmetric node setups can result in situations where the
1039 * domain tree is of unequal depth, make sure to skip domains
1040 * that already cover the entire range.
1042 * In that case build_sched_domains() will have terminated the
1043 * iteration early and our sibling sd spans will be empty.
1044 * Domains should always include the CPU they're built on, so
1047 if (!cpumask_test_cpu(i, sched_domain_span(sibling)))
1051 * Usually we build sched_group by sibling's child sched_domain
1052 * But for machines whose NUMA diameter are 3 or above, we move
1053 * to build sched_group by sibling's proper descendant's child
1054 * domain because sibling's child sched_domain will span out of
1055 * the sched_domain being built as below.
1057 * Smallest diameter=3 topology is:
1065 * 0 --- 1 --- 2 --- 3
1067 * NUMA-3 0-3 N/A N/A 0-3
1068 * groups: {0-2},{1-3} {1-3},{0-2}
1070 * NUMA-2 0-2 0-3 0-3 1-3
1071 * groups: {0-1},{1-3} {0-2},{2-3} {1-3},{0-1} {2-3},{0-2}
1073 * NUMA-1 0-1 0-2 1-3 2-3
1074 * groups: {0},{1} {1},{2},{0} {2},{3},{1} {3},{2}
1078 * The NUMA-2 groups for nodes 0 and 3 are obviously buggered, as the
1079 * group span isn't a subset of the domain span.
1081 if (sibling->child &&
1082 !cpumask_subset(sched_domain_span(sibling->child), span))
1083 sibling = find_descended_sibling(sd, sibling);
1085 sg = build_group_from_child_sched_domain(sibling, cpu);
1089 sg_span = sched_group_span(sg);
1090 cpumask_or(covered, covered, sg_span);
1092 init_overlap_sched_group(sibling, sg);
1106 free_sched_groups(first, 0);
1113 * Package topology (also see the load-balance blurb in fair.c)
1115 * The scheduler builds a tree structure to represent a number of important
1116 * topology features. By default (default_topology[]) these include:
1118 * - Simultaneous multithreading (SMT)
1119 * - Multi-Core Cache (MC)
1122 * Where the last one more or less denotes everything up to a NUMA node.
1124 * The tree consists of 3 primary data structures:
1126 * sched_domain -> sched_group -> sched_group_capacity
1130 * The sched_domains are per-CPU and have a two way link (parent & child) and
1131 * denote the ever growing mask of CPUs belonging to that level of topology.
1133 * Each sched_domain has a circular (double) linked list of sched_group's, each
1134 * denoting the domains of the level below (or individual CPUs in case of the
1135 * first domain level). The sched_group linked by a sched_domain includes the
1136 * CPU of that sched_domain [*].
1138 * Take for instance a 2 threaded, 2 core, 2 cache cluster part:
1140 * CPU 0 1 2 3 4 5 6 7
1144 * SMT [ ] [ ] [ ] [ ]
1148 * DIE 0-7 0-7 0-7 0-7 0-7 0-7 0-7 0-7
1149 * MC 0-3 0-3 0-3 0-3 4-7 4-7 4-7 4-7
1150 * SMT 0-1 0-1 2-3 2-3 4-5 4-5 6-7 6-7
1152 * CPU 0 1 2 3 4 5 6 7
1154 * One way to think about it is: sched_domain moves you up and down among these
1155 * topology levels, while sched_group moves you sideways through it, at child
1156 * domain granularity.
1158 * sched_group_capacity ensures each unique sched_group has shared storage.
1160 * There are two related construction problems, both require a CPU that
1161 * uniquely identify each group (for a given domain):
1163 * - The first is the balance_cpu (see should_we_balance() and the
1164 * load-balance blub in fair.c); for each group we only want 1 CPU to
1165 * continue balancing at a higher domain.
1167 * - The second is the sched_group_capacity; we want all identical groups
1168 * to share a single sched_group_capacity.
1170 * Since these topologies are exclusive by construction. That is, its
1171 * impossible for an SMT thread to belong to multiple cores, and cores to
1172 * be part of multiple caches. There is a very clear and unique location
1173 * for each CPU in the hierarchy.
1175 * Therefore computing a unique CPU for each group is trivial (the iteration
1176 * mask is redundant and set all 1s; all CPUs in a group will end up at _that_
1177 * group), we can simply pick the first CPU in each group.
1180 * [*] in other words, the first group of each domain is its child domain.
1183 static struct sched_group *get_group(int cpu, struct sd_data *sdd)
1185 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
1186 struct sched_domain *child = sd->child;
1187 struct sched_group *sg;
1188 bool already_visited;
1191 cpu = cpumask_first(sched_domain_span(child));
1193 sg = *per_cpu_ptr(sdd->sg, cpu);
1194 sg->sgc = *per_cpu_ptr(sdd->sgc, cpu);
1196 /* Increase refcounts for claim_allocations: */
1197 already_visited = atomic_inc_return(&sg->ref) > 1;
1198 /* sgc visits should follow a similar trend as sg */
1199 WARN_ON(already_visited != (atomic_inc_return(&sg->sgc->ref) > 1));
1201 /* If we have already visited that group, it's already initialized. */
1202 if (already_visited)
1206 cpumask_copy(sched_group_span(sg), sched_domain_span(child));
1207 cpumask_copy(group_balance_mask(sg), sched_group_span(sg));
1208 sg->flags = child->flags;
1210 cpumask_set_cpu(cpu, sched_group_span(sg));
1211 cpumask_set_cpu(cpu, group_balance_mask(sg));
1214 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sched_group_span(sg));
1215 sg->sgc->min_capacity = SCHED_CAPACITY_SCALE;
1216 sg->sgc->max_capacity = SCHED_CAPACITY_SCALE;
1222 * build_sched_groups will build a circular linked list of the groups
1223 * covered by the given span, will set each group's ->cpumask correctly,
1224 * and will initialize their ->sgc.
1226 * Assumes the sched_domain tree is fully constructed
1229 build_sched_groups(struct sched_domain *sd, int cpu)
1231 struct sched_group *first = NULL, *last = NULL;
1232 struct sd_data *sdd = sd->private;
1233 const struct cpumask *span = sched_domain_span(sd);
1234 struct cpumask *covered;
1237 lockdep_assert_held(&sched_domains_mutex);
1238 covered = sched_domains_tmpmask;
1240 cpumask_clear(covered);
1242 for_each_cpu_wrap(i, span, cpu) {
1243 struct sched_group *sg;
1245 if (cpumask_test_cpu(i, covered))
1248 sg = get_group(i, sdd);
1250 cpumask_or(covered, covered, sched_group_span(sg));
1265 * Initialize sched groups cpu_capacity.
1267 * cpu_capacity indicates the capacity of sched group, which is used while
1268 * distributing the load between different sched groups in a sched domain.
1269 * Typically cpu_capacity for all the groups in a sched domain will be same
1270 * unless there are asymmetries in the topology. If there are asymmetries,
1271 * group having more cpu_capacity will pickup more load compared to the
1272 * group having less cpu_capacity.
1274 static void init_sched_groups_capacity(int cpu, struct sched_domain *sd)
1276 struct sched_group *sg = sd->groups;
1277 struct cpumask *mask = sched_domains_tmpmask2;
1282 int cpu, cores = 0, max_cpu = -1;
1284 sg->group_weight = cpumask_weight(sched_group_span(sg));
1286 cpumask_copy(mask, sched_group_span(sg));
1287 for_each_cpu(cpu, mask) {
1289 #ifdef CONFIG_SCHED_SMT
1290 cpumask_andnot(mask, mask, cpu_smt_mask(cpu));
1295 if (!(sd->flags & SD_ASYM_PACKING))
1298 for_each_cpu(cpu, sched_group_span(sg)) {
1301 else if (sched_asym_prefer(cpu, max_cpu))
1304 sg->asym_prefer_cpu = max_cpu;
1308 } while (sg != sd->groups);
1310 if (cpu != group_balance_cpu(sg))
1313 update_group_capacity(sd, cpu);
1317 * Asymmetric CPU capacity bits
1319 struct asym_cap_data {
1320 struct list_head link;
1321 unsigned long capacity;
1322 unsigned long cpus[];
1326 * Set of available CPUs grouped by their corresponding capacities
1327 * Each list entry contains a CPU mask reflecting CPUs that share the same
1329 * The lifespan of data is unlimited.
1331 static LIST_HEAD(asym_cap_list);
1333 #define cpu_capacity_span(asym_data) to_cpumask((asym_data)->cpus)
1336 * Verify whether there is any CPU capacity asymmetry in a given sched domain.
1337 * Provides sd_flags reflecting the asymmetry scope.
1340 asym_cpu_capacity_classify(const struct cpumask *sd_span,
1341 const struct cpumask *cpu_map)
1343 struct asym_cap_data *entry;
1344 int count = 0, miss = 0;
1347 * Count how many unique CPU capacities this domain spans across
1348 * (compare sched_domain CPUs mask with ones representing available
1349 * CPUs capacities). Take into account CPUs that might be offline:
1352 list_for_each_entry(entry, &asym_cap_list, link) {
1353 if (cpumask_intersects(sd_span, cpu_capacity_span(entry)))
1355 else if (cpumask_intersects(cpu_map, cpu_capacity_span(entry)))
1359 WARN_ON_ONCE(!count && !list_empty(&asym_cap_list));
1361 /* No asymmetry detected */
1364 /* Some of the available CPU capacity values have not been detected */
1366 return SD_ASYM_CPUCAPACITY;
1368 /* Full asymmetry */
1369 return SD_ASYM_CPUCAPACITY | SD_ASYM_CPUCAPACITY_FULL;
1373 static inline void asym_cpu_capacity_update_data(int cpu)
1375 unsigned long capacity = arch_scale_cpu_capacity(cpu);
1376 struct asym_cap_data *entry = NULL;
1378 list_for_each_entry(entry, &asym_cap_list, link) {
1379 if (capacity == entry->capacity)
1383 entry = kzalloc(sizeof(*entry) + cpumask_size(), GFP_KERNEL);
1384 if (WARN_ONCE(!entry, "Failed to allocate memory for asymmetry data\n"))
1386 entry->capacity = capacity;
1387 list_add(&entry->link, &asym_cap_list);
1389 __cpumask_set_cpu(cpu, cpu_capacity_span(entry));
1393 * Build-up/update list of CPUs grouped by their capacities
1394 * An update requires explicit request to rebuild sched domains
1395 * with state indicating CPU topology changes.
1397 static void asym_cpu_capacity_scan(void)
1399 struct asym_cap_data *entry, *next;
1402 list_for_each_entry(entry, &asym_cap_list, link)
1403 cpumask_clear(cpu_capacity_span(entry));
1405 for_each_cpu_and(cpu, cpu_possible_mask, housekeeping_cpumask(HK_TYPE_DOMAIN))
1406 asym_cpu_capacity_update_data(cpu);
1408 list_for_each_entry_safe(entry, next, &asym_cap_list, link) {
1409 if (cpumask_empty(cpu_capacity_span(entry))) {
1410 list_del(&entry->link);
1416 * Only one capacity value has been detected i.e. this system is symmetric.
1417 * No need to keep this data around.
1419 if (list_is_singular(&asym_cap_list)) {
1420 entry = list_first_entry(&asym_cap_list, typeof(*entry), link);
1421 list_del(&entry->link);
1427 * Initializers for schedule domains
1428 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
1431 static int default_relax_domain_level = -1;
1432 int sched_domain_level_max;
1434 static int __init setup_relax_domain_level(char *str)
1436 if (kstrtoint(str, 0, &default_relax_domain_level))
1437 pr_warn("Unable to set relax_domain_level\n");
1441 __setup("relax_domain_level=", setup_relax_domain_level);
1443 static void set_domain_attribute(struct sched_domain *sd,
1444 struct sched_domain_attr *attr)
1448 if (!attr || attr->relax_domain_level < 0) {
1449 if (default_relax_domain_level < 0)
1451 request = default_relax_domain_level;
1453 request = attr->relax_domain_level;
1455 if (sd->level > request) {
1456 /* Turn off idle balance on this domain: */
1457 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
1461 static void __sdt_free(const struct cpumask *cpu_map);
1462 static int __sdt_alloc(const struct cpumask *cpu_map);
1464 static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
1465 const struct cpumask *cpu_map)
1469 if (!atomic_read(&d->rd->refcount))
1470 free_rootdomain(&d->rd->rcu);
1476 __sdt_free(cpu_map);
1484 __visit_domain_allocation_hell(struct s_data *d, const struct cpumask *cpu_map)
1486 memset(d, 0, sizeof(*d));
1488 if (__sdt_alloc(cpu_map))
1489 return sa_sd_storage;
1490 d->sd = alloc_percpu(struct sched_domain *);
1492 return sa_sd_storage;
1493 d->rd = alloc_rootdomain();
1497 return sa_rootdomain;
1501 * NULL the sd_data elements we've used to build the sched_domain and
1502 * sched_group structure so that the subsequent __free_domain_allocs()
1503 * will not free the data we're using.
1505 static void claim_allocations(int cpu, struct sched_domain *sd)
1507 struct sd_data *sdd = sd->private;
1509 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
1510 *per_cpu_ptr(sdd->sd, cpu) = NULL;
1512 if (atomic_read(&(*per_cpu_ptr(sdd->sds, cpu))->ref))
1513 *per_cpu_ptr(sdd->sds, cpu) = NULL;
1515 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
1516 *per_cpu_ptr(sdd->sg, cpu) = NULL;
1518 if (atomic_read(&(*per_cpu_ptr(sdd->sgc, cpu))->ref))
1519 *per_cpu_ptr(sdd->sgc, cpu) = NULL;
1523 enum numa_topology_type sched_numa_topology_type;
1525 static int sched_domains_numa_levels;
1526 static int sched_domains_curr_level;
1528 int sched_max_numa_distance;
1529 static int *sched_domains_numa_distance;
1530 static struct cpumask ***sched_domains_numa_masks;
1534 * SD_flags allowed in topology descriptions.
1536 * These flags are purely descriptive of the topology and do not prescribe
1537 * behaviour. Behaviour is artificial and mapped in the below sd_init()
1540 * SD_SHARE_CPUCAPACITY - describes SMT topologies
1541 * SD_SHARE_PKG_RESOURCES - describes shared caches
1542 * SD_NUMA - describes NUMA topologies
1544 * Odd one out, which beside describing the topology has a quirk also
1545 * prescribes the desired behaviour that goes along with it:
1547 * SD_ASYM_PACKING - describes SMT quirks
1549 #define TOPOLOGY_SD_FLAGS \
1550 (SD_SHARE_CPUCAPACITY | \
1551 SD_SHARE_PKG_RESOURCES | \
1555 static struct sched_domain *
1556 sd_init(struct sched_domain_topology_level *tl,
1557 const struct cpumask *cpu_map,
1558 struct sched_domain *child, int cpu)
1560 struct sd_data *sdd = &tl->data;
1561 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
1562 int sd_id, sd_weight, sd_flags = 0;
1563 struct cpumask *sd_span;
1567 * Ugly hack to pass state to sd_numa_mask()...
1569 sched_domains_curr_level = tl->numa_level;
1572 sd_weight = cpumask_weight(tl->mask(cpu));
1575 sd_flags = (*tl->sd_flags)();
1576 if (WARN_ONCE(sd_flags & ~TOPOLOGY_SD_FLAGS,
1577 "wrong sd_flags in topology description\n"))
1578 sd_flags &= TOPOLOGY_SD_FLAGS;
1580 *sd = (struct sched_domain){
1581 .min_interval = sd_weight,
1582 .max_interval = 2*sd_weight,
1584 .imbalance_pct = 117,
1586 .cache_nice_tries = 0,
1588 .flags = 1*SD_BALANCE_NEWIDLE
1593 | 0*SD_SHARE_CPUCAPACITY
1594 | 0*SD_SHARE_PKG_RESOURCES
1596 | 1*SD_PREFER_SIBLING
1601 .last_balance = jiffies,
1602 .balance_interval = sd_weight,
1603 .max_newidle_lb_cost = 0,
1604 .last_decay_max_lb_cost = jiffies,
1606 #ifdef CONFIG_SCHED_DEBUG
1611 sd_span = sched_domain_span(sd);
1612 cpumask_and(sd_span, cpu_map, tl->mask(cpu));
1613 sd_id = cpumask_first(sd_span);
1615 sd->flags |= asym_cpu_capacity_classify(sd_span, cpu_map);
1617 WARN_ONCE((sd->flags & (SD_SHARE_CPUCAPACITY | SD_ASYM_CPUCAPACITY)) ==
1618 (SD_SHARE_CPUCAPACITY | SD_ASYM_CPUCAPACITY),
1619 "CPU capacity asymmetry not supported on SMT\n");
1622 * Convert topological properties into behaviour.
1624 /* Don't attempt to spread across CPUs of different capacities. */
1625 if ((sd->flags & SD_ASYM_CPUCAPACITY) && sd->child)
1626 sd->child->flags &= ~SD_PREFER_SIBLING;
1628 if (sd->flags & SD_SHARE_CPUCAPACITY) {
1629 sd->imbalance_pct = 110;
1631 } else if (sd->flags & SD_SHARE_PKG_RESOURCES) {
1632 sd->imbalance_pct = 117;
1633 sd->cache_nice_tries = 1;
1636 } else if (sd->flags & SD_NUMA) {
1637 sd->cache_nice_tries = 2;
1639 sd->flags &= ~SD_PREFER_SIBLING;
1640 sd->flags |= SD_SERIALIZE;
1641 if (sched_domains_numa_distance[tl->numa_level] > node_reclaim_distance) {
1642 sd->flags &= ~(SD_BALANCE_EXEC |
1649 sd->cache_nice_tries = 1;
1653 * For all levels sharing cache; connect a sched_domain_shared
1656 if (sd->flags & SD_SHARE_PKG_RESOURCES) {
1657 sd->shared = *per_cpu_ptr(sdd->sds, sd_id);
1658 atomic_inc(&sd->shared->ref);
1659 atomic_set(&sd->shared->nr_busy_cpus, sd_weight);
1668 * Topology list, bottom-up.
1670 static struct sched_domain_topology_level default_topology[] = {
1671 #ifdef CONFIG_SCHED_SMT
1672 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
1675 #ifdef CONFIG_SCHED_CLUSTER
1676 { cpu_clustergroup_mask, cpu_cluster_flags, SD_INIT_NAME(CLS) },
1679 #ifdef CONFIG_SCHED_MC
1680 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
1682 { cpu_cpu_mask, SD_INIT_NAME(DIE) },
1686 static struct sched_domain_topology_level *sched_domain_topology =
1688 static struct sched_domain_topology_level *sched_domain_topology_saved;
1690 #define for_each_sd_topology(tl) \
1691 for (tl = sched_domain_topology; tl->mask; tl++)
1693 void __init set_sched_topology(struct sched_domain_topology_level *tl)
1695 if (WARN_ON_ONCE(sched_smp_initialized))
1698 sched_domain_topology = tl;
1699 sched_domain_topology_saved = NULL;
1704 static const struct cpumask *sd_numa_mask(int cpu)
1706 return sched_domains_numa_masks[sched_domains_curr_level][cpu_to_node(cpu)];
1709 static void sched_numa_warn(const char *str)
1711 static int done = false;
1719 printk(KERN_WARNING "ERROR: %s\n\n", str);
1721 for (i = 0; i < nr_node_ids; i++) {
1722 printk(KERN_WARNING " ");
1723 for (j = 0; j < nr_node_ids; j++) {
1724 if (!node_state(i, N_CPU) || !node_state(j, N_CPU))
1725 printk(KERN_CONT "(%02d) ", node_distance(i,j));
1727 printk(KERN_CONT " %02d ", node_distance(i,j));
1729 printk(KERN_CONT "\n");
1731 printk(KERN_WARNING "\n");
1734 bool find_numa_distance(int distance)
1739 if (distance == node_distance(0, 0))
1743 distances = rcu_dereference(sched_domains_numa_distance);
1746 for (i = 0; i < sched_domains_numa_levels; i++) {
1747 if (distances[i] == distance) {
1758 #define for_each_cpu_node_but(n, nbut) \
1759 for_each_node_state(n, N_CPU) \
1765 * A system can have three types of NUMA topology:
1766 * NUMA_DIRECT: all nodes are directly connected, or not a NUMA system
1767 * NUMA_GLUELESS_MESH: some nodes reachable through intermediary nodes
1768 * NUMA_BACKPLANE: nodes can reach other nodes through a backplane
1770 * The difference between a glueless mesh topology and a backplane
1771 * topology lies in whether communication between not directly
1772 * connected nodes goes through intermediary nodes (where programs
1773 * could run), or through backplane controllers. This affects
1774 * placement of programs.
1776 * The type of topology can be discerned with the following tests:
1777 * - If the maximum distance between any nodes is 1 hop, the system
1778 * is directly connected.
1779 * - If for two nodes A and B, located N > 1 hops away from each other,
1780 * there is an intermediary node C, which is < N hops away from both
1781 * nodes A and B, the system is a glueless mesh.
1783 static void init_numa_topology_type(int offline_node)
1787 n = sched_max_numa_distance;
1789 if (sched_domains_numa_levels <= 2) {
1790 sched_numa_topology_type = NUMA_DIRECT;
1794 for_each_cpu_node_but(a, offline_node) {
1795 for_each_cpu_node_but(b, offline_node) {
1796 /* Find two nodes furthest removed from each other. */
1797 if (node_distance(a, b) < n)
1800 /* Is there an intermediary node between a and b? */
1801 for_each_cpu_node_but(c, offline_node) {
1802 if (node_distance(a, c) < n &&
1803 node_distance(b, c) < n) {
1804 sched_numa_topology_type =
1810 sched_numa_topology_type = NUMA_BACKPLANE;
1815 pr_err("Failed to find a NUMA topology type, defaulting to DIRECT\n");
1816 sched_numa_topology_type = NUMA_DIRECT;
1820 #define NR_DISTANCE_VALUES (1 << DISTANCE_BITS)
1822 void sched_init_numa(int offline_node)
1824 struct sched_domain_topology_level *tl;
1825 unsigned long *distance_map;
1829 struct cpumask ***masks;
1832 * O(nr_nodes^2) deduplicating selection sort -- in order to find the
1833 * unique distances in the node_distance() table.
1835 distance_map = bitmap_alloc(NR_DISTANCE_VALUES, GFP_KERNEL);
1839 bitmap_zero(distance_map, NR_DISTANCE_VALUES);
1840 for_each_cpu_node_but(i, offline_node) {
1841 for_each_cpu_node_but(j, offline_node) {
1842 int distance = node_distance(i, j);
1844 if (distance < LOCAL_DISTANCE || distance >= NR_DISTANCE_VALUES) {
1845 sched_numa_warn("Invalid distance value range");
1846 bitmap_free(distance_map);
1850 bitmap_set(distance_map, distance, 1);
1854 * We can now figure out how many unique distance values there are and
1855 * allocate memory accordingly.
1857 nr_levels = bitmap_weight(distance_map, NR_DISTANCE_VALUES);
1859 distances = kcalloc(nr_levels, sizeof(int), GFP_KERNEL);
1861 bitmap_free(distance_map);
1865 for (i = 0, j = 0; i < nr_levels; i++, j++) {
1866 j = find_next_bit(distance_map, NR_DISTANCE_VALUES, j);
1869 rcu_assign_pointer(sched_domains_numa_distance, distances);
1871 bitmap_free(distance_map);
1874 * 'nr_levels' contains the number of unique distances
1876 * The sched_domains_numa_distance[] array includes the actual distance
1881 * Here, we should temporarily reset sched_domains_numa_levels to 0.
1882 * If it fails to allocate memory for array sched_domains_numa_masks[][],
1883 * the array will contain less then 'nr_levels' members. This could be
1884 * dangerous when we use it to iterate array sched_domains_numa_masks[][]
1885 * in other functions.
1887 * We reset it to 'nr_levels' at the end of this function.
1889 sched_domains_numa_levels = 0;
1891 masks = kzalloc(sizeof(void *) * nr_levels, GFP_KERNEL);
1896 * Now for each level, construct a mask per node which contains all
1897 * CPUs of nodes that are that many hops away from us.
1899 for (i = 0; i < nr_levels; i++) {
1900 masks[i] = kzalloc(nr_node_ids * sizeof(void *), GFP_KERNEL);
1904 for_each_cpu_node_but(j, offline_node) {
1905 struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
1913 for_each_cpu_node_but(k, offline_node) {
1914 if (sched_debug() && (node_distance(j, k) != node_distance(k, j)))
1915 sched_numa_warn("Node-distance not symmetric");
1917 if (node_distance(j, k) > sched_domains_numa_distance[i])
1920 cpumask_or(mask, mask, cpumask_of_node(k));
1924 rcu_assign_pointer(sched_domains_numa_masks, masks);
1926 /* Compute default topology size */
1927 for (i = 0; sched_domain_topology[i].mask; i++);
1929 tl = kzalloc((i + nr_levels + 1) *
1930 sizeof(struct sched_domain_topology_level), GFP_KERNEL);
1935 * Copy the default topology bits..
1937 for (i = 0; sched_domain_topology[i].mask; i++)
1938 tl[i] = sched_domain_topology[i];
1941 * Add the NUMA identity distance, aka single NODE.
1943 tl[i++] = (struct sched_domain_topology_level){
1944 .mask = sd_numa_mask,
1950 * .. and append 'j' levels of NUMA goodness.
1952 for (j = 1; j < nr_levels; i++, j++) {
1953 tl[i] = (struct sched_domain_topology_level){
1954 .mask = sd_numa_mask,
1955 .sd_flags = cpu_numa_flags,
1956 .flags = SDTL_OVERLAP,
1962 sched_domain_topology_saved = sched_domain_topology;
1963 sched_domain_topology = tl;
1965 sched_domains_numa_levels = nr_levels;
1966 WRITE_ONCE(sched_max_numa_distance, sched_domains_numa_distance[nr_levels - 1]);
1968 init_numa_topology_type(offline_node);
1972 static void sched_reset_numa(void)
1974 int nr_levels, *distances;
1975 struct cpumask ***masks;
1977 nr_levels = sched_domains_numa_levels;
1978 sched_domains_numa_levels = 0;
1979 sched_max_numa_distance = 0;
1980 sched_numa_topology_type = NUMA_DIRECT;
1981 distances = sched_domains_numa_distance;
1982 rcu_assign_pointer(sched_domains_numa_distance, NULL);
1983 masks = sched_domains_numa_masks;
1984 rcu_assign_pointer(sched_domains_numa_masks, NULL);
1985 if (distances || masks) {
1990 for (i = 0; i < nr_levels && masks; i++) {
1999 if (sched_domain_topology_saved) {
2000 kfree(sched_domain_topology);
2001 sched_domain_topology = sched_domain_topology_saved;
2002 sched_domain_topology_saved = NULL;
2007 * Call with hotplug lock held
2009 void sched_update_numa(int cpu, bool online)
2013 node = cpu_to_node(cpu);
2015 * Scheduler NUMA topology is updated when the first CPU of a
2016 * node is onlined or the last CPU of a node is offlined.
2018 if (cpumask_weight(cpumask_of_node(node)) != 1)
2022 sched_init_numa(online ? NUMA_NO_NODE : node);
2025 void sched_domains_numa_masks_set(unsigned int cpu)
2027 int node = cpu_to_node(cpu);
2030 for (i = 0; i < sched_domains_numa_levels; i++) {
2031 for (j = 0; j < nr_node_ids; j++) {
2032 if (!node_state(j, N_CPU))
2035 /* Set ourselves in the remote node's masks */
2036 if (node_distance(j, node) <= sched_domains_numa_distance[i])
2037 cpumask_set_cpu(cpu, sched_domains_numa_masks[i][j]);
2042 void sched_domains_numa_masks_clear(unsigned int cpu)
2046 for (i = 0; i < sched_domains_numa_levels; i++) {
2047 for (j = 0; j < nr_node_ids; j++) {
2048 if (sched_domains_numa_masks[i][j])
2049 cpumask_clear_cpu(cpu, sched_domains_numa_masks[i][j]);
2055 * sched_numa_find_closest() - given the NUMA topology, find the cpu
2056 * closest to @cpu from @cpumask.
2057 * cpumask: cpumask to find a cpu from
2058 * cpu: cpu to be close to
2060 * returns: cpu, or nr_cpu_ids when nothing found.
2062 int sched_numa_find_closest(const struct cpumask *cpus, int cpu)
2064 int i, j = cpu_to_node(cpu), found = nr_cpu_ids;
2065 struct cpumask ***masks;
2068 masks = rcu_dereference(sched_domains_numa_masks);
2071 for (i = 0; i < sched_domains_numa_levels; i++) {
2074 cpu = cpumask_any_and(cpus, masks[i][j]);
2075 if (cpu < nr_cpu_ids) {
2087 const struct cpumask *cpus;
2088 struct cpumask ***masks;
2094 static int hop_cmp(const void *a, const void *b)
2096 struct cpumask **prev_hop, **cur_hop = *(struct cpumask ***)b;
2097 struct __cmp_key *k = (struct __cmp_key *)a;
2099 if (cpumask_weight_and(k->cpus, cur_hop[k->node]) <= k->cpu)
2102 if (b == k->masks) {
2107 prev_hop = *((struct cpumask ***)b - 1);
2108 k->w = cpumask_weight_and(k->cpus, prev_hop[k->node]);
2116 * sched_numa_find_nth_cpu() - given the NUMA topology, find the Nth next cpu
2117 * closest to @cpu from @cpumask.
2118 * cpumask: cpumask to find a cpu from
2119 * cpu: Nth cpu to find
2121 * returns: cpu, or nr_cpu_ids when nothing found.
2123 int sched_numa_find_nth_cpu(const struct cpumask *cpus, int cpu, int node)
2125 struct __cmp_key k = { .cpus = cpus, .node = node, .cpu = cpu };
2126 struct cpumask ***hop_masks;
2127 int hop, ret = nr_cpu_ids;
2131 k.masks = rcu_dereference(sched_domains_numa_masks);
2135 hop_masks = bsearch(&k, k.masks, sched_domains_numa_levels, sizeof(k.masks[0]), hop_cmp);
2136 hop = hop_masks - k.masks;
2139 cpumask_nth_and_andnot(cpu - k.w, cpus, k.masks[hop][node], k.masks[hop-1][node]) :
2140 cpumask_nth_and(cpu, cpus, k.masks[0][node]);
2145 EXPORT_SYMBOL_GPL(sched_numa_find_nth_cpu);
2148 * sched_numa_hop_mask() - Get the cpumask of CPUs at most @hops hops away from
2150 * @node: The node to count hops from.
2151 * @hops: Include CPUs up to that many hops away. 0 means local node.
2153 * Return: On success, a pointer to a cpumask of CPUs at most @hops away from
2154 * @node, an error value otherwise.
2156 * Requires rcu_lock to be held. Returned cpumask is only valid within that
2157 * read-side section, copy it if required beyond that.
2159 * Note that not all hops are equal in distance; see sched_init_numa() for how
2160 * distances and masks are handled.
2161 * Also note that this is a reflection of sched_domains_numa_masks, which may change
2162 * during the lifetime of the system (offline nodes are taken out of the masks).
2164 const struct cpumask *sched_numa_hop_mask(unsigned int node, unsigned int hops)
2166 struct cpumask ***masks;
2168 if (node >= nr_node_ids || hops >= sched_domains_numa_levels)
2169 return ERR_PTR(-EINVAL);
2171 masks = rcu_dereference(sched_domains_numa_masks);
2173 return ERR_PTR(-EBUSY);
2175 return masks[hops][node];
2177 EXPORT_SYMBOL_GPL(sched_numa_hop_mask);
2179 #endif /* CONFIG_NUMA */
2181 static int __sdt_alloc(const struct cpumask *cpu_map)
2183 struct sched_domain_topology_level *tl;
2186 for_each_sd_topology(tl) {
2187 struct sd_data *sdd = &tl->data;
2189 sdd->sd = alloc_percpu(struct sched_domain *);
2193 sdd->sds = alloc_percpu(struct sched_domain_shared *);
2197 sdd->sg = alloc_percpu(struct sched_group *);
2201 sdd->sgc = alloc_percpu(struct sched_group_capacity *);
2205 for_each_cpu(j, cpu_map) {
2206 struct sched_domain *sd;
2207 struct sched_domain_shared *sds;
2208 struct sched_group *sg;
2209 struct sched_group_capacity *sgc;
2211 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
2212 GFP_KERNEL, cpu_to_node(j));
2216 *per_cpu_ptr(sdd->sd, j) = sd;
2218 sds = kzalloc_node(sizeof(struct sched_domain_shared),
2219 GFP_KERNEL, cpu_to_node(j));
2223 *per_cpu_ptr(sdd->sds, j) = sds;
2225 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
2226 GFP_KERNEL, cpu_to_node(j));
2232 *per_cpu_ptr(sdd->sg, j) = sg;
2234 sgc = kzalloc_node(sizeof(struct sched_group_capacity) + cpumask_size(),
2235 GFP_KERNEL, cpu_to_node(j));
2239 #ifdef CONFIG_SCHED_DEBUG
2243 *per_cpu_ptr(sdd->sgc, j) = sgc;
2250 static void __sdt_free(const struct cpumask *cpu_map)
2252 struct sched_domain_topology_level *tl;
2255 for_each_sd_topology(tl) {
2256 struct sd_data *sdd = &tl->data;
2258 for_each_cpu(j, cpu_map) {
2259 struct sched_domain *sd;
2262 sd = *per_cpu_ptr(sdd->sd, j);
2263 if (sd && (sd->flags & SD_OVERLAP))
2264 free_sched_groups(sd->groups, 0);
2265 kfree(*per_cpu_ptr(sdd->sd, j));
2269 kfree(*per_cpu_ptr(sdd->sds, j));
2271 kfree(*per_cpu_ptr(sdd->sg, j));
2273 kfree(*per_cpu_ptr(sdd->sgc, j));
2275 free_percpu(sdd->sd);
2277 free_percpu(sdd->sds);
2279 free_percpu(sdd->sg);
2281 free_percpu(sdd->sgc);
2286 static struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
2287 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
2288 struct sched_domain *child, int cpu)
2290 struct sched_domain *sd = sd_init(tl, cpu_map, child, cpu);
2293 sd->level = child->level + 1;
2294 sched_domain_level_max = max(sched_domain_level_max, sd->level);
2297 if (!cpumask_subset(sched_domain_span(child),
2298 sched_domain_span(sd))) {
2299 pr_err("BUG: arch topology borken\n");
2300 #ifdef CONFIG_SCHED_DEBUG
2301 pr_err(" the %s domain not a subset of the %s domain\n",
2302 child->name, sd->name);
2304 /* Fixup, ensure @sd has at least @child CPUs. */
2305 cpumask_or(sched_domain_span(sd),
2306 sched_domain_span(sd),
2307 sched_domain_span(child));
2311 set_domain_attribute(sd, attr);
2317 * Ensure topology masks are sane, i.e. there are no conflicts (overlaps) for
2318 * any two given CPUs at this (non-NUMA) topology level.
2320 static bool topology_span_sane(struct sched_domain_topology_level *tl,
2321 const struct cpumask *cpu_map, int cpu)
2325 /* NUMA levels are allowed to overlap */
2326 if (tl->flags & SDTL_OVERLAP)
2330 * Non-NUMA levels cannot partially overlap - they must be either
2331 * completely equal or completely disjoint. Otherwise we can end up
2332 * breaking the sched_group lists - i.e. a later get_group() pass
2333 * breaks the linking done for an earlier span.
2335 for_each_cpu(i, cpu_map) {
2339 * We should 'and' all those masks with 'cpu_map' to exactly
2340 * match the topology we're about to build, but that can only
2341 * remove CPUs, which only lessens our ability to detect
2344 if (!cpumask_equal(tl->mask(cpu), tl->mask(i)) &&
2345 cpumask_intersects(tl->mask(cpu), tl->mask(i)))
2353 * Build sched domains for a given set of CPUs and attach the sched domains
2354 * to the individual CPUs
2357 build_sched_domains(const struct cpumask *cpu_map, struct sched_domain_attr *attr)
2359 enum s_alloc alloc_state = sa_none;
2360 struct sched_domain *sd;
2362 struct rq *rq = NULL;
2363 int i, ret = -ENOMEM;
2364 bool has_asym = false;
2366 if (WARN_ON(cpumask_empty(cpu_map)))
2369 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
2370 if (alloc_state != sa_rootdomain)
2373 /* Set up domains for CPUs specified by the cpu_map: */
2374 for_each_cpu(i, cpu_map) {
2375 struct sched_domain_topology_level *tl;
2378 for_each_sd_topology(tl) {
2380 if (WARN_ON(!topology_span_sane(tl, cpu_map, i)))
2383 sd = build_sched_domain(tl, cpu_map, attr, sd, i);
2385 has_asym |= sd->flags & SD_ASYM_CPUCAPACITY;
2387 if (tl == sched_domain_topology)
2388 *per_cpu_ptr(d.sd, i) = sd;
2389 if (tl->flags & SDTL_OVERLAP)
2390 sd->flags |= SD_OVERLAP;
2391 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
2396 /* Build the groups for the domains */
2397 for_each_cpu(i, cpu_map) {
2398 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
2399 sd->span_weight = cpumask_weight(sched_domain_span(sd));
2400 if (sd->flags & SD_OVERLAP) {
2401 if (build_overlap_sched_groups(sd, i))
2404 if (build_sched_groups(sd, i))
2411 * Calculate an allowed NUMA imbalance such that LLCs do not get
2414 for_each_cpu(i, cpu_map) {
2415 unsigned int imb = 0;
2416 unsigned int imb_span = 1;
2418 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
2419 struct sched_domain *child = sd->child;
2421 if (!(sd->flags & SD_SHARE_PKG_RESOURCES) && child &&
2422 (child->flags & SD_SHARE_PKG_RESOURCES)) {
2423 struct sched_domain __rcu *top_p;
2424 unsigned int nr_llcs;
2427 * For a single LLC per node, allow an
2428 * imbalance up to 12.5% of the node. This is
2429 * arbitrary cutoff based two factors -- SMT and
2430 * memory channels. For SMT-2, the intent is to
2431 * avoid premature sharing of HT resources but
2432 * SMT-4 or SMT-8 *may* benefit from a different
2433 * cutoff. For memory channels, this is a very
2434 * rough estimate of how many channels may be
2435 * active and is based on recent CPUs with
2438 * For multiple LLCs, allow an imbalance
2439 * until multiple tasks would share an LLC
2440 * on one node while LLCs on another node
2441 * remain idle. This assumes that there are
2442 * enough logical CPUs per LLC to avoid SMT
2443 * factors and that there is a correlation
2444 * between LLCs and memory channels.
2446 nr_llcs = sd->span_weight / child->span_weight;
2448 imb = sd->span_weight >> 3;
2452 sd->imb_numa_nr = imb;
2454 /* Set span based on the first NUMA domain. */
2456 while (top_p && !(top_p->flags & SD_NUMA)) {
2457 top_p = top_p->parent;
2459 imb_span = top_p ? top_p->span_weight : sd->span_weight;
2461 int factor = max(1U, (sd->span_weight / imb_span));
2463 sd->imb_numa_nr = imb * factor;
2468 /* Calculate CPU capacity for physical packages and nodes */
2469 for (i = nr_cpumask_bits-1; i >= 0; i--) {
2470 if (!cpumask_test_cpu(i, cpu_map))
2473 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
2474 claim_allocations(i, sd);
2475 init_sched_groups_capacity(i, sd);
2479 /* Attach the domains */
2481 for_each_cpu(i, cpu_map) {
2483 sd = *per_cpu_ptr(d.sd, i);
2485 /* Use READ_ONCE()/WRITE_ONCE() to avoid load/store tearing: */
2486 if (rq->cpu_capacity_orig > READ_ONCE(d.rd->max_cpu_capacity))
2487 WRITE_ONCE(d.rd->max_cpu_capacity, rq->cpu_capacity_orig);
2489 cpu_attach_domain(sd, d.rd, i);
2494 static_branch_inc_cpuslocked(&sched_asym_cpucapacity);
2496 if (rq && sched_debug_verbose) {
2497 pr_info("root domain span: %*pbl (max cpu_capacity = %lu)\n",
2498 cpumask_pr_args(cpu_map), rq->rd->max_cpu_capacity);
2503 __free_domain_allocs(&d, alloc_state, cpu_map);
2508 /* Current sched domains: */
2509 static cpumask_var_t *doms_cur;
2511 /* Number of sched domains in 'doms_cur': */
2512 static int ndoms_cur;
2514 /* Attributes of custom domains in 'doms_cur' */
2515 static struct sched_domain_attr *dattr_cur;
2518 * Special case: If a kmalloc() of a doms_cur partition (array of
2519 * cpumask) fails, then fallback to a single sched domain,
2520 * as determined by the single cpumask fallback_doms.
2522 static cpumask_var_t fallback_doms;
2525 * arch_update_cpu_topology lets virtualized architectures update the
2526 * CPU core maps. It is supposed to return 1 if the topology changed
2527 * or 0 if it stayed the same.
2529 int __weak arch_update_cpu_topology(void)
2534 cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
2537 cpumask_var_t *doms;
2539 doms = kmalloc_array(ndoms, sizeof(*doms), GFP_KERNEL);
2542 for (i = 0; i < ndoms; i++) {
2543 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
2544 free_sched_domains(doms, i);
2551 void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
2554 for (i = 0; i < ndoms; i++)
2555 free_cpumask_var(doms[i]);
2560 * Set up scheduler domains and groups. For now this just excludes isolated
2561 * CPUs, but could be used to exclude other special cases in the future.
2563 int __init sched_init_domains(const struct cpumask *cpu_map)
2567 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_KERNEL);
2568 zalloc_cpumask_var(&sched_domains_tmpmask2, GFP_KERNEL);
2569 zalloc_cpumask_var(&fallback_doms, GFP_KERNEL);
2571 arch_update_cpu_topology();
2572 asym_cpu_capacity_scan();
2574 doms_cur = alloc_sched_domains(ndoms_cur);
2576 doms_cur = &fallback_doms;
2577 cpumask_and(doms_cur[0], cpu_map, housekeeping_cpumask(HK_TYPE_DOMAIN));
2578 err = build_sched_domains(doms_cur[0], NULL);
2584 * Detach sched domains from a group of CPUs specified in cpu_map
2585 * These CPUs will now be attached to the NULL domain
2587 static void detach_destroy_domains(const struct cpumask *cpu_map)
2589 unsigned int cpu = cpumask_any(cpu_map);
2592 if (rcu_access_pointer(per_cpu(sd_asym_cpucapacity, cpu)))
2593 static_branch_dec_cpuslocked(&sched_asym_cpucapacity);
2596 for_each_cpu(i, cpu_map)
2597 cpu_attach_domain(NULL, &def_root_domain, i);
2601 /* handle null as "default" */
2602 static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
2603 struct sched_domain_attr *new, int idx_new)
2605 struct sched_domain_attr tmp;
2613 return !memcmp(cur ? (cur + idx_cur) : &tmp,
2614 new ? (new + idx_new) : &tmp,
2615 sizeof(struct sched_domain_attr));
2619 * Partition sched domains as specified by the 'ndoms_new'
2620 * cpumasks in the array doms_new[] of cpumasks. This compares
2621 * doms_new[] to the current sched domain partitioning, doms_cur[].
2622 * It destroys each deleted domain and builds each new domain.
2624 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
2625 * The masks don't intersect (don't overlap.) We should setup one
2626 * sched domain for each mask. CPUs not in any of the cpumasks will
2627 * not be load balanced. If the same cpumask appears both in the
2628 * current 'doms_cur' domains and in the new 'doms_new', we can leave
2631 * The passed in 'doms_new' should be allocated using
2632 * alloc_sched_domains. This routine takes ownership of it and will
2633 * free_sched_domains it when done with it. If the caller failed the
2634 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
2635 * and partition_sched_domains() will fallback to the single partition
2636 * 'fallback_doms', it also forces the domains to be rebuilt.
2638 * If doms_new == NULL it will be replaced with cpu_online_mask.
2639 * ndoms_new == 0 is a special case for destroying existing domains,
2640 * and it will not create the default domain.
2642 * Call with hotplug lock and sched_domains_mutex held
2644 void partition_sched_domains_locked(int ndoms_new, cpumask_var_t doms_new[],
2645 struct sched_domain_attr *dattr_new)
2647 bool __maybe_unused has_eas = false;
2651 lockdep_assert_held(&sched_domains_mutex);
2653 /* Let the architecture update CPU core mappings: */
2654 new_topology = arch_update_cpu_topology();
2655 /* Trigger rebuilding CPU capacity asymmetry data */
2657 asym_cpu_capacity_scan();
2660 WARN_ON_ONCE(dattr_new);
2662 doms_new = alloc_sched_domains(1);
2665 cpumask_and(doms_new[0], cpu_active_mask,
2666 housekeeping_cpumask(HK_TYPE_DOMAIN));
2672 /* Destroy deleted domains: */
2673 for (i = 0; i < ndoms_cur; i++) {
2674 for (j = 0; j < n && !new_topology; j++) {
2675 if (cpumask_equal(doms_cur[i], doms_new[j]) &&
2676 dattrs_equal(dattr_cur, i, dattr_new, j)) {
2677 struct root_domain *rd;
2680 * This domain won't be destroyed and as such
2681 * its dl_bw->total_bw needs to be cleared. It
2682 * will be recomputed in function
2683 * update_tasks_root_domain().
2685 rd = cpu_rq(cpumask_any(doms_cur[i]))->rd;
2686 dl_clear_root_domain(rd);
2690 /* No match - a current sched domain not in new doms_new[] */
2691 detach_destroy_domains(doms_cur[i]);
2699 doms_new = &fallback_doms;
2700 cpumask_and(doms_new[0], cpu_active_mask,
2701 housekeeping_cpumask(HK_TYPE_DOMAIN));
2704 /* Build new domains: */
2705 for (i = 0; i < ndoms_new; i++) {
2706 for (j = 0; j < n && !new_topology; j++) {
2707 if (cpumask_equal(doms_new[i], doms_cur[j]) &&
2708 dattrs_equal(dattr_new, i, dattr_cur, j))
2711 /* No match - add a new doms_new */
2712 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
2717 #if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
2718 /* Build perf. domains: */
2719 for (i = 0; i < ndoms_new; i++) {
2720 for (j = 0; j < n && !sched_energy_update; j++) {
2721 if (cpumask_equal(doms_new[i], doms_cur[j]) &&
2722 cpu_rq(cpumask_first(doms_cur[j]))->rd->pd) {
2727 /* No match - add perf. domains for a new rd */
2728 has_eas |= build_perf_domains(doms_new[i]);
2732 sched_energy_set(has_eas);
2735 /* Remember the new sched domains: */
2736 if (doms_cur != &fallback_doms)
2737 free_sched_domains(doms_cur, ndoms_cur);
2740 doms_cur = doms_new;
2741 dattr_cur = dattr_new;
2742 ndoms_cur = ndoms_new;
2744 update_sched_domain_debugfs();
2748 * Call with hotplug lock held
2750 void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
2751 struct sched_domain_attr *dattr_new)
2753 mutex_lock(&sched_domains_mutex);
2754 partition_sched_domains_locked(ndoms_new, doms_new, dattr_new);
2755 mutex_unlock(&sched_domains_mutex);