Home
last modified time | relevance | path

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

/f-stack/freebsd/i386/i386/
H A Dpmap.c2399 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_pv_reclaim()
3001 if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_remove_pde()
3052 if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_remove_pte()
3275 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in __CONCAT()
3669 KASSERT((newpte & (PG_M | PG_RW)) != PG_M, in __CONCAT()
3799 if ((origpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in __CONCAT()
4942 rv = (*pte & (PG_M | PG_RW)) == (PG_M | PG_RW); in pmap_is_modified_pvh()
5125 if ((*pde & (PG_M | PG_RW)) == (PG_M | PG_RW)) { in __CONCAT()
5181 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in __CONCAT()
5385 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { in __CONCAT()
[all …]
H A Dminidump_machdep_base.c301 fakept[k] = (pa + (k * PAGE_SIZE)) | PG_V | PG_RW | PG_A | PG_M; in minidumpsys()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c5022 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in reclaim_pv_chunk_domain()
5878 if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_remove_pde()
5927 if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_remove_pte()
6245 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_remove_all()
6763 KASSERT((newpte & (PG_M | PG_RW)) != PG_M, in pmap_enter()
6900 if ((origpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_enter()
8112 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { in pmap_remove_pages()
8507 if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW)) { in pmap_ts_referenced()
8615 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_ts_referenced()
8886 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { in pmap_clear_modify()
[all …]
/f-stack/freebsd/i386/include/
H A Dpmap.h60 #define PG_M 0x040 /* D Dirty */ macro
87 PG_M | PG_A | PG_NC_PCD | PG_NC_PWT | PG_U | PG_RW | PG_V)
/f-stack/freebsd/amd64/include/
H A Dpmap.h102 #define PG_M X86_PG_M macro
129 PG_M | PG_A | PG_U | PG_RW | PG_V | PG_PKU_MASK)
156 #undef PG_M
/f-stack/freebsd/amd64/vmm/
H A Dvmm_instruction_emul.c2155 if (!check_only && writable && (pte32 & PG_M) == 0) { in _vm_gla2gpa()
2157 pte32, pte32 | PG_M) == 0) { in _vm_gla2gpa()
2246 if (!check_only && writable && (pte & PG_M) == 0) { in _vm_gla2gpa()
2247 if (atomic_cmpset_64(&ptpbase[ptpindex], pte, pte | PG_M) == 0) in _vm_gla2gpa()