]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
cgroup: Add mount flag to enable cpuset to use v2 behavior in v1 cgroup
authorWaiman Long <longman@redhat.com>
Thu, 17 Aug 2017 19:33:09 +0000 (15:33 -0400)
committerTejun Heo <tj@kernel.org>
Fri, 18 Aug 2017 15:24:21 +0000 (08:24 -0700)
A new mount option "cpuset_v2_mode" is added to the v1 cgroupfs
filesystem to enable cpuset controller to use v2 behavior in a v1
cgroup. This mount option applies only to cpuset controller and have
no effect on other controllers.

Signed-off-by: Waiman Long <longman@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
include/linux/cgroup-defs.h
kernel/cgroup/cgroup-v1.c

index 59e4ad9e7baca679feb882d68dc97580c9dd1df4..ade4a78a54c2454cbd40646547f40388cf4b85d3 100644 (file)
@@ -74,6 +74,11 @@ enum {
         * aren't writeable from inside the namespace.
         */
        CGRP_ROOT_NS_DELEGATE   = (1 << 3),
+
+       /*
+        * Enable cpuset controller in v1 cgroup to use v2 behavior.
+        */
+       CGRP_ROOT_CPUSET_V2_MODE = (1 << 4),
 };
 
 /* cftype->flags */
index f0e8601b13cb5affeaeabdbcbe7b190e765156ea..024085daab1aede5958235b0663c19ec667b5836 100644 (file)
@@ -895,6 +895,8 @@ static int cgroup1_show_options(struct seq_file *seq, struct kernfs_root *kf_roo
                seq_puts(seq, ",noprefix");
        if (root->flags & CGRP_ROOT_XATTR)
                seq_puts(seq, ",xattr");
+       if (root->flags & CGRP_ROOT_CPUSET_V2_MODE)
+               seq_puts(seq, ",cpuset_v2_mode");
 
        spin_lock(&release_agent_path_lock);
        if (strlen(root->release_agent_path))
@@ -949,6 +951,10 @@ static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
                        opts->cpuset_clone_children = true;
                        continue;
                }
+               if (!strcmp(token, "cpuset_v2_mode")) {
+                       opts->flags |= CGRP_ROOT_CPUSET_V2_MODE;
+                       continue;
+               }
                if (!strcmp(token, "xattr")) {
                        opts->flags |= CGRP_ROOT_XATTR;
                        continue;