cpuset: initialize effective masks when clone_children is enabled
authorZefan Li <lizefan@huawei.com>
Fri, 13 Feb 2015 03:19:49 +0000 (11:19 +0800)
committerTejun Heo <tj@kernel.org>
Mon, 2 Mar 2015 16:55:04 +0000 (11:55 -0500)
commit790317e1b266c776765a4bdcedefea706ff0fada
treeda14cf2e66b50ab59631292ba306e13fcc0f73e4
parentc517d838eb7d07bbe9507871fab3931deccff539
cpuset: initialize effective masks when clone_children is enabled

If clone_children is enabled, effective masks won't be initialized
due to the bug:

  # mount -t cgroup -o cpuset xxx /mnt
  # echo 1 > cgroup.clone_children
  # mkdir /mnt/tmp
  # cat /mnt/tmp/
  # cat cpuset.effective_cpus

  # cat cpuset.cpus
  0-15

And then this cpuset won't constrain the tasks in it.

Either the bug or the fix has no effect on unified hierarchy, as
there's no clone_chidren flag there any more.

Reported-by: Christian Brauner <christianvanbrauner@gmail.com>
Reported-by: Serge Hallyn <serge.hallyn@ubuntu.com>
Cc: <stable@vger.kernel.org> # 3.17+
Signed-off-by: Zefan Li <lizefan@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Tested-by: Serge Hallyn <serge.hallyn@canonical.com>
kernel/cpuset.c