Home
last modified time | relevance | path

Searched refs:dst_pgdp (Results 1 – 1 of 1) sorted by relevance

/Linux-v4.19/arch/arm64/kernel/
Dhibernate.c417 static int copy_pud(pgd_t *dst_pgdp, pgd_t *src_pgdp, unsigned long start, in copy_pud() argument
425 if (pgd_none(READ_ONCE(*dst_pgdp))) { in copy_pud()
429 pgd_populate(&init_mm, dst_pgdp, dst_pudp); in copy_pud()
431 dst_pudp = pud_offset(dst_pgdp, start); in copy_pud()
452 static int copy_page_tables(pgd_t *dst_pgdp, unsigned long start, in copy_page_tables() argument
459 dst_pgdp = pgd_offset_raw(dst_pgdp, start); in copy_page_tables()
464 if (copy_pud(dst_pgdp, src_pgdp, addr, next)) in copy_page_tables()
466 } while (dst_pgdp++, src_pgdp++, addr = next, addr != end); in copy_page_tables()