Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751531AbdCQVnt (ORCPT ); Fri, 17 Mar 2017 17:43:49 -0400 Received: from mx2.suse.de ([195.135.220.15]:39152 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751248AbdCQVnr (ORCPT ); Fri, 17 Mar 2017 17:43:47 -0400 Date: Fri, 17 Mar 2017 19:45:27 +0100 From: Michal Hocko To: Johannes Weiner Cc: Yisheng Xie , akpm@linux-foundation.org, mgorman@suse.de, vbabka@suse.cz, riel@redhat.com, shakeelb@google.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, guohanjun@huawei.com, qiuxishi@huawei.com Subject: Re: [PATCH v4] mm/vmscan: more restrictive condition for retry in do_try_to_free_pages Message-ID: <20170317184527.GC23957@dhcp22.suse.cz> References: <1489577808-19228-1-git-send-email-xieyisheng1@huawei.com> <20170317183928.GA12281@cmpxchg.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170317183928.GA12281@cmpxchg.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1689 Lines: 57 On Fri 17-03-17 14:39:28, Johannes Weiner wrote: > On Wed, Mar 15, 2017 at 07:36:48PM +0800, Yisheng Xie wrote: > > @@ -100,6 +100,9 @@ struct scan_control { > > /* Can cgroups be reclaimed below their normal consumption range? */ > > unsigned int may_thrash:1; > > > > + /* Did we have any memcg protected by the low limit */ > > + unsigned int memcg_low_protection:1; > > These are both bad names. How about the following pair? > > /* > * Cgroups are not reclaimed below their configured memory.low, > * unless we threaten to OOM. If any cgroups are skipped due to > * memory.low and nothing was reclaimed, go back for memory.low. > */ > unsigned int memcg_low_skipped:1 > unsigned int memcg_low_reclaim:1; yes this is much better > > > @@ -2557,6 +2560,8 @@ static bool shrink_node(pg_data_t *pgdat, struct scan_control *sc) > > unsigned long scanned; > > > > if (mem_cgroup_low(root, memcg)) { > > + sc->memcg_low_protection = 1; > > + > > if (!sc->may_thrash) > > continue; > > if (!sc->memcg_low_reclaim) { > sc->memcg_low_skipped = 1; > continue; > } > > > mem_cgroup_events(memcg, MEMCG_LOW, 1); > > @@ -2808,7 +2813,7 @@ static unsigned long do_try_to_free_pages(struct zonelist *zonelist, > > return 1; > > > > /* Untapped cgroup reserves? Don't OOM, retry. */ > > - if (!sc->may_thrash) { > > + if (sc->memcg_low_protection && !sc->may_thrash) { > > if (sc->memcg_low_skipped) { > [...] > sc->memcg_low_reclaim = 1; you need to set memcg_low_skipped = 0 here, right? Otherwise we do not have break out of the loop. Or am I missing something? > goto retry; > } -- Michal Hocko SUSE Labs