Lines Matching refs:pudp
156 pud_t *pudp = (pud_t *) ptep; in huge_ptep_get_and_clear() local
159 pudp_xchg_direct(mm, addr, pudp, __pud(_REGION3_ENTRY_EMPTY)); in huge_ptep_get_and_clear()
170 pud_t *pudp; in huge_pte_alloc() local
176 pudp = pud_alloc(mm, p4dp, addr); in huge_pte_alloc()
177 if (pudp) { in huge_pte_alloc()
179 return (pte_t *) pudp; in huge_pte_alloc()
181 pmdp = pmd_alloc(mm, pudp, addr); in huge_pte_alloc()
192 pud_t *pudp; in huge_pte_offset() local
199 pudp = pud_offset(p4dp, addr); in huge_pte_offset()
200 if (pud_present(*pudp)) { in huge_pte_offset()
201 if (pud_large(*pudp)) in huge_pte_offset()
202 return (pte_t *) pudp; in huge_pte_offset()
203 pmdp = pmd_offset(pudp, addr); in huge_pte_offset()