1df8bae1dSRodney W. Grimes /* 2df8bae1dSRodney W. Grimes * Copyright (c) 1990 University of Utah. 326f9a767SRodney W. Grimes * Copyright (c) 1991 The Regents of the University of California. 426f9a767SRodney W. Grimes * All rights reserved. 526f9a767SRodney W. Grimes * Copyright (c) 1993, 1994 John S. Dyson 624a1cce3SDavid Greenman * Copyright (c) 1995, David Greenman 7df8bae1dSRodney W. Grimes * 8df8bae1dSRodney W. Grimes * This code is derived from software contributed to Berkeley by 9df8bae1dSRodney W. Grimes * the Systems Programming Group of the University of Utah Computer 10df8bae1dSRodney W. Grimes * Science Department. 11df8bae1dSRodney W. Grimes * 12df8bae1dSRodney W. Grimes * Redistribution and use in source and binary forms, with or without 13df8bae1dSRodney W. Grimes * modification, are permitted provided that the following conditions 14df8bae1dSRodney W. Grimes * are met: 15df8bae1dSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 16df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer. 17df8bae1dSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 18df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 19df8bae1dSRodney W. Grimes * documentation and/or other materials provided with the distribution. 20df8bae1dSRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 215929bcfaSPhilippe Charnier * must display the following acknowledgement: 22df8bae1dSRodney W. Grimes * This product includes software developed by the University of 23df8bae1dSRodney W. Grimes * California, Berkeley and its contributors. 24df8bae1dSRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 25df8bae1dSRodney W. Grimes * may be used to endorse or promote products derived from this software 26df8bae1dSRodney W. Grimes * without specific prior written permission. 27df8bae1dSRodney W. Grimes * 28df8bae1dSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 29df8bae1dSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 30df8bae1dSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 31df8bae1dSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 32df8bae1dSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 33df8bae1dSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 34df8bae1dSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 35df8bae1dSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 36df8bae1dSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 37df8bae1dSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 38df8bae1dSRodney W. Grimes * SUCH DAMAGE. 39df8bae1dSRodney W. Grimes * 4026f9a767SRodney W. Grimes * from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91 41df8bae1dSRodney W. Grimes */ 42df8bae1dSRodney W. Grimes 43df8bae1dSRodney W. Grimes /* 44df8bae1dSRodney W. Grimes * Page to/from files (vnodes). 45df8bae1dSRodney W. Grimes */ 46df8bae1dSRodney W. Grimes 4726f9a767SRodney W. Grimes /* 4826f9a767SRodney W. Grimes * TODO: 4924a1cce3SDavid Greenman * Implement VOP_GETPAGES/PUTPAGES interface for filesystems. Will 50f6b04d2bSDavid Greenman * greatly re-simplify the vnode_pager. 5126f9a767SRodney W. Grimes */ 5226f9a767SRodney W. Grimes 53874651b1SDavid E. O'Brien #include <sys/cdefs.h> 54874651b1SDavid E. O'Brien __FBSDID("$FreeBSD$"); 55874651b1SDavid E. O'Brien 56df8bae1dSRodney W. Grimes #include <sys/param.h> 57df8bae1dSRodney W. Grimes #include <sys/systm.h> 58df8bae1dSRodney W. Grimes #include <sys/proc.h> 59df8bae1dSRodney W. Grimes #include <sys/vnode.h> 60df8bae1dSRodney W. Grimes #include <sys/mount.h> 619626b608SPoul-Henning Kamp #include <sys/bio.h> 6224a1cce3SDavid Greenman #include <sys/buf.h> 63efeaf95aSDavid Greenman #include <sys/vmmeter.h> 6424579ca1SMatthew Dillon #include <sys/conf.h> 65df8bae1dSRodney W. Grimes 66df8bae1dSRodney W. Grimes #include <vm/vm.h> 67efeaf95aSDavid Greenman #include <vm/vm_object.h> 68df8bae1dSRodney W. Grimes #include <vm/vm_page.h> 6924a1cce3SDavid Greenman #include <vm/vm_pager.h> 701efb74fbSJohn Dyson #include <vm/vm_map.h> 71df8bae1dSRodney W. Grimes #include <vm/vnode_pager.h> 72efeaf95aSDavid Greenman #include <vm/vm_extern.h> 73df8bae1dSRodney W. Grimes 7411caded3SAlfred Perlstein static void vnode_pager_init(void); 7511caded3SAlfred Perlstein static vm_offset_t vnode_pager_addr(struct vnode *vp, vm_ooffset_t address, 7611caded3SAlfred Perlstein int *run); 7711caded3SAlfred Perlstein static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m); 7811caded3SAlfred Perlstein static int vnode_pager_input_old(vm_object_t object, vm_page_t m); 7911caded3SAlfred Perlstein static void vnode_pager_dealloc(vm_object_t); 8011caded3SAlfred Perlstein static int vnode_pager_getpages(vm_object_t, vm_page_t *, int, int); 8111caded3SAlfred Perlstein static void vnode_pager_putpages(vm_object_t, vm_page_t *, int, boolean_t, int *); 8211caded3SAlfred Perlstein static boolean_t vnode_pager_haspage(vm_object_t, vm_pindex_t, int *, int *); 830b8253a7SBruce Evans 84df8bae1dSRodney W. Grimes struct pagerops vnodepagerops = { 854e658600SPoul-Henning Kamp .pgo_init = vnode_pager_init, 864e658600SPoul-Henning Kamp .pgo_alloc = vnode_pager_alloc, 874e658600SPoul-Henning Kamp .pgo_dealloc = vnode_pager_dealloc, 884e658600SPoul-Henning Kamp .pgo_getpages = vnode_pager_getpages, 894e658600SPoul-Henning Kamp .pgo_putpages = vnode_pager_putpages, 904e658600SPoul-Henning Kamp .pgo_haspage = vnode_pager_haspage, 91df8bae1dSRodney W. Grimes }; 92df8bae1dSRodney W. Grimes 93b62b9b64SJohn Baldwin int vnode_pbuf_freecnt; 941c7c3c6aSMatthew Dillon 9537c84183SPoul-Henning Kamp static void 96b62b9b64SJohn Baldwin vnode_pager_init(void) 97b62b9b64SJohn Baldwin { 98b62b9b64SJohn Baldwin 99b62b9b64SJohn Baldwin vnode_pbuf_freecnt = nswbuf / 2 + 1; 100b62b9b64SJohn Baldwin } 101170db9c6SJohn Dyson 102df8bae1dSRodney W. Grimes /* 103df8bae1dSRodney W. Grimes * Allocate (or lookup) pager for a vnode. 104df8bae1dSRodney W. Grimes * Handle is a vnode pointer. 105990ab7adSAlan Cox * 106990ab7adSAlan Cox * MPSAFE 107df8bae1dSRodney W. Grimes */ 10824a1cce3SDavid Greenman vm_object_t 1096cde7a16SDavid Greenman vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot, 110b9dcd593SBruce Evans vm_ooffset_t offset) 111df8bae1dSRodney W. Grimes { 11206cb7259SDavid Greenman vm_object_t object; 113df8bae1dSRodney W. Grimes struct vnode *vp; 114df8bae1dSRodney W. Grimes 115df8bae1dSRodney W. Grimes /* 116df8bae1dSRodney W. Grimes * Pageout to vnode, no can do yet. 117df8bae1dSRodney W. Grimes */ 118df8bae1dSRodney W. Grimes if (handle == NULL) 119df8bae1dSRodney W. Grimes return (NULL); 120df8bae1dSRodney W. Grimes 121df8bae1dSRodney W. Grimes vp = (struct vnode *) handle; 12239d38f93SDavid Greenman 12363e7e60dSJeff Roberson ASSERT_VOP_LOCKED(vp, "vnode_pager_alloc"); 12463e7e60dSJeff Roberson 125990ab7adSAlan Cox mtx_lock(&Giant); 12639d38f93SDavid Greenman /* 12739d38f93SDavid Greenman * Prevent race condition when allocating the object. This 12839d38f93SDavid Greenman * can happen with NFS vnodes since the nfsnode isn't locked. 12939d38f93SDavid Greenman */ 130e6e370a7SJeff Roberson VI_LOCK(vp); 131e6e370a7SJeff Roberson while (vp->v_iflag & VI_OLOCK) { 132e6e370a7SJeff Roberson vp->v_iflag |= VI_OWANT; 133e6e370a7SJeff Roberson msleep(vp, VI_MTX(vp), PVM, "vnpobj", 0); 13439d38f93SDavid Greenman } 135e6e370a7SJeff Roberson vp->v_iflag |= VI_OLOCK; 136e6e370a7SJeff Roberson VI_UNLOCK(vp); 13739d38f93SDavid Greenman 13839d38f93SDavid Greenman /* 13939d38f93SDavid Greenman * If the object is being terminated, wait for it to 14039d38f93SDavid Greenman * go away. 14139d38f93SDavid Greenman */ 1421ca58953SAlan Cox while ((object = vp->v_object) != NULL) { 1431ca58953SAlan Cox VM_OBJECT_LOCK(object); 1441ca58953SAlan Cox if ((object->flags & OBJ_DEAD) == 0) 1451ca58953SAlan Cox break; 1461ca58953SAlan Cox msleep(object, VM_OBJECT_MTX(object), PDROP | PVM, "vadead", 0); 14724a1cce3SDavid Greenman } 1480d94caffSDavid Greenman 1492be70f79SJohn Dyson if (vp->v_usecount == 0) 1502be70f79SJohn Dyson panic("vnode_pager_alloc: no vnode reference"); 1512be70f79SJohn Dyson 15224a1cce3SDavid Greenman if (object == NULL) { 153df8bae1dSRodney W. Grimes /* 154df8bae1dSRodney W. Grimes * And an object of the appropriate size 155df8bae1dSRodney W. Grimes */ 1566cde7a16SDavid Greenman object = vm_object_allocate(OBJT_VNODE, OFF_TO_IDX(round_page(size))); 157bbc0ec52SDavid Greenman 1586cde7a16SDavid Greenman object->un_pager.vnp.vnp_size = size; 15926f9a767SRodney W. Grimes 16024a1cce3SDavid Greenman object->handle = handle; 16124a1cce3SDavid Greenman vp->v_object = object; 162df8bae1dSRodney W. Grimes } else { 16395e5e988SJohn Dyson object->ref_count++; 1641ca58953SAlan Cox VM_OBJECT_UNLOCK(object); 165df8bae1dSRodney W. Grimes } 166e6e370a7SJeff Roberson VI_LOCK(vp); 167990ab7adSAlan Cox vp->v_usecount++; 168e6e370a7SJeff Roberson vp->v_iflag &= ~VI_OLOCK; 169e6e370a7SJeff Roberson if (vp->v_iflag & VI_OWANT) { 170e6e370a7SJeff Roberson vp->v_iflag &= ~VI_OWANT; 17139d38f93SDavid Greenman wakeup(vp); 17239d38f93SDavid Greenman } 173e6e370a7SJeff Roberson VI_UNLOCK(vp); 174990ab7adSAlan Cox mtx_unlock(&Giant); 17524a1cce3SDavid Greenman return (object); 176df8bae1dSRodney W. Grimes } 177df8bae1dSRodney W. Grimes 178658ad5ffSAlan Cox /* 179658ad5ffSAlan Cox * The object must be locked. 180658ad5ffSAlan Cox */ 181f708ef1bSPoul-Henning Kamp static void 18224a1cce3SDavid Greenman vnode_pager_dealloc(object) 1830d94caffSDavid Greenman vm_object_t object; 18424a1cce3SDavid Greenman { 18554d92145SMatthew Dillon struct vnode *vp = object->handle; 186df8bae1dSRodney W. Grimes 18724a1cce3SDavid Greenman if (vp == NULL) 18824a1cce3SDavid Greenman panic("vnode_pager_dealloc: pager already dealloced"); 18924a1cce3SDavid Greenman 190658ad5ffSAlan Cox VM_OBJECT_LOCK_ASSERT(object, MA_OWNED); 19166095752SJohn Dyson vm_object_pip_wait(object, "vnpdea"); 19224a1cce3SDavid Greenman 19324a1cce3SDavid Greenman object->handle = NULL; 19495461b45SJohn Dyson object->type = OBJT_DEAD; 195e6e370a7SJeff Roberson ASSERT_VOP_LOCKED(vp, "vnode_pager_dealloc"); 196aa2cabb9SDavid Greenman vp->v_object = NULL; 197e6e370a7SJeff Roberson vp->v_vflag &= ~(VV_TEXT | VV_OBJBUF); 198df8bae1dSRodney W. Grimes } 19926f9a767SRodney W. Grimes 200f708ef1bSPoul-Henning Kamp static boolean_t 201a316d390SJohn Dyson vnode_pager_haspage(object, pindex, before, after) 20224a1cce3SDavid Greenman vm_object_t object; 203a316d390SJohn Dyson vm_pindex_t pindex; 20424a1cce3SDavid Greenman int *before; 20524a1cce3SDavid Greenman int *after; 206df8bae1dSRodney W. Grimes { 20724a1cce3SDavid Greenman struct vnode *vp = object->handle; 20898b0c789SPoul-Henning Kamp daddr_t bn; 2093af76890SPoul-Henning Kamp int err; 210170db9c6SJohn Dyson daddr_t reqblock; 2112c4488fcSJohn Dyson int poff; 2122c4488fcSJohn Dyson int bsize; 213d63596ceSJohn Dyson int pagesperblock, blocksperpage; 214df8bae1dSRodney W. Grimes 215f29ba63eSAlan Cox VM_OBJECT_LOCK_ASSERT(object, MA_OWNED); 21624579ca1SMatthew Dillon /* 21724579ca1SMatthew Dillon * If no vp or vp is doomed or marked transparent to VM, we do not 21824579ca1SMatthew Dillon * have the page. 21924579ca1SMatthew Dillon */ 220e6e370a7SJeff Roberson if (vp == NULL) 22147221757SJohn Dyson return FALSE; 22247221757SJohn Dyson 22363e7e60dSJeff Roberson VI_LOCK(vp); 22463e7e60dSJeff Roberson if (vp->v_iflag & VI_DOOMED) { 22563e7e60dSJeff Roberson VI_UNLOCK(vp); 226e6e370a7SJeff Roberson return FALSE; 22763e7e60dSJeff Roberson } 22863e7e60dSJeff Roberson VI_UNLOCK(vp); 229df8bae1dSRodney W. Grimes /* 2300d94caffSDavid Greenman * If filesystem no longer mounted or offset beyond end of file we do 2310d94caffSDavid Greenman * not have the page. 232df8bae1dSRodney W. Grimes */ 233a316d390SJohn Dyson if ((vp->v_mount == NULL) || 234a316d390SJohn Dyson (IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size)) 2354abc71c0SDavid Greenman return FALSE; 236df8bae1dSRodney W. Grimes 237eed2d59bSDavid Greenman bsize = vp->v_mount->mnt_stat.f_iosize; 238170db9c6SJohn Dyson pagesperblock = bsize / PAGE_SIZE; 239d63596ceSJohn Dyson blocksperpage = 0; 240d63596ceSJohn Dyson if (pagesperblock > 0) { 241a316d390SJohn Dyson reqblock = pindex / pagesperblock; 242d63596ceSJohn Dyson } else { 243d63596ceSJohn Dyson blocksperpage = (PAGE_SIZE / bsize); 244d63596ceSJohn Dyson reqblock = pindex * blocksperpage; 245d63596ceSJohn Dyson } 246f29ba63eSAlan Cox VM_OBJECT_UNLOCK(object); 247ec794849SPoul-Henning Kamp err = VOP_BMAP(vp, reqblock, NULL, &bn, after, before); 248f29ba63eSAlan Cox VM_OBJECT_LOCK(object); 2490d94caffSDavid Greenman if (err) 25024a1cce3SDavid Greenman return TRUE; 2516eab77f2SJohn Dyson if (bn == -1) 252ced399eeSJohn Dyson return FALSE; 253d63596ceSJohn Dyson if (pagesperblock > 0) { 254a316d390SJohn Dyson poff = pindex - (reqblock * pagesperblock); 255170db9c6SJohn Dyson if (before) { 256170db9c6SJohn Dyson *before *= pagesperblock; 257170db9c6SJohn Dyson *before += poff; 258170db9c6SJohn Dyson } 259170db9c6SJohn Dyson if (after) { 260b1fc01b7SJohn Dyson int numafter; 261170db9c6SJohn Dyson *after *= pagesperblock; 262b1fc01b7SJohn Dyson numafter = pagesperblock - (poff + 1); 26347e151ddSRobert Drehmel if (IDX_TO_OFF(pindex + numafter) > 26447e151ddSRobert Drehmel object->un_pager.vnp.vnp_size) { 26547e151ddSRobert Drehmel numafter = 26647e151ddSRobert Drehmel OFF_TO_IDX(object->un_pager.vnp.vnp_size) - 26747e151ddSRobert Drehmel pindex; 268b1fc01b7SJohn Dyson } 269b1fc01b7SJohn Dyson *after += numafter; 270170db9c6SJohn Dyson } 271d63596ceSJohn Dyson } else { 272d63596ceSJohn Dyson if (before) { 273d63596ceSJohn Dyson *before /= blocksperpage; 274d63596ceSJohn Dyson } 275d63596ceSJohn Dyson 276d63596ceSJohn Dyson if (after) { 277d63596ceSJohn Dyson *after /= blocksperpage; 278d63596ceSJohn Dyson } 279d63596ceSJohn Dyson } 280ced399eeSJohn Dyson return TRUE; 281df8bae1dSRodney W. Grimes } 282df8bae1dSRodney W. Grimes 283df8bae1dSRodney W. Grimes /* 284df8bae1dSRodney W. Grimes * Lets the VM system know about a change in size for a file. 28524a1cce3SDavid Greenman * We adjust our own internal size and flush any cached pages in 286df8bae1dSRodney W. Grimes * the associated object that are affected by the size change. 287df8bae1dSRodney W. Grimes * 288df8bae1dSRodney W. Grimes * Note: this routine may be invoked as a result of a pager put 289df8bae1dSRodney W. Grimes * operation (possibly at object termination time), so we must be careful. 290df8bae1dSRodney W. Grimes */ 291df8bae1dSRodney W. Grimes void 292df8bae1dSRodney W. Grimes vnode_pager_setsize(vp, nsize) 293df8bae1dSRodney W. Grimes struct vnode *vp; 294a316d390SJohn Dyson vm_ooffset_t nsize; 295df8bae1dSRodney W. Grimes { 2962a8f9ab5SAlan Cox vm_object_t object; 2972a8f9ab5SAlan Cox vm_page_t m; 298c576d121SLuoqi Chen vm_pindex_t nobjsize; 299df8bae1dSRodney W. Grimes 3002a8f9ab5SAlan Cox if ((object = vp->v_object) == NULL) 301df8bae1dSRodney W. Grimes return; 3022a8f9ab5SAlan Cox VM_OBJECT_LOCK(object); 3032a8f9ab5SAlan Cox if (nsize == object->un_pager.vnp.vnp_size) { 304df8bae1dSRodney W. Grimes /* 305df8bae1dSRodney W. Grimes * Hasn't changed size 306df8bae1dSRodney W. Grimes */ 3072a8f9ab5SAlan Cox VM_OBJECT_UNLOCK(object); 308df8bae1dSRodney W. Grimes return; 3092a8f9ab5SAlan Cox } 310c576d121SLuoqi Chen nobjsize = OFF_TO_IDX(nsize + PAGE_MASK); 3112a8f9ab5SAlan Cox if (nsize < object->un_pager.vnp.vnp_size) { 312df8bae1dSRodney W. Grimes /* 313bbc0ec52SDavid Greenman * File has shrunk. Toss any cached pages beyond the new EOF. 314df8bae1dSRodney W. Grimes */ 3152a8f9ab5SAlan Cox if (nobjsize < object->size) 316c576d121SLuoqi Chen vm_object_page_remove(object, nobjsize, object->size, 317c576d121SLuoqi Chen FALSE); 318bbc0ec52SDavid Greenman /* 319bbc0ec52SDavid Greenman * this gets rid of garbage at the end of a page that is now 3203ebeaf59SMatthew Dillon * only partially backed by the vnode. 3213ebeaf59SMatthew Dillon * 3223ebeaf59SMatthew Dillon * XXX for some reason (I don't know yet), if we take a 3233ebeaf59SMatthew Dillon * completely invalid page and mark it partially valid 3243ebeaf59SMatthew Dillon * it can screw up NFS reads, so we don't allow the case. 325bbc0ec52SDavid Greenman */ 3262a8f9ab5SAlan Cox if ((nsize & PAGE_MASK) && 3271b26eb10SAlan Cox (m = vm_page_lookup(object, OFF_TO_IDX(nsize))) != NULL && 3281b26eb10SAlan Cox m->valid != 0) { 3292b6b0df7SMatthew Dillon int base = (int)nsize & PAGE_MASK; 3302b6b0df7SMatthew Dillon int size = PAGE_SIZE - base; 3312b6b0df7SMatthew Dillon 3322b6b0df7SMatthew Dillon /* 3332b6b0df7SMatthew Dillon * Clear out partial-page garbage in case 3342b6b0df7SMatthew Dillon * the page has been mapped. 3352b6b0df7SMatthew Dillon */ 336fff6062aSAlan Cox pmap_zero_page_area(m, base, size); 3372b6b0df7SMatthew Dillon 3382b6b0df7SMatthew Dillon /* 3393ebeaf59SMatthew Dillon * XXX work around SMP data integrity race 3403ebeaf59SMatthew Dillon * by unmapping the page from user processes. 3413ebeaf59SMatthew Dillon * The garbage we just cleared may be mapped 3423ebeaf59SMatthew Dillon * to a user process running on another cpu 3433ebeaf59SMatthew Dillon * and this code is not running through normal 3443ebeaf59SMatthew Dillon * I/O channels which handle SMP issues for 3453ebeaf59SMatthew Dillon * us, so unmap page to synchronize all cpus. 3463ebeaf59SMatthew Dillon * 3473ebeaf59SMatthew Dillon * XXX should vm_pager_unmap_page() have 3483ebeaf59SMatthew Dillon * dealt with this? 3493ebeaf59SMatthew Dillon */ 3501b26eb10SAlan Cox vm_page_lock_queues(); 3514fec79beSAlan Cox pmap_remove_all(m); 3523ebeaf59SMatthew Dillon 3533ebeaf59SMatthew Dillon /* 3542b6b0df7SMatthew Dillon * Clear out partial-page dirty bits. This 3552b6b0df7SMatthew Dillon * has the side effect of setting the valid 3562b6b0df7SMatthew Dillon * bits, but that is ok. There are a bunch 3572b6b0df7SMatthew Dillon * of places in the VM system where we expected 3582b6b0df7SMatthew Dillon * m->dirty == VM_PAGE_BITS_ALL. The file EOF 3592b6b0df7SMatthew Dillon * case is one of them. If the page is still 3602b6b0df7SMatthew Dillon * partially dirty, make it fully dirty. 3613ebeaf59SMatthew Dillon * 3623ebeaf59SMatthew Dillon * note that we do not clear out the valid 3633ebeaf59SMatthew Dillon * bits. This would prevent bogus_page 3643ebeaf59SMatthew Dillon * replacement from working properly. 3652b6b0df7SMatthew Dillon */ 3662b6b0df7SMatthew Dillon vm_page_set_validclean(m, base, size); 3672b6b0df7SMatthew Dillon if (m->dirty != 0) 3682b6b0df7SMatthew Dillon m->dirty = VM_PAGE_BITS_ALL; 3692a8f9ab5SAlan Cox vm_page_unlock_queues(); 370bbc0ec52SDavid Greenman } 371bbc0ec52SDavid Greenman } 372a316d390SJohn Dyson object->un_pager.vnp.vnp_size = nsize; 373c576d121SLuoqi Chen object->size = nobjsize; 3742a8f9ab5SAlan Cox VM_OBJECT_UNLOCK(object); 375df8bae1dSRodney W. Grimes } 376df8bae1dSRodney W. Grimes 37726f9a767SRodney W. Grimes /* 37826f9a767SRodney W. Grimes * calculate the linear (byte) disk address of specified virtual 37926f9a767SRodney W. Grimes * file address 38026f9a767SRodney W. Grimes */ 381f708ef1bSPoul-Henning Kamp static vm_offset_t 382efc68ce1SDavid Greenman vnode_pager_addr(vp, address, run) 38326f9a767SRodney W. Grimes struct vnode *vp; 384a316d390SJohn Dyson vm_ooffset_t address; 385efc68ce1SDavid Greenman int *run; 38626f9a767SRodney W. Grimes { 38726f9a767SRodney W. Grimes int rtaddress; 38826f9a767SRodney W. Grimes int bsize; 38998b0c789SPoul-Henning Kamp daddr_t block; 39026f9a767SRodney W. Grimes int err; 391a316d390SJohn Dyson daddr_t vblock; 392a316d390SJohn Dyson int voffset; 39326f9a767SRodney W. Grimes 3940cddd8f0SMatthew Dillon GIANT_REQUIRED; 3950d94caffSDavid Greenman if ((int) address < 0) 3960d94caffSDavid Greenman return -1; 3970d94caffSDavid Greenman 3982c4488fcSJohn Dyson if (vp->v_mount == NULL) 3992c4488fcSJohn Dyson return -1; 4002c4488fcSJohn Dyson 40126f9a767SRodney W. Grimes bsize = vp->v_mount->mnt_stat.f_iosize; 40226f9a767SRodney W. Grimes vblock = address / bsize; 40326f9a767SRodney W. Grimes voffset = address % bsize; 40426f9a767SRodney W. Grimes 405ec794849SPoul-Henning Kamp err = VOP_BMAP(vp, vblock, NULL, &block, run, NULL); 40626f9a767SRodney W. Grimes 407efc68ce1SDavid Greenman if (err || (block == -1)) 40826f9a767SRodney W. Grimes rtaddress = -1; 409efc68ce1SDavid Greenman else { 410187f0071SDavid Greenman rtaddress = block + voffset / DEV_BSIZE; 411efc68ce1SDavid Greenman if (run) { 412efc68ce1SDavid Greenman *run += 1; 413efc68ce1SDavid Greenman *run *= bsize/PAGE_SIZE; 414efc68ce1SDavid Greenman *run -= voffset/PAGE_SIZE; 415efc68ce1SDavid Greenman } 416efc68ce1SDavid Greenman } 41726f9a767SRodney W. Grimes 41826f9a767SRodney W. Grimes return rtaddress; 41926f9a767SRodney W. Grimes } 42026f9a767SRodney W. Grimes 42126f9a767SRodney W. Grimes /* 42226f9a767SRodney W. Grimes * small block filesystem vnode pager input 42326f9a767SRodney W. Grimes */ 424f708ef1bSPoul-Henning Kamp static int 42524a1cce3SDavid Greenman vnode_pager_input_smlfs(object, m) 42624a1cce3SDavid Greenman vm_object_t object; 42726f9a767SRodney W. Grimes vm_page_t m; 42826f9a767SRodney W. Grimes { 42926f9a767SRodney W. Grimes int i; 43026f9a767SRodney W. Grimes struct vnode *dp, *vp; 43126f9a767SRodney W. Grimes struct buf *bp; 43226f9a767SRodney W. Grimes vm_offset_t kva; 43326f9a767SRodney W. Grimes int fileaddr; 43426f9a767SRodney W. Grimes vm_offset_t bsize; 43526f9a767SRodney W. Grimes int error = 0; 43626f9a767SRodney W. Grimes 4370cddd8f0SMatthew Dillon GIANT_REQUIRED; 4380cddd8f0SMatthew Dillon 43924a1cce3SDavid Greenman vp = object->handle; 4402c4488fcSJohn Dyson if (vp->v_mount == NULL) 4412c4488fcSJohn Dyson return VM_PAGER_BAD; 4422c4488fcSJohn Dyson 44326f9a767SRodney W. Grimes bsize = vp->v_mount->mnt_stat.f_iosize; 4440bdb7528SDavid Greenman 445c83ebe77SJohn Dyson VOP_BMAP(vp, 0, &dp, 0, NULL, NULL); 44626f9a767SRodney W. Grimes 44726f9a767SRodney W. Grimes kva = vm_pager_map_page(m); 44826f9a767SRodney W. Grimes 44926f9a767SRodney W. Grimes for (i = 0; i < PAGE_SIZE / bsize; i++) { 45033c67741SMatthew Dillon vm_ooffset_t address; 451bbc0ec52SDavid Greenman 452897a45efSDmitrij Tejblum if (vm_page_bits(i * bsize, bsize) & m->valid) 45326f9a767SRodney W. Grimes continue; 45426f9a767SRodney W. Grimes 45533c67741SMatthew Dillon address = IDX_TO_OFF(m->pindex) + i * bsize; 45633c67741SMatthew Dillon if (address >= object->un_pager.vnp.vnp_size) { 45733c67741SMatthew Dillon fileaddr = -1; 45833c67741SMatthew Dillon } else { 45933c67741SMatthew Dillon fileaddr = vnode_pager_addr(vp, address, NULL); 46033c67741SMatthew Dillon } 46126f9a767SRodney W. Grimes if (fileaddr != -1) { 4621c7c3c6aSMatthew Dillon bp = getpbuf(&vnode_pbuf_freecnt); 46326f9a767SRodney W. Grimes 46426f9a767SRodney W. Grimes /* build a minimal buffer header */ 46521144e3bSPoul-Henning Kamp bp->b_iocmd = BIO_READ; 4666a4b5823SPoul-Henning Kamp bp->b_iodone = bdone; 467bd78ceceSJohn Baldwin KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred")); 468bd78ceceSJohn Baldwin KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred")); 469a854ed98SJohn Baldwin bp->b_rcred = crhold(curthread->td_ucred); 470a854ed98SJohn Baldwin bp->b_wcred = crhold(curthread->td_ucred); 471ab3f7469SPoul-Henning Kamp bp->b_data = (caddr_t) kva + i * bsize; 472187f0071SDavid Greenman bp->b_blkno = fileaddr; 4730d94caffSDavid Greenman pbgetvp(dp, bp); 47426f9a767SRodney W. Grimes bp->b_bcount = bsize; 47526f9a767SRodney W. Grimes bp->b_bufsize = bsize; 4762b6b0df7SMatthew Dillon bp->b_runningbufspace = bp->b_bufsize; 4772b6b0df7SMatthew Dillon runningbufspace += bp->b_runningbufspace; 47826f9a767SRodney W. Grimes 47926f9a767SRodney W. Grimes /* do the input */ 4802c18019fSPoul-Henning Kamp bp->b_iooffset = dbtob(bp->b_blkno); 4815266a767SPoul-Henning Kamp VOP_SPECSTRATEGY(bp->b_vp, bp); 48226f9a767SRodney W. Grimes 483e47ed70bSJohn Dyson /* we definitely need to be at splvm here */ 48426f9a767SRodney W. Grimes 4856a4b5823SPoul-Henning Kamp bwait(bp, PVM, "vnsrd"); 4866a4b5823SPoul-Henning Kamp 487c244d2deSPoul-Henning Kamp if ((bp->b_ioflags & BIO_ERROR) != 0) 48826f9a767SRodney W. Grimes error = EIO; 48926f9a767SRodney W. Grimes 49026f9a767SRodney W. Grimes /* 49126f9a767SRodney W. Grimes * free the buffer header back to the swap buffer pool 49226f9a767SRodney W. Grimes */ 4931c7c3c6aSMatthew Dillon relpbuf(bp, &vnode_pbuf_freecnt); 49426f9a767SRodney W. Grimes if (error) 49526f9a767SRodney W. Grimes break; 4960d94caffSDavid Greenman 497178949e0SAlan Cox vm_page_lock_queues(); 498aa8de40aSPoul-Henning Kamp vm_page_set_validclean(m, (i * bsize) & PAGE_MASK, bsize); 499178949e0SAlan Cox vm_page_unlock_queues(); 50026f9a767SRodney W. Grimes } else { 501178949e0SAlan Cox vm_page_lock_queues(); 502aa8de40aSPoul-Henning Kamp vm_page_set_validclean(m, (i * bsize) & PAGE_MASK, bsize); 503178949e0SAlan Cox vm_page_unlock_queues(); 50426f9a767SRodney W. Grimes bzero((caddr_t) kva + i * bsize, bsize); 50526f9a767SRodney W. Grimes } 50626f9a767SRodney W. Grimes } 50726f9a767SRodney W. Grimes vm_pager_unmap_page(kva); 50885e01243SAlan Cox vm_page_lock_queues(); 5090385347cSPeter Wemm pmap_clear_modify(m); 510e69763a3SDoug Rabson vm_page_flag_clear(m, PG_ZERO); 51185e01243SAlan Cox vm_page_unlock_queues(); 51226f9a767SRodney W. Grimes if (error) { 513a83c285cSDavid Greenman return VM_PAGER_ERROR; 51426f9a767SRodney W. Grimes } 51526f9a767SRodney W. Grimes return VM_PAGER_OK; 51626f9a767SRodney W. Grimes 51726f9a767SRodney W. Grimes } 51826f9a767SRodney W. Grimes 51926f9a767SRodney W. Grimes 52026f9a767SRodney W. Grimes /* 52126f9a767SRodney W. Grimes * old style vnode pager output routine 52226f9a767SRodney W. Grimes */ 523f708ef1bSPoul-Henning Kamp static int 52424a1cce3SDavid Greenman vnode_pager_input_old(object, m) 52524a1cce3SDavid Greenman vm_object_t object; 52626f9a767SRodney W. Grimes vm_page_t m; 52726f9a767SRodney W. Grimes { 528df8bae1dSRodney W. Grimes struct uio auio; 529df8bae1dSRodney W. Grimes struct iovec aiov; 53026f9a767SRodney W. Grimes int error; 53126f9a767SRodney W. Grimes int size; 53226f9a767SRodney W. Grimes vm_offset_t kva; 533342a1480SJohn Baldwin struct vnode *vp; 534df8bae1dSRodney W. Grimes 5350cddd8f0SMatthew Dillon GIANT_REQUIRED; 53626f9a767SRodney W. Grimes error = 0; 537bbc0ec52SDavid Greenman 538df8bae1dSRodney W. Grimes /* 53926f9a767SRodney W. Grimes * Return failure if beyond current EOF 54026f9a767SRodney W. Grimes */ 541a316d390SJohn Dyson if (IDX_TO_OFF(m->pindex) >= object->un_pager.vnp.vnp_size) { 54226f9a767SRodney W. Grimes return VM_PAGER_BAD; 54326f9a767SRodney W. Grimes } else { 54426f9a767SRodney W. Grimes size = PAGE_SIZE; 545a316d390SJohn Dyson if (IDX_TO_OFF(m->pindex) + size > object->un_pager.vnp.vnp_size) 546a316d390SJohn Dyson size = object->un_pager.vnp.vnp_size - IDX_TO_OFF(m->pindex); 5470bdb7528SDavid Greenman 54826f9a767SRodney W. Grimes /* 549df8bae1dSRodney W. Grimes * Allocate a kernel virtual address and initialize so that 550df8bae1dSRodney W. Grimes * we can use VOP_READ/WRITE routines. 551df8bae1dSRodney W. Grimes */ 55226f9a767SRodney W. Grimes kva = vm_pager_map_page(m); 5530bdb7528SDavid Greenman 554342a1480SJohn Baldwin vp = object->handle; 555df8bae1dSRodney W. Grimes aiov.iov_base = (caddr_t) kva; 556df8bae1dSRodney W. Grimes aiov.iov_len = size; 557df8bae1dSRodney W. Grimes auio.uio_iov = &aiov; 558df8bae1dSRodney W. Grimes auio.uio_iovcnt = 1; 559a316d390SJohn Dyson auio.uio_offset = IDX_TO_OFF(m->pindex); 560df8bae1dSRodney W. Grimes auio.uio_segflg = UIO_SYSSPACE; 56126f9a767SRodney W. Grimes auio.uio_rw = UIO_READ; 562df8bae1dSRodney W. Grimes auio.uio_resid = size; 563b40ce416SJulian Elischer auio.uio_td = curthread; 56426f9a767SRodney W. Grimes 565a854ed98SJohn Baldwin error = VOP_READ(vp, &auio, 0, curthread->td_ucred); 566df8bae1dSRodney W. Grimes if (!error) { 56754d92145SMatthew Dillon int count = size - auio.uio_resid; 568df8bae1dSRodney W. Grimes 569df8bae1dSRodney W. Grimes if (count == 0) 570df8bae1dSRodney W. Grimes error = EINVAL; 57126f9a767SRodney W. Grimes else if (count != PAGE_SIZE) 57226f9a767SRodney W. Grimes bzero((caddr_t) kva + count, PAGE_SIZE - count); 573df8bae1dSRodney W. Grimes } 57426f9a767SRodney W. Grimes vm_pager_unmap_page(kva); 5751b26eb10SAlan Cox 5761b26eb10SAlan Cox VM_OBJECT_LOCK(object); 577df8bae1dSRodney W. Grimes } 57885e01243SAlan Cox vm_page_lock_queues(); 5790385347cSPeter Wemm pmap_clear_modify(m); 5802c28a105SAlan Cox vm_page_undirty(m); 581e69763a3SDoug Rabson vm_page_flag_clear(m, PG_ZERO); 5821b26eb10SAlan Cox vm_page_unlock_queues(); 5836e3a3f38SRobert V. Baron if (!error) 5846e3a3f38SRobert V. Baron m->valid = VM_PAGE_BITS_ALL; 5851b26eb10SAlan Cox VM_OBJECT_UNLOCK(object); 586a83c285cSDavid Greenman return error ? VM_PAGER_ERROR : VM_PAGER_OK; 58726f9a767SRodney W. Grimes } 58826f9a767SRodney W. Grimes 58926f9a767SRodney W. Grimes /* 59026f9a767SRodney W. Grimes * generic vnode pager input routine 59126f9a767SRodney W. Grimes */ 592170db9c6SJohn Dyson 593ce75f2c3SMike Smith /* 59423955314SAlfred Perlstein * Local media VFS's that do not implement their own VOP_GETPAGES 59547e151ddSRobert Drehmel * should have their VOP_GETPAGES call to vnode_pager_generic_getpages() 59647e151ddSRobert Drehmel * to implement the previous behaviour. 597ce75f2c3SMike Smith * 598ce75f2c3SMike Smith * All other FS's should use the bypass to get to the local media 599ce75f2c3SMike Smith * backing vp's VOP_GETPAGES. 600ce75f2c3SMike Smith */ 601f708ef1bSPoul-Henning Kamp static int 60224a1cce3SDavid Greenman vnode_pager_getpages(object, m, count, reqpage) 60326f9a767SRodney W. Grimes vm_object_t object; 60424a1cce3SDavid Greenman vm_page_t *m; 60524a1cce3SDavid Greenman int count; 60624a1cce3SDavid Greenman int reqpage; 60724a1cce3SDavid Greenman { 608170db9c6SJohn Dyson int rtval; 609170db9c6SJohn Dyson struct vnode *vp; 61086ffbd76SMike Smith int bytes = count * PAGE_SIZE; 61195e5e988SJohn Dyson 612170db9c6SJohn Dyson vp = object->handle; 6138630c117SAlan Cox VM_OBJECT_UNLOCK(object); 61486ffbd76SMike Smith rtval = VOP_GETPAGES(vp, m, bytes, reqpage, 0); 61523955314SAlfred Perlstein KASSERT(rtval != EOPNOTSUPP, 61623955314SAlfred Perlstein ("vnode_pager: FS getpages not implemented\n")); 6178630c117SAlan Cox VM_OBJECT_LOCK(object); 618170db9c6SJohn Dyson return rtval; 619170db9c6SJohn Dyson } 620170db9c6SJohn Dyson 621ce75f2c3SMike Smith /* 622ce75f2c3SMike Smith * This is now called from local media FS's to operate against their 623ce75f2c3SMike Smith * own vnodes if they fail to implement VOP_GETPAGES. 624ce75f2c3SMike Smith */ 625ce75f2c3SMike Smith int 626ce75f2c3SMike Smith vnode_pager_generic_getpages(vp, m, bytecount, reqpage) 627ce75f2c3SMike Smith struct vnode *vp; 628170db9c6SJohn Dyson vm_page_t *m; 629ce75f2c3SMike Smith int bytecount; 630170db9c6SJohn Dyson int reqpage; 631170db9c6SJohn Dyson { 632ce75f2c3SMike Smith vm_object_t object; 633a316d390SJohn Dyson vm_offset_t kva; 6348f9110f6SJohn Dyson off_t foff, tfoff, nextoff; 635e43c2eabSAlan Cox int i, j, size, bsize, first, firstaddr; 636ce75f2c3SMike Smith struct vnode *dp; 637efc68ce1SDavid Greenman int runpg; 638efc68ce1SDavid Greenman int runend; 6390bdb7528SDavid Greenman struct buf *bp; 640ce75f2c3SMike Smith int count; 64126f9a767SRodney W. Grimes int error = 0; 64226f9a767SRodney W. Grimes 6430cddd8f0SMatthew Dillon GIANT_REQUIRED; 644ce75f2c3SMike Smith object = vp->v_object; 645ce75f2c3SMike Smith count = bytecount / PAGE_SIZE; 646ce75f2c3SMike Smith 6472c4488fcSJohn Dyson if (vp->v_mount == NULL) 6482c4488fcSJohn Dyson return VM_PAGER_BAD; 6492c4488fcSJohn Dyson 65026f9a767SRodney W. Grimes bsize = vp->v_mount->mnt_stat.f_iosize; 65126f9a767SRodney W. Grimes 65226f9a767SRodney W. Grimes /* get the UNDERLYING device for the file with VOP_BMAP() */ 653bbc0ec52SDavid Greenman 65426f9a767SRodney W. Grimes /* 655bbc0ec52SDavid Greenman * originally, we did not check for an error return value -- assuming 656bbc0ec52SDavid Greenman * an fs always has a bmap entry point -- that assumption is wrong!!! 65726f9a767SRodney W. Grimes */ 658a316d390SJohn Dyson foff = IDX_TO_OFF(m[reqpage]->pindex); 659bbc0ec52SDavid Greenman 66026f9a767SRodney W. Grimes /* 66116f62314SDavid Greenman * if we can't bmap, use old VOP code 66226f9a767SRodney W. Grimes */ 663c83ebe77SJohn Dyson if (VOP_BMAP(vp, 0, &dp, 0, NULL, NULL)) { 66431953be9SAlan Cox VM_OBJECT_LOCK(object); 665e43c2eabSAlan Cox vm_page_lock_queues(); 666e43c2eabSAlan Cox for (i = 0; i < count; i++) 667e43c2eabSAlan Cox if (i != reqpage) 668d8d5fa88SAlfred Perlstein vm_page_free(m[i]); 669e43c2eabSAlan Cox vm_page_unlock_queues(); 67031953be9SAlan Cox VM_OBJECT_UNLOCK(object); 671976e77fcSDavid Greenman cnt.v_vnodein++; 672976e77fcSDavid Greenman cnt.v_vnodepgsin++; 67324a1cce3SDavid Greenman return vnode_pager_input_old(object, m[reqpage]); 674bbc0ec52SDavid Greenman 67526f9a767SRodney W. Grimes /* 67626f9a767SRodney W. Grimes * if the blocksize is smaller than a page size, then use 67726f9a767SRodney W. Grimes * special small filesystem code. NFS sometimes has a small 67826f9a767SRodney W. Grimes * blocksize, but it can handle large reads itself. 67926f9a767SRodney W. Grimes */ 68026f9a767SRodney W. Grimes } else if ((PAGE_SIZE / bsize) > 1 && 681500b04a2SBruce Evans (vp->v_mount->mnt_stat.f_type != nfs_mount_type)) { 68231953be9SAlan Cox VM_OBJECT_LOCK(object); 683e43c2eabSAlan Cox vm_page_lock_queues(); 684e43c2eabSAlan Cox for (i = 0; i < count; i++) 685e43c2eabSAlan Cox if (i != reqpage) 686d8d5fa88SAlfred Perlstein vm_page_free(m[i]); 687e43c2eabSAlan Cox vm_page_unlock_queues(); 68831953be9SAlan Cox VM_OBJECT_UNLOCK(object); 689976e77fcSDavid Greenman cnt.v_vnodein++; 690976e77fcSDavid Greenman cnt.v_vnodepgsin++; 69124a1cce3SDavid Greenman return vnode_pager_input_smlfs(object, m[reqpage]); 69226f9a767SRodney W. Grimes } 6938d17e694SJulian Elischer 69426f9a767SRodney W. Grimes /* 6958d17e694SJulian Elischer * If we have a completely valid page available to us, we can 6968d17e694SJulian Elischer * clean up and return. Otherwise we have to re-read the 6978d17e694SJulian Elischer * media. 6980d94caffSDavid Greenman */ 69931953be9SAlan Cox VM_OBJECT_LOCK(object); 7008b575f6cSAlan Cox if (m[reqpage]->valid == VM_PAGE_BITS_ALL) { 701e43c2eabSAlan Cox vm_page_lock_queues(); 702e43c2eabSAlan Cox for (i = 0; i < count; i++) 7030d94caffSDavid Greenman if (i != reqpage) 704d8d5fa88SAlfred Perlstein vm_page_free(m[i]); 705e43c2eabSAlan Cox vm_page_unlock_queues(); 70631953be9SAlan Cox VM_OBJECT_UNLOCK(object); 7070d94caffSDavid Greenman return VM_PAGER_OK; 7080d94caffSDavid Greenman } 7098d17e694SJulian Elischer m[reqpage]->valid = 0; 7108b575f6cSAlan Cox VM_OBJECT_UNLOCK(object); 7110bdb7528SDavid Greenman 7120d94caffSDavid Greenman /* 71326f9a767SRodney W. Grimes * here on direct device I/O 71426f9a767SRodney W. Grimes */ 715efc68ce1SDavid Greenman firstaddr = -1; 716a1287949SEivind Eklund 71726f9a767SRodney W. Grimes /* 718efc68ce1SDavid Greenman * calculate the run that includes the required page 71926f9a767SRodney W. Grimes */ 720efc68ce1SDavid Greenman for (first = 0, i = 0; i < count; i = runend) { 721a316d390SJohn Dyson firstaddr = vnode_pager_addr(vp, 722a316d390SJohn Dyson IDX_TO_OFF(m[i]->pindex), &runpg); 723efc68ce1SDavid Greenman if (firstaddr == -1) { 72431953be9SAlan Cox VM_OBJECT_LOCK(object); 72524a1cce3SDavid Greenman if (i == reqpage && foff < object->un_pager.vnp.vnp_size) { 726bf1001faSMaxime Henrion panic("vnode_pager_getpages: unexpected missing page: firstaddr: %d, foff: 0x%jx%08jx, vnp_size: 0x%jx%08jx", 727bf1001faSMaxime Henrion firstaddr, (uintmax_t)(foff >> 32), 728bf1001faSMaxime Henrion (uintmax_t)foff, 729bf1001faSMaxime Henrion (uintmax_t) 730fc62ef1fSBruce Evans (object->un_pager.vnp.vnp_size >> 32), 731bf1001faSMaxime Henrion (uintmax_t)object->un_pager.vnp.vnp_size); 732efc68ce1SDavid Greenman } 733e43c2eabSAlan Cox vm_page_lock_queues(); 734d8d5fa88SAlfred Perlstein vm_page_free(m[i]); 735e43c2eabSAlan Cox vm_page_unlock_queues(); 73631953be9SAlan Cox VM_OBJECT_UNLOCK(object); 737efc68ce1SDavid Greenman runend = i + 1; 738efc68ce1SDavid Greenman first = runend; 739efc68ce1SDavid Greenman continue; 740efc68ce1SDavid Greenman } 741efc68ce1SDavid Greenman runend = i + runpg; 742efc68ce1SDavid Greenman if (runend <= reqpage) { 74331953be9SAlan Cox VM_OBJECT_LOCK(object); 744e43c2eabSAlan Cox vm_page_lock_queues(); 745e43c2eabSAlan Cox for (j = i; j < runend; j++) 746d8d5fa88SAlfred Perlstein vm_page_free(m[j]); 747e43c2eabSAlan Cox vm_page_unlock_queues(); 74831953be9SAlan Cox VM_OBJECT_UNLOCK(object); 74926f9a767SRodney W. Grimes } else { 750efc68ce1SDavid Greenman if (runpg < (count - first)) { 75131953be9SAlan Cox VM_OBJECT_LOCK(object); 752e43c2eabSAlan Cox vm_page_lock_queues(); 753efc68ce1SDavid Greenman for (i = first + runpg; i < count; i++) 754d8d5fa88SAlfred Perlstein vm_page_free(m[i]); 755e43c2eabSAlan Cox vm_page_unlock_queues(); 75631953be9SAlan Cox VM_OBJECT_UNLOCK(object); 757efc68ce1SDavid Greenman count = first + runpg; 75826f9a767SRodney W. Grimes } 759efc68ce1SDavid Greenman break; 76026f9a767SRodney W. Grimes } 761efc68ce1SDavid Greenman first = runend; 762efc68ce1SDavid Greenman } 76326f9a767SRodney W. Grimes 76426f9a767SRodney W. Grimes /* 765bbc0ec52SDavid Greenman * the first and last page have been calculated now, move input pages 766bbc0ec52SDavid Greenman * to be zero based... 76726f9a767SRodney W. Grimes */ 76826f9a767SRodney W. Grimes if (first != 0) { 76926f9a767SRodney W. Grimes for (i = first; i < count; i++) { 77026f9a767SRodney W. Grimes m[i - first] = m[i]; 77126f9a767SRodney W. Grimes } 77226f9a767SRodney W. Grimes count -= first; 77326f9a767SRodney W. Grimes reqpage -= first; 77426f9a767SRodney W. Grimes } 775efc68ce1SDavid Greenman 77626f9a767SRodney W. Grimes /* 77726f9a767SRodney W. Grimes * calculate the file virtual address for the transfer 77826f9a767SRodney W. Grimes */ 779a316d390SJohn Dyson foff = IDX_TO_OFF(m[0]->pindex); 78026f9a767SRodney W. Grimes 78126f9a767SRodney W. Grimes /* 78226f9a767SRodney W. Grimes * calculate the size of the transfer 78326f9a767SRodney W. Grimes */ 78426f9a767SRodney W. Grimes size = count * PAGE_SIZE; 78524a1cce3SDavid Greenman if ((foff + size) > object->un_pager.vnp.vnp_size) 78624a1cce3SDavid Greenman size = object->un_pager.vnp.vnp_size - foff; 78726f9a767SRodney W. Grimes 78826f9a767SRodney W. Grimes /* 78924579ca1SMatthew Dillon * round up physical size for real devices. 79026f9a767SRodney W. Grimes */ 79124579ca1SMatthew Dillon if (dp->v_type == VBLK || dp->v_type == VCHR) { 79224579ca1SMatthew Dillon int secmask = dp->v_rdev->si_bsize_phys - 1; 79324579ca1SMatthew Dillon KASSERT(secmask < PAGE_SIZE, ("vnode_pager_generic_getpages: sector size %d too large\n", secmask + 1)); 79424579ca1SMatthew Dillon size = (size + secmask) & ~secmask; 79524579ca1SMatthew Dillon } 79626f9a767SRodney W. Grimes 7971c7c3c6aSMatthew Dillon bp = getpbuf(&vnode_pbuf_freecnt); 79816f62314SDavid Greenman kva = (vm_offset_t) bp->b_data; 79916f62314SDavid Greenman 80026f9a767SRodney W. Grimes /* 80126f9a767SRodney W. Grimes * and map the pages to be read into the kva 80226f9a767SRodney W. Grimes */ 80316f62314SDavid Greenman pmap_qenter(kva, m, count); 80426f9a767SRodney W. Grimes 80526f9a767SRodney W. Grimes /* build a minimal buffer header */ 80621144e3bSPoul-Henning Kamp bp->b_iocmd = BIO_READ; 8076a4b5823SPoul-Henning Kamp bp->b_iodone = bdone; 808bd78ceceSJohn Baldwin KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred")); 809bd78ceceSJohn Baldwin KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred")); 810a854ed98SJohn Baldwin bp->b_rcred = crhold(curthread->td_ucred); 811a854ed98SJohn Baldwin bp->b_wcred = crhold(curthread->td_ucred); 812187f0071SDavid Greenman bp->b_blkno = firstaddr; 8130d94caffSDavid Greenman pbgetvp(dp, bp); 81426f9a767SRodney W. Grimes bp->b_bcount = size; 81526f9a767SRodney W. Grimes bp->b_bufsize = size; 8162b6b0df7SMatthew Dillon bp->b_runningbufspace = bp->b_bufsize; 8172b6b0df7SMatthew Dillon runningbufspace += bp->b_runningbufspace; 81826f9a767SRodney W. Grimes 819976e77fcSDavid Greenman cnt.v_vnodein++; 820976e77fcSDavid Greenman cnt.v_vnodepgsin += count; 821976e77fcSDavid Greenman 82226f9a767SRodney W. Grimes /* do the input */ 8232c18019fSPoul-Henning Kamp bp->b_iooffset = dbtob(bp->b_blkno); 824ca94e7c4SPoul-Henning Kamp if (dp->v_type == VCHR) 8255266a767SPoul-Henning Kamp VOP_SPECSTRATEGY(bp->b_vp, bp); 826ca94e7c4SPoul-Henning Kamp else 827ca94e7c4SPoul-Henning Kamp VOP_STRATEGY(bp->b_vp, bp); 828976e77fcSDavid Greenman 8296a4b5823SPoul-Henning Kamp bwait(bp, PVM, "vnread"); 83026f9a767SRodney W. Grimes 831c244d2deSPoul-Henning Kamp if ((bp->b_ioflags & BIO_ERROR) != 0) 83226f9a767SRodney W. Grimes error = EIO; 83326f9a767SRodney W. Grimes 83426f9a767SRodney W. Grimes if (!error) { 83526f9a767SRodney W. Grimes if (size != count * PAGE_SIZE) 83626f9a767SRodney W. Grimes bzero((caddr_t) kva + size, PAGE_SIZE * count - size); 83726f9a767SRodney W. Grimes } 83816f62314SDavid Greenman pmap_qremove(kva, count); 83926f9a767SRodney W. Grimes 84026f9a767SRodney W. Grimes /* 84126f9a767SRodney W. Grimes * free the buffer header back to the swap buffer pool 84226f9a767SRodney W. Grimes */ 8431c7c3c6aSMatthew Dillon relpbuf(bp, &vnode_pbuf_freecnt); 84426f9a767SRodney W. Grimes 84531953be9SAlan Cox VM_OBJECT_LOCK(object); 8469d522888SAlan Cox vm_page_lock_queues(); 8478f9110f6SJohn Dyson for (i = 0, tfoff = foff; i < count; i++, tfoff = nextoff) { 8488f9110f6SJohn Dyson vm_page_t mt; 8498f9110f6SJohn Dyson 8508f9110f6SJohn Dyson nextoff = tfoff + PAGE_SIZE; 8518f9110f6SJohn Dyson mt = m[i]; 8528f9110f6SJohn Dyson 85354746b67SDmitrij Tejblum if (nextoff <= object->un_pager.vnp.vnp_size) { 8548d17e694SJulian Elischer /* 8558d17e694SJulian Elischer * Read filled up entire page. 8568d17e694SJulian Elischer */ 8578f9110f6SJohn Dyson mt->valid = VM_PAGE_BITS_ALL; 8582c28a105SAlan Cox vm_page_undirty(mt); /* should be an assert? XXX */ 8590385347cSPeter Wemm pmap_clear_modify(mt); 8608f9110f6SJohn Dyson } else { 8618d17e694SJulian Elischer /* 8628d17e694SJulian Elischer * Read did not fill up entire page. Since this 8638d17e694SJulian Elischer * is getpages, the page may be mapped, so we have 8648d17e694SJulian Elischer * to zero the invalid portions of the page even 8658d17e694SJulian Elischer * though we aren't setting them valid. 8668d17e694SJulian Elischer * 8678d17e694SJulian Elischer * Currently we do not set the entire page valid, 8688d17e694SJulian Elischer * we just try to clear the piece that we couldn't 8698d17e694SJulian Elischer * read. 8708d17e694SJulian Elischer */ 87154746b67SDmitrij Tejblum vm_page_set_validclean(mt, 0, 87254746b67SDmitrij Tejblum object->un_pager.vnp.vnp_size - tfoff); 8734221e284SAlan Cox /* handled by vm_fault now */ 8744221e284SAlan Cox /* vm_page_zero_invalid(mt, FALSE); */ 8758f9110f6SJohn Dyson } 8768f9110f6SJohn Dyson 877e69763a3SDoug Rabson vm_page_flag_clear(mt, PG_ZERO); 87826f9a767SRodney W. Grimes if (i != reqpage) { 879bbc0ec52SDavid Greenman 88026f9a767SRodney W. Grimes /* 881bbc0ec52SDavid Greenman * whether or not to leave the page activated is up in 882bbc0ec52SDavid Greenman * the air, but we should put the page on a page queue 883bbc0ec52SDavid Greenman * somewhere. (it already is in the object). Result: 884956f3135SPhilippe Charnier * It appears that empirical results show that 885bbc0ec52SDavid Greenman * deactivating pages is best. 88626f9a767SRodney W. Grimes */ 887bbc0ec52SDavid Greenman 88826f9a767SRodney W. Grimes /* 889bbc0ec52SDavid Greenman * just in case someone was asking for this page we 890bbc0ec52SDavid Greenman * now tell them that it is ok to use 89126f9a767SRodney W. Grimes */ 89226f9a767SRodney W. Grimes if (!error) { 8938f9110f6SJohn Dyson if (mt->flags & PG_WANTED) 8948f9110f6SJohn Dyson vm_page_activate(mt); 89595461b45SJohn Dyson else 8968f9110f6SJohn Dyson vm_page_deactivate(mt); 897e69763a3SDoug Rabson vm_page_wakeup(mt); 89826f9a767SRodney W. Grimes } else { 899d8d5fa88SAlfred Perlstein vm_page_free(mt); 90026f9a767SRodney W. Grimes } 90126f9a767SRodney W. Grimes } 90226f9a767SRodney W. Grimes } 9039d522888SAlan Cox vm_page_unlock_queues(); 90431953be9SAlan Cox VM_OBJECT_UNLOCK(object); 90526f9a767SRodney W. Grimes if (error) { 90624a1cce3SDavid Greenman printf("vnode_pager_getpages: I/O read error\n"); 90726f9a767SRodney W. Grimes } 908a83c285cSDavid Greenman return (error ? VM_PAGER_ERROR : VM_PAGER_OK); 90926f9a767SRodney W. Grimes } 91026f9a767SRodney W. Grimes 911ce75f2c3SMike Smith /* 912ce75f2c3SMike Smith * EOPNOTSUPP is no longer legal. For local media VFS's that do not 913ce75f2c3SMike Smith * implement their own VOP_PUTPAGES, their VOP_PUTPAGES should call to 914ce75f2c3SMike Smith * vnode_pager_generic_putpages() to implement the previous behaviour. 915ce75f2c3SMike Smith * 916ce75f2c3SMike Smith * All other FS's should use the bypass to get to the local media 917ce75f2c3SMike Smith * backing vp's VOP_PUTPAGES. 918ce75f2c3SMike Smith */ 919e4542174SMatthew Dillon static void 920170db9c6SJohn Dyson vnode_pager_putpages(object, m, count, sync, rtvals) 921170db9c6SJohn Dyson vm_object_t object; 922170db9c6SJohn Dyson vm_page_t *m; 923170db9c6SJohn Dyson int count; 924170db9c6SJohn Dyson boolean_t sync; 925170db9c6SJohn Dyson int *rtvals; 926170db9c6SJohn Dyson { 927170db9c6SJohn Dyson int rtval; 928170db9c6SJohn Dyson struct vnode *vp; 929f2a2857bSKirk McKusick struct mount *mp; 93086ffbd76SMike Smith int bytes = count * PAGE_SIZE; 931ad980522SJohn Dyson 9320cddd8f0SMatthew Dillon GIANT_REQUIRED; 9330e3cdf2cSAlan Cox /* 9340e3cdf2cSAlan Cox * Force synchronous operation if we are extremely low on memory 9350e3cdf2cSAlan Cox * to prevent a low-memory deadlock. VOP operations often need to 9360e3cdf2cSAlan Cox * allocate more memory to initiate the I/O ( i.e. do a BMAP 9370e3cdf2cSAlan Cox * operation ). The swapper handles the case by limiting the amount 9380e3cdf2cSAlan Cox * of asynchronous I/O, but that sort of solution doesn't scale well 9390e3cdf2cSAlan Cox * for the vnode pager without a lot of work. 9400e3cdf2cSAlan Cox * 9410e3cdf2cSAlan Cox * Also, the backing vnode's iodone routine may not wake the pageout 9420e3cdf2cSAlan Cox * daemon up. This should be probably be addressed XXX. 9430e3cdf2cSAlan Cox */ 9440e3cdf2cSAlan Cox 9450e3cdf2cSAlan Cox if ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_pageout_free_min) 9460e3cdf2cSAlan Cox sync |= OBJPC_SYNC; 9470e3cdf2cSAlan Cox 9480e3cdf2cSAlan Cox /* 9490e3cdf2cSAlan Cox * Call device-specific putpages function 9500e3cdf2cSAlan Cox */ 951170db9c6SJohn Dyson vp = object->handle; 952f2a2857bSKirk McKusick if (vp->v_type != VREG) 953f2a2857bSKirk McKusick mp = NULL; 954f2a2857bSKirk McKusick (void)vn_start_write(vp, &mp, V_WAIT); 95586ffbd76SMike Smith rtval = VOP_PUTPAGES(vp, m, bytes, sync, rtvals, 0); 95623955314SAlfred Perlstein KASSERT(rtval != EOPNOTSUPP, 95723955314SAlfred Perlstein ("vnode_pager: stale FS putpages\n")); 958f2a2857bSKirk McKusick vn_finished_write(mp); 959170db9c6SJohn Dyson } 960170db9c6SJohn Dyson 961ce75f2c3SMike Smith 96226f9a767SRodney W. Grimes /* 963ce75f2c3SMike Smith * This is now called from local media FS's to operate against their 9644491ea91SEivind Eklund * own vnodes if they fail to implement VOP_PUTPAGES. 9652b6b0df7SMatthew Dillon * 9662b6b0df7SMatthew Dillon * This is typically called indirectly via the pageout daemon and 9672b6b0df7SMatthew Dillon * clustering has already typically occured, so in general we ask the 9682b6b0df7SMatthew Dillon * underlying filesystem to write the data out asynchronously rather 9692b6b0df7SMatthew Dillon * then delayed. 97026f9a767SRodney W. Grimes */ 971ce75f2c3SMike Smith int 9728f9110f6SJohn Dyson vnode_pager_generic_putpages(vp, m, bytecount, flags, rtvals) 973ce75f2c3SMike Smith struct vnode *vp; 97426f9a767SRodney W. Grimes vm_page_t *m; 975ce75f2c3SMike Smith int bytecount; 9768f9110f6SJohn Dyson int flags; 97726f9a767SRodney W. Grimes int *rtvals; 97826f9a767SRodney W. Grimes { 979f6b04d2bSDavid Greenman int i; 980ce75f2c3SMike Smith vm_object_t object; 981ce75f2c3SMike Smith int count; 98226f9a767SRodney W. Grimes 983f6b04d2bSDavid Greenman int maxsize, ncount; 984a316d390SJohn Dyson vm_ooffset_t poffset; 985f6b04d2bSDavid Greenman struct uio auio; 986f6b04d2bSDavid Greenman struct iovec aiov; 987f6b04d2bSDavid Greenman int error; 9888f9110f6SJohn Dyson int ioflags; 98926f9a767SRodney W. Grimes 9900cddd8f0SMatthew Dillon GIANT_REQUIRED; 991ce75f2c3SMike Smith object = vp->v_object; 992ce75f2c3SMike Smith count = bytecount / PAGE_SIZE; 993ce75f2c3SMike Smith 99426f9a767SRodney W. Grimes for (i = 0; i < count; i++) 99526f9a767SRodney W. Grimes rtvals[i] = VM_PAGER_AGAIN; 99626f9a767SRodney W. Grimes 997a316d390SJohn Dyson if ((int) m[0]->pindex < 0) { 99823562e4bSMarcel Moolenaar printf("vnode_pager_putpages: attempt to write meta-data!!! -- 0x%lx(%lx)\n", 99923562e4bSMarcel Moolenaar (long)m[0]->pindex, (u_long)m[0]->dirty); 1000f6b04d2bSDavid Greenman rtvals[0] = VM_PAGER_BAD; 1001f6b04d2bSDavid Greenman return VM_PAGER_BAD; 10020d94caffSDavid Greenman } 10030bdb7528SDavid Greenman 1004f6b04d2bSDavid Greenman maxsize = count * PAGE_SIZE; 1005f6b04d2bSDavid Greenman ncount = count; 100626f9a767SRodney W. Grimes 1007a316d390SJohn Dyson poffset = IDX_TO_OFF(m[0]->pindex); 100800a6f47fSMatthew Dillon 100900a6f47fSMatthew Dillon /* 101000a6f47fSMatthew Dillon * If the page-aligned write is larger then the actual file we 101100a6f47fSMatthew Dillon * have to invalidate pages occuring beyond the file EOF. However, 101200a6f47fSMatthew Dillon * there is an edge case where a file may not be page-aligned where 101300a6f47fSMatthew Dillon * the last page is partially invalid. In this case the filesystem 101400a6f47fSMatthew Dillon * may not properly clear the dirty bits for the entire page (which 101500a6f47fSMatthew Dillon * could be VM_PAGE_BITS_ALL due to the page having been mmap()d). 101600a6f47fSMatthew Dillon * With the page locked we are free to fix-up the dirty bits here. 10173ebeaf59SMatthew Dillon * 10183ebeaf59SMatthew Dillon * We do not under any circumstances truncate the valid bits, as 10193ebeaf59SMatthew Dillon * this will screw up bogus page replacement. 102000a6f47fSMatthew Dillon */ 1021a316d390SJohn Dyson if (maxsize + poffset > object->un_pager.vnp.vnp_size) { 102200a6f47fSMatthew Dillon if (object->un_pager.vnp.vnp_size > poffset) { 102300a6f47fSMatthew Dillon int pgoff; 102400a6f47fSMatthew Dillon 1025a316d390SJohn Dyson maxsize = object->un_pager.vnp.vnp_size - poffset; 1026aa8de40aSPoul-Henning Kamp ncount = btoc(maxsize); 102700a6f47fSMatthew Dillon if ((pgoff = (int)maxsize & PAGE_MASK) != 0) { 1028b7ad744dSAlan Cox vm_page_lock_queues(); 102900a6f47fSMatthew Dillon vm_page_clear_dirty(m[ncount - 1], pgoff, 103000a6f47fSMatthew Dillon PAGE_SIZE - pgoff); 1031b7ad744dSAlan Cox vm_page_unlock_queues(); 103200a6f47fSMatthew Dillon } 103300a6f47fSMatthew Dillon } else { 103400a6f47fSMatthew Dillon maxsize = 0; 103500a6f47fSMatthew Dillon ncount = 0; 103600a6f47fSMatthew Dillon } 1037f6b04d2bSDavid Greenman if (ncount < count) { 1038f6b04d2bSDavid Greenman for (i = ncount; i < count; i++) { 1039f6b04d2bSDavid Greenman rtvals[i] = VM_PAGER_BAD; 1040f6b04d2bSDavid Greenman } 1041f6b04d2bSDavid Greenman } 1042f6b04d2bSDavid Greenman } 104326f9a767SRodney W. Grimes 10442b6b0df7SMatthew Dillon /* 10452b6b0df7SMatthew Dillon * pageouts are already clustered, use IO_ASYNC t o force a bawrite() 10462b6b0df7SMatthew Dillon * rather then a bdwrite() to prevent paging I/O from saturating 104743b7990eSMatthew Dillon * the buffer cache. Dummy-up the sequential heuristic to cause 104843b7990eSMatthew Dillon * large ranges to cluster. If neither IO_SYNC or IO_ASYNC is set, 104943b7990eSMatthew Dillon * the system decides how to cluster. 10502b6b0df7SMatthew Dillon */ 10518f9110f6SJohn Dyson ioflags = IO_VMIO; 105243b7990eSMatthew Dillon if (flags & (VM_PAGER_PUT_SYNC | VM_PAGER_PUT_INVAL)) 105343b7990eSMatthew Dillon ioflags |= IO_SYNC; 105443b7990eSMatthew Dillon else if ((flags & VM_PAGER_CLUSTER_OK) == 0) 105543b7990eSMatthew Dillon ioflags |= IO_ASYNC; 10568f9110f6SJohn Dyson ioflags |= (flags & VM_PAGER_PUT_INVAL) ? IO_INVAL: 0; 105743b7990eSMatthew Dillon ioflags |= IO_SEQMAX << IO_SEQSHIFT; 1058f6b04d2bSDavid Greenman 1059f6b04d2bSDavid Greenman aiov.iov_base = (caddr_t) 0; 1060f6b04d2bSDavid Greenman aiov.iov_len = maxsize; 1061f6b04d2bSDavid Greenman auio.uio_iov = &aiov; 1062f6b04d2bSDavid Greenman auio.uio_iovcnt = 1; 1063a316d390SJohn Dyson auio.uio_offset = poffset; 1064f6b04d2bSDavid Greenman auio.uio_segflg = UIO_NOCOPY; 1065f6b04d2bSDavid Greenman auio.uio_rw = UIO_WRITE; 1066f6b04d2bSDavid Greenman auio.uio_resid = maxsize; 1067b40ce416SJulian Elischer auio.uio_td = (struct thread *) 0; 1068a854ed98SJohn Baldwin error = VOP_WRITE(vp, &auio, ioflags, curthread->td_ucred); 1069976e77fcSDavid Greenman cnt.v_vnodeout++; 1070f6b04d2bSDavid Greenman cnt.v_vnodepgsout += ncount; 1071f6b04d2bSDavid Greenman 1072f6b04d2bSDavid Greenman if (error) { 107324a1cce3SDavid Greenman printf("vnode_pager_putpages: I/O error %d\n", error); 1074f6b04d2bSDavid Greenman } 1075f6b04d2bSDavid Greenman if (auio.uio_resid) { 1076ac1e407bSBruce Evans printf("vnode_pager_putpages: residual I/O %d at %lu\n", 1077ac1e407bSBruce Evans auio.uio_resid, (u_long)m[0]->pindex); 107826f9a767SRodney W. Grimes } 1079ffc82b0aSJohn Dyson for (i = 0; i < ncount; i++) { 108026f9a767SRodney W. Grimes rtvals[i] = VM_PAGER_OK; 108126f9a767SRodney W. Grimes } 1082f6b04d2bSDavid Greenman return rtvals[0]; 108326f9a767SRodney W. Grimes } 1084f6b04d2bSDavid Greenman 1085f6b04d2bSDavid Greenman struct vnode * 1086417a26a1SAlan Cox vnode_pager_lock(vm_object_t first_object) 108724a1cce3SDavid Greenman { 1088417a26a1SAlan Cox struct vnode *vp; 1089417a26a1SAlan Cox vm_object_t backing_object, object; 1090996c772fSJohn Dyson 1091417a26a1SAlan Cox VM_OBJECT_LOCK_ASSERT(first_object, MA_OWNED); 1092417a26a1SAlan Cox for (object = first_object; object != NULL; object = backing_object) { 1093417a26a1SAlan Cox if (object->type != OBJT_VNODE) { 1094417a26a1SAlan Cox if ((backing_object = object->backing_object) != NULL) 1095417a26a1SAlan Cox VM_OBJECT_LOCK(backing_object); 1096417a26a1SAlan Cox if (object != first_object) 1097417a26a1SAlan Cox VM_OBJECT_UNLOCK(object); 1098f6b04d2bSDavid Greenman continue; 1099417a26a1SAlan Cox } 1100417a26a1SAlan Cox retry: 1101e6b961ffSJohn Baldwin if (object->flags & OBJ_DEAD) { 1102417a26a1SAlan Cox if (object != first_object) 1103417a26a1SAlan Cox VM_OBJECT_UNLOCK(object); 110447221757SJohn Dyson return NULL; 1105e6b961ffSJohn Baldwin } 1106417a26a1SAlan Cox vp = object->handle; 1107417a26a1SAlan Cox VI_LOCK(vp); 1108417a26a1SAlan Cox VM_OBJECT_UNLOCK(object); 1109417a26a1SAlan Cox if (first_object != object) 1110417a26a1SAlan Cox VM_OBJECT_UNLOCK(first_object); 1111417a26a1SAlan Cox if (vget(vp, LK_CANRECURSE | LK_INTERLOCK | LK_NOPAUSE | 1112417a26a1SAlan Cox LK_RETRY | LK_SHARED, curthread)) { 1113417a26a1SAlan Cox VM_OBJECT_LOCK(first_object); 1114417a26a1SAlan Cox if (object != first_object) 1115417a26a1SAlan Cox VM_OBJECT_LOCK(object); 1116417a26a1SAlan Cox if (object->type != OBJT_VNODE) { 1117417a26a1SAlan Cox if (object != first_object) 1118417a26a1SAlan Cox VM_OBJECT_UNLOCK(object); 1119bef608bdSJohn Dyson return NULL; 1120417a26a1SAlan Cox } 112147221757SJohn Dyson printf("vnode_pager_lock: retrying\n"); 1122417a26a1SAlan Cox goto retry; 112347221757SJohn Dyson } 1124417a26a1SAlan Cox VM_OBJECT_LOCK(first_object); 1125417a26a1SAlan Cox return (vp); 112626f9a767SRodney W. Grimes } 112724a1cce3SDavid Greenman return NULL; 1128f6b04d2bSDavid Greenman } 1129