v1->v2: - Remove relax no-internal-process constraint patch as this feature is in the thread mode v4 patch. - Remove subtree root mode patch. - Remove the skip dying css patch as I can no longer reproduce the problem. - Rework the bypass mode so that write to "cgroup.controllers" to enable or disable controller interface files is only allowed if the parent grants bypass mode to children by writing the '#'-prefixed controller to "cgroup.subtree_control". - Add a patch to disable subdirectory creation on an invalid domain. v1 patch - https://lkml.org/lkml/2017/6/14/551 This patchset introduces new capability to the cgroup v2 core to give more freedom and flexibility to controllers so that they can shape their own unique views of the virtual cgroup hierarchies that can best suit thier own use cases. This patchset is layered on top of the "review-cgroup2-cpu-on-v4" branch of Tejun's cgroup git tree. Patch 1 disables subdirectory creation when a cgroup is an invalid domain. Patch 2 introduces a new bypass mode that allows a controller to be disabled in a cgroup, but re-enabled again in its children. This is enabled by writing the controller name prefixed with '#' to the "cgroup.subtree_control" file. Then all its children will have this controller in bypass mode. Patch 3 extends the bypass mode mechanism to allow those child cgroups that are put into the bypass mode by their parent to re-enable the controller by writing the controller name with the '+' prefix to the "cgroup.controllers" file if they choose to. So setting bypass mode in "cgroup.subtree_control" effectively delegates the authority to enable or disable a controller to its children. Patch 4 extends the debug controller to expose additional controller masks introduced by this patchset. Waiman Long (4): cgroup: Child cgroup creation not allowed on invalid domain cgroup: Allow bypass mode in subtree_control cgroup: Allow reenabling of controller in bypass mode cgroup: Make debug controller report new controller masks Documentation/cgroup-v2.txt | 90 +++++++++++++--- include/linux/cgroup-defs.h | 19 +++- kernel/cgroup/cgroup.c | 251 +++++++++++++++++++++++++++++++++++--------- kernel/cgroup/debug.c | 2 + 4 files changed, 288 insertions(+), 74 deletions(-) -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe cgroups" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html