Searched refs:oldl2 (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/riscv/riscv/ |
H A D | pmap.c | 2375 pt_entry_t newl2, oldl2 __diagused; in pmap_remove_kernel_l2() 2400 oldl2 = pmap_load_store(l2, newl2); in pmap_remove_kernel_l2() 2401 KASSERT(oldl2 == 0, ("%s: found existing mapping at %p: %#lx", in pmap_remove_kernel_l2() 2402 __func__, l2, oldl2)); in pmap_remove_kernel_l2() 2413 pt_entry_t oldl2; in pmap_remove_l2() local 2419 oldl2 = pmap_load_clear(l2); in pmap_remove_l2() 2420 KASSERT((oldl2 & PTE_RWX) != 0, in pmap_remove_l2() 2421 ("pmap_remove_l2: L2e %lx is not a superpage mapping", oldl2)); in pmap_remove_l2() 2431 if ((oldl2 & PTE_SW_WIRED) != 0) in pmap_remove_l2() 2434 if ((oldl2 & PTE_SW_MANAGED) != 0) { in pmap_remove_l2() [all …]
|
/freebsd/sys/arm64/arm64/ |
H A D | pmap.c | 3748 pt_entry_t newl2, oldl2 __diagused; in pmap_remove_kernel_l2() 3774 oldl2 = pmap_load_store(l2, newl2); in pmap_remove_kernel_l2() 3775 KASSERT(oldl2 == 0, ("%s: found existing mapping at %p: %#lx", in pmap_remove_kernel_l2() 3776 __func__, l2, oldl2)); in pmap_remove_kernel_l2() 7496 pd_entry_t *l0, *l1, *l2, oldl2; in pmap_advise() local 7529 oldl2 = pmap_load(l2); in pmap_advise() 7530 if (oldl2 == 0) in pmap_advise() 7532 if ((oldl2 & ATTR_DESCR_MASK) == L2_BLOCK) { in pmap_advise() 7533 if ((oldl2 & ATTR_SW_MANAGED) == 0) in pmap_advise() 7555 if ((oldl2 & ATTR_SW_WIRED) == 0) { in pmap_advise() [all …]
|