Home
last modified time | relevance | path

Searched refs:LPTE_CHG (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/sys/powerpc/pseries/
Dmmu_phyp.c259 return (pte.pte_lo & (LPTE_CHG | LPTE_REF)); in mphyp_pte_synch()
296 if (ptebit & LPTE_CHG) { in mphyp_pte_clear()
301 refchg |= (ptelo & LPTE_CHG); in mphyp_pte_clear()
338 return (pte.pte_lo & (LPTE_REF | LPTE_CHG)); in mphyp_pte_unset()
/freebsd-12-stable/sys/powerpc/ps3/
Dmmu_ps3.c178 (LPTE_CHG | LPTE_REF)); in mps3_pte_synch_locked()
236 return (refchg & (LPTE_REF | LPTE_CHG)); in mps3_pte_unset()
/freebsd-12-stable/sys/powerpc/aim/
Disa3_hashtb.c214 return (ptelo & (LPTE_REF | LPTE_CHG)); in isa3_hashtb_pte_synch()
260 return (ptelo & (LPTE_REF | LPTE_CHG)); in isa3_hashtb_pte_clear()
298 return (ptelo & (LPTE_CHG | LPTE_REF)); in isa3_hashtb_pte_unset()
Dmoea64_native.c256 return (ptelo & (LPTE_REF | LPTE_CHG)); in moea64_pte_synch_native()
302 return (ptelo & (LPTE_REF | LPTE_CHG)); in moea64_pte_clear_native()
340 return (ptelo & (LPTE_CHG | LPTE_REF)); in moea64_pte_unset_native()
Dmmu_oea64.c1135 refchg = LPTE_CHG; in moea64_unwire()
1139 if (refchg & LPTE_CHG) in moea64_unwire()
1671 return (moea64_query_bit(mmu, m, LPTE_CHG)); in moea64_is_modified()
1705 moea64_clear_bit(mmu, m, LPTE_CHG); in moea64_clear_modify()
1741 ret = LPTE_CHG; in moea64_remove_write()
1748 if ((refchg | atomic_readandclear_32(&m->md.mdpg_attrs)) & LPTE_CHG) in moea64_remove_write()
1804 LPTE_CHG : 0; in moea64_page_set_memattr()
1809 if (refchg & LPTE_CHG) in moea64_page_set_memattr()
2217 refchg = (oldprot & VM_PROT_WRITE) ? LPTE_CHG : 0; in moea64_pvo_protect()
2234 if (refchg & LPTE_CHG) in moea64_pvo_protect()
[all …]
/freebsd-12-stable/sys/powerpc/include/
Dpte.h118 #define LPTE_CHG EXTEND_PTE( PTE_CHG ) macro