[tip: x86/mm] x86/mm/pat: Convert populate_pgd() to use page table apis
From: tip-bot2 for Vishal Moola (Oracle)
Date: Wed Mar 04 2026 - 14:59:15 EST
The following commit has been merged into the x86/mm branch of tip:
Commit-ID: b2203a9bf53237368a7c7fc976c9616b5562af8e
Gitweb: https://git.kernel.org/tip/b2203a9bf53237368a7c7fc976c9616b5562af8e
Author: Vishal Moola (Oracle) <vishal.moola@xxxxxxxxx>
AuthorDate: Tue, 03 Mar 2026 11:48:26 -08:00
Committer: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx>
CommitterDate: Wed, 04 Mar 2026 10:08:54 -08:00
x86/mm/pat: Convert populate_pgd() to use page table apis
Use the ptdesc APIs for all page table allocation and free sites to allow
their separate allocation from struct page in the future. Convert the
remaining get_zeroed_page() calls to the generic page table APIs, as they
already use ptdescs.
Pass through init_mm since these are kernel page tables, as
both functions require it to identify kernel page tables. Because the
generic implementations do not use the second argument, pass a
placeholder to avoid reimplementing them or risking breakage on other
architectures.
It is not obvious whether these pages are freed. Regardless, convert the
remaining free paths as needed, noting that the only other possible free
paths have already been converted and that a frozen page table test
kernel has not reported any issues.
Signed-off-by: Vishal Moola (Oracle) <vishal.moola@xxxxxxxxx>
Signed-off-by: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx>
Acked-by: Mike Rapoport (Microsoft) <rppt@xxxxxxxxxx>
Link: https://patch.msgid.link/20260303194828.1406905-4-vishal.moola@xxxxxxxxx
---
arch/x86/mm/pat/set_memory.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/x86/mm/pat/set_memory.c b/arch/x86/mm/pat/set_memory.c
index 72a2600..17c1c28 100644
--- a/arch/x86/mm/pat/set_memory.c
+++ b/arch/x86/mm/pat/set_memory.c
@@ -1747,7 +1747,11 @@ static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
pgd_entry = cpa->pgd + pgd_index(addr);
if (pgd_none(*pgd_entry)) {
- p4d = (p4d_t *)get_zeroed_page(GFP_KERNEL);
+ /*
+ * Pass 0 as a placeholder for the second argument, since the
+ * generic implementation of p4d_alloc_one() does not use it.
+ */
+ p4d = p4d_alloc_one(&init_mm, 0);
if (!p4d)
return -1;
@@ -1759,7 +1763,11 @@ static int populate_pgd(struct cpa_data *cpa, unsigned long addr)
*/
p4d = p4d_offset(pgd_entry, addr);
if (p4d_none(*p4d)) {
- pud = (pud_t *)get_zeroed_page(GFP_KERNEL);
+ /*
+ * Pass 0 as a placeholder for the second argument, since the
+ * generic implementation of pud_alloc_one() does not use it.
+ */
+ pud = pud_alloc_one(&init_mm, 0);
if (!pud)
return -1;