Searched refs:dstmpte (Results 1 – 4 of 4) sorted by relevance
| /freebsd/sys/powerpc/aim/ |
| H A D | mmu_radix.c | 2523 vm_page_t dst_pdpg, dstmpte, srcmpte; in mmu_radix_copy() local 2604 dstmpte = NULL; in mmu_radix_copy() 2612 if (dstmpte != NULL && in mmu_radix_copy() 2613 dstmpte->pindex == pmap_l3e_pindex(addr)) in mmu_radix_copy() 2614 dstmpte->ref_count++; in mmu_radix_copy() 2615 else if ((dstmpte = pmap_allocpte(dst_pmap, in mmu_radix_copy() 2618 dst_pte = VM_PAGE_TO_DMAP(dstmpte); in mmu_radix_copy() 2635 dstmpte, &free)) { in mmu_radix_copy() 2650 if (dstmpte->ref_count >= srcmpte->ref_count) in mmu_radix_copy()
|
| /freebsd/sys/arm64/arm64/ |
| H A D | pmap.c | 6711 vm_page_t dst_m, dstmpte, srcmpte; in pmap_copy() local 6819 dstmpte = NULL; in pmap_copy() 6829 if (dstmpte != NULL) { in pmap_copy() 6830 KASSERT(dstmpte->pindex == pmap_l2_pindex(addr), in pmap_copy() 6832 dstmpte->ref_count++; in pmap_copy() 6833 } else if ((dstmpte = pmap_alloc_l3(dst_pmap, addr, in pmap_copy() 6836 dst_pte = VM_PAGE_TO_DMAP(dstmpte); in pmap_copy() 6842 ptetemp, dstmpte, &lock)) in pmap_copy() 6863 pmap_abort_ptp(dst_pmap, addr, dstmpte); in pmap_copy() 6867 if (dstmpte->ref_count >= srcmpte->ref_count) in pmap_copy()
|
| /freebsd/sys/i386/i386/ |
| H A D | pmap.c | 4472 vm_page_t dstmpte, srcmpte; in __CONCAT() local 4533 dstmpte = pmap_allocpte(dst_pmap, addr, in __CONCAT() 4535 if (dstmpte == NULL) in __CONCAT() 4550 pmap_abort_ptp(dst_pmap, addr, dstmpte); in __CONCAT() 4553 if (dstmpte->ref_count >= srcmpte->ref_count) in __CONCAT()
|
| /freebsd/sys/amd64/amd64/ |
| H A D | pmap.c | 8045 vm_page_t dst_pdpg, dstmpte, srcmpte; in pmap_copy() local 8177 dstmpte = NULL; in pmap_copy() 8187 if (dstmpte != NULL) { in pmap_copy() 8188 KASSERT(dstmpte->pindex == in pmap_copy() 8191 dstmpte->ref_count++; in pmap_copy() 8192 } else if ((dstmpte = pmap_allocpte(dst_pmap, addr, in pmap_copy() 8195 dst_pte = VM_PAGE_TO_DMAP(dstmpte); in pmap_copy() 8207 pmap_abort_ptp(dst_pmap, addr, dstmpte); in pmap_copy() 8211 if (dstmpte->ref_count >= srcmpte->ref_count) in pmap_copy()
|