| /src/sys/arch/sh3/include/ |
| pmap.h | 101 struct vm_page_md *pvh = &(pg)->mdpage; \ 102 SLIST_INIT(&pvh->pvh_head); \ 103 pvh->pvh_flags = 0; \
|
| /src/sys/arch/sh3/sh3/ |
| pmap.c | 324 struct vm_page_md *pvh; local 337 pvh = VM_PAGE_TO_MD(pg); 343 pvh->pvh_flags |= PVH_MODIFIED | PVH_REFERENCED; 346 pvh->pvh_flags |= PVH_REFERENCED; 350 if ((prot & VM_PROT_WRITE) && (pvh->pvh_flags & PVH_MODIFIED)) { 471 struct vm_page_md *pvh; local 487 pvh = VM_PAGE_TO_MD(pg); 488 SLIST_FOREACH(pv, &pvh->pvh_head, pv_link) { 499 pvh = VM_PAGE_TO_MD(pg); 508 SLIST_INSERT_HEAD(&pvh->pvh_head, pv, pv_link) 551 struct vm_page_md *pvh; local 705 struct vm_page_md *pvh = VM_PAGE_TO_MD(pg); local 801 struct vm_page_md *pvh = VM_PAGE_TO_MD(pg); local 809 struct vm_page_md *pvh = VM_PAGE_TO_MD(pg); local 844 struct vm_page_md *pvh = VM_PAGE_TO_MD(pg); local 852 struct vm_page_md *pvh = VM_PAGE_TO_MD(pg); local 1043 struct vm_page_md *pvh = VM_PAGE_TO_MD(pg); local [all...] |
| /src/sys/arch/m68k/m68k/ |
| pmap_motorola.c | 457 struct pv_header *pvh; local 510 pvh = pv_table; 515 uvm_physseg_get_pmseg(bank)->pvheader = pvh; 516 pvh += npages; 969 struct pv_header *pvh; local 996 pvh = pa_to_pvh(pa); 997 pv = &pvh->pvh_first; 1227 struct pv_header *pvh; local 1231 pvh = pa_to_pvh(pa); 1232 pv = &pvh->pvh_first 1706 struct pv_header *pvh; local 2085 struct pv_header *pvh; local 2381 struct pv_header *pvh; local 2438 struct pv_header *pvh; local 2531 struct pv_header *pvh; local 2974 struct pv_header *pvh; local [all...] |
| /src/sys/arch/sparc64/sparc64/ |
| pmap.c | 1773 pv_entry_t pvh, opv = NULL, npv; local 1819 pvh = &md->mdpg_pvh; 1820 uncached = (pvh->pv_va & (PV_ALIAS|PV_NVC)); 1830 pvh->pv_va |= PV_REF; 1832 pvh->pv_va |= PV_MOD; 3285 pv_entry_t pvh, npv; local 3289 pvh = &md->mdpg_pvh; 3290 DPRINTF(PDB_ENTER, ("pmap_enter: pvh %p: was %lx/%p/%p\n", 3291 pvh, pvh->pv_va, pvh->pv_pmap, pvh->pv_next)) 3348 pv_entry_t pvh, npv, pv; local [all...] |
| /src/sys/arch/powerpc/ibm4xx/ |
| pmap.c | 1100 struct pv_entry *pvh, *pv, *npv; local 1105 pvh = pa_to_pv(pa); 1106 if (pvh == NULL) 1110 for (pv = pvh->pv_next; pv; pv = npv) { 1119 if (pvh->pv_pm) { 1120 pv = pvh;
|