summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorWenwei Tao <ww.tao0320@gmail.com>2016-05-13 22:59:20 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-10 12:54:46 +0200
commit64e7dc481cbb34dcf11623905d54e67fe7ffd035 (patch)
treea36fa6cc8e5e7fb297fe1d8102e358f88e11aad5 /kernel
parent03cbdca3b8e2eb27f54d1d5831e07835df7f8fb4 (diff)
downloadlinux-stable-64e7dc481cbb34dcf11623905d54e67fe7ffd035.tar.gz
linux-stable-64e7dc481cbb34dcf11623905d54e67fe7ffd035.tar.bz2
linux-stable-64e7dc481cbb34dcf11623905d54e67fe7ffd035.zip
cgroup: remove redundant cleanup in css_create
commit b00c52dae6d9ee8d0f2407118ef6544ae5524781 upstream. When create css failed, before call css_free_rcu_fn, we remove the css id and exit the percpu_ref, but we will do these again in css_free_work_fn, so they are redundant. Especially the css id, that would cause problem if we remove it twice, since it may be assigned to another css after the first remove. tj: This was broken by two commits updating the free path without synchronizing the creation failure path. This can be easily triggered by trying to create more than 64k memory cgroups. Signed-off-by: Wenwei Tao <ww.tao0320@gmail.com> Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Vladimir Davydov <vdavydov@parallels.com> Fixes: 9a1049da9bd2 ("percpu-refcount: require percpu_ref to be exited explicitly") Fixes: 01e586598b22 ("cgroup: release css->id after css_free") Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/cgroup.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index 86cb5c6e8932..789b84f973c9 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -5150,7 +5150,7 @@ static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
err = cgroup_idr_alloc(&ss->css_idr, NULL, 2, 0, GFP_KERNEL);
if (err < 0)
- goto err_free_percpu_ref;
+ goto err_free_css;
css->id = err;
/* @css is ready to be brought online now, make it visible */
@@ -5174,9 +5174,6 @@ static struct cgroup_subsys_state *css_create(struct cgroup *cgrp,
err_list_del:
list_del_rcu(&css->sibling);
- cgroup_idr_remove(&ss->css_idr, css->id);
-err_free_percpu_ref:
- percpu_ref_exit(&css->refcnt);
err_free_css:
call_rcu(&css->rcu_head, css_free_rcu_fn);
return ERR_PTR(err);