Lines Matching full:wired
125 boolean_t wired; member
424 PMAP_ENTER_NOSLEEP | (fs->wired ? PMAP_ENTER_WIRED : 0), psind) != in vm_fault_soft_fast()
431 if (psind == 0 && !fs->wired) in vm_fault_soft_fast()
588 fs->fault_type | (fs->wired ? PMAP_ENTER_WIRED : 0) | in vm_fault_populate()
645 (fs->wired ? PMAP_ENTER_WIRED : 0), psind); in vm_fault_populate()
658 MPASS(!fs->wired); in vm_fault_populate()
916 &fs->first_pindex, &fs->prot, &fs->wired); in vm_fault_lookup()
945 if (fs->wired) in vm_fault_lookup()
949 ("!fs->wired && VM_FAULT_WIRE")); in vm_fault_lookup()
972 &fs->wired); in vm_fault_relookup()
999 /* Reassert because wired may have changed. */ in vm_fault_relookup()
1000 KASSERT(fs->wired || (fs->fault_flags & VM_FAULT_WIRE) == 0, in vm_fault_relookup()
1001 ("!wired && VM_FAULT_WIRE")); in vm_fault_relookup()
1067 if (fs->wired && (fs->fault_flags & VM_FAULT_WIRE) == 0) { in vm_fault_cow()
1773 fs.fault_type | (fs.wired ? PMAP_ENTER_WIRED : 0), 0); in vm_fault()
1775 fs.wired == 0) in vm_fault()
1781 * If the page is not wired down, then put it where the pageout daemon in vm_fault()
2071 * implements COW for wired-down map entry. Otherwise, it forks
2072 * wired entry into dst_map.
2076 * The source map entry must be wired down (or be a sharing map
2077 * entry corresponding to a main map entry that is wired down).
2154 * destination object. Since the source is wired, those pages in vm_fault_copy_entry()
2168 * Because the source is wired down, the page will be in vm_fault_copy_entry()
2245 * Enter it in the pmap. If a wired, copy-on-write in vm_fault_copy_entry()
2253 * all copies of the wired map entry have similar in vm_fault_copy_entry()
2272 ("dst_m %p is not wired", dst_m)); in vm_fault_copy_entry()