Lines Matching refs:pudp
183 pud_t *pudp = (pud_t *) ptep; in huge_ptep_get_and_clear() local
186 pudp_xchg_direct(mm, addr, pudp, __pud(_REGION3_ENTRY_EMPTY)); in huge_ptep_get_and_clear()
197 pud_t *pudp; in huge_pte_alloc() local
203 pudp = pud_alloc(mm, p4dp, addr); in huge_pte_alloc()
204 if (pudp) { in huge_pte_alloc()
206 return (pte_t *) pudp; in huge_pte_alloc()
208 pmdp = pmd_alloc(mm, pudp, addr); in huge_pte_alloc()
219 pud_t *pudp; in huge_pte_offset() local
226 pudp = pud_offset(p4dp, addr); in huge_pte_offset()
227 if (pud_present(*pudp)) { in huge_pte_offset()
228 if (pud_large(*pudp)) in huge_pte_offset()
229 return (pte_t *) pudp; in huge_pte_offset()
230 pmdp = pmd_offset(pudp, addr); in huge_pte_offset()