Lines Matching refs:dst_pmdp
64 static int copy_pte(struct trans_pgd_info *info, pmd_t *dst_pmdp, in copy_pte() argument
74 pmd_populate_kernel(NULL, dst_pmdp, dst_ptep); in copy_pte()
75 dst_ptep = pte_offset_kernel(dst_pmdp, start); in copy_pte()
89 pmd_t *dst_pmdp; in copy_pmd() local
94 dst_pmdp = trans_alloc(info); in copy_pmd()
95 if (!dst_pmdp) in copy_pmd()
97 pud_populate(NULL, dst_pudp, dst_pmdp); in copy_pmd()
99 dst_pmdp = pmd_offset(dst_pudp, start); in copy_pmd()
109 if (copy_pte(info, dst_pmdp, src_pmdp, addr, next)) in copy_pmd()
112 set_pmd(dst_pmdp, in copy_pmd()
115 } while (dst_pmdp++, src_pmdp++, addr = next, addr != end); in copy_pmd()