Lines Matching refs:dst_pudp
83 static int copy_pmd(struct trans_pgd_info *info, pud_t *dst_pudp, in copy_pmd() argument
91 if (pud_none(READ_ONCE(*dst_pudp))) { in copy_pmd()
95 pud_populate(NULL, dst_pudp, dst_pmdp); in copy_pmd()
97 dst_pmdp = pmd_offset(dst_pudp, start); in copy_pmd()
122 pud_t *dst_pudp; in copy_pud() local
128 dst_pudp = trans_alloc(info); in copy_pud()
129 if (!dst_pudp) in copy_pud()
131 p4d_populate(NULL, dst_p4dp, dst_pudp); in copy_pud()
133 dst_pudp = pud_offset(dst_p4dp, start); in copy_pud()
143 if (copy_pmd(info, dst_pudp, src_pudp, addr, next)) in copy_pud()
146 set_pud(dst_pudp, in copy_pud()
149 } while (dst_pudp++, src_pudp++, addr = next, addr != end); in copy_pud()