public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
From: Jason Gunthorpe <jgg@nvidia•com>
To: David Hildenbrand <david@redhat•com>
Cc: linux-kernel@vger•kernel.org,
	Andrew Morton <akpm@linux-foundation•org>,
	Linus Torvalds <torvalds@linux-foundation•org>,
	Lorenzo Stoakes <lorenzo.stoakes@oracle•com>,
	"Liam R. Howlett" <Liam.Howlett@oracle•com>,
	Vlastimil Babka <vbabka@suse•cz>, Mike Rapoport <rppt@kernel•org>,
	Suren Baghdasaryan <surenb@google•com>,
	Michal Hocko <mhocko@suse•com>, Jens Axboe <axboe@kernel•dk>,
	Marek Szyprowski <m.szyprowski@samsung•com>,
	Robin Murphy <robin.murphy@arm•com>,
	John Hubbard <jhubbard@nvidia•com>, Peter Xu <peterx@redhat•com>,
	Alexander Potapenko <glider@google•com>,
	Marco Elver <elver@google•com>,
	Dmitry Vyukov <dvyukov@google•com>,
	Brendan Jackman <jackmanb@google•com>,
	Johannes Weiner <hannes@cmpxchg•org>, Zi Yan <ziy@nvidia•com>,
	Dennis Zhou <dennis@kernel•org>, Tejun Heo <tj@kernel•org>,
	Christoph Lameter <cl@gentwo•org>,
	Muchun Song <muchun.song@linux•dev>,
	Oscar Salvador <osalvador@suse•de>,
	x86@kernel•org, linux-arm-kernel@lists•infradead.org,
	linux-mips@vger•kernel.org, linux-s390@vger•kernel.org,
	linux-crypto@vger•kernel.org, linux-ide@vger•kernel.org,
	intel-gfx@lists•freedesktop.org, dri-devel@lists•freedesktop.org,
	linux-mmc@vger•kernel.org, linux-arm-kernel@axis•com,
	linux-scsi@vger•kernel.org, kvm@vger•kernel.org,
	virtualization@lists•linux.dev, linux-mm@kvack•org,
	io-uring@vger•kernel.org, iommu@lists•linux.dev,
	kasan-dev@googlegroups•com, wireguard@lists•zx2c4.com,
	netdev@vger•kernel.org, linux-kselftest@vger•kernel.org,
	linux-riscv@lists•infradead.org,
	Albert Ou <aou@eecs•berkeley.edu>,
	Alexander Gordeev <agordeev@linux•ibm.com>,
	Alexandre Ghiti <alex@ghiti•fr>, Alex Dubov <oakad@yahoo•com>,
	Alex Williamson <alex.williamson@redhat•com>,
	Andreas Larsson <andreas@gaisler•com>,
	Borislav Petkov <bp@alien8•de>,
	Brett Creeley <brett.creeley@amd•com>,
	Catalin Marinas <catalin.marinas@arm•com>,
	Christian Borntraeger <borntraeger@linux•ibm.com>,
	Christophe Leroy <christophe.leroy@csgroup•eu>,
	Damien Le Moal <dlemoal@kernel•org>,
	Dave Hansen <dave.hansen@linux•intel.com>,
	David Airlie <airlied@gmail•com>,
	"David S. Miller" <davem@davemloft•net>,
	Doug Gilbert <dgilbert@interlog•com>,
	Heiko Carstens <hca@linux•ibm.com>,
	Herbert Xu <herbert@gondor•apana.org.au>,
	Huacai Chen <chenhuacai@kernel•org>,
	Ingo Molnar <mingo@redhat•com>,
	"James E.J. Bottomley" <James.Bottomley@hansenpartnership•com>,
	Jani Nikula <jani.nikula@linux•intel.com>,
	"Jason A. Donenfeld" <Jason@zx2c4•com>,
	Jesper Nilsson <jesper.nilsson@axis•com>,
	Joonas Lahtinen <joonas.lahtinen@linux•intel.com>,
	Kevin Tian <kevin.tian@intel•com>,
	Lars Persson <lars.persson@axis•com>,
	Madhavan Srinivasan <maddy@linux•ibm.com>,
	"Martin K. Petersen" <martin.petersen@oracle•com>,
	Maxim Levitsky <maximlevitsky@gmail•com>,
	Michael Ellerman <mpe@ellerman•id.au>,
	Nicholas Piggin <npiggin@gmail•com>,
	Niklas Cassel <cassel@kernel•org>,
	Palmer Dabbelt <palmer@dabbelt•com>,
	Paul Walmsley <paul.walmsley@sifive•com>,
	Rodrigo Vivi <rodrigo.vivi@intel•com>,
	Shameer Kolothum <shameerali.kolothum.thodi@huawei•com>,
	Shuah Khan <shuah@kernel•org>, Simona Vetter <simona@ffwll•ch>,
	Sven Schnelle <svens@linux•ibm.com>,
	Thomas Bogendoerfer <tsbogend@alpha•franken.de>,
	Thomas Gleixner <tglx@linutronix•de>,
	Tvrtko Ursulin <tursulin@ursulin•net>,
	Ulf Hansson <ulf.hansson@linaro•org>,
	Vasily Gorbik <gor@linux•ibm.com>,
	WANG Xuerui <kernel@xen0n•name>, Will Deacon <will@kernel•org>,
	Yishai Hadas <yishaih@nvidia•com>
