mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 15:11:16 +00:00
sched: Don't set sd->child to NULL when it is already NULL
Memory for sd is allocated with kzalloc_node() which will initialize its fields with zero. In build_sched_domain() we are setting sd->child to child even if child is NULL, which isn't required. Lets do it only if child isn't NULL. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/f4753a1730051341003ad2ad29a3229c7356678e.1370861520.git.viresh.kumar@linaro.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
1c63216940
commit
c75e01288c
1 changed files with 1 additions and 1 deletions
|
@ -5955,8 +5955,8 @@ struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
|
||||||
sd->level = child->level + 1;
|
sd->level = child->level + 1;
|
||||||
sched_domain_level_max = max(sched_domain_level_max, sd->level);
|
sched_domain_level_max = max(sched_domain_level_max, sd->level);
|
||||||
child->parent = sd;
|
child->parent = sd;
|
||||||
}
|
|
||||||
sd->child = child;
|
sd->child = child;
|
||||||
|
}
|
||||||
set_domain_attribute(sd, attr);
|
set_domain_attribute(sd, attr);
|
||||||
|
|
||||||
return sd;
|
return sd;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue