Home
last modified time | relevance | path

Searched refs:PG_RW (Results 1 – 13 of 13) sorted by relevance

/f-stack/freebsd/i386/i386/
H A Dpmap.c496 PG_RW; in __CONCAT()
2399 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in pmap_pv_reclaim()
2866 KASSERT((oldpde & (PG_M | PG_RW)) != PG_RW, in pmap_demote_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()
3529 if ((newpde & (PG_M | PG_RW)) == PG_RW) { in pmap_promote_pde()
3555 if ((oldpte & (PG_M | PG_RW)) == PG_RW) { in pmap_promote_pde()
3962 KASSERT((newpde & (PG_M | PG_RW)) != PG_RW, in pmap_enter_pde()
4942 rv = (*pte & (PG_M | PG_RW)) == (PG_M | PG_RW); in pmap_is_modified_pvh()
5181 if ((*pte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in __CONCAT()
[all …]
H A Dvm86.c490 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U; in vm86_initialize_pae()
554 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U; in vm86_initialize_nopae()
742 pte_pae[entry] = page | PG_V | PG_RW | PG_U; in vm86_datacall()
751 pte_nopae[entry] = page | PG_V | PG_RW | PG_U; in vm86_datacall()
H A Dminidump_machdep_base.c301 fakept[k] = (pa + (k * PAGE_SIZE)) | PG_V | PG_RW | PG_A | PG_M; in minidumpsys()
H A Dmachdep.c2073 ptr = (int *)pmap_cmap3(pa, PG_V | PG_RW | PG_N); in getmemsize()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c5022 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) in reclaim_pv_chunk_domain()
5742 KASSERT((oldpde & (PG_M | PG_RW)) != PG_RW, in pmap_demote_pde_locked()
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()
6525 if ((newpde & (PG_M | PG_RW)) == PG_RW) { in pmap_promote_pde()
6550 if ((oldpte & (PG_M | PG_RW)) == PG_RW) { in pmap_promote_pde()
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()
9082 KASSERT((oldpdpe & (PG_M | PG_RW)) != PG_RW, in pmap_demote_pdpe()
[all …]
H A Dxen-locore.S131 orl $(PG_V | PG_RW | PG_U), %edx
137 orl $(PG_V | PG_RW | PG_U), %edx
144 orl $(PG_V | PG_RW | PG_PS | PG_U), %edx
H A Dmp_machdep.c428 pt5[i] |= PG_V | PG_RW | PG_U; in native_start_all_aps()
437 pt4[i] |= PG_V | PG_RW | PG_U; in native_start_all_aps()
445 pt3[i] |= PG_V | PG_RW | PG_U; in native_start_all_aps()
449 pt2[i] |= PG_V | PG_RW | PG_PS | PG_U; in native_start_all_aps()
H A Dmachdep.c1387 *pte = pa | PG_V | PG_RW | PG_NC_PWT | PG_NC_PCD; in getmemsize()
/f-stack/freebsd/i386/include/
H A Dpmap.h55 #define PG_RW 0x002 /* R/W Read/Write */ macro
75 #define PG_PROT (PG_RW|PG_U) /* all protection bits . */
87 PG_M | PG_A | PG_NC_PCD | PG_NC_PWT | PG_U | PG_RW | PG_V)
/f-stack/freebsd/x86/acpica/
H A Dacpi_wakeup.c468 pt5[i] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
476 pt4[i] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
483 pt3[i] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
487 pt2[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
/f-stack/freebsd/amd64/include/
H A Dpmap.h97 #define PG_RW X86_PG_RW macro
129 PG_M | PG_A | PG_U | PG_RW | PG_V | PG_PKU_MASK)
161 #undef PG_RW
/f-stack/freebsd/x86/xen/
H A Dpv.c238 PT4[i] |= PG_V | PG_RW | PG_U; in hammer_time_xen_legacy()
245 PT3[i] |= PG_V | PG_RW | PG_U; in hammer_time_xen_legacy()
252 PT2[i] |= PG_V | PG_RW | PG_PS | PG_U; in hammer_time_xen_legacy()
/f-stack/freebsd/amd64/vmm/
H A Dvmm_instruction_emul.c2124 (writable && (pte32 & PG_RW) == 0)) { in _vm_gla2gpa()
2214 (writable && (pte & PG_RW) == 0)) { in _vm_gla2gpa()