]> git.baikalelectronics.ru Git - kernel.git/commit
sched: Fix memory leakage in build_sched_groups()
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 11 Jun 2013 11:02:44 +0000 (16:32 +0530)
committerIngo Molnar <mingo@kernel.org>
Wed, 19 Jun 2013 10:58:46 +0000 (12:58 +0200)
commit668804665150704cb6e12f9143647249eb147430
tree80345d2fe3e4a747b58d0538e64b30743026e426
parent0cf037d75394f7b0654f2efdee8863ef91aa5564
sched: Fix memory leakage in build_sched_groups()

In build_sched_groups() we don't need to call get_group() for cpus
which are already covered in previous iterations. Calling get_group()
would mark the group used and eventually leak it since we wouldn't
connect it and not find it again to free it.

This will happen only in cases where sg->cpumask contained more than
one cpu (For any topology level). This patch would free sg's memory
for all cpus leaving the group leader as the group isn't marked used
now.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/7a61e955abdcbb1dfa9fe493f11a5ec53a11ddd3.1370948150.git.viresh.kumar@linaro.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/sched/core.c