Lines Matching refs:dst_pgdp
154 static int copy_p4d(struct trans_pgd_info *info, pgd_t *dst_pgdp,
163 dst_p4dp = p4d_offset(dst_pgdp, start);
176 static int copy_page_tables(struct trans_pgd_info *info, pgd_t *dst_pgdp,
183 dst_pgdp = pgd_offset_pgd(dst_pgdp, start);
188 if (copy_p4d(info, dst_pgdp, src_pgdp, addr, next))
190 } while (dst_pgdp++, src_pgdp++, addr = next, addr != end);
198 * dst_pgdp: new page table that is created, and to which map is copied.
204 int trans_pgd_create_copy(struct trans_pgd_info *info, pgd_t **dst_pgdp,
217 *dst_pgdp = trans_pgd;