Lines Matching full:wired
126 boolean_t wired; member
441 PMAP_ENTER_NOSLEEP | (fs->wired ? PMAP_ENTER_WIRED : 0), psind) != in vm_fault_soft_fast()
448 if (psind == 0 && !fs->wired) in vm_fault_soft_fast()
604 fs->fault_type | (fs->wired ? PMAP_ENTER_WIRED : 0) | in vm_fault_populate()
660 (fs->wired ? PMAP_ENTER_WIRED : 0), psind); in vm_fault_populate()
673 MPASS(!fs->wired); in vm_fault_populate()
928 &fs->first_pindex, &fs->prot, &fs->wired); in vm_fault_lookup()
957 if (fs->wired) in vm_fault_lookup()
961 ("!fs->wired && VM_FAULT_WIRE")); in vm_fault_lookup()
984 &fs->wired); in vm_fault_relookup()
1011 /* Reassert because wired may have changed. */ in vm_fault_relookup()
1012 KASSERT(fs->wired || (fs->fault_flags & VM_FAULT_WIRE) == 0, in vm_fault_relookup()
1013 ("!wired && VM_FAULT_WIRE")); in vm_fault_relookup()
1096 if (fs->wired && (fs->fault_flags & VM_FAULT_WIRE) == 0) { in vm_fault_cow()
1912 fs.fault_type | (fs.wired ? PMAP_ENTER_WIRED : 0), 0); in vm_fault()
1914 fs.wired == 0) in vm_fault()
1920 * If the page is not wired down, then put it where the pageout daemon in vm_fault()
2256 * implements COW for wired-down map entry. Otherwise, it forks
2257 * wired entry into dst_map.
2261 * The source map entry must be wired down (or be a sharing map
2262 * entry corresponding to a main map entry that is wired down).
2340 * destination object. Since the source is wired, those pages in vm_fault_copy_entry()
2353 * Because the source is wired down, the page will be in vm_fault_copy_entry()
2435 * Enter it in the pmap. If a wired, copy-on-write in vm_fault_copy_entry()
2443 * all copies of the wired map entry have similar in vm_fault_copy_entry()
2462 ("dst_m %p is not wired", dst_m)); in vm_fault_copy_entry()