From: "David Hildenbrand (Arm)" <david@kernel.org>
To: Hugh Dickins <hughd@google.com>,
Andrew Morton <akpm@linux-foundation.org>
Cc: Ackerley Tng <ackerleytng@google.com>,
Alexander Viro <viro@zeniv.linux.org.uk>,
Baolin Wang <baolin.wang@linux.alibaba.com>,
Barry Song <baohua@kernel.org>,
Binbin Wu <binbin.wu@linux.intel.com>,
Christian Brauner <brauner@kernel.org>,
Christoph Hellwig <hch@lst.de>, Christoph Lameter <cl@gentwo.org>,
Claudio Imbrenda <imbrenda@linux.ibm.com>,
JP Kobryn <jp.kobryn@linux.dev>, Jan Kara <jack@suse.cz>,
Johannes Weiner <hannes@cmpxchg.org>,
Kairui Song <ryncsn@gmail.com>, Kiryl Shutsemau <kas@kernel.org>,
Lance Yang <lance.yang@linux.dev>,
Leonardo Bras <leobras.c@gmail.com>,
Lorenzo Stoakes <ljs@kernel.org>,
Marcelo Tosatti <mtosatti@redhat.com>,
Matthew Wilcox <willy@infradead.org>,
Mel Gorman <mgorman@techsingularity.net>,
Miaohe Lin <linmiaohe@huawei.com>, Michal Hocko <mhocko@suse.com>,
Minchan Kim <minchan@kernel.org>,
Muchun Song <muchun.song@linux.dev>,
Oscar Salvador <osalvador@suse.de>,
Peter Zijlstra <peterz@infradead.org>,
Qi Zheng <qi.zheng@linux.dev>, Rik van Riel <riel@surriel.com>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
Shakeel Butt <shakeel.butt@linux.dev>,
Suren Baghdasaryan <surenb@google.com>,
Vlastimil Babka <vbabka@kernel.org>,
Yang Shi <yang@os.amperecomputing.com>,
Yu Zhao <yuzhao@google.com>, Zach O'Keefe <zokeefe@google.com>,
Zi Yan <ziy@nvidia.com>,
linux-block@vger.kernel.org, linux-fsdevel@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH 02/25] mm/fbatch: allow folios_put_refs() to skip xa_is_value() entries
Date: Thu, 27 Aug 2026 19:35:54 +0200 [thread overview]
Message-ID: <bd83481f-d25b-441e-90bf-18d49ab9322d@kernel.org> (raw)
In-Reply-To: <44c7773e-5806-d24a-83c9-f39b3a134138@google.com>
On 8/24/26 15:55, Hugh Dickins wrote:
> Let folios_put_refs() (hence folio_batch_release()) skip xa_is_value()
> entries, and therefore remove unneeded folio_batch_remove_exceptionals().
>
> It made some sense when introduced in 3.1 for shmem swap entries only,
> but workingset shadows popularized exceptional entries in 3.15, and it's
> silly for so many sites to be squashing exceptionals out of the fbatch,
> merely to suit an inadequacy in folios_put_refs().
>
> But remove exceptionals on leaving truncate_folio_batch_exceptionals(),
> one of whose callers then passes the fbatch on to others less tolerant.
>
> No longer essential to this series, since 7.2 commit 9669b87065a6
> ("mm/lruvec: preemptively free dead folios during lru_add drain")
> allowed folios_put_refs() to skip NULLs; but still an improvement.
>
> Signed-off-by: Hugh Dickins <hughd@google.com>
> ---
> include/linux/folio_batch.h | 5 +----
> mm/folio.c | 25 ++++---------------------
> mm/shmem.c | 2 --
> mm/truncate.c | 16 ++++++++++------
> 4 files changed, 15 insertions(+), 33 deletions(-)
>
> diff --git a/include/linux/folio_batch.h b/include/linux/folio_batch.h
> index b45946adc50b..e1cc8ae023f1 100644
> --- a/include/linux/folio_batch.h
> +++ b/include/linux/folio_batch.h
> @@ -22,8 +22,7 @@ struct folio;
> * The folio_batch is used to amortise the cost of retrieving and
> * operating on a set of folios. The order of folios in the batch may be
> * significant (eg delete_from_page_cache_batch()). Some users of the
> - * folio_batch store "exceptional" entries in it which can be removed
> - * by calling folio_batch_remove_exceptionals().
> + * folio_batch store "exceptional" (xa_is_value) entries in it too.
> */
> struct folio_batch {
> unsigned char nr;
> @@ -100,6 +99,4 @@ static inline void folio_batch_release(struct folio_batch *fbatch)
> if (folio_batch_count(fbatch))
> __folio_batch_release(fbatch);
> }
> -
> -void folio_batch_remove_exceptionals(struct folio_batch *fbatch);
> #endif /* _LINUX_FOLIO_BATCH_H */
> diff --git a/mm/folio.c b/mm/folio.c
> index 62b96c9ce19e..b2bce6b77498 100644
> --- a/mm/folio.c
> +++ b/mm/folio.c
> @@ -983,6 +983,10 @@ void folios_put_refs(struct folio_batch *folios, unsigned int *refs)
> if (!folio)
> continue;
>
> + /* Skip any "exceptional" (workingset or shmem swap) entry. */
> + if (xa_is_value(folio))
> + continue;
> +
> if (is_huge_zero_folio(folio))
> continue;
>
> @@ -1088,27 +1092,6 @@ void __folio_batch_release(struct folio_batch *fbatch)
> }
> EXPORT_SYMBOL(__folio_batch_release);
>
> -/**
> - * folio_batch_remove_exceptionals() - Prune non-folios from a batch.
> - * @fbatch: The batch to prune
> - *
> - * find_get_entries() fills a batch with both folios and shadow/swap/DAX
> - * entries. This function prunes all the non-folio entries from @fbatch
> - * without leaving holes, so that it can be passed on to folio-only batch
> - * operations.
> - */
> -void folio_batch_remove_exceptionals(struct folio_batch *fbatch)
> -{
> - unsigned int i, j;
> -
> - for (i = 0, j = 0; i < folio_batch_count(fbatch); i++) {
> - struct folio *folio = fbatch->folios[i];
> - if (!xa_is_value(folio))
> - fbatch->folios[j++] = folio;
> - }
> - fbatch->nr = j;
> -}
> -
> #ifdef CONFIG_MEMCG
> static void lruvec_reparent_lru(struct lruvec *child_lruvec,
> struct lruvec *parent_lruvec,
> diff --git a/mm/shmem.c b/mm/shmem.c
> index 89a1495e55f7..3911721e1e55 100644
> --- a/mm/shmem.c
> +++ b/mm/shmem.c
> @@ -1156,7 +1156,6 @@ static void shmem_undo_range(struct inode *inode, loff_t lstart, uoff_t lend,
> truncate_inode_folio(mapping, folio);
> folio_unlock(folio);
> }
> - folio_batch_remove_exceptionals(&fbatch);
> folio_batch_release(&fbatch);
> cond_resched();
> }
> @@ -1276,7 +1275,6 @@ static void shmem_undo_range(struct inode *inode, loff_t lstart, uoff_t lend,
> }
> folio_unlock(folio);
> }
> - folio_batch_remove_exceptionals(&fbatch);
> folio_batch_release(&fbatch);
> }
>
> diff --git a/mm/truncate.c b/mm/truncate.c
> index b58ba940be47..4151f7a167e3 100644
> --- a/mm/truncate.c
> +++ b/mm/truncate.c
> @@ -53,7 +53,7 @@ static void clear_shadow_entries(struct address_space *mapping,
> /*
> * Unconditionally remove exceptional entries. Usually called from truncate
> * path. Note that the folio_batch may be altered by this function by removing
> - * exceptional entries similar to what folio_batch_remove_exceptionals() does.
> + * exceptional entries.
> * Please note that indices[] has entries in ascending order as guaranteed by
> * either find_get_entries() or find_lock_entries().
> */
> @@ -95,7 +95,7 @@ static void truncate_folio_batch_exceptionals(struct address_space *mapping,
> dax_delete_mapping_entry(mapping, indices[i]);
> }
> }
> - goto out;
> + goto squash;
> }
>
> xas_set(&xas, indices[j]);
> @@ -113,8 +113,14 @@ static void truncate_folio_batch_exceptionals(struct address_space *mapping,
> if (mapping_shrinkable(mapping))
> inode_lru_list_add(mapping->host);
> spin_unlock(&mapping->host->i_lock);
> -out:
> - folio_batch_remove_exceptionals(fbatch);
> +
> +squash:
> + for (i = j + 1; i < nr; i++) {
> + folio = fbatch->folios[i];
> + if (!xa_is_value(folio))
> + fbatch->folios[j++] = folio;
> + }
> + fbatch->nr = j;
> }
One caller of truncate_folio_batch_exceptionals() just calls
folio_batch_release(). I was wondering whether that one could just stop calling
truncate_folio_batch_exceptionals().
But truncate_folio_batch_exceptionals() does too many other things I don't quite
understand.
I guess one could move the loop into the only remaining caller that does not
call folio_batch_release() afterwards.
But that changes the whole purpose of the function and the name would no longer
match.
Which brings me back to my point that truncate_folio_batch_exceptionals() does a
lot of things besides folio_batch_remove_exceptionals() that I don't understand :)
So I'm sure there is room for future cleanups for somebody that actually
understands what truncate_folio_batch_exceptionals() does besides ... removing
exceptionals.
Acked-by: David Hildenbrand (Arm) <david@kernel.org>
--
Cheers,
David
next prev parent reply other threads:[~2026-08-27 17:36 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 13:49 [PATCH 00/25] mm/fbatch: drain lru_add_drain() and _all() Hugh Dickins
2026-08-24 13:52 ` [PATCH 01/25] mm/fbatch: remove !CONFIG_SMP special case of folio_activate() Hugh Dickins
2026-08-27 17:23 ` David Hildenbrand (Arm)
2026-08-24 13:55 ` [PATCH 02/25] mm/fbatch: allow folios_put_refs() to skip xa_is_value() entries Hugh Dickins
2026-08-27 17:35 ` David Hildenbrand (Arm) [this message]
2026-08-24 13:58 ` [PATCH 03/25] mm/fbatch: temporarily disable lazyfree and mlock+munlock batching Hugh Dickins
2026-08-24 14:01 ` [PATCH 04/25] mm/fbatch: lru bit set, no extra ref, while folio on per-cpu fbatch Hugh Dickins
2026-08-27 11:46 ` Kiryl Shutsemau
2026-08-24 14:03 ` [PATCH 05/25] mm/fbatch: lru_add_del_folio()+folio_add_lru() after clear_lru() Hugh Dickins
2026-08-24 14:06 ` [PATCH 06/25] mm/fbatch: fbatch_drain_lazyfree(onstack fbatch) before ptl unlock Hugh Dickins
2026-08-24 14:09 ` [PATCH 07/25] mm/fbatch: LRU_NEXT_ACTIVATE bit to optimize folio_activate() Hugh Dickins
2026-08-27 12:02 ` Kiryl Shutsemau
2026-08-24 14:11 ` [PATCH 08/25] mm/fbatch: replace mlock_new_folio() by __folio_add_lru(,mlockit) Hugh Dickins
2026-08-24 14:14 ` [PATCH 09/25] mm/fbatch: restore mlock+munlock batching, without extra ref Hugh Dickins
2026-08-24 14:16 ` [PATCH 10/25] mm/fbatch: remove several uses of mlock_drain_local() Hugh Dickins
2026-08-24 14:18 ` [PATCH 11/25] mm/fbatch: remove migration's PAGE_WAS_MLOCKED lru_add_drain() Hugh Dickins
2026-08-24 14:20 ` [PATCH 12/25] mm/fbatch: remove percpu_pvec_drained and folios_put() Hugh Dickins
2026-08-24 14:23 ` [PATCH 13/25] mm/fbatch: no lru_add_drain() to collect_longterm_unpinnable_folios() Hugh Dickins
2026-08-24 14:55 ` [PATCH alt " Hugh Dickins
2026-08-24 18:42 ` David Hildenbrand (Arm)
2026-08-27 9:16 ` Hugh Dickins
2026-08-27 9:20 ` David Hildenbrand (Arm)
2026-08-24 14:25 ` [PATCH 14/25] mm/fbatch: no lru_add_drain() nor _all() for memfd_wait_for_pins() Hugh Dickins
2026-08-24 14:27 ` [PATCH 15/25] mm/fbatch: remove shake_folio() shake_page() from memory-failure Hugh Dickins
2026-08-24 14:30 ` [PATCH 16/25] mm/fbatch: remove lru_cache_disable(() from NUMA folio migration Hugh Dickins
2026-08-24 14:32 ` [PATCH 17/25] mm/fbatch: no lru_cache_disable() in __alloc_contig_migrate_range() Hugh Dickins
2026-08-24 14:34 ` [PATCH 18/25] mm/fbatch: remove lru_add_drain() and _all() calls from various Hugh Dickins
2026-08-24 14:36 ` [PATCH 19/25] mm/fbatch: vm/stat_refresh include lru_add_drain() on each cpu Hugh Dickins
2026-08-24 14:39 ` [PATCH 20/25] s390/fbatch: no lru_add_drain_all() in s390_wiggle_split_folio() Hugh Dickins
2026-08-26 13:57 ` Claudio Imbrenda
2026-08-27 8:49 ` Hugh Dickins
2026-08-27 12:55 ` Claudio Imbrenda
2026-08-27 20:26 ` David Hildenbrand (Arm)
2026-08-24 14:41 ` [PATCH 21/25] block/fbatch: no lru_add_drain_all() in invalidate_bdev() Hugh Dickins
2026-08-24 14:44 ` [PATCH 22/25] fs/fbatch: drop_caches invalidate_bh_lrus() not lru_add_drain_all() Hugh Dickins
2026-08-24 14:47 ` [PATCH 23/25] fs,mm/fbatch: use invalidate_bh_lrus() not invalidate_bh_lrus_cpu() Hugh Dickins
2026-08-24 14:49 ` [PATCH 24/25] fs,mm/fbatch: lru_cache_disable() keep off buffer_head lrus only Hugh Dickins
2026-08-24 14:51 ` [PATCH 25/25] mm/fbatch: move lru_add_drain_all() declaration to mm/internal.h Hugh Dickins
2026-08-27 17:16 ` [PATCH 00/25] mm/fbatch: drain lru_add_drain() and _all() David Hildenbrand (Arm)
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=bd83481f-d25b-441e-90bf-18d49ab9322d@kernel.org \
--to=david@kernel.org \
--cc=ackerleytng@google.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=baolin.wang@linux.alibaba.com \
--cc=bigeasy@linutronix.de \
--cc=binbin.wu@linux.intel.com \
--cc=brauner@kernel.org \
--cc=cl@gentwo.org \
--cc=hannes@cmpxchg.org \
--cc=hch@lst.de \
--cc=hughd@google.com \
--cc=imbrenda@linux.ibm.com \
--cc=jack@suse.cz \
--cc=jp.kobryn@linux.dev \
--cc=kas@kernel.org \
--cc=lance.yang@linux.dev \
--cc=leobras.c@gmail.com \
--cc=linmiaohe@huawei.com \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=mgorman@techsingularity.net \
--cc=mhocko@suse.com \
--cc=minchan@kernel.org \
--cc=mtosatti@redhat.com \
--cc=muchun.song@linux.dev \
--cc=osalvador@suse.de \
--cc=peterz@infradead.org \
--cc=qi.zheng@linux.dev \
--cc=riel@surriel.com \
--cc=ryncsn@gmail.com \
--cc=shakeel.butt@linux.dev \
--cc=surenb@google.com \
--cc=vbabka@kernel.org \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.org \
--cc=yang@os.amperecomputing.com \
--cc=yuzhao@google.com \
--cc=ziy@nvidia.com \
--cc=zokeefe@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