Re: [PATCH v7 2/2] mm: use mapping_max_folio_order() for force_thp_readahead order

From: Jan Kara

Date: Mon Jun 01 2026 - 12:38:54 EST


On Mon 01-06-26 03:21:18, Usama Arif wrote:
> The force_thp_readahead path in do_sync_mmap_readahead() is gated on
> HPAGE_PMD_ORDER <= MAX_PAGECACHE_ORDER and always requests
> HPAGE_PMD_ORDER / HPAGE_PMD_NR. On configurations where HPAGE_PMD_ORDER
> exceeds MAX_PAGECACHE_ORDER, notably arm64 with a 64K base page size,
> VM_HUGEPAGE mappings cannot use this path and fall back to the non-forced
> mmap readahead path even when the mapping supports useful large folios.
>
> Enable forced readahead for mappings that support large folios and request
> the max folio order supported by the mapping, capped at 2M.
> 2MB is chosen as the cap because it matches the PMD size on x86_64
> and on arm64 with 4K base pages, so the size/memory-pressure tradeoff
> for folios of that size is already well understood. On arm64 with 16K
> and 64K base page sizes, 2MB is also the contiguous-PTE (contpte)
> block size, so the resulting folios coalesce into a single TLB entry
> and reduce TLB pressure on the readahead path. This will result
> in 32M folios not being faulted in with 16K base page size for arm64,
> but with contpte, the performance difference should be negligible.
>
> The final allocation order may still be clamped by page_cache_ra_order()
> to the mapping and request geometry, but this gives VM_HUGEPAGE mappings
> on such configurations a large-folio readahead request instead of
> dropping back to base-page readahead.
>
> Signed-off-by: Usama Arif <usama.arif@xxxxxxxxx>

Looks good to me. Feel free to add:

Reviewed-by: Jan Kara <jack@xxxxxxx>

Honza

> ---
> mm/filemap.c | 30 ++++++++++++++++++++++--------
> 1 file changed, 22 insertions(+), 8 deletions(-)
>
> diff --git a/mm/filemap.c b/mm/filemap.c
> index a16b33e0fc71..9cf89efaf3f1 100644
> --- a/mm/filemap.c
> +++ b/mm/filemap.c
> @@ -3312,14 +3312,26 @@ static struct file *do_sync_mmap_readahead(struct vm_fault *vmf)
> struct file *fpin = NULL;
> vm_flags_t vm_flags = vmf->vma->vm_flags;
> bool force_thp_readahead = false;
> + unsigned int thp_order = 0;
> unsigned short mmap_miss;
>
> ractl._max_index = vmf->vma->vm_pgoff + vma_pages(vmf->vma) - 1;
>
> /* Use the readahead code, even if readahead is disabled */
> - if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) &&
> - (vm_flags & VM_HUGEPAGE) && HPAGE_PMD_ORDER <= MAX_PAGECACHE_ORDER)
> - force_thp_readahead = true;
> + if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE) && (vm_flags & VM_HUGEPAGE)) {
> + /*
> + * Cap max THP order at 2MB: this is the common PMD-sized
> + * hugepage size, and it avoids memory pressure from very
> + * large forced readahead when mapping_max_folio_order() is
> + * high (for example, 128MB with 64K base pages on arm64).
> + */
> + if (mapping_large_folio_support(mapping)) {
> + force_thp_readahead = true;
> + thp_order = min_t(unsigned int,
> + mapping_max_folio_order(mapping),
> + get_order(SZ_2M));
> + }
> + }
>
> if (!force_thp_readahead) {
> /*
> @@ -3354,17 +3366,19 @@ static struct file *do_sync_mmap_readahead(struct vm_fault *vmf)
> }
>
> if (force_thp_readahead) {
> + unsigned long folio_nr_pages = 1UL << thp_order;
> +
> fpin = maybe_unlock_mmap_for_io(vmf, fpin);
> - ractl._index &= ~((unsigned long)HPAGE_PMD_NR - 1);
> - ra->size = HPAGE_PMD_NR;
> + ractl._index &= ~(folio_nr_pages - 1);
> + ra->size = folio_nr_pages;
> /*
> - * Fetch two PMD folios, so we get the chance to actually
> + * Fetch two folios so we get the chance to actually
> * readahead, unless we've been told not to.
> */
> if (!(vm_flags & VM_RAND_READ))
> ra->size *= 2;
> - ra->async_size = HPAGE_PMD_NR;
> - ra->order = HPAGE_PMD_ORDER;
> + ra->async_size = folio_nr_pages;
> + ra->order = thp_order;
> page_cache_ra_order(&ractl, ra);
> return fpin;
> }
> --
> 2.52.0
>
--
Jan Kara <jack@xxxxxxxx>
SUSE Labs, CR