Subject: Re: [PATCH RFC 00/35] mm: remove nth_page()
Date: Fri, 22 Aug 2025 11:30:43 -0300	[thread overview]
Message-ID: <20250822143043.GG1311579@nvidia.com> (raw)
In-Reply-To: <20250821200701.1329277-1-david@redhat.com>

On Thu, Aug 21, 2025 at 10:06:26PM +0200, David Hildenbrand wrote:
> As discussed recently with Linus, nth_page() is just nasty and we would
> like to remove it.
> 
> To recap, the reason we currently need nth_page() within a folio is because
> on some kernel configs (SPARSEMEM without SPARSEMEM_VMEMMAP), the
> memmap is allocated per memory section.
> 
> While buddy allocations cannot cross memory section boundaries, hugetlb
> and dax folios can.
> 
> So crossing a memory section means that "page++" could do the wrong thing.
> Instead, nth_page() on these problematic configs always goes from
> page->pfn, to the go from (++pfn)->page, which is rather nasty.
> 
> Likely, many people have no idea when nth_page() is required and when
> it might be dropped.
> 
> We refer to such problematic PFN ranges and "non-contiguous pages".
> If we only deal with "contiguous pages", there is not need for nth_page().
>
> Besides that "obvious" folio case, we might end up using nth_page()
> within CMA allocations (again, could span memory sections), and in
> one corner case (kfence) when processing memblock allocations (again,
> could span memory sections).

I browsed the patches and it looks great to me, thanks for doing this

Jason

      parent reply	other threads:[~2025-08-22 14:30 UTC|newest]

