aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2013-06-13 22:58:38 -0400
committerTejun Heo <tj@kernel.org>2013-06-13 23:02:26 -0400
commitf63674fd0d6afa1ba24309aee1f8c60195d39041 (patch)
tree032c58b8c71a984c6313abd64091ec2905bb770f
parentd3daf28da16a30af95bfb303189a634a87606725 (diff)
cgroup: update sane_behavior documentation
f12dc02014 ("cgroup: mark "tasks" cgroup file as insane") and cc5943a781 ("cgroup: mark "notify_on_release" and "release_agent" cgroup files insane") forgot to update the changed behavior documentation in cgroup.h. Update it. Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r--include/linux/cgroup.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h
index b7bd4beae294..17604767adfd 100644
--- a/include/linux/cgroup.h
+++ b/include/linux/cgroup.h
@@ -264,13 +264,14 @@ enum {
264 * 264 *
265 * - Remount is disallowed. 265 * - Remount is disallowed.
266 * 266 *
267 * - memcg: use_hierarchy is on by default and the cgroup file for 267 * - "tasks" is removed. Everything should be at process
268 * the flag is not created. 268 * granularity. Use "cgroup.procs" instead.
269 * 269 *
270 * The followings are planned changes. 270 * - "release_agent" and "notify_on_release" are removed.
271 * Replacement notification mechanism will be implemented.
271 * 272 *
272 * - release_agent will be disallowed once replacement notification 273 * - memcg: use_hierarchy is on by default and the cgroup file for
273 * mechanism is implemented. 274 * the flag is not created.
274 */ 275 */
275 CGRP_ROOT_SANE_BEHAVIOR = (1 << 0), 276 CGRP_ROOT_SANE_BEHAVIOR = (1 << 0),
276 277