LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Michal Hocko <mhocko@kernel.org> To: David Rientjes <rientjes@google.com> Cc: Andrew Morton <akpm@linux-foundation.org>, Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>, Vlastimil Babka <vbabka@suse.cz>, Robert Kolchmeyer <rkolchmeyer@google.com>, linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [patch v3] mm, oom: prevent soft lockup on memcg oom for UP systems Date: Thu, 19 Mar 2020 08:09:11 +0100 [thread overview] Message-ID: <20200319070911.GU21362@dhcp22.suse.cz> (raw) In-Reply-To: <alpine.DEB.2.21.2003181458100.70237@chino.kir.corp.google.com> On Wed 18-03-20 15:03:52, David Rientjes wrote: > When a process is oom killed as a result of memcg limits and the victim > is waiting to exit, nothing ends up actually yielding the processor back > to the victim on UP systems with preemption disabled. Instead, the > charging process simply loops in memcg reclaim and eventually soft > lockups. > > For example, on an UP system with a memcg limited to 100MB, if three > processes each charge 40MB of heap with swap disabled, one of the charging > processes can loop endlessly trying to charge memory which starves the oom > victim. This only happens if there is no reclaimable memory in the hierarchy. That is a very specific condition. I do not see any other way than having a misconfigured system with min protection preventing any reclaim. Otherwise we have cond_resched both in slab shrinking code (do_shrink_slab) and LRU shrinking shrink_lruvec. If I am wrong and those are insufficient then please be explicit about the scenario. This is a very important information to have in the changelog! [...] > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > --- a/mm/memcontrol.c > +++ b/mm/memcontrol.c > @@ -1576,6 +1576,12 @@ static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask, > */ > ret = should_force_charge() || out_of_memory(&oc); > mutex_unlock(&oom_lock); > + /* > + * Give a killed process a good chance to exit before trying to > + * charge memory again. > + */ > + if (ret) > + schedule_timeout_killable(1); Why are you making this conditional? Say that there is no victim to kill. The charge path would simply bail out and it would really depend on the call chain whether there is a scheduling point or not. Isn't it simply safer to call schedule_timeout_killable unconditioanlly at this stage? > return ret; > } > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -3861,6 +3861,12 @@ __alloc_pages_may_oom(gfp_t gfp_mask, unsigned int order, > } > out: > mutex_unlock(&oom_lock); > + /* > + * Give a killed process a good chance to exit before trying to > + * allocate memory again. > + */ > + if (*did_some_progress) > + schedule_timeout_killable(1); This doesn't make much sense either. Please remember that the primary reason you are adding this schedule_timeout_killable in this path is because you want to somehow reduce the priority inversion problem mentioned by Tetsuo. Because the page allocator path doesn't lack regular scheduling points - compaction, reclaim and should_reclaim_retry etc have them. > return page; > } > -- Michal Hocko SUSE Labs
next prev parent reply other threads:[~2020-03-19 7:09 UTC|newest] Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-03-10 21:39 [patch] mm, oom: prevent soft lockup on memcg oom for UP systems David Rientjes 2020-03-10 22:05 ` Tetsuo Handa 2020-03-10 22:55 ` David Rientjes 2020-03-11 9:34 ` Tetsuo Handa 2020-03-11 19:38 ` David Rientjes 2020-03-11 22:04 ` Tetsuo Handa 2020-03-11 22:14 ` David Rientjes 2020-03-12 0:12 ` Tetsuo Handa 2020-03-12 18:07 ` David Rientjes 2020-03-12 22:32 ` Andrew Morton 2020-03-16 9:31 ` Michal Hocko 2020-03-16 10:04 ` Tetsuo Handa 2020-03-16 10:14 ` Michal Hocko 2020-03-13 0:15 ` Tetsuo Handa 2020-03-13 22:01 ` David Rientjes 2020-03-13 23:15 ` Tetsuo Handa 2020-03-13 23:32 ` Tetsuo Handa 2020-03-16 23:59 ` David Rientjes 2020-03-17 3:18 ` Tetsuo Handa 2020-03-17 4:09 ` David Rientjes 2020-03-18 0:55 ` [patch v2] " David Rientjes 2020-03-18 9:42 ` Michal Hocko 2020-03-18 21:40 ` David Rientjes 2020-03-18 22:03 ` [patch v3] " David Rientjes 2020-03-19 7:09 ` Michal Hocko [this message] 2020-03-12 4:23 ` [patch] " Tetsuo Handa 2020-03-10 22:10 ` Michal Hocko 2020-03-10 23:02 ` David Rientjes 2020-03-11 8:27 ` Michal Hocko 2020-03-11 19:45 ` David Rientjes 2020-03-12 8:32 ` Michal Hocko 2020-03-12 18:20 ` David Rientjes 2020-03-12 20:16 ` Michal Hocko 2020-03-16 9:32 ` Michal Hocko 2020-03-11 0:18 ` Andrew Morton 2020-03-11 0:34 ` David Rientjes 2020-03-11 8:36 ` Michal Hocko
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20200319070911.GU21362@dhcp22.suse.cz \ --to=mhocko@kernel.org \ --cc=akpm@linux-foundation.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mm@kvack.org \ --cc=penguin-kernel@i-love.sakura.ne.jp \ --cc=rientjes@google.com \ --cc=rkolchmeyer@google.com \ --cc=vbabka@suse.cz \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).