From: Dave Hansen <dave.hansen@linux.intel.com>
This introduces a conditional asynchronous mechanism, enabled by
CONFIG_ASYNC_PGTABLE_FREE. When enabled, this mechanism defers the freeing
of pages that are used as page tables for kernel address mappings. These
pages are now queued to a work struct instead of being freed immediately.
This deferred freeing provides a safe context for a future patch to add
an IOMMU-specific callback, which might be expensive on large-scale
systems. This ensures the necessary IOMMU cache invalidation is performed
before the page is finally returned to the page allocator outside of any
critical, non-sleepable path.
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
---
include/linux/mm.h | 16 +++++++++++++---
mm/pgtable-generic.c | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+), 3 deletions(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 668d519edc0f..2d7b4af40442 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2891,6 +2891,14 @@ static inline void __pagetable_free(struct ptdesc *pt)
__free_pages(page, compound_order(page));
}
+#ifdef CONFIG_ASYNC_PGTABLE_FREE
+void pagetable_free_kernel(struct ptdesc *pt);
+#else
+static inline void pagetable_free_kernel(struct ptdesc *pt)
+{
+ __pagetable_free(pt);
+}
+#endif
/**
* pagetable_free - Free pagetables
* @pt: The page table descriptor
@@ -2900,10 +2908,12 @@ static inline void __pagetable_free(struct ptdesc *pt)
*/
static inline void pagetable_free(struct ptdesc *pt)
{
- if (ptdesc_test_kernel(pt))
+ if (ptdesc_test_kernel(pt)) {
ptdesc_clear_kernel(pt);
-
- __pagetable_free(pt);
+ pagetable_free_kernel(pt);
+ } else {
+ __pagetable_free(pt);
+ }
}
#if defined(CONFIG_SPLIT_PTE_PTLOCKS)
diff --git a/mm/pgtable-generic.c b/mm/pgtable-generic.c
index 567e2d084071..0279399d4910 100644
--- a/mm/pgtable-generic.c
+++ b/mm/pgtable-generic.c
@@ -406,3 +406,40 @@ pte_t *__pte_offset_map_lock(struct mm_struct *mm, pmd_t *pmd,
pte_unmap_unlock(pte, ptl);
goto again;
}
+
+#ifdef CONFIG_ASYNC_PGTABLE_FREE
+static void kernel_pgtable_work_func(struct work_struct *work);
+
+static struct {
+ struct list_head list;
+ /* protect above ptdesc lists */
+ spinlock_t lock;
+ struct work_struct work;
+} kernel_pgtable_work = {
+ .list = LIST_HEAD_INIT(kernel_pgtable_work.list),
+ .lock = __SPIN_LOCK_UNLOCKED(kernel_pgtable_work.lock),
+ .work = __WORK_INITIALIZER(kernel_pgtable_work.work, kernel_pgtable_work_func),
+};
+
+static void kernel_pgtable_work_func(struct work_struct *work)
+{
+ struct ptdesc *pt, *next;
+ LIST_HEAD(page_list);
+
+ spin_lock(&kernel_pgtable_work.lock);
+ list_splice_tail_init(&kernel_pgtable_work.list, &page_list);
+ spin_unlock(&kernel_pgtable_work.lock);
+
+ list_for_each_entry_safe(pt, next, &page_list, pt_list)
+ __pagetable_free(pt);
+}
+
+void pagetable_free_kernel(struct ptdesc *pt)
+{
+ spin_lock(&kernel_pgtable_work.lock);
+ list_add(&pt->pt_list, &kernel_pgtable_work.list);
+ spin_unlock(&kernel_pgtable_work.lock);
+
+ schedule_work(&kernel_pgtable_work.work);
+}
+#endif
--
2.43.0
On 19.09.25 07:40, Lu Baolu wrote: > From: Dave Hansen <dave.hansen@linux.intel.com> > > This introduces a conditional asynchronous mechanism, enabled by > CONFIG_ASYNC_PGTABLE_FREE. When enabled, this mechanism defers the freeing > of pages that are used as page tables for kernel address mappings. These > pages are now queued to a work struct instead of being freed immediately. > Okay, I now looked at patch #8 and I think the whole reason of this patch is "batch-free page tables to minimize the impact of an expensive cross-page table operation" which is a single TLB flush. > This deferred freeing provides a safe context for a future patch to add So I would claridy here instead something like "This deferred freeing allows for batch-freeing of page tables, providing a safe context for performing a single expensive operation (TLB flush) for a batch of kernel page tables instead of performing that expensive operation for each page table." -- Cheers David / dhildenb
On 10/10/25 23:47, David Hildenbrand wrote: > On 19.09.25 07:40, Lu Baolu wrote: >> From: Dave Hansen <dave.hansen@linux.intel.com> >> >> This introduces a conditional asynchronous mechanism, enabled by >> CONFIG_ASYNC_PGTABLE_FREE. When enabled, this mechanism defers the >> freeing >> of pages that are used as page tables for kernel address mappings. These >> pages are now queued to a work struct instead of being freed immediately. >> > > Okay, I now looked at patch #8 and I think the whole reason of this > patch is "batch-free page tables to minimize the impact of an expensive > cross-page table operation" which is a single TLB flush. > >> This deferred freeing provides a safe context for a future patch to add > > So I would claridy here instead something like > > "This deferred freeing allows for batch-freeing of page tables, > providing a safe context for performing a single expensive operation > (TLB flush) for a batch of kernel page tables instead of performing that > expensive operation for each page table." The commit message has been updated, and CONFIG_ASYNC_PGTABLE_FREE has been replaced with CONFIG_ASYNC_KERNEL_PGTABLE_FREE. Thank you for the comments. Thanks, baolu
On 19.09.25 07:40, Lu Baolu wrote: > From: Dave Hansen <dave.hansen@linux.intel.com> > > This introduces a conditional asynchronous mechanism, enabled by > CONFIG_ASYNC_PGTABLE_FREE. When enabled, this mechanism defers the freeing > of pages that are used as page tables for kernel address mappings. These > pages are now queued to a work struct instead of being freed immediately. > > This deferred freeing provides a safe context for a future patch to add > an IOMMU-specific callback, which might be expensive on large-scale > systems. This ensures the necessary IOMMU cache invalidation is performed > before the page is finally returned to the page allocator outside of any > critical, non-sleepable path. > > Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> > Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com> > Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> > Reviewed-by: Kevin Tian <kevin.tian@intel.com> > --- Can we please squash #7 in here and make sure to call the config knob something that indicates that it is for *kernel* page tables only? ASYNC_KERNEL_PGTABLE_FREE or sth like that. -- Cheers David / dhildenb
On 10/9/25 12:28, David Hildenbrand wrote: ... > Can we please squash #7 in here and make sure to call the config knob > something that indicates that it is for *kernel* page tables only? > > ASYNC_KERNEL_PGTABLE_FREE I'm fine with both of those. That name ^ looks fine to me too.
© 2016 - 2026 Red Hat, Inc.