/src/sys/arch/vax/include/ |
pte.h | 39 unsigned int pg_w:1; /* Wired bit */ member in struct:pte 61 #define PG_W 0x01000000
|
/src/sys/arch/m68k/include/ |
pte_motorola.h | 100 #define PG_W __BIT(8) /* 851 unused bit XXX040 PTE40_U0 */
|
/src/sys/arch/i386/include/ |
pmap_private.h | 244 #define PG_W PTE_WIRED
|
/src/sys/arch/sparc/stand/common/ |
mmu.c | 109 pte = PG_S | PG_V | PG_W | PG_NC | ((pa >> PGSHIFT) & PG_PFNUM);
|
promdev.c | 744 #define PG_COMMON (PG_V|PG_W|PG_S|PG_NC)
|
/src/sys/arch/vax/vax/ |
pmap.c | 536 pmap_decrement_stats(pm, (br[0] & PG_W) != 0); 1127 newpte |= PG_W; 1133 if (newpte == (oldpte | PG_W)) { 1134 *pteptr |= PG_W; 1150 pmap_decrement_stats(pmap, (oldpte & PG_W) != 0); 1444 if (pte[0].pg_w == 0) { 1533 pmap_decrement_stats(pv->pv_pmap, (g[0] & PG_W) != 0); 1550 pmap_decrement_stats(pl->pv_pmap, (g[0] & PG_W) != 0); 1680 pte[0] &= ~PG_W;
|
/src/sys/arch/amd64/include/ |
pmap_private.h | 180 #define PG_W PTE_WIRED
|
/src/sys/arch/sparc/include/ |
pte.h | 177 * if (writing && !pte.pg_w) TRAP(); 254 #define PG_W 0x40000000 /* allowed to write */ 289 pg_w:1, member in struct:pte 320 #define PG_PROTUWRITE 6 /* PG_V,PG_W,!PG_S */ 321 #define PG_PROTUREAD 4 /* PG_V,!PG_W,!PG_S */
|
/src/sys/arch/m68k/m68k/ |
pmap_motorola.c | 201 #define pmap_pte_w(pte) (*(pte) & PG_W) 209 if (v) *(pte) |= PG_W; else *(pte) &= ~PG_W 1186 if (pmap_pte_w_chg(pte, wired ? PG_W : 0)) { 1367 npte |= PG_W; 1394 wired = ((*pte ^ npte) == PG_W); 1475 npte = pa | pte_prot(pmap, prot) | PG_V | PG_W;
|
/src/sys/arch/sparc/sparc/ |
pmap.c | 2079 bits = PG_V | ((prot & VM_PROT_WRITE) ? PG_W : 0); 2355 * (e.g., PG_W or PG_NC). 2651 * (e.g., PG_W or PG_NC). 3492 setpte4(p, getpte4(p) & ~(PG_NC|PG_W)); 5066 pv_changepte4_4c(pg, 0, PG_W); 5209 /* not in MMU; just clear PG_W from core copies */ 5211 *ptep++ &= ~PG_W; 5220 * needed for PTEs that lose PG_W. 5227 if ((pte & (PG_W|PG_TYPE)) == 5228 (PG_W|PG_OBMEM)) [all...] |
locore.s | 1260 andn pte, (PG_W >> PG_PROTSHIFT), pte; \
|