Searched refs:PG_W (Results 1 - 13 of 13) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dpte.h66 #define PG_W 0x01000000 macro
/netbsd-6-1-5-RELEASE/sys/arch/m68k/include/
H A Dpte_motorola.h86 #define PG_W 0x00000100 macro
/netbsd-6-1-5-RELEASE/sys/arch/x86/acpi/
H A Dacpi_machdep.c312 if ((*pte & (PG_V|PG_W)) != (PG_V|PG_W)) {
/netbsd-6-1-5-RELEASE/sys/arch/sparc/stand/common/
H A Dmmu.c109 pte = PG_S | PG_V | PG_W | PG_NC | ((pa >> PGSHIFT) & PG_PFNUM);
H A Dpromdev.c708 #define PG_COMMON (PG_V|PG_W|PG_S|PG_NC)
/netbsd-6-1-5-RELEASE/sys/arch/vax/vax/
H A Dpmap.c560 pmap_decrement_stats(pm, (br[0] & PG_W) != 0);
1146 newpte |= PG_W;
1152 if (newpte == (oldpte | PG_W)) {
1153 *pteptr |= PG_W;
1169 pmap_decrement_stats(pmap, (oldpte & PG_W) != 0);
1541 pmap_decrement_stats(pv->pv_pmap, (g[0] & PG_W) != 0);
1558 pmap_decrement_stats(pl->pv_pmap, (g[0] & PG_W) != 0);
1689 pte[0] &= ~PG_W;
/netbsd-6-1-5-RELEASE/sys/arch/sparc/include/
H A Dpte.h254 #define PG_W 0x40000000 /* allowed to write */ macro
320 #define PG_PROTUWRITE 6 /* PG_V,PG_W,!PG_S */
321 #define PG_PROTUREAD 4 /* PG_V,!PG_W,!PG_S */
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dpmap.h316 #define PG_W PG_AVAIL1 /* "wired" mapping */ macro
/netbsd-6-1-5-RELEASE/sys/arch/amd64/include/
H A Dpmap.h238 #define PG_W PG_AVAIL1 /* "wired" mapping */ macro
/netbsd-6-1-5-RELEASE/sys/arch/m68k/m68k/
H A Dpmap_motorola.c196 #define pmap_pte_w(pte) (*(pte) & PG_W)
204 if (v) *(pte) |= PG_W; else *(pte) &= ~PG_W
1102 if (pmap_pte_w_chg(pte, wired ? PG_W : 0)) {
1278 npte |= PG_W;
1305 wired = ((*pte ^ npte) == PG_W);
1383 npte = pa | pte_prot(pmap, prot) | PG_V | PG_W;
/netbsd-6-1-5-RELEASE/sys/arch/sparc/sparc/
H A Dpmap.c2043 bits = PG_V | ((prot & VM_PROT_WRITE) ? PG_W : 0);
2316 * (e.g., PG_W or PG_NC).
2615 * (e.g., PG_W or PG_NC).
3465 setpte4(p, getpte4(p) & ~(PG_NC|PG_W));
5031 pv_changepte4_4c(pg, 0, PG_W);
5174 /* not in MMU; just clear PG_W from core copies */
5176 *ptep++ &= ~PG_W;
5185 * needed for PTEs that lose PG_W.
5192 if ((pte & (PG_W|PG_TYPE)) ==
5193 (PG_W|PG_OBME
[all...]
H A Dlocore.s1261 andn pte, (PG_W >> PG_PROTSHIFT), pte; \
/netbsd-6-1-5-RELEASE/sys/arch/x86/x86/
H A Dpmap.c604 int wired_diff = ((npte & PG_W) ? 1 : 0) - ((opte & PG_W) ? 1 : 0);
606 KASSERT((npte & (PG_V | PG_W)) != PG_W);
607 KASSERT((opte & (PG_V | PG_W)) != PG_W);
3848 if (opte & PG_W) {
3849 pt_entry_t npte = opte & ~PG_W;
3922 npte |= PG_W;

Completed in 234 milliseconds