sched: Consolidate definition of variable sd in __build_sched_domains
Signed-off-by: Andreas Herrmann <andreas.herrmann3@amd.com> Cc: Peter Zijlstra <peterz@infradead.org> LKML-Reference: <20090818110229.GM29515@alberich.amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
committed by
Ingo Molnar
parent
0601a88d8f
commit
294b0c9619
@@ -8678,6 +8678,7 @@ static int __build_sched_domains(const struct cpumask *cpu_map,
|
|||||||
{
|
{
|
||||||
enum s_alloc alloc_state = sa_none;
|
enum s_alloc alloc_state = sa_none;
|
||||||
struct s_data d;
|
struct s_data d;
|
||||||
|
struct sched_domain *sd;
|
||||||
int i;
|
int i;
|
||||||
#ifdef CONFIG_NUMA
|
#ifdef CONFIG_NUMA
|
||||||
d.sd_allnodes = 0;
|
d.sd_allnodes = 0;
|
||||||
@@ -8692,8 +8693,6 @@ static int __build_sched_domains(const struct cpumask *cpu_map,
|
|||||||
* Set up domains for cpus specified by the cpu_map.
|
* Set up domains for cpus specified by the cpu_map.
|
||||||
*/
|
*/
|
||||||
for_each_cpu(i, cpu_map) {
|
for_each_cpu(i, cpu_map) {
|
||||||
struct sched_domain *sd;
|
|
||||||
|
|
||||||
cpumask_and(d.nodemask, cpumask_of_node(cpu_to_node(i)),
|
cpumask_and(d.nodemask, cpumask_of_node(cpu_to_node(i)),
|
||||||
cpu_map);
|
cpu_map);
|
||||||
|
|
||||||
@@ -8725,22 +8724,19 @@ static int __build_sched_domains(const struct cpumask *cpu_map,
|
|||||||
/* Calculate CPU power for physical packages and nodes */
|
/* Calculate CPU power for physical packages and nodes */
|
||||||
#ifdef CONFIG_SCHED_SMT
|
#ifdef CONFIG_SCHED_SMT
|
||||||
for_each_cpu(i, cpu_map) {
|
for_each_cpu(i, cpu_map) {
|
||||||
struct sched_domain *sd = &per_cpu(cpu_domains, i).sd;
|
sd = &per_cpu(cpu_domains, i).sd;
|
||||||
|
|
||||||
init_sched_groups_power(i, sd);
|
init_sched_groups_power(i, sd);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SCHED_MC
|
#ifdef CONFIG_SCHED_MC
|
||||||
for_each_cpu(i, cpu_map) {
|
for_each_cpu(i, cpu_map) {
|
||||||
struct sched_domain *sd = &per_cpu(core_domains, i).sd;
|
sd = &per_cpu(core_domains, i).sd;
|
||||||
|
|
||||||
init_sched_groups_power(i, sd);
|
init_sched_groups_power(i, sd);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for_each_cpu(i, cpu_map) {
|
for_each_cpu(i, cpu_map) {
|
||||||
struct sched_domain *sd = &per_cpu(phys_domains, i).sd;
|
sd = &per_cpu(phys_domains, i).sd;
|
||||||
|
|
||||||
init_sched_groups_power(i, sd);
|
init_sched_groups_power(i, sd);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -8759,7 +8755,6 @@ static int __build_sched_domains(const struct cpumask *cpu_map,
|
|||||||
|
|
||||||
/* Attach the domains */
|
/* Attach the domains */
|
||||||
for_each_cpu(i, cpu_map) {
|
for_each_cpu(i, cpu_map) {
|
||||||
struct sched_domain *sd;
|
|
||||||
#ifdef CONFIG_SCHED_SMT
|
#ifdef CONFIG_SCHED_SMT
|
||||||
sd = &per_cpu(cpu_domains, i).sd;
|
sd = &per_cpu(cpu_domains, i).sd;
|
||||||
#elif defined(CONFIG_SCHED_MC)
|
#elif defined(CONFIG_SCHED_MC)
|
||||||
|
Reference in New Issue
Block a user