Thread overview: 96+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-21 20:06 [PATCH RFC 00/35] mm: remove nth_page() David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 01/35] mm: stop making SPARSEMEM_VMEMMAP user-selectable David Hildenbrand
2025-08-21 20:20   ` Zi Yan
2025-08-22 15:09   ` Mike Rapoport
2025-08-22 17:02   ` SeongJae Park
2025-08-21 20:06 ` [PATCH RFC 02/35] arm64: Kconfig: drop superfluous "select SPARSEMEM_VMEMMAP" David Hildenbrand
2025-08-22 15:10   ` Mike Rapoport
2025-08-21 20:06 ` [PATCH RFC 03/35] s390/Kconfig: " David Hildenbrand
2025-08-22 15:11   ` Mike Rapoport
2025-08-21 20:06 ` [PATCH RFC 04/35] x86/Kconfig: " David Hildenbrand
2025-08-22 15:11   ` Mike Rapoport
2025-08-21 20:06 ` [PATCH RFC 05/35] wireguard: selftests: remove CONFIG_SPARSEMEM_VMEMMAP=y from qemu kernel config David Hildenbrand
2025-08-22 15:13   ` Mike Rapoport
2025-09-08 16:47   ` Jason A. Donenfeld
2025-08-21 20:06 ` [PATCH RFC 06/35] mm/page_alloc: reject unreasonable folio/compound page sizes in alloc_contig_range_noprof() David Hildenbrand
2025-08-21 20:23   ` Zi Yan
2025-08-22 17:07   ` SeongJae Park
2025-10-09  4:21   ` Balbir Singh
2025-10-09  6:12     ` David Hildenbrand
2025-10-09 10:25       ` Balbir Singh
2025-10-09 10:30         ` David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 07/35] mm/memremap: reject unreasonable folio/compound page sizes in memremap_pages() David Hildenbrand
2025-08-22 17:09   ` SeongJae Park
2025-08-21 20:06 ` [PATCH RFC 08/35] mm/hugetlb: check for unreasonable folio sizes when registering hstate David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 09/35] mm/mm_init: make memmap_init_compound() look more like prep_compound_page() David Hildenbrand
2025-08-22 15:27   ` Mike Rapoport
2025-08-22 18:09     ` David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 10/35] mm/hugetlb: cleanup hugetlb_folio_init_tail_vmemmap() David Hildenbrand
2025-08-22  4:09   ` Mika Penttilä
2025-08-22  6:24     ` David Hildenbrand
2025-08-23  8:59       ` Mike Rapoport
2025-08-25 12:48         ` David Hildenbrand
2025-08-25 14:32           ` Mike Rapoport
2025-08-25 14:38             ` David Hildenbrand
2025-08-25 14:59               ` Mike Rapoport
2025-08-25 15:42                 ` David Hildenbrand
2025-08-25 16:17                   ` Mike Rapoport
2025-08-25 16:23                     ` David Hildenbrand
2025-08-25 16:58                       ` update kernel-doc for MEMBLOCK_RSRV_NOINIT (was: Re: [PATCH RFC 10/35] mm/hugetlb: cleanup hugetlb_folio_init_tail_vmemmap()) Mike Rapoport
2025-08-25 18:32                         ` update kernel-doc for MEMBLOCK_RSRV_NOINIT David Hildenbrand
2025-10-09  1:07                         ` update kernel-doc for MEMBLOCK_RSRV_NOINIT (was: Re: [PATCH RFC 10/35] mm/hugetlb: cleanup hugetlb_folio_init_tail_vmemmap()) patchwork-bot+linux-riscv
2025-08-21 20:06 ` [PATCH RFC 11/35] mm: sanity-check maximum folio size in folio_set_order() David Hildenbrand
2025-08-21 20:36   ` Zi Yan
2025-08-21 20:06 ` [PATCH RFC 12/35] mm: limit folio/compound page sizes in problematic kernel configs David Hildenbrand
2025-08-21 20:46   ` Zi Yan
2025-08-21 20:49     ` David Hildenbrand
2025-08-21 20:50       ` Zi Yan
2025-08-24 13:24   ` Mike Rapoport
2025-08-21 20:06 ` [PATCH RFC 13/35] mm: simplify folio_page() and folio_page_idx() David Hildenbrand
2025-08-21 20:55   ` Zi Yan
2025-08-21 21:00     ` David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 14/35] mm/mm/percpu-km: drop nth_page() usage within single allocation David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 15/35] fs: hugetlbfs: remove nth_page() usage within folio in adjust_range_hwpoison() David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 16/35] mm/pagewalk: drop nth_page() usage within folio in folio_walk_start() David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 17/35] mm/gup: drop nth_page() usage within folio when recording subpages David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 18/35] io_uring/zcrx: remove "struct io_copy_cache" and one nth_page() usage David Hildenbrand
2025-08-22 11:32   ` Pavel Begunkov
2025-08-22 13:59     ` David Hildenbrand
2025-08-27  9:43       ` Pavel Begunkov
2025-08-21 20:06 ` [PATCH RFC 19/35] io_uring/zcrx: remove nth_page() usage within folio David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 20/35] mips: mm: convert __flush_dcache_pages() to __flush_dcache_folio_pages() David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 21/35] mm/cma: refuse handing out non-contiguous page ranges David Hildenbrand
2025-08-26 10:45   ` Alexandru Elisei
2025-08-26 11:04     ` David Hildenbrand
2025-08-26 13:03       ` Alexandru Elisei
2025-08-26 13:08         ` David Hildenbrand
2025-08-26 13:11           ` Alexandru Elisei
2025-08-21 20:06 ` [PATCH RFC 22/35] dma-remap: drop nth_page() in dma_common_contiguous_remap() David Hildenbrand
2025-08-22  8:15   ` Marek Szyprowski
2025-08-21 20:06 ` [PATCH RFC 23/35] scatterlist: disallow non-contigous page ranges in a single SG entry David Hildenbrand
2025-08-22  8:15   ` Marek Szyprowski
2025-08-21 20:06 ` [PATCH RFC 24/35] ata: libata-eh: drop nth_page() usage within " David Hildenbrand
2025-08-22  1:59   ` Damien Le Moal
2025-08-22  6:18     ` David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 25/35] drm/i915/gem: " David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 26/35] mspro_block: " David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 27/35] memstick: " David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 28/35] mmc: " David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 29/35] scsi: core: " David Hildenbrand
2025-08-22 18:01   ` Bart Van Assche
2025-08-22 18:10     ` David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 30/35] vfio/pci: " David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 31/35] crypto: remove " David Hildenbrand
2025-08-21 20:24   ` Linus Torvalds
2025-08-21 20:29     ` David Hildenbrand
2025-08-21 20:36       ` Linus Torvalds
2025-08-21 20:37       ` David Hildenbrand
2025-08-21 20:40       ` Linus Torvalds
2025-08-21 20:06 ` [PATCH RFC 32/35] mm/gup: drop nth_page() usage in unpin_user_page_range_dirty_lock() David Hildenbrand
2025-08-21 20:06 ` [PATCH RFC 33/35] kfence: drop nth_page() usage David Hildenbrand
2025-08-21 20:32   ` David Hildenbrand
2025-08-21 21:45     ` David Hildenbrand
2025-08-21 20:07 ` [PATCH RFC 34/35] block: update comment of "struct bio_vec" regarding nth_page() David Hildenbrand
2025-08-21 20:07 ` [PATCH RFC 35/35] mm: remove nth_page() David Hildenbrand
2025-08-21 21:37 ` [syzbot ci] " syzbot ci
2025-08-22 14:30 ` Jason Gunthorpe [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=20250822143043.GG1311579@nvidia.com \
    --to=jgg@nvidia$(echo .)com \
    --cc=James.Bottomley@hansenpartnership$(echo .)com \
    --cc=Jason@zx2c4$(echo .)com \
    --cc=Liam.Howlett@oracle$(echo .)com \
    --cc=agordeev@linux$(echo .)ibm.com \
    --cc=airlied@gmail$(echo .)com \
    --cc=akpm@linux-foundation$(echo .)org \
    --cc=alex.williamson@redhat$(echo .)com \
    --cc=alex@ghiti$(echo .)fr \
    --cc=andreas@gaisler$(echo .)com \
    --cc=aou@eecs$(echo .)berkeley.edu \
    --cc=axboe@kernel$(echo .)dk \
    --cc=borntraeger@linux$(echo .)ibm.com \
    --cc=bp@alien8$(echo .)de \
    --cc=brett.creeley@amd$(echo .)com \
    --cc=cassel@kernel$(echo .)org \
    --cc=catalin.marinas@arm$(echo .)com \
    --cc=chenhuacai@kernel$(echo .)org \
    --cc=christophe.leroy@csgroup$(echo .)eu \
    --cc=cl@gentwo$(echo .)org \
    --cc=dave.hansen@linux$(echo .)intel.com \
    --cc=davem@davemloft$(echo .)net \
    --cc=david@redhat$(echo .)com \
    --cc=dennis@kernel$(echo .)org \
    --cc=dgilbert@interlog$(echo .)com \
    --cc=dlemoal@kernel$(echo .)org \
    --cc=dri-devel@lists$(echo .)freedesktop.org \
    --cc=dvyukov@google$(echo .)com \
    --cc=elver@google$(echo .)com \
    --cc=glider@google$(echo .)com \
    --cc=gor@linux$(echo .)ibm.com \
    --cc=hannes@cmpxchg$(echo .)org \
    --cc=hca@linux$(echo .)ibm.com \
    --cc=herbert@gondor$(echo .)apana.org.au \
    --cc=intel-gfx@lists$(echo .)freedesktop.org \
    --cc=io-uring@vger$(echo .)kernel.org \
    --cc=iommu@lists$(echo .)linux.dev \
    --cc=jackmanb@google$(echo .)com \
    --cc=jani.nikula@linux$(echo .)intel.com \
    --cc=jesper.nilsson@axis$(echo .)com \
    --cc=jhubbard@nvidia$(echo .)com \
    --cc=joonas.lahtinen@linux$(echo .)intel.com \
    --cc=kasan-dev@googlegroups$(echo .)com \
    --cc=kernel@xen0n$(echo .)name \
    --cc=kevin.tian@intel$(echo .)com \
    --cc=kvm@vger$(echo .)kernel.org \
    --cc=lars.persson@axis$(echo .)com \
    --cc=linux-arm-kernel@axis$(echo .)com \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux-crypto@vger$(echo .)kernel.org \
    --cc=linux-ide@vger$(echo .)kernel.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linux-kselftest@vger$(echo .)kernel.org \
    --cc=linux-mips@vger$(echo .)kernel.org \
    --cc=linux-mm@kvack$(echo .)org \
    --cc=linux-mmc@vger$(echo .)kernel.org \
    --cc=linux-riscv@lists$(echo .)infradead.org \
    --cc=linux-s390@vger$(echo .)kernel.org \
    --cc=linux-scsi@vger$(echo .)kernel.org \
    --cc=lorenzo.stoakes@oracle$(echo .)com \
    --cc=m.szyprowski@samsung$(echo .)com \
    --cc=maddy@linux$(echo .)ibm.com \
    --cc=martin.petersen@oracle$(echo .)com \
    --cc=maximlevitsky@gmail$(echo .)com \
    --cc=mhocko@suse$(echo .)com \
    --cc=mingo@redhat$(echo .)com \
    --cc=mpe@ellerman$(echo .)id.au \
    --cc=muchun.song@linux$(echo .)dev \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=npiggin@gmail$(echo .)com \
    --cc=oakad@yahoo$(echo .)com \
    --cc=osalvador@suse$(echo .)de \
    --cc=palmer@dabbelt$(echo .)com \
    --cc=paul.walmsley@sifive$(echo .)com \
    --cc=peterx@redhat$(echo .)com \
    --cc=robin.murphy@arm$(echo .)com \
    --cc=rodrigo.vivi@intel$(echo .)com \
    --cc=rppt@kernel$(echo .)org \
    --cc=shameerali.kolothum.thodi@huawei$(echo .)com \
    --cc=shuah@kernel$(echo .)org \
    --cc=simona@ffwll$(echo .)ch \
    --cc=surenb@google$(echo .)com \
    --cc=svens@linux$(echo .)ibm.com \
    --cc=tglx@linutronix$(echo .)de \
    --cc=tj@kernel$(echo .)org \
    --cc=torvalds@linux-foundation$(echo .)org \
    --cc=tsbogend@alpha$(echo .)franken.de \
    --cc=tursulin@ursulin$(echo .)net \
    --cc=ulf.hansson@linaro$(echo .)org \
    --cc=vbabka@suse$(echo .)cz \
    --cc=virtualization@lists$(echo .)linux.dev \
    --cc=will@kernel$(echo .)org \
    --cc=wireguard@lists$(echo .)zx2c4.com \
    --cc=x86@kernel$(echo .)org \
    --cc=yishaih@nvidia$(echo .)com \
    --cc=ziy@nvidia$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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