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

/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dpte.h65 #define PG_M 0x04000000 macro
H A Dpmap.h228 bool rv = (pv->pv_attr & PG_M) != 0;
230 pv->pv_attr &= ~PG_M;
241 return (pv->pv_attr & PG_M) != 0 || pmap_is_modified_long_p(pv);
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dpte.h246 #define PG_M 0x00000040 /* has been modified */ macro
/netbsd-6-1-5-RELEASE/sys/arch/m68k/include/
H A Dpte_motorola.h85 #define PG_M 0x00000010 macro
/netbsd-6-1-5-RELEASE/sys/arch/amd64/include/
H A Dpte.h113 #define PG_M 0x0000000000000040 /* modified */ macro
/netbsd-6-1-5-RELEASE/sys/arch/next68k/next68k/
H A Dpmap_bootstrap.c462 protopte = INTIOBASE | PG_RW | PG_CI | PG_U | PG_M | PG_V;
473 protopte = MONOBASE | PG_RW | PG_CWT | PG_U | PG_M | PG_V;
483 protopte = COLORBASE | PG_RW | PG_CWT | PG_U | PG_M | PG_V;
/netbsd-6-1-5-RELEASE/sys/arch/x86/include/
H A Dpmap.h223 #define pmap_clear_modify(pg) pmap_clear_attrs(pg, PG_M)
226 #define pmap_is_modified(pg) pmap_test_attrs(pg, PG_M)
/netbsd-6-1-5-RELEASE/sys/arch/vax/vax/
H A Dpmap.c558 ((pv->pv_attr & PG_M) != PG_M))
1148 oldpte = *pteptr & ~(PG_V|PG_M);
1206 pv->pv_attr |= PG_M;
1435 pv->pv_attr |= PG_M;
1542 if ((pv->pv_attr & (PG_V|PG_M)) != (PG_V|PG_M))
1559 if ((pv->pv_attr & (PG_V|PG_M)) != (PG_V|PG_M))
/netbsd-6-1-5-RELEASE/sys/arch/sparc/include/
H A Dpte.h167 * if (writing) pte |= PG_M;
181 * if (writing) pte |= PG_M; (mark modified)
270 #define PG_M 0x01000000 macro
277 #define PG_M_SHIFT 24 /* shift to get PG_M, PG_U */
/netbsd-6-1-5-RELEASE/sys/arch/m68k/m68k/
H A Dpmap_motorola.c198 #define pmap_pte_m(pte) (*(pte) & PG_M)
1241 pvh->pvh_attrs |= (PG_U|PG_M);
1276 npte = pa | pte_prot(pmap, prot) | (*pte & (PG_M|PG_U)) | PG_V;
1857 return pmap_changebit(pa, 0, ~PG_M);
1900 return pmap_testbit(pa, PG_M);
2040 bits = *pte & (PG_U|PG_M);
2284 if (pmap_aliasmask && (bit & (PG_U|PG_M)))
/netbsd-6-1-5-RELEASE/sys/arch/x86/x86/
H A Dpmap.c3032 pmap_pte_set(zpte, pmap_pa2pte(pa) | PG_V | PG_RW | PG_M | PG_U | PG_k);
3071 pmap_pte_set(zpte, pmap_pa2pte(pa) | PG_V | PG_RW | PG_M | PG_U | PG_k);
3116 pmap_pa2pte(dstpa) | PG_V | PG_RW | PG_M | PG_U | PG_k);
3147 pmap_pte_set(ptppte, pmap_pa2pte(VM_PAGE_TO_PHYS(ptp)) | PG_V | PG_M |
3150 pmap_pte_set(ptppte, pmap_pa2pte(VM_PAGE_TO_PHYS(ptp)) | PG_V | PG_M |
3468 KASSERT(clearbits == ~0 || (clearbits & ~(PG_M | PG_U | PG_RW)) == 0);
3474 KASSERT((opte & (PG_M | PG_U)) != PG_M);
3510 * it isn't cached as RW. (PG_M)
3514 !(clearbits == PG_RW && (opte & PG_M)
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/xen/xen/
H A Dxennetback_xenbus.c1055 newp_ma | PG_V | PG_RW | PG_U | PG_M, 0);
/netbsd-6-1-5-RELEASE/sys/arch/sparc/sparc/
H A Dpmap.c1716 *ptep++ = swbits | (pte & ~(PG_U|PG_M));
2430 if (pte & PG_M)
2441 if (pte & (PG_M|PG_U) && pte & PG_V) {
2443 pte &= ~(PG_M|PG_U);
5608 pteproto |= PG_M;

Completed in 152 milliseconds