On 2018/05/29 17:16, Michal Hocko wrote: > With the full changelog. This can be either folded into the respective > patch or applied on top. > >>From 0bd619e7a68337c97bdaed288e813e96a14ba339 Mon Sep 17 00:00:00 2001 > From: Michal Hocko <mhocko@xxxxxxxx> > Date: Tue, 29 May 2018 10:09:33 +0200 > Subject: [PATCH] mm, memcg, oom: fix pre-mature allocation failures > > Tetsuo has noticed that "mm, oom: cgroup-aware OOM killer" can lead to a > pre-mature allocation failure if the cgroup aware oom killer is enabled > and select_victim_memcg doesn't pick up any memcg to kill because there > is a memcg already being killed. oc->chosen_memcg will become INFLIGHT_VICTIM > and oom_kill_memcg_victim will bail out early. oc->chosen_task will > stay NULL, however, and out_of_memory will therefore return false which > forces __alloc_pages_may_oom to not set did_some_progress and the page > allocator backs out and fails the allocation. > U > Fix this by checking both chosen_task and chosen_memcg in out_of_memory > and return false only when _both_ are NULL. I don't like this patch. It is not easy to understand and is fragile to future changes. Currently the only case !!oc->chosen can become false is that there was no eligible tasks when SysRq-f was requested or memcg OOM occurred. /* Found nothing?!?! Either we hang forever, or we panic. */ if (!oc->chosen && !is_sysrq_oom(oc) && !is_memcg_oom(oc)) { With this patch applied, what happens if mem_cgroup_select_oom_victim(oc) && oom_kill_memcg_victim(oc) forgot to set oc->chosen_memcg to NULL and called select_bad_process(oc) and reached /* Found nothing?!?! Either we hang forever, or we panic. */ if (!oc->chosen_task && !is_sysrq_oom(oc) && !is_memcg_oom(oc)) { but did not trigger panic() because of is_sysrq_oom(oc) || is_memcg_oom(oc) and reached the last "!!(oc->chosen_task | oc->chosen_memcg)" line? It will by error return "true" when no eligible tasks found... Don't make return conditions complicated. The appropriate fix is to kill "delay" and "goto out;" now! My patch does it!!