提交 f712c0c7 编写于 作者: S Siddha, Suresh B 提交者: Linus Torvalds

[PATCH] sched: build_sched_domains() fix

Use the correct groups while initializing sched groups power for
allnodes_domain.  This fixes the crash observed while creating exclusive
cpusets.
Signed-off-by: NSuresh Siddha <suresh.b.siddha@intel.com>
Reported-and-tested-by: NPaul Jackson <pj@sgi.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 b6ff5083
......@@ -6494,7 +6494,12 @@ static int build_sched_domains(const cpumask_t *cpu_map)
for (i = 0; i < MAX_NUMNODES; i++)
init_numa_sched_groups_power(sched_group_nodes[i]);
init_numa_sched_groups_power(sched_group_allnodes);
if (sched_group_allnodes) {
int group = cpu_to_allnodes_group(first_cpu(*cpu_map));
struct sched_group *sg = &sched_group_allnodes[group];
init_numa_sched_groups_power(sg);
}
#endif
/* Attach the domains */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册