1 #ifndef _ASM_POWERPC_PTE_WALK_H
2 #define _ASM_POWERPC_PTE_WALK_H
4 #include <linux/sched.h>
6 /* Don't use this directly */
7 extern pte_t
*__find_linux_pte(pgd_t
*pgdir
, unsigned long ea
,
8 bool *is_thp
, unsigned *hshift
);
10 static inline pte_t
*find_linux_pte(pgd_t
*pgdir
, unsigned long ea
,
11 bool *is_thp
, unsigned *hshift
)
15 VM_WARN(!arch_irqs_disabled(), "%s called with irq enabled\n", __func__
);
16 pte
= __find_linux_pte(pgdir
, ea
, is_thp
, hshift
);
18 #if defined(CONFIG_DEBUG_VM) && \
19 !(defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE))
21 * We should not find huge page if these configs are not enabled.
29 static inline pte_t
*find_init_mm_pte(unsigned long ea
, unsigned *hshift
)
31 pgd_t
*pgdir
= init_mm
.pgd
;
32 return __find_linux_pte(pgdir
, ea
, NULL
, hshift
);
35 * This is what we should always use. Any other lockless page table lookup needs
36 * careful audit against THP split.
38 static inline pte_t
*find_current_mm_pte(pgd_t
*pgdir
, unsigned long ea
,
39 bool *is_thp
, unsigned *hshift
)
43 VM_WARN(!arch_irqs_disabled(), "%s called with irq enabled\n", __func__
);
44 VM_WARN(pgdir
!= current
->mm
->pgd
,
45 "%s lock less page table lookup called on wrong mm\n", __func__
);
46 pte
= __find_linux_pte(pgdir
, ea
, is_thp
, hshift
);
48 #if defined(CONFIG_DEBUG_VM) && \
49 !(defined(CONFIG_HUGETLB_PAGE) || defined(CONFIG_TRANSPARENT_HUGEPAGE))
51 * We should not find huge page if these configs are not enabled.
59 #endif /* _ASM_POWERPC_PTE_WALK_H */