Home
last modified time | relevance | path

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

/freebsd/sys/arm64/arm64/
H A Dpmap.c3222 if ((tpte & ATTR_SW_WIRED) != 0) in reclaim_pv_chunk_domain()
3803 if (old_l2 & ATTR_SW_WIRED) in pmap_remove_l2()
3855 if (old_l3 & ATTR_SW_WIRED) in pmap_remove_l3()
3914 if ((first_l3e & ATTR_SW_WIRED) != 0) in pmap_remove_l3c()
4020 if ((old_l3 & ATTR_SW_WIRED) != 0) in pmap_remove_l3_range()
4278 if (tpte & ATTR_SW_WIRED) in pmap_remove_all()
5169 if ((newpte & ATTR_SW_WIRED) != 0 && (origpte & ATTR_SW_WIRED) == 0) in pmap_enter_largepage()
5171 else if ((newpte & ATTR_SW_WIRED) == 0 && in pmap_enter_largepage()
5172 (origpte & ATTR_SW_WIRED) != 0) in pmap_enter_largepage()
5216 new_l3 |= ATTR_SW_WIRED; in pmap_enter()
[all …]
/freebsd/sys/arm64/include/
H A Dpte.h61 #define ATTR_SW_WIRED (1UL << 55) macro