Lines Matching full:wired
125 boolean_t wired;
424 PMAP_ENTER_NOSLEEP | (fs->wired ? PMAP_ENTER_WIRED : 0), psind) !=
431 if (psind == 0 && !fs->wired)
588 fs->fault_type | (fs->wired ? PMAP_ENTER_WIRED : 0) |
645 (fs->wired ? PMAP_ENTER_WIRED : 0), psind);
658 MPASS(!fs->wired);
916 &fs->first_pindex, &fs->prot, &fs->wired);
945 if (fs->wired)
949 ("!fs->wired && VM_FAULT_WIRE"));
972 &fs->wired);
999 /* Reassert because wired may have changed. */
1000 KASSERT(fs->wired || (fs->fault_flags & VM_FAULT_WIRE) == 0,
1001 ("!wired && VM_FAULT_WIRE"));
1067 if (fs->wired && (fs->fault_flags & VM_FAULT_WIRE) == 0) {
1773 fs.fault_type | (fs.wired ? PMAP_ENTER_WIRED : 0), 0);
1775 fs.wired == 0)
1781 * If the page is not wired down, then put it where the pageout daemon
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
2166 * Because the source is wired down, the page will be
2243 * Enter it in the pmap. If a wired, copy-on-write
2251 * all copies of the wired map entry have similar
2270 ("dst_m %p is not wired", dst_m));