From: Kiryl Shutsemau <kirill@shutemov.name>
To: David Hildenbrand <david@redhat.com>
Cc: Hugh Dickins <hughd@google.com>,
Andrew Morton <akpm@linux-foundation.org>,
Alexander Krabler <Alexander.Krabler@kuka.com>,
"Aneesh Kumar K.V" <aneesh.kumar@kernel.org>,
Axel Rasmussen <axelrasmussen@google.com>,
Chris Li <chrisl@kernel.org>,
Christoph Hellwig <hch@infradead.org>,
Frederick Mayle <fmayle@google.com>,
Jason Gunthorpe <jgg@ziepe.ca>,
Johannes Weiner <hannes@cmpxchg.org>,
John Hubbard <jhubbard@nvidia.com>,
Keir Fraser <keirf@google.com>,
Konstantin Khlebnikov <koct9i@gmail.com>,
Li Zhe <lizhe.67@bytedance.com>,
Matthew Wilcox <willy@infradead.org>,
Peter Xu <peterx@redhat.com>, Rik van Riel <riel@surriel.com>,
Shivank Garg <shivankg@amd.com>,
Vlastimil Babka <vbabka@suse.cz>, Wei Xu <weixugc@google.com>,
Will Deacon <will@kernel.org>, yangge <yangge1116@126.com>,
Yuanchu Xie <yuanchu@google.com>, Yu Zhao <yuzhao@google.com>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH v2 2/6] mm/gup: local lru_add_drain() to avoid lru_add_drain_all()
Date: Tue, 9 Sep 2025 11:52:55 +0100 [thread overview]
Message-ID: <bq6mehuumf5gmf5tnm5jo3iiglqtn4yo3owkxhdddnkejd46jv@4hax34dkkzds> (raw)
In-Reply-To: <ebaeb8d9-0b22-4304-9dba-40d37d82e369@redhat.com>
On Tue, Sep 09, 2025 at 09:56:30AM +0200, David Hildenbrand wrote:
> On 09.09.25 00:16, Hugh Dickins wrote:
> > In many cases, if collect_longterm_unpinnable_folios() does need to
> > drain the LRU cache to release a reference, the cache in question is
> > on this same CPU, and much more efficiently drained by a preliminary
> > local lru_add_drain(), than the later cross-CPU lru_add_drain_all().
> >
> > Marked for stable, to counter the increase in lru_add_drain_all()s
> > from "mm/gup: check ref_count instead of lru before migration".
> > Note for clean backports: can take 6.16 commit a03db236aebf ("gup:
> > optimize longterm pin_user_pages() for large folio") first.
> >
> > Signed-off-by: Hugh Dickins <hughd@google.com>
> > Cc: <stable@vger.kernel.org>
> > ---
> > mm/gup.c | 15 +++++++++++----
> > 1 file changed, 11 insertions(+), 4 deletions(-)
> >
> > diff --git a/mm/gup.c b/mm/gup.c
> > index 82aec6443c0a..b47066a54f52 100644
> > --- a/mm/gup.c
> > +++ b/mm/gup.c
> > @@ -2287,8 +2287,8 @@ static unsigned long collect_longterm_unpinnable_folios(
> > struct pages_or_folios *pofs)
> > {
> > unsigned long collected = 0;
> > - bool drain_allow = true;
> > struct folio *folio;
> > + int drained = 0;
> > long i = 0;
> > for (folio = pofs_get_folio(pofs, i); folio;
> > @@ -2307,10 +2307,17 @@ static unsigned long collect_longterm_unpinnable_folios(
> > continue;
> > }
> > - if (drain_allow && folio_ref_count(folio) !=
> > - folio_expected_ref_count(folio) + 1) {
> > + if (drained == 0 &&
> > + folio_ref_count(folio) !=
> > + folio_expected_ref_count(folio) + 1) {
>
> I would just have indented this as follows:
>
> if (drained == 0 &&
> folio_ref_count(folio) != folio_expected_ref_count(folio) + 1) {
Do we want folio_check_expected_ref_count(folio, offset)?
--
Kiryl Shutsemau / Kirill A. Shutemov
next prev parent reply other threads:[~2025-09-09 10:53 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-08 22:12 [PATCH v2 0/6] mm: better GUP pin lru_add_drain_all() Hugh Dickins
2025-09-08 22:15 ` [PATCH v2 1/6] mm/gup: check ref_count instead of lru before migration Hugh Dickins
2025-09-09 7:54 ` David Hildenbrand
2025-09-09 10:48 ` Kiryl Shutsemau
2025-09-08 22:16 ` [PATCH v2 2/6] mm/gup: local lru_add_drain() to avoid lru_add_drain_all() Hugh Dickins
2025-09-09 7:56 ` David Hildenbrand
2025-09-09 10:52 ` Kiryl Shutsemau [this message]
2025-09-09 11:33 ` David Hildenbrand
2025-09-08 22:19 ` [PATCH v2 3/6] mm: Revert "mm/gup: clear the LRU flag of a page before adding to LRU batch" Hugh Dickins
2025-09-08 22:21 ` [PATCH v2 4/6] mm: Revert "mm: vmscan.c: fix OOM on swap stress test" Hugh Dickins
2025-09-08 22:23 ` [PATCH v2 5/6] mm: folio_may_be_lru_cached() unless folio_test_large() Hugh Dickins
2025-09-09 7:57 ` David Hildenbrand
2025-09-08 22:24 ` [PATCH v2 6/6] mm: lru_add_drain_all() do local lru_add_drain() first Hugh Dickins
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=bq6mehuumf5gmf5tnm5jo3iiglqtn4yo3owkxhdddnkejd46jv@4hax34dkkzds \
--to=kirill@shutemov.name \
--cc=Alexander.Krabler@kuka.com \
--cc=akpm@linux-foundation.org \
--cc=aneesh.kumar@kernel.org \
--cc=axelrasmussen@google.com \
--cc=chrisl@kernel.org \
--cc=david@redhat.com \
--cc=fmayle@google.com \
--cc=hannes@cmpxchg.org \
--cc=hch@infradead.org \
--cc=hughd@google.com \
--cc=jgg@ziepe.ca \
--cc=jhubbard@nvidia.com \
--cc=keirf@google.com \
--cc=koct9i@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lizhe.67@bytedance.com \
--cc=peterx@redhat.com \
--cc=riel@surriel.com \
--cc=shivankg@amd.com \
--cc=vbabka@suse.cz \
--cc=weixugc@google.com \
--cc=will@kernel.org \
--cc=willy@infradead.org \
--cc=yangge1116@126.com \
--cc=yuanchu@google.com \
--cc=yuzhao@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