From: Zhaoyang Huang <huangzhaoyang@gmail.com>
To: Kairui Song <ryncsn@gmail.com>
Cc: "zhaoyang.huang" <zhaoyang.huang@unisoc.com>,
Andrew Morton <akpm@linux-foundation.org>,
Michal Hocko <mhocko@kernel.org>,
"T . J . Mercier" <tjmercier@google.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
steve.kang@unisoc.com
Subject: Re: [PATCHv3] mm: remove '!root_reclaim' checking in should_abort_scan()
Date: Wed, 8 Apr 2026 09:42:48 +0800 [thread overview]
Message-ID: <CAGWkznGoZEukGhwV7JLdvWEmZHtv_Pu=tBSvsWdFMhNyqW+azA@mail.gmail.com> (raw)
In-Reply-To: <CAMgjq7DWkURifMhR8HG4nZRz6=G+Pk7kz9OGdEuL=VvZ7vWDTw@mail.gmail.com>
On Tue, Apr 7, 2026 at 10:27 PM Kairui Song <ryncsn@gmail.com> wrote:
>
> On Wed, Mar 18, 2026 at 9:17 AM zhaoyang.huang
> <zhaoyang.huang@unisoc.com> wrote:
> >
> > From: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
> >
> > Android systems usually use memory.reclaim interface to implement user
> > space memory management which expects that the requested reclaim target
> > and actually reclaimed amount memory are not diverging by too much. With
> > the current MGRLU implementation there is, however, no bail out when the
> > reclaim target is reached and this could lead to an excessive reclaim
> > that scales with the reclaim hierarchy size.For example, we can get a
> > nr_reclaimed=394/nr_to_reclaim=32 proactive reclaim under a common 1-N
> > cgroup hierarchy.
> > This defect arised from the goal of keeping fairness among memcgs that
> > is, for try_to_free_mem_cgroup_pages -> shrink_node_memcgs ->
> > shrink_lruvec -> lru_gen_shrink_lruvec -> try_to_shrink_lruvec, the
> > !root_reclaim(sc) check was there for reclaim fairness, which was
> > necessary before commit 'b82b530740b9' ("mm: vmscan: restore
> > incremental cgroup iteration") because the fairness depended on
> > attempted proportional reclaim from every memcg under the target
> > memcg. However after commit 'b82b530740b9' there is no longer a need
>
> Hi Zhaoyang,
>
> A nitpick here, this is triggering an error with checkpatch.pl:
> ./scripts/checkpatch.pl
> 0001-mm-remove-root_reclaim-checking-in-should_abort_scan.patch
> ERROR: Please use git commit description style 'commit <12+ chars of
> sha1> ("<title line>")' - ie: 'commit b82b530740b9 ("mm: vmscan:
> restore incremental cgroup iteration")'
> #23:
> under the target memcg. However after commit b82b530740b9 there is no
Hi Kairui,
Thanks for heads up. It is weird that I got the result as Yes/Err/Err
by latest checkpatch.pl for the following three styles as <after
commit 'b82b530740b9' there / after commit b82b530740b9 there / after
'commit b82b530740b9' there>. Is it possible that the result depends
on the local environment?
> total: 1 errors, 0 warnings, 10 lines checked
>
> A lot of auto tools recognize that commit message format and print
> warning, Better to follow the rule unless necessary.
>
> > to visit every memcg to ensure fairness. Let's have try_to_shrink_lruvec
> > bail out when the nr_reclaimed achieved.
> >
> > Suggested-by: T.J.Mercier <tjmercier@google.com>
> > Reviewed-by: T.J.Mercier <tjmercier@google.com>
> > Signed-off-by: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
> > ---
> > Patchv2,v3: update commit message
> > ---
> > ---
> > mm/vmscan.c | 4 ----
> > 1 file changed, 4 deletions(-)
> >
> > diff --git a/mm/vmscan.c b/mm/vmscan.c
> > index 0fc9373e8251..10f1e7d716ca 100644
> > --- a/mm/vmscan.c
> > +++ b/mm/vmscan.c
> > @@ -4839,10 +4839,6 @@ static bool should_abort_scan(struct lruvec *lruvec, struct scan_control *sc)
> > int i;
> > enum zone_watermarks mark;
> >
> > - /* don't abort memcg reclaim to ensure fairness */
> > - if (!root_reclaim(sc))
> > - return false;
> > -
>
> Makes sense to me combined with b82b530740b9. I've been testing on top
> of your commit and it seems all good:
>
> Reviewed-by: Kairui Song <kasong@tencent.com>
prev parent reply other threads:[~2026-04-08 1:43 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-18 1:15 zhaoyang.huang
2026-03-18 8:31 ` Michal Hocko
2026-04-02 3:02 ` Shakeel Butt
2026-04-02 3:36 ` Qi Zheng
2026-04-02 22:59 ` Barry Song
2026-04-03 7:05 ` Zhaoyang Huang
2026-04-07 3:45 ` Barry Song
2026-04-07 14:26 ` Kairui Song
2026-04-08 1:42 ` Zhaoyang Huang [this message]
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='CAGWkznGoZEukGhwV7JLdvWEmZHtv_Pu=tBSvsWdFMhNyqW+azA@mail.gmail.com' \
--to=huangzhaoyang@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@kernel.org \
--cc=ryncsn@gmail.com \
--cc=steve.kang@unisoc.com \
--cc=tjmercier@google.com \
--cc=zhaoyang.huang@unisoc.com \
/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: link
Be 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