Home
last modified time | relevance | path

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

/Linux-v6.1/arch/arm64/mm/
Dtrans_pgd.c33 static void _copy_pte(pte_t *dst_ptep, pte_t *src_ptep, unsigned long addr) in _copy_pte() argument
43 set_pte(dst_ptep, pte_mkwrite(pte)); in _copy_pte()
56 set_pte(dst_ptep, pte_mkpresent(pte_mkwrite(pte))); in _copy_pte()
64 pte_t *dst_ptep; in copy_pte() local
67 dst_ptep = trans_alloc(info); in copy_pte()
68 if (!dst_ptep) in copy_pte()
70 pmd_populate_kernel(NULL, dst_pmdp, dst_ptep); in copy_pte()
71 dst_ptep = pte_offset_kernel(dst_pmdp, start); in copy_pte()
75 _copy_pte(dst_ptep, src_ptep, addr); in copy_pte()
76 } while (dst_ptep++, src_ptep++, addr += PAGE_SIZE, addr != end); in copy_pte()