From: "David Hildenbrand (Arm)" <[email protected]> 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) <[email protected]> Signed-off-by: Yeoreum Yun <[email protected]> --- 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 fa7b935f947ca..151f4d15bd12b 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) -- LEVI:{C3F47F37-75D8-414A-A8BA-3980EC8A46D7}
