diff options
author | KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> | 2009-01-29 17:25:10 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-29 21:04:43 -0500 |
commit | baef99a08a2e23d9386b47e53fa5f0d44fc98f66 (patch) | |
tree | 0171abae8bd05710c83444b8a236fc6ffbcac71c /kernel | |
parent | 9e9e3cbc62da43c66e894d5a61fa08b427e25202 (diff) |
cgroups: use hierarchy mutex in creation failure path
Now, cgrp->sibling is handled under hierarchy mutex.
error route should do so, too.
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Li Zefan <lizf@cn.fujitsu.com>
Acked-by Paul Menage <menage@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/cgroup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index c29831076e7a..2ae7cb47dbfa 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c | |||
@@ -2434,7 +2434,9 @@ static long cgroup_create(struct cgroup *parent, struct dentry *dentry, | |||
2434 | 2434 | ||
2435 | err_remove: | 2435 | err_remove: |
2436 | 2436 | ||
2437 | cgroup_lock_hierarchy(root); | ||
2437 | list_del(&cgrp->sibling); | 2438 | list_del(&cgrp->sibling); |
2439 | cgroup_unlock_hierarchy(root); | ||
2438 | root->number_of_cgroups--; | 2440 | root->number_of_cgroups--; |
2439 | 2441 | ||
2440 | err_destroy: | 2442 | err_destroy: |