]> git.baikalelectronics.ru Git - kernel.git/commit
cgroup: call cgroup_subsys->bind on cgroup subsys initialization
authorVladimir Davydov <vdavydov@parallels.com>
Thu, 19 Feb 2015 14:34:46 +0000 (17:34 +0300)
committerTejun Heo <tj@kernel.org>
Mon, 2 Mar 2015 17:11:01 +0000 (12:11 -0500)
commitecc81403d3feb2548ba3c5d018d36dabcde8d10b
tree0229507c7ffcb1ea79ccd6989e42f2784bb5bbf9
parente7dde3ba86ca9a803f48ba37a9810966d58e25bd
cgroup: call cgroup_subsys->bind on cgroup subsys initialization

Currently, we call cgroup_subsys->bind only on unmount, remount, and
when creating a new root on mount. Since the default hierarchy root is
created in cgroup_init, we will not call cgroup_subsys->bind if the
default hierarchy is freshly mounted. As a result, some controllers will
behave incorrectly (most notably, the "memory" controller will not
enable hierarchy support). Fix this by calling cgroup_subsys->bind right
after initializing a cgroup subsystem.

Signed-off-by: Vladimir Davydov <vdavydov@parallels.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/cgroup.c