From: Baoquan He <baoquan.he@linux.dev>
To: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Barry Song <baohua@kernel.org>,
akpm@linux-foundation.org, kasong@tencent.com,
qi.zheng@linux.dev, shakeel.butt@linux.dev,
axelrasmussen@google.com, yuanchu@google.com, weixugc@google.com,
hannes@cmpxchg.org, david@kernel.org, mhocko@kernel.org,
ljs@kernel.org, ridong.chen@linux.dev, hebaoquan@kylinos.cn,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm: mglru: clear the reference counter for rejected folios
Date: Tue, 8 Sep 2026 14:59:12 +0800 [thread overview]
Message-ID: <ap-yQOH0pni-mfdf@fedora> (raw)
In-Reply-To: <31494361-406e-4874-8a2c-2c6f5cee5321@linux.alibaba.com>
On 09/08/26 at 12:01pm, Baolin Wang wrote:
>
>
> On 9/8/26 11:03 AM, Baolin Wang wrote:
> >
> >
> > On 9/8/26 10:34 AM, Barry Song wrote:
> > > On Tue, Sep 8, 2026 at 10:30 AM Baoquan He <baoquan.he@linux.dev> wrote:
> > > >
> > > > Hi Baolin,
> > > >
> > > > On 09/07/26 at 11:25am, Baolin Wang wrote:
> > > > ......snip...
> > > > > diff --git a/mm/vmscan.c b/mm/vmscan.c
> > > > > index 40d3f1b48a74..42c0a09938ab 100644
> > > > > --- a/mm/vmscan.c
> > > > > +++ b/mm/vmscan.c
> > > >
> > > > Well, this seems to be based on Andrew's mm-new branch. I usually track
> > > > mm-unstable branch. Maybe the subject should be marked as below?
> > > > [PATCH mm-new] mm: mglru: clear the reference counter for rejected
> >
> > ACK.
> >
> > > >
> > > > > @@ -5021,10 +5021,11 @@ static int evict_folios(unsigned
> > > > > long nr_to_scan, struct lruvec *lruvec,
> > > > > }
> > > > >
> > > > > /* don't add rejected folios to the oldest generation */
> > > > > - if (lru_gen_folio_seq(lruvec, folio, false) ==
> > > > > min_seq[type]) {
> > > > > - folio_set_lru_refs(folio, 0);
> > > > > + if (lru_gen_folio_seq(lruvec, folio, false) ==
> > > > > min_seq[type])
> > > > > folio_set_active(folio);
> > > > > - }
> > > > > +
> > > > > + /* See the comments on LRU_REFS_FLAGS */
> > > > > + folio_set_lru_refs(folio, 0);
> > > >
> > > > This looks like a great catch, while the code change could bring issue.
> > > >
> > > > Because move_folios_to_lru() relies on folios' flags to decide their new
> > > > generation. You just cleared it before move_folios_to_lru(). This is no
> > > > problem for rejected folios that are determined to be put into the
> > > > oldest generation. But for those rejected folios that are determined to
> > > > be promoted, this could be wrong. E.g currently gen window is 4, and a
> > > > folio is referenced, lru_gen_folio_seq() decides its new gen as 1, which
> > > > is the 2nd oldest generation. While folio_set_lru_refs(folio, 0) clear
> > > > referenced bit, this causes it being put into the oldest generation in
> > > > move_folios_to_lru(), this is not expected.
> >
> > Yes. As I discussed with Barry earlier, lru_gen_folio_seq() also needs
> > to be reconsidered regarding whether it should rely on PG_referenced
> > [1].
> >
> > For commit 6cbdd9726fb5, we didn't discuss the impact on rejected folios
> > either. Before commit 6cbdd9726fb5, if rejected folios did not have
> > PG_active set by shrink_folio_list(), evict_folios() would set PG_active
> > on these rejected folios.
> >
> > [1] https://lore.kernel.org/linux-mm/20260901220430.79810-1-
> > baohua@kernel.org/
> >
> > > The original code looks quite weird. It even prioritizes folios
> > > that won't be promoted by `PG_active`. Do we need to change all
> > > the cases just to call `PG_active`?
I would agree if we can. While I have one concern. A rejected folio that
should have gone into the oldest generation is now being promoted to the
2nd newest generation. In the original code, referenced folio is only
being promoted to the next gen. I even think this is not a bug, but Yu
Zhao intentionally did it: the coldest folio is moved to 2nd newest gen,
referenced folio (hot folio) is moved to new gen but carries the referenced
bit. Both of them seems to be treated somewhat equally.
To me, I would rather move both of them to the next gen, while keep their
refs untouched.
> >
> > Yes. Regarding this concern, I plan to change back to the original
> > behavior:
> >
> > /* See the comments on LRU_REFS_FLAGS */
> > folio_set_lru_refs(folio, 0);
> >
> > /* don't add rejected folios to the oldest generation */
> > if (lru_gen_folio_seq(lruvec, folio, false) == min_seq[type])
> > folio_set_active(folio);
> >
> > What do you think?
>
> Just FYI, after above changes, the performance improvement on zram is no
> longer obvious either. I think this also answers Kairui's earlier question
> about why I saw a performance improvement (which seems related to commit
> 6cbdd9726fb5). Also, there is no obvious performance regression either.
Hi Baolin,
Not sure if it's convenient to do a little more testing in your side.
E.g rejected folios are moved to next gen, but not clearing their flags.
Then we can at least know which one is more efficient on yout testing
platform.
coldest folio referenced folio
---------------------------------------------
max_gen -1 next gen + referenced kept
max_gen -1 max_gen -1
next_gen next gen + referenced kept
Thanks
Baoquan
next prev parent reply other threads:[~2026-09-08 6:59 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-07 3:25 Baolin Wang
2026-09-07 4:28 ` Barry Song
2026-09-07 5:53 ` Baolin Wang
2026-09-07 4:57 ` Kairui Song
2026-09-07 6:27 ` Baolin Wang
2026-09-08 2:30 ` Baoquan He
2026-09-08 2:34 ` Barry Song
2026-09-08 3:03 ` Baolin Wang
2026-09-08 4:01 ` Baolin Wang
2026-09-08 6:59 ` Baoquan He [this message]
2026-09-08 7:53 ` Baolin Wang
2026-09-08 8:23 ` Baoquan He
2026-09-08 9:39 ` Baolin Wang
2026-09-08 10:29 ` Baoquan He
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=ap-yQOH0pni-mfdf@fedora \
--to=baoquan.he@linux.dev \
--cc=akpm@linux-foundation.org \
--cc=axelrasmussen@google.com \
--cc=baohua@kernel.org \
--cc=baolin.wang@linux.alibaba.com \
--cc=david@kernel.org \
--cc=hannes@cmpxchg.org \
--cc=hebaoquan@kylinos.cn \
--cc=kasong@tencent.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=mhocko@kernel.org \
--cc=qi.zheng@linux.dev \
--cc=ridong.chen@linux.dev \
--cc=shakeel.butt@linux.dev \
--cc=weixugc@google.com \
--cc=yuanchu@google.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
all inboxes | Powered by JetHome®