[PATCH RFC v2 05/20] MIPS: mm: define pud_leaf() only when PUD exists
From: Yeoreum Yun
Date: Wed Jul 22 2026 - 11:56:49 EST
From: "David Hildenbrand (Arm)" <david@xxxxxxxxxx>
In include/asm-generic/pgtable-nopmd.h, we do have a hard-coded
pud_leaf()=false inline function, but we miss the "define pud_leaf
pud_leaf" part.
To prepare for fixing that, define pud_leaf() only if we don't have
__PAGETABLE_PMD_FOLDED.
Signed-off-by: David Hildenbrand (Arm) <david@xxxxxxxxxx>
---
arch/mips/include/asm/pgtable.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/mips/include/asm/pgtable.h b/arch/mips/include/asm/pgtable.h
index fa7b935f947c..151f4d15bd12 100644
--- a/arch/mips/include/asm/pgtable.h
+++ b/arch/mips/include/asm/pgtable.h
@@ -745,8 +745,10 @@ static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm,
#ifdef _PAGE_HUGE
#define pmd_leaf(pmd) ((pmd_val(pmd) & _PAGE_HUGE) != 0)
+#ifndef __PAGETABLE_PMD_FOLDED
#define pud_leaf(pud) ((pud_val(pud) & _PAGE_HUGE) != 0)
#endif
+#endif
#define gup_fast_permitted(start, end) (!cpu_has_dc_aliases)
--
2.43.0