Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/arm64/arm64/
HDpmap.c4163 pt_entry_t all_l3e_AF, *firstl3, *l3, newl2, oldl3, pa; in pmap_promote_l2() local
4232 oldl3 = pmap_load(l3); in pmap_promote_l2()
4233 if ((PTE_TO_PHYS(oldl3) | (oldl3 & ATTR_DESCR_MASK)) != pa) { in pmap_promote_l2()
4240 if ((oldl3 & (ATTR_S1_AP_RW_BIT | ATTR_SW_DBM)) == in pmap_promote_l2()
4247 if (!atomic_fcmpset_64(l3, &oldl3, oldl3 & in pmap_promote_l2()
4250 oldl3 &= ~ATTR_SW_DBM; in pmap_promote_l2()
4252 if ((oldl3 & (ATTR_MASK & ~ATTR_AF)) != (newl2 & (ATTR_MASK & in pmap_promote_l2()
4259 all_l3e_AF &= oldl3; in pmap_promote_l2()
6278 pt_entry_t *l3, oldl3; in pmap_advise() local
6359 oldl3 = pmap_load(l3); in pmap_advise()
[all …]
/freebsd-14-stable/sys/riscv/riscv/
HDpmap.c4217 pt_entry_t *l3, oldl3, newl3; in pmap_remove_write() local
4274 oldl3 = pmap_load(l3); in pmap_remove_write()
4276 if ((oldl3 & PTE_W) != 0) { in pmap_remove_write()
4277 newl3 = oldl3 & ~(PTE_D | PTE_W); in pmap_remove_write()
4278 if (!atomic_fcmpset_long(l3, &oldl3, newl3)) in pmap_remove_write()
4280 if ((oldl3 & PTE_D) != 0) in pmap_remove_write()