diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-06-10 06:57:18 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-06-19 06:58:44 -0400 |
commit | 1c6321694074163b5863c13d71c19ca953a3fb08 (patch) | |
tree | bfdc4054efcbe74edae0c9bce1a6f192581b98e7 | |
parent | 22da956953f371c1ee7a578c31ed8c5702cb52b1 (diff) |
sched: Don't initialize alloc_state in build_sched_domains()
alloc_state will be overwritten by __visit_domain_allocation_hell() and so we
don't actually need to initialize alloc_state.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/df57734a075cc5ad130e1ae498702e24f2529ab8.1370861520.git.viresh.kumar@linaro.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | kernel/sched/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 137dcc03f66d..3de62649869b 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c | |||
@@ -5969,7 +5969,7 @@ struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl, | |||
5969 | static int build_sched_domains(const struct cpumask *cpu_map, | 5969 | static int build_sched_domains(const struct cpumask *cpu_map, |
5970 | struct sched_domain_attr *attr) | 5970 | struct sched_domain_attr *attr) |
5971 | { | 5971 | { |
5972 | enum s_alloc alloc_state = sa_none; | 5972 | enum s_alloc alloc_state; |
5973 | struct sched_domain *sd; | 5973 | struct sched_domain *sd; |
5974 | struct s_data d; | 5974 | struct s_data d; |
5975 | int i, ret = -ENOMEM; | 5975 | int i, ret = -ENOMEM; |