aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/cgroups
diff options
context:
space:
mode:
authorJohannes Weiner <hannes@cmpxchg.org>2014-06-04 19:07:01 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-04 19:53:58 -0400
commit3dae7fec5e884a4e72e5416db0894de66f586201 (patch)
tree7d23c8ad732b4a348d46972a2bff4421a602ef1c /Documentation/cgroups
parent8bf8fcb07653fbaea74f96bba1e4ed0f851675ab (diff)
mm: memcontrol: remove hierarchy restrictions for swappiness and oom_control
Per-memcg swappiness and oom killing can currently not be tweaked on a memcg that is part of a hierarchy, but not the root of that hierarchy. Users have complained that they can't configure this when they turned on hierarchy mode. In fact, with hierarchy mode becoming the default, this restriction disables the tunables entirely. But there is no good reason for this restriction. The settings for swappiness and OOM killing are taken from whatever memcg whose limit triggered reclaim and OOM invocation, regardless of its position in the hierarchy tree. Allow setting swappiness on any group. The knob on the root memcg already reads the global VM swappiness, make it writable as well. Allow disabling the OOM killer on any non-root memcg. Signed-off-by: Johannes Weiner <hannes@cmpxchg.org> Cc: Michal Hocko <mhocko@suse.cz> Cc: Tejun Heo <tj@kernel.org> Cc: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/cgroups')
-rw-r--r--Documentation/cgroups/memory.txt11
1 files changed, 4 insertions, 7 deletions
diff --git a/Documentation/cgroups/memory.txt b/Documentation/cgroups/memory.txt
index 2622115276aa..1829c65f8371 100644
--- a/Documentation/cgroups/memory.txt
+++ b/Documentation/cgroups/memory.txt
@@ -535,17 +535,15 @@ Note:
535 535
5365.3 swappiness 5365.3 swappiness
537 537
538Similar to /proc/sys/vm/swappiness, but affecting a hierarchy of groups only. 538Similar to /proc/sys/vm/swappiness, but only affecting reclaim that is
539triggered by this cgroup's hard limit. The tunable in the root cgroup
540corresponds to the global swappiness setting.
541
539Please note that unlike the global swappiness, memcg knob set to 0 542Please note that unlike the global swappiness, memcg knob set to 0
540really prevents from any swapping even if there is a swap storage 543really prevents from any swapping even if there is a swap storage
541available. This might lead to memcg OOM killer if there are no file 544available. This might lead to memcg OOM killer if there are no file
542pages to reclaim. 545pages to reclaim.
543 546
544Following cgroups' swappiness can't be changed.
545- root cgroup (uses /proc/sys/vm/swappiness).
546- a cgroup which uses hierarchy and it has other cgroup(s) below it.
547- a cgroup which uses hierarchy and not the root of hierarchy.
548
5495.4 failcnt 5475.4 failcnt
550 548
551A memory cgroup provides memory.failcnt and memory.memsw.failcnt files. 549A memory cgroup provides memory.failcnt and memory.memsw.failcnt files.
@@ -754,7 +752,6 @@ You can disable the OOM-killer by writing "1" to memory.oom_control file, as:
754 752
755 #echo 1 > memory.oom_control 753 #echo 1 > memory.oom_control
756 754
757This operation is only allowed to the top cgroup of a sub-hierarchy.
758If OOM-killer is disabled, tasks under cgroup will hang/sleep 755If OOM-killer is disabled, tasks under cgroup will hang/sleep
759in memory cgroup's OOM-waitqueue when they request accountable memory. 756in memory cgroup's OOM-waitqueue when they request accountable memory.
760 757