diff options
| author | Glauber Costa <[email protected]> | 2011-11-01 19:19:07 -0200 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2011-11-16 08:48:22 +0100 |
| commit | f4d6f6c2649c2c47261db4dcc3110d6f22202ea2 (patch) | |
| tree | 0ca6a621249bd83f3bae3ac266c4b2bf55f17fbd | |
| parent | 56f570e512eeb5b412cb3a62234adc446a8eb32b (diff) | |
sched, trivial: Initialize root cgroup's sibling list
Even though there are no siblings, the list should be
initialized to not contain bogus values.
Signed-off-by: Glauber Costa <[email protected]>
Acked-by: Paul Menage <[email protected]>
Acked-by: Paul Turner <[email protected]>
Signed-off-by: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | kernel/sched.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index d9d79a4088c8..0df69866a04e 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -8275,6 +8275,7 @@ void __init sched_init(void) #ifdef CONFIG_CGROUP_SCHED list_add(&root_task_group.list, &task_groups); INIT_LIST_HEAD(&root_task_group.children); + INIT_LIST_HEAD(&root_task_group.siblings); autogroup_init(&init_task); #endif /* CONFIG_CGROUP_SCHED */ |