sched: Fix struct autogroup memory leak
authorMike Galbraith <efault@gmx.de>
Wed, 5 Jan 2011 10:11:25 +0000 (11:11 +0100)
committerIngo Molnar <mingo@elte.hu>
Fri, 7 Jan 2011 14:54:37 +0000 (15:54 +0100)
Seems I lost a change somewhere, leaking memory.

sched: fix struct autogroup memory leak

Add missing change to actually use autogroup_free().

Signed-off-by: Mike Galbraith <efault@gmx.de>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <1294222285.8369.2.camel@marge.simson.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c

index 54b58ec..a8478a2 100644 (file)
@@ -8377,6 +8377,7 @@ static void free_sched_group(struct task_group *tg)
 {
        free_fair_sched_group(tg);
        free_rt_sched_group(tg);
+       autogroup_free(tg);
        kfree(tg);
 }