taglinefilesource code
dst_pgd255mm/memory.cstatic inline int copy_pmd_range(pgd_t *dst_pgd, pgd_t *src_pgd, unsigned long address, unsigned long size)
dst_pgd269mm/memory.cif (pgd_none(*dst_pgd)) {
dst_pgd270mm/memory.cif (!pmd_alloc(dst_pgd, 0))
dst_pgd273mm/memory.cdst_pmd = pmd_offset(dst_pgd, address);
dst_pgd295mm/memory.cpgd_t * src_pgd, * dst_pgd;
dst_pgd301mm/memory.cdst_pgd = pgd_offset(dst, address);
dst_pgd303mm/memory.cerror = copy_pmd_range(dst_pgd++, src_pgd++, address, end - address);