From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-lf1-f53.google.com (mail-lf1-f53.google.com [209.85.167.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 218C62C80 for ; Fri, 3 Dec 2021 17:51:06 +0000 (UTC) Received: by mail-lf1-f53.google.com with SMTP id k37so8358743lfv.3 for ; Fri, 03 Dec 2021 09:51:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=Xm0FOcKnB1VB3SyGY+sZgit/QboKHbPIM25nrSjiVeY=; b=N0n18KpBckGWjsg5X9h/A83ty0o4Y2ajbVK+oq8W2DGblpELSt9Dhvxst6zT5umQca l22wF2EXENaFxvBlgmOdgP9MwEyAzpw27Kext1rqCrvLVpBAfvt6zXCP1lqyoIF7zGoe P+afmkfI0PbMaFi7yUICWBHgB7jiKFB1ZYccLqS1kg83qgtm00eMb3dXtX5nf8A8RqV0 lEvR4CQfkt7+jF9vNelvn1aufiBq4DbTy/UFIBtrH8tnqAZHskqzMXZd37eO4HSU2juD s0Zgxp4s9rj+X0058T9NaXCB8niGEAjIdKnzglKON6QX0G+Z6kZ7R6kXSQU4Mxiu8c+J Gh7Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Xm0FOcKnB1VB3SyGY+sZgit/QboKHbPIM25nrSjiVeY=; b=fFrWCl19MVVAKxGZG9VNOEpYygM88e8F3Pdg30KVLvIlpa1zxslDDrnCwHwL2sS96R y6+MHPhd5kBlyhQMgFtLg14OKbRj0oKphOsUn72xXb/Kh2yOe/C2OLWGId1HdNF3cGkQ CKyiBagctj99mQt/RUCDB/4Dd1pme09KRn5/rrbLy/kodOdhr7nR6eO3TcYxLLw8ezm4 VWdLi+nZwXwo7RHQv7jsghB+TOg8lHCnS0WQKv5hNx7p0PgqHAIAvbm3hZYPQxTg/keL 4mKDh5MXAlNRsGhJy4eYLruNrW9OfANzbCYPlvFYyswtwiVLDC+Ae8OMTjWEs0smnZ6+ 8Wew== X-Gm-Message-State: AOAM531SG2+6oOdsWAA67TRoDp6mx7ztT7ArhC+PUlONkYMDCFjwsg1b gBSVmwLo2vPxB0Fp/eMzTw8Vr+YRcGmUQc6oH5VpAQ== X-Google-Smtp-Source: ABdhPJy+QmtD0vN6/vIdbzeiC2xsRqs0giW2uF6k3loJjaViYyrjKE72ZpAM7vEUEZc+Y+AUnuF0gnrkB9wwTa1wxWk= X-Received: by 2002:a05:6512:5c2:: with SMTP id o2mr18773168lfo.8.1638553863883; Fri, 03 Dec 2021 09:51:03 -0800 (PST) Precedence: bulk X-Mailing-List: regressions@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 References: <20211202150614.22440-1-mgorman@techsingularity.net> <20211202165220.GZ3366@techsingularity.net> <20211203090137.GA3366@techsingularity.net> In-Reply-To: <20211203090137.GA3366@techsingularity.net> From: Shakeel Butt Date: Fri, 3 Dec 2021 09:50:51 -0800 Message-ID: Subject: Re: [PATCH v4 1/1] mm: vmscan: Reduce throttling due to a failure to make progress To: Mel Gorman Cc: Andrew Morton , Michal Hocko , Vlastimil Babka , Alexey Avramov , Rik van Riel , Mike Galbraith , Darrick Wong , regressions@lists.linux.dev, Linux-fsdevel , Linux-MM , LKML Content-Type: text/plain; charset="UTF-8" On Fri, Dec 3, 2021 at 1:01 AM Mel Gorman wrote: > [...] > > Not recently that I'm aware of but historically reclaim has been plagued by > at least two classes of problems -- premature OOM and excessive CPU usage > churning through the LRU. Going back, the solution was basically to sleep > something like "disable kswapd if it fails to make progress for too long". > Commit 69392a403f49 addressed a case where calling congestion_wait might as > well have been schedule_timeout_uninterruptible(HZ/10) because congestion > is no longer tracked by the block layer. > > Hence 69392a403f49 allows reclaim to throttle on NOPROGRESS but if > another task makes progress, the throttled tasks can be woken before the > timeout. The flaw was throttling too easily or for too long delaying OOM > being properly detected. > To remove congestion_wait of mem_cgroup_force_empty_write(), the commit 69392a403f49 has changed the behavior of all memcg reclaim codepaths as well as direct global reclaimers. Were there other congestion_wait() instances which commit 69392a403f49 was targeting but those congestion_wait() were replaced/removed by different commits? [...] > > > > Isn't it better that the reclaim returns why it is failing instead of > > littering the reclaim code with 'is this global reclaim', 'is this > > memcg reclaim', 'am I kswapd' which is also a layering violation. IMO > > this is the direction we should be going towards though not asking to > > do this now. > > > > It's not clear why you think the page allocator can make better decisions > about reclaim than reclaim can. It might make sense if callers were > returned enough information to make a decision but even if they could, > it would not be popular as the API would be difficult to use properly. > The above is a separate discussion for later. > Is your primary objection the cgroup_reclaim(sc) check? No, I am of the opinion that we should revert 69392a403f49 and we should have just replaced congestion_wait in mem_cgroup_force_empty_write with a simple schedule_timeout_interruptible. The memory.force_empty is a cgroup v1 interface (to be deprecated) and it is very normal to expect that the user will trigger that interface multiple times. We should not change the behavior of all the memcg reclaimers and direct global reclaimers so that we can remove congestion_wait from mem_cgroup_force_empty_write. > If so, I can > remove it. While there is a mild risk that OOM would be delayed, it's very > unlikely because a memcg failing to make progress in the local case will > probably call cond_resched() if there are not lots of of pages pending > writes globally. > > > Regarding this patch and 69392a403f49, I am still confused on the main > > motivation behind 69392a403f49 to change the behavior of 'direct > > reclaimers from page allocator'. > > > > The main motivation of the series overall was to remove the reliance on > congestion_wait and wait_iff_congested because both are fundamentally > broken when congestion is not tracked by the block layer. Replacing with > schedule_timeout_uninterruptible() would be silly because where possible > decisions on whether to pause or throttle should be based on events, > not time. For example, if there are too many pages waiting on writeback > then throttle but if writeback completes, wake the throttled tasks > instead of "sleep some time and hope for the best". > I am in agreement with the motivation of the whole series. I am just making sure that the motivation of VMSCAN_THROTTLE_NOPROGRESS based throttle is more than just the congestion_wait of mem_cgroup_force_empty_write. thanks, Shakeel