From: Tejun Heo Date: Sun, 4 May 2014 19:09:14 +0000 (-0400) Subject: cgroup: use RCU free in create_css() failure path X-Git-Tag: omap-for-v3.16/fixes-against-rc1~81^2~56 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2bed8209a3afc3b2cf1c28383fb48155c1fea46;p=pandora-kernel.git cgroup: use RCU free in create_css() failure path Currently, when create_css() fails in the middle, the half-initialized css is freed by invoking cgroup_subsys->css_free() directly. This patch updates the function so that it invokes RCU free path instead. As the RCU free path puts the parent css and owning cgroup, their references are now acquired right after a new css is successfully allocated. This doesn't make any visible difference now but is to enable implementing css->id and RCU protected lookup by such IDs. Signed-off-by: Tejun Heo Acked-by: Li Zefan --- Reading git-diff-tree failed