diff options
author | Tejun Heo | 2014-05-16 19:22:51 +0200 |
---|---|---|
committer | Tejun Heo | 2014-05-16 19:22:51 +0200 |
commit | 184faf32328c65c9d86b19577b8d8b90bdd2cd2e (patch) | |
tree | ee9e7e928105c02b8ec8cc68f435889fc4a85381 /include/linux/cgroup.h | |
parent | cgroup: iterate cgroup_subsys_states directly (diff) | |
download | kernel-qcow2-linux-184faf32328c65c9d86b19577b8d8b90bdd2cd2e.tar.gz kernel-qcow2-linux-184faf32328c65c9d86b19577b8d8b90bdd2cd2e.tar.xz kernel-qcow2-linux-184faf32328c65c9d86b19577b8d8b90bdd2cd2e.zip |
cgroup: use CSS_ONLINE instead of CGRP_DEAD
Use CSS_ONLINE on the self css to indicate whether a cgroup has been
killed instead of CGRP_DEAD. This will allow re-using css online test
for cgroup liveliness test. This doesn't introduce any functional
change.
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 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index f2ff578fc03a..51a339c99eb6 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h @@ -143,8 +143,6 @@ static inline void css_put(struct cgroup_subsys_state *css) /* bits in struct cgroup flags field */ enum { - /* Control Group is dead */ - CGRP_DEAD, /* * Control Group has previously had a child cgroup or a task, * but no longer (only if CGRP_NOTIFY_ON_RELEASE is set) |