Home
last modified time | relevance | path

Searched refs:PG_W (Results 1 – 7 of 7) sorted by relevance

/mirbsd/src/sys/arch/i386/i386/
Dpmap.c1259 if (*ptep & PG_W) {
1645 if ((ptes[lcv] & (PG_V|PG_W)) ==
1646 (PG_V|PG_W))
2198 if (opte & PG_W)
2290 if (opte & PG_W)
2591 if (opte & PG_W)
2948 if ((ptes[i386_btop(va)] & PG_W) != 0) {
2949 ptes[i386_btop(va)] &= ~PG_W;
3067 if (wired && (opte & PG_W) == 0)
3069 else if (!wired && (opte & PG_W) != 0)
[all …]
/mirbsd/src/sys/arch/sparc/sparc/
Dgenassym.cf108 export PG_W
153 define IE_REG_PTE_PG (PG_V | PG_W | PG_S | PG_NC | PG_OBIO)
Dpmap.c1593 bits = PG_V | ((prot & VM_PROT_WRITE) ? PG_W : 0);
1946 if (bic == PG_W &&
2954 int mask = ~(PG_W | PG_NC);
4214 pv_changepte4_4c(pv, 0, PG_W); in pmap_page_protect4_4c()
4428 *pte++ &= ~PG_W; in pmap_protect4_4c()
4443 if ((tpte & (PG_W|PG_TYPE)) == in pmap_protect4_4c()
4444 (PG_W|PG_OBMEM)) { in pmap_protect4_4c()
4447 setpte4(va, tpte & ~PG_W); in pmap_protect4_4c()
4464 setpte4(pteva, getpte4(pteva) & ~PG_W); in pmap_protect4_4c()
4499 newprot = prot & VM_PROT_WRITE ? PG_S|PG_W : PG_S;
[all …]
Dlocore.s1243 andn pte, (PG_W >> PG_PROTSHIFT), pte; \
/mirbsd/src/sys/arch/sparc/include/
Dpte.h266 #define PG_W 0x40000000 /* allowed to write */ macro
/mirbsd/src/sys/arch/i386/include/
Dpmap.h235 #define PG_W PG_AVAIL1 /* "wired" mapping */ macro
/mirbsd/src/sys/arch/sparc/stand/common/
Dpromdev.c822 pte |= (PG_V|PG_W|PG_S|PG_NC);