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 | 3678 pt_entry_t newl2, oldl2 __diagused; in pmap_remove_kernel_l2() 3704 oldl2 = pmap_load_store(l2, newl2); in pmap_remove_kernel_l2() 3705 KASSERT(oldl2 == 0, ("%s: found existing mapping at %p: %#lx", in pmap_remove_kernel_l2() 3706 __func__, l2, oldl2)); in pmap_remove_kernel_l2() 7426 pd_entry_t *l0, *l1, *l2, oldl2; in pmap_advise() local 7459 oldl2 = pmap_load(l2); in pmap_advise() 7460 if (oldl2 == 0) in pmap_advise() 7462 if ((oldl2 & ATTR_DESCR_MASK) == L2_BLOCK) { in pmap_advise() 7463 if ((oldl2 & ATTR_SW_MANAGED) == 0) in pmap_advise() 7485 if ((oldl2 & ATTR_SW_WIRED) == 0) { in pmap_advise() [all …]
|