xref: /freebsd/sys/vm/vm_object.c (revision 81966bce06dac45f42bda62b14dba0756ef28505)
1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * The Mach Operating System project at Carnegie-Mellon University.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  *	from: @(#)vm_object.c	8.5 (Berkeley) 3/22/94
33  *
34  *
35  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
36  * All rights reserved.
37  *
38  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
39  *
40  * Permission to use, copy, modify and distribute this software and
41  * its documentation is hereby granted, provided that both the copyright
42  * notice and this permission notice appear in all copies of the
43  * software, derivative works or modified versions, and any portions
44  * thereof, and that both notices appear in supporting documentation.
45  *
46  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
47  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
48  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
49  *
50  * Carnegie Mellon requests users of this software to return to
51  *
52  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
53  *  School of Computer Science
54  *  Carnegie Mellon University
55  *  Pittsburgh PA 15213-3890
56  *
57  * any improvements or extensions that they make and grant Carnegie the
58  * rights to redistribute these changes.
59  */
60 
61 /*
62  *	Virtual memory object module.
63  */
64 
65 #include <sys/cdefs.h>
66 __FBSDID("$FreeBSD$");
67 
68 #include "opt_vm.h"
69 
70 #include <sys/param.h>
71 #include <sys/systm.h>
72 #include <sys/lock.h>
73 #include <sys/mman.h>
74 #include <sys/mount.h>
75 #include <sys/kernel.h>
76 #include <sys/sysctl.h>
77 #include <sys/mutex.h>
78 #include <sys/proc.h>		/* for curproc, pageproc */
79 #include <sys/socket.h>
80 #include <sys/resourcevar.h>
81 #include <sys/vnode.h>
82 #include <sys/vmmeter.h>
83 #include <sys/sx.h>
84 
85 #include <vm/vm.h>
86 #include <vm/vm_param.h>
87 #include <vm/pmap.h>
88 #include <vm/vm_map.h>
89 #include <vm/vm_object.h>
90 #include <vm/vm_page.h>
91 #include <vm/vm_pageout.h>
92 #include <vm/vm_pager.h>
93 #include <vm/swap_pager.h>
94 #include <vm/vm_kern.h>
95 #include <vm/vm_extern.h>
96 #include <vm/vm_reserv.h>
97 #include <vm/uma.h>
98 
99 static int old_msync;
100 SYSCTL_INT(_vm, OID_AUTO, old_msync, CTLFLAG_RW, &old_msync, 0,
101     "Use old (insecure) msync behavior");
102 
103 static int	vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
104 		    int pagerflags, int flags, int *clearobjflags);
105 static boolean_t vm_object_page_remove_write(vm_page_t p, int flags,
106 		    int *clearobjflags);
107 static void	vm_object_qcollapse(vm_object_t object);
108 static void	vm_object_vndeallocate(vm_object_t object);
109 
110 /*
111  *	Virtual memory objects maintain the actual data
112  *	associated with allocated virtual memory.  A given
113  *	page of memory exists within exactly one object.
114  *
115  *	An object is only deallocated when all "references"
116  *	are given up.  Only one "reference" to a given
117  *	region of an object should be writeable.
118  *
119  *	Associated with each object is a list of all resident
120  *	memory pages belonging to that object; this list is
121  *	maintained by the "vm_page" module, and locked by the object's
122  *	lock.
123  *
124  *	Each object also records a "pager" routine which is
125  *	used to retrieve (and store) pages to the proper backing
126  *	storage.  In addition, objects may be backed by other
127  *	objects from which they were virtual-copied.
128  *
129  *	The only items within the object structure which are
130  *	modified after time of creation are:
131  *		reference count		locked by object's lock
132  *		pager routine		locked by object's lock
133  *
134  */
135 
136 struct object_q vm_object_list;
137 struct mtx vm_object_list_mtx;	/* lock for object list and count */
138 
139 struct vm_object kernel_object_store;
140 struct vm_object kmem_object_store;
141 
142 static SYSCTL_NODE(_vm_stats, OID_AUTO, object, CTLFLAG_RD, 0,
143     "VM object stats");
144 
145 static long object_collapses;
146 SYSCTL_LONG(_vm_stats_object, OID_AUTO, collapses, CTLFLAG_RD,
147     &object_collapses, 0, "VM object collapses");
148 
149 static long object_bypasses;
150 SYSCTL_LONG(_vm_stats_object, OID_AUTO, bypasses, CTLFLAG_RD,
151     &object_bypasses, 0, "VM object bypasses");
152 
153 static uma_zone_t obj_zone;
154 
155 static int vm_object_zinit(void *mem, int size, int flags);
156 
157 #ifdef INVARIANTS
158 static void vm_object_zdtor(void *mem, int size, void *arg);
159 
160 static void
161 vm_object_zdtor(void *mem, int size, void *arg)
162 {
163 	vm_object_t object;
164 
165 	object = (vm_object_t)mem;
166 	KASSERT(TAILQ_EMPTY(&object->memq),
167 	    ("object %p has resident pages",
168 	    object));
169 #if VM_NRESERVLEVEL > 0
170 	KASSERT(LIST_EMPTY(&object->rvq),
171 	    ("object %p has reservations",
172 	    object));
173 #endif
174 	KASSERT(object->cache == NULL,
175 	    ("object %p has cached pages",
176 	    object));
177 	KASSERT(object->paging_in_progress == 0,
178 	    ("object %p paging_in_progress = %d",
179 	    object, object->paging_in_progress));
180 	KASSERT(object->resident_page_count == 0,
181 	    ("object %p resident_page_count = %d",
182 	    object, object->resident_page_count));
183 	KASSERT(object->shadow_count == 0,
184 	    ("object %p shadow_count = %d",
185 	    object, object->shadow_count));
186 }
187 #endif
188 
189 static int
190 vm_object_zinit(void *mem, int size, int flags)
191 {
192 	vm_object_t object;
193 
194 	object = (vm_object_t)mem;
195 	bzero(&object->mtx, sizeof(object->mtx));
196 	VM_OBJECT_LOCK_INIT(object, "standard object");
197 
198 	/* These are true for any object that has been freed */
199 	object->paging_in_progress = 0;
200 	object->resident_page_count = 0;
201 	object->shadow_count = 0;
202 	return (0);
203 }
204 
205 void
206 _vm_object_allocate(objtype_t type, vm_pindex_t size, vm_object_t object)
207 {
208 
209 	TAILQ_INIT(&object->memq);
210 	LIST_INIT(&object->shadow_head);
211 
212 	object->root = NULL;
213 	object->type = type;
214 	object->size = size;
215 	object->generation = 1;
216 	object->ref_count = 1;
217 	object->memattr = VM_MEMATTR_DEFAULT;
218 	object->flags = 0;
219 	object->cred = NULL;
220 	object->charge = 0;
221 	if ((object->type == OBJT_DEFAULT) || (object->type == OBJT_SWAP))
222 		object->flags = OBJ_ONEMAPPING;
223 	object->pg_color = 0;
224 	object->handle = NULL;
225 	object->backing_object = NULL;
226 	object->backing_object_offset = (vm_ooffset_t) 0;
227 #if VM_NRESERVLEVEL > 0
228 	LIST_INIT(&object->rvq);
229 #endif
230 	object->cache = NULL;
231 
232 	mtx_lock(&vm_object_list_mtx);
233 	TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
234 	mtx_unlock(&vm_object_list_mtx);
235 }
236 
237 /*
238  *	vm_object_init:
239  *
240  *	Initialize the VM objects module.
241  */
242 void
243 vm_object_init(void)
244 {
245 	TAILQ_INIT(&vm_object_list);
246 	mtx_init(&vm_object_list_mtx, "vm object_list", NULL, MTX_DEF);
247 
248 	VM_OBJECT_LOCK_INIT(kernel_object, "kernel object");
249 	_vm_object_allocate(OBJT_PHYS, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),
250 	    kernel_object);
251 #if VM_NRESERVLEVEL > 0
252 	kernel_object->flags |= OBJ_COLORED;
253 	kernel_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
254 #endif
255 
256 	VM_OBJECT_LOCK_INIT(kmem_object, "kmem object");
257 	_vm_object_allocate(OBJT_PHYS, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),
258 	    kmem_object);
259 #if VM_NRESERVLEVEL > 0
260 	kmem_object->flags |= OBJ_COLORED;
261 	kmem_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
262 #endif
263 
264 	/*
265 	 * The lock portion of struct vm_object must be type stable due
266 	 * to vm_pageout_fallback_object_lock locking a vm object
267 	 * without holding any references to it.
268 	 */
269 	obj_zone = uma_zcreate("VM OBJECT", sizeof (struct vm_object), NULL,
270 #ifdef INVARIANTS
271 	    vm_object_zdtor,
272 #else
273 	    NULL,
274 #endif
275 	    vm_object_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_VM|UMA_ZONE_NOFREE);
276 }
277 
278 void
279 vm_object_clear_flag(vm_object_t object, u_short bits)
280 {
281 
282 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
283 	object->flags &= ~bits;
284 }
285 
286 /*
287  *	Sets the default memory attribute for the specified object.  Pages
288  *	that are allocated to this object are by default assigned this memory
289  *	attribute.
290  *
291  *	Presently, this function must be called before any pages are allocated
292  *	to the object.  In the future, this requirement may be relaxed for
293  *	"default" and "swap" objects.
294  */
295 int
296 vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr)
297 {
298 
299 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
300 	switch (object->type) {
301 	case OBJT_DEFAULT:
302 	case OBJT_DEVICE:
303 	case OBJT_PHYS:
304 	case OBJT_SG:
305 	case OBJT_SWAP:
306 	case OBJT_VNODE:
307 		if (!TAILQ_EMPTY(&object->memq))
308 			return (KERN_FAILURE);
309 		break;
310 	case OBJT_DEAD:
311 		return (KERN_INVALID_ARGUMENT);
312 	}
313 	object->memattr = memattr;
314 	return (KERN_SUCCESS);
315 }
316 
317 void
318 vm_object_pip_add(vm_object_t object, short i)
319 {
320 
321 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
322 	object->paging_in_progress += i;
323 }
324 
325 void
326 vm_object_pip_subtract(vm_object_t object, short i)
327 {
328 
329 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
330 	object->paging_in_progress -= i;
331 }
332 
333 void
334 vm_object_pip_wakeup(vm_object_t object)
335 {
336 
337 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
338 	object->paging_in_progress--;
339 	if ((object->flags & OBJ_PIPWNT) && object->paging_in_progress == 0) {
340 		vm_object_clear_flag(object, OBJ_PIPWNT);
341 		wakeup(object);
342 	}
343 }
344 
345 void
346 vm_object_pip_wakeupn(vm_object_t object, short i)
347 {
348 
349 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
350 	if (i)
351 		object->paging_in_progress -= i;
352 	if ((object->flags & OBJ_PIPWNT) && object->paging_in_progress == 0) {
353 		vm_object_clear_flag(object, OBJ_PIPWNT);
354 		wakeup(object);
355 	}
356 }
357 
358 void
359 vm_object_pip_wait(vm_object_t object, char *waitid)
360 {
361 
362 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
363 	while (object->paging_in_progress) {
364 		object->flags |= OBJ_PIPWNT;
365 		msleep(object, VM_OBJECT_MTX(object), PVM, waitid, 0);
366 	}
367 }
368 
369 /*
370  *	vm_object_allocate:
371  *
372  *	Returns a new object with the given size.
373  */
374 vm_object_t
375 vm_object_allocate(objtype_t type, vm_pindex_t size)
376 {
377 	vm_object_t object;
378 
379 	object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
380 	_vm_object_allocate(type, size, object);
381 	return (object);
382 }
383 
384 
385 /*
386  *	vm_object_reference:
387  *
388  *	Gets another reference to the given object.  Note: OBJ_DEAD
389  *	objects can be referenced during final cleaning.
390  */
391 void
392 vm_object_reference(vm_object_t object)
393 {
394 	if (object == NULL)
395 		return;
396 	VM_OBJECT_LOCK(object);
397 	vm_object_reference_locked(object);
398 	VM_OBJECT_UNLOCK(object);
399 }
400 
401 /*
402  *	vm_object_reference_locked:
403  *
404  *	Gets another reference to the given object.
405  *
406  *	The object must be locked.
407  */
408 void
409 vm_object_reference_locked(vm_object_t object)
410 {
411 	struct vnode *vp;
412 
413 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
414 	object->ref_count++;
415 	if (object->type == OBJT_VNODE) {
416 		vp = object->handle;
417 		vref(vp);
418 	}
419 }
420 
421 /*
422  * Handle deallocating an object of type OBJT_VNODE.
423  */
424 static void
425 vm_object_vndeallocate(vm_object_t object)
426 {
427 	struct vnode *vp = (struct vnode *) object->handle;
428 
429 	VFS_ASSERT_GIANT(vp->v_mount);
430 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
431 	KASSERT(object->type == OBJT_VNODE,
432 	    ("vm_object_vndeallocate: not a vnode object"));
433 	KASSERT(vp != NULL, ("vm_object_vndeallocate: missing vp"));
434 #ifdef INVARIANTS
435 	if (object->ref_count == 0) {
436 		vprint("vm_object_vndeallocate", vp);
437 		panic("vm_object_vndeallocate: bad object reference count");
438 	}
439 #endif
440 
441 	if (object->ref_count > 1) {
442 		object->ref_count--;
443 		VM_OBJECT_UNLOCK(object);
444 		/* vrele may need the vnode lock. */
445 		vrele(vp);
446 	} else {
447 		vhold(vp);
448 		VM_OBJECT_UNLOCK(object);
449 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
450 		vdrop(vp);
451 		VM_OBJECT_LOCK(object);
452 		object->ref_count--;
453 		if (object->type == OBJT_DEAD) {
454 			VM_OBJECT_UNLOCK(object);
455 			VOP_UNLOCK(vp, 0);
456 		} else {
457 			if (object->ref_count == 0)
458 				vp->v_vflag &= ~VV_TEXT;
459 			VM_OBJECT_UNLOCK(object);
460 			vput(vp);
461 		}
462 	}
463 }
464 
465 /*
466  *	vm_object_deallocate:
467  *
468  *	Release a reference to the specified object,
469  *	gained either through a vm_object_allocate
470  *	or a vm_object_reference call.  When all references
471  *	are gone, storage associated with this object
472  *	may be relinquished.
473  *
474  *	No object may be locked.
475  */
476 void
477 vm_object_deallocate(vm_object_t object)
478 {
479 	vm_object_t temp;
480 
481 	while (object != NULL) {
482 		int vfslocked;
483 
484 		vfslocked = 0;
485 	restart:
486 		VM_OBJECT_LOCK(object);
487 		if (object->type == OBJT_VNODE) {
488 			struct vnode *vp = (struct vnode *) object->handle;
489 
490 			/*
491 			 * Conditionally acquire Giant for a vnode-backed
492 			 * object.  We have to be careful since the type of
493 			 * a vnode object can change while the object is
494 			 * unlocked.
495 			 */
496 			if (VFS_NEEDSGIANT(vp->v_mount) && !vfslocked) {
497 				vfslocked = 1;
498 				if (!mtx_trylock(&Giant)) {
499 					VM_OBJECT_UNLOCK(object);
500 					mtx_lock(&Giant);
501 					goto restart;
502 				}
503 			}
504 			vm_object_vndeallocate(object);
505 			VFS_UNLOCK_GIANT(vfslocked);
506 			return;
507 		} else
508 			/*
509 			 * This is to handle the case that the object
510 			 * changed type while we dropped its lock to
511 			 * obtain Giant.
512 			 */
513 			VFS_UNLOCK_GIANT(vfslocked);
514 
515 		KASSERT(object->ref_count != 0,
516 			("vm_object_deallocate: object deallocated too many times: %d", object->type));
517 
518 		/*
519 		 * If the reference count goes to 0 we start calling
520 		 * vm_object_terminate() on the object chain.
521 		 * A ref count of 1 may be a special case depending on the
522 		 * shadow count being 0 or 1.
523 		 */
524 		object->ref_count--;
525 		if (object->ref_count > 1) {
526 			VM_OBJECT_UNLOCK(object);
527 			return;
528 		} else if (object->ref_count == 1) {
529 			if (object->shadow_count == 0 &&
530 			    object->handle == NULL &&
531 			    (object->type == OBJT_DEFAULT ||
532 			     object->type == OBJT_SWAP)) {
533 				vm_object_set_flag(object, OBJ_ONEMAPPING);
534 			} else if ((object->shadow_count == 1) &&
535 			    (object->handle == NULL) &&
536 			    (object->type == OBJT_DEFAULT ||
537 			     object->type == OBJT_SWAP)) {
538 				vm_object_t robject;
539 
540 				robject = LIST_FIRST(&object->shadow_head);
541 				KASSERT(robject != NULL,
542 				    ("vm_object_deallocate: ref_count: %d, shadow_count: %d",
543 					 object->ref_count,
544 					 object->shadow_count));
545 				if (!VM_OBJECT_TRYLOCK(robject)) {
546 					/*
547 					 * Avoid a potential deadlock.
548 					 */
549 					object->ref_count++;
550 					VM_OBJECT_UNLOCK(object);
551 					/*
552 					 * More likely than not the thread
553 					 * holding robject's lock has lower
554 					 * priority than the current thread.
555 					 * Let the lower priority thread run.
556 					 */
557 					pause("vmo_de", 1);
558 					continue;
559 				}
560 				/*
561 				 * Collapse object into its shadow unless its
562 				 * shadow is dead.  In that case, object will
563 				 * be deallocated by the thread that is
564 				 * deallocating its shadow.
565 				 */
566 				if ((robject->flags & OBJ_DEAD) == 0 &&
567 				    (robject->handle == NULL) &&
568 				    (robject->type == OBJT_DEFAULT ||
569 				     robject->type == OBJT_SWAP)) {
570 
571 					robject->ref_count++;
572 retry:
573 					if (robject->paging_in_progress) {
574 						VM_OBJECT_UNLOCK(object);
575 						vm_object_pip_wait(robject,
576 						    "objde1");
577 						temp = robject->backing_object;
578 						if (object == temp) {
579 							VM_OBJECT_LOCK(object);
580 							goto retry;
581 						}
582 					} else if (object->paging_in_progress) {
583 						VM_OBJECT_UNLOCK(robject);
584 						object->flags |= OBJ_PIPWNT;
585 						msleep(object,
586 						    VM_OBJECT_MTX(object),
587 						    PDROP | PVM, "objde2", 0);
588 						VM_OBJECT_LOCK(robject);
589 						temp = robject->backing_object;
590 						if (object == temp) {
591 							VM_OBJECT_LOCK(object);
592 							goto retry;
593 						}
594 					} else
595 						VM_OBJECT_UNLOCK(object);
596 
597 					if (robject->ref_count == 1) {
598 						robject->ref_count--;
599 						object = robject;
600 						goto doterm;
601 					}
602 					object = robject;
603 					vm_object_collapse(object);
604 					VM_OBJECT_UNLOCK(object);
605 					continue;
606 				}
607 				VM_OBJECT_UNLOCK(robject);
608 			}
609 			VM_OBJECT_UNLOCK(object);
610 			return;
611 		}
612 doterm:
613 		temp = object->backing_object;
614 		if (temp != NULL) {
615 			VM_OBJECT_LOCK(temp);
616 			LIST_REMOVE(object, shadow_list);
617 			temp->shadow_count--;
618 			VM_OBJECT_UNLOCK(temp);
619 			object->backing_object = NULL;
620 		}
621 		/*
622 		 * Don't double-terminate, we could be in a termination
623 		 * recursion due to the terminate having to sync data
624 		 * to disk.
625 		 */
626 		if ((object->flags & OBJ_DEAD) == 0)
627 			vm_object_terminate(object);
628 		else
629 			VM_OBJECT_UNLOCK(object);
630 		object = temp;
631 	}
632 }
633 
634 /*
635  *	vm_object_destroy removes the object from the global object list
636  *      and frees the space for the object.
637  */
638 void
639 vm_object_destroy(vm_object_t object)
640 {
641 
642 	/*
643 	 * Remove the object from the global object list.
644 	 */
645 	mtx_lock(&vm_object_list_mtx);
646 	TAILQ_REMOVE(&vm_object_list, object, object_list);
647 	mtx_unlock(&vm_object_list_mtx);
648 
649 	/*
650 	 * Release the allocation charge.
651 	 */
652 	if (object->cred != NULL) {
653 		KASSERT(object->type == OBJT_DEFAULT ||
654 		    object->type == OBJT_SWAP,
655 		    ("vm_object_terminate: non-swap obj %p has cred",
656 		     object));
657 		swap_release_by_cred(object->charge, object->cred);
658 		object->charge = 0;
659 		crfree(object->cred);
660 		object->cred = NULL;
661 	}
662 
663 	/*
664 	 * Free the space for the object.
665 	 */
666 	uma_zfree(obj_zone, object);
667 }
668 
669 /*
670  *	vm_object_terminate actually destroys the specified object, freeing
671  *	up all previously used resources.
672  *
673  *	The object must be locked.
674  *	This routine may block.
675  */
676 void
677 vm_object_terminate(vm_object_t object)
678 {
679 	vm_page_t p, p_next;
680 
681 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
682 
683 	/*
684 	 * Make sure no one uses us.
685 	 */
686 	vm_object_set_flag(object, OBJ_DEAD);
687 
688 	/*
689 	 * wait for the pageout daemon to be done with the object
690 	 */
691 	vm_object_pip_wait(object, "objtrm");
692 
693 	KASSERT(!object->paging_in_progress,
694 		("vm_object_terminate: pageout in progress"));
695 
696 	/*
697 	 * Clean and free the pages, as appropriate. All references to the
698 	 * object are gone, so we don't need to lock it.
699 	 */
700 	if (object->type == OBJT_VNODE) {
701 		struct vnode *vp = (struct vnode *)object->handle;
702 
703 		/*
704 		 * Clean pages and flush buffers.
705 		 */
706 		vm_object_page_clean(object, 0, 0, OBJPC_SYNC);
707 		VM_OBJECT_UNLOCK(object);
708 
709 		vinvalbuf(vp, V_SAVE, 0, 0);
710 
711 		VM_OBJECT_LOCK(object);
712 	}
713 
714 	KASSERT(object->ref_count == 0,
715 		("vm_object_terminate: object with references, ref_count=%d",
716 		object->ref_count));
717 
718 	/*
719 	 * Free any remaining pageable pages.  This also removes them from the
720 	 * paging queues.  However, don't free wired pages, just remove them
721 	 * from the object.  Rather than incrementally removing each page from
722 	 * the object, the page and object are reset to any empty state.
723 	 */
724 	TAILQ_FOREACH_SAFE(p, &object->memq, listq, p_next) {
725 		KASSERT(!p->busy && (p->oflags & VPO_BUSY) == 0,
726 		    ("vm_object_terminate: freeing busy page %p", p));
727 		vm_page_lock(p);
728 		/*
729 		 * Optimize the page's removal from the object by resetting
730 		 * its "object" field.  Specifically, if the page is not
731 		 * wired, then the effect of this assignment is that
732 		 * vm_page_free()'s call to vm_page_remove() will return
733 		 * immediately without modifying the page or the object.
734 		 */
735 		p->object = NULL;
736 		if (p->wire_count == 0) {
737 			vm_page_free(p);
738 			PCPU_INC(cnt.v_pfree);
739 		}
740 		vm_page_unlock(p);
741 	}
742 	/*
743 	 * If the object contained any pages, then reset it to an empty state.
744 	 * None of the object's fields, including "resident_page_count", were
745 	 * modified by the preceding loop.
746 	 */
747 	if (object->resident_page_count != 0) {
748 		object->root = NULL;
749 		TAILQ_INIT(&object->memq);
750 		object->resident_page_count = 0;
751 		if (object->type == OBJT_VNODE)
752 			vdrop(object->handle);
753 	}
754 
755 #if VM_NRESERVLEVEL > 0
756 	if (__predict_false(!LIST_EMPTY(&object->rvq)))
757 		vm_reserv_break_all(object);
758 #endif
759 	if (__predict_false(object->cache != NULL))
760 		vm_page_cache_free(object, 0, 0);
761 
762 	/*
763 	 * Let the pager know object is dead.
764 	 */
765 	vm_pager_deallocate(object);
766 	VM_OBJECT_UNLOCK(object);
767 
768 	vm_object_destroy(object);
769 }
770 
771 /*
772  * Make the page read-only so that we can clear the object flags.  However, if
773  * this is a nosync mmap then the object is likely to stay dirty so do not
774  * mess with the page and do not clear the object flags.  Returns TRUE if the
775  * page should be flushed, and FALSE otherwise.
776  */
777 static boolean_t
778 vm_object_page_remove_write(vm_page_t p, int flags, int *clearobjflags)
779 {
780 
781 	/*
782 	 * If we have been asked to skip nosync pages and this is a
783 	 * nosync page, skip it.  Note that the object flags were not
784 	 * cleared in this case so we do not have to set them.
785 	 */
786 	if ((flags & OBJPC_NOSYNC) != 0 && (p->oflags & VPO_NOSYNC) != 0) {
787 		*clearobjflags = 0;
788 		return (FALSE);
789 	} else {
790 		pmap_remove_write(p);
791 		return (p->dirty != 0);
792 	}
793 }
794 
795 /*
796  *	vm_object_page_clean
797  *
798  *	Clean all dirty pages in the specified range of object.  Leaves page
799  * 	on whatever queue it is currently on.   If NOSYNC is set then do not
800  *	write out pages with VPO_NOSYNC set (originally comes from MAP_NOSYNC),
801  *	leaving the object dirty.
802  *
803  *	When stuffing pages asynchronously, allow clustering.  XXX we need a
804  *	synchronous clustering mode implementation.
805  *
806  *	Odd semantics: if start == end, we clean everything.
807  *
808  *	The object must be locked.
809  */
810 void
811 vm_object_page_clean(vm_object_t object, vm_ooffset_t start, vm_ooffset_t end,
812     int flags)
813 {
814 	vm_page_t np, p;
815 	vm_pindex_t pi, tend, tstart;
816 	int clearobjflags, curgeneration, n, pagerflags;
817 
818 	mtx_assert(&vm_page_queue_mtx, MA_NOTOWNED);
819 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
820 	KASSERT(object->type == OBJT_VNODE, ("Not a vnode object"));
821 	if ((object->flags & OBJ_MIGHTBEDIRTY) == 0 ||
822 	    object->resident_page_count == 0)
823 		return;
824 
825 	pagerflags = (flags & (OBJPC_SYNC | OBJPC_INVAL)) != 0 ?
826 	    VM_PAGER_PUT_SYNC : VM_PAGER_CLUSTER_OK;
827 	pagerflags |= (flags & OBJPC_INVAL) != 0 ? VM_PAGER_PUT_INVAL : 0;
828 
829 	tstart = OFF_TO_IDX(start);
830 	tend = (end == 0) ? object->size : OFF_TO_IDX(end + PAGE_MASK);
831 	clearobjflags = tstart == 0 && tend >= object->size;
832 
833 rescan:
834 	curgeneration = object->generation;
835 
836 	for (p = vm_page_find_least(object, tstart); p != NULL; p = np) {
837 		pi = p->pindex;
838 		if (pi >= tend)
839 			break;
840 		np = TAILQ_NEXT(p, listq);
841 		if (p->valid == 0)
842 			continue;
843 		if (vm_page_sleep_if_busy(p, TRUE, "vpcwai")) {
844 			if (object->generation != curgeneration)
845 				goto rescan;
846 			np = vm_page_find_least(object, pi);
847 			continue;
848 		}
849 		if (!vm_object_page_remove_write(p, flags, &clearobjflags))
850 			continue;
851 
852 		n = vm_object_page_collect_flush(object, p, pagerflags,
853 		    flags, &clearobjflags);
854 		if (object->generation != curgeneration)
855 			goto rescan;
856 
857 		/*
858 		 * If the VOP_PUTPAGES() did a truncated write, so
859 		 * that even the first page of the run is not fully
860 		 * written, vm_pageout_flush() returns 0 as the run
861 		 * length.  Since the condition that caused truncated
862 		 * write may be permanent, e.g. exhausted free space,
863 		 * accepting n == 0 would cause an infinite loop.
864 		 *
865 		 * Forwarding the iterator leaves the unwritten page
866 		 * behind, but there is not much we can do there if
867 		 * filesystem refuses to write it.
868 		 */
869 		if (n == 0)
870 			n = 1;
871 		np = vm_page_find_least(object, pi + n);
872 	}
873 #if 0
874 	VOP_FSYNC(vp, (pagerflags & VM_PAGER_PUT_SYNC) ? MNT_WAIT : 0);
875 #endif
876 
877 	if (clearobjflags)
878 		vm_object_clear_flag(object, OBJ_MIGHTBEDIRTY);
879 }
880 
881 static int
882 vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags,
883     int flags, int *clearobjflags)
884 {
885 	vm_page_t ma[vm_pageout_page_count], p_first, tp;
886 	int count, i, mreq, runlen;
887 
888 	mtx_assert(&vm_page_queue_mtx, MA_NOTOWNED);
889 	vm_page_lock_assert(p, MA_NOTOWNED);
890 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
891 
892 	count = 1;
893 	mreq = 0;
894 
895 	for (tp = p; count < vm_pageout_page_count; count++) {
896 		tp = vm_page_next(tp);
897 		if (tp == NULL || tp->busy != 0 || (tp->oflags & VPO_BUSY) != 0)
898 			break;
899 		if (!vm_object_page_remove_write(tp, flags, clearobjflags))
900 			break;
901 	}
902 
903 	for (p_first = p; count < vm_pageout_page_count; count++) {
904 		tp = vm_page_prev(p_first);
905 		if (tp == NULL || tp->busy != 0 || (tp->oflags & VPO_BUSY) != 0)
906 			break;
907 		if (!vm_object_page_remove_write(tp, flags, clearobjflags))
908 			break;
909 		p_first = tp;
910 		mreq++;
911 	}
912 
913 	for (tp = p_first, i = 0; i < count; tp = TAILQ_NEXT(tp, listq), i++)
914 		ma[i] = tp;
915 
916 	vm_pageout_flush(ma, count, pagerflags, mreq, &runlen);
917 	return (runlen);
918 }
919 
920 /*
921  * Note that there is absolutely no sense in writing out
922  * anonymous objects, so we track down the vnode object
923  * to write out.
924  * We invalidate (remove) all pages from the address space
925  * for semantic correctness.
926  *
927  * If the backing object is a device object with unmanaged pages, then any
928  * mappings to the specified range of pages must be removed before this
929  * function is called.
930  *
931  * Note: certain anonymous maps, such as MAP_NOSYNC maps,
932  * may start out with a NULL object.
933  */
934 void
935 vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size,
936     boolean_t syncio, boolean_t invalidate)
937 {
938 	vm_object_t backing_object;
939 	struct vnode *vp;
940 	struct mount *mp;
941 	int flags, fsync_after;
942 
943 	if (object == NULL)
944 		return;
945 	VM_OBJECT_LOCK(object);
946 	while ((backing_object = object->backing_object) != NULL) {
947 		VM_OBJECT_LOCK(backing_object);
948 		offset += object->backing_object_offset;
949 		VM_OBJECT_UNLOCK(object);
950 		object = backing_object;
951 		if (object->size < OFF_TO_IDX(offset + size))
952 			size = IDX_TO_OFF(object->size) - offset;
953 	}
954 	/*
955 	 * Flush pages if writing is allowed, invalidate them
956 	 * if invalidation requested.  Pages undergoing I/O
957 	 * will be ignored by vm_object_page_remove().
958 	 *
959 	 * We cannot lock the vnode and then wait for paging
960 	 * to complete without deadlocking against vm_fault.
961 	 * Instead we simply call vm_object_page_remove() and
962 	 * allow it to block internally on a page-by-page
963 	 * basis when it encounters pages undergoing async
964 	 * I/O.
965 	 */
966 	if (object->type == OBJT_VNODE &&
967 	    (object->flags & OBJ_MIGHTBEDIRTY) != 0) {
968 		int vfslocked;
969 		vp = object->handle;
970 		VM_OBJECT_UNLOCK(object);
971 		(void) vn_start_write(vp, &mp, V_WAIT);
972 		vfslocked = VFS_LOCK_GIANT(vp->v_mount);
973 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
974 		if (syncio && !invalidate && offset == 0 &&
975 		    OFF_TO_IDX(size) == object->size) {
976 			/*
977 			 * If syncing the whole mapping of the file,
978 			 * it is faster to schedule all the writes in
979 			 * async mode, also allowing the clustering,
980 			 * and then wait for i/o to complete.
981 			 */
982 			flags = 0;
983 			fsync_after = TRUE;
984 		} else {
985 			flags = (syncio || invalidate) ? OBJPC_SYNC : 0;
986 			flags |= invalidate ? (OBJPC_SYNC | OBJPC_INVAL) : 0;
987 			fsync_after = FALSE;
988 		}
989 		VM_OBJECT_LOCK(object);
990 		vm_object_page_clean(object, offset, offset + size, flags);
991 		VM_OBJECT_UNLOCK(object);
992 		if (fsync_after)
993 			(void) VOP_FSYNC(vp, MNT_WAIT, curthread);
994 		VOP_UNLOCK(vp, 0);
995 		VFS_UNLOCK_GIANT(vfslocked);
996 		vn_finished_write(mp);
997 		VM_OBJECT_LOCK(object);
998 	}
999 	if ((object->type == OBJT_VNODE ||
1000 	     object->type == OBJT_DEVICE) && invalidate) {
1001 		if (object->type == OBJT_DEVICE)
1002 			/*
1003 			 * The option OBJPR_NOTMAPPED must be passed here
1004 			 * because vm_object_page_remove() cannot remove
1005 			 * unmanaged mappings.
1006 			 */
1007 			flags = OBJPR_NOTMAPPED;
1008 		else if (old_msync)
1009 			flags = 0;
1010 		else
1011 			flags = OBJPR_CLEANONLY;
1012 		vm_object_page_remove(object, OFF_TO_IDX(offset),
1013 		    OFF_TO_IDX(offset + size + PAGE_MASK), flags);
1014 	}
1015 	VM_OBJECT_UNLOCK(object);
1016 }
1017 
1018 /*
1019  *	vm_object_madvise:
1020  *
1021  *	Implements the madvise function at the object/page level.
1022  *
1023  *	MADV_WILLNEED	(any object)
1024  *
1025  *	    Activate the specified pages if they are resident.
1026  *
1027  *	MADV_DONTNEED	(any object)
1028  *
1029  *	    Deactivate the specified pages if they are resident.
1030  *
1031  *	MADV_FREE	(OBJT_DEFAULT/OBJT_SWAP objects,
1032  *			 OBJ_ONEMAPPING only)
1033  *
1034  *	    Deactivate and clean the specified pages if they are
1035  *	    resident.  This permits the process to reuse the pages
1036  *	    without faulting or the kernel to reclaim the pages
1037  *	    without I/O.
1038  */
1039 void
1040 vm_object_madvise(vm_object_t object, vm_pindex_t pindex, int count, int advise)
1041 {
1042 	vm_pindex_t end, tpindex;
1043 	vm_object_t backing_object, tobject;
1044 	vm_page_t m;
1045 
1046 	if (object == NULL)
1047 		return;
1048 	VM_OBJECT_LOCK(object);
1049 	end = pindex + count;
1050 	/*
1051 	 * Locate and adjust resident pages
1052 	 */
1053 	for (; pindex < end; pindex += 1) {
1054 relookup:
1055 		tobject = object;
1056 		tpindex = pindex;
1057 shadowlookup:
1058 		/*
1059 		 * MADV_FREE only operates on OBJT_DEFAULT or OBJT_SWAP pages
1060 		 * and those pages must be OBJ_ONEMAPPING.
1061 		 */
1062 		if (advise == MADV_FREE) {
1063 			if ((tobject->type != OBJT_DEFAULT &&
1064 			     tobject->type != OBJT_SWAP) ||
1065 			    (tobject->flags & OBJ_ONEMAPPING) == 0) {
1066 				goto unlock_tobject;
1067 			}
1068 		} else if (tobject->type == OBJT_PHYS)
1069 			goto unlock_tobject;
1070 		m = vm_page_lookup(tobject, tpindex);
1071 		if (m == NULL && advise == MADV_WILLNEED) {
1072 			/*
1073 			 * If the page is cached, reactivate it.
1074 			 */
1075 			m = vm_page_alloc(tobject, tpindex, VM_ALLOC_IFCACHED |
1076 			    VM_ALLOC_NOBUSY);
1077 		}
1078 		if (m == NULL) {
1079 			/*
1080 			 * There may be swap even if there is no backing page
1081 			 */
1082 			if (advise == MADV_FREE && tobject->type == OBJT_SWAP)
1083 				swap_pager_freespace(tobject, tpindex, 1);
1084 			/*
1085 			 * next object
1086 			 */
1087 			backing_object = tobject->backing_object;
1088 			if (backing_object == NULL)
1089 				goto unlock_tobject;
1090 			VM_OBJECT_LOCK(backing_object);
1091 			tpindex += OFF_TO_IDX(tobject->backing_object_offset);
1092 			if (tobject != object)
1093 				VM_OBJECT_UNLOCK(tobject);
1094 			tobject = backing_object;
1095 			goto shadowlookup;
1096 		} else if (m->valid != VM_PAGE_BITS_ALL)
1097 			goto unlock_tobject;
1098 		/*
1099 		 * If the page is not in a normal state, skip it.
1100 		 */
1101 		vm_page_lock(m);
1102 		if (m->hold_count != 0 || m->wire_count != 0) {
1103 			vm_page_unlock(m);
1104 			goto unlock_tobject;
1105 		}
1106 		KASSERT((m->flags & PG_FICTITIOUS) == 0,
1107 		    ("vm_object_madvise: page %p is fictitious", m));
1108 		KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1109 		    ("vm_object_madvise: page %p is not managed", m));
1110 		if ((m->oflags & VPO_BUSY) || m->busy) {
1111 			if (advise == MADV_WILLNEED) {
1112 				/*
1113 				 * Reference the page before unlocking and
1114 				 * sleeping so that the page daemon is less
1115 				 * likely to reclaim it.
1116 				 */
1117 				vm_page_aflag_set(m, PGA_REFERENCED);
1118 			}
1119 			vm_page_unlock(m);
1120 			if (object != tobject)
1121 				VM_OBJECT_UNLOCK(object);
1122 			m->oflags |= VPO_WANTED;
1123 			msleep(m, VM_OBJECT_MTX(tobject), PDROP | PVM, "madvpo",
1124 			    0);
1125 			VM_OBJECT_LOCK(object);
1126   			goto relookup;
1127 		}
1128 		if (advise == MADV_WILLNEED) {
1129 			vm_page_activate(m);
1130 		} else if (advise == MADV_DONTNEED) {
1131 			vm_page_dontneed(m);
1132 		} else if (advise == MADV_FREE) {
1133 			/*
1134 			 * Mark the page clean.  This will allow the page
1135 			 * to be freed up by the system.  However, such pages
1136 			 * are often reused quickly by malloc()/free()
1137 			 * so we do not do anything that would cause
1138 			 * a page fault if we can help it.
1139 			 *
1140 			 * Specifically, we do not try to actually free
1141 			 * the page now nor do we try to put it in the
1142 			 * cache (which would cause a page fault on reuse).
1143 			 *
1144 			 * But we do make the page is freeable as we
1145 			 * can without actually taking the step of unmapping
1146 			 * it.
1147 			 */
1148 			pmap_clear_modify(m);
1149 			m->dirty = 0;
1150 			m->act_count = 0;
1151 			vm_page_dontneed(m);
1152 		}
1153 		vm_page_unlock(m);
1154 		if (advise == MADV_FREE && tobject->type == OBJT_SWAP)
1155 			swap_pager_freespace(tobject, tpindex, 1);
1156 unlock_tobject:
1157 		if (tobject != object)
1158 			VM_OBJECT_UNLOCK(tobject);
1159 	}
1160 	VM_OBJECT_UNLOCK(object);
1161 }
1162 
1163 /*
1164  *	vm_object_shadow:
1165  *
1166  *	Create a new object which is backed by the
1167  *	specified existing object range.  The source
1168  *	object reference is deallocated.
1169  *
1170  *	The new object and offset into that object
1171  *	are returned in the source parameters.
1172  */
1173 void
1174 vm_object_shadow(
1175 	vm_object_t *object,	/* IN/OUT */
1176 	vm_ooffset_t *offset,	/* IN/OUT */
1177 	vm_size_t length)
1178 {
1179 	vm_object_t source;
1180 	vm_object_t result;
1181 
1182 	source = *object;
1183 
1184 	/*
1185 	 * Don't create the new object if the old object isn't shared.
1186 	 */
1187 	if (source != NULL) {
1188 		VM_OBJECT_LOCK(source);
1189 		if (source->ref_count == 1 &&
1190 		    source->handle == NULL &&
1191 		    (source->type == OBJT_DEFAULT ||
1192 		     source->type == OBJT_SWAP)) {
1193 			VM_OBJECT_UNLOCK(source);
1194 			return;
1195 		}
1196 		VM_OBJECT_UNLOCK(source);
1197 	}
1198 
1199 	/*
1200 	 * Allocate a new object with the given length.
1201 	 */
1202 	result = vm_object_allocate(OBJT_DEFAULT, atop(length));
1203 
1204 	/*
1205 	 * The new object shadows the source object, adding a reference to it.
1206 	 * Our caller changes his reference to point to the new object,
1207 	 * removing a reference to the source object.  Net result: no change
1208 	 * of reference count.
1209 	 *
1210 	 * Try to optimize the result object's page color when shadowing
1211 	 * in order to maintain page coloring consistency in the combined
1212 	 * shadowed object.
1213 	 */
1214 	result->backing_object = source;
1215 	/*
1216 	 * Store the offset into the source object, and fix up the offset into
1217 	 * the new object.
1218 	 */
1219 	result->backing_object_offset = *offset;
1220 	if (source != NULL) {
1221 		VM_OBJECT_LOCK(source);
1222 		LIST_INSERT_HEAD(&source->shadow_head, result, shadow_list);
1223 		source->shadow_count++;
1224 #if VM_NRESERVLEVEL > 0
1225 		result->flags |= source->flags & OBJ_COLORED;
1226 		result->pg_color = (source->pg_color + OFF_TO_IDX(*offset)) &
1227 		    ((1 << (VM_NFREEORDER - 1)) - 1);
1228 #endif
1229 		VM_OBJECT_UNLOCK(source);
1230 	}
1231 
1232 
1233 	/*
1234 	 * Return the new things
1235 	 */
1236 	*offset = 0;
1237 	*object = result;
1238 }
1239 
1240 /*
1241  *	vm_object_split:
1242  *
1243  * Split the pages in a map entry into a new object.  This affords
1244  * easier removal of unused pages, and keeps object inheritance from
1245  * being a negative impact on memory usage.
1246  */
1247 void
1248 vm_object_split(vm_map_entry_t entry)
1249 {
1250 	vm_page_t m, m_next;
1251 	vm_object_t orig_object, new_object, source;
1252 	vm_pindex_t idx, offidxstart;
1253 	vm_size_t size;
1254 
1255 	orig_object = entry->object.vm_object;
1256 	if (orig_object->type != OBJT_DEFAULT && orig_object->type != OBJT_SWAP)
1257 		return;
1258 	if (orig_object->ref_count <= 1)
1259 		return;
1260 	VM_OBJECT_UNLOCK(orig_object);
1261 
1262 	offidxstart = OFF_TO_IDX(entry->offset);
1263 	size = atop(entry->end - entry->start);
1264 
1265 	/*
1266 	 * If swap_pager_copy() is later called, it will convert new_object
1267 	 * into a swap object.
1268 	 */
1269 	new_object = vm_object_allocate(OBJT_DEFAULT, size);
1270 
1271 	/*
1272 	 * At this point, the new object is still private, so the order in
1273 	 * which the original and new objects are locked does not matter.
1274 	 */
1275 	VM_OBJECT_LOCK(new_object);
1276 	VM_OBJECT_LOCK(orig_object);
1277 	source = orig_object->backing_object;
1278 	if (source != NULL) {
1279 		VM_OBJECT_LOCK(source);
1280 		if ((source->flags & OBJ_DEAD) != 0) {
1281 			VM_OBJECT_UNLOCK(source);
1282 			VM_OBJECT_UNLOCK(orig_object);
1283 			VM_OBJECT_UNLOCK(new_object);
1284 			vm_object_deallocate(new_object);
1285 			VM_OBJECT_LOCK(orig_object);
1286 			return;
1287 		}
1288 		LIST_INSERT_HEAD(&source->shadow_head,
1289 				  new_object, shadow_list);
1290 		source->shadow_count++;
1291 		vm_object_reference_locked(source);	/* for new_object */
1292 		vm_object_clear_flag(source, OBJ_ONEMAPPING);
1293 		VM_OBJECT_UNLOCK(source);
1294 		new_object->backing_object_offset =
1295 			orig_object->backing_object_offset + entry->offset;
1296 		new_object->backing_object = source;
1297 	}
1298 	if (orig_object->cred != NULL) {
1299 		new_object->cred = orig_object->cred;
1300 		crhold(orig_object->cred);
1301 		new_object->charge = ptoa(size);
1302 		KASSERT(orig_object->charge >= ptoa(size),
1303 		    ("orig_object->charge < 0"));
1304 		orig_object->charge -= ptoa(size);
1305 	}
1306 retry:
1307 	m = vm_page_find_least(orig_object, offidxstart);
1308 	for (; m != NULL && (idx = m->pindex - offidxstart) < size;
1309 	    m = m_next) {
1310 		m_next = TAILQ_NEXT(m, listq);
1311 
1312 		/*
1313 		 * We must wait for pending I/O to complete before we can
1314 		 * rename the page.
1315 		 *
1316 		 * We do not have to VM_PROT_NONE the page as mappings should
1317 		 * not be changed by this operation.
1318 		 */
1319 		if ((m->oflags & VPO_BUSY) || m->busy) {
1320 			VM_OBJECT_UNLOCK(new_object);
1321 			m->oflags |= VPO_WANTED;
1322 			msleep(m, VM_OBJECT_MTX(orig_object), PVM, "spltwt", 0);
1323 			VM_OBJECT_LOCK(new_object);
1324 			goto retry;
1325 		}
1326 #if VM_NRESERVLEVEL > 0
1327 		/*
1328 		 * If some of the reservation's allocated pages remain with
1329 		 * the original object, then transferring the reservation to
1330 		 * the new object is neither particularly beneficial nor
1331 		 * particularly harmful as compared to leaving the reservation
1332 		 * with the original object.  If, however, all of the
1333 		 * reservation's allocated pages are transferred to the new
1334 		 * object, then transferring the reservation is typically
1335 		 * beneficial.  Determining which of these two cases applies
1336 		 * would be more costly than unconditionally renaming the
1337 		 * reservation.
1338 		 */
1339 		vm_reserv_rename(m, new_object, orig_object, offidxstart);
1340 #endif
1341 		vm_page_lock(m);
1342 		vm_page_rename(m, new_object, idx);
1343 		vm_page_unlock(m);
1344 		/* page automatically made dirty by rename and cache handled */
1345 		vm_page_busy(m);
1346 	}
1347 	if (orig_object->type == OBJT_SWAP) {
1348 		/*
1349 		 * swap_pager_copy() can sleep, in which case the orig_object's
1350 		 * and new_object's locks are released and reacquired.
1351 		 */
1352 		swap_pager_copy(orig_object, new_object, offidxstart, 0);
1353 
1354 		/*
1355 		 * Transfer any cached pages from orig_object to new_object.
1356 		 */
1357 		if (__predict_false(orig_object->cache != NULL))
1358 			vm_page_cache_transfer(orig_object, offidxstart,
1359 			    new_object);
1360 	}
1361 	VM_OBJECT_UNLOCK(orig_object);
1362 	TAILQ_FOREACH(m, &new_object->memq, listq)
1363 		vm_page_wakeup(m);
1364 	VM_OBJECT_UNLOCK(new_object);
1365 	entry->object.vm_object = new_object;
1366 	entry->offset = 0LL;
1367 	vm_object_deallocate(orig_object);
1368 	VM_OBJECT_LOCK(new_object);
1369 }
1370 
1371 #define	OBSC_TEST_ALL_SHADOWED	0x0001
1372 #define	OBSC_COLLAPSE_NOWAIT	0x0002
1373 #define	OBSC_COLLAPSE_WAIT	0x0004
1374 
1375 static int
1376 vm_object_backing_scan(vm_object_t object, int op)
1377 {
1378 	int r = 1;
1379 	vm_page_t p;
1380 	vm_object_t backing_object;
1381 	vm_pindex_t backing_offset_index;
1382 
1383 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1384 	VM_OBJECT_LOCK_ASSERT(object->backing_object, MA_OWNED);
1385 
1386 	backing_object = object->backing_object;
1387 	backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
1388 
1389 	/*
1390 	 * Initial conditions
1391 	 */
1392 	if (op & OBSC_TEST_ALL_SHADOWED) {
1393 		/*
1394 		 * We do not want to have to test for the existence of cache
1395 		 * or swap pages in the backing object.  XXX but with the
1396 		 * new swapper this would be pretty easy to do.
1397 		 *
1398 		 * XXX what about anonymous MAP_SHARED memory that hasn't
1399 		 * been ZFOD faulted yet?  If we do not test for this, the
1400 		 * shadow test may succeed! XXX
1401 		 */
1402 		if (backing_object->type != OBJT_DEFAULT) {
1403 			return (0);
1404 		}
1405 	}
1406 	if (op & OBSC_COLLAPSE_WAIT) {
1407 		vm_object_set_flag(backing_object, OBJ_DEAD);
1408 	}
1409 
1410 	/*
1411 	 * Our scan
1412 	 */
1413 	p = TAILQ_FIRST(&backing_object->memq);
1414 	while (p) {
1415 		vm_page_t next = TAILQ_NEXT(p, listq);
1416 		vm_pindex_t new_pindex = p->pindex - backing_offset_index;
1417 
1418 		if (op & OBSC_TEST_ALL_SHADOWED) {
1419 			vm_page_t pp;
1420 
1421 			/*
1422 			 * Ignore pages outside the parent object's range
1423 			 * and outside the parent object's mapping of the
1424 			 * backing object.
1425 			 *
1426 			 * note that we do not busy the backing object's
1427 			 * page.
1428 			 */
1429 			if (
1430 			    p->pindex < backing_offset_index ||
1431 			    new_pindex >= object->size
1432 			) {
1433 				p = next;
1434 				continue;
1435 			}
1436 
1437 			/*
1438 			 * See if the parent has the page or if the parent's
1439 			 * object pager has the page.  If the parent has the
1440 			 * page but the page is not valid, the parent's
1441 			 * object pager must have the page.
1442 			 *
1443 			 * If this fails, the parent does not completely shadow
1444 			 * the object and we might as well give up now.
1445 			 */
1446 
1447 			pp = vm_page_lookup(object, new_pindex);
1448 			if (
1449 			    (pp == NULL || pp->valid == 0) &&
1450 			    !vm_pager_has_page(object, new_pindex, NULL, NULL)
1451 			) {
1452 				r = 0;
1453 				break;
1454 			}
1455 		}
1456 
1457 		/*
1458 		 * Check for busy page
1459 		 */
1460 		if (op & (OBSC_COLLAPSE_WAIT | OBSC_COLLAPSE_NOWAIT)) {
1461 			vm_page_t pp;
1462 
1463 			if (op & OBSC_COLLAPSE_NOWAIT) {
1464 				if ((p->oflags & VPO_BUSY) ||
1465 				    !p->valid ||
1466 				    p->busy) {
1467 					p = next;
1468 					continue;
1469 				}
1470 			} else if (op & OBSC_COLLAPSE_WAIT) {
1471 				if ((p->oflags & VPO_BUSY) || p->busy) {
1472 					VM_OBJECT_UNLOCK(object);
1473 					p->oflags |= VPO_WANTED;
1474 					msleep(p, VM_OBJECT_MTX(backing_object),
1475 					    PDROP | PVM, "vmocol", 0);
1476 					VM_OBJECT_LOCK(object);
1477 					VM_OBJECT_LOCK(backing_object);
1478 					/*
1479 					 * If we slept, anything could have
1480 					 * happened.  Since the object is
1481 					 * marked dead, the backing offset
1482 					 * should not have changed so we
1483 					 * just restart our scan.
1484 					 */
1485 					p = TAILQ_FIRST(&backing_object->memq);
1486 					continue;
1487 				}
1488 			}
1489 
1490 			KASSERT(
1491 			    p->object == backing_object,
1492 			    ("vm_object_backing_scan: object mismatch")
1493 			);
1494 
1495 			/*
1496 			 * Destroy any associated swap
1497 			 */
1498 			if (backing_object->type == OBJT_SWAP) {
1499 				swap_pager_freespace(
1500 				    backing_object,
1501 				    p->pindex,
1502 				    1
1503 				);
1504 			}
1505 
1506 			if (
1507 			    p->pindex < backing_offset_index ||
1508 			    new_pindex >= object->size
1509 			) {
1510 				/*
1511 				 * Page is out of the parent object's range, we
1512 				 * can simply destroy it.
1513 				 */
1514 				vm_page_lock(p);
1515 				KASSERT(!pmap_page_is_mapped(p),
1516 				    ("freeing mapped page %p", p));
1517 				if (p->wire_count == 0)
1518 					vm_page_free(p);
1519 				else
1520 					vm_page_remove(p);
1521 				vm_page_unlock(p);
1522 				p = next;
1523 				continue;
1524 			}
1525 
1526 			pp = vm_page_lookup(object, new_pindex);
1527 			if (
1528 			    (op & OBSC_COLLAPSE_NOWAIT) != 0 &&
1529 			    (pp != NULL && pp->valid == 0)
1530 			) {
1531 				/*
1532 				 * The page in the parent is not (yet) valid.
1533 				 * We don't know anything about the state of
1534 				 * the original page.  It might be mapped,
1535 				 * so we must avoid the next if here.
1536 				 *
1537 				 * This is due to a race in vm_fault() where
1538 				 * we must unbusy the original (backing_obj)
1539 				 * page before we can (re)lock the parent.
1540 				 * Hence we can get here.
1541 				 */
1542 				p = next;
1543 				continue;
1544 			}
1545 			if (
1546 			    pp != NULL ||
1547 			    vm_pager_has_page(object, new_pindex, NULL, NULL)
1548 			) {
1549 				/*
1550 				 * page already exists in parent OR swap exists
1551 				 * for this location in the parent.  Destroy
1552 				 * the original page from the backing object.
1553 				 *
1554 				 * Leave the parent's page alone
1555 				 */
1556 				vm_page_lock(p);
1557 				KASSERT(!pmap_page_is_mapped(p),
1558 				    ("freeing mapped page %p", p));
1559 				if (p->wire_count == 0)
1560 					vm_page_free(p);
1561 				else
1562 					vm_page_remove(p);
1563 				vm_page_unlock(p);
1564 				p = next;
1565 				continue;
1566 			}
1567 
1568 #if VM_NRESERVLEVEL > 0
1569 			/*
1570 			 * Rename the reservation.
1571 			 */
1572 			vm_reserv_rename(p, object, backing_object,
1573 			    backing_offset_index);
1574 #endif
1575 
1576 			/*
1577 			 * Page does not exist in parent, rename the
1578 			 * page from the backing object to the main object.
1579 			 *
1580 			 * If the page was mapped to a process, it can remain
1581 			 * mapped through the rename.
1582 			 */
1583 			vm_page_lock(p);
1584 			vm_page_rename(p, object, new_pindex);
1585 			vm_page_unlock(p);
1586 			/* page automatically made dirty by rename */
1587 		}
1588 		p = next;
1589 	}
1590 	return (r);
1591 }
1592 
1593 
1594 /*
1595  * this version of collapse allows the operation to occur earlier and
1596  * when paging_in_progress is true for an object...  This is not a complete
1597  * operation, but should plug 99.9% of the rest of the leaks.
1598  */
1599 static void
1600 vm_object_qcollapse(vm_object_t object)
1601 {
1602 	vm_object_t backing_object = object->backing_object;
1603 
1604 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1605 	VM_OBJECT_LOCK_ASSERT(backing_object, MA_OWNED);
1606 
1607 	if (backing_object->ref_count != 1)
1608 		return;
1609 
1610 	vm_object_backing_scan(object, OBSC_COLLAPSE_NOWAIT);
1611 }
1612 
1613 /*
1614  *	vm_object_collapse:
1615  *
1616  *	Collapse an object with the object backing it.
1617  *	Pages in the backing object are moved into the
1618  *	parent, and the backing object is deallocated.
1619  */
1620 void
1621 vm_object_collapse(vm_object_t object)
1622 {
1623 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1624 
1625 	while (TRUE) {
1626 		vm_object_t backing_object;
1627 
1628 		/*
1629 		 * Verify that the conditions are right for collapse:
1630 		 *
1631 		 * The object exists and the backing object exists.
1632 		 */
1633 		if ((backing_object = object->backing_object) == NULL)
1634 			break;
1635 
1636 		/*
1637 		 * we check the backing object first, because it is most likely
1638 		 * not collapsable.
1639 		 */
1640 		VM_OBJECT_LOCK(backing_object);
1641 		if (backing_object->handle != NULL ||
1642 		    (backing_object->type != OBJT_DEFAULT &&
1643 		     backing_object->type != OBJT_SWAP) ||
1644 		    (backing_object->flags & OBJ_DEAD) ||
1645 		    object->handle != NULL ||
1646 		    (object->type != OBJT_DEFAULT &&
1647 		     object->type != OBJT_SWAP) ||
1648 		    (object->flags & OBJ_DEAD)) {
1649 			VM_OBJECT_UNLOCK(backing_object);
1650 			break;
1651 		}
1652 
1653 		if (
1654 		    object->paging_in_progress != 0 ||
1655 		    backing_object->paging_in_progress != 0
1656 		) {
1657 			vm_object_qcollapse(object);
1658 			VM_OBJECT_UNLOCK(backing_object);
1659 			break;
1660 		}
1661 		/*
1662 		 * We know that we can either collapse the backing object (if
1663 		 * the parent is the only reference to it) or (perhaps) have
1664 		 * the parent bypass the object if the parent happens to shadow
1665 		 * all the resident pages in the entire backing object.
1666 		 *
1667 		 * This is ignoring pager-backed pages such as swap pages.
1668 		 * vm_object_backing_scan fails the shadowing test in this
1669 		 * case.
1670 		 */
1671 		if (backing_object->ref_count == 1) {
1672 			/*
1673 			 * If there is exactly one reference to the backing
1674 			 * object, we can collapse it into the parent.
1675 			 */
1676 			vm_object_backing_scan(object, OBSC_COLLAPSE_WAIT);
1677 
1678 #if VM_NRESERVLEVEL > 0
1679 			/*
1680 			 * Break any reservations from backing_object.
1681 			 */
1682 			if (__predict_false(!LIST_EMPTY(&backing_object->rvq)))
1683 				vm_reserv_break_all(backing_object);
1684 #endif
1685 
1686 			/*
1687 			 * Move the pager from backing_object to object.
1688 			 */
1689 			if (backing_object->type == OBJT_SWAP) {
1690 				/*
1691 				 * swap_pager_copy() can sleep, in which case
1692 				 * the backing_object's and object's locks are
1693 				 * released and reacquired.
1694 				 */
1695 				swap_pager_copy(
1696 				    backing_object,
1697 				    object,
1698 				    OFF_TO_IDX(object->backing_object_offset), TRUE);
1699 
1700 				/*
1701 				 * Free any cached pages from backing_object.
1702 				 */
1703 				if (__predict_false(backing_object->cache != NULL))
1704 					vm_page_cache_free(backing_object, 0, 0);
1705 			}
1706 			/*
1707 			 * Object now shadows whatever backing_object did.
1708 			 * Note that the reference to
1709 			 * backing_object->backing_object moves from within
1710 			 * backing_object to within object.
1711 			 */
1712 			LIST_REMOVE(object, shadow_list);
1713 			backing_object->shadow_count--;
1714 			if (backing_object->backing_object) {
1715 				VM_OBJECT_LOCK(backing_object->backing_object);
1716 				LIST_REMOVE(backing_object, shadow_list);
1717 				LIST_INSERT_HEAD(
1718 				    &backing_object->backing_object->shadow_head,
1719 				    object, shadow_list);
1720 				/*
1721 				 * The shadow_count has not changed.
1722 				 */
1723 				VM_OBJECT_UNLOCK(backing_object->backing_object);
1724 			}
1725 			object->backing_object = backing_object->backing_object;
1726 			object->backing_object_offset +=
1727 			    backing_object->backing_object_offset;
1728 
1729 			/*
1730 			 * Discard backing_object.
1731 			 *
1732 			 * Since the backing object has no pages, no pager left,
1733 			 * and no object references within it, all that is
1734 			 * necessary is to dispose of it.
1735 			 */
1736 			KASSERT(backing_object->ref_count == 1, (
1737 "backing_object %p was somehow re-referenced during collapse!",
1738 			    backing_object));
1739 			VM_OBJECT_UNLOCK(backing_object);
1740 			vm_object_destroy(backing_object);
1741 
1742 			object_collapses++;
1743 		} else {
1744 			vm_object_t new_backing_object;
1745 
1746 			/*
1747 			 * If we do not entirely shadow the backing object,
1748 			 * there is nothing we can do so we give up.
1749 			 */
1750 			if (object->resident_page_count != object->size &&
1751 			    vm_object_backing_scan(object,
1752 			    OBSC_TEST_ALL_SHADOWED) == 0) {
1753 				VM_OBJECT_UNLOCK(backing_object);
1754 				break;
1755 			}
1756 
1757 			/*
1758 			 * Make the parent shadow the next object in the
1759 			 * chain.  Deallocating backing_object will not remove
1760 			 * it, since its reference count is at least 2.
1761 			 */
1762 			LIST_REMOVE(object, shadow_list);
1763 			backing_object->shadow_count--;
1764 
1765 			new_backing_object = backing_object->backing_object;
1766 			if ((object->backing_object = new_backing_object) != NULL) {
1767 				VM_OBJECT_LOCK(new_backing_object);
1768 				LIST_INSERT_HEAD(
1769 				    &new_backing_object->shadow_head,
1770 				    object,
1771 				    shadow_list
1772 				);
1773 				new_backing_object->shadow_count++;
1774 				vm_object_reference_locked(new_backing_object);
1775 				VM_OBJECT_UNLOCK(new_backing_object);
1776 				object->backing_object_offset +=
1777 					backing_object->backing_object_offset;
1778 			}
1779 
1780 			/*
1781 			 * Drop the reference count on backing_object. Since
1782 			 * its ref_count was at least 2, it will not vanish.
1783 			 */
1784 			backing_object->ref_count--;
1785 			VM_OBJECT_UNLOCK(backing_object);
1786 			object_bypasses++;
1787 		}
1788 
1789 		/*
1790 		 * Try again with this object's new backing object.
1791 		 */
1792 	}
1793 }
1794 
1795 /*
1796  *	vm_object_page_remove:
1797  *
1798  *	For the given object, either frees or invalidates each of the
1799  *	specified pages.  In general, a page is freed.  However, if a page is
1800  *	wired for any reason other than the existence of a managed, wired
1801  *	mapping, then it may be invalidated but not removed from the object.
1802  *	Pages are specified by the given range ["start", "end") and the option
1803  *	OBJPR_CLEANONLY.  As a special case, if "end" is zero, then the range
1804  *	extends from "start" to the end of the object.  If the option
1805  *	OBJPR_CLEANONLY is specified, then only the non-dirty pages within the
1806  *	specified range are affected.  If the option OBJPR_NOTMAPPED is
1807  *	specified, then the pages within the specified range must have no
1808  *	mappings.  Otherwise, if this option is not specified, any mappings to
1809  *	the specified pages are removed before the pages are freed or
1810  *	invalidated.
1811  *
1812  *	In general, this operation should only be performed on objects that
1813  *	contain managed pages.  There are, however, two exceptions.  First, it
1814  *	is performed on the kernel and kmem objects by vm_map_entry_delete().
1815  *	Second, it is used by msync(..., MS_INVALIDATE) to invalidate device-
1816  *	backed pages.  In both of these cases, the option OBJPR_CLEANONLY must
1817  *	not be specified and the option OBJPR_NOTMAPPED must be specified.
1818  *
1819  *	The object must be locked.
1820  */
1821 void
1822 vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end,
1823     int options)
1824 {
1825 	vm_page_t p, next;
1826 	int wirings;
1827 
1828 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1829 	KASSERT((object->type != OBJT_DEVICE && object->type != OBJT_PHYS) ||
1830 	    (options & (OBJPR_CLEANONLY | OBJPR_NOTMAPPED)) == OBJPR_NOTMAPPED,
1831 	    ("vm_object_page_remove: illegal options for object %p", object));
1832 	if (object->resident_page_count == 0)
1833 		goto skipmemq;
1834 	vm_object_pip_add(object, 1);
1835 again:
1836 	p = vm_page_find_least(object, start);
1837 
1838 	/*
1839 	 * Here, the variable "p" is either (1) the page with the least pindex
1840 	 * greater than or equal to the parameter "start" or (2) NULL.
1841 	 */
1842 	for (; p != NULL && (p->pindex < end || end == 0); p = next) {
1843 		next = TAILQ_NEXT(p, listq);
1844 
1845 		/*
1846 		 * If the page is wired for any reason besides the existence
1847 		 * of managed, wired mappings, then it cannot be freed.  For
1848 		 * example, fictitious pages, which represent device memory,
1849 		 * are inherently wired and cannot be freed.  They can,
1850 		 * however, be invalidated if the option OBJPR_CLEANONLY is
1851 		 * not specified.
1852 		 */
1853 		vm_page_lock(p);
1854 		if ((wirings = p->wire_count) != 0 &&
1855 		    (wirings = pmap_page_wired_mappings(p)) != p->wire_count) {
1856 			if ((options & OBJPR_NOTMAPPED) == 0) {
1857 				pmap_remove_all(p);
1858 				/* Account for removal of wired mappings. */
1859 				if (wirings != 0)
1860 					p->wire_count -= wirings;
1861 			}
1862 			if ((options & OBJPR_CLEANONLY) == 0) {
1863 				p->valid = 0;
1864 				vm_page_undirty(p);
1865 			}
1866 			vm_page_unlock(p);
1867 			continue;
1868 		}
1869 		if (vm_page_sleep_if_busy(p, TRUE, "vmopar"))
1870 			goto again;
1871 		KASSERT((p->flags & PG_FICTITIOUS) == 0,
1872 		    ("vm_object_page_remove: page %p is fictitious", p));
1873 		if ((options & OBJPR_CLEANONLY) != 0 && p->valid != 0) {
1874 			if ((options & OBJPR_NOTMAPPED) == 0)
1875 				pmap_remove_write(p);
1876 			if (p->dirty) {
1877 				vm_page_unlock(p);
1878 				continue;
1879 			}
1880 		}
1881 		if ((options & OBJPR_NOTMAPPED) == 0) {
1882 			pmap_remove_all(p);
1883 			/* Account for removal of wired mappings. */
1884 			if (wirings != 0)
1885 				p->wire_count -= wirings;
1886 		}
1887 		vm_page_free(p);
1888 		vm_page_unlock(p);
1889 	}
1890 	vm_object_pip_wakeup(object);
1891 skipmemq:
1892 	if (__predict_false(object->cache != NULL))
1893 		vm_page_cache_free(object, start, end);
1894 }
1895 
1896 /*
1897  *	vm_object_page_cache:
1898  *
1899  *	For the given object, attempt to move the specified clean
1900  *	pages to the cache queue.  If a page is wired for any reason,
1901  *	then it will not be changed.  Pages are specified by the given
1902  *	range ["start", "end").  As a special case, if "end" is zero,
1903  *	then the range extends from "start" to the end of the object.
1904  *	Any mappings to the specified pages are removed before the
1905  *	pages are moved to the cache queue.
1906  *
1907  *	This operation should only be performed on objects that
1908  *	contain managed pages.
1909  *
1910  *	The object must be locked.
1911  */
1912 void
1913 vm_object_page_cache(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
1914 {
1915 	struct mtx *mtx, *new_mtx;
1916 	vm_page_t p, next;
1917 
1918 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1919 	KASSERT((object->type != OBJT_DEVICE && object->type != OBJT_SG &&
1920 	    object->type != OBJT_PHYS),
1921 	    ("vm_object_page_cache: illegal object %p", object));
1922 	if (object->resident_page_count == 0)
1923 		return;
1924 	p = vm_page_find_least(object, start);
1925 
1926 	/*
1927 	 * Here, the variable "p" is either (1) the page with the least pindex
1928 	 * greater than or equal to the parameter "start" or (2) NULL.
1929 	 */
1930 	mtx = NULL;
1931 	for (; p != NULL && (p->pindex < end || end == 0); p = next) {
1932 		next = TAILQ_NEXT(p, listq);
1933 
1934 		/*
1935 		 * Avoid releasing and reacquiring the same page lock.
1936 		 */
1937 		new_mtx = vm_page_lockptr(p);
1938 		if (mtx != new_mtx) {
1939 			if (mtx != NULL)
1940 				mtx_unlock(mtx);
1941 			mtx = new_mtx;
1942 			mtx_lock(mtx);
1943 		}
1944 		vm_page_try_to_cache(p);
1945 	}
1946 	if (mtx != NULL)
1947 		mtx_unlock(mtx);
1948 }
1949 
1950 /*
1951  *	Populate the specified range of the object with valid pages.  Returns
1952  *	TRUE if the range is successfully populated and FALSE otherwise.
1953  *
1954  *	Note: This function should be optimized to pass a larger array of
1955  *	pages to vm_pager_get_pages() before it is applied to a non-
1956  *	OBJT_DEVICE object.
1957  *
1958  *	The object must be locked.
1959  */
1960 boolean_t
1961 vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
1962 {
1963 	vm_page_t m, ma[1];
1964 	vm_pindex_t pindex;
1965 	int rv;
1966 
1967 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1968 	for (pindex = start; pindex < end; pindex++) {
1969 		m = vm_page_grab(object, pindex, VM_ALLOC_NORMAL |
1970 		    VM_ALLOC_RETRY);
1971 		if (m->valid != VM_PAGE_BITS_ALL) {
1972 			ma[0] = m;
1973 			rv = vm_pager_get_pages(object, ma, 1, 0);
1974 			m = vm_page_lookup(object, pindex);
1975 			if (m == NULL)
1976 				break;
1977 			if (rv != VM_PAGER_OK) {
1978 				vm_page_lock(m);
1979 				vm_page_free(m);
1980 				vm_page_unlock(m);
1981 				break;
1982 			}
1983 		}
1984 		/*
1985 		 * Keep "m" busy because a subsequent iteration may unlock
1986 		 * the object.
1987 		 */
1988 	}
1989 	if (pindex > start) {
1990 		m = vm_page_lookup(object, start);
1991 		while (m != NULL && m->pindex < pindex) {
1992 			vm_page_wakeup(m);
1993 			m = TAILQ_NEXT(m, listq);
1994 		}
1995 	}
1996 	return (pindex == end);
1997 }
1998 
1999 /*
2000  *	Routine:	vm_object_coalesce
2001  *	Function:	Coalesces two objects backing up adjoining
2002  *			regions of memory into a single object.
2003  *
2004  *	returns TRUE if objects were combined.
2005  *
2006  *	NOTE:	Only works at the moment if the second object is NULL -
2007  *		if it's not, which object do we lock first?
2008  *
2009  *	Parameters:
2010  *		prev_object	First object to coalesce
2011  *		prev_offset	Offset into prev_object
2012  *		prev_size	Size of reference to prev_object
2013  *		next_size	Size of reference to the second object
2014  *		reserved	Indicator that extension region has
2015  *				swap accounted for
2016  *
2017  *	Conditions:
2018  *	The object must *not* be locked.
2019  */
2020 boolean_t
2021 vm_object_coalesce(vm_object_t prev_object, vm_ooffset_t prev_offset,
2022     vm_size_t prev_size, vm_size_t next_size, boolean_t reserved)
2023 {
2024 	vm_pindex_t next_pindex;
2025 
2026 	if (prev_object == NULL)
2027 		return (TRUE);
2028 	VM_OBJECT_LOCK(prev_object);
2029 	if (prev_object->type != OBJT_DEFAULT &&
2030 	    prev_object->type != OBJT_SWAP) {
2031 		VM_OBJECT_UNLOCK(prev_object);
2032 		return (FALSE);
2033 	}
2034 
2035 	/*
2036 	 * Try to collapse the object first
2037 	 */
2038 	vm_object_collapse(prev_object);
2039 
2040 	/*
2041 	 * Can't coalesce if: . more than one reference . paged out . shadows
2042 	 * another object . has a copy elsewhere (any of which mean that the
2043 	 * pages not mapped to prev_entry may be in use anyway)
2044 	 */
2045 	if (prev_object->backing_object != NULL) {
2046 		VM_OBJECT_UNLOCK(prev_object);
2047 		return (FALSE);
2048 	}
2049 
2050 	prev_size >>= PAGE_SHIFT;
2051 	next_size >>= PAGE_SHIFT;
2052 	next_pindex = OFF_TO_IDX(prev_offset) + prev_size;
2053 
2054 	if ((prev_object->ref_count > 1) &&
2055 	    (prev_object->size != next_pindex)) {
2056 		VM_OBJECT_UNLOCK(prev_object);
2057 		return (FALSE);
2058 	}
2059 
2060 	/*
2061 	 * Account for the charge.
2062 	 */
2063 	if (prev_object->cred != NULL) {
2064 
2065 		/*
2066 		 * If prev_object was charged, then this mapping,
2067 		 * althought not charged now, may become writable
2068 		 * later. Non-NULL cred in the object would prevent
2069 		 * swap reservation during enabling of the write
2070 		 * access, so reserve swap now. Failed reservation
2071 		 * cause allocation of the separate object for the map
2072 		 * entry, and swap reservation for this entry is
2073 		 * managed in appropriate time.
2074 		 */
2075 		if (!reserved && !swap_reserve_by_cred(ptoa(next_size),
2076 		    prev_object->cred)) {
2077 			return (FALSE);
2078 		}
2079 		prev_object->charge += ptoa(next_size);
2080 	}
2081 
2082 	/*
2083 	 * Remove any pages that may still be in the object from a previous
2084 	 * deallocation.
2085 	 */
2086 	if (next_pindex < prev_object->size) {
2087 		vm_object_page_remove(prev_object, next_pindex, next_pindex +
2088 		    next_size, 0);
2089 		if (prev_object->type == OBJT_SWAP)
2090 			swap_pager_freespace(prev_object,
2091 					     next_pindex, next_size);
2092 #if 0
2093 		if (prev_object->cred != NULL) {
2094 			KASSERT(prev_object->charge >=
2095 			    ptoa(prev_object->size - next_pindex),
2096 			    ("object %p overcharged 1 %jx %jx", prev_object,
2097 				(uintmax_t)next_pindex, (uintmax_t)next_size));
2098 			prev_object->charge -= ptoa(prev_object->size -
2099 			    next_pindex);
2100 		}
2101 #endif
2102 	}
2103 
2104 	/*
2105 	 * Extend the object if necessary.
2106 	 */
2107 	if (next_pindex + next_size > prev_object->size)
2108 		prev_object->size = next_pindex + next_size;
2109 
2110 	VM_OBJECT_UNLOCK(prev_object);
2111 	return (TRUE);
2112 }
2113 
2114 void
2115 vm_object_set_writeable_dirty(vm_object_t object)
2116 {
2117 
2118 	VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
2119 	if (object->type != OBJT_VNODE)
2120 		return;
2121 	object->generation++;
2122 	if ((object->flags & OBJ_MIGHTBEDIRTY) != 0)
2123 		return;
2124 	vm_object_set_flag(object, OBJ_MIGHTBEDIRTY);
2125 }
2126 
2127 #include "opt_ddb.h"
2128 #ifdef DDB
2129 #include <sys/kernel.h>
2130 
2131 #include <sys/cons.h>
2132 
2133 #include <ddb/ddb.h>
2134 
2135 static int
2136 _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry)
2137 {
2138 	vm_map_t tmpm;
2139 	vm_map_entry_t tmpe;
2140 	vm_object_t obj;
2141 	int entcount;
2142 
2143 	if (map == 0)
2144 		return 0;
2145 
2146 	if (entry == 0) {
2147 		tmpe = map->header.next;
2148 		entcount = map->nentries;
2149 		while (entcount-- && (tmpe != &map->header)) {
2150 			if (_vm_object_in_map(map, object, tmpe)) {
2151 				return 1;
2152 			}
2153 			tmpe = tmpe->next;
2154 		}
2155 	} else if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
2156 		tmpm = entry->object.sub_map;
2157 		tmpe = tmpm->header.next;
2158 		entcount = tmpm->nentries;
2159 		while (entcount-- && tmpe != &tmpm->header) {
2160 			if (_vm_object_in_map(tmpm, object, tmpe)) {
2161 				return 1;
2162 			}
2163 			tmpe = tmpe->next;
2164 		}
2165 	} else if ((obj = entry->object.vm_object) != NULL) {
2166 		for (; obj; obj = obj->backing_object)
2167 			if (obj == object) {
2168 				return 1;
2169 			}
2170 	}
2171 	return 0;
2172 }
2173 
2174 static int
2175 vm_object_in_map(vm_object_t object)
2176 {
2177 	struct proc *p;
2178 
2179 	/* sx_slock(&allproc_lock); */
2180 	FOREACH_PROC_IN_SYSTEM(p) {
2181 		if (!p->p_vmspace /* || (p->p_flag & (P_SYSTEM|P_WEXIT)) */)
2182 			continue;
2183 		if (_vm_object_in_map(&p->p_vmspace->vm_map, object, 0)) {
2184 			/* sx_sunlock(&allproc_lock); */
2185 			return 1;
2186 		}
2187 	}
2188 	/* sx_sunlock(&allproc_lock); */
2189 	if (_vm_object_in_map(kernel_map, object, 0))
2190 		return 1;
2191 	if (_vm_object_in_map(kmem_map, object, 0))
2192 		return 1;
2193 	if (_vm_object_in_map(pager_map, object, 0))
2194 		return 1;
2195 	if (_vm_object_in_map(buffer_map, object, 0))
2196 		return 1;
2197 	return 0;
2198 }
2199 
2200 DB_SHOW_COMMAND(vmochk, vm_object_check)
2201 {
2202 	vm_object_t object;
2203 
2204 	/*
2205 	 * make sure that internal objs are in a map somewhere
2206 	 * and none have zero ref counts.
2207 	 */
2208 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
2209 		if (object->handle == NULL &&
2210 		    (object->type == OBJT_DEFAULT || object->type == OBJT_SWAP)) {
2211 			if (object->ref_count == 0) {
2212 				db_printf("vmochk: internal obj has zero ref count: %ld\n",
2213 					(long)object->size);
2214 			}
2215 			if (!vm_object_in_map(object)) {
2216 				db_printf(
2217 			"vmochk: internal obj is not in a map: "
2218 			"ref: %d, size: %lu: 0x%lx, backing_object: %p\n",
2219 				    object->ref_count, (u_long)object->size,
2220 				    (u_long)object->size,
2221 				    (void *)object->backing_object);
2222 			}
2223 		}
2224 	}
2225 }
2226 
2227 /*
2228  *	vm_object_print:	[ debug ]
2229  */
2230 DB_SHOW_COMMAND(object, vm_object_print_static)
2231 {
2232 	/* XXX convert args. */
2233 	vm_object_t object = (vm_object_t)addr;
2234 	boolean_t full = have_addr;
2235 
2236 	vm_page_t p;
2237 
2238 	/* XXX count is an (unused) arg.  Avoid shadowing it. */
2239 #define	count	was_count
2240 
2241 	int count;
2242 
2243 	if (object == NULL)
2244 		return;
2245 
2246 	db_iprintf(
2247 	    "Object %p: type=%d, size=0x%jx, res=%d, ref=%d, flags=0x%x ruid %d charge %jx\n",
2248 	    object, (int)object->type, (uintmax_t)object->size,
2249 	    object->resident_page_count, object->ref_count, object->flags,
2250 	    object->cred ? object->cred->cr_ruid : -1, (uintmax_t)object->charge);
2251 	db_iprintf(" sref=%d, backing_object(%d)=(%p)+0x%jx\n",
2252 	    object->shadow_count,
2253 	    object->backing_object ? object->backing_object->ref_count : 0,
2254 	    object->backing_object, (uintmax_t)object->backing_object_offset);
2255 
2256 	if (!full)
2257 		return;
2258 
2259 	db_indent += 2;
2260 	count = 0;
2261 	TAILQ_FOREACH(p, &object->memq, listq) {
2262 		if (count == 0)
2263 			db_iprintf("memory:=");
2264 		else if (count == 6) {
2265 			db_printf("\n");
2266 			db_iprintf(" ...");
2267 			count = 0;
2268 		} else
2269 			db_printf(",");
2270 		count++;
2271 
2272 		db_printf("(off=0x%jx,page=0x%jx)",
2273 		    (uintmax_t)p->pindex, (uintmax_t)VM_PAGE_TO_PHYS(p));
2274 	}
2275 	if (count != 0)
2276 		db_printf("\n");
2277 	db_indent -= 2;
2278 }
2279 
2280 /* XXX. */
2281 #undef count
2282 
2283 /* XXX need this non-static entry for calling from vm_map_print. */
2284 void
2285 vm_object_print(
2286         /* db_expr_t */ long addr,
2287 	boolean_t have_addr,
2288 	/* db_expr_t */ long count,
2289 	char *modif)
2290 {
2291 	vm_object_print_static(addr, have_addr, count, modif);
2292 }
2293 
2294 DB_SHOW_COMMAND(vmopag, vm_object_print_pages)
2295 {
2296 	vm_object_t object;
2297 	vm_pindex_t fidx;
2298 	vm_paddr_t pa;
2299 	vm_page_t m, prev_m;
2300 	int rcount, nl, c;
2301 
2302 	nl = 0;
2303 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
2304 		db_printf("new object: %p\n", (void *)object);
2305 		if (nl > 18) {
2306 			c = cngetc();
2307 			if (c != ' ')
2308 				return;
2309 			nl = 0;
2310 		}
2311 		nl++;
2312 		rcount = 0;
2313 		fidx = 0;
2314 		pa = -1;
2315 		TAILQ_FOREACH(m, &object->memq, listq) {
2316 			if (m->pindex > 128)
2317 				break;
2318 			if ((prev_m = TAILQ_PREV(m, pglist, listq)) != NULL &&
2319 			    prev_m->pindex + 1 != m->pindex) {
2320 				if (rcount) {
2321 					db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2322 						(long)fidx, rcount, (long)pa);
2323 					if (nl > 18) {
2324 						c = cngetc();
2325 						if (c != ' ')
2326 							return;
2327 						nl = 0;
2328 					}
2329 					nl++;
2330 					rcount = 0;
2331 				}
2332 			}
2333 			if (rcount &&
2334 				(VM_PAGE_TO_PHYS(m) == pa + rcount * PAGE_SIZE)) {
2335 				++rcount;
2336 				continue;
2337 			}
2338 			if (rcount) {
2339 				db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2340 					(long)fidx, rcount, (long)pa);
2341 				if (nl > 18) {
2342 					c = cngetc();
2343 					if (c != ' ')
2344 						return;
2345 					nl = 0;
2346 				}
2347 				nl++;
2348 			}
2349 			fidx = m->pindex;
2350 			pa = VM_PAGE_TO_PHYS(m);
2351 			rcount = 1;
2352 		}
2353 		if (rcount) {
2354 			db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2355 				(long)fidx, rcount, (long)pa);
2356 			if (nl > 18) {
2357 				c = cngetc();
2358 				if (c != ' ')
2359 					return;
2360 				nl = 0;
2361 			}
2362 			nl++;
2363 		}
2364 	}
2365 }
2366 #endif /* DDB */
2367