summaryrefslogtreecommitdiffstats
path: root/mm/oom_kill.c
diff options
context:
space:
mode:
authorMichal Hocko2016-05-21 01:57:15 +0200
committerLinus Torvalds2016-05-21 02:58:30 +0200
commit31e49bfda18464b9b0cfe42044d5a4be4a0ca0f3 (patch)
tree697930ad2f1e1ca7c57b5730660220dcda29a34e /mm/oom_kill.c
parentmm, oom, compaction: prevent from should_compact_retry looping for ever for c... (diff)
downloadkernel-qcow2-linux-31e49bfda18464b9b0cfe42044d5a4be4a0ca0f3.tar.gz
kernel-qcow2-linux-31e49bfda18464b9b0cfe42044d5a4be4a0ca0f3.tar.xz
kernel-qcow2-linux-31e49bfda18464b9b0cfe42044d5a4be4a0ca0f3.zip
mm, oom: protect !costly allocations some more for !CONFIG_COMPACTION
Joonsoo has reported that he is able to trigger OOM for !costly high order requests (heavy fork() workload close the OOM) with the new oom detection rework. This is because we rely only on should_reclaim_retry when the compaction is disabled and it only checks watermarks for the requested order and so we might trigger OOM when there is a lot of free memory. It is not very clear what are the usual workloads when the compaction is disabled. Relying on high order allocations heavily without any mechanism to create those orders except for unbound amount of reclaim is certainly not a good idea. To prevent from potential regressions let's help this configuration some. We have to sacrifice the determinsm though because there simply is none here possible. should_compact_retry implementation for !CONFIG_COMPACTION, which was empty so far, will do watermark check for order-0 on all eligible zones. This will cause retrying until either the reclaim cannot make any further progress or all the zones are depleted even for order-0 pages. This means that the number of retries is basically unbounded for !costly orders but that was the case before the rework as well so this shouldn't regress. [akpm@linux-foundation.org: coding-style fixes] Link: http://lkml.kernel.org/r/1463051677-29418-3-git-send-email-mhocko@kernel.org Reported-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Signed-off-by: Michal Hocko <mhocko@suse.com> Acked-by: Hillf Danton <hillf.zj@alibaba-inc.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/oom_kill.c')
0 files changed, 0 insertions, 0 deletions