xref: /freebsd/sys/vm/vnode_pager.c (revision 73e9030e61885884ad1a0ee89a8dc2f945048d91)
160727d8bSWarner Losh /*-
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>
64d07a6d3fSPoul-Henning Kamp #include <sys/limits.h>
6524579ca1SMatthew Dillon #include <sys/conf.h>
6689f6b863SAttilio Rao #include <sys/rwlock.h>
679e0ddbd0SAlan Cox #include <sys/sf_buf.h>
68df8bae1dSRodney W. Grimes 
694f12e0acSSuleiman Souhlal #include <machine/atomic.h>
704f12e0acSSuleiman Souhlal 
71df8bae1dSRodney W. Grimes #include <vm/vm.h>
721c771f92SKonstantin Belousov #include <vm/vm_param.h>
73efeaf95aSDavid Greenman #include <vm/vm_object.h>
74df8bae1dSRodney W. Grimes #include <vm/vm_page.h>
7524a1cce3SDavid Greenman #include <vm/vm_pager.h>
761efb74fbSJohn Dyson #include <vm/vm_map.h>
77df8bae1dSRodney W. Grimes #include <vm/vnode_pager.h>
78efeaf95aSDavid Greenman #include <vm/vm_extern.h>
79df8bae1dSRodney W. Grimes 
80bff76343SAlan Cox static int vnode_pager_addr(struct vnode *vp, vm_ooffset_t address,
81bff76343SAlan Cox     daddr_t *rtaddress, int *run);
8211caded3SAlfred Perlstein static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m);
8311caded3SAlfred Perlstein static int vnode_pager_input_old(vm_object_t object, vm_page_t m);
8411caded3SAlfred Perlstein static void vnode_pager_dealloc(vm_object_t);
8590effb23SGleb Smirnoff static int vnode_pager_local_getpages0(struct vnode *, vm_page_t *, int, int,
8690effb23SGleb Smirnoff     vop_getpages_iodone_t, void *);
8711caded3SAlfred Perlstein static int vnode_pager_getpages(vm_object_t, vm_page_t *, int, int);
8890effb23SGleb Smirnoff static int vnode_pager_getpages_async(vm_object_t, vm_page_t *, int, int,
8990effb23SGleb Smirnoff     vop_getpages_iodone_t, void *);
9033cad9e9SKonstantin Belousov static void vnode_pager_putpages(vm_object_t, vm_page_t *, int, int, int *);
9111caded3SAlfred Perlstein static boolean_t vnode_pager_haspage(vm_object_t, vm_pindex_t, int *, int *);
923364c323SKonstantin Belousov static vm_object_t vnode_pager_alloc(void *, vm_ooffset_t, vm_prot_t,
933364c323SKonstantin Belousov     vm_ooffset_t, struct ucred *cred);
9490effb23SGleb Smirnoff static int vnode_pager_generic_getpages_done(struct buf *);
9590effb23SGleb Smirnoff static void vnode_pager_generic_getpages_done_async(struct buf *);
960b8253a7SBruce Evans 
97df8bae1dSRodney W. Grimes struct pagerops vnodepagerops = {
984e658600SPoul-Henning Kamp 	.pgo_alloc =	vnode_pager_alloc,
994e658600SPoul-Henning Kamp 	.pgo_dealloc =	vnode_pager_dealloc,
1004e658600SPoul-Henning Kamp 	.pgo_getpages =	vnode_pager_getpages,
10190effb23SGleb Smirnoff 	.pgo_getpages_async = vnode_pager_getpages_async,
1024e658600SPoul-Henning Kamp 	.pgo_putpages =	vnode_pager_putpages,
1034e658600SPoul-Henning Kamp 	.pgo_haspage =	vnode_pager_haspage,
104df8bae1dSRodney W. Grimes };
105df8bae1dSRodney W. Grimes 
106b62b9b64SJohn Baldwin int vnode_pbuf_freecnt;
107*73e9030eSGleb Smirnoff int vnode_async_pbuf_freecnt;
1081c7c3c6aSMatthew Dillon 
109d07a6d3fSPoul-Henning Kamp /* Create the VM system backing object for this vnode */
110d07a6d3fSPoul-Henning Kamp int
111731959b1SYaroslav Tykhiy vnode_create_vobject(struct vnode *vp, off_t isize, struct thread *td)
112d07a6d3fSPoul-Henning Kamp {
113d07a6d3fSPoul-Henning Kamp 	vm_object_t object;
114d07a6d3fSPoul-Henning Kamp 	vm_ooffset_t size = isize;
115d07a6d3fSPoul-Henning Kamp 	struct vattr va;
116d07a6d3fSPoul-Henning Kamp 
117d07a6d3fSPoul-Henning Kamp 	if (!vn_isdisk(vp, NULL) && vn_canvmio(vp) == FALSE)
118d07a6d3fSPoul-Henning Kamp 		return (0);
119d07a6d3fSPoul-Henning Kamp 
120d07a6d3fSPoul-Henning Kamp 	while ((object = vp->v_object) != NULL) {
12189f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
122d07a6d3fSPoul-Henning Kamp 		if (!(object->flags & OBJ_DEAD)) {
12389f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
124d07a6d3fSPoul-Henning Kamp 			return (0);
125d07a6d3fSPoul-Henning Kamp 		}
12622db15c0SAttilio Rao 		VOP_UNLOCK(vp, 0);
127d07a6d3fSPoul-Henning Kamp 		vm_object_set_flag(object, OBJ_DISCONNECTWNT);
1280dde287bSAttilio Rao 		VM_OBJECT_SLEEP(object, object, PDROP | PVM, "vodead", 0);
129cb05b60aSAttilio Rao 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
130d07a6d3fSPoul-Henning Kamp 	}
131d07a6d3fSPoul-Henning Kamp 
132d07a6d3fSPoul-Henning Kamp 	if (size == 0) {
133d07a6d3fSPoul-Henning Kamp 		if (vn_isdisk(vp, NULL)) {
134d07a6d3fSPoul-Henning Kamp 			size = IDX_TO_OFF(INT_MAX);
135d07a6d3fSPoul-Henning Kamp 		} else {
1360359a12eSAttilio Rao 			if (VOP_GETATTR(vp, &va, td->td_ucred))
137d07a6d3fSPoul-Henning Kamp 				return (0);
138d07a6d3fSPoul-Henning Kamp 			size = va.va_size;
139d07a6d3fSPoul-Henning Kamp 		}
140d07a6d3fSPoul-Henning Kamp 	}
141d07a6d3fSPoul-Henning Kamp 
1423364c323SKonstantin Belousov 	object = vnode_pager_alloc(vp, size, 0, 0, td->td_ucred);
143d07a6d3fSPoul-Henning Kamp 	/*
144d07a6d3fSPoul-Henning Kamp 	 * Dereference the reference we just created.  This assumes
145d07a6d3fSPoul-Henning Kamp 	 * that the object is associated with the vp.
146d07a6d3fSPoul-Henning Kamp 	 */
14789f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
148d07a6d3fSPoul-Henning Kamp 	object->ref_count--;
14989f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
150d07a6d3fSPoul-Henning Kamp 	vrele(vp);
151d07a6d3fSPoul-Henning Kamp 
152d07a6d3fSPoul-Henning Kamp 	KASSERT(vp->v_object != NULL, ("vnode_create_vobject: NULL object"));
153d07a6d3fSPoul-Henning Kamp 
154d07a6d3fSPoul-Henning Kamp 	return (0);
155d07a6d3fSPoul-Henning Kamp }
156d07a6d3fSPoul-Henning Kamp 
1577146d6cbSPoul-Henning Kamp void
1587146d6cbSPoul-Henning Kamp vnode_destroy_vobject(struct vnode *vp)
1597146d6cbSPoul-Henning Kamp {
1607146d6cbSPoul-Henning Kamp 	struct vm_object *obj;
1617146d6cbSPoul-Henning Kamp 
1627146d6cbSPoul-Henning Kamp 	obj = vp->v_object;
1637146d6cbSPoul-Henning Kamp 	if (obj == NULL)
1647146d6cbSPoul-Henning Kamp 		return;
16557fd3d55SPawel Jakub Dawidek 	ASSERT_VOP_ELOCKED(vp, "vnode_destroy_vobject");
16689f6b863SAttilio Rao 	VM_OBJECT_WLOCK(obj);
1677146d6cbSPoul-Henning Kamp 	if (obj->ref_count == 0) {
1687146d6cbSPoul-Henning Kamp 		/*
1697146d6cbSPoul-Henning Kamp 		 * don't double-terminate the object
1707146d6cbSPoul-Henning Kamp 		 */
1717146d6cbSPoul-Henning Kamp 		if ((obj->flags & OBJ_DEAD) == 0)
1727146d6cbSPoul-Henning Kamp 			vm_object_terminate(obj);
1737146d6cbSPoul-Henning Kamp 		else
17489f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(obj);
1757146d6cbSPoul-Henning Kamp 	} else {
1767146d6cbSPoul-Henning Kamp 		/*
1777146d6cbSPoul-Henning Kamp 		 * Woe to the process that tries to page now :-).
1787146d6cbSPoul-Henning Kamp 		 */
1797146d6cbSPoul-Henning Kamp 		vm_pager_deallocate(obj);
18089f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(obj);
1817146d6cbSPoul-Henning Kamp 	}
1826e4b2820SJeff Roberson 	vp->v_object = NULL;
1837146d6cbSPoul-Henning Kamp }
1847146d6cbSPoul-Henning Kamp 
1857146d6cbSPoul-Henning Kamp 
186df8bae1dSRodney W. Grimes /*
187df8bae1dSRodney W. Grimes  * Allocate (or lookup) pager for a vnode.
188df8bae1dSRodney W. Grimes  * Handle is a vnode pointer.
189990ab7adSAlan Cox  *
190990ab7adSAlan Cox  * MPSAFE
191df8bae1dSRodney W. Grimes  */
19224a1cce3SDavid Greenman vm_object_t
1936cde7a16SDavid Greenman vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
1943364c323SKonstantin Belousov     vm_ooffset_t offset, struct ucred *cred)
195df8bae1dSRodney W. Grimes {
19606cb7259SDavid Greenman 	vm_object_t object;
197df8bae1dSRodney W. Grimes 	struct vnode *vp;
198df8bae1dSRodney W. Grimes 
199df8bae1dSRodney W. Grimes 	/*
200df8bae1dSRodney W. Grimes 	 * Pageout to vnode, no can do yet.
201df8bae1dSRodney W. Grimes 	 */
202df8bae1dSRodney W. Grimes 	if (handle == NULL)
203df8bae1dSRodney W. Grimes 		return (NULL);
204df8bae1dSRodney W. Grimes 
205df8bae1dSRodney W. Grimes 	vp = (struct vnode *) handle;
20639d38f93SDavid Greenman 
20739d38f93SDavid Greenman 	/*
20839d38f93SDavid Greenman 	 * If the object is being terminated, wait for it to
20939d38f93SDavid Greenman 	 * go away.
21039d38f93SDavid Greenman 	 */
2112ac78f0eSStephan Uphoff retry:
2121ca58953SAlan Cox 	while ((object = vp->v_object) != NULL) {
21389f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
2141ca58953SAlan Cox 		if ((object->flags & OBJ_DEAD) == 0)
2151ca58953SAlan Cox 			break;
21619187819SAlan Cox 		vm_object_set_flag(object, OBJ_DISCONNECTWNT);
2170dde287bSAttilio Rao 		VM_OBJECT_SLEEP(object, object, PDROP | PVM, "vadead", 0);
21824a1cce3SDavid Greenman 	}
2190d94caffSDavid Greenman 
2206ded8427SKonstantin Belousov 	KASSERT(vp->v_usecount != 0, ("vnode_pager_alloc: no vnode reference"));
2212be70f79SJohn Dyson 
22224a1cce3SDavid Greenman 	if (object == NULL) {
223df8bae1dSRodney W. Grimes 		/*
2242ac78f0eSStephan Uphoff 		 * Add an object of the appropriate size
225df8bae1dSRodney W. Grimes 		 */
2266cde7a16SDavid Greenman 		object = vm_object_allocate(OBJT_VNODE, OFF_TO_IDX(round_page(size)));
227bbc0ec52SDavid Greenman 
2286cde7a16SDavid Greenman 		object->un_pager.vnp.vnp_size = size;
22984110e7eSKonstantin Belousov 		object->un_pager.vnp.writemappings = 0;
23026f9a767SRodney W. Grimes 
23124a1cce3SDavid Greenman 		object->handle = handle;
23211be8415SStephan Uphoff 		VI_LOCK(vp);
2332ac78f0eSStephan Uphoff 		if (vp->v_object != NULL) {
2342ac78f0eSStephan Uphoff 			/*
2352ac78f0eSStephan Uphoff 			 * Object has been created while we were sleeping
2362ac78f0eSStephan Uphoff 			 */
23711be8415SStephan Uphoff 			VI_UNLOCK(vp);
2382ac78f0eSStephan Uphoff 			vm_object_destroy(object);
2392ac78f0eSStephan Uphoff 			goto retry;
240df8bae1dSRodney W. Grimes 		}
2412ac78f0eSStephan Uphoff 		vp->v_object = object;
24211be8415SStephan Uphoff 		VI_UNLOCK(vp);
24311be8415SStephan Uphoff 	} else {
2442ac78f0eSStephan Uphoff 		object->ref_count++;
24589f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
24611be8415SStephan Uphoff 	}
2477747c038SJeff Roberson 	vref(vp);
24824a1cce3SDavid Greenman 	return (object);
249df8bae1dSRodney W. Grimes }
250df8bae1dSRodney W. Grimes 
251658ad5ffSAlan Cox /*
252658ad5ffSAlan Cox  *	The object must be locked.
253658ad5ffSAlan Cox  */
254f708ef1bSPoul-Henning Kamp static void
2557ebba1f8SGleb Smirnoff vnode_pager_dealloc(vm_object_t object)
25624a1cce3SDavid Greenman {
257b9f180d1SKonstantin Belousov 	struct vnode *vp;
258b9f180d1SKonstantin Belousov 	int refs;
259df8bae1dSRodney W. Grimes 
260b9f180d1SKonstantin Belousov 	vp = object->handle;
26124a1cce3SDavid Greenman 	if (vp == NULL)
26224a1cce3SDavid Greenman 		panic("vnode_pager_dealloc: pager already dealloced");
26324a1cce3SDavid Greenman 
26489f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
26566095752SJohn Dyson 	vm_object_pip_wait(object, "vnpdea");
266b9f180d1SKonstantin Belousov 	refs = object->ref_count;
26724a1cce3SDavid Greenman 
26824a1cce3SDavid Greenman 	object->handle = NULL;
26995461b45SJohn Dyson 	object->type = OBJT_DEAD;
27019187819SAlan Cox 	if (object->flags & OBJ_DISCONNECTWNT) {
27119187819SAlan Cox 		vm_object_clear_flag(object, OBJ_DISCONNECTWNT);
27219187819SAlan Cox 		wakeup(object);
27319187819SAlan Cox 	}
27457fd3d55SPawel Jakub Dawidek 	ASSERT_VOP_ELOCKED(vp, "vnode_pager_dealloc");
27584110e7eSKonstantin Belousov 	if (object->un_pager.vnp.writemappings > 0) {
27684110e7eSKonstantin Belousov 		object->un_pager.vnp.writemappings = 0;
277140dedb8SKonstantin Belousov 		VOP_ADD_WRITECOUNT(vp, -1);
278b47f6241SJohn Baldwin 		CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
279b47f6241SJohn Baldwin 		    __func__, vp, vp->v_writecount);
28084110e7eSKonstantin Belousov 	}
281aa2cabb9SDavid Greenman 	vp->v_object = NULL;
282877d24acSKonstantin Belousov 	VOP_UNSET_TEXT(vp);
28389f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
284b9f180d1SKonstantin Belousov 	while (refs-- > 0)
285b9f180d1SKonstantin Belousov 		vunref(vp);
28689f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
287df8bae1dSRodney W. Grimes }
28826f9a767SRodney W. Grimes 
289f708ef1bSPoul-Henning Kamp static boolean_t
2907ebba1f8SGleb Smirnoff vnode_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before,
2917ebba1f8SGleb Smirnoff     int *after)
292df8bae1dSRodney W. Grimes {
29324a1cce3SDavid Greenman 	struct vnode *vp = object->handle;
29498b0c789SPoul-Henning Kamp 	daddr_t bn;
2953af76890SPoul-Henning Kamp 	int err;
296170db9c6SJohn Dyson 	daddr_t reqblock;
2972c4488fcSJohn Dyson 	int poff;
2982c4488fcSJohn Dyson 	int bsize;
299d63596ceSJohn Dyson 	int pagesperblock, blocksperpage;
300df8bae1dSRodney W. Grimes 
30189f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
30224579ca1SMatthew Dillon 	/*
30324579ca1SMatthew Dillon 	 * If no vp or vp is doomed or marked transparent to VM, we do not
30424579ca1SMatthew Dillon 	 * have the page.
30524579ca1SMatthew Dillon 	 */
306b73f64c4SJeff Roberson 	if (vp == NULL || vp->v_iflag & VI_DOOMED)
30747221757SJohn Dyson 		return FALSE;
308df8bae1dSRodney W. Grimes 	/*
309b73f64c4SJeff Roberson 	 * If the offset is beyond end of file we do
3100d94caffSDavid Greenman 	 * not have the page.
311df8bae1dSRodney W. Grimes 	 */
312b73f64c4SJeff Roberson 	if (IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size)
3134abc71c0SDavid Greenman 		return FALSE;
314df8bae1dSRodney W. Grimes 
315eed2d59bSDavid Greenman 	bsize = vp->v_mount->mnt_stat.f_iosize;
316170db9c6SJohn Dyson 	pagesperblock = bsize / PAGE_SIZE;
317d63596ceSJohn Dyson 	blocksperpage = 0;
318d63596ceSJohn Dyson 	if (pagesperblock > 0) {
319a316d390SJohn Dyson 		reqblock = pindex / pagesperblock;
320d63596ceSJohn Dyson 	} else {
321d63596ceSJohn Dyson 		blocksperpage = (PAGE_SIZE / bsize);
322d63596ceSJohn Dyson 		reqblock = pindex * blocksperpage;
323d63596ceSJohn Dyson 	}
32489f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
325ec794849SPoul-Henning Kamp 	err = VOP_BMAP(vp, reqblock, NULL, &bn, after, before);
32689f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
3270d94caffSDavid Greenman 	if (err)
32824a1cce3SDavid Greenman 		return TRUE;
3296eab77f2SJohn Dyson 	if (bn == -1)
330ced399eeSJohn Dyson 		return FALSE;
331d63596ceSJohn Dyson 	if (pagesperblock > 0) {
332a316d390SJohn Dyson 		poff = pindex - (reqblock * pagesperblock);
333170db9c6SJohn Dyson 		if (before) {
334170db9c6SJohn Dyson 			*before *= pagesperblock;
335170db9c6SJohn Dyson 			*before += poff;
336170db9c6SJohn Dyson 		}
337170db9c6SJohn Dyson 		if (after) {
338b1fc01b7SJohn Dyson 			int numafter;
339170db9c6SJohn Dyson 			*after *= pagesperblock;
340b1fc01b7SJohn Dyson 			numafter = pagesperblock - (poff + 1);
34147e151ddSRobert Drehmel 			if (IDX_TO_OFF(pindex + numafter) >
34247e151ddSRobert Drehmel 			    object->un_pager.vnp.vnp_size) {
34347e151ddSRobert Drehmel 				numafter =
34447e151ddSRobert Drehmel 		    		    OFF_TO_IDX(object->un_pager.vnp.vnp_size) -
34547e151ddSRobert Drehmel 				    pindex;
346b1fc01b7SJohn Dyson 			}
347b1fc01b7SJohn Dyson 			*after += numafter;
348170db9c6SJohn Dyson 		}
349d63596ceSJohn Dyson 	} else {
350d63596ceSJohn Dyson 		if (before) {
351d63596ceSJohn Dyson 			*before /= blocksperpage;
352d63596ceSJohn Dyson 		}
353d63596ceSJohn Dyson 
354d63596ceSJohn Dyson 		if (after) {
355d63596ceSJohn Dyson 			*after /= blocksperpage;
356d63596ceSJohn Dyson 		}
357d63596ceSJohn Dyson 	}
358ced399eeSJohn Dyson 	return TRUE;
359df8bae1dSRodney W. Grimes }
360df8bae1dSRodney W. Grimes 
361df8bae1dSRodney W. Grimes /*
362df8bae1dSRodney W. Grimes  * Lets the VM system know about a change in size for a file.
36324a1cce3SDavid Greenman  * We adjust our own internal size and flush any cached pages in
364df8bae1dSRodney W. Grimes  * the associated object that are affected by the size change.
365df8bae1dSRodney W. Grimes  *
366df8bae1dSRodney W. Grimes  * Note: this routine may be invoked as a result of a pager put
367df8bae1dSRodney W. Grimes  * operation (possibly at object termination time), so we must be careful.
368df8bae1dSRodney W. Grimes  */
369df8bae1dSRodney W. Grimes void
3707ebba1f8SGleb Smirnoff vnode_pager_setsize(struct vnode *vp, vm_ooffset_t nsize)
371df8bae1dSRodney W. Grimes {
3722a8f9ab5SAlan Cox 	vm_object_t object;
3732a8f9ab5SAlan Cox 	vm_page_t m;
374c576d121SLuoqi Chen 	vm_pindex_t nobjsize;
375df8bae1dSRodney W. Grimes 
3762a8f9ab5SAlan Cox 	if ((object = vp->v_object) == NULL)
377df8bae1dSRodney W. Grimes 		return;
378cb61d698SKonstantin Belousov /* 	ASSERT_VOP_ELOCKED(vp, "vnode_pager_setsize and not locked vnode"); */
37989f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
3809b8851faSKonstantin Belousov 	if (object->type == OBJT_DEAD) {
3819b8851faSKonstantin Belousov 		VM_OBJECT_WUNLOCK(object);
3829b8851faSKonstantin Belousov 		return;
3839b8851faSKonstantin Belousov 	}
3849b8851faSKonstantin Belousov 	KASSERT(object->type == OBJT_VNODE,
3859b8851faSKonstantin Belousov 	    ("not vnode-backed object %p", object));
3862a8f9ab5SAlan Cox 	if (nsize == object->un_pager.vnp.vnp_size) {
387df8bae1dSRodney W. Grimes 		/*
388df8bae1dSRodney W. Grimes 		 * Hasn't changed size
389df8bae1dSRodney W. Grimes 		 */
39089f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
391df8bae1dSRodney W. Grimes 		return;
3922a8f9ab5SAlan Cox 	}
393c576d121SLuoqi Chen 	nobjsize = OFF_TO_IDX(nsize + PAGE_MASK);
3942a8f9ab5SAlan Cox 	if (nsize < object->un_pager.vnp.vnp_size) {
395df8bae1dSRodney W. Grimes 		/*
396bbc0ec52SDavid Greenman 		 * File has shrunk. Toss any cached pages beyond the new EOF.
397df8bae1dSRodney W. Grimes 		 */
3982a8f9ab5SAlan Cox 		if (nobjsize < object->size)
399c576d121SLuoqi Chen 			vm_object_page_remove(object, nobjsize, object->size,
4006bbee8e2SAlan Cox 			    0);
401bbc0ec52SDavid Greenman 		/*
402bbc0ec52SDavid Greenman 		 * this gets rid of garbage at the end of a page that is now
4033ebeaf59SMatthew Dillon 		 * only partially backed by the vnode.
4043ebeaf59SMatthew Dillon 		 *
4053ebeaf59SMatthew Dillon 		 * XXX for some reason (I don't know yet), if we take a
4063ebeaf59SMatthew Dillon 		 * completely invalid page and mark it partially valid
4073ebeaf59SMatthew Dillon 		 * it can screw up NFS reads, so we don't allow the case.
408bbc0ec52SDavid Greenman 		 */
4092a8f9ab5SAlan Cox 		if ((nsize & PAGE_MASK) &&
4101b26eb10SAlan Cox 		    (m = vm_page_lookup(object, OFF_TO_IDX(nsize))) != NULL &&
4111b26eb10SAlan Cox 		    m->valid != 0) {
4122b6b0df7SMatthew Dillon 			int base = (int)nsize & PAGE_MASK;
4132b6b0df7SMatthew Dillon 			int size = PAGE_SIZE - base;
4142b6b0df7SMatthew Dillon 
4152b6b0df7SMatthew Dillon 			/*
4162b6b0df7SMatthew Dillon 			 * Clear out partial-page garbage in case
4172b6b0df7SMatthew Dillon 			 * the page has been mapped.
4182b6b0df7SMatthew Dillon 			 */
419fff6062aSAlan Cox 			pmap_zero_page_area(m, base, size);
4202b6b0df7SMatthew Dillon 
4212b6b0df7SMatthew Dillon 			/*
4223c33df62SAlan Cox 			 * Update the valid bits to reflect the blocks that
4233c33df62SAlan Cox 			 * have been zeroed.  Some of these valid bits may
4243c33df62SAlan Cox 			 * have already been set.
4253c33df62SAlan Cox 			 */
426dc874f98SKonstantin Belousov 			vm_page_set_valid_range(m, base, size);
4273c33df62SAlan Cox 
4283c33df62SAlan Cox 			/*
4293c33df62SAlan Cox 			 * Round "base" to the next block boundary so that the
4303c33df62SAlan Cox 			 * dirty bit for a partially zeroed block is not
4313c33df62SAlan Cox 			 * cleared.
4323c33df62SAlan Cox 			 */
4333c33df62SAlan Cox 			base = roundup2(base, DEV_BSIZE);
4343c33df62SAlan Cox 
4353c33df62SAlan Cox 			/*
4363c33df62SAlan Cox 			 * Clear out partial-page dirty bits.
4373ebeaf59SMatthew Dillon 			 *
4383ebeaf59SMatthew Dillon 			 * note that we do not clear out the valid
4393ebeaf59SMatthew Dillon 			 * bits.  This would prevent bogus_page
4403ebeaf59SMatthew Dillon 			 * replacement from working properly.
4412b6b0df7SMatthew Dillon 			 */
4423c33df62SAlan Cox 			vm_page_clear_dirty(m, base, PAGE_SIZE - base);
4430ab3c7a5SAlan Cox 		} else if ((nsize & PAGE_MASK) &&
444db9ba578SAttilio Rao 		    vm_page_is_cached(object, OFF_TO_IDX(nsize))) {
4450ab3c7a5SAlan Cox 			vm_page_cache_free(object, OFF_TO_IDX(nsize),
4460ab3c7a5SAlan Cox 			    nobjsize);
447bbc0ec52SDavid Greenman 		}
448bbc0ec52SDavid Greenman 	}
449a316d390SJohn Dyson 	object->un_pager.vnp.vnp_size = nsize;
450c576d121SLuoqi Chen 	object->size = nobjsize;
45189f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
452df8bae1dSRodney W. Grimes }
453df8bae1dSRodney W. Grimes 
45426f9a767SRodney W. Grimes /*
45526f9a767SRodney W. Grimes  * calculate the linear (byte) disk address of specified virtual
45626f9a767SRodney W. Grimes  * file address
45726f9a767SRodney W. Grimes  */
458bff76343SAlan Cox static int
459bff76343SAlan Cox vnode_pager_addr(struct vnode *vp, vm_ooffset_t address, daddr_t *rtaddress,
460bff76343SAlan Cox     int *run)
46126f9a767SRodney W. Grimes {
46226f9a767SRodney W. Grimes 	int bsize;
46326f9a767SRodney W. Grimes 	int err;
464a316d390SJohn Dyson 	daddr_t vblock;
465f3aad9a6SBjoern A. Zeeb 	daddr_t voffset;
46626f9a767SRodney W. Grimes 
4672ad036b6SAlan Cox 	if (address < 0)
4680d94caffSDavid Greenman 		return -1;
4690d94caffSDavid Greenman 
470b73f64c4SJeff Roberson 	if (vp->v_iflag & VI_DOOMED)
4712c4488fcSJohn Dyson 		return -1;
4722c4488fcSJohn Dyson 
47326f9a767SRodney W. Grimes 	bsize = vp->v_mount->mnt_stat.f_iosize;
47426f9a767SRodney W. Grimes 	vblock = address / bsize;
47526f9a767SRodney W. Grimes 	voffset = address % bsize;
47626f9a767SRodney W. Grimes 
477bff76343SAlan Cox 	err = VOP_BMAP(vp, vblock, NULL, rtaddress, run, NULL);
478bff76343SAlan Cox 	if (err == 0) {
479bff76343SAlan Cox 		if (*rtaddress != -1)
480bff76343SAlan Cox 			*rtaddress += voffset / DEV_BSIZE;
481efc68ce1SDavid Greenman 		if (run) {
482efc68ce1SDavid Greenman 			*run += 1;
483efc68ce1SDavid Greenman 			*run *= bsize/PAGE_SIZE;
484efc68ce1SDavid Greenman 			*run -= voffset/PAGE_SIZE;
485efc68ce1SDavid Greenman 		}
486efc68ce1SDavid Greenman 	}
48726f9a767SRodney W. Grimes 
488bff76343SAlan Cox 	return (err);
48926f9a767SRodney W. Grimes }
49026f9a767SRodney W. Grimes 
49126f9a767SRodney W. Grimes /*
49226f9a767SRodney W. Grimes  * small block filesystem vnode pager input
49326f9a767SRodney W. Grimes  */
494f708ef1bSPoul-Henning Kamp static int
4957ebba1f8SGleb Smirnoff vnode_pager_input_smlfs(vm_object_t object, vm_page_t m)
49626f9a767SRodney W. Grimes {
4979c83534dSPoul-Henning Kamp 	struct vnode *vp;
4989c83534dSPoul-Henning Kamp 	struct bufobj *bo;
49926f9a767SRodney W. Grimes 	struct buf *bp;
5009e0ddbd0SAlan Cox 	struct sf_buf *sf;
501f3aad9a6SBjoern A. Zeeb 	daddr_t fileaddr;
50226f9a767SRodney W. Grimes 	vm_offset_t bsize;
503561cc9fcSKonstantin Belousov 	vm_page_bits_t bits;
504561cc9fcSKonstantin Belousov 	int error, i;
50526f9a767SRodney W. Grimes 
506561cc9fcSKonstantin Belousov 	error = 0;
50724a1cce3SDavid Greenman 	vp = object->handle;
508b73f64c4SJeff Roberson 	if (vp->v_iflag & VI_DOOMED)
5092c4488fcSJohn Dyson 		return VM_PAGER_BAD;
5102c4488fcSJohn Dyson 
51126f9a767SRodney W. Grimes 	bsize = vp->v_mount->mnt_stat.f_iosize;
5120bdb7528SDavid Greenman 
5139c83534dSPoul-Henning Kamp 	VOP_BMAP(vp, 0, &bo, 0, NULL, NULL);
51426f9a767SRodney W. Grimes 
5159e0ddbd0SAlan Cox 	sf = sf_buf_alloc(m, 0);
51626f9a767SRodney W. Grimes 
51726f9a767SRodney W. Grimes 	for (i = 0; i < PAGE_SIZE / bsize; i++) {
51833c67741SMatthew Dillon 		vm_ooffset_t address;
519bbc0ec52SDavid Greenman 
5200d53a17bSAlan Cox 		bits = vm_page_bits(i * bsize, bsize);
5210d53a17bSAlan Cox 		if (m->valid & bits)
52226f9a767SRodney W. Grimes 			continue;
52326f9a767SRodney W. Grimes 
52433c67741SMatthew Dillon 		address = IDX_TO_OFF(m->pindex) + i * bsize;
52533c67741SMatthew Dillon 		if (address >= object->un_pager.vnp.vnp_size) {
52633c67741SMatthew Dillon 			fileaddr = -1;
52733c67741SMatthew Dillon 		} else {
528bff76343SAlan Cox 			error = vnode_pager_addr(vp, address, &fileaddr, NULL);
529bff76343SAlan Cox 			if (error)
530bff76343SAlan Cox 				break;
53133c67741SMatthew Dillon 		}
53226f9a767SRodney W. Grimes 		if (fileaddr != -1) {
5331c7c3c6aSMatthew Dillon 			bp = getpbuf(&vnode_pbuf_freecnt);
53426f9a767SRodney W. Grimes 
53526f9a767SRodney W. Grimes 			/* build a minimal buffer header */
53621144e3bSPoul-Henning Kamp 			bp->b_iocmd = BIO_READ;
5376a4b5823SPoul-Henning Kamp 			bp->b_iodone = bdone;
538bd78ceceSJohn Baldwin 			KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
539bd78ceceSJohn Baldwin 			KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
540a854ed98SJohn Baldwin 			bp->b_rcred = crhold(curthread->td_ucred);
541a854ed98SJohn Baldwin 			bp->b_wcred = crhold(curthread->td_ucred);
5429e0ddbd0SAlan Cox 			bp->b_data = (caddr_t)sf_buf_kva(sf) + i * bsize;
543187f0071SDavid Greenman 			bp->b_blkno = fileaddr;
5449c83534dSPoul-Henning Kamp 			pbgetbo(bo, bp);
5451faacf5dSKirk McKusick 			bp->b_vp = vp;
54626f9a767SRodney W. Grimes 			bp->b_bcount = bsize;
54726f9a767SRodney W. Grimes 			bp->b_bufsize = bsize;
5482b6b0df7SMatthew Dillon 			bp->b_runningbufspace = bp->b_bufsize;
5495bd65606SJohn Baldwin 			atomic_add_long(&runningbufspace, bp->b_runningbufspace);
55026f9a767SRodney W. Grimes 
55126f9a767SRodney W. Grimes 			/* do the input */
5522c18019fSPoul-Henning Kamp 			bp->b_iooffset = dbtob(bp->b_blkno);
553b792bebeSPoul-Henning Kamp 			bstrategy(bp);
55426f9a767SRodney W. Grimes 
5556a4b5823SPoul-Henning Kamp 			bwait(bp, PVM, "vnsrd");
5566a4b5823SPoul-Henning Kamp 
557c244d2deSPoul-Henning Kamp 			if ((bp->b_ioflags & BIO_ERROR) != 0)
55826f9a767SRodney W. Grimes 				error = EIO;
55926f9a767SRodney W. Grimes 
56026f9a767SRodney W. Grimes 			/*
56126f9a767SRodney W. Grimes 			 * free the buffer header back to the swap buffer pool
56226f9a767SRodney W. Grimes 			 */
5631faacf5dSKirk McKusick 			bp->b_vp = NULL;
5649c83534dSPoul-Henning Kamp 			pbrelbo(bp);
5651c7c3c6aSMatthew Dillon 			relpbuf(bp, &vnode_pbuf_freecnt);
56626f9a767SRodney W. Grimes 			if (error)
56726f9a767SRodney W. Grimes 				break;
5680d53a17bSAlan Cox 		} else
5699e0ddbd0SAlan Cox 			bzero((caddr_t)sf_buf_kva(sf) + i * bsize, bsize);
5700d53a17bSAlan Cox 		KASSERT((m->dirty & bits) == 0,
5710d53a17bSAlan Cox 		    ("vnode_pager_input_smlfs: page %p is dirty", m));
57289f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
5730d53a17bSAlan Cox 		m->valid |= bits;
57489f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
57526f9a767SRodney W. Grimes 	}
5769e0ddbd0SAlan Cox 	sf_buf_free(sf);
57726f9a767SRodney W. Grimes 	if (error) {
578a83c285cSDavid Greenman 		return VM_PAGER_ERROR;
57926f9a767SRodney W. Grimes 	}
58026f9a767SRodney W. Grimes 	return VM_PAGER_OK;
58126f9a767SRodney W. Grimes }
58226f9a767SRodney W. Grimes 
58326f9a767SRodney W. Grimes /*
584475e8cc3SPoul-Henning Kamp  * old style vnode pager input routine
58526f9a767SRodney W. Grimes  */
586f708ef1bSPoul-Henning Kamp static int
5877ebba1f8SGleb Smirnoff vnode_pager_input_old(vm_object_t object, vm_page_t m)
58826f9a767SRodney W. Grimes {
589df8bae1dSRodney W. Grimes 	struct uio auio;
590df8bae1dSRodney W. Grimes 	struct iovec aiov;
59126f9a767SRodney W. Grimes 	int error;
59226f9a767SRodney W. Grimes 	int size;
5939e0ddbd0SAlan Cox 	struct sf_buf *sf;
594342a1480SJohn Baldwin 	struct vnode *vp;
595df8bae1dSRodney W. Grimes 
59689f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
59726f9a767SRodney W. Grimes 	error = 0;
598bbc0ec52SDavid Greenman 
599df8bae1dSRodney W. Grimes 	/*
60026f9a767SRodney W. Grimes 	 * Return failure if beyond current EOF
60126f9a767SRodney W. Grimes 	 */
602a316d390SJohn Dyson 	if (IDX_TO_OFF(m->pindex) >= object->un_pager.vnp.vnp_size) {
60326f9a767SRodney W. Grimes 		return VM_PAGER_BAD;
60426f9a767SRodney W. Grimes 	} else {
60526f9a767SRodney W. Grimes 		size = PAGE_SIZE;
606a316d390SJohn Dyson 		if (IDX_TO_OFF(m->pindex) + size > object->un_pager.vnp.vnp_size)
607a316d390SJohn Dyson 			size = object->un_pager.vnp.vnp_size - IDX_TO_OFF(m->pindex);
60852051abcSAlan Cox 		vp = object->handle;
60989f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
6100bdb7528SDavid Greenman 
61126f9a767SRodney W. Grimes 		/*
612df8bae1dSRodney W. Grimes 		 * Allocate a kernel virtual address and initialize so that
613df8bae1dSRodney W. Grimes 		 * we can use VOP_READ/WRITE routines.
614df8bae1dSRodney W. Grimes 		 */
6159e0ddbd0SAlan Cox 		sf = sf_buf_alloc(m, 0);
6160bdb7528SDavid Greenman 
6179e0ddbd0SAlan Cox 		aiov.iov_base = (caddr_t)sf_buf_kva(sf);
618df8bae1dSRodney W. Grimes 		aiov.iov_len = size;
619df8bae1dSRodney W. Grimes 		auio.uio_iov = &aiov;
620df8bae1dSRodney W. Grimes 		auio.uio_iovcnt = 1;
621a316d390SJohn Dyson 		auio.uio_offset = IDX_TO_OFF(m->pindex);
622df8bae1dSRodney W. Grimes 		auio.uio_segflg = UIO_SYSSPACE;
62326f9a767SRodney W. Grimes 		auio.uio_rw = UIO_READ;
624df8bae1dSRodney W. Grimes 		auio.uio_resid = size;
625b40ce416SJulian Elischer 		auio.uio_td = curthread;
62626f9a767SRodney W. Grimes 
627a854ed98SJohn Baldwin 		error = VOP_READ(vp, &auio, 0, curthread->td_ucred);
628df8bae1dSRodney W. Grimes 		if (!error) {
62954d92145SMatthew Dillon 			int count = size - auio.uio_resid;
630df8bae1dSRodney W. Grimes 
631df8bae1dSRodney W. Grimes 			if (count == 0)
632df8bae1dSRodney W. Grimes 				error = EINVAL;
63326f9a767SRodney W. Grimes 			else if (count != PAGE_SIZE)
6349e0ddbd0SAlan Cox 				bzero((caddr_t)sf_buf_kva(sf) + count,
6359e0ddbd0SAlan Cox 				    PAGE_SIZE - count);
636df8bae1dSRodney W. Grimes 		}
6379e0ddbd0SAlan Cox 		sf_buf_free(sf);
6381b26eb10SAlan Cox 
63989f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
640df8bae1dSRodney W. Grimes 	}
6410d53a17bSAlan Cox 	KASSERT(m->dirty == 0, ("vnode_pager_input_old: page %p is dirty", m));
6426e3a3f38SRobert V. Baron 	if (!error)
6436e3a3f38SRobert V. Baron 		m->valid = VM_PAGE_BITS_ALL;
644a83c285cSDavid Greenman 	return error ? VM_PAGER_ERROR : VM_PAGER_OK;
64526f9a767SRodney W. Grimes }
64626f9a767SRodney W. Grimes 
64726f9a767SRodney W. Grimes /*
64826f9a767SRodney W. Grimes  * generic vnode pager input routine
64926f9a767SRodney W. Grimes  */
650170db9c6SJohn Dyson 
651ce75f2c3SMike Smith /*
65223955314SAlfred Perlstein  * Local media VFS's that do not implement their own VOP_GETPAGES
65347e151ddSRobert Drehmel  * should have their VOP_GETPAGES call to vnode_pager_generic_getpages()
65447e151ddSRobert Drehmel  * to implement the previous behaviour.
655ce75f2c3SMike Smith  *
656ce75f2c3SMike Smith  * All other FS's should use the bypass to get to the local media
657ce75f2c3SMike Smith  * backing vp's VOP_GETPAGES.
658ce75f2c3SMike Smith  */
659f708ef1bSPoul-Henning Kamp static int
6607ebba1f8SGleb Smirnoff vnode_pager_getpages(vm_object_t object, vm_page_t *m, int count, int reqpage)
66124a1cce3SDavid Greenman {
662170db9c6SJohn Dyson 	int rtval;
663170db9c6SJohn Dyson 	struct vnode *vp;
66486ffbd76SMike Smith 	int bytes = count * PAGE_SIZE;
66595e5e988SJohn Dyson 
666170db9c6SJohn Dyson 	vp = object->handle;
66789f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
66827ad26d8SGleb Smirnoff 	rtval = VOP_GETPAGES(vp, m, bytes, reqpage);
66923955314SAlfred Perlstein 	KASSERT(rtval != EOPNOTSUPP,
67023955314SAlfred Perlstein 	    ("vnode_pager: FS getpages not implemented\n"));
67189f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
672170db9c6SJohn Dyson 	return rtval;
673170db9c6SJohn Dyson }
674170db9c6SJohn Dyson 
67590effb23SGleb Smirnoff static int
67690effb23SGleb Smirnoff vnode_pager_getpages_async(vm_object_t object, vm_page_t *m, int count,
67790effb23SGleb Smirnoff     int reqpage, vop_getpages_iodone_t iodone, void *arg)
67890effb23SGleb Smirnoff {
67990effb23SGleb Smirnoff 	struct vnode *vp;
68090effb23SGleb Smirnoff 	int rtval;
68190effb23SGleb Smirnoff 
68290effb23SGleb Smirnoff 	vp = object->handle;
68390effb23SGleb Smirnoff 	VM_OBJECT_WUNLOCK(object);
68490effb23SGleb Smirnoff 	rtval = VOP_GETPAGES_ASYNC(vp, m, count * PAGE_SIZE, reqpage, 0,
68590effb23SGleb Smirnoff 	    iodone, arg);
68690effb23SGleb Smirnoff 	KASSERT(rtval != EOPNOTSUPP,
68790effb23SGleb Smirnoff 	    ("vnode_pager: FS getpages_async not implemented\n"));
68890effb23SGleb Smirnoff 	VM_OBJECT_WLOCK(object);
68990effb23SGleb Smirnoff 	return (rtval);
69090effb23SGleb Smirnoff }
69190effb23SGleb Smirnoff 
692ce75f2c3SMike Smith /*
69390effb23SGleb Smirnoff  * The implementation of VOP_GETPAGES() and VOP_GETPAGES_ASYNC() for
69490effb23SGleb Smirnoff  * local filesystems, where partially valid pages can only occur at
69590effb23SGleb Smirnoff  * the end of file.
696d15b55c5SKonstantin Belousov  */
697d15b55c5SKonstantin Belousov int
698d15b55c5SKonstantin Belousov vnode_pager_local_getpages(struct vop_getpages_args *ap)
699d15b55c5SKonstantin Belousov {
70090effb23SGleb Smirnoff 
70190effb23SGleb Smirnoff 	return (vnode_pager_local_getpages0(ap->a_vp, ap->a_m, ap->a_count,
70290effb23SGleb Smirnoff 	    ap->a_reqpage, NULL, NULL));
70390effb23SGleb Smirnoff }
70490effb23SGleb Smirnoff 
70590effb23SGleb Smirnoff int
70690effb23SGleb Smirnoff vnode_pager_local_getpages_async(struct vop_getpages_async_args *ap)
70790effb23SGleb Smirnoff {
70890effb23SGleb Smirnoff 
70990effb23SGleb Smirnoff 	return (vnode_pager_local_getpages0(ap->a_vp, ap->a_m, ap->a_count,
71090effb23SGleb Smirnoff 	    ap->a_reqpage, ap->a_iodone, ap->a_arg));
71190effb23SGleb Smirnoff }
71290effb23SGleb Smirnoff 
71390effb23SGleb Smirnoff static int
71490effb23SGleb Smirnoff vnode_pager_local_getpages0(struct vnode *vp, vm_page_t *m, int bytecount,
71590effb23SGleb Smirnoff     int reqpage, vop_getpages_iodone_t iodone, void *arg)
71690effb23SGleb Smirnoff {
717d15b55c5SKonstantin Belousov 	vm_page_t mreq;
718d15b55c5SKonstantin Belousov 
71990effb23SGleb Smirnoff 	mreq = m[reqpage];
720d15b55c5SKonstantin Belousov 
721d15b55c5SKonstantin Belousov 	/*
722d15b55c5SKonstantin Belousov 	 * Since the caller has busied the requested page, that page's valid
723d15b55c5SKonstantin Belousov 	 * field will not be changed by other threads.
724d15b55c5SKonstantin Belousov 	 */
725d15b55c5SKonstantin Belousov 	vm_page_assert_xbusied(mreq);
726d15b55c5SKonstantin Belousov 
727d15b55c5SKonstantin Belousov 	/*
728d15b55c5SKonstantin Belousov 	 * The requested page has valid blocks.  Invalid part can only
729d15b55c5SKonstantin Belousov 	 * exist at the end of file, and the page is made fully valid
730d15b55c5SKonstantin Belousov 	 * by zeroing in vm_pager_getpages().  Free non-requested
731d15b55c5SKonstantin Belousov 	 * pages, since no i/o is done to read its content.
732d15b55c5SKonstantin Belousov 	 */
733d15b55c5SKonstantin Belousov 	if (mreq->valid != 0) {
73490effb23SGleb Smirnoff 		vm_pager_free_nonreq(mreq->object, m, reqpage,
73590effb23SGleb Smirnoff 		    round_page(bytecount) / PAGE_SIZE);
73690effb23SGleb Smirnoff 		if (iodone != NULL)
73790effb23SGleb Smirnoff 			iodone(arg, m, reqpage, 0);
738d15b55c5SKonstantin Belousov 		return (VM_PAGER_OK);
739d15b55c5SKonstantin Belousov 	}
740d15b55c5SKonstantin Belousov 
74190effb23SGleb Smirnoff 	return (vnode_pager_generic_getpages(vp, m, bytecount, reqpage,
74290effb23SGleb Smirnoff 	    iodone, arg));
743d15b55c5SKonstantin Belousov }
744d15b55c5SKonstantin Belousov 
745d15b55c5SKonstantin Belousov /*
746ce75f2c3SMike Smith  * This is now called from local media FS's to operate against their
747ce75f2c3SMike Smith  * own vnodes if they fail to implement VOP_GETPAGES.
748ce75f2c3SMike Smith  */
749ce75f2c3SMike Smith int
7507ebba1f8SGleb Smirnoff vnode_pager_generic_getpages(struct vnode *vp, vm_page_t *m, int bytecount,
75190effb23SGleb Smirnoff     int reqpage, vop_getpages_iodone_t iodone, void *arg)
752170db9c6SJohn Dyson {
753ce75f2c3SMike Smith 	vm_object_t object;
75490effb23SGleb Smirnoff 	off_t foff;
755*73e9030eSGleb Smirnoff 	int i, j, size, bsize, first, *freecnt;
756f4f83da0SAlan Cox 	daddr_t firstaddr, reqblock;
7579c83534dSPoul-Henning Kamp 	struct bufobj *bo;
758efc68ce1SDavid Greenman 	int runpg;
759efc68ce1SDavid Greenman 	int runend;
7600bdb7528SDavid Greenman 	struct buf *bp;
761ce75f2c3SMike Smith 	int count;
7621de11f1aSAlan Cox 	int error;
76326f9a767SRodney W. Grimes 
764ce75f2c3SMike Smith 	object = vp->v_object;
765ce75f2c3SMike Smith 	count = bytecount / PAGE_SIZE;
766ce75f2c3SMike Smith 
7679c83534dSPoul-Henning Kamp 	KASSERT(vp->v_type != VCHR && vp->v_type != VBLK,
7689c83534dSPoul-Henning Kamp 	    ("vnode_pager_generic_getpages does not support devices"));
769b73f64c4SJeff Roberson 	if (vp->v_iflag & VI_DOOMED)
7702c4488fcSJohn Dyson 		return VM_PAGER_BAD;
7712c4488fcSJohn Dyson 
77226f9a767SRodney W. Grimes 	bsize = vp->v_mount->mnt_stat.f_iosize;
773a316d390SJohn Dyson 	foff = IDX_TO_OFF(m[reqpage]->pindex);
774bbc0ec52SDavid Greenman 
775*73e9030eSGleb Smirnoff 	freecnt = iodone != NULL ?
776*73e9030eSGleb Smirnoff 	    &vnode_async_pbuf_freecnt : &vnode_pbuf_freecnt;
777*73e9030eSGleb Smirnoff 	bp = getpbuf(freecnt);
778*73e9030eSGleb Smirnoff 
77926f9a767SRodney W. Grimes 	/*
780e122dfc1SGleb Smirnoff 	 * Get the underlying device blocks for the file with VOP_BMAP().
781e122dfc1SGleb Smirnoff 	 * If the file system doesn't support VOP_BMAP, use old way of
782e122dfc1SGleb Smirnoff 	 * getting pages via VOP_READ.
78326f9a767SRodney W. Grimes 	 */
7841de11f1aSAlan Cox 	error = VOP_BMAP(vp, foff / bsize, &bo, &reqblock, NULL, NULL);
7851de11f1aSAlan Cox 	if (error == EOPNOTSUPP) {
786*73e9030eSGleb Smirnoff 		relpbuf(bp, freecnt);
78789f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
788e43c2eabSAlan Cox 		for (i = 0; i < count; i++)
7892965a453SKip Macy 			if (i != reqpage) {
7902965a453SKip Macy 				vm_page_lock(m[i]);
791d8d5fa88SAlfred Perlstein 				vm_page_free(m[i]);
7922965a453SKip Macy 				vm_page_unlock(m[i]);
7932965a453SKip Macy 			}
794b4b70819SAttilio Rao 		PCPU_INC(cnt.v_vnodein);
795b4b70819SAttilio Rao 		PCPU_INC(cnt.v_vnodepgsin);
79652051abcSAlan Cox 		error = vnode_pager_input_old(object, m[reqpage]);
79789f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
79852051abcSAlan Cox 		return (error);
7991de11f1aSAlan Cox 	} else if (error != 0) {
800*73e9030eSGleb Smirnoff 		relpbuf(bp, freecnt);
801396b3e34SAlan Cox 		vm_pager_free_nonreq(object, m, reqpage, count);
8021de11f1aSAlan Cox 		return (VM_PAGER_ERROR);
803bbc0ec52SDavid Greenman 
80426f9a767SRodney W. Grimes 		/*
80526f9a767SRodney W. Grimes 		 * if the blocksize is smaller than a page size, then use
80626f9a767SRodney W. Grimes 		 * special small filesystem code.  NFS sometimes has a small
80726f9a767SRodney W. Grimes 		 * blocksize, but it can handle large reads itself.
80826f9a767SRodney W. Grimes 		 */
80926f9a767SRodney W. Grimes 	} else if ((PAGE_SIZE / bsize) > 1 &&
810500b04a2SBruce Evans 	    (vp->v_mount->mnt_stat.f_type != nfs_mount_type)) {
811*73e9030eSGleb Smirnoff 		relpbuf(bp, freecnt);
812396b3e34SAlan Cox 		vm_pager_free_nonreq(object, m, reqpage, count);
813b4b70819SAttilio Rao 		PCPU_INC(cnt.v_vnodein);
814b4b70819SAttilio Rao 		PCPU_INC(cnt.v_vnodepgsin);
81524a1cce3SDavid Greenman 		return vnode_pager_input_smlfs(object, m[reqpage]);
81626f9a767SRodney W. Grimes 	}
8178d17e694SJulian Elischer 
81826f9a767SRodney W. Grimes 	/*
819a7fecb4dSAlan Cox 	 * Since the caller has busied the requested page, that page's valid
820a7fecb4dSAlan Cox 	 * field will not be changed by other threads.
821a7fecb4dSAlan Cox 	 */
822a7fecb4dSAlan Cox 	vm_page_assert_xbusied(m[reqpage]);
823a7fecb4dSAlan Cox 
824a7fecb4dSAlan Cox 	/*
8258d17e694SJulian Elischer 	 * If we have a completely valid page available to us, we can
8268d17e694SJulian Elischer 	 * clean up and return.  Otherwise we have to re-read the
8278d17e694SJulian Elischer 	 * media.
8280d94caffSDavid Greenman 	 */
8298b575f6cSAlan Cox 	if (m[reqpage]->valid == VM_PAGE_BITS_ALL) {
830*73e9030eSGleb Smirnoff 		relpbuf(bp, freecnt);
831a7fecb4dSAlan Cox 		vm_pager_free_nonreq(object, m, reqpage, count);
832a7fecb4dSAlan Cox 		return (VM_PAGER_OK);
833f4f83da0SAlan Cox 	} else if (reqblock == -1) {
834*73e9030eSGleb Smirnoff 		relpbuf(bp, freecnt);
835f4f83da0SAlan Cox 		pmap_zero_page(m[reqpage]);
83612aa4fdcSAlan Cox 		KASSERT(m[reqpage]->dirty == 0,
83712aa4fdcSAlan Cox 		    ("vnode_pager_generic_getpages: page %p is dirty", m));
838a7fecb4dSAlan Cox 		VM_OBJECT_WLOCK(object);
839f4f83da0SAlan Cox 		m[reqpage]->valid = VM_PAGE_BITS_ALL;
840f4f83da0SAlan Cox 		for (i = 0; i < count; i++)
8412965a453SKip Macy 			if (i != reqpage) {
8422965a453SKip Macy 				vm_page_lock(m[i]);
843f4f83da0SAlan Cox 				vm_page_free(m[i]);
8442965a453SKip Macy 				vm_page_unlock(m[i]);
8452965a453SKip Macy 			}
84689f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
847f4f83da0SAlan Cox 		return (VM_PAGER_OK);
848a7fecb4dSAlan Cox 	} else if (m[reqpage]->valid != 0) {
849a7fecb4dSAlan Cox 		VM_OBJECT_WLOCK(object);
8508d17e694SJulian Elischer 		m[reqpage]->valid = 0;
85189f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
852a7fecb4dSAlan Cox 	}
8530bdb7528SDavid Greenman 
8540d94caffSDavid Greenman 	/*
85526f9a767SRodney W. Grimes 	 * here on direct device I/O
85626f9a767SRodney W. Grimes 	 */
857efc68ce1SDavid Greenman 	firstaddr = -1;
858a1287949SEivind Eklund 
85926f9a767SRodney W. Grimes 	/*
860efc68ce1SDavid Greenman 	 * calculate the run that includes the required page
86126f9a767SRodney W. Grimes 	 */
862efc68ce1SDavid Greenman 	for (first = 0, i = 0; i < count; i = runend) {
863bff76343SAlan Cox 		if (vnode_pager_addr(vp, IDX_TO_OFF(m[i]->pindex), &firstaddr,
864bff76343SAlan Cox 		    &runpg) != 0) {
865*73e9030eSGleb Smirnoff 			relpbuf(bp, freecnt);
86689f6b863SAttilio Rao 			VM_OBJECT_WLOCK(object);
867bff76343SAlan Cox 			for (; i < count; i++)
8682965a453SKip Macy 				if (i != reqpage) {
8692965a453SKip Macy 					vm_page_lock(m[i]);
870bff76343SAlan Cox 					vm_page_free(m[i]);
8712965a453SKip Macy 					vm_page_unlock(m[i]);
8722965a453SKip Macy 				}
87389f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
874bff76343SAlan Cox 			return (VM_PAGER_ERROR);
875bff76343SAlan Cox 		}
876efc68ce1SDavid Greenman 		if (firstaddr == -1) {
87789f6b863SAttilio Rao 			VM_OBJECT_WLOCK(object);
87824a1cce3SDavid Greenman 			if (i == reqpage && foff < object->un_pager.vnp.vnp_size) {
879f3aad9a6SBjoern A. Zeeb 				panic("vnode_pager_getpages: unexpected missing page: firstaddr: %jd, foff: 0x%jx%08jx, vnp_size: 0x%jx%08jx",
880f3aad9a6SBjoern A. Zeeb 				    (intmax_t)firstaddr, (uintmax_t)(foff >> 32),
881bf1001faSMaxime Henrion 				    (uintmax_t)foff,
882bf1001faSMaxime Henrion 				    (uintmax_t)
883fc62ef1fSBruce Evans 				    (object->un_pager.vnp.vnp_size >> 32),
884bf1001faSMaxime Henrion 				    (uintmax_t)object->un_pager.vnp.vnp_size);
885efc68ce1SDavid Greenman 			}
8862965a453SKip Macy 			vm_page_lock(m[i]);
887d8d5fa88SAlfred Perlstein 			vm_page_free(m[i]);
8882965a453SKip Macy 			vm_page_unlock(m[i]);
88989f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
890efc68ce1SDavid Greenman 			runend = i + 1;
891efc68ce1SDavid Greenman 			first = runend;
892efc68ce1SDavid Greenman 			continue;
893efc68ce1SDavid Greenman 		}
894efc68ce1SDavid Greenman 		runend = i + runpg;
895efc68ce1SDavid Greenman 		if (runend <= reqpage) {
89689f6b863SAttilio Rao 			VM_OBJECT_WLOCK(object);
8972965a453SKip Macy 			for (j = i; j < runend; j++) {
8982965a453SKip Macy 				vm_page_lock(m[j]);
899d8d5fa88SAlfred Perlstein 				vm_page_free(m[j]);
9002965a453SKip Macy 				vm_page_unlock(m[j]);
9012965a453SKip Macy 			}
90289f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
90326f9a767SRodney W. Grimes 		} else {
904efc68ce1SDavid Greenman 			if (runpg < (count - first)) {
90589f6b863SAttilio Rao 				VM_OBJECT_WLOCK(object);
9062965a453SKip Macy 				for (i = first + runpg; i < count; i++) {
9072965a453SKip Macy 					vm_page_lock(m[i]);
908d8d5fa88SAlfred Perlstein 					vm_page_free(m[i]);
9092965a453SKip Macy 					vm_page_unlock(m[i]);
9102965a453SKip Macy 				}
91189f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(object);
912efc68ce1SDavid Greenman 				count = first + runpg;
91326f9a767SRodney W. Grimes 			}
914efc68ce1SDavid Greenman 			break;
91526f9a767SRodney W. Grimes 		}
916efc68ce1SDavid Greenman 		first = runend;
917efc68ce1SDavid Greenman 	}
91826f9a767SRodney W. Grimes 
91926f9a767SRodney W. Grimes 	/*
920bbc0ec52SDavid Greenman 	 * the first and last page have been calculated now, move input pages
921bbc0ec52SDavid Greenman 	 * to be zero based...
92226f9a767SRodney W. Grimes 	 */
92326f9a767SRodney W. Grimes 	if (first != 0) {
9247e2393ffSAlan Cox 		m += first;
92526f9a767SRodney W. Grimes 		count -= first;
92626f9a767SRodney W. Grimes 		reqpage -= first;
92726f9a767SRodney W. Grimes 	}
928efc68ce1SDavid Greenman 
92926f9a767SRodney W. Grimes 	/*
93026f9a767SRodney W. Grimes 	 * calculate the file virtual address for the transfer
93126f9a767SRodney W. Grimes 	 */
932a316d390SJohn Dyson 	foff = IDX_TO_OFF(m[0]->pindex);
93326f9a767SRodney W. Grimes 
93426f9a767SRodney W. Grimes 	/*
93526f9a767SRodney W. Grimes 	 * calculate the size of the transfer
93626f9a767SRodney W. Grimes 	 */
93726f9a767SRodney W. Grimes 	size = count * PAGE_SIZE;
9381a31a6c3SPoul-Henning Kamp 	KASSERT(count > 0, ("zero count"));
93924a1cce3SDavid Greenman 	if ((foff + size) > object->un_pager.vnp.vnp_size)
94024a1cce3SDavid Greenman 		size = object->un_pager.vnp.vnp_size - foff;
9411a31a6c3SPoul-Henning Kamp 	KASSERT(size > 0, ("zero size"));
94226f9a767SRodney W. Grimes 
94326f9a767SRodney W. Grimes 	/*
94424579ca1SMatthew Dillon 	 * round up physical size for real devices.
94526f9a767SRodney W. Grimes 	 */
9469c83534dSPoul-Henning Kamp 	if (1) {
9479c83534dSPoul-Henning Kamp 		int secmask = bo->bo_bsize - 1;
9486229cc50SPoul-Henning Kamp 		KASSERT(secmask < PAGE_SIZE && secmask > 0,
9496229cc50SPoul-Henning Kamp 		    ("vnode_pager_generic_getpages: sector size %d too large",
9506229cc50SPoul-Henning Kamp 		    secmask + 1));
95124579ca1SMatthew Dillon 		size = (size + secmask) & ~secmask;
95224579ca1SMatthew Dillon 	}
95326f9a767SRodney W. Grimes 
95490effb23SGleb Smirnoff 	bp->b_kvaalloc = bp->b_data;
95516f62314SDavid Greenman 
95626f9a767SRodney W. Grimes 	/*
9576ce697dcSKonstantin Belousov 	 * and map the pages to be read into the kva, if the filesystem
9586ce697dcSKonstantin Belousov 	 * requires mapped buffers.
95926f9a767SRodney W. Grimes 	 */
9602a5eef69SGleb Smirnoff 	if ((vp->v_mount->mnt_kern_flag & MNTK_UNMAPPED_BUFS) != 0 &&
9616ce697dcSKonstantin Belousov 	    unmapped_buf_allowed) {
9626ce697dcSKonstantin Belousov 		bp->b_data = unmapped_buf;
9636ce697dcSKonstantin Belousov 		bp->b_kvabase = unmapped_buf;
9646ce697dcSKonstantin Belousov 		bp->b_offset = 0;
9656ce697dcSKonstantin Belousov 		bp->b_flags |= B_UNMAPPED;
9666ce697dcSKonstantin Belousov 	} else
96790effb23SGleb Smirnoff 		pmap_qenter((vm_offset_t)bp->b_kvaalloc, m, count);
96826f9a767SRodney W. Grimes 
96926f9a767SRodney W. Grimes 	/* build a minimal buffer header */
97021144e3bSPoul-Henning Kamp 	bp->b_iocmd = BIO_READ;
971bd78ceceSJohn Baldwin 	KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
972bd78ceceSJohn Baldwin 	KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
973a854ed98SJohn Baldwin 	bp->b_rcred = crhold(curthread->td_ucred);
974a854ed98SJohn Baldwin 	bp->b_wcred = crhold(curthread->td_ucred);
975187f0071SDavid Greenman 	bp->b_blkno = firstaddr;
9769c83534dSPoul-Henning Kamp 	pbgetbo(bo, bp);
9771faacf5dSKirk McKusick 	bp->b_vp = vp;
97826f9a767SRodney W. Grimes 	bp->b_bcount = size;
97926f9a767SRodney W. Grimes 	bp->b_bufsize = size;
9802b6b0df7SMatthew Dillon 	bp->b_runningbufspace = bp->b_bufsize;
98190effb23SGleb Smirnoff 	for (i = 0; i < count; i++)
98290effb23SGleb Smirnoff 		bp->b_pages[i] = m[i];
98390effb23SGleb Smirnoff 	bp->b_npages = count;
98490effb23SGleb Smirnoff 	bp->b_pager.pg_reqpage = reqpage;
9855bd65606SJohn Baldwin 	atomic_add_long(&runningbufspace, bp->b_runningbufspace);
98626f9a767SRodney W. Grimes 
987b4b70819SAttilio Rao 	PCPU_INC(cnt.v_vnodein);
988b4b70819SAttilio Rao 	PCPU_ADD(cnt.v_vnodepgsin, count);
989976e77fcSDavid Greenman 
99026f9a767SRodney W. Grimes 	/* do the input */
9912c18019fSPoul-Henning Kamp 	bp->b_iooffset = dbtob(bp->b_blkno);
99290effb23SGleb Smirnoff 
99390effb23SGleb Smirnoff 	if (iodone != NULL) { /* async */
99490effb23SGleb Smirnoff 		bp->b_pager.pg_iodone = iodone;
99590effb23SGleb Smirnoff 		bp->b_caller1 = arg;
99690effb23SGleb Smirnoff 		bp->b_iodone = vnode_pager_generic_getpages_done_async;
99790effb23SGleb Smirnoff 		bp->b_flags |= B_ASYNC;
99890effb23SGleb Smirnoff 		BUF_KERNPROC(bp);
999b792bebeSPoul-Henning Kamp 		bstrategy(bp);
100090effb23SGleb Smirnoff 		/* Good bye! */
100190effb23SGleb Smirnoff 	} else {
100290effb23SGleb Smirnoff 		bp->b_iodone = bdone;
100390effb23SGleb Smirnoff 		bstrategy(bp);
10046a4b5823SPoul-Henning Kamp 		bwait(bp, PVM, "vnread");
100590effb23SGleb Smirnoff 		error = vnode_pager_generic_getpages_done(bp);
10061bb5ad63SGleb Smirnoff 		for (i = 0; i < bp->b_npages; i++)
10076ce697dcSKonstantin Belousov 			bp->b_pages[i] = NULL;
10081faacf5dSKirk McKusick 		bp->b_vp = NULL;
10099c83534dSPoul-Henning Kamp 		pbrelbo(bp);
10101c7c3c6aSMatthew Dillon 		relpbuf(bp, &vnode_pbuf_freecnt);
101190effb23SGleb Smirnoff 	}
101290effb23SGleb Smirnoff 
101390effb23SGleb Smirnoff 	return (error != 0 ? VM_PAGER_ERROR : VM_PAGER_OK);
101490effb23SGleb Smirnoff }
101590effb23SGleb Smirnoff 
101690effb23SGleb Smirnoff static void
101790effb23SGleb Smirnoff vnode_pager_generic_getpages_done_async(struct buf *bp)
101890effb23SGleb Smirnoff {
101990effb23SGleb Smirnoff 	int error;
102090effb23SGleb Smirnoff 
102190effb23SGleb Smirnoff 	error = vnode_pager_generic_getpages_done(bp);
102290effb23SGleb Smirnoff 	bp->b_pager.pg_iodone(bp->b_caller1, bp->b_pages,
102390effb23SGleb Smirnoff 	  bp->b_pager.pg_reqpage, error);
102490effb23SGleb Smirnoff 	for (int i = 0; i < bp->b_npages; i++)
102590effb23SGleb Smirnoff 		bp->b_pages[i] = NULL;
102690effb23SGleb Smirnoff 	bp->b_vp = NULL;
102790effb23SGleb Smirnoff 	pbrelbo(bp);
1028*73e9030eSGleb Smirnoff 	relpbuf(bp, &vnode_async_pbuf_freecnt);
102990effb23SGleb Smirnoff }
103090effb23SGleb Smirnoff 
103190effb23SGleb Smirnoff static int
103290effb23SGleb Smirnoff vnode_pager_generic_getpages_done(struct buf *bp)
103390effb23SGleb Smirnoff {
103490effb23SGleb Smirnoff 	vm_object_t object;
103590effb23SGleb Smirnoff 	off_t tfoff, nextoff;
103690effb23SGleb Smirnoff 	int i, error;
103790effb23SGleb Smirnoff 
103890effb23SGleb Smirnoff 	error = (bp->b_ioflags & BIO_ERROR) != 0 ? EIO : 0;
103990effb23SGleb Smirnoff 	object = bp->b_vp->v_object;
104090effb23SGleb Smirnoff 
104190effb23SGleb Smirnoff 	if (error == 0 && bp->b_bcount != bp->b_npages * PAGE_SIZE) {
104290effb23SGleb Smirnoff 		if ((bp->b_flags & B_UNMAPPED) != 0) {
104390effb23SGleb Smirnoff 			bp->b_flags &= ~B_UNMAPPED;
104490effb23SGleb Smirnoff 			pmap_qenter((vm_offset_t)bp->b_kvaalloc, bp->b_pages,
104590effb23SGleb Smirnoff 			    bp->b_npages);
104690effb23SGleb Smirnoff 		}
104790effb23SGleb Smirnoff 		bzero(bp->b_kvaalloc + bp->b_bcount,
104890effb23SGleb Smirnoff 		    PAGE_SIZE * bp->b_npages - bp->b_bcount);
104990effb23SGleb Smirnoff 	}
105090effb23SGleb Smirnoff 	if ((bp->b_flags & B_UNMAPPED) == 0)
105190effb23SGleb Smirnoff 		pmap_qremove((vm_offset_t)bp->b_kvaalloc, bp->b_npages);
105290effb23SGleb Smirnoff 	if ((bp->b_vp->v_mount->mnt_kern_flag & MNTK_UNMAPPED_BUFS) != 0) {
105390effb23SGleb Smirnoff 		bp->b_data = bp->b_kvaalloc;
105490effb23SGleb Smirnoff 		bp->b_kvabase = bp->b_kvaalloc;
105590effb23SGleb Smirnoff 		bp->b_flags &= ~B_UNMAPPED;
105690effb23SGleb Smirnoff 	}
105726f9a767SRodney W. Grimes 
105889f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
105990effb23SGleb Smirnoff 	for (i = 0, tfoff = IDX_TO_OFF(bp->b_pages[0]->pindex);
106090effb23SGleb Smirnoff 	    i < bp->b_npages; i++, tfoff = nextoff) {
10618f9110f6SJohn Dyson 		vm_page_t mt;
10628f9110f6SJohn Dyson 
10638f9110f6SJohn Dyson 		nextoff = tfoff + PAGE_SIZE;
106490effb23SGleb Smirnoff 		mt = bp->b_pages[i];
10658f9110f6SJohn Dyson 
106654746b67SDmitrij Tejblum 		if (nextoff <= object->un_pager.vnp.vnp_size) {
10678d17e694SJulian Elischer 			/*
10688d17e694SJulian Elischer 			 * Read filled up entire page.
10698d17e694SJulian Elischer 			 */
10708f9110f6SJohn Dyson 			mt->valid = VM_PAGE_BITS_ALL;
1071016a3c93SAlan Cox 			KASSERT(mt->dirty == 0,
107279f0deb9SGleb Smirnoff 			    ("%s: page %p is dirty", __func__, mt));
1073016a3c93SAlan Cox 			KASSERT(!pmap_page_is_mapped(mt),
107479f0deb9SGleb Smirnoff 			    ("%s: page %p is mapped", __func__, mt));
10758f9110f6SJohn Dyson 		} else {
10768d17e694SJulian Elischer 			/*
107742eb4108SAlan Cox 			 * Read did not fill up entire page.
10788d17e694SJulian Elischer 			 *
10798d17e694SJulian Elischer 			 * Currently we do not set the entire page valid,
10808d17e694SJulian Elischer 			 * we just try to clear the piece that we couldn't
10818d17e694SJulian Elischer 			 * read.
10828d17e694SJulian Elischer 			 */
1083dc874f98SKonstantin Belousov 			vm_page_set_valid_range(mt, 0,
108454746b67SDmitrij Tejblum 			    object->un_pager.vnp.vnp_size - tfoff);
108542eb4108SAlan Cox 			KASSERT((mt->dirty & vm_page_bits(0,
108642eb4108SAlan Cox 			    object->un_pager.vnp.vnp_size - tfoff)) == 0,
108779f0deb9SGleb Smirnoff 			    ("%s: page %p is dirty", __func__, mt));
10888f9110f6SJohn Dyson 		}
10898f9110f6SJohn Dyson 
109090effb23SGleb Smirnoff 		if (i != bp->b_pager.pg_reqpage)
1091b6c00483SKonstantin Belousov 			vm_page_readahead_finish(mt);
109203679e23SAlan Cox 	}
109389f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
109490effb23SGleb Smirnoff 	if (error != 0)
109590effb23SGleb Smirnoff 		printf("%s: I/O read error %d\n", __func__, error);
109690effb23SGleb Smirnoff 
109790effb23SGleb Smirnoff 	return (error);
109826f9a767SRodney W. Grimes }
109926f9a767SRodney W. Grimes 
1100ce75f2c3SMike Smith /*
1101ce75f2c3SMike Smith  * EOPNOTSUPP is no longer legal.  For local media VFS's that do not
1102ce75f2c3SMike Smith  * implement their own VOP_PUTPAGES, their VOP_PUTPAGES should call to
1103ce75f2c3SMike Smith  * vnode_pager_generic_putpages() to implement the previous behaviour.
1104ce75f2c3SMike Smith  *
1105ce75f2c3SMike Smith  * All other FS's should use the bypass to get to the local media
1106ce75f2c3SMike Smith  * backing vp's VOP_PUTPAGES.
1107ce75f2c3SMike Smith  */
1108e4542174SMatthew Dillon static void
11097ebba1f8SGleb Smirnoff vnode_pager_putpages(vm_object_t object, vm_page_t *m, int count,
111033cad9e9SKonstantin Belousov     int flags, int *rtvals)
1111170db9c6SJohn Dyson {
1112170db9c6SJohn Dyson 	int rtval;
1113170db9c6SJohn Dyson 	struct vnode *vp;
111486ffbd76SMike Smith 	int bytes = count * PAGE_SIZE;
1115ad980522SJohn Dyson 
11160e3cdf2cSAlan Cox 	/*
11170e3cdf2cSAlan Cox 	 * Force synchronous operation if we are extremely low on memory
11180e3cdf2cSAlan Cox 	 * to prevent a low-memory deadlock.  VOP operations often need to
11190e3cdf2cSAlan Cox 	 * allocate more memory to initiate the I/O ( i.e. do a BMAP
11200e3cdf2cSAlan Cox 	 * operation ).  The swapper handles the case by limiting the amount
11210e3cdf2cSAlan Cox 	 * of asynchronous I/O, but that sort of solution doesn't scale well
11220e3cdf2cSAlan Cox 	 * for the vnode pager without a lot of work.
11230e3cdf2cSAlan Cox 	 *
11240e3cdf2cSAlan Cox 	 * Also, the backing vnode's iodone routine may not wake the pageout
11250e3cdf2cSAlan Cox 	 * daemon up.  This should be probably be addressed XXX.
11260e3cdf2cSAlan Cox 	 */
11270e3cdf2cSAlan Cox 
112833cad9e9SKonstantin Belousov 	if (vm_cnt.v_free_count + vm_cnt.v_cache_count <
112944f1c916SBryan Drewery 	    vm_cnt.v_pageout_free_min)
113033cad9e9SKonstantin Belousov 		flags |= VM_PAGER_PUT_SYNC;
11310e3cdf2cSAlan Cox 
11320e3cdf2cSAlan Cox 	/*
11330e3cdf2cSAlan Cox 	 * Call device-specific putpages function
11340e3cdf2cSAlan Cox 	 */
1135170db9c6SJohn Dyson 	vp = object->handle;
113689f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
113733cad9e9SKonstantin Belousov 	rtval = VOP_PUTPAGES(vp, m, bytes, flags, rtvals);
113823955314SAlfred Perlstein 	KASSERT(rtval != EOPNOTSUPP,
113923955314SAlfred Perlstein 	    ("vnode_pager: stale FS putpages\n"));
114089f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
1141170db9c6SJohn Dyson }
1142170db9c6SJohn Dyson 
1143ce75f2c3SMike Smith 
114426f9a767SRodney W. Grimes /*
1145ce75f2c3SMike Smith  * This is now called from local media FS's to operate against their
11464491ea91SEivind Eklund  * own vnodes if they fail to implement VOP_PUTPAGES.
11472b6b0df7SMatthew Dillon  *
11482b6b0df7SMatthew Dillon  * This is typically called indirectly via the pageout daemon and
11492b6b0df7SMatthew Dillon  * clustering has already typically occured, so in general we ask the
11502b6b0df7SMatthew Dillon  * underlying filesystem to write the data out asynchronously rather
11512b6b0df7SMatthew Dillon  * then delayed.
115226f9a767SRodney W. Grimes  */
1153ce75f2c3SMike Smith int
1154c46b90e9SAlan Cox vnode_pager_generic_putpages(struct vnode *vp, vm_page_t *ma, int bytecount,
1155c46b90e9SAlan Cox     int flags, int *rtvals)
115626f9a767SRodney W. Grimes {
1157f6b04d2bSDavid Greenman 	int i;
1158ce75f2c3SMike Smith 	vm_object_t object;
1159c46b90e9SAlan Cox 	vm_page_t m;
1160ce75f2c3SMike Smith 	int count;
116126f9a767SRodney W. Grimes 
1162f6b04d2bSDavid Greenman 	int maxsize, ncount;
1163a316d390SJohn Dyson 	vm_ooffset_t poffset;
1164f6b04d2bSDavid Greenman 	struct uio auio;
1165f6b04d2bSDavid Greenman 	struct iovec aiov;
1166f6b04d2bSDavid Greenman 	int error;
11678f9110f6SJohn Dyson 	int ioflags;
1168dd498befSPaul Saab 	int ppscheck = 0;
1169dd498befSPaul Saab 	static struct timeval lastfail;
1170dd498befSPaul Saab 	static int curfail;
117126f9a767SRodney W. Grimes 
1172ce75f2c3SMike Smith 	object = vp->v_object;
1173ce75f2c3SMike Smith 	count = bytecount / PAGE_SIZE;
1174ce75f2c3SMike Smith 
117526f9a767SRodney W. Grimes 	for (i = 0; i < count; i++)
1176031ec8c1SKonstantin Belousov 		rtvals[i] = VM_PAGER_ERROR;
117726f9a767SRodney W. Grimes 
1178c46b90e9SAlan Cox 	if ((int64_t)ma[0]->pindex < 0) {
117923562e4bSMarcel Moolenaar 		printf("vnode_pager_putpages: attempt to write meta-data!!! -- 0x%lx(%lx)\n",
1180c46b90e9SAlan Cox 		    (long)ma[0]->pindex, (u_long)ma[0]->dirty);
1181f6b04d2bSDavid Greenman 		rtvals[0] = VM_PAGER_BAD;
1182f6b04d2bSDavid Greenman 		return VM_PAGER_BAD;
11830d94caffSDavid Greenman 	}
11840bdb7528SDavid Greenman 
1185f6b04d2bSDavid Greenman 	maxsize = count * PAGE_SIZE;
1186f6b04d2bSDavid Greenman 	ncount = count;
118726f9a767SRodney W. Grimes 
1188c46b90e9SAlan Cox 	poffset = IDX_TO_OFF(ma[0]->pindex);
118900a6f47fSMatthew Dillon 
119000a6f47fSMatthew Dillon 	/*
119100a6f47fSMatthew Dillon 	 * If the page-aligned write is larger then the actual file we
119200a6f47fSMatthew Dillon 	 * have to invalidate pages occuring beyond the file EOF.  However,
119300a6f47fSMatthew Dillon 	 * there is an edge case where a file may not be page-aligned where
119400a6f47fSMatthew Dillon 	 * the last page is partially invalid.  In this case the filesystem
119500a6f47fSMatthew Dillon 	 * may not properly clear the dirty bits for the entire page (which
119600a6f47fSMatthew Dillon 	 * could be VM_PAGE_BITS_ALL due to the page having been mmap()d).
119700a6f47fSMatthew Dillon 	 * With the page locked we are free to fix-up the dirty bits here.
11983ebeaf59SMatthew Dillon 	 *
11993ebeaf59SMatthew Dillon 	 * We do not under any circumstances truncate the valid bits, as
12003ebeaf59SMatthew Dillon 	 * this will screw up bogus page replacement.
120100a6f47fSMatthew Dillon 	 */
120289f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
1203a316d390SJohn Dyson 	if (maxsize + poffset > object->un_pager.vnp.vnp_size) {
120400a6f47fSMatthew Dillon 		if (object->un_pager.vnp.vnp_size > poffset) {
120500a6f47fSMatthew Dillon 			int pgoff;
120600a6f47fSMatthew Dillon 
1207a316d390SJohn Dyson 			maxsize = object->un_pager.vnp.vnp_size - poffset;
1208aa8de40aSPoul-Henning Kamp 			ncount = btoc(maxsize);
120900a6f47fSMatthew Dillon 			if ((pgoff = (int)maxsize & PAGE_MASK) != 0) {
1210c46b90e9SAlan Cox 				/*
1211c46b90e9SAlan Cox 				 * If the object is locked and the following
1212c46b90e9SAlan Cox 				 * conditions hold, then the page's dirty
1213c46b90e9SAlan Cox 				 * field cannot be concurrently changed by a
1214c46b90e9SAlan Cox 				 * pmap operation.
1215c46b90e9SAlan Cox 				 */
1216c46b90e9SAlan Cox 				m = ma[ncount - 1];
1217c7aebda8SAttilio Rao 				vm_page_assert_sbusied(m);
12186031c68dSAlan Cox 				KASSERT(!pmap_page_is_write_mapped(m),
1219c46b90e9SAlan Cox 		("vnode_pager_generic_putpages: page %p is not read-only", m));
1220c46b90e9SAlan Cox 				vm_page_clear_dirty(m, pgoff, PAGE_SIZE -
1221c46b90e9SAlan Cox 				    pgoff);
122200a6f47fSMatthew Dillon 			}
122300a6f47fSMatthew Dillon 		} else {
122400a6f47fSMatthew Dillon 			maxsize = 0;
122500a6f47fSMatthew Dillon 			ncount = 0;
122600a6f47fSMatthew Dillon 		}
1227f6b04d2bSDavid Greenman 		if (ncount < count) {
1228f6b04d2bSDavid Greenman 			for (i = ncount; i < count; i++) {
1229f6b04d2bSDavid Greenman 				rtvals[i] = VM_PAGER_BAD;
1230f6b04d2bSDavid Greenman 			}
1231f6b04d2bSDavid Greenman 		}
1232f6b04d2bSDavid Greenman 	}
123389f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
123426f9a767SRodney W. Grimes 
12352b6b0df7SMatthew Dillon 	/*
12362b6b0df7SMatthew Dillon 	 * pageouts are already clustered, use IO_ASYNC to force a bawrite()
12372b6b0df7SMatthew Dillon 	 * rather then a bdwrite() to prevent paging I/O from saturating
123843b7990eSMatthew Dillon 	 * the buffer cache.  Dummy-up the sequential heuristic to cause
123943b7990eSMatthew Dillon 	 * large ranges to cluster.  If neither IO_SYNC or IO_ASYNC is set,
124043b7990eSMatthew Dillon 	 * the system decides how to cluster.
12412b6b0df7SMatthew Dillon 	 */
12428f9110f6SJohn Dyson 	ioflags = IO_VMIO;
124343b7990eSMatthew Dillon 	if (flags & (VM_PAGER_PUT_SYNC | VM_PAGER_PUT_INVAL))
124443b7990eSMatthew Dillon 		ioflags |= IO_SYNC;
124543b7990eSMatthew Dillon 	else if ((flags & VM_PAGER_CLUSTER_OK) == 0)
124643b7990eSMatthew Dillon 		ioflags |= IO_ASYNC;
12478f9110f6SJohn Dyson 	ioflags |= (flags & VM_PAGER_PUT_INVAL) ? IO_INVAL: 0;
124843b7990eSMatthew Dillon 	ioflags |= IO_SEQMAX << IO_SEQSHIFT;
1249f6b04d2bSDavid Greenman 
1250f6b04d2bSDavid Greenman 	aiov.iov_base = (caddr_t) 0;
1251f6b04d2bSDavid Greenman 	aiov.iov_len = maxsize;
1252f6b04d2bSDavid Greenman 	auio.uio_iov = &aiov;
1253f6b04d2bSDavid Greenman 	auio.uio_iovcnt = 1;
1254a316d390SJohn Dyson 	auio.uio_offset = poffset;
1255f6b04d2bSDavid Greenman 	auio.uio_segflg = UIO_NOCOPY;
1256f6b04d2bSDavid Greenman 	auio.uio_rw = UIO_WRITE;
1257f6b04d2bSDavid Greenman 	auio.uio_resid = maxsize;
1258b40ce416SJulian Elischer 	auio.uio_td = (struct thread *) 0;
1259a854ed98SJohn Baldwin 	error = VOP_WRITE(vp, &auio, ioflags, curthread->td_ucred);
1260b4b70819SAttilio Rao 	PCPU_INC(cnt.v_vnodeout);
1261b4b70819SAttilio Rao 	PCPU_ADD(cnt.v_vnodepgsout, ncount);
1262f6b04d2bSDavid Greenman 
1263f6b04d2bSDavid Greenman 	if (error) {
1264dd498befSPaul Saab 		if ((ppscheck = ppsratecheck(&lastfail, &curfail, 1)))
126524a1cce3SDavid Greenman 			printf("vnode_pager_putpages: I/O error %d\n", error);
1266f6b04d2bSDavid Greenman 	}
1267f6b04d2bSDavid Greenman 	if (auio.uio_resid) {
1268dd498befSPaul Saab 		if (ppscheck || ppsratecheck(&lastfail, &curfail, 1))
12699f80ce04SKonstantin Belousov 			printf("vnode_pager_putpages: residual I/O %zd at %lu\n",
1270c46b90e9SAlan Cox 			    auio.uio_resid, (u_long)ma[0]->pindex);
127126f9a767SRodney W. Grimes 	}
1272ffc82b0aSJohn Dyson 	for (i = 0; i < ncount; i++) {
127326f9a767SRodney W. Grimes 		rtvals[i] = VM_PAGER_OK;
127426f9a767SRodney W. Grimes 	}
1275f6b04d2bSDavid Greenman 	return rtvals[0];
127626f9a767SRodney W. Grimes }
1277031ec8c1SKonstantin Belousov 
1278031ec8c1SKonstantin Belousov void
1279031ec8c1SKonstantin Belousov vnode_pager_undirty_pages(vm_page_t *ma, int *rtvals, int written)
1280031ec8c1SKonstantin Belousov {
12819d17da3bSKonstantin Belousov 	vm_object_t obj;
1282031ec8c1SKonstantin Belousov 	int i, pos;
1283031ec8c1SKonstantin Belousov 
12849d17da3bSKonstantin Belousov 	if (written == 0)
12859d17da3bSKonstantin Belousov 		return;
12869d17da3bSKonstantin Belousov 	obj = ma[0]->object;
128789f6b863SAttilio Rao 	VM_OBJECT_WLOCK(obj);
1288031ec8c1SKonstantin Belousov 	for (i = 0, pos = 0; pos < written; i++, pos += PAGE_SIZE) {
1289031ec8c1SKonstantin Belousov 		if (pos < trunc_page(written)) {
1290031ec8c1SKonstantin Belousov 			rtvals[i] = VM_PAGER_OK;
1291031ec8c1SKonstantin Belousov 			vm_page_undirty(ma[i]);
1292031ec8c1SKonstantin Belousov 		} else {
1293031ec8c1SKonstantin Belousov 			/* Partially written page. */
1294031ec8c1SKonstantin Belousov 			rtvals[i] = VM_PAGER_AGAIN;
1295031ec8c1SKonstantin Belousov 			vm_page_clear_dirty(ma[i], 0, written & PAGE_MASK);
1296031ec8c1SKonstantin Belousov 		}
1297031ec8c1SKonstantin Belousov 	}
129889f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(obj);
1299031ec8c1SKonstantin Belousov }
130084110e7eSKonstantin Belousov 
130184110e7eSKonstantin Belousov void
130284110e7eSKonstantin Belousov vnode_pager_update_writecount(vm_object_t object, vm_offset_t start,
130384110e7eSKonstantin Belousov     vm_offset_t end)
130484110e7eSKonstantin Belousov {
130584110e7eSKonstantin Belousov 	struct vnode *vp;
130684110e7eSKonstantin Belousov 	vm_ooffset_t old_wm;
130784110e7eSKonstantin Belousov 
130889f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
130984110e7eSKonstantin Belousov 	if (object->type != OBJT_VNODE) {
131089f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
131184110e7eSKonstantin Belousov 		return;
131284110e7eSKonstantin Belousov 	}
131384110e7eSKonstantin Belousov 	old_wm = object->un_pager.vnp.writemappings;
131484110e7eSKonstantin Belousov 	object->un_pager.vnp.writemappings += (vm_ooffset_t)end - start;
131584110e7eSKonstantin Belousov 	vp = object->handle;
131684110e7eSKonstantin Belousov 	if (old_wm == 0 && object->un_pager.vnp.writemappings != 0) {
131784110e7eSKonstantin Belousov 		ASSERT_VOP_ELOCKED(vp, "v_writecount inc");
1318140dedb8SKonstantin Belousov 		VOP_ADD_WRITECOUNT(vp, 1);
1319b47f6241SJohn Baldwin 		CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d",
1320b47f6241SJohn Baldwin 		    __func__, vp, vp->v_writecount);
132184110e7eSKonstantin Belousov 	} else if (old_wm != 0 && object->un_pager.vnp.writemappings == 0) {
132284110e7eSKonstantin Belousov 		ASSERT_VOP_ELOCKED(vp, "v_writecount dec");
1323140dedb8SKonstantin Belousov 		VOP_ADD_WRITECOUNT(vp, -1);
1324b47f6241SJohn Baldwin 		CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
1325b47f6241SJohn Baldwin 		    __func__, vp, vp->v_writecount);
132684110e7eSKonstantin Belousov 	}
132789f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
132884110e7eSKonstantin Belousov }
132984110e7eSKonstantin Belousov 
133084110e7eSKonstantin Belousov void
133184110e7eSKonstantin Belousov vnode_pager_release_writecount(vm_object_t object, vm_offset_t start,
133284110e7eSKonstantin Belousov     vm_offset_t end)
133384110e7eSKonstantin Belousov {
133484110e7eSKonstantin Belousov 	struct vnode *vp;
133584110e7eSKonstantin Belousov 	struct mount *mp;
133684110e7eSKonstantin Belousov 	vm_offset_t inc;
133784110e7eSKonstantin Belousov 
133889f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
133984110e7eSKonstantin Belousov 
134084110e7eSKonstantin Belousov 	/*
134184110e7eSKonstantin Belousov 	 * First, recheck the object type to account for the race when
134284110e7eSKonstantin Belousov 	 * the vnode is reclaimed.
134384110e7eSKonstantin Belousov 	 */
134484110e7eSKonstantin Belousov 	if (object->type != OBJT_VNODE) {
134589f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
134684110e7eSKonstantin Belousov 		return;
134784110e7eSKonstantin Belousov 	}
134884110e7eSKonstantin Belousov 
134984110e7eSKonstantin Belousov 	/*
135084110e7eSKonstantin Belousov 	 * Optimize for the case when writemappings is not going to
135184110e7eSKonstantin Belousov 	 * zero.
135284110e7eSKonstantin Belousov 	 */
135384110e7eSKonstantin Belousov 	inc = end - start;
135484110e7eSKonstantin Belousov 	if (object->un_pager.vnp.writemappings != inc) {
135584110e7eSKonstantin Belousov 		object->un_pager.vnp.writemappings -= inc;
135689f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
135784110e7eSKonstantin Belousov 		return;
135884110e7eSKonstantin Belousov 	}
135984110e7eSKonstantin Belousov 
136084110e7eSKonstantin Belousov 	vp = object->handle;
136184110e7eSKonstantin Belousov 	vhold(vp);
136289f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
136384110e7eSKonstantin Belousov 	mp = NULL;
136484110e7eSKonstantin Belousov 	vn_start_write(vp, &mp, V_WAIT);
136584110e7eSKonstantin Belousov 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
136684110e7eSKonstantin Belousov 
136784110e7eSKonstantin Belousov 	/*
136884110e7eSKonstantin Belousov 	 * Decrement the object's writemappings, by swapping the start
136984110e7eSKonstantin Belousov 	 * and end arguments for vnode_pager_update_writecount().  If
137084110e7eSKonstantin Belousov 	 * there was not a race with vnode reclaimation, then the
137184110e7eSKonstantin Belousov 	 * vnode's v_writecount is decremented.
137284110e7eSKonstantin Belousov 	 */
137384110e7eSKonstantin Belousov 	vnode_pager_update_writecount(object, end, start);
137484110e7eSKonstantin Belousov 	VOP_UNLOCK(vp, 0);
137584110e7eSKonstantin Belousov 	vdrop(vp);
137684110e7eSKonstantin Belousov 	if (mp != NULL)
137784110e7eSKonstantin Belousov 		vn_finished_write(mp);
137884110e7eSKonstantin Belousov }
1379