diff options
author | Tejun Heo <tj@kernel.org> | 2014-07-09 10:08:07 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-07-09 10:08:07 -0400 |
commit | 7450e90bbb8d834c190cc8100d1cc41888358c7c (patch) | |
tree | 41591667e456113e70ab72f00d7d26ab7d705877 /include/linux/cgroup.h | |
parent | 1ced953b17bfaf54ec1499f8bbfdf31ab36453af (diff) | |
download | op-kernel-dev-7450e90bbb8d834c190cc8100d1cc41888358c7c.zip op-kernel-dev-7450e90bbb8d834c190cc8100d1cc41888358c7c.tar.gz |
cgroup: remove CGRP_ROOT_OPTION_MASK
cgroup_root->flags only contains CGRP_ROOT_* flags and there's no
reason to mask the flags. Remove CGRP_ROOT_OPTION_MASK.
This doesn't cause any behavior differences.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Li Zefan <lizefan@huawei.com>
Diffstat (limited to 'include/linux/cgroup.h')
-rw-r--r-- | include/linux/cgroup.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 28853e7..c4901c1 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h @@ -320,9 +320,6 @@ enum { CGRP_ROOT_NOPREFIX = (1 << 1), /* mounted subsystems have no named prefix */ CGRP_ROOT_XATTR = (1 << 2), /* supports extended attributes */ - - /* mount options live below bit 16 */ - CGRP_ROOT_OPTION_MASK = (1 << 16) - 1, }; /* |