Home
last modified time | relevance | path

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

/freebsd/sys/powerpc/pseries/
H A Dmmu_phyp.c311 return (pte.pte_lo & (LPTE_CHG | LPTE_REF)); in mphyp_pte_synch()
348 if (ptebit & LPTE_CHG) { in mphyp_pte_clear()
353 refchg |= (ptelo & LPTE_CHG); in mphyp_pte_clear()
390 return (pte.pte_lo & (LPTE_REF | LPTE_CHG)); in mphyp_pte_unset()
611 refchg |= pte.pte_lo & (LPTE_REF | LPTE_CHG); in mphyp_pte_unset_sp()
/freebsd/sys/powerpc/ps3/
H A Dmmu_ps3.c181 (LPTE_CHG | LPTE_REF)); in mps3_pte_synch_locked()
239 return (refchg & (LPTE_REF | LPTE_CHG)); in mps3_pte_unset()
/freebsd/sys/powerpc/aim/
H A Dmoea64_native.c335 return (ptelo & (LPTE_REF | LPTE_CHG)); in moea64_pte_synch_native()
381 return (ptelo & (LPTE_REF | LPTE_CHG)); in moea64_pte_clear_native()
406 return (ptelo & (LPTE_CHG | LPTE_REF)); in moea64_pte_unset_locked()
469 return (ptelo & (LPTE_CHG | LPTE_REF)); in moea64_pte_replace_inval_native()
942 refchg |= LPTE_CHG; in moea64_pte_unset_sp_locked()
H A Dmmu_oea64.c1373 refchg = LPTE_CHG; in moea64_unwire()
1377 if (refchg & LPTE_CHG) in moea64_unwire()
2018 return (moea64_query_bit(m, LPTE_CHG)); in moea64_is_modified()
2045 moea64_clear_bit(m, LPTE_CHG); in moea64_clear_modify()
2081 ret = LPTE_CHG; in moea64_remove_write()
2088 if ((refchg | atomic_readandclear_32(&m->md.mdpg_attrs)) & LPTE_CHG) in moea64_remove_write()
2151 LPTE_CHG : 0; in moea64_page_set_memattr()
2156 if (refchg & LPTE_CHG) in moea64_page_set_memattr()
2569 refchg = (oldprot & VM_PROT_WRITE) ? LPTE_CHG : 0; in moea64_pvo_protect()
2587 if (refchg & LPTE_CHG) in moea64_pvo_protect()
[all …]
/freebsd/sys/powerpc/include/
H A Dpte.h131 #define LPTE_CHG EXTEND_PTE( PTE_CHG ) macro