sched: Separate out build of ALLNODES sched groups from __build_sched_domains
For the sake of completeness. Now all calls to init_sched_build_groups() are contained in build_sched_groups(). Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com> Cc: Peter Zijlstra <peterz@infradead.org> LKML-Reference: <20090818110013.GK29515@alberich.amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
86548096f2
commit
de616e36c7
@@ -8593,6 +8593,12 @@ static void build_sched_groups(struct s_data *d, enum sched_domain_level l,
|
|||||||
&cpu_to_phys_group,
|
&cpu_to_phys_group,
|
||||||
d->send_covered, d->tmpmask);
|
d->send_covered, d->tmpmask);
|
||||||
break;
|
break;
|
||||||
|
#ifdef CONFIG_NUMA
|
||||||
|
case SD_LV_ALLNODES:
|
||||||
|
init_sched_build_groups(cpu_map, cpu_map, &cpu_to_allnodes_group,
|
||||||
|
d->send_covered, d->tmpmask);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -8643,11 +8649,8 @@ static int __build_sched_domains(const struct cpumask *cpu_map,
|
|||||||
|
|
||||||
#ifdef CONFIG_NUMA
|
#ifdef CONFIG_NUMA
|
||||||
/* Set up node groups */
|
/* Set up node groups */
|
||||||
if (d.sd_allnodes) {
|
if (d.sd_allnodes)
|
||||||
init_sched_build_groups(cpu_map, cpu_map,
|
build_sched_groups(&d, SD_LV_ALLNODES, cpu_map, 0);
|
||||||
&cpu_to_allnodes_group,
|
|
||||||
d.send_covered, d.tmpmask);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < nr_node_ids; i++) {
|
for (i = 0; i < nr_node_ids; i++) {
|
||||||
/* Set up node groups */
|
/* Set up node groups */
|
||||||
|
Reference in New Issue
Block a user