Searched refs:dstmpte (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14-stable/sys/powerpc/aim/ |
| HD | mmu_radix.c | 2523 vm_page_t dst_pdpg, dstmpte, srcmpte; in mmu_radix_copy() local 2605 dstmpte = NULL; in mmu_radix_copy() 2613 if (dstmpte != NULL && in mmu_radix_copy() 2614 dstmpte->pindex == pmap_l3e_pindex(addr)) in mmu_radix_copy() 2615 dstmpte->ref_count++; in mmu_radix_copy() 2616 else if ((dstmpte = pmap_allocpte(dst_pmap, in mmu_radix_copy() 2620 PHYS_TO_DMAP(VM_PAGE_TO_PHYS(dstmpte)); in mmu_radix_copy() 2637 dstmpte, &free)) { in mmu_radix_copy() 2652 if (dstmpte->ref_count >= srcmpte->ref_count) in mmu_radix_copy()
|
| /freebsd-14-stable/sys/arm64/arm64/ |
| HD | pmap.c | 5294 vm_page_t dst_m, dstmpte, srcmpte; in pmap_copy() local 5403 dstmpte = NULL; in pmap_copy() 5413 if (dstmpte != NULL) { in pmap_copy() 5414 KASSERT(dstmpte->pindex == pmap_l2_pindex(addr), in pmap_copy() 5416 dstmpte->ref_count++; in pmap_copy() 5417 } else if ((dstmpte = pmap_alloc_l3(dst_pmap, addr, in pmap_copy() 5421 PHYS_TO_DMAP(VM_PAGE_TO_PHYS(dstmpte)); in pmap_copy() 5437 pmap_abort_ptp(dst_pmap, addr, dstmpte); in pmap_copy() 5441 if (dstmpte->ref_count >= srcmpte->ref_count) in pmap_copy()
|
| /freebsd-14-stable/sys/i386/i386/ |
| HD | pmap.c | 4366 vm_page_t dstmpte, srcmpte; in __CONCAT() local 4427 dstmpte = pmap_allocpte(dst_pmap, addr, in __CONCAT() 4429 if (dstmpte == NULL) in __CONCAT() 4444 pmap_abort_ptp(dst_pmap, addr, dstmpte); in __CONCAT() 4447 if (dstmpte->ref_count >= srcmpte->ref_count) in __CONCAT()
|
| /freebsd-14-stable/sys/amd64/amd64/ |
| HD | pmap.c | 8090 vm_page_t dst_pdpg, dstmpte, srcmpte; in pmap_copy() local 8222 dstmpte = NULL; in pmap_copy() 8232 if (dstmpte != NULL) { in pmap_copy() 8233 KASSERT(dstmpte->pindex == in pmap_copy() 8236 dstmpte->ref_count++; in pmap_copy() 8237 } else if ((dstmpte = pmap_allocpte(dst_pmap, addr, in pmap_copy() 8241 PHYS_TO_DMAP(VM_PAGE_TO_PHYS(dstmpte)); in pmap_copy() 8253 pmap_abort_ptp(dst_pmap, addr, dstmpte); in pmap_copy() 8257 if (dstmpte->ref_count >= srcmpte->ref_count) in pmap_copy()
|