Re: [PATCH v3 04/12] mm: Introduce vma_pgtable_walk_{begin|end}()
From: Jason Gunthorpe <jgg@nvidia.com>
Date: 2024-03-22 12:27:46
Also in:
linux-arm-kernel, linux-mm, linux-riscv, lkml
From: Jason Gunthorpe <jgg@nvidia.com>
Date: 2024-03-22 12:27:46
Also in:
linux-arm-kernel, linux-mm, linux-riscv, lkml
On Thu, Mar 21, 2024 at 06:07:54PM -0400, peterx@redhat.com wrote:
From: Peter Xu <peterx@redhat.com> Introduce per-vma begin()/end() helpers for pgtable walks. This is a preparation work to merge hugetlb pgtable walkers with generic mm. The helpers need to be called before and after a pgtable walk, will start to be needed if the pgtable walker code supports hugetlb pages. It's a hook point for any type of VMA, but for now only hugetlb uses it to stablize the pgtable pages from getting away (due to possible pmd unsharing). Reviewed-by: Christoph Hellwig <hch@infradead.org> Reviewed-by: Muchun Song <muchun.song@linux.dev> Signed-off-by: Peter Xu <peterx@redhat.com> --- include/linux/mm.h | 3 +++ mm/memory.c | 12 ++++++++++++ 2 files changed, 15 insertions(+)
is_vm_hugetlb_page(vma) seems weirdly named. Regardless Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> Jason