]> git.baikalelectronics.ru Git - kernel.git/commit
cgroup: create dfl_root files on subsys registration
authorTejun Heo <tj@kernel.org>
Tue, 18 Jul 2017 21:57:46 +0000 (17:57 -0400)
committerTejun Heo <tj@kernel.org>
Tue, 18 Jul 2017 22:11:43 +0000 (18:11 -0400)
commit7ac39d5b1aaf9e68569d9849019eb7b8c1c417e3
tree74da4a9cc85bfa89def14fc7fa26b839a10f97f3
parent8a06458f6f503cb81bc3e446423b2cdd6bce23df
cgroup: create dfl_root files on subsys registration

On subsystem registration, css_populate_dir() is not called on the new
root css, so the interface files for the subsystem on cgrp_dfl_root
aren't created on registration.  This is a residue from the days when
cgrp_dfl_root was used only as the parking spot for unused subsystems,
which no longer is true as it's used as the root for cgroup2.

This is often fine as later operations tend to create them as a part
of mount (cgroup1) or subtree_control operations (cgroup2); however,
it's not difficult to mount cgroup2 with the controller interface
files missing as Waiman found out.

Fix it by invoking css_populate_dir() on the root css on subsys
registration.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-and-tested-by: Waiman Long <longman@redhat.com>
Cc: stable@vger.kernel.org # v4.5+
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/cgroup/cgroup.c