xref: /freebsd/sys/vm/vnode_pager.c (revision 9124ddeb4a551977cf6b2218291e7c666ce25f47)
1 /*-
2  * Copyright (c) 1990 University of Utah.
3  * Copyright (c) 1991 The Regents of the University of California.
4  * All rights reserved.
5  * Copyright (c) 1993, 1994 John S. Dyson
6  * Copyright (c) 1995, David Greenman
7  *
8  * This code is derived from software contributed to Berkeley by
9  * the Systems Programming Group of the University of Utah Computer
10  * Science Department.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *	This product includes software developed by the University of
23  *	California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *	from: @(#)vnode_pager.c	7.5 (Berkeley) 4/20/91
41  */
42 
43 /*
44  * Page to/from files (vnodes).
45  */
46 
47 /*
48  * TODO:
49  *	Implement VOP_GETPAGES/PUTPAGES interface for filesystems. Will
50  *	greatly re-simplify the vnode_pager.
51  */
52 
53 #include <sys/cdefs.h>
54 __FBSDID("$FreeBSD$");
55 
56 #include <sys/param.h>
57 #include <sys/systm.h>
58 #include <sys/proc.h>
59 #include <sys/vnode.h>
60 #include <sys/mount.h>
61 #include <sys/bio.h>
62 #include <sys/buf.h>
63 #include <sys/vmmeter.h>
64 #include <sys/limits.h>
65 #include <sys/conf.h>
66 #include <sys/sf_buf.h>
67 
68 #include <machine/atomic.h>
69 
70 #include <vm/vm.h>
71 #include <vm/vm_object.h>
72 #include <vm/vm_page.h>
73 #include <vm/vm_pager.h>
74 #include <vm/vm_map.h>
75 #include <vm/vnode_pager.h>
76 #include <vm/vm_extern.h>
77 
78 static int vnode_pager_addr(struct vnode *vp, vm_ooffset_t address,
79     daddr_t *rtaddress, int *run);
80 static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m);
81 static int vnode_pager_input_old(vm_object_t object, vm_page_t m);
82 static void vnode_pager_dealloc(vm_object_t);
83 static int vnode_pager_getpages(vm_object_t, vm_page_t *, int, int);
84 static void vnode_pager_putpages(vm_object_t, vm_page_t *, int, boolean_t, int *);
85 static boolean_t vnode_pager_haspage(vm_object_t, vm_pindex_t, int *, int *);
86 static vm_object_t vnode_pager_alloc(void *, vm_ooffset_t, vm_prot_t,
87     vm_ooffset_t, struct ucred *cred);
88 
89 struct pagerops vnodepagerops = {
90 	.pgo_alloc =	vnode_pager_alloc,
91 	.pgo_dealloc =	vnode_pager_dealloc,
92 	.pgo_getpages =	vnode_pager_getpages,
93 	.pgo_putpages =	vnode_pager_putpages,
94 	.pgo_haspage =	vnode_pager_haspage,
95 };
96 
97 int vnode_pbuf_freecnt;
98 
99 /* Create the VM system backing object for this vnode */
100 int
101 vnode_create_vobject(struct vnode *vp, off_t isize, struct thread *td)
102 {
103 	vm_object_t object;
104 	vm_ooffset_t size = isize;
105 	struct vattr va;
106 
107 	if (!vn_isdisk(vp, NULL) && vn_canvmio(vp) == FALSE)
108 		return (0);
109 
110 	while ((object = vp->v_object) != NULL) {
111 		VM_OBJECT_LOCK(object);
112 		if (!(object->flags & OBJ_DEAD)) {
113 			VM_OBJECT_UNLOCK(object);
114 			return (0);
115 		}
116 		VOP_UNLOCK(vp, 0);
117 		vm_object_set_flag(object, OBJ_DISCONNECTWNT);
118 		msleep(object, VM_OBJECT_MTX(object), PDROP | PVM, "vodead", 0);
119 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
120 	}
121 
122 	if (size == 0) {
123 		if (vn_isdisk(vp, NULL)) {
124 			size = IDX_TO_OFF(INT_MAX);
125 		} else {
126 			if (VOP_GETATTR(vp, &va, td->td_ucred))
127 				return (0);
128 			size = va.va_size;
129 		}
130 	}
131 
132 	object = vnode_pager_alloc(vp, size, 0, 0, td->td_ucred);
133 	/*
134 	 * Dereference the reference we just created.  This assumes
135 	 * that the object is associated with the vp.
136 	 */
137 	VM_OBJECT_LOCK(object);
138 	object->ref_count--;
139 	VM_OBJECT_UNLOCK(object);
140 	vrele(vp);
141 
142 	KASSERT(vp->v_object != NULL, ("vnode_create_vobject: NULL object"));
143 
144 	return (0);
145 }
146 
147 void
148 vnode_destroy_vobject(struct vnode *vp)
149 {
150 	struct vm_object *obj;
151 
152 	obj = vp->v_object;
153 	if (obj == NULL)
154 		return;
155 	ASSERT_VOP_ELOCKED(vp, "vnode_destroy_vobject");
156 	VM_OBJECT_LOCK(obj);
157 	if (obj->ref_count == 0) {
158 		/*
159 		 * vclean() may be called twice. The first time
160 		 * removes the primary reference to the object,
161 		 * the second time goes one further and is a
162 		 * special-case to terminate the object.
163 		 *
164 		 * don't double-terminate the object
165 		 */
166 		if ((obj->flags & OBJ_DEAD) == 0)
167 			vm_object_terminate(obj);
168 		else
169 			VM_OBJECT_UNLOCK(obj);
170 	} else {
171 		/*
172 		 * Woe to the process that tries to page now :-).
173 		 */
174 		vm_pager_deallocate(obj);
175 		VM_OBJECT_UNLOCK(obj);
176 	}
177 	vp->v_object = NULL;
178 }
179 
180 
181 /*
182  * Allocate (or lookup) pager for a vnode.
183  * Handle is a vnode pointer.
184  *
185  * MPSAFE
186  */
187 vm_object_t
188 vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
189     vm_ooffset_t offset, struct ucred *cred)
190 {
191 	vm_object_t object;
192 	struct vnode *vp;
193 
194 	/*
195 	 * Pageout to vnode, no can do yet.
196 	 */
197 	if (handle == NULL)
198 		return (NULL);
199 
200 	vp = (struct vnode *) handle;
201 
202 	/*
203 	 * If the object is being terminated, wait for it to
204 	 * go away.
205 	 */
206 retry:
207 	while ((object = vp->v_object) != NULL) {
208 		VM_OBJECT_LOCK(object);
209 		if ((object->flags & OBJ_DEAD) == 0)
210 			break;
211 		vm_object_set_flag(object, OBJ_DISCONNECTWNT);
212 		msleep(object, VM_OBJECT_MTX(object), PDROP | PVM, "vadead", 0);
213 	}
214 
215 	if (vp->v_usecount == 0)
216 		panic("vnode_pager_alloc: no vnode reference");
217 
218 	if (object == NULL) {
219 		/*
220 		 * Add an object of the appropriate size
221 		 */
222 		object = vm_object_allocate(OBJT_VNODE, OFF_TO_IDX(round_page(size)));
223 
224 		object->un_pager.vnp.vnp_size = size;
225 		object->un_pager.vnp.writemappings = 0;
226 
227 		object->handle = handle;
228 		VI_LOCK(vp);
229 		if (vp->v_object != NULL) {
230 			/*
231 			 * Object has been created while we were sleeping
232 			 */
233 			VI_UNLOCK(vp);
234 			vm_object_destroy(object);
235 			goto retry;
236 		}
237 		vp->v_object = object;
238 		VI_UNLOCK(vp);
239 	} else {
240 		object->ref_count++;
241 		VM_OBJECT_UNLOCK(object);
242 	}
243 	vref(vp);
244 	return (object);
245 }
246 
247 /*
248  *	The object must be locked.
249  */
250 static void
251 vnode_pager_dealloc(object)
252 	vm_object_t object;
253 {
254 	struct vnode *vp;
255 	int refs;
256 
257 	vp = object->handle;
258 	if (vp == NULL)
259 		panic("vnode_pager_dealloc: pager already dealloced");
260 
261 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
262 	vm_object_pip_wait(object, "vnpdea");
263 	refs = object->ref_count;
264 
265 	object->handle = NULL;
266 	object->type = OBJT_DEAD;
267 	if (object->flags & OBJ_DISCONNECTWNT) {
268 		vm_object_clear_flag(object, OBJ_DISCONNECTWNT);
269 		wakeup(object);
270 	}
271 	ASSERT_VOP_ELOCKED(vp, "vnode_pager_dealloc");
272 	if (object->un_pager.vnp.writemappings > 0) {
273 		object->un_pager.vnp.writemappings = 0;
274 		vp->v_writecount--;
275 		CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
276 		    __func__, vp, vp->v_writecount);
277 	}
278 	vp->v_object = NULL;
279 	vp->v_vflag &= ~VV_TEXT;
280 	VM_OBJECT_UNLOCK(object);
281 	while (refs-- > 0)
282 		vunref(vp);
283 	VM_OBJECT_LOCK(object);
284 }
285 
286 static boolean_t
287 vnode_pager_haspage(object, pindex, before, after)
288 	vm_object_t object;
289 	vm_pindex_t pindex;
290 	int *before;
291 	int *after;
292 {
293 	struct vnode *vp = object->handle;
294 	daddr_t bn;
295 	int err;
296 	daddr_t reqblock;
297 	int poff;
298 	int bsize;
299 	int pagesperblock, blocksperpage;
300 	int vfslocked;
301 
302 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
303 	/*
304 	 * If no vp or vp is doomed or marked transparent to VM, we do not
305 	 * have the page.
306 	 */
307 	if (vp == NULL || vp->v_iflag & VI_DOOMED)
308 		return FALSE;
309 	/*
310 	 * If the offset is beyond end of file we do
311 	 * not have the page.
312 	 */
313 	if (IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size)
314 		return FALSE;
315 
316 	bsize = vp->v_mount->mnt_stat.f_iosize;
317 	pagesperblock = bsize / PAGE_SIZE;
318 	blocksperpage = 0;
319 	if (pagesperblock > 0) {
320 		reqblock = pindex / pagesperblock;
321 	} else {
322 		blocksperpage = (PAGE_SIZE / bsize);
323 		reqblock = pindex * blocksperpage;
324 	}
325 	VM_OBJECT_UNLOCK(object);
326 	vfslocked = VFS_LOCK_GIANT(vp->v_mount);
327 	err = VOP_BMAP(vp, reqblock, NULL, &bn, after, before);
328 	VFS_UNLOCK_GIANT(vfslocked);
329 	VM_OBJECT_LOCK(object);
330 	if (err)
331 		return TRUE;
332 	if (bn == -1)
333 		return FALSE;
334 	if (pagesperblock > 0) {
335 		poff = pindex - (reqblock * pagesperblock);
336 		if (before) {
337 			*before *= pagesperblock;
338 			*before += poff;
339 		}
340 		if (after) {
341 			int numafter;
342 			*after *= pagesperblock;
343 			numafter = pagesperblock - (poff + 1);
344 			if (IDX_TO_OFF(pindex + numafter) >
345 			    object->un_pager.vnp.vnp_size) {
346 				numafter =
347 		    		    OFF_TO_IDX(object->un_pager.vnp.vnp_size) -
348 				    pindex;
349 			}
350 			*after += numafter;
351 		}
352 	} else {
353 		if (before) {
354 			*before /= blocksperpage;
355 		}
356 
357 		if (after) {
358 			*after /= blocksperpage;
359 		}
360 	}
361 	return TRUE;
362 }
363 
364 /*
365  * Lets the VM system know about a change in size for a file.
366  * We adjust our own internal size and flush any cached pages in
367  * the associated object that are affected by the size change.
368  *
369  * Note: this routine may be invoked as a result of a pager put
370  * operation (possibly at object termination time), so we must be careful.
371  */
372 void
373 vnode_pager_setsize(vp, nsize)
374 	struct vnode *vp;
375 	vm_ooffset_t nsize;
376 {
377 	vm_object_t object;
378 	vm_page_t m;
379 	vm_pindex_t nobjsize;
380 
381 	if ((object = vp->v_object) == NULL)
382 		return;
383 /* 	ASSERT_VOP_ELOCKED(vp, "vnode_pager_setsize and not locked vnode"); */
384 	VM_OBJECT_LOCK(object);
385 	if (nsize == object->un_pager.vnp.vnp_size) {
386 		/*
387 		 * Hasn't changed size
388 		 */
389 		VM_OBJECT_UNLOCK(object);
390 		return;
391 	}
392 	nobjsize = OFF_TO_IDX(nsize + PAGE_MASK);
393 	if (nsize < object->un_pager.vnp.vnp_size) {
394 		/*
395 		 * File has shrunk. Toss any cached pages beyond the new EOF.
396 		 */
397 		if (nobjsize < object->size)
398 			vm_object_page_remove(object, nobjsize, object->size,
399 			    0);
400 		/*
401 		 * this gets rid of garbage at the end of a page that is now
402 		 * only partially backed by the vnode.
403 		 *
404 		 * XXX for some reason (I don't know yet), if we take a
405 		 * completely invalid page and mark it partially valid
406 		 * it can screw up NFS reads, so we don't allow the case.
407 		 */
408 		if ((nsize & PAGE_MASK) &&
409 		    (m = vm_page_lookup(object, OFF_TO_IDX(nsize))) != NULL &&
410 		    m->valid != 0) {
411 			int base = (int)nsize & PAGE_MASK;
412 			int size = PAGE_SIZE - base;
413 
414 			/*
415 			 * Clear out partial-page garbage in case
416 			 * the page has been mapped.
417 			 */
418 			pmap_zero_page_area(m, base, size);
419 
420 			/*
421 			 * Update the valid bits to reflect the blocks that
422 			 * have been zeroed.  Some of these valid bits may
423 			 * have already been set.
424 			 */
425 			vm_page_set_valid_range(m, base, size);
426 
427 			/*
428 			 * Round "base" to the next block boundary so that the
429 			 * dirty bit for a partially zeroed block is not
430 			 * cleared.
431 			 */
432 			base = roundup2(base, DEV_BSIZE);
433 
434 			/*
435 			 * Clear out partial-page dirty bits.
436 			 *
437 			 * note that we do not clear out the valid
438 			 * bits.  This would prevent bogus_page
439 			 * replacement from working properly.
440 			 */
441 			vm_page_clear_dirty(m, base, PAGE_SIZE - base);
442 		} else if ((nsize & PAGE_MASK) &&
443 		    __predict_false(object->cache != NULL)) {
444 			vm_page_cache_free(object, OFF_TO_IDX(nsize),
445 			    nobjsize);
446 		}
447 	}
448 	object->un_pager.vnp.vnp_size = nsize;
449 	object->size = nobjsize;
450 	VM_OBJECT_UNLOCK(object);
451 }
452 
453 /*
454  * calculate the linear (byte) disk address of specified virtual
455  * file address
456  */
457 static int
458 vnode_pager_addr(struct vnode *vp, vm_ooffset_t address, daddr_t *rtaddress,
459     int *run)
460 {
461 	int bsize;
462 	int err;
463 	daddr_t vblock;
464 	daddr_t voffset;
465 
466 	if (address < 0)
467 		return -1;
468 
469 	if (vp->v_iflag & VI_DOOMED)
470 		return -1;
471 
472 	bsize = vp->v_mount->mnt_stat.f_iosize;
473 	vblock = address / bsize;
474 	voffset = address % bsize;
475 
476 	err = VOP_BMAP(vp, vblock, NULL, rtaddress, run, NULL);
477 	if (err == 0) {
478 		if (*rtaddress != -1)
479 			*rtaddress += voffset / DEV_BSIZE;
480 		if (run) {
481 			*run += 1;
482 			*run *= bsize/PAGE_SIZE;
483 			*run -= voffset/PAGE_SIZE;
484 		}
485 	}
486 
487 	return (err);
488 }
489 
490 /*
491  * small block filesystem vnode pager input
492  */
493 static int
494 vnode_pager_input_smlfs(object, m)
495 	vm_object_t object;
496 	vm_page_t m;
497 {
498 	struct vnode *vp;
499 	struct bufobj *bo;
500 	struct buf *bp;
501 	struct sf_buf *sf;
502 	daddr_t fileaddr;
503 	vm_offset_t bsize;
504 	vm_page_bits_t bits;
505 	int error, i;
506 
507 	error = 0;
508 	vp = object->handle;
509 	if (vp->v_iflag & VI_DOOMED)
510 		return VM_PAGER_BAD;
511 
512 	bsize = vp->v_mount->mnt_stat.f_iosize;
513 
514 	VOP_BMAP(vp, 0, &bo, 0, NULL, NULL);
515 
516 	sf = sf_buf_alloc(m, 0);
517 
518 	for (i = 0; i < PAGE_SIZE / bsize; i++) {
519 		vm_ooffset_t address;
520 
521 		bits = vm_page_bits(i * bsize, bsize);
522 		if (m->valid & bits)
523 			continue;
524 
525 		address = IDX_TO_OFF(m->pindex) + i * bsize;
526 		if (address >= object->un_pager.vnp.vnp_size) {
527 			fileaddr = -1;
528 		} else {
529 			error = vnode_pager_addr(vp, address, &fileaddr, NULL);
530 			if (error)
531 				break;
532 		}
533 		if (fileaddr != -1) {
534 			bp = getpbuf(&vnode_pbuf_freecnt);
535 
536 			/* build a minimal buffer header */
537 			bp->b_iocmd = BIO_READ;
538 			bp->b_iodone = bdone;
539 			KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
540 			KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
541 			bp->b_rcred = crhold(curthread->td_ucred);
542 			bp->b_wcred = crhold(curthread->td_ucred);
543 			bp->b_data = (caddr_t)sf_buf_kva(sf) + i * bsize;
544 			bp->b_blkno = fileaddr;
545 			pbgetbo(bo, bp);
546 			bp->b_bcount = bsize;
547 			bp->b_bufsize = bsize;
548 			bp->b_runningbufspace = bp->b_bufsize;
549 			atomic_add_long(&runningbufspace, bp->b_runningbufspace);
550 
551 			/* do the input */
552 			bp->b_iooffset = dbtob(bp->b_blkno);
553 			bstrategy(bp);
554 
555 			bwait(bp, PVM, "vnsrd");
556 
557 			if ((bp->b_ioflags & BIO_ERROR) != 0)
558 				error = EIO;
559 
560 			/*
561 			 * free the buffer header back to the swap buffer pool
562 			 */
563 			pbrelbo(bp);
564 			relpbuf(bp, &vnode_pbuf_freecnt);
565 			if (error)
566 				break;
567 		} else
568 			bzero((caddr_t)sf_buf_kva(sf) + i * bsize, bsize);
569 		KASSERT((m->dirty & bits) == 0,
570 		    ("vnode_pager_input_smlfs: page %p is dirty", m));
571 		VM_OBJECT_LOCK(object);
572 		m->valid |= bits;
573 		VM_OBJECT_UNLOCK(object);
574 	}
575 	sf_buf_free(sf);
576 	if (error) {
577 		return VM_PAGER_ERROR;
578 	}
579 	return VM_PAGER_OK;
580 }
581 
582 /*
583  * old style vnode pager input routine
584  */
585 static int
586 vnode_pager_input_old(object, m)
587 	vm_object_t object;
588 	vm_page_t m;
589 {
590 	struct uio auio;
591 	struct iovec aiov;
592 	int error;
593 	int size;
594 	struct sf_buf *sf;
595 	struct vnode *vp;
596 
597 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
598 	error = 0;
599 
600 	/*
601 	 * Return failure if beyond current EOF
602 	 */
603 	if (IDX_TO_OFF(m->pindex) >= object->un_pager.vnp.vnp_size) {
604 		return VM_PAGER_BAD;
605 	} else {
606 		size = PAGE_SIZE;
607 		if (IDX_TO_OFF(m->pindex) + size > object->un_pager.vnp.vnp_size)
608 			size = object->un_pager.vnp.vnp_size - IDX_TO_OFF(m->pindex);
609 		vp = object->handle;
610 		VM_OBJECT_UNLOCK(object);
611 
612 		/*
613 		 * Allocate a kernel virtual address and initialize so that
614 		 * we can use VOP_READ/WRITE routines.
615 		 */
616 		sf = sf_buf_alloc(m, 0);
617 
618 		aiov.iov_base = (caddr_t)sf_buf_kva(sf);
619 		aiov.iov_len = size;
620 		auio.uio_iov = &aiov;
621 		auio.uio_iovcnt = 1;
622 		auio.uio_offset = IDX_TO_OFF(m->pindex);
623 		auio.uio_segflg = UIO_SYSSPACE;
624 		auio.uio_rw = UIO_READ;
625 		auio.uio_resid = size;
626 		auio.uio_td = curthread;
627 
628 		error = VOP_READ(vp, &auio, 0, curthread->td_ucred);
629 		if (!error) {
630 			int count = size - auio.uio_resid;
631 
632 			if (count == 0)
633 				error = EINVAL;
634 			else if (count != PAGE_SIZE)
635 				bzero((caddr_t)sf_buf_kva(sf) + count,
636 				    PAGE_SIZE - count);
637 		}
638 		sf_buf_free(sf);
639 
640 		VM_OBJECT_LOCK(object);
641 	}
642 	KASSERT(m->dirty == 0, ("vnode_pager_input_old: page %p is dirty", m));
643 	if (!error)
644 		m->valid = VM_PAGE_BITS_ALL;
645 	return error ? VM_PAGER_ERROR : VM_PAGER_OK;
646 }
647 
648 /*
649  * generic vnode pager input routine
650  */
651 
652 /*
653  * Local media VFS's that do not implement their own VOP_GETPAGES
654  * should have their VOP_GETPAGES call to vnode_pager_generic_getpages()
655  * to implement the previous behaviour.
656  *
657  * All other FS's should use the bypass to get to the local media
658  * backing vp's VOP_GETPAGES.
659  */
660 static int
661 vnode_pager_getpages(object, m, count, reqpage)
662 	vm_object_t object;
663 	vm_page_t *m;
664 	int count;
665 	int reqpage;
666 {
667 	int rtval;
668 	struct vnode *vp;
669 	int bytes = count * PAGE_SIZE;
670 	int vfslocked;
671 
672 	vp = object->handle;
673 	VM_OBJECT_UNLOCK(object);
674 	vfslocked = VFS_LOCK_GIANT(vp->v_mount);
675 	rtval = VOP_GETPAGES(vp, m, bytes, reqpage, 0);
676 	KASSERT(rtval != EOPNOTSUPP,
677 	    ("vnode_pager: FS getpages not implemented\n"));
678 	VFS_UNLOCK_GIANT(vfslocked);
679 	VM_OBJECT_LOCK(object);
680 	return rtval;
681 }
682 
683 /*
684  * This is now called from local media FS's to operate against their
685  * own vnodes if they fail to implement VOP_GETPAGES.
686  */
687 int
688 vnode_pager_generic_getpages(vp, m, bytecount, reqpage)
689 	struct vnode *vp;
690 	vm_page_t *m;
691 	int bytecount;
692 	int reqpage;
693 {
694 	vm_object_t object;
695 	vm_offset_t kva;
696 	off_t foff, tfoff, nextoff;
697 	int i, j, size, bsize, first;
698 	daddr_t firstaddr, reqblock;
699 	struct bufobj *bo;
700 	int runpg;
701 	int runend;
702 	struct buf *bp;
703 	int count;
704 	int error;
705 
706 	object = vp->v_object;
707 	count = bytecount / PAGE_SIZE;
708 
709 	KASSERT(vp->v_type != VCHR && vp->v_type != VBLK,
710 	    ("vnode_pager_generic_getpages does not support devices"));
711 	if (vp->v_iflag & VI_DOOMED)
712 		return VM_PAGER_BAD;
713 
714 	bsize = vp->v_mount->mnt_stat.f_iosize;
715 
716 	/* get the UNDERLYING device for the file with VOP_BMAP() */
717 
718 	/*
719 	 * originally, we did not check for an error return value -- assuming
720 	 * an fs always has a bmap entry point -- that assumption is wrong!!!
721 	 */
722 	foff = IDX_TO_OFF(m[reqpage]->pindex);
723 
724 	/*
725 	 * if we can't bmap, use old VOP code
726 	 */
727 	error = VOP_BMAP(vp, foff / bsize, &bo, &reqblock, NULL, NULL);
728 	if (error == EOPNOTSUPP) {
729 		VM_OBJECT_LOCK(object);
730 
731 		for (i = 0; i < count; i++)
732 			if (i != reqpage) {
733 				vm_page_lock(m[i]);
734 				vm_page_free(m[i]);
735 				vm_page_unlock(m[i]);
736 			}
737 		PCPU_INC(cnt.v_vnodein);
738 		PCPU_INC(cnt.v_vnodepgsin);
739 		error = vnode_pager_input_old(object, m[reqpage]);
740 		VM_OBJECT_UNLOCK(object);
741 		return (error);
742 	} else if (error != 0) {
743 		VM_OBJECT_LOCK(object);
744 		for (i = 0; i < count; i++)
745 			if (i != reqpage) {
746 				vm_page_lock(m[i]);
747 				vm_page_free(m[i]);
748 				vm_page_unlock(m[i]);
749 			}
750 		VM_OBJECT_UNLOCK(object);
751 		return (VM_PAGER_ERROR);
752 
753 		/*
754 		 * if the blocksize is smaller than a page size, then use
755 		 * special small filesystem code.  NFS sometimes has a small
756 		 * blocksize, but it can handle large reads itself.
757 		 */
758 	} else if ((PAGE_SIZE / bsize) > 1 &&
759 	    (vp->v_mount->mnt_stat.f_type != nfs_mount_type)) {
760 		VM_OBJECT_LOCK(object);
761 		for (i = 0; i < count; i++)
762 			if (i != reqpage) {
763 				vm_page_lock(m[i]);
764 				vm_page_free(m[i]);
765 				vm_page_unlock(m[i]);
766 			}
767 		VM_OBJECT_UNLOCK(object);
768 		PCPU_INC(cnt.v_vnodein);
769 		PCPU_INC(cnt.v_vnodepgsin);
770 		return vnode_pager_input_smlfs(object, m[reqpage]);
771 	}
772 
773 	/*
774 	 * If we have a completely valid page available to us, we can
775 	 * clean up and return.  Otherwise we have to re-read the
776 	 * media.
777 	 */
778 	VM_OBJECT_LOCK(object);
779 	if (m[reqpage]->valid == VM_PAGE_BITS_ALL) {
780 		for (i = 0; i < count; i++)
781 			if (i != reqpage) {
782 				vm_page_lock(m[i]);
783 				vm_page_free(m[i]);
784 				vm_page_unlock(m[i]);
785 			}
786 		VM_OBJECT_UNLOCK(object);
787 		return VM_PAGER_OK;
788 	} else if (reqblock == -1) {
789 		pmap_zero_page(m[reqpage]);
790 		KASSERT(m[reqpage]->dirty == 0,
791 		    ("vnode_pager_generic_getpages: page %p is dirty", m));
792 		m[reqpage]->valid = VM_PAGE_BITS_ALL;
793 		for (i = 0; i < count; i++)
794 			if (i != reqpage) {
795 				vm_page_lock(m[i]);
796 				vm_page_free(m[i]);
797 				vm_page_unlock(m[i]);
798 			}
799 		VM_OBJECT_UNLOCK(object);
800 		return (VM_PAGER_OK);
801 	}
802 	m[reqpage]->valid = 0;
803 	VM_OBJECT_UNLOCK(object);
804 
805 	/*
806 	 * here on direct device I/O
807 	 */
808 	firstaddr = -1;
809 
810 	/*
811 	 * calculate the run that includes the required page
812 	 */
813 	for (first = 0, i = 0; i < count; i = runend) {
814 		if (vnode_pager_addr(vp, IDX_TO_OFF(m[i]->pindex), &firstaddr,
815 		    &runpg) != 0) {
816 			VM_OBJECT_LOCK(object);
817 			for (; i < count; i++)
818 				if (i != reqpage) {
819 					vm_page_lock(m[i]);
820 					vm_page_free(m[i]);
821 					vm_page_unlock(m[i]);
822 				}
823 			VM_OBJECT_UNLOCK(object);
824 			return (VM_PAGER_ERROR);
825 		}
826 		if (firstaddr == -1) {
827 			VM_OBJECT_LOCK(object);
828 			if (i == reqpage && foff < object->un_pager.vnp.vnp_size) {
829 				panic("vnode_pager_getpages: unexpected missing page: firstaddr: %jd, foff: 0x%jx%08jx, vnp_size: 0x%jx%08jx",
830 				    (intmax_t)firstaddr, (uintmax_t)(foff >> 32),
831 				    (uintmax_t)foff,
832 				    (uintmax_t)
833 				    (object->un_pager.vnp.vnp_size >> 32),
834 				    (uintmax_t)object->un_pager.vnp.vnp_size);
835 			}
836 			vm_page_lock(m[i]);
837 			vm_page_free(m[i]);
838 			vm_page_unlock(m[i]);
839 			VM_OBJECT_UNLOCK(object);
840 			runend = i + 1;
841 			first = runend;
842 			continue;
843 		}
844 		runend = i + runpg;
845 		if (runend <= reqpage) {
846 			VM_OBJECT_LOCK(object);
847 			for (j = i; j < runend; j++) {
848 				vm_page_lock(m[j]);
849 				vm_page_free(m[j]);
850 				vm_page_unlock(m[j]);
851 			}
852 			VM_OBJECT_UNLOCK(object);
853 		} else {
854 			if (runpg < (count - first)) {
855 				VM_OBJECT_LOCK(object);
856 				for (i = first + runpg; i < count; i++) {
857 					vm_page_lock(m[i]);
858 					vm_page_free(m[i]);
859 					vm_page_unlock(m[i]);
860 				}
861 				VM_OBJECT_UNLOCK(object);
862 				count = first + runpg;
863 			}
864 			break;
865 		}
866 		first = runend;
867 	}
868 
869 	/*
870 	 * the first and last page have been calculated now, move input pages
871 	 * to be zero based...
872 	 */
873 	if (first != 0) {
874 		m += first;
875 		count -= first;
876 		reqpage -= first;
877 	}
878 
879 	/*
880 	 * calculate the file virtual address for the transfer
881 	 */
882 	foff = IDX_TO_OFF(m[0]->pindex);
883 
884 	/*
885 	 * calculate the size of the transfer
886 	 */
887 	size = count * PAGE_SIZE;
888 	KASSERT(count > 0, ("zero count"));
889 	if ((foff + size) > object->un_pager.vnp.vnp_size)
890 		size = object->un_pager.vnp.vnp_size - foff;
891 	KASSERT(size > 0, ("zero size"));
892 
893 	/*
894 	 * round up physical size for real devices.
895 	 */
896 	if (1) {
897 		int secmask = bo->bo_bsize - 1;
898 		KASSERT(secmask < PAGE_SIZE && secmask > 0,
899 		    ("vnode_pager_generic_getpages: sector size %d too large",
900 		    secmask + 1));
901 		size = (size + secmask) & ~secmask;
902 	}
903 
904 	bp = getpbuf(&vnode_pbuf_freecnt);
905 	kva = (vm_offset_t) bp->b_data;
906 
907 	/*
908 	 * and map the pages to be read into the kva
909 	 */
910 	pmap_qenter(kva, m, count);
911 
912 	/* build a minimal buffer header */
913 	bp->b_iocmd = BIO_READ;
914 	bp->b_iodone = bdone;
915 	KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
916 	KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
917 	bp->b_rcred = crhold(curthread->td_ucred);
918 	bp->b_wcred = crhold(curthread->td_ucred);
919 	bp->b_blkno = firstaddr;
920 	pbgetbo(bo, bp);
921 	bp->b_bcount = size;
922 	bp->b_bufsize = size;
923 	bp->b_runningbufspace = bp->b_bufsize;
924 	atomic_add_long(&runningbufspace, bp->b_runningbufspace);
925 
926 	PCPU_INC(cnt.v_vnodein);
927 	PCPU_ADD(cnt.v_vnodepgsin, count);
928 
929 	/* do the input */
930 	bp->b_iooffset = dbtob(bp->b_blkno);
931 	bstrategy(bp);
932 
933 	bwait(bp, PVM, "vnread");
934 
935 	if ((bp->b_ioflags & BIO_ERROR) != 0)
936 		error = EIO;
937 
938 	if (!error) {
939 		if (size != count * PAGE_SIZE)
940 			bzero((caddr_t) kva + size, PAGE_SIZE * count - size);
941 	}
942 	pmap_qremove(kva, count);
943 
944 	/*
945 	 * free the buffer header back to the swap buffer pool
946 	 */
947 	pbrelbo(bp);
948 	relpbuf(bp, &vnode_pbuf_freecnt);
949 
950 	VM_OBJECT_LOCK(object);
951 	for (i = 0, tfoff = foff; i < count; i++, tfoff = nextoff) {
952 		vm_page_t mt;
953 
954 		nextoff = tfoff + PAGE_SIZE;
955 		mt = m[i];
956 
957 		if (nextoff <= object->un_pager.vnp.vnp_size) {
958 			/*
959 			 * Read filled up entire page.
960 			 */
961 			mt->valid = VM_PAGE_BITS_ALL;
962 			KASSERT(mt->dirty == 0,
963 			    ("vnode_pager_generic_getpages: page %p is dirty",
964 			    mt));
965 			KASSERT(!pmap_page_is_mapped(mt),
966 			    ("vnode_pager_generic_getpages: page %p is mapped",
967 			    mt));
968 		} else {
969 			/*
970 			 * Read did not fill up entire page.
971 			 *
972 			 * Currently we do not set the entire page valid,
973 			 * we just try to clear the piece that we couldn't
974 			 * read.
975 			 */
976 			vm_page_set_valid_range(mt, 0,
977 			    object->un_pager.vnp.vnp_size - tfoff);
978 			KASSERT((mt->dirty & vm_page_bits(0,
979 			    object->un_pager.vnp.vnp_size - tfoff)) == 0,
980 			    ("vnode_pager_generic_getpages: page %p is dirty",
981 			    mt));
982 		}
983 
984 		if (i != reqpage) {
985 
986 			/*
987 			 * whether or not to leave the page activated is up in
988 			 * the air, but we should put the page on a page queue
989 			 * somewhere. (it already is in the object). Result:
990 			 * It appears that empirical results show that
991 			 * deactivating pages is best.
992 			 */
993 
994 			/*
995 			 * just in case someone was asking for this page we
996 			 * now tell them that it is ok to use
997 			 */
998 			if (!error) {
999 				if (mt->oflags & VPO_WANTED) {
1000 					vm_page_lock(mt);
1001 					vm_page_activate(mt);
1002 					vm_page_unlock(mt);
1003 				} else {
1004 					vm_page_lock(mt);
1005 					vm_page_deactivate(mt);
1006 					vm_page_unlock(mt);
1007 				}
1008 				vm_page_wakeup(mt);
1009 			} else {
1010 				vm_page_lock(mt);
1011 				vm_page_free(mt);
1012 				vm_page_unlock(mt);
1013 			}
1014 		}
1015 	}
1016 	VM_OBJECT_UNLOCK(object);
1017 	if (error) {
1018 		printf("vnode_pager_getpages: I/O read error\n");
1019 	}
1020 	return (error ? VM_PAGER_ERROR : VM_PAGER_OK);
1021 }
1022 
1023 /*
1024  * EOPNOTSUPP is no longer legal.  For local media VFS's that do not
1025  * implement their own VOP_PUTPAGES, their VOP_PUTPAGES should call to
1026  * vnode_pager_generic_putpages() to implement the previous behaviour.
1027  *
1028  * All other FS's should use the bypass to get to the local media
1029  * backing vp's VOP_PUTPAGES.
1030  */
1031 static void
1032 vnode_pager_putpages(object, m, count, sync, rtvals)
1033 	vm_object_t object;
1034 	vm_page_t *m;
1035 	int count;
1036 	boolean_t sync;
1037 	int *rtvals;
1038 {
1039 	int rtval;
1040 	struct vnode *vp;
1041 	int bytes = count * PAGE_SIZE;
1042 
1043 	/*
1044 	 * Force synchronous operation if we are extremely low on memory
1045 	 * to prevent a low-memory deadlock.  VOP operations often need to
1046 	 * allocate more memory to initiate the I/O ( i.e. do a BMAP
1047 	 * operation ).  The swapper handles the case by limiting the amount
1048 	 * of asynchronous I/O, but that sort of solution doesn't scale well
1049 	 * for the vnode pager without a lot of work.
1050 	 *
1051 	 * Also, the backing vnode's iodone routine may not wake the pageout
1052 	 * daemon up.  This should be probably be addressed XXX.
1053 	 */
1054 
1055 	if ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_pageout_free_min)
1056 		sync |= OBJPC_SYNC;
1057 
1058 	/*
1059 	 * Call device-specific putpages function
1060 	 */
1061 	vp = object->handle;
1062 	VM_OBJECT_UNLOCK(object);
1063 	rtval = VOP_PUTPAGES(vp, m, bytes, sync, rtvals, 0);
1064 	KASSERT(rtval != EOPNOTSUPP,
1065 	    ("vnode_pager: stale FS putpages\n"));
1066 	VM_OBJECT_LOCK(object);
1067 }
1068 
1069 
1070 /*
1071  * This is now called from local media FS's to operate against their
1072  * own vnodes if they fail to implement VOP_PUTPAGES.
1073  *
1074  * This is typically called indirectly via the pageout daemon and
1075  * clustering has already typically occured, so in general we ask the
1076  * underlying filesystem to write the data out asynchronously rather
1077  * then delayed.
1078  */
1079 int
1080 vnode_pager_generic_putpages(struct vnode *vp, vm_page_t *ma, int bytecount,
1081     int flags, int *rtvals)
1082 {
1083 	int i;
1084 	vm_object_t object;
1085 	vm_page_t m;
1086 	int count;
1087 
1088 	int maxsize, ncount;
1089 	vm_ooffset_t poffset;
1090 	struct uio auio;
1091 	struct iovec aiov;
1092 	int error;
1093 	int ioflags;
1094 	int ppscheck = 0;
1095 	static struct timeval lastfail;
1096 	static int curfail;
1097 
1098 	object = vp->v_object;
1099 	count = bytecount / PAGE_SIZE;
1100 
1101 	for (i = 0; i < count; i++)
1102 		rtvals[i] = VM_PAGER_ERROR;
1103 
1104 	if ((int64_t)ma[0]->pindex < 0) {
1105 		printf("vnode_pager_putpages: attempt to write meta-data!!! -- 0x%lx(%lx)\n",
1106 		    (long)ma[0]->pindex, (u_long)ma[0]->dirty);
1107 		rtvals[0] = VM_PAGER_BAD;
1108 		return VM_PAGER_BAD;
1109 	}
1110 
1111 	maxsize = count * PAGE_SIZE;
1112 	ncount = count;
1113 
1114 	poffset = IDX_TO_OFF(ma[0]->pindex);
1115 
1116 	/*
1117 	 * If the page-aligned write is larger then the actual file we
1118 	 * have to invalidate pages occuring beyond the file EOF.  However,
1119 	 * there is an edge case where a file may not be page-aligned where
1120 	 * the last page is partially invalid.  In this case the filesystem
1121 	 * may not properly clear the dirty bits for the entire page (which
1122 	 * could be VM_PAGE_BITS_ALL due to the page having been mmap()d).
1123 	 * With the page locked we are free to fix-up the dirty bits here.
1124 	 *
1125 	 * We do not under any circumstances truncate the valid bits, as
1126 	 * this will screw up bogus page replacement.
1127 	 */
1128 	VM_OBJECT_LOCK(object);
1129 	if (maxsize + poffset > object->un_pager.vnp.vnp_size) {
1130 		if (object->un_pager.vnp.vnp_size > poffset) {
1131 			int pgoff;
1132 
1133 			maxsize = object->un_pager.vnp.vnp_size - poffset;
1134 			ncount = btoc(maxsize);
1135 			if ((pgoff = (int)maxsize & PAGE_MASK) != 0) {
1136 				/*
1137 				 * If the object is locked and the following
1138 				 * conditions hold, then the page's dirty
1139 				 * field cannot be concurrently changed by a
1140 				 * pmap operation.
1141 				 */
1142 				m = ma[ncount - 1];
1143 				KASSERT(m->busy > 0,
1144 		("vnode_pager_generic_putpages: page %p is not busy", m));
1145 				KASSERT((m->aflags & PGA_WRITEABLE) == 0,
1146 		("vnode_pager_generic_putpages: page %p is not read-only", m));
1147 				vm_page_clear_dirty(m, pgoff, PAGE_SIZE -
1148 				    pgoff);
1149 			}
1150 		} else {
1151 			maxsize = 0;
1152 			ncount = 0;
1153 		}
1154 		if (ncount < count) {
1155 			for (i = ncount; i < count; i++) {
1156 				rtvals[i] = VM_PAGER_BAD;
1157 			}
1158 		}
1159 	}
1160 	VM_OBJECT_UNLOCK(object);
1161 
1162 	/*
1163 	 * pageouts are already clustered, use IO_ASYNC to force a bawrite()
1164 	 * rather then a bdwrite() to prevent paging I/O from saturating
1165 	 * the buffer cache.  Dummy-up the sequential heuristic to cause
1166 	 * large ranges to cluster.  If neither IO_SYNC or IO_ASYNC is set,
1167 	 * the system decides how to cluster.
1168 	 */
1169 	ioflags = IO_VMIO;
1170 	if (flags & (VM_PAGER_PUT_SYNC | VM_PAGER_PUT_INVAL))
1171 		ioflags |= IO_SYNC;
1172 	else if ((flags & VM_PAGER_CLUSTER_OK) == 0)
1173 		ioflags |= IO_ASYNC;
1174 	ioflags |= (flags & VM_PAGER_PUT_INVAL) ? IO_INVAL: 0;
1175 	ioflags |= IO_SEQMAX << IO_SEQSHIFT;
1176 
1177 	aiov.iov_base = (caddr_t) 0;
1178 	aiov.iov_len = maxsize;
1179 	auio.uio_iov = &aiov;
1180 	auio.uio_iovcnt = 1;
1181 	auio.uio_offset = poffset;
1182 	auio.uio_segflg = UIO_NOCOPY;
1183 	auio.uio_rw = UIO_WRITE;
1184 	auio.uio_resid = maxsize;
1185 	auio.uio_td = (struct thread *) 0;
1186 	error = VOP_WRITE(vp, &auio, ioflags, curthread->td_ucred);
1187 	PCPU_INC(cnt.v_vnodeout);
1188 	PCPU_ADD(cnt.v_vnodepgsout, ncount);
1189 
1190 	if (error) {
1191 		if ((ppscheck = ppsratecheck(&lastfail, &curfail, 1)))
1192 			printf("vnode_pager_putpages: I/O error %d\n", error);
1193 	}
1194 	if (auio.uio_resid) {
1195 		if (ppscheck || ppsratecheck(&lastfail, &curfail, 1))
1196 			printf("vnode_pager_putpages: residual I/O %zd at %lu\n",
1197 			    auio.uio_resid, (u_long)ma[0]->pindex);
1198 	}
1199 	for (i = 0; i < ncount; i++) {
1200 		rtvals[i] = VM_PAGER_OK;
1201 	}
1202 	return rtvals[0];
1203 }
1204 
1205 void
1206 vnode_pager_undirty_pages(vm_page_t *ma, int *rtvals, int written)
1207 {
1208 	vm_object_t obj;
1209 	int i, pos;
1210 
1211 	if (written == 0)
1212 		return;
1213 	obj = ma[0]->object;
1214 	VM_OBJECT_LOCK(obj);
1215 	for (i = 0, pos = 0; pos < written; i++, pos += PAGE_SIZE) {
1216 		if (pos < trunc_page(written)) {
1217 			rtvals[i] = VM_PAGER_OK;
1218 			vm_page_undirty(ma[i]);
1219 		} else {
1220 			/* Partially written page. */
1221 			rtvals[i] = VM_PAGER_AGAIN;
1222 			vm_page_clear_dirty(ma[i], 0, written & PAGE_MASK);
1223 		}
1224 	}
1225 	VM_OBJECT_UNLOCK(obj);
1226 }
1227 
1228 void
1229 vnode_pager_update_writecount(vm_object_t object, vm_offset_t start,
1230     vm_offset_t end)
1231 {
1232 	struct vnode *vp;
1233 	vm_ooffset_t old_wm;
1234 
1235 	VM_OBJECT_LOCK(object);
1236 	if (object->type != OBJT_VNODE) {
1237 		VM_OBJECT_UNLOCK(object);
1238 		return;
1239 	}
1240 	old_wm = object->un_pager.vnp.writemappings;
1241 	object->un_pager.vnp.writemappings += (vm_ooffset_t)end - start;
1242 	vp = object->handle;
1243 	if (old_wm == 0 && object->un_pager.vnp.writemappings != 0) {
1244 		ASSERT_VOP_ELOCKED(vp, "v_writecount inc");
1245 		vp->v_writecount++;
1246 		CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d",
1247 		    __func__, vp, vp->v_writecount);
1248 	} else if (old_wm != 0 && object->un_pager.vnp.writemappings == 0) {
1249 		ASSERT_VOP_ELOCKED(vp, "v_writecount dec");
1250 		vp->v_writecount--;
1251 		CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
1252 		    __func__, vp, vp->v_writecount);
1253 	}
1254 	VM_OBJECT_UNLOCK(object);
1255 }
1256 
1257 void
1258 vnode_pager_release_writecount(vm_object_t object, vm_offset_t start,
1259     vm_offset_t end)
1260 {
1261 	struct vnode *vp;
1262 	struct mount *mp;
1263 	vm_offset_t inc;
1264 	int vfslocked;
1265 
1266 	VM_OBJECT_LOCK(object);
1267 
1268 	/*
1269 	 * First, recheck the object type to account for the race when
1270 	 * the vnode is reclaimed.
1271 	 */
1272 	if (object->type != OBJT_VNODE) {
1273 		VM_OBJECT_UNLOCK(object);
1274 		return;
1275 	}
1276 
1277 	/*
1278 	 * Optimize for the case when writemappings is not going to
1279 	 * zero.
1280 	 */
1281 	inc = end - start;
1282 	if (object->un_pager.vnp.writemappings != inc) {
1283 		object->un_pager.vnp.writemappings -= inc;
1284 		VM_OBJECT_UNLOCK(object);
1285 		return;
1286 	}
1287 
1288 	vp = object->handle;
1289 	vhold(vp);
1290 	VM_OBJECT_UNLOCK(object);
1291 	vfslocked = VFS_LOCK_GIANT(vp->v_mount);
1292 	mp = NULL;
1293 	vn_start_write(vp, &mp, V_WAIT);
1294 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1295 
1296 	/*
1297 	 * Decrement the object's writemappings, by swapping the start
1298 	 * and end arguments for vnode_pager_update_writecount().  If
1299 	 * there was not a race with vnode reclaimation, then the
1300 	 * vnode's v_writecount is decremented.
1301 	 */
1302 	vnode_pager_update_writecount(object, end, start);
1303 	VOP_UNLOCK(vp, 0);
1304 	vdrop(vp);
1305 	if (mp != NULL)
1306 		vn_finished_write(mp);
1307 	VFS_UNLOCK_GIANT(vfslocked);
1308 }
1309