xref: /freebsd/sys/vm/vm_object.c (revision 03462509416a49d95d8573ab6f229c9f5440859d)
160727d8bSWarner Losh /*-
2df8bae1dSRodney W. Grimes  * Copyright (c) 1991, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4df8bae1dSRodney W. Grimes  *
5df8bae1dSRodney W. Grimes  * This code is derived from software contributed to Berkeley by
6df8bae1dSRodney W. Grimes  * The Mach Operating System project at Carnegie-Mellon University.
7df8bae1dSRodney W. Grimes  *
8df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
9df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
10df8bae1dSRodney W. Grimes  * are met:
11df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
12df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
13df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
14df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
15df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
16df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
17df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
18df8bae1dSRodney W. Grimes  *    without specific prior written permission.
19df8bae1dSRodney W. Grimes  *
20df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
31df8bae1dSRodney W. Grimes  *
323c4dd356SDavid Greenman  *	from: @(#)vm_object.c	8.5 (Berkeley) 3/22/94
33df8bae1dSRodney W. Grimes  *
34df8bae1dSRodney W. Grimes  *
35df8bae1dSRodney W. Grimes  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
36df8bae1dSRodney W. Grimes  * All rights reserved.
37df8bae1dSRodney W. Grimes  *
38df8bae1dSRodney W. Grimes  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
39df8bae1dSRodney W. Grimes  *
40df8bae1dSRodney W. Grimes  * Permission to use, copy, modify and distribute this software and
41df8bae1dSRodney W. Grimes  * its documentation is hereby granted, provided that both the copyright
42df8bae1dSRodney W. Grimes  * notice and this permission notice appear in all copies of the
43df8bae1dSRodney W. Grimes  * software, derivative works or modified versions, and any portions
44df8bae1dSRodney W. Grimes  * thereof, and that both notices appear in supporting documentation.
45df8bae1dSRodney W. Grimes  *
46df8bae1dSRodney W. Grimes  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
47df8bae1dSRodney W. Grimes  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
48df8bae1dSRodney W. Grimes  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
49df8bae1dSRodney W. Grimes  *
50df8bae1dSRodney W. Grimes  * Carnegie Mellon requests users of this software to return to
51df8bae1dSRodney W. Grimes  *
52df8bae1dSRodney W. Grimes  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
53df8bae1dSRodney W. Grimes  *  School of Computer Science
54df8bae1dSRodney W. Grimes  *  Carnegie Mellon University
55df8bae1dSRodney W. Grimes  *  Pittsburgh PA 15213-3890
56df8bae1dSRodney W. Grimes  *
57df8bae1dSRodney W. Grimes  * any improvements or extensions that they make and grant Carnegie the
58df8bae1dSRodney W. Grimes  * rights to redistribute these changes.
59df8bae1dSRodney W. Grimes  */
60df8bae1dSRodney W. Grimes 
61df8bae1dSRodney W. Grimes /*
62df8bae1dSRodney W. Grimes  *	Virtual memory object module.
63df8bae1dSRodney W. Grimes  */
64df8bae1dSRodney W. Grimes 
65874651b1SDavid E. O'Brien #include <sys/cdefs.h>
66874651b1SDavid E. O'Brien __FBSDID("$FreeBSD$");
67874651b1SDavid E. O'Brien 
68f8a47341SAlan Cox #include "opt_vm.h"
69f8a47341SAlan Cox 
70df8bae1dSRodney W. Grimes #include <sys/param.h>
71df8bae1dSRodney W. Grimes #include <sys/systm.h>
72fb919e4dSMark Murray #include <sys/lock.h>
73867a482dSJohn Dyson #include <sys/mman.h>
74cf2819ccSJohn Dyson #include <sys/mount.h>
75b9b7a4beSMatthew Dillon #include <sys/kernel.h>
76b9b7a4beSMatthew Dillon #include <sys/sysctl.h>
771b367556SJason Evans #include <sys/mutex.h>
78fb919e4dSMark Murray #include <sys/proc.h>		/* for curproc, pageproc */
79fb919e4dSMark Murray #include <sys/socket.h>
803364c323SKonstantin Belousov #include <sys/resourcevar.h>
8189f6b863SAttilio Rao #include <sys/rwlock.h>
82fb919e4dSMark Murray #include <sys/vnode.h>
83fb919e4dSMark Murray #include <sys/vmmeter.h>
841005a129SJohn Baldwin #include <sys/sx.h>
85df8bae1dSRodney W. Grimes 
86df8bae1dSRodney W. Grimes #include <vm/vm.h>
87efeaf95aSDavid Greenman #include <vm/vm_param.h>
88efeaf95aSDavid Greenman #include <vm/pmap.h>
89efeaf95aSDavid Greenman #include <vm/vm_map.h>
90efeaf95aSDavid Greenman #include <vm/vm_object.h>
91df8bae1dSRodney W. Grimes #include <vm/vm_page.h>
9226f9a767SRodney W. Grimes #include <vm/vm_pageout.h>
930d94caffSDavid Greenman #include <vm/vm_pager.h>
9405f0fdd2SPoul-Henning Kamp #include <vm/swap_pager.h>
95a1f6d91cSDavid Greenman #include <vm/vm_kern.h>
96efeaf95aSDavid Greenman #include <vm/vm_extern.h>
97774d251dSAttilio Rao #include <vm/vm_radix.h>
98f8a47341SAlan Cox #include <vm/vm_reserv.h>
99670d17b5SJeff Roberson #include <vm/uma.h>
10026f9a767SRodney W. Grimes 
101c53f7aceSDag-Erling Smørgrav static int old_msync;
102c53f7aceSDag-Erling Smørgrav SYSCTL_INT(_vm, OID_AUTO, old_msync, CTLFLAG_RW, &old_msync, 0,
103c53f7aceSDag-Erling Smørgrav     "Use old (insecure) msync behavior");
104c53f7aceSDag-Erling Smørgrav 
105757216f3SKonstantin Belousov static int	vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
106126d6082SKonstantin Belousov 		    int pagerflags, int flags, boolean_t *clearobjflags,
107126d6082SKonstantin Belousov 		    boolean_t *eio);
1083280870dSKonstantin Belousov static boolean_t vm_object_page_remove_write(vm_page_t p, int flags,
109126d6082SKonstantin Belousov 		    boolean_t *clearobjflags);
110b9b7a4beSMatthew Dillon static void	vm_object_qcollapse(vm_object_t object);
11102dd8331SAlan Cox static void	vm_object_vndeallocate(vm_object_t object);
112f6b04d2bSDavid Greenman 
113df8bae1dSRodney W. Grimes /*
114df8bae1dSRodney W. Grimes  *	Virtual memory objects maintain the actual data
115df8bae1dSRodney W. Grimes  *	associated with allocated virtual memory.  A given
116df8bae1dSRodney W. Grimes  *	page of memory exists within exactly one object.
117df8bae1dSRodney W. Grimes  *
118df8bae1dSRodney W. Grimes  *	An object is only deallocated when all "references"
119df8bae1dSRodney W. Grimes  *	are given up.  Only one "reference" to a given
120df8bae1dSRodney W. Grimes  *	region of an object should be writeable.
121df8bae1dSRodney W. Grimes  *
122df8bae1dSRodney W. Grimes  *	Associated with each object is a list of all resident
123df8bae1dSRodney W. Grimes  *	memory pages belonging to that object; this list is
124df8bae1dSRodney W. Grimes  *	maintained by the "vm_page" module, and locked by the object's
125df8bae1dSRodney W. Grimes  *	lock.
126df8bae1dSRodney W. Grimes  *
127df8bae1dSRodney W. Grimes  *	Each object also records a "pager" routine which is
128df8bae1dSRodney W. Grimes  *	used to retrieve (and store) pages to the proper backing
129df8bae1dSRodney W. Grimes  *	storage.  In addition, objects may be backed by other
130df8bae1dSRodney W. Grimes  *	objects from which they were virtual-copied.
131df8bae1dSRodney W. Grimes  *
132df8bae1dSRodney W. Grimes  *	The only items within the object structure which are
133df8bae1dSRodney W. Grimes  *	modified after time of creation are:
134df8bae1dSRodney W. Grimes  *		reference count		locked by object's lock
135df8bae1dSRodney W. Grimes  *		pager routine		locked by object's lock
136df8bae1dSRodney W. Grimes  *
137df8bae1dSRodney W. Grimes  */
138df8bae1dSRodney W. Grimes 
13928f8db14SBruce Evans struct object_q vm_object_list;
140a5698387SAlan Cox struct mtx vm_object_list_mtx;	/* lock for object list and count */
141cccf11b8SAlan Cox 
142cccf11b8SAlan Cox struct vm_object kernel_object_store;
143cccf11b8SAlan Cox struct vm_object kmem_object_store;
144df8bae1dSRodney W. Grimes 
1456472ac3dSEd Schouten static SYSCTL_NODE(_vm_stats, OID_AUTO, object, CTLFLAG_RD, 0,
1466472ac3dSEd Schouten     "VM object stats");
147604c2bbcSAlan Cox 
148f708ef1bSPoul-Henning Kamp static long object_collapses;
149604c2bbcSAlan Cox SYSCTL_LONG(_vm_stats_object, OID_AUTO, collapses, CTLFLAG_RD,
150604c2bbcSAlan Cox     &object_collapses, 0, "VM object collapses");
151604c2bbcSAlan Cox 
152f708ef1bSPoul-Henning Kamp static long object_bypasses;
153604c2bbcSAlan Cox SYSCTL_LONG(_vm_stats_object, OID_AUTO, bypasses, CTLFLAG_RD,
154604c2bbcSAlan Cox     &object_bypasses, 0, "VM object bypasses");
155dad740e9SAlan Cox 
156670d17b5SJeff Roberson static uma_zone_t obj_zone;
1578355f576SJeff Roberson 
158b23f72e9SBrian Feldman static int vm_object_zinit(void *mem, int size, int flags);
1598355f576SJeff Roberson 
1608355f576SJeff Roberson #ifdef INVARIANTS
1618355f576SJeff Roberson static void vm_object_zdtor(void *mem, int size, void *arg);
1628355f576SJeff Roberson 
1638355f576SJeff Roberson static void
1648355f576SJeff Roberson vm_object_zdtor(void *mem, int size, void *arg)
1658355f576SJeff Roberson {
1668355f576SJeff Roberson 	vm_object_t object;
1678355f576SJeff Roberson 
1688355f576SJeff Roberson 	object = (vm_object_t)mem;
16943186e53SAlan Cox 	KASSERT(TAILQ_EMPTY(&object->memq),
170198da1b2SAttilio Rao 	    ("object %p has resident pages in its memq", object));
171774d251dSAttilio Rao 	KASSERT(vm_radix_is_empty(&object->rtree),
172774d251dSAttilio Rao 	    ("object %p has resident pages in its trie", object));
173f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
174f8a47341SAlan Cox 	KASSERT(LIST_EMPTY(&object->rvq),
175f8a47341SAlan Cox 	    ("object %p has reservations",
176f8a47341SAlan Cox 	    object));
177f8a47341SAlan Cox #endif
178c9341161SAttilio Rao 	KASSERT(vm_object_cache_is_empty(object),
1797bfda801SAlan Cox 	    ("object %p has cached pages",
1807bfda801SAlan Cox 	    object));
1818355f576SJeff Roberson 	KASSERT(object->paging_in_progress == 0,
1828355f576SJeff Roberson 	    ("object %p paging_in_progress = %d",
1838355f576SJeff Roberson 	    object, object->paging_in_progress));
1848355f576SJeff Roberson 	KASSERT(object->resident_page_count == 0,
1858355f576SJeff Roberson 	    ("object %p resident_page_count = %d",
1868355f576SJeff Roberson 	    object, object->resident_page_count));
1878355f576SJeff Roberson 	KASSERT(object->shadow_count == 0,
1888355f576SJeff Roberson 	    ("object %p shadow_count = %d",
1898355f576SJeff Roberson 	    object, object->shadow_count));
1908355f576SJeff Roberson }
1918355f576SJeff Roberson #endif
1928355f576SJeff Roberson 
193b23f72e9SBrian Feldman static int
194b23f72e9SBrian Feldman vm_object_zinit(void *mem, int size, int flags)
1958355f576SJeff Roberson {
1968355f576SJeff Roberson 	vm_object_t object;
1978355f576SJeff Roberson 
1988355f576SJeff Roberson 	object = (vm_object_t)mem;
19989f6b863SAttilio Rao 	bzero(&object->lock, sizeof(object->lock));
20089f6b863SAttilio Rao 	rw_init_flags(&object->lock, "vm object", RW_DUPOK);
2018355f576SJeff Roberson 
2028355f576SJeff Roberson 	/* These are true for any object that has been freed */
203774d251dSAttilio Rao 	object->rtree.rt_root = 0;
204e946b949SAttilio Rao 	object->rtree.rt_flags = 0;
2058355f576SJeff Roberson 	object->paging_in_progress = 0;
2068355f576SJeff Roberson 	object->resident_page_count = 0;
2078355f576SJeff Roberson 	object->shadow_count = 0;
208774d251dSAttilio Rao 	object->cache.rt_root = 0;
209e946b949SAttilio Rao 	object->cache.rt_flags = 0;
210b23f72e9SBrian Feldman 	return (0);
2118355f576SJeff Roberson }
212df8bae1dSRodney W. Grimes 
213a4915c21SAttilio Rao static void
2146395da54SIan Dowse _vm_object_allocate(objtype_t type, vm_pindex_t size, vm_object_t object)
215df8bae1dSRodney W. Grimes {
2160cddd8f0SMatthew Dillon 
217df8bae1dSRodney W. Grimes 	TAILQ_INIT(&object->memq);
2181c500307SAlan Cox 	LIST_INIT(&object->shadow_head);
219a1f6d91cSDavid Greenman 
22024a1cce3SDavid Greenman 	object->type = type;
22128634820SAlan Cox 	switch (type) {
22228634820SAlan Cox 	case OBJT_DEAD:
22328634820SAlan Cox 		panic("_vm_object_allocate: can't create OBJT_DEAD");
22428634820SAlan Cox 	case OBJT_DEFAULT:
22528634820SAlan Cox 	case OBJT_SWAP:
22628634820SAlan Cox 		object->flags = OBJ_ONEMAPPING;
22728634820SAlan Cox 		break;
22828634820SAlan Cox 	case OBJT_DEVICE:
22928634820SAlan Cox 	case OBJT_SG:
23028634820SAlan Cox 		object->flags = OBJ_FICTITIOUS | OBJ_UNMANAGED;
23128634820SAlan Cox 		break;
23228634820SAlan Cox 	case OBJT_MGTDEVICE:
23328634820SAlan Cox 		object->flags = OBJ_FICTITIOUS;
23428634820SAlan Cox 		break;
23528634820SAlan Cox 	case OBJT_PHYS:
23628634820SAlan Cox 		object->flags = OBJ_UNMANAGED;
23728634820SAlan Cox 		break;
23828634820SAlan Cox 	case OBJT_VNODE:
23928634820SAlan Cox 		object->flags = 0;
24028634820SAlan Cox 		break;
24128634820SAlan Cox 	default:
24228634820SAlan Cox 		panic("_vm_object_allocate: type %d is undefined", type);
24328634820SAlan Cox 	}
244df8bae1dSRodney W. Grimes 	object->size = size;
245b881da26SAlan Cox 	object->generation = 1;
246a1f6d91cSDavid Greenman 	object->ref_count = 1;
2473153e878SAlan Cox 	object->memattr = VM_MEMATTR_DEFAULT;
248ef694c1aSEdward Tomasz Napierala 	object->cred = NULL;
2493364c323SKonstantin Belousov 	object->charge = 0;
25024a1cce3SDavid Greenman 	object->handle = NULL;
25124a1cce3SDavid Greenman 	object->backing_object = NULL;
252a316d390SJohn Dyson 	object->backing_object_offset = (vm_ooffset_t) 0;
253f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
254f8a47341SAlan Cox 	LIST_INIT(&object->rvq);
255f8a47341SAlan Cox #endif
256a1f6d91cSDavid Greenman 
257a5698387SAlan Cox 	mtx_lock(&vm_object_list_mtx);
25860517fd1SJohn Baldwin 	TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
259a5698387SAlan Cox 	mtx_unlock(&vm_object_list_mtx);
260df8bae1dSRodney W. Grimes }
261df8bae1dSRodney W. Grimes 
262df8bae1dSRodney W. Grimes /*
26326f9a767SRodney W. Grimes  *	vm_object_init:
26426f9a767SRodney W. Grimes  *
26526f9a767SRodney W. Grimes  *	Initialize the VM objects module.
26626f9a767SRodney W. Grimes  */
26726f9a767SRodney W. Grimes void
2681b40f8c0SMatthew Dillon vm_object_init(void)
26926f9a767SRodney W. Grimes {
27026f9a767SRodney W. Grimes 	TAILQ_INIT(&vm_object_list);
2716008862bSJohn Baldwin 	mtx_init(&vm_object_list_mtx, "vm object_list", NULL, MTX_DEF);
2720217125fSDavid Greenman 
27389f6b863SAttilio Rao 	rw_init(&kernel_object->lock, "kernel vm object");
2749f5c801bSAlan Cox 	_vm_object_allocate(OBJT_PHYS, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),
27526f9a767SRodney W. Grimes 	    kernel_object);
276f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
277f8a47341SAlan Cox 	kernel_object->flags |= OBJ_COLORED;
278f8a47341SAlan Cox 	kernel_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
279f8a47341SAlan Cox #endif
28026f9a767SRodney W. Grimes 
28189f6b863SAttilio Rao 	rw_init(&kmem_object->lock, "kmem vm object");
2829f5c801bSAlan Cox 	_vm_object_allocate(OBJT_PHYS, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),
28326f9a767SRodney W. Grimes 	    kmem_object);
284f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
285f8a47341SAlan Cox 	kmem_object->flags |= OBJ_COLORED;
286f8a47341SAlan Cox 	kmem_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
287f8a47341SAlan Cox #endif
288ed6a7863SAlan Cox 
2898dbca793STor Egge 	/*
2908dbca793STor Egge 	 * The lock portion of struct vm_object must be type stable due
2918dbca793STor Egge 	 * to vm_pageout_fallback_object_lock locking a vm object
2928dbca793STor Egge 	 * without holding any references to it.
2938dbca793STor Egge 	 */
2948355f576SJeff Roberson 	obj_zone = uma_zcreate("VM OBJECT", sizeof (struct vm_object), NULL,
2958355f576SJeff Roberson #ifdef INVARIANTS
2968355f576SJeff Roberson 	    vm_object_zdtor,
2978355f576SJeff Roberson #else
2988355f576SJeff Roberson 	    NULL,
2998355f576SJeff Roberson #endif
3005df87b21SJeff Roberson 	    vm_object_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
301774d251dSAttilio Rao 
302774d251dSAttilio Rao 	vm_radix_init();
30399448ed1SJohn Dyson }
30499448ed1SJohn Dyson 
30599448ed1SJohn Dyson void
3061b40f8c0SMatthew Dillon vm_object_clear_flag(vm_object_t object, u_short bits)
3071b40f8c0SMatthew Dillon {
3085440b5a9SAlan Cox 
30989f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
310b06805adSJake Burkholder 	object->flags &= ~bits;
3111b40f8c0SMatthew Dillon }
3121b40f8c0SMatthew Dillon 
3133153e878SAlan Cox /*
3143153e878SAlan Cox  *	Sets the default memory attribute for the specified object.  Pages
3153153e878SAlan Cox  *	that are allocated to this object are by default assigned this memory
3163153e878SAlan Cox  *	attribute.
3173153e878SAlan Cox  *
3183153e878SAlan Cox  *	Presently, this function must be called before any pages are allocated
3193153e878SAlan Cox  *	to the object.  In the future, this requirement may be relaxed for
3203153e878SAlan Cox  *	"default" and "swap" objects.
3213153e878SAlan Cox  */
3223153e878SAlan Cox int
3233153e878SAlan Cox vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr)
3243153e878SAlan Cox {
3253153e878SAlan Cox 
32689f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
3273153e878SAlan Cox 	switch (object->type) {
3283153e878SAlan Cox 	case OBJT_DEFAULT:
3293153e878SAlan Cox 	case OBJT_DEVICE:
33096b0b92aSAlan Cox 	case OBJT_MGTDEVICE:
3313153e878SAlan Cox 	case OBJT_PHYS:
33201381811SJohn Baldwin 	case OBJT_SG:
3333153e878SAlan Cox 	case OBJT_SWAP:
3343153e878SAlan Cox 	case OBJT_VNODE:
3353153e878SAlan Cox 		if (!TAILQ_EMPTY(&object->memq))
3363153e878SAlan Cox 			return (KERN_FAILURE);
3373153e878SAlan Cox 		break;
3383153e878SAlan Cox 	case OBJT_DEAD:
3393153e878SAlan Cox 		return (KERN_INVALID_ARGUMENT);
34096b0b92aSAlan Cox 	default:
34196b0b92aSAlan Cox 		panic("vm_object_set_memattr: object %p is of undefined type",
34296b0b92aSAlan Cox 		    object);
3433153e878SAlan Cox 	}
3443153e878SAlan Cox 	object->memattr = memattr;
3453153e878SAlan Cox 	return (KERN_SUCCESS);
3463153e878SAlan Cox }
3473153e878SAlan Cox 
3481b40f8c0SMatthew Dillon void
3491b40f8c0SMatthew Dillon vm_object_pip_add(vm_object_t object, short i)
3501b40f8c0SMatthew Dillon {
351f279b88dSAlan Cox 
35289f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
353b06805adSJake Burkholder 	object->paging_in_progress += i;
3541b40f8c0SMatthew Dillon }
3551b40f8c0SMatthew Dillon 
3561b40f8c0SMatthew Dillon void
3571b40f8c0SMatthew Dillon vm_object_pip_subtract(vm_object_t object, short i)
3581b40f8c0SMatthew Dillon {
359d647a0edSAlan Cox 
36089f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
361b06805adSJake Burkholder 	object->paging_in_progress -= i;
3621b40f8c0SMatthew Dillon }
3631b40f8c0SMatthew Dillon 
3641b40f8c0SMatthew Dillon void
3651b40f8c0SMatthew Dillon vm_object_pip_wakeup(vm_object_t object)
3661b40f8c0SMatthew Dillon {
367f279b88dSAlan Cox 
36889f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
369b06805adSJake Burkholder 	object->paging_in_progress--;
3701b40f8c0SMatthew Dillon 	if ((object->flags & OBJ_PIPWNT) && object->paging_in_progress == 0) {
3711b40f8c0SMatthew Dillon 		vm_object_clear_flag(object, OBJ_PIPWNT);
3721b40f8c0SMatthew Dillon 		wakeup(object);
3731b40f8c0SMatthew Dillon 	}
3741b40f8c0SMatthew Dillon }
3751b40f8c0SMatthew Dillon 
3761b40f8c0SMatthew Dillon void
3771b40f8c0SMatthew Dillon vm_object_pip_wakeupn(vm_object_t object, short i)
3781b40f8c0SMatthew Dillon {
379d647a0edSAlan Cox 
38089f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
3811b40f8c0SMatthew Dillon 	if (i)
382b06805adSJake Burkholder 		object->paging_in_progress -= i;
3831b40f8c0SMatthew Dillon 	if ((object->flags & OBJ_PIPWNT) && object->paging_in_progress == 0) {
3841b40f8c0SMatthew Dillon 		vm_object_clear_flag(object, OBJ_PIPWNT);
3851b40f8c0SMatthew Dillon 		wakeup(object);
3861b40f8c0SMatthew Dillon 	}
3871b40f8c0SMatthew Dillon }
3881b40f8c0SMatthew Dillon 
3891b40f8c0SMatthew Dillon void
3901b40f8c0SMatthew Dillon vm_object_pip_wait(vm_object_t object, char *waitid)
3911b40f8c0SMatthew Dillon {
3921ca58953SAlan Cox 
39389f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
3941ca58953SAlan Cox 	while (object->paging_in_progress) {
3951ca58953SAlan Cox 		object->flags |= OBJ_PIPWNT;
3960dde287bSAttilio Rao 		VM_OBJECT_SLEEP(object, object, PVM, waitid, 0);
3971ca58953SAlan Cox 	}
3981b40f8c0SMatthew Dillon }
3991b40f8c0SMatthew Dillon 
40026f9a767SRodney W. Grimes /*
40126f9a767SRodney W. Grimes  *	vm_object_allocate:
40226f9a767SRodney W. Grimes  *
40326f9a767SRodney W. Grimes  *	Returns a new object with the given size.
40426f9a767SRodney W. Grimes  */
40526f9a767SRodney W. Grimes vm_object_t
4066395da54SIan Dowse vm_object_allocate(objtype_t type, vm_pindex_t size)
40726f9a767SRodney W. Grimes {
40890688d13SAlan Cox 	vm_object_t object;
40990688d13SAlan Cox 
41090688d13SAlan Cox 	object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
41190688d13SAlan Cox 	_vm_object_allocate(type, size, object);
41290688d13SAlan Cox 	return (object);
41326f9a767SRodney W. Grimes }
41426f9a767SRodney W. Grimes 
41526f9a767SRodney W. Grimes 
41626f9a767SRodney W. Grimes /*
417df8bae1dSRodney W. Grimes  *	vm_object_reference:
418df8bae1dSRodney W. Grimes  *
41915347817SAlan Cox  *	Gets another reference to the given object.  Note: OBJ_DEAD
42015347817SAlan Cox  *	objects can be referenced during final cleaning.
421df8bae1dSRodney W. Grimes  */
4226476c0d2SJohn Dyson void
4231b40f8c0SMatthew Dillon vm_object_reference(vm_object_t object)
424df8bae1dSRodney W. Grimes {
425df8bae1dSRodney W. Grimes 	if (object == NULL)
426df8bae1dSRodney W. Grimes 		return;
42789f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
42852481a9aSJeff Roberson 	vm_object_reference_locked(object);
42989f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
43095e5e988SJohn Dyson }
43195e5e988SJohn Dyson 
43223955314SAlfred Perlstein /*
433b921a12bSAlan Cox  *	vm_object_reference_locked:
434b921a12bSAlan Cox  *
435b921a12bSAlan Cox  *	Gets another reference to the given object.
436b921a12bSAlan Cox  *
437b921a12bSAlan Cox  *	The object must be locked.
438b921a12bSAlan Cox  */
439b921a12bSAlan Cox void
440b921a12bSAlan Cox vm_object_reference_locked(vm_object_t object)
441b921a12bSAlan Cox {
442b921a12bSAlan Cox 	struct vnode *vp;
443b921a12bSAlan Cox 
44489f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
445b921a12bSAlan Cox 	object->ref_count++;
446b921a12bSAlan Cox 	if (object->type == OBJT_VNODE) {
447b921a12bSAlan Cox 		vp = object->handle;
448b921a12bSAlan Cox 		vref(vp);
449b921a12bSAlan Cox 	}
450b921a12bSAlan Cox }
451b921a12bSAlan Cox 
452b921a12bSAlan Cox /*
4539d5abbddSJens Schweikhardt  * Handle deallocating an object of type OBJT_VNODE.
45423955314SAlfred Perlstein  */
45502dd8331SAlan Cox static void
4561b40f8c0SMatthew Dillon vm_object_vndeallocate(vm_object_t object)
45795e5e988SJohn Dyson {
45895e5e988SJohn Dyson 	struct vnode *vp = (struct vnode *) object->handle;
459219cbf59SEivind Eklund 
46089f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
4615526d2d9SEivind Eklund 	KASSERT(object->type == OBJT_VNODE,
4625526d2d9SEivind Eklund 	    ("vm_object_vndeallocate: not a vnode object"));
463219cbf59SEivind Eklund 	KASSERT(vp != NULL, ("vm_object_vndeallocate: missing vp"));
464219cbf59SEivind Eklund #ifdef INVARIANTS
46595e5e988SJohn Dyson 	if (object->ref_count == 0) {
46695e5e988SJohn Dyson 		vprint("vm_object_vndeallocate", vp);
46795e5e988SJohn Dyson 		panic("vm_object_vndeallocate: bad object reference count");
46895e5e988SJohn Dyson 	}
46995e5e988SJohn Dyson #endif
47095e5e988SJohn Dyson 
47103fa5b34SKonstantin Belousov 	if (object->ref_count > 1) {
47295e5e988SJohn Dyson 		object->ref_count--;
47389f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
47403fa5b34SKonstantin Belousov 		/* vrele may need the vnode lock. */
47547221757SJohn Dyson 		vrele(vp);
47603fa5b34SKonstantin Belousov 	} else {
47786769ac0SKonstantin Belousov 		vhold(vp);
47889f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
47903fa5b34SKonstantin Belousov 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
48086769ac0SKonstantin Belousov 		vdrop(vp);
48189f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
48203fa5b34SKonstantin Belousov 		object->ref_count--;
48386769ac0SKonstantin Belousov 		if (object->type == OBJT_DEAD) {
48489f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
48586769ac0SKonstantin Belousov 			VOP_UNLOCK(vp, 0);
48686769ac0SKonstantin Belousov 		} else {
48703fa5b34SKonstantin Belousov 			if (object->ref_count == 0)
488877d24acSKonstantin Belousov 				VOP_UNSET_TEXT(vp);
48989f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
49003fa5b34SKonstantin Belousov 			vput(vp);
49103fa5b34SKonstantin Belousov 		}
492df8bae1dSRodney W. Grimes 	}
49386769ac0SKonstantin Belousov }
494df8bae1dSRodney W. Grimes 
495df8bae1dSRodney W. Grimes /*
496df8bae1dSRodney W. Grimes  *	vm_object_deallocate:
497df8bae1dSRodney W. Grimes  *
498df8bae1dSRodney W. Grimes  *	Release a reference to the specified object,
499df8bae1dSRodney W. Grimes  *	gained either through a vm_object_allocate
500df8bae1dSRodney W. Grimes  *	or a vm_object_reference call.  When all references
501df8bae1dSRodney W. Grimes  *	are gone, storage associated with this object
502df8bae1dSRodney W. Grimes  *	may be relinquished.
503df8bae1dSRodney W. Grimes  *
504df8bae1dSRodney W. Grimes  *	No object may be locked.
505df8bae1dSRodney W. Grimes  */
50626f9a767SRodney W. Grimes void
5071b40f8c0SMatthew Dillon vm_object_deallocate(vm_object_t object)
508df8bae1dSRodney W. Grimes {
509df8bae1dSRodney W. Grimes 	vm_object_t temp;
5106f2af3fcSKonstantin Belousov 	struct vnode *vp;
511df8bae1dSRodney W. Grimes 
512df8bae1dSRodney W. Grimes 	while (object != NULL) {
51389f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
5143b68228cSAlan Cox 		if (object->type == OBJT_VNODE) {
51595e5e988SJohn Dyson 			vm_object_vndeallocate(object);
51623b186d3SAlan Cox 			return;
5175050aa86SKonstantin Belousov 		}
51895e5e988SJohn Dyson 
5198125b1e6SAlfred Perlstein 		KASSERT(object->ref_count != 0,
5208125b1e6SAlfred Perlstein 			("vm_object_deallocate: object deallocated too many times: %d", object->type));
5212be70f79SJohn Dyson 
5222be70f79SJohn Dyson 		/*
5238125b1e6SAlfred Perlstein 		 * If the reference count goes to 0 we start calling
5248125b1e6SAlfred Perlstein 		 * vm_object_terminate() on the object chain.
5258125b1e6SAlfred Perlstein 		 * A ref count of 1 may be a special case depending on the
5268125b1e6SAlfred Perlstein 		 * shadow count being 0 or 1.
5272be70f79SJohn Dyson 		 */
528c0877f10SJohn Dyson 		object->ref_count--;
5298125b1e6SAlfred Perlstein 		if (object->ref_count > 1) {
53089f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
53123b186d3SAlan Cox 			return;
5328125b1e6SAlfred Perlstein 		} else if (object->ref_count == 1) {
5336f2af3fcSKonstantin Belousov 			if (object->type == OBJT_SWAP &&
5346f2af3fcSKonstantin Belousov 			    (object->flags & OBJ_TMPFS) != 0) {
5356f2af3fcSKonstantin Belousov 				vp = object->un_pager.swp.swp_tmpfs;
5366f2af3fcSKonstantin Belousov 				vhold(vp);
5376f2af3fcSKonstantin Belousov 				VM_OBJECT_WUNLOCK(object);
5386f2af3fcSKonstantin Belousov 				vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
5396f2af3fcSKonstantin Belousov 				VM_OBJECT_WLOCK(object);
5407560005cSKonstantin Belousov 				if (object->type == OBJT_DEAD ||
5417560005cSKonstantin Belousov 				    object->ref_count != 1) {
5426f2af3fcSKonstantin Belousov 					VM_OBJECT_WUNLOCK(object);
5436f2af3fcSKonstantin Belousov 					VOP_UNLOCK(vp, 0);
5442309fa9bSKonstantin Belousov 					vdrop(vp);
5456f2af3fcSKonstantin Belousov 					return;
5467560005cSKonstantin Belousov 				}
5477560005cSKonstantin Belousov 				if ((object->flags & OBJ_TMPFS) != 0)
5486f2af3fcSKonstantin Belousov 					VOP_UNSET_TEXT(vp);
5496f2af3fcSKonstantin Belousov 				VOP_UNLOCK(vp, 0);
5502309fa9bSKonstantin Belousov 				vdrop(vp);
5516f2af3fcSKonstantin Belousov 			}
5524c8e0452SAlan Cox 			if (object->shadow_count == 0 &&
5534c8e0452SAlan Cox 			    object->handle == NULL &&
5544c8e0452SAlan Cox 			    (object->type == OBJT_DEFAULT ||
5556f2af3fcSKonstantin Belousov 			    (object->type == OBJT_SWAP &&
556f08f7dcaSKonstantin Belousov 			    (object->flags & OBJ_TMPFS_NODE) == 0))) {
5578125b1e6SAlfred Perlstein 				vm_object_set_flag(object, OBJ_ONEMAPPING);
5588125b1e6SAlfred Perlstein 			} else if ((object->shadow_count == 1) &&
5598125b1e6SAlfred Perlstein 			    (object->handle == NULL) &&
56024a1cce3SDavid Greenman 			    (object->type == OBJT_DEFAULT ||
56124a1cce3SDavid Greenman 			     object->type == OBJT_SWAP)) {
562a1f6d91cSDavid Greenman 				vm_object_t robject;
56395e5e988SJohn Dyson 
5641c500307SAlan Cox 				robject = LIST_FIRST(&object->shadow_head);
5655526d2d9SEivind Eklund 				KASSERT(robject != NULL,
566219cbf59SEivind Eklund 				    ("vm_object_deallocate: ref_count: %d, shadow_count: %d",
5675526d2d9SEivind Eklund 					 object->ref_count,
5685526d2d9SEivind Eklund 					 object->shadow_count));
5694bace8e7SKonstantin Belousov 				KASSERT((robject->flags & OBJ_TMPFS_NODE) == 0,
5704bace8e7SKonstantin Belousov 				    ("shadowed tmpfs v_object %p", object));
57189f6b863SAttilio Rao 				if (!VM_OBJECT_TRYWLOCK(robject)) {
572b72b0115SAlan Cox 					/*
573b72b0115SAlan Cox 					 * Avoid a potential deadlock.
574b72b0115SAlan Cox 					 */
575b72b0115SAlan Cox 					object->ref_count++;
57689f6b863SAttilio Rao 					VM_OBJECT_WUNLOCK(object);
577a7d86121SAlan Cox 					/*
578a7d86121SAlan Cox 					 * More likely than not the thread
579a7d86121SAlan Cox 					 * holding robject's lock has lower
580a7d86121SAlan Cox 					 * priority than the current thread.
581a7d86121SAlan Cox 					 * Let the lower priority thread run.
582a7d86121SAlan Cox 					 */
5838db5fc58SJohn Baldwin 					pause("vmo_de", 1);
584b72b0115SAlan Cox 					continue;
585b72b0115SAlan Cox 				}
586d936694fSAlan Cox 				/*
587d936694fSAlan Cox 				 * Collapse object into its shadow unless its
588d936694fSAlan Cox 				 * shadow is dead.  In that case, object will
589d936694fSAlan Cox 				 * be deallocated by the thread that is
590d936694fSAlan Cox 				 * deallocating its shadow.
591d936694fSAlan Cox 				 */
592d936694fSAlan Cox 				if ((robject->flags & OBJ_DEAD) == 0 &&
593d936694fSAlan Cox 				    (robject->handle == NULL) &&
59424a1cce3SDavid Greenman 				    (robject->type == OBJT_DEFAULT ||
59524a1cce3SDavid Greenman 				     robject->type == OBJT_SWAP)) {
596a1f6d91cSDavid Greenman 
59795e5e988SJohn Dyson 					robject->ref_count++;
598138449dcSAlan Cox retry:
599138449dcSAlan Cox 					if (robject->paging_in_progress) {
60089f6b863SAttilio Rao 						VM_OBJECT_WUNLOCK(object);
601138449dcSAlan Cox 						vm_object_pip_wait(robject,
602138449dcSAlan Cox 						    "objde1");
6032e9f4a69SAlan Cox 						temp = robject->backing_object;
6042e9f4a69SAlan Cox 						if (object == temp) {
60589f6b863SAttilio Rao 							VM_OBJECT_WLOCK(object);
606138449dcSAlan Cox 							goto retry;
6072e9f4a69SAlan Cox 						}
608138449dcSAlan Cox 					} else if (object->paging_in_progress) {
60989f6b863SAttilio Rao 						VM_OBJECT_WUNLOCK(robject);
610138449dcSAlan Cox 						object->flags |= OBJ_PIPWNT;
6110dde287bSAttilio Rao 						VM_OBJECT_SLEEP(object, object,
612138449dcSAlan Cox 						    PDROP | PVM, "objde2", 0);
61389f6b863SAttilio Rao 						VM_OBJECT_WLOCK(robject);
6142e9f4a69SAlan Cox 						temp = robject->backing_object;
6152e9f4a69SAlan Cox 						if (object == temp) {
61689f6b863SAttilio Rao 							VM_OBJECT_WLOCK(object);
617138449dcSAlan Cox 							goto retry;
618a1f6d91cSDavid Greenman 						}
6192e9f4a69SAlan Cox 					} else
62089f6b863SAttilio Rao 						VM_OBJECT_WUNLOCK(object);
6212e9f4a69SAlan Cox 
62295e5e988SJohn Dyson 					if (robject->ref_count == 1) {
62395e5e988SJohn Dyson 						robject->ref_count--;
624ba8da839SDavid Greenman 						object = robject;
62595e5e988SJohn Dyson 						goto doterm;
62695e5e988SJohn Dyson 					}
62795e5e988SJohn Dyson 					object = robject;
62895e5e988SJohn Dyson 					vm_object_collapse(object);
62989f6b863SAttilio Rao 					VM_OBJECT_WUNLOCK(object);
630ba8da839SDavid Greenman 					continue;
631a1f6d91cSDavid Greenman 				}
63289f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(robject);
63395e5e988SJohn Dyson 			}
63489f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
63523b186d3SAlan Cox 			return;
63695e5e988SJohn Dyson 		}
63795e5e988SJohn Dyson doterm:
63824a1cce3SDavid Greenman 		temp = object->backing_object;
639c9917419SAlan Cox 		if (temp != NULL) {
6404bace8e7SKonstantin Belousov 			KASSERT((object->flags & OBJ_TMPFS_NODE) == 0,
6414bace8e7SKonstantin Belousov 			    ("shadowed tmpfs v_object 2 %p", object));
64289f6b863SAttilio Rao 			VM_OBJECT_WLOCK(temp);
6431c500307SAlan Cox 			LIST_REMOVE(object, shadow_list);
64495e5e988SJohn Dyson 			temp->shadow_count--;
64589f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(temp);
64695461b45SJohn Dyson 			object->backing_object = NULL;
647de5f6a77SJohn Dyson 		}
648245df27cSMatthew Dillon 		/*
649245df27cSMatthew Dillon 		 * Don't double-terminate, we could be in a termination
650245df27cSMatthew Dillon 		 * recursion due to the terminate having to sync data
651245df27cSMatthew Dillon 		 * to disk.
652245df27cSMatthew Dillon 		 */
653245df27cSMatthew Dillon 		if ((object->flags & OBJ_DEAD) == 0)
654df8bae1dSRodney W. Grimes 			vm_object_terminate(object);
655c829b9d0SAlan Cox 		else
65689f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
657df8bae1dSRodney W. Grimes 		object = temp;
658df8bae1dSRodney W. Grimes 	}
659df8bae1dSRodney W. Grimes }
660df8bae1dSRodney W. Grimes 
661df8bae1dSRodney W. Grimes /*
6622ac78f0eSStephan Uphoff  *	vm_object_destroy removes the object from the global object list
6632ac78f0eSStephan Uphoff  *      and frees the space for the object.
6642ac78f0eSStephan Uphoff  */
6652ac78f0eSStephan Uphoff void
6662ac78f0eSStephan Uphoff vm_object_destroy(vm_object_t object)
6672ac78f0eSStephan Uphoff {
6682ac78f0eSStephan Uphoff 
6692ac78f0eSStephan Uphoff 	/*
6702ac78f0eSStephan Uphoff 	 * Remove the object from the global object list.
6712ac78f0eSStephan Uphoff 	 */
6722ac78f0eSStephan Uphoff 	mtx_lock(&vm_object_list_mtx);
6732ac78f0eSStephan Uphoff 	TAILQ_REMOVE(&vm_object_list, object, object_list);
6742ac78f0eSStephan Uphoff 	mtx_unlock(&vm_object_list_mtx);
6752ac78f0eSStephan Uphoff 
6762ac78f0eSStephan Uphoff 	/*
6773364c323SKonstantin Belousov 	 * Release the allocation charge.
6783364c323SKonstantin Belousov 	 */
679ef694c1aSEdward Tomasz Napierala 	if (object->cred != NULL) {
6803364c323SKonstantin Belousov 		KASSERT(object->type == OBJT_DEFAULT ||
6813364c323SKonstantin Belousov 		    object->type == OBJT_SWAP,
6825f3563b0SGleb Smirnoff 		    ("%s: non-swap obj %p has cred", __func__, object));
683ef694c1aSEdward Tomasz Napierala 		swap_release_by_cred(object->charge, object->cred);
6843364c323SKonstantin Belousov 		object->charge = 0;
685ef694c1aSEdward Tomasz Napierala 		crfree(object->cred);
686ef694c1aSEdward Tomasz Napierala 		object->cred = NULL;
6873364c323SKonstantin Belousov 	}
6883364c323SKonstantin Belousov 
6893364c323SKonstantin Belousov 	/*
6902ac78f0eSStephan Uphoff 	 * Free the space for the object.
6912ac78f0eSStephan Uphoff 	 */
6922ac78f0eSStephan Uphoff 	uma_zfree(obj_zone, object);
6932ac78f0eSStephan Uphoff }
6942ac78f0eSStephan Uphoff 
6952ac78f0eSStephan Uphoff /*
696df8bae1dSRodney W. Grimes  *	vm_object_terminate actually destroys the specified object, freeing
697df8bae1dSRodney W. Grimes  *	up all previously used resources.
698df8bae1dSRodney W. Grimes  *
699df8bae1dSRodney W. Grimes  *	The object must be locked.
7001c7c3c6aSMatthew Dillon  *	This routine may block.
701df8bae1dSRodney W. Grimes  */
70295e5e988SJohn Dyson void
7031b40f8c0SMatthew Dillon vm_object_terminate(vm_object_t object)
704df8bae1dSRodney W. Grimes {
70517ea6f00SAlan Cox 	vm_page_t p, p_next;
706df8bae1dSRodney W. Grimes 
70789f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
7080cddd8f0SMatthew Dillon 
70995e5e988SJohn Dyson 	/*
71095e5e988SJohn Dyson 	 * Make sure no one uses us.
71195e5e988SJohn Dyson 	 */
712069e9bc1SDoug Rabson 	vm_object_set_flag(object, OBJ_DEAD);
7133c631446SJohn Dyson 
714df8bae1dSRodney W. Grimes 	/*
715f6b04d2bSDavid Greenman 	 * wait for the pageout daemon to be done with the object
716df8bae1dSRodney W. Grimes 	 */
71766095752SJohn Dyson 	vm_object_pip_wait(object, "objtrm");
718df8bae1dSRodney W. Grimes 
7195526d2d9SEivind Eklund 	KASSERT(!object->paging_in_progress,
7205526d2d9SEivind Eklund 		("vm_object_terminate: pageout in progress"));
72126f9a767SRodney W. Grimes 
72226f9a767SRodney W. Grimes 	/*
7230d94caffSDavid Greenman 	 * Clean and free the pages, as appropriate. All references to the
7240d94caffSDavid Greenman 	 * object are gone, so we don't need to lock it.
72526f9a767SRodney W. Grimes 	 */
72624a1cce3SDavid Greenman 	if (object->type == OBJT_VNODE) {
727f7dd7b63SAlan Cox 		struct vnode *vp = (struct vnode *)object->handle;
72895e5e988SJohn Dyson 
72995e5e988SJohn Dyson 		/*
73095e5e988SJohn Dyson 		 * Clean pages and flush buffers.
73195e5e988SJohn Dyson 		 */
7328f9110f6SJohn Dyson 		vm_object_page_clean(object, 0, 0, OBJPC_SYNC);
73389f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
73495e5e988SJohn Dyson 
7350d7935fdSAttilio Rao 		vinvalbuf(vp, V_SAVE, 0, 0);
736f7dd7b63SAlan Cox 
73789f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
738bef608bdSJohn Dyson 	}
739bef608bdSJohn Dyson 
740971dd342SAlfred Perlstein 	KASSERT(object->ref_count == 0,
741971dd342SAlfred Perlstein 		("vm_object_terminate: object with references, ref_count=%d",
742971dd342SAlfred Perlstein 		object->ref_count));
743996c772fSJohn Dyson 
7440d94caffSDavid Greenman 	/*
74517ea6f00SAlan Cox 	 * Free any remaining pageable pages.  This also removes them from the
74617ea6f00SAlan Cox 	 * paging queues.  However, don't free wired pages, just remove them
74717ea6f00SAlan Cox 	 * from the object.  Rather than incrementally removing each page from
74817ea6f00SAlan Cox 	 * the object, the page and object are reset to any empty state.
749df8bae1dSRodney W. Grimes 	 */
75017ea6f00SAlan Cox 	TAILQ_FOREACH_SAFE(p, &object->memq, listq, p_next) {
751c7aebda8SAttilio Rao 		vm_page_assert_unbusied(p);
7522965a453SKip Macy 		vm_page_lock(p);
75317ea6f00SAlan Cox 		/*
75417ea6f00SAlan Cox 		 * Optimize the page's removal from the object by resetting
75517ea6f00SAlan Cox 		 * its "object" field.  Specifically, if the page is not
75617ea6f00SAlan Cox 		 * wired, then the effect of this assignment is that
75717ea6f00SAlan Cox 		 * vm_page_free()'s call to vm_page_remove() will return
75817ea6f00SAlan Cox 		 * immediately without modifying the page or the object.
75917ea6f00SAlan Cox 		 */
76017ea6f00SAlan Cox 		p->object = NULL;
7610b10ba98SDavid Greenman 		if (p->wire_count == 0) {
762df8bae1dSRodney W. Grimes 			vm_page_free(p);
76370721880SAlan Cox 			PCPU_INC(cnt.v_pfree);
76417ea6f00SAlan Cox 		}
7652965a453SKip Macy 		vm_page_unlock(p);
7662965a453SKip Macy 	}
76717ea6f00SAlan Cox 	/*
76817ea6f00SAlan Cox 	 * If the object contained any pages, then reset it to an empty state.
76917ea6f00SAlan Cox 	 * None of the object's fields, including "resident_page_count", were
77017ea6f00SAlan Cox 	 * modified by the preceding loop.
77117ea6f00SAlan Cox 	 */
77217ea6f00SAlan Cox 	if (object->resident_page_count != 0) {
773774d251dSAttilio Rao 		vm_radix_reclaim_allnodes(&object->rtree);
77417ea6f00SAlan Cox 		TAILQ_INIT(&object->memq);
77517ea6f00SAlan Cox 		object->resident_page_count = 0;
77617ea6f00SAlan Cox 		if (object->type == OBJT_VNODE)
77717ea6f00SAlan Cox 			vdrop(object->handle);
77817ea6f00SAlan Cox 	}
779bef608bdSJohn Dyson 
780f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
781f8a47341SAlan Cox 	if (__predict_false(!LIST_EMPTY(&object->rvq)))
782f8a47341SAlan Cox 		vm_reserv_break_all(object);
783f8a47341SAlan Cox #endif
784c9341161SAttilio Rao 	if (__predict_false(!vm_object_cache_is_empty(object)))
785c9444914SAlan Cox 		vm_page_cache_free(object, 0, 0);
7867bfda801SAlan Cox 
7872d8acc0fSJohn Dyson 	/*
7889fcfb650SDavid Greenman 	 * Let the pager know object is dead.
7899fcfb650SDavid Greenman 	 */
7909fcfb650SDavid Greenman 	vm_pager_deallocate(object);
79189f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
7929fcfb650SDavid Greenman 
7932ac78f0eSStephan Uphoff 	vm_object_destroy(object);
79447221757SJohn Dyson }
795df8bae1dSRodney W. Grimes 
796edf93b25SAlan Cox /*
797edf93b25SAlan Cox  * Make the page read-only so that we can clear the object flags.  However, if
798edf93b25SAlan Cox  * this is a nosync mmap then the object is likely to stay dirty so do not
799edf93b25SAlan Cox  * mess with the page and do not clear the object flags.  Returns TRUE if the
800edf93b25SAlan Cox  * page should be flushed, and FALSE otherwise.
801edf93b25SAlan Cox  */
8023280870dSKonstantin Belousov static boolean_t
803126d6082SKonstantin Belousov vm_object_page_remove_write(vm_page_t p, int flags, boolean_t *clearobjflags)
8043280870dSKonstantin Belousov {
8053280870dSKonstantin Belousov 
8063280870dSKonstantin Belousov 	/*
8073280870dSKonstantin Belousov 	 * If we have been asked to skip nosync pages and this is a
8083280870dSKonstantin Belousov 	 * nosync page, skip it.  Note that the object flags were not
8093280870dSKonstantin Belousov 	 * cleared in this case so we do not have to set them.
8103280870dSKonstantin Belousov 	 */
8113280870dSKonstantin Belousov 	if ((flags & OBJPC_NOSYNC) != 0 && (p->oflags & VPO_NOSYNC) != 0) {
812126d6082SKonstantin Belousov 		*clearobjflags = FALSE;
8133280870dSKonstantin Belousov 		return (FALSE);
8143280870dSKonstantin Belousov 	} else {
8153280870dSKonstantin Belousov 		pmap_remove_write(p);
8163280870dSKonstantin Belousov 		return (p->dirty != 0);
8173280870dSKonstantin Belousov 	}
8183280870dSKonstantin Belousov }
8193280870dSKonstantin Belousov 
820df8bae1dSRodney W. Grimes /*
821df8bae1dSRodney W. Grimes  *	vm_object_page_clean
822df8bae1dSRodney W. Grimes  *
8234f79d873SMatthew Dillon  *	Clean all dirty pages in the specified range of object.  Leaves page
8244f79d873SMatthew Dillon  * 	on whatever queue it is currently on.   If NOSYNC is set then do not
825b146f9e5SAlan Cox  *	write out pages with VPO_NOSYNC set (originally comes from MAP_NOSYNC),
8264f79d873SMatthew Dillon  *	leaving the object dirty.
82726f9a767SRodney W. Grimes  *
82843b7990eSMatthew Dillon  *	When stuffing pages asynchronously, allow clustering.  XXX we need a
82943b7990eSMatthew Dillon  *	synchronous clustering mode implementation.
83043b7990eSMatthew Dillon  *
83126f9a767SRodney W. Grimes  *	Odd semantics: if start == end, we clean everything.
83226f9a767SRodney W. Grimes  *
83326f9a767SRodney W. Grimes  *	The object must be locked.
834126d6082SKonstantin Belousov  *
835126d6082SKonstantin Belousov  *	Returns FALSE if some page from the range was not written, as
836126d6082SKonstantin Belousov  *	reported by the pager, and TRUE otherwise.
83726f9a767SRodney W. Grimes  */
838126d6082SKonstantin Belousov boolean_t
83917f3095dSAlan Cox vm_object_page_clean(vm_object_t object, vm_ooffset_t start, vm_ooffset_t end,
840e239bb97SKonstantin Belousov     int flags)
841f6b04d2bSDavid Greenman {
842e239bb97SKonstantin Belousov 	vm_page_t np, p;
84317f3095dSAlan Cox 	vm_pindex_t pi, tend, tstart;
844126d6082SKonstantin Belousov 	int curgeneration, n, pagerflags;
845126d6082SKonstantin Belousov 	boolean_t clearobjflags, eio, res;
846f6b04d2bSDavid Greenman 
84789f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
848e5f299ffSKonstantin Belousov 
849e5f299ffSKonstantin Belousov 	/*
850e5f299ffSKonstantin Belousov 	 * The OBJ_MIGHTBEDIRTY flag is only set for OBJT_VNODE
851e5f299ffSKonstantin Belousov 	 * objects.  The check below prevents the function from
852e5f299ffSKonstantin Belousov 	 * operating on non-vnode objects.
853e5f299ffSKonstantin Belousov 	 */
854e239bb97SKonstantin Belousov 	if ((object->flags & OBJ_MIGHTBEDIRTY) == 0 ||
855e239bb97SKonstantin Belousov 	    object->resident_page_count == 0)
856126d6082SKonstantin Belousov 		return (TRUE);
857f6b04d2bSDavid Greenman 
858e239bb97SKonstantin Belousov 	pagerflags = (flags & (OBJPC_SYNC | OBJPC_INVAL)) != 0 ?
859e239bb97SKonstantin Belousov 	    VM_PAGER_PUT_SYNC : VM_PAGER_CLUSTER_OK;
860e239bb97SKonstantin Belousov 	pagerflags |= (flags & OBJPC_INVAL) != 0 ? VM_PAGER_PUT_INVAL : 0;
861e239bb97SKonstantin Belousov 
86217f3095dSAlan Cox 	tstart = OFF_TO_IDX(start);
86317f3095dSAlan Cox 	tend = (end == 0) ? object->size : OFF_TO_IDX(end + PAGE_MASK);
86417f3095dSAlan Cox 	clearobjflags = tstart == 0 && tend >= object->size;
865126d6082SKonstantin Belousov 	res = TRUE;
866f6b04d2bSDavid Greenman 
867bd7e5f99SJohn Dyson rescan:
8682d8acc0fSJohn Dyson 	curgeneration = object->generation;
8692d8acc0fSJohn Dyson 
87017f3095dSAlan Cox 	for (p = vm_page_find_least(object, tstart); p != NULL; p = np) {
871bd7e5f99SJohn Dyson 		pi = p->pindex;
872e239bb97SKonstantin Belousov 		if (pi >= tend)
873e239bb97SKonstantin Belousov 			break;
874e239bb97SKonstantin Belousov 		np = TAILQ_NEXT(p, listq);
875e239bb97SKonstantin Belousov 		if (p->valid == 0)
876aef922f5SJohn Dyson 			continue;
877c7aebda8SAttilio Rao 		if (vm_page_sleep_if_busy(p, "vpcwai")) {
878e65919f9SKonstantin Belousov 			if (object->generation != curgeneration) {
879e65919f9SKonstantin Belousov 				if ((flags & OBJPC_SYNC) != 0)
880e239bb97SKonstantin Belousov 					goto rescan;
881e65919f9SKonstantin Belousov 				else
882126d6082SKonstantin Belousov 					clearobjflags = FALSE;
883e65919f9SKonstantin Belousov 			}
884780636b7SKonstantin Belousov 			np = vm_page_find_least(object, pi);
885780636b7SKonstantin Belousov 			continue;
886f6b04d2bSDavid Greenman 		}
8873280870dSKonstantin Belousov 		if (!vm_object_page_remove_write(p, flags, &clearobjflags))
888bd7e5f99SJohn Dyson 			continue;
889e239bb97SKonstantin Belousov 
8903280870dSKonstantin Belousov 		n = vm_object_page_collect_flush(object, p, pagerflags,
891126d6082SKonstantin Belousov 		    flags, &clearobjflags, &eio);
892126d6082SKonstantin Belousov 		if (eio) {
893126d6082SKonstantin Belousov 			res = FALSE;
894126d6082SKonstantin Belousov 			clearobjflags = FALSE;
895126d6082SKonstantin Belousov 		}
896e65919f9SKonstantin Belousov 		if (object->generation != curgeneration) {
897e65919f9SKonstantin Belousov 			if ((flags & OBJPC_SYNC) != 0)
898b9b7a4beSMatthew Dillon 				goto rescan;
899e65919f9SKonstantin Belousov 			else
900126d6082SKonstantin Belousov 				clearobjflags = FALSE;
901e65919f9SKonstantin Belousov 		}
902031ec8c1SKonstantin Belousov 
903031ec8c1SKonstantin Belousov 		/*
904031ec8c1SKonstantin Belousov 		 * If the VOP_PUTPAGES() did a truncated write, so
905031ec8c1SKonstantin Belousov 		 * that even the first page of the run is not fully
906031ec8c1SKonstantin Belousov 		 * written, vm_pageout_flush() returns 0 as the run
907031ec8c1SKonstantin Belousov 		 * length.  Since the condition that caused truncated
908031ec8c1SKonstantin Belousov 		 * write may be permanent, e.g. exhausted free space,
909031ec8c1SKonstantin Belousov 		 * accepting n == 0 would cause an infinite loop.
910031ec8c1SKonstantin Belousov 		 *
911031ec8c1SKonstantin Belousov 		 * Forwarding the iterator leaves the unwritten page
912031ec8c1SKonstantin Belousov 		 * behind, but there is not much we can do there if
913031ec8c1SKonstantin Belousov 		 * filesystem refuses to write it.
914031ec8c1SKonstantin Belousov 		 */
915126d6082SKonstantin Belousov 		if (n == 0) {
916031ec8c1SKonstantin Belousov 			n = 1;
917126d6082SKonstantin Belousov 			clearobjflags = FALSE;
918126d6082SKonstantin Belousov 		}
919e239bb97SKonstantin Belousov 		np = vm_page_find_least(object, pi + n);
920b9b7a4beSMatthew Dillon 	}
921b9b7a4beSMatthew Dillon #if 0
922e239bb97SKonstantin Belousov 	VOP_FSYNC(vp, (pagerflags & VM_PAGER_PUT_SYNC) ? MNT_WAIT : 0);
923b9b7a4beSMatthew Dillon #endif
924b9b7a4beSMatthew Dillon 
925edf93b25SAlan Cox 	if (clearobjflags)
9263280870dSKonstantin Belousov 		vm_object_clear_flag(object, OBJ_MIGHTBEDIRTY);
927126d6082SKonstantin Belousov 	return (res);
928b9b7a4beSMatthew Dillon }
929b9b7a4beSMatthew Dillon 
930b9b7a4beSMatthew Dillon static int
9313280870dSKonstantin Belousov vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags,
932126d6082SKonstantin Belousov     int flags, boolean_t *clearobjflags, boolean_t *eio)
933b9b7a4beSMatthew Dillon {
9343157c503SKonstantin Belousov 	vm_page_t ma[vm_pageout_page_count], p_first, tp;
9353157c503SKonstantin Belousov 	int count, i, mreq, runlen;
936b9b7a4beSMatthew Dillon 
9377bec141bSKip Macy 	vm_page_lock_assert(p, MA_NOTOWNED);
93889f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
9393157c503SKonstantin Belousov 
9403157c503SKonstantin Belousov 	count = 1;
9413157c503SKonstantin Belousov 	mreq = 0;
9423157c503SKonstantin Belousov 
9433157c503SKonstantin Belousov 	for (tp = p; count < vm_pageout_page_count; count++) {
9443157c503SKonstantin Belousov 		tp = vm_page_next(tp);
945c7aebda8SAttilio Rao 		if (tp == NULL || vm_page_busied(tp))
946bd7e5f99SJohn Dyson 			break;
9473280870dSKonstantin Belousov 		if (!vm_object_page_remove_write(tp, flags, clearobjflags))
948bd7e5f99SJohn Dyson 			break;
949bd7e5f99SJohn Dyson 	}
950aef922f5SJohn Dyson 
9513157c503SKonstantin Belousov 	for (p_first = p; count < vm_pageout_page_count; count++) {
9523157c503SKonstantin Belousov 		tp = vm_page_prev(p_first);
953c7aebda8SAttilio Rao 		if (tp == NULL || vm_page_busied(tp))
954bd7e5f99SJohn Dyson 			break;
9553280870dSKonstantin Belousov 		if (!vm_object_page_remove_write(tp, flags, clearobjflags))
956bd7e5f99SJohn Dyson 			break;
9573157c503SKonstantin Belousov 		p_first = tp;
9583157c503SKonstantin Belousov 		mreq++;
959bd7e5f99SJohn Dyson 	}
960bd7e5f99SJohn Dyson 
9613157c503SKonstantin Belousov 	for (tp = p_first, i = 0; i < count; tp = TAILQ_NEXT(tp, listq), i++)
9623157c503SKonstantin Belousov 		ma[i] = tp;
963cf2819ccSJohn Dyson 
964126d6082SKonstantin Belousov 	vm_pageout_flush(ma, count, pagerflags, mreq, &runlen, eio);
9651e8a675cSKonstantin Belousov 	return (runlen);
96626f9a767SRodney W. Grimes }
967df8bae1dSRodney W. Grimes 
9681efb74fbSJohn Dyson /*
969950f8459SAlan Cox  * Note that there is absolutely no sense in writing out
970950f8459SAlan Cox  * anonymous objects, so we track down the vnode object
971950f8459SAlan Cox  * to write out.
972950f8459SAlan Cox  * We invalidate (remove) all pages from the address space
973950f8459SAlan Cox  * for semantic correctness.
974950f8459SAlan Cox  *
9756bbee8e2SAlan Cox  * If the backing object is a device object with unmanaged pages, then any
9766bbee8e2SAlan Cox  * mappings to the specified range of pages must be removed before this
9776bbee8e2SAlan Cox  * function is called.
9786bbee8e2SAlan Cox  *
979950f8459SAlan Cox  * Note: certain anonymous maps, such as MAP_NOSYNC maps,
980950f8459SAlan Cox  * may start out with a NULL object.
981950f8459SAlan Cox  */
982126d6082SKonstantin Belousov boolean_t
983950f8459SAlan Cox vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size,
984950f8459SAlan Cox     boolean_t syncio, boolean_t invalidate)
985950f8459SAlan Cox {
986950f8459SAlan Cox 	vm_object_t backing_object;
987950f8459SAlan Cox 	struct vnode *vp;
9883b582b4eSTor Egge 	struct mount *mp;
989126d6082SKonstantin Belousov 	int error, flags, fsync_after;
990126d6082SKonstantin Belousov 	boolean_t res;
991950f8459SAlan Cox 
992950f8459SAlan Cox 	if (object == NULL)
993126d6082SKonstantin Belousov 		return (TRUE);
994126d6082SKonstantin Belousov 	res = TRUE;
995126d6082SKonstantin Belousov 	error = 0;
99689f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
997950f8459SAlan Cox 	while ((backing_object = object->backing_object) != NULL) {
99889f6b863SAttilio Rao 		VM_OBJECT_WLOCK(backing_object);
99956e0670fSAlan Cox 		offset += object->backing_object_offset;
100089f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
1001950f8459SAlan Cox 		object = backing_object;
1002950f8459SAlan Cox 		if (object->size < OFF_TO_IDX(offset + size))
1003950f8459SAlan Cox 			size = IDX_TO_OFF(object->size) - offset;
1004950f8459SAlan Cox 	}
1005950f8459SAlan Cox 	/*
1006950f8459SAlan Cox 	 * Flush pages if writing is allowed, invalidate them
1007950f8459SAlan Cox 	 * if invalidation requested.  Pages undergoing I/O
1008950f8459SAlan Cox 	 * will be ignored by vm_object_page_remove().
1009950f8459SAlan Cox 	 *
1010950f8459SAlan Cox 	 * We cannot lock the vnode and then wait for paging
1011950f8459SAlan Cox 	 * to complete without deadlocking against vm_fault.
1012950f8459SAlan Cox 	 * Instead we simply call vm_object_page_remove() and
1013950f8459SAlan Cox 	 * allow it to block internally on a page-by-page
1014950f8459SAlan Cox 	 * basis when it encounters pages undergoing async
1015950f8459SAlan Cox 	 * I/O.
1016950f8459SAlan Cox 	 */
1017950f8459SAlan Cox 	if (object->type == OBJT_VNODE &&
1018950f8459SAlan Cox 	    (object->flags & OBJ_MIGHTBEDIRTY) != 0) {
1019950f8459SAlan Cox 		vp = object->handle;
102089f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
10213b582b4eSTor Egge 		(void) vn_start_write(vp, &mp, V_WAIT);
1022cb05b60aSAttilio Rao 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
102375ff604aSKonstantin Belousov 		if (syncio && !invalidate && offset == 0 &&
102475ff604aSKonstantin Belousov 		    OFF_TO_IDX(size) == object->size) {
102575ff604aSKonstantin Belousov 			/*
102675ff604aSKonstantin Belousov 			 * If syncing the whole mapping of the file,
102775ff604aSKonstantin Belousov 			 * it is faster to schedule all the writes in
102875ff604aSKonstantin Belousov 			 * async mode, also allowing the clustering,
102975ff604aSKonstantin Belousov 			 * and then wait for i/o to complete.
103075ff604aSKonstantin Belousov 			 */
103175ff604aSKonstantin Belousov 			flags = 0;
103275ff604aSKonstantin Belousov 			fsync_after = TRUE;
103375ff604aSKonstantin Belousov 		} else {
1034950f8459SAlan Cox 			flags = (syncio || invalidate) ? OBJPC_SYNC : 0;
103575ff604aSKonstantin Belousov 			flags |= invalidate ? (OBJPC_SYNC | OBJPC_INVAL) : 0;
103675ff604aSKonstantin Belousov 			fsync_after = FALSE;
103775ff604aSKonstantin Belousov 		}
103889f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
1039126d6082SKonstantin Belousov 		res = vm_object_page_clean(object, offset, offset + size,
1040126d6082SKonstantin Belousov 		    flags);
104189f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
104275ff604aSKonstantin Belousov 		if (fsync_after)
1043126d6082SKonstantin Belousov 			error = VOP_FSYNC(vp, MNT_WAIT, curthread);
104422db15c0SAttilio Rao 		VOP_UNLOCK(vp, 0);
10453b582b4eSTor Egge 		vn_finished_write(mp);
1046126d6082SKonstantin Belousov 		if (error != 0)
1047126d6082SKonstantin Belousov 			res = FALSE;
104889f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
1049950f8459SAlan Cox 	}
1050950f8459SAlan Cox 	if ((object->type == OBJT_VNODE ||
1051950f8459SAlan Cox 	     object->type == OBJT_DEVICE) && invalidate) {
10526bbee8e2SAlan Cox 		if (object->type == OBJT_DEVICE)
10536bbee8e2SAlan Cox 			/*
10546bbee8e2SAlan Cox 			 * The option OBJPR_NOTMAPPED must be passed here
10556bbee8e2SAlan Cox 			 * because vm_object_page_remove() cannot remove
10566bbee8e2SAlan Cox 			 * unmanaged mappings.
10576bbee8e2SAlan Cox 			 */
10586bbee8e2SAlan Cox 			flags = OBJPR_NOTMAPPED;
10596bbee8e2SAlan Cox 		else if (old_msync)
1060ebf5d94eSKonstantin Belousov 			flags = OBJPR_NOTWIRED;
10616bbee8e2SAlan Cox 		else
1062ebf5d94eSKonstantin Belousov 			flags = OBJPR_CLEANONLY | OBJPR_NOTWIRED;
10636bbee8e2SAlan Cox 		vm_object_page_remove(object, OFF_TO_IDX(offset),
10646bbee8e2SAlan Cox 		    OFF_TO_IDX(offset + size + PAGE_MASK), flags);
1065950f8459SAlan Cox 	}
106689f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
1067126d6082SKonstantin Belousov 	return (res);
1068950f8459SAlan Cox }
1069950f8459SAlan Cox 
1070950f8459SAlan Cox /*
1071867a482dSJohn Dyson  *	vm_object_madvise:
1072867a482dSJohn Dyson  *
1073867a482dSJohn Dyson  *	Implements the madvise function at the object/page level.
10741c7c3c6aSMatthew Dillon  *
1075193b9358SAlan Cox  *	MADV_WILLNEED	(any object)
1076193b9358SAlan Cox  *
1077193b9358SAlan Cox  *	    Activate the specified pages if they are resident.
1078193b9358SAlan Cox  *
1079193b9358SAlan Cox  *	MADV_DONTNEED	(any object)
1080193b9358SAlan Cox  *
1081193b9358SAlan Cox  *	    Deactivate the specified pages if they are resident.
1082193b9358SAlan Cox  *
1083193b9358SAlan Cox  *	MADV_FREE	(OBJT_DEFAULT/OBJT_SWAP objects,
1084193b9358SAlan Cox  *			 OBJ_ONEMAPPING only)
1085193b9358SAlan Cox  *
1086193b9358SAlan Cox  *	    Deactivate and clean the specified pages if they are
1087193b9358SAlan Cox  *	    resident.  This permits the process to reuse the pages
1088193b9358SAlan Cox  *	    without faulting or the kernel to reclaim the pages
1089193b9358SAlan Cox  *	    without I/O.
1090867a482dSJohn Dyson  */
1091867a482dSJohn Dyson void
109292a59946SJohn Baldwin vm_object_madvise(vm_object_t object, vm_pindex_t pindex, vm_pindex_t end,
109392a59946SJohn Baldwin     int advise)
1094867a482dSJohn Dyson {
109592a59946SJohn Baldwin 	vm_pindex_t tpindex;
109634567de7SAlan Cox 	vm_object_t backing_object, tobject;
1097867a482dSJohn Dyson 	vm_page_t m;
1098867a482dSJohn Dyson 
1099867a482dSJohn Dyson 	if (object == NULL)
1100867a482dSJohn Dyson 		return;
110189f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
11021c7c3c6aSMatthew Dillon 	/*
11031c7c3c6aSMatthew Dillon 	 * Locate and adjust resident pages
11041c7c3c6aSMatthew Dillon 	 */
11051c7c3c6aSMatthew Dillon 	for (; pindex < end; pindex += 1) {
11066e20a165SJohn Dyson relookup:
11076e20a165SJohn Dyson 		tobject = object;
11086e20a165SJohn Dyson 		tpindex = pindex;
11096e20a165SJohn Dyson shadowlookup:
111058b4e6ccSAlan Cox 		/*
111158b4e6ccSAlan Cox 		 * MADV_FREE only operates on OBJT_DEFAULT or OBJT_SWAP pages
111258b4e6ccSAlan Cox 		 * and those pages must be OBJ_ONEMAPPING.
111358b4e6ccSAlan Cox 		 */
111458b4e6ccSAlan Cox 		if (advise == MADV_FREE) {
111558b4e6ccSAlan Cox 			if ((tobject->type != OBJT_DEFAULT &&
111658b4e6ccSAlan Cox 			     tobject->type != OBJT_SWAP) ||
111758b4e6ccSAlan Cox 			    (tobject->flags & OBJ_ONEMAPPING) == 0) {
111834567de7SAlan Cox 				goto unlock_tobject;
11196e20a165SJohn Dyson 			}
112028634820SAlan Cox 		} else if ((tobject->flags & OBJ_UNMANAGED) != 0)
11216a2a3d73SAlan Cox 			goto unlock_tobject;
11221c7c3c6aSMatthew Dillon 		m = vm_page_lookup(tobject, tpindex);
11237bfda801SAlan Cox 		if (m == NULL && advise == MADV_WILLNEED) {
11247bfda801SAlan Cox 			/*
11257bfda801SAlan Cox 			 * If the page is cached, reactivate it.
11267bfda801SAlan Cox 			 */
1127f3a2ed4bSAlan Cox 			m = vm_page_alloc(tobject, tpindex, VM_ALLOC_IFCACHED |
1128f3a2ed4bSAlan Cox 			    VM_ALLOC_NOBUSY);
11297bfda801SAlan Cox 		}
11301c7c3c6aSMatthew Dillon 		if (m == NULL) {
11311ce137beSMatthew Dillon 			/*
11321ce137beSMatthew Dillon 			 * There may be swap even if there is no backing page
11331ce137beSMatthew Dillon 			 */
11341ce137beSMatthew Dillon 			if (advise == MADV_FREE && tobject->type == OBJT_SWAP)
11351ce137beSMatthew Dillon 				swap_pager_freespace(tobject, tpindex, 1);
11361ce137beSMatthew Dillon 			/*
11371ce137beSMatthew Dillon 			 * next object
11381ce137beSMatthew Dillon 			 */
113934567de7SAlan Cox 			backing_object = tobject->backing_object;
114034567de7SAlan Cox 			if (backing_object == NULL)
114134567de7SAlan Cox 				goto unlock_tobject;
114289f6b863SAttilio Rao 			VM_OBJECT_WLOCK(backing_object);
114356e0670fSAlan Cox 			tpindex += OFF_TO_IDX(tobject->backing_object_offset);
11449b98b796SAlan Cox 			if (tobject != object)
114589f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(tobject);
114634567de7SAlan Cox 			tobject = backing_object;
11476e20a165SJohn Dyson 			goto shadowlookup;
11486a2a3d73SAlan Cox 		} else if (m->valid != VM_PAGE_BITS_ALL)
11496a2a3d73SAlan Cox 			goto unlock_tobject;
1150867a482dSJohn Dyson 		/*
11516a2a3d73SAlan Cox 		 * If the page is not in a normal state, skip it.
1152867a482dSJohn Dyson 		 */
11532965a453SKip Macy 		vm_page_lock(m);
11546a2a3d73SAlan Cox 		if (m->hold_count != 0 || m->wire_count != 0) {
11552965a453SKip Macy 			vm_page_unlock(m);
115634567de7SAlan Cox 			goto unlock_tobject;
11576e20a165SJohn Dyson 		}
1158d98d0ce2SKonstantin Belousov 		KASSERT((m->flags & PG_FICTITIOUS) == 0,
1159d98d0ce2SKonstantin Belousov 		    ("vm_object_madvise: page %p is fictitious", m));
1160d98d0ce2SKonstantin Belousov 		KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1161567e51e1SAlan Cox 		    ("vm_object_madvise: page %p is not managed", m));
1162c7aebda8SAttilio Rao 		if (vm_page_busied(m)) {
1163567e51e1SAlan Cox 			if (advise == MADV_WILLNEED) {
1164b11b56b5SAlan Cox 				/*
1165b11b56b5SAlan Cox 				 * Reference the page before unlocking and
1166b11b56b5SAlan Cox 				 * sleeping so that the page daemon is less
1167b11b56b5SAlan Cox 				 * likely to reclaim it.
1168b11b56b5SAlan Cox 				 */
11693407fefeSKonstantin Belousov 				vm_page_aflag_set(m, PGA_REFERENCED);
1170567e51e1SAlan Cox 			}
11719b98b796SAlan Cox 			if (object != tobject)
117289f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(object);
1173c7aebda8SAttilio Rao 			VM_OBJECT_WUNLOCK(tobject);
1174c7aebda8SAttilio Rao 			vm_page_busy_sleep(m, "madvpo");
117589f6b863SAttilio Rao 			VM_OBJECT_WLOCK(object);
11766e20a165SJohn Dyson   			goto relookup;
117734567de7SAlan Cox 		}
1178867a482dSJohn Dyson 		if (advise == MADV_WILLNEED) {
1179867a482dSJohn Dyson 			vm_page_activate(m);
11802051980fSAlan Cox 		} else {
11812051980fSAlan Cox 			vm_page_advise(m, advise);
1182867a482dSJohn Dyson 		}
11832965a453SKip Macy 		vm_page_unlock(m);
11842999e9faSAlan Cox 		if (advise == MADV_FREE && tobject->type == OBJT_SWAP)
11852999e9faSAlan Cox 			swap_pager_freespace(tobject, tpindex, 1);
118634567de7SAlan Cox unlock_tobject:
11879b98b796SAlan Cox 		if (tobject != object)
118889f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(tobject);
1189867a482dSJohn Dyson 	}
119089f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
1191867a482dSJohn Dyson }
1192867a482dSJohn Dyson 
1193867a482dSJohn Dyson /*
1194df8bae1dSRodney W. Grimes  *	vm_object_shadow:
1195df8bae1dSRodney W. Grimes  *
1196df8bae1dSRodney W. Grimes  *	Create a new object which is backed by the
1197df8bae1dSRodney W. Grimes  *	specified existing object range.  The source
1198df8bae1dSRodney W. Grimes  *	object reference is deallocated.
1199df8bae1dSRodney W. Grimes  *
1200df8bae1dSRodney W. Grimes  *	The new object and offset into that object
1201df8bae1dSRodney W. Grimes  *	are returned in the source parameters.
1202df8bae1dSRodney W. Grimes  */
120326f9a767SRodney W. Grimes void
12041b40f8c0SMatthew Dillon vm_object_shadow(
12051b40f8c0SMatthew Dillon 	vm_object_t *object,	/* IN/OUT */
12061b40f8c0SMatthew Dillon 	vm_ooffset_t *offset,	/* IN/OUT */
12071b40f8c0SMatthew Dillon 	vm_size_t length)
1208df8bae1dSRodney W. Grimes {
1209d031cff1SMatthew Dillon 	vm_object_t source;
1210d031cff1SMatthew Dillon 	vm_object_t result;
1211df8bae1dSRodney W. Grimes 
1212df8bae1dSRodney W. Grimes 	source = *object;
1213df8bae1dSRodney W. Grimes 
1214df8bae1dSRodney W. Grimes 	/*
12159a2f6362SAlan Cox 	 * Don't create the new object if the old object isn't shared.
12169a2f6362SAlan Cox 	 */
1217570a2f4aSAlan Cox 	if (source != NULL) {
121889f6b863SAttilio Rao 		VM_OBJECT_WLOCK(source);
1219570a2f4aSAlan Cox 		if (source->ref_count == 1 &&
12209a2f6362SAlan Cox 		    source->handle == NULL &&
12219a2f6362SAlan Cox 		    (source->type == OBJT_DEFAULT ||
12229917e010SAlan Cox 		     source->type == OBJT_SWAP)) {
122389f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(source);
12249a2f6362SAlan Cox 			return;
12259917e010SAlan Cox 		}
122689f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(source);
1227570a2f4aSAlan Cox 	}
12289a2f6362SAlan Cox 
12299a2f6362SAlan Cox 	/*
1230570a2f4aSAlan Cox 	 * Allocate a new object with the given length.
1231df8bae1dSRodney W. Grimes 	 */
12320cc74f14SAlan Cox 	result = vm_object_allocate(OBJT_DEFAULT, atop(length));
1233df8bae1dSRodney W. Grimes 
1234df8bae1dSRodney W. Grimes 	/*
12350d94caffSDavid Greenman 	 * The new object shadows the source object, adding a reference to it.
12360d94caffSDavid Greenman 	 * Our caller changes his reference to point to the new object,
12370d94caffSDavid Greenman 	 * removing a reference to the source object.  Net result: no change
12380d94caffSDavid Greenman 	 * of reference count.
12399b09fe24SMatthew Dillon 	 *
12409b09fe24SMatthew Dillon 	 * Try to optimize the result object's page color when shadowing
1241956f3135SPhilippe Charnier 	 * in order to maintain page coloring consistency in the combined
12429b09fe24SMatthew Dillon 	 * shadowed object.
1243df8bae1dSRodney W. Grimes 	 */
124424a1cce3SDavid Greenman 	result->backing_object = source;
12459174ca7bSTor Egge 	/*
12469174ca7bSTor Egge 	 * Store the offset into the source object, and fix up the offset into
12479174ca7bSTor Egge 	 * the new object.
12489174ca7bSTor Egge 	 */
12499174ca7bSTor Egge 	result->backing_object_offset = *offset;
1250570a2f4aSAlan Cox 	if (source != NULL) {
125189f6b863SAttilio Rao 		VM_OBJECT_WLOCK(source);
12521c500307SAlan Cox 		LIST_INSERT_HEAD(&source->shadow_head, result, shadow_list);
1253eaf13dd7SJohn Dyson 		source->shadow_count++;
1254f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
12557b54b1a9SAlan Cox 		result->flags |= source->flags & OBJ_COLORED;
1256f8a47341SAlan Cox 		result->pg_color = (source->pg_color + OFF_TO_IDX(*offset)) &
1257f8a47341SAlan Cox 		    ((1 << (VM_NFREEORDER - 1)) - 1);
1258f8a47341SAlan Cox #endif
125989f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(source);
1260de5f6a77SJohn Dyson 	}
1261df8bae1dSRodney W. Grimes 
1262df8bae1dSRodney W. Grimes 
1263df8bae1dSRodney W. Grimes 	/*
1264df8bae1dSRodney W. Grimes 	 * Return the new things
1265df8bae1dSRodney W. Grimes 	 */
1266df8bae1dSRodney W. Grimes 	*offset = 0;
1267df8bae1dSRodney W. Grimes 	*object = result;
1268df8bae1dSRodney W. Grimes }
1269df8bae1dSRodney W. Grimes 
1270c5aaa06dSAlan Cox /*
1271c5aaa06dSAlan Cox  *	vm_object_split:
1272c5aaa06dSAlan Cox  *
1273c5aaa06dSAlan Cox  * Split the pages in a map entry into a new object.  This affords
1274c5aaa06dSAlan Cox  * easier removal of unused pages, and keeps object inheritance from
1275c5aaa06dSAlan Cox  * being a negative impact on memory usage.
1276c5aaa06dSAlan Cox  */
1277c5aaa06dSAlan Cox void
1278c5aaa06dSAlan Cox vm_object_split(vm_map_entry_t entry)
1279c5aaa06dSAlan Cox {
128073000556SAlan Cox 	vm_page_t m, m_next;
1281c5aaa06dSAlan Cox 	vm_object_t orig_object, new_object, source;
128273000556SAlan Cox 	vm_pindex_t idx, offidxstart;
128373000556SAlan Cox 	vm_size_t size;
1284c5aaa06dSAlan Cox 
1285c5aaa06dSAlan Cox 	orig_object = entry->object.vm_object;
1286c5aaa06dSAlan Cox 	if (orig_object->type != OBJT_DEFAULT && orig_object->type != OBJT_SWAP)
1287c5aaa06dSAlan Cox 		return;
1288c5aaa06dSAlan Cox 	if (orig_object->ref_count <= 1)
1289c5aaa06dSAlan Cox 		return;
129089f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(orig_object);
1291c5aaa06dSAlan Cox 
12924da9f125SAlan Cox 	offidxstart = OFF_TO_IDX(entry->offset);
129395442adfSAlan Cox 	size = atop(entry->end - entry->start);
1294c5aaa06dSAlan Cox 
12954da9f125SAlan Cox 	/*
12964da9f125SAlan Cox 	 * If swap_pager_copy() is later called, it will convert new_object
12974da9f125SAlan Cox 	 * into a swap object.
12984da9f125SAlan Cox 	 */
12994da9f125SAlan Cox 	new_object = vm_object_allocate(OBJT_DEFAULT, size);
1300c5aaa06dSAlan Cox 
1301c5474b8fSAlan Cox 	/*
1302c5474b8fSAlan Cox 	 * At this point, the new object is still private, so the order in
1303c5474b8fSAlan Cox 	 * which the original and new objects are locked does not matter.
1304c5474b8fSAlan Cox 	 */
130589f6b863SAttilio Rao 	VM_OBJECT_WLOCK(new_object);
130689f6b863SAttilio Rao 	VM_OBJECT_WLOCK(orig_object);
1307c5aaa06dSAlan Cox 	source = orig_object->backing_object;
1308c5aaa06dSAlan Cox 	if (source != NULL) {
130989f6b863SAttilio Rao 		VM_OBJECT_WLOCK(source);
131019c244d0SAlan Cox 		if ((source->flags & OBJ_DEAD) != 0) {
131189f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(source);
131289f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(orig_object);
131389f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(new_object);
131419c244d0SAlan Cox 			vm_object_deallocate(new_object);
131589f6b863SAttilio Rao 			VM_OBJECT_WLOCK(orig_object);
131619c244d0SAlan Cox 			return;
131719c244d0SAlan Cox 		}
13181c500307SAlan Cox 		LIST_INSERT_HEAD(&source->shadow_head,
1319c5aaa06dSAlan Cox 				  new_object, shadow_list);
13208e3a76fbSAlan Cox 		source->shadow_count++;
1321b921a12bSAlan Cox 		vm_object_reference_locked(source);	/* for new_object */
1322c5aaa06dSAlan Cox 		vm_object_clear_flag(source, OBJ_ONEMAPPING);
132389f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(source);
1324c5aaa06dSAlan Cox 		new_object->backing_object_offset =
13254da9f125SAlan Cox 			orig_object->backing_object_offset + entry->offset;
1326c5aaa06dSAlan Cox 		new_object->backing_object = source;
1327c5aaa06dSAlan Cox 	}
1328ef694c1aSEdward Tomasz Napierala 	if (orig_object->cred != NULL) {
1329ef694c1aSEdward Tomasz Napierala 		new_object->cred = orig_object->cred;
1330ef694c1aSEdward Tomasz Napierala 		crhold(orig_object->cred);
13313364c323SKonstantin Belousov 		new_object->charge = ptoa(size);
13323364c323SKonstantin Belousov 		KASSERT(orig_object->charge >= ptoa(size),
13333364c323SKonstantin Belousov 		    ("orig_object->charge < 0"));
13343364c323SKonstantin Belousov 		orig_object->charge -= ptoa(size);
13353364c323SKonstantin Belousov 	}
1336c5aaa06dSAlan Cox retry:
1337b382c10aSKonstantin Belousov 	m = vm_page_find_least(orig_object, offidxstart);
133873000556SAlan Cox 	for (; m != NULL && (idx = m->pindex - offidxstart) < size;
133973000556SAlan Cox 	    m = m_next) {
134073000556SAlan Cox 		m_next = TAILQ_NEXT(m, listq);
1341c5aaa06dSAlan Cox 
1342c5aaa06dSAlan Cox 		/*
1343c5aaa06dSAlan Cox 		 * We must wait for pending I/O to complete before we can
1344c5aaa06dSAlan Cox 		 * rename the page.
1345c5aaa06dSAlan Cox 		 *
1346c5aaa06dSAlan Cox 		 * We do not have to VM_PROT_NONE the page as mappings should
1347c5aaa06dSAlan Cox 		 * not be changed by this operation.
1348c5aaa06dSAlan Cox 		 */
1349c7aebda8SAttilio Rao 		if (vm_page_busied(m)) {
135089f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(new_object);
1351c7aebda8SAttilio Rao 			vm_page_lock(m);
1352c7aebda8SAttilio Rao 			VM_OBJECT_WUNLOCK(orig_object);
1353c7aebda8SAttilio Rao 			vm_page_busy_sleep(m, "spltwt");
1354c7aebda8SAttilio Rao 			VM_OBJECT_WLOCK(orig_object);
135589f6b863SAttilio Rao 			VM_OBJECT_WLOCK(new_object);
1356c5aaa06dSAlan Cox 			goto retry;
1357de33beddSAlan Cox 		}
1358e946b949SAttilio Rao 
1359e946b949SAttilio Rao 		/* vm_page_rename() will handle dirty and cache. */
1360e946b949SAttilio Rao 		if (vm_page_rename(m, new_object, idx)) {
1361e946b949SAttilio Rao 			VM_OBJECT_WUNLOCK(new_object);
1362e946b949SAttilio Rao 			VM_OBJECT_WUNLOCK(orig_object);
1363e946b949SAttilio Rao 			VM_WAIT;
1364e946b949SAttilio Rao 			VM_OBJECT_WLOCK(orig_object);
1365e946b949SAttilio Rao 			VM_OBJECT_WLOCK(new_object);
1366e946b949SAttilio Rao 			goto retry;
1367e946b949SAttilio Rao 		}
1368b5f359b7SAlan Cox #if VM_NRESERVLEVEL > 0
1369b5f359b7SAlan Cox 		/*
1370b5f359b7SAlan Cox 		 * If some of the reservation's allocated pages remain with
1371b5f359b7SAlan Cox 		 * the original object, then transferring the reservation to
1372b5f359b7SAlan Cox 		 * the new object is neither particularly beneficial nor
1373b5f359b7SAlan Cox 		 * particularly harmful as compared to leaving the reservation
1374b5f359b7SAlan Cox 		 * with the original object.  If, however, all of the
1375b5f359b7SAlan Cox 		 * reservation's allocated pages are transferred to the new
1376b5f359b7SAlan Cox 		 * object, then transferring the reservation is typically
1377b5f359b7SAlan Cox 		 * beneficial.  Determining which of these two cases applies
1378b5f359b7SAlan Cox 		 * would be more costly than unconditionally renaming the
1379b5f359b7SAlan Cox 		 * reservation.
1380b5f359b7SAlan Cox 		 */
1381b5f359b7SAlan Cox 		vm_reserv_rename(m, new_object, orig_object, offidxstart);
1382b5f359b7SAlan Cox #endif
1383dfd55c0cSAttilio Rao 		if (orig_object->type == OBJT_SWAP)
1384c7aebda8SAttilio Rao 			vm_page_xbusy(m);
1385c5aaa06dSAlan Cox 	}
1386d7a013c3SAlan Cox 	if (orig_object->type == OBJT_SWAP) {
1387c5aaa06dSAlan Cox 		/*
1388c7c8dd7eSAlan Cox 		 * swap_pager_copy() can sleep, in which case the orig_object's
1389c7c8dd7eSAlan Cox 		 * and new_object's locks are released and reacquired.
1390c5aaa06dSAlan Cox 		 */
1391c5aaa06dSAlan Cox 		swap_pager_copy(orig_object, new_object, offidxstart, 0);
1392dfd55c0cSAttilio Rao 		TAILQ_FOREACH(m, &new_object->memq, listq)
1393c7aebda8SAttilio Rao 			vm_page_xunbusy(m);
13947bfda801SAlan Cox 
13957bfda801SAlan Cox 		/*
13967bfda801SAlan Cox 		 * Transfer any cached pages from orig_object to new_object.
1397571a1e92SAttilio Rao 		 * If swap_pager_copy() found swapped out pages within the
1398571a1e92SAttilio Rao 		 * specified range of orig_object, then it changed
1399571a1e92SAttilio Rao 		 * new_object's type to OBJT_SWAP when it transferred those
1400571a1e92SAttilio Rao 		 * pages to new_object.  Otherwise, new_object's type
1401571a1e92SAttilio Rao 		 * should still be OBJT_DEFAULT and orig_object should not
1402571a1e92SAttilio Rao 		 * contain any cached pages within the specified range.
14037bfda801SAlan Cox 		 */
1404c9341161SAttilio Rao 		if (__predict_false(!vm_object_cache_is_empty(orig_object)))
14057bfda801SAlan Cox 			vm_page_cache_transfer(orig_object, offidxstart,
14067bfda801SAlan Cox 			    new_object);
1407c5aaa06dSAlan Cox 	}
140889f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(orig_object);
140989f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(new_object);
1410c5aaa06dSAlan Cox 	entry->object.vm_object = new_object;
1411c5aaa06dSAlan Cox 	entry->offset = 0LL;
1412c5aaa06dSAlan Cox 	vm_object_deallocate(orig_object);
141389f6b863SAttilio Rao 	VM_OBJECT_WLOCK(new_object);
1414c5aaa06dSAlan Cox }
1415c5aaa06dSAlan Cox 
14162ad1a3f7SMatthew Dillon #define	OBSC_TEST_ALL_SHADOWED	0x0001
14172ad1a3f7SMatthew Dillon #define	OBSC_COLLAPSE_NOWAIT	0x0002
14182ad1a3f7SMatthew Dillon #define	OBSC_COLLAPSE_WAIT	0x0004
14192ad1a3f7SMatthew Dillon 
1420b4ae4780SPoul-Henning Kamp static int
14212ad1a3f7SMatthew Dillon vm_object_backing_scan(vm_object_t object, int op)
14222ad1a3f7SMatthew Dillon {
14232ad1a3f7SMatthew Dillon 	int r = 1;
14242ad1a3f7SMatthew Dillon 	vm_page_t p;
14252ad1a3f7SMatthew Dillon 	vm_object_t backing_object;
14262ad1a3f7SMatthew Dillon 	vm_pindex_t backing_offset_index;
14272ad1a3f7SMatthew Dillon 
142889f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
142989f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object->backing_object);
14302ad1a3f7SMatthew Dillon 
14312ad1a3f7SMatthew Dillon 	backing_object = object->backing_object;
14322ad1a3f7SMatthew Dillon 	backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
14332ad1a3f7SMatthew Dillon 
14342ad1a3f7SMatthew Dillon 	/*
14352ad1a3f7SMatthew Dillon 	 * Initial conditions
14362ad1a3f7SMatthew Dillon 	 */
14372ad1a3f7SMatthew Dillon 	if (op & OBSC_TEST_ALL_SHADOWED) {
14382ad1a3f7SMatthew Dillon 		/*
14397bfda801SAlan Cox 		 * We do not want to have to test for the existence of cache
14407bfda801SAlan Cox 		 * or swap pages in the backing object.  XXX but with the
14412ad1a3f7SMatthew Dillon 		 * new swapper this would be pretty easy to do.
14422ad1a3f7SMatthew Dillon 		 *
14432ad1a3f7SMatthew Dillon 		 * XXX what about anonymous MAP_SHARED memory that hasn't
14442ad1a3f7SMatthew Dillon 		 * been ZFOD faulted yet?  If we do not test for this, the
14452ad1a3f7SMatthew Dillon 		 * shadow test may succeed! XXX
14462ad1a3f7SMatthew Dillon 		 */
14472ad1a3f7SMatthew Dillon 		if (backing_object->type != OBJT_DEFAULT) {
14482ad1a3f7SMatthew Dillon 			return (0);
14492ad1a3f7SMatthew Dillon 		}
14502ad1a3f7SMatthew Dillon 	}
14512ad1a3f7SMatthew Dillon 	if (op & OBSC_COLLAPSE_WAIT) {
14522ad1a3f7SMatthew Dillon 		vm_object_set_flag(backing_object, OBJ_DEAD);
14532ad1a3f7SMatthew Dillon 	}
14542ad1a3f7SMatthew Dillon 
14552ad1a3f7SMatthew Dillon 	/*
14562ad1a3f7SMatthew Dillon 	 * Our scan
14572ad1a3f7SMatthew Dillon 	 */
14582ad1a3f7SMatthew Dillon 	p = TAILQ_FIRST(&backing_object->memq);
14592ad1a3f7SMatthew Dillon 	while (p) {
14602ad1a3f7SMatthew Dillon 		vm_page_t next = TAILQ_NEXT(p, listq);
14612ad1a3f7SMatthew Dillon 		vm_pindex_t new_pindex = p->pindex - backing_offset_index;
14622ad1a3f7SMatthew Dillon 
14632ad1a3f7SMatthew Dillon 		if (op & OBSC_TEST_ALL_SHADOWED) {
14642ad1a3f7SMatthew Dillon 			vm_page_t pp;
14652ad1a3f7SMatthew Dillon 
14662ad1a3f7SMatthew Dillon 			/*
14672ad1a3f7SMatthew Dillon 			 * Ignore pages outside the parent object's range
14682ad1a3f7SMatthew Dillon 			 * and outside the parent object's mapping of the
14692ad1a3f7SMatthew Dillon 			 * backing object.
14702ad1a3f7SMatthew Dillon 			 *
14712ad1a3f7SMatthew Dillon 			 * note that we do not busy the backing object's
14722ad1a3f7SMatthew Dillon 			 * page.
14732ad1a3f7SMatthew Dillon 			 */
14742ad1a3f7SMatthew Dillon 			if (
14752ad1a3f7SMatthew Dillon 			    p->pindex < backing_offset_index ||
14762ad1a3f7SMatthew Dillon 			    new_pindex >= object->size
14772ad1a3f7SMatthew Dillon 			) {
14782ad1a3f7SMatthew Dillon 				p = next;
14792ad1a3f7SMatthew Dillon 				continue;
14802ad1a3f7SMatthew Dillon 			}
14812ad1a3f7SMatthew Dillon 
14822ad1a3f7SMatthew Dillon 			/*
14832ad1a3f7SMatthew Dillon 			 * See if the parent has the page or if the parent's
14842ad1a3f7SMatthew Dillon 			 * object pager has the page.  If the parent has the
14852ad1a3f7SMatthew Dillon 			 * page but the page is not valid, the parent's
14862ad1a3f7SMatthew Dillon 			 * object pager must have the page.
14872ad1a3f7SMatthew Dillon 			 *
14882ad1a3f7SMatthew Dillon 			 * If this fails, the parent does not completely shadow
14892ad1a3f7SMatthew Dillon 			 * the object and we might as well give up now.
14902ad1a3f7SMatthew Dillon 			 */
14912ad1a3f7SMatthew Dillon 
14922ad1a3f7SMatthew Dillon 			pp = vm_page_lookup(object, new_pindex);
14932ad1a3f7SMatthew Dillon 			if (
14942ad1a3f7SMatthew Dillon 			    (pp == NULL || pp->valid == 0) &&
14952ad1a3f7SMatthew Dillon 			    !vm_pager_has_page(object, new_pindex, NULL, NULL)
14962ad1a3f7SMatthew Dillon 			) {
14972ad1a3f7SMatthew Dillon 				r = 0;
14982ad1a3f7SMatthew Dillon 				break;
14992ad1a3f7SMatthew Dillon 			}
15002ad1a3f7SMatthew Dillon 		}
15012ad1a3f7SMatthew Dillon 
15022ad1a3f7SMatthew Dillon 		/*
15032ad1a3f7SMatthew Dillon 		 * Check for busy page
15042ad1a3f7SMatthew Dillon 		 */
15052ad1a3f7SMatthew Dillon 		if (op & (OBSC_COLLAPSE_WAIT | OBSC_COLLAPSE_NOWAIT)) {
15062ad1a3f7SMatthew Dillon 			vm_page_t pp;
15072ad1a3f7SMatthew Dillon 
15082ad1a3f7SMatthew Dillon 			if (op & OBSC_COLLAPSE_NOWAIT) {
1509c7aebda8SAttilio Rao 				if (!p->valid || vm_page_busied(p)) {
15102ad1a3f7SMatthew Dillon 					p = next;
15112ad1a3f7SMatthew Dillon 					continue;
15122ad1a3f7SMatthew Dillon 				}
15132ad1a3f7SMatthew Dillon 			} else if (op & OBSC_COLLAPSE_WAIT) {
1514c7aebda8SAttilio Rao 				if (vm_page_busied(p)) {
151589f6b863SAttilio Rao 					VM_OBJECT_WUNLOCK(object);
1516c7aebda8SAttilio Rao 					vm_page_lock(p);
1517c7aebda8SAttilio Rao 					VM_OBJECT_WUNLOCK(backing_object);
1518c7aebda8SAttilio Rao 					vm_page_busy_sleep(p, "vmocol");
151989f6b863SAttilio Rao 					VM_OBJECT_WLOCK(object);
152089f6b863SAttilio Rao 					VM_OBJECT_WLOCK(backing_object);
15212ad1a3f7SMatthew Dillon 					/*
15222ad1a3f7SMatthew Dillon 					 * If we slept, anything could have
15232ad1a3f7SMatthew Dillon 					 * happened.  Since the object is
15242ad1a3f7SMatthew Dillon 					 * marked dead, the backing offset
15252ad1a3f7SMatthew Dillon 					 * should not have changed so we
15262ad1a3f7SMatthew Dillon 					 * just restart our scan.
15272ad1a3f7SMatthew Dillon 					 */
15282ad1a3f7SMatthew Dillon 					p = TAILQ_FIRST(&backing_object->memq);
15292ad1a3f7SMatthew Dillon 					continue;
15302ad1a3f7SMatthew Dillon 				}
15312ad1a3f7SMatthew Dillon 			}
15322ad1a3f7SMatthew Dillon 
15332ad1a3f7SMatthew Dillon 			KASSERT(
15342ad1a3f7SMatthew Dillon 			    p->object == backing_object,
15358e99783bSAlan Cox 			    ("vm_object_backing_scan: object mismatch")
15362ad1a3f7SMatthew Dillon 			);
15372ad1a3f7SMatthew Dillon 
15382ad1a3f7SMatthew Dillon 			if (
15392ad1a3f7SMatthew Dillon 			    p->pindex < backing_offset_index ||
15402ad1a3f7SMatthew Dillon 			    new_pindex >= object->size
15412ad1a3f7SMatthew Dillon 			) {
1542e946b949SAttilio Rao 				if (backing_object->type == OBJT_SWAP)
1543e946b949SAttilio Rao 					swap_pager_freespace(backing_object,
1544e946b949SAttilio Rao 					    p->pindex, 1);
1545e946b949SAttilio Rao 
15462ad1a3f7SMatthew Dillon 				/*
15472ad1a3f7SMatthew Dillon 				 * Page is out of the parent object's range, we
15482ad1a3f7SMatthew Dillon 				 * can simply destroy it.
15492ad1a3f7SMatthew Dillon 				 */
15502965a453SKip Macy 				vm_page_lock(p);
1551f6d89838SAlan Cox 				KASSERT(!pmap_page_is_mapped(p),
1552f6d89838SAlan Cox 				    ("freeing mapped page %p", p));
1553f6d89838SAlan Cox 				if (p->wire_count == 0)
15542ad1a3f7SMatthew Dillon 					vm_page_free(p);
1555f6d89838SAlan Cox 				else
1556f6d89838SAlan Cox 					vm_page_remove(p);
15572965a453SKip Macy 				vm_page_unlock(p);
15582ad1a3f7SMatthew Dillon 				p = next;
15592ad1a3f7SMatthew Dillon 				continue;
15602ad1a3f7SMatthew Dillon 			}
15612ad1a3f7SMatthew Dillon 
15622ad1a3f7SMatthew Dillon 			pp = vm_page_lookup(object, new_pindex);
15632ad1a3f7SMatthew Dillon 			if (
1564e18cc7bfSMax Laier 			    (op & OBSC_COLLAPSE_NOWAIT) != 0 &&
1565e18cc7bfSMax Laier 			    (pp != NULL && pp->valid == 0)
1566e18cc7bfSMax Laier 			) {
1567e946b949SAttilio Rao 				if (backing_object->type == OBJT_SWAP)
1568e946b949SAttilio Rao 					swap_pager_freespace(backing_object,
1569e946b949SAttilio Rao 					    p->pindex, 1);
1570e946b949SAttilio Rao 
1571e18cc7bfSMax Laier 				/*
1572e18cc7bfSMax Laier 				 * The page in the parent is not (yet) valid.
1573e18cc7bfSMax Laier 				 * We don't know anything about the state of
1574e18cc7bfSMax Laier 				 * the original page.  It might be mapped,
1575e18cc7bfSMax Laier 				 * so we must avoid the next if here.
1576e18cc7bfSMax Laier 				 *
1577e18cc7bfSMax Laier 				 * This is due to a race in vm_fault() where
1578e18cc7bfSMax Laier 				 * we must unbusy the original (backing_obj)
1579e18cc7bfSMax Laier 				 * page before we can (re)lock the parent.
1580e18cc7bfSMax Laier 				 * Hence we can get here.
1581e18cc7bfSMax Laier 				 */
1582e18cc7bfSMax Laier 				p = next;
1583e18cc7bfSMax Laier 				continue;
1584e18cc7bfSMax Laier 			}
1585e18cc7bfSMax Laier 			if (
15862ad1a3f7SMatthew Dillon 			    pp != NULL ||
15872ad1a3f7SMatthew Dillon 			    vm_pager_has_page(object, new_pindex, NULL, NULL)
15882ad1a3f7SMatthew Dillon 			) {
1589e946b949SAttilio Rao 				if (backing_object->type == OBJT_SWAP)
1590e946b949SAttilio Rao 					swap_pager_freespace(backing_object,
1591e946b949SAttilio Rao 					    p->pindex, 1);
1592e946b949SAttilio Rao 
15932ad1a3f7SMatthew Dillon 				/*
15942ad1a3f7SMatthew Dillon 				 * page already exists in parent OR swap exists
15952ad1a3f7SMatthew Dillon 				 * for this location in the parent.  Destroy
15962ad1a3f7SMatthew Dillon 				 * the original page from the backing object.
15972ad1a3f7SMatthew Dillon 				 *
15982ad1a3f7SMatthew Dillon 				 * Leave the parent's page alone
15992ad1a3f7SMatthew Dillon 				 */
16002965a453SKip Macy 				vm_page_lock(p);
1601f6d89838SAlan Cox 				KASSERT(!pmap_page_is_mapped(p),
1602f6d89838SAlan Cox 				    ("freeing mapped page %p", p));
1603f6d89838SAlan Cox 				if (p->wire_count == 0)
16042ad1a3f7SMatthew Dillon 					vm_page_free(p);
1605f6d89838SAlan Cox 				else
1606f6d89838SAlan Cox 					vm_page_remove(p);
16072965a453SKip Macy 				vm_page_unlock(p);
16082ad1a3f7SMatthew Dillon 				p = next;
16092ad1a3f7SMatthew Dillon 				continue;
16102ad1a3f7SMatthew Dillon 			}
16112ad1a3f7SMatthew Dillon 
1612e946b949SAttilio Rao 			/*
1613e946b949SAttilio Rao 			 * Page does not exist in parent, rename the
1614e946b949SAttilio Rao 			 * page from the backing object to the main object.
1615e946b949SAttilio Rao 			 *
1616e946b949SAttilio Rao 			 * If the page was mapped to a process, it can remain
1617e946b949SAttilio Rao 			 * mapped through the rename.
1618e946b949SAttilio Rao 			 * vm_page_rename() will handle dirty and cache.
1619e946b949SAttilio Rao 			 */
1620e946b949SAttilio Rao 			if (vm_page_rename(p, object, new_pindex)) {
1621e946b949SAttilio Rao 				if (op & OBSC_COLLAPSE_NOWAIT) {
1622e946b949SAttilio Rao 					p = next;
1623e946b949SAttilio Rao 					continue;
1624e946b949SAttilio Rao 				}
1625e946b949SAttilio Rao 				VM_OBJECT_WLOCK(backing_object);
1626e946b949SAttilio Rao 				VM_OBJECT_WUNLOCK(object);
1627e946b949SAttilio Rao 				VM_WAIT;
1628e946b949SAttilio Rao 				VM_OBJECT_WLOCK(object);
1629e946b949SAttilio Rao 				VM_OBJECT_WLOCK(backing_object);
1630e946b949SAttilio Rao 				p = TAILQ_FIRST(&backing_object->memq);
1631e946b949SAttilio Rao 				continue;
1632e946b949SAttilio Rao 			}
163314a5dc17SAttilio Rao 
163414a5dc17SAttilio Rao 			/* Use the old pindex to free the right page. */
1635e946b949SAttilio Rao 			if (backing_object->type == OBJT_SWAP)
163614a5dc17SAttilio Rao 				swap_pager_freespace(backing_object,
163714a5dc17SAttilio Rao 				    new_pindex + backing_offset_index, 1);
1638e946b949SAttilio Rao 
1639f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
1640f8a47341SAlan Cox 			/*
1641f8a47341SAlan Cox 			 * Rename the reservation.
1642f8a47341SAlan Cox 			 */
1643f8a47341SAlan Cox 			vm_reserv_rename(p, object, backing_object,
1644f8a47341SAlan Cox 			    backing_offset_index);
1645f8a47341SAlan Cox #endif
16462ad1a3f7SMatthew Dillon 		}
16472ad1a3f7SMatthew Dillon 		p = next;
16482ad1a3f7SMatthew Dillon 	}
16492ad1a3f7SMatthew Dillon 	return (r);
16502ad1a3f7SMatthew Dillon }
16512ad1a3f7SMatthew Dillon 
1652df8bae1dSRodney W. Grimes 
1653df8bae1dSRodney W. Grimes /*
16542fe6e4d7SDavid Greenman  * this version of collapse allows the operation to occur earlier and
16552fe6e4d7SDavid Greenman  * when paging_in_progress is true for an object...  This is not a complete
16562fe6e4d7SDavid Greenman  * operation, but should plug 99.9% of the rest of the leaks.
16572fe6e4d7SDavid Greenman  */
16582fe6e4d7SDavid Greenman static void
16591b40f8c0SMatthew Dillon vm_object_qcollapse(vm_object_t object)
16602fe6e4d7SDavid Greenman {
16612ad1a3f7SMatthew Dillon 	vm_object_t backing_object = object->backing_object;
16622fe6e4d7SDavid Greenman 
166389f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
166489f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(backing_object);
16651b40f8c0SMatthew Dillon 
16662fe6e4d7SDavid Greenman 	if (backing_object->ref_count != 1)
16672fe6e4d7SDavid Greenman 		return;
16682fe6e4d7SDavid Greenman 
16692ad1a3f7SMatthew Dillon 	vm_object_backing_scan(object, OBSC_COLLAPSE_NOWAIT);
16702fe6e4d7SDavid Greenman }
16712fe6e4d7SDavid Greenman 
1672df8bae1dSRodney W. Grimes /*
1673df8bae1dSRodney W. Grimes  *	vm_object_collapse:
1674df8bae1dSRodney W. Grimes  *
1675df8bae1dSRodney W. Grimes  *	Collapse an object with the object backing it.
1676df8bae1dSRodney W. Grimes  *	Pages in the backing object are moved into the
1677df8bae1dSRodney W. Grimes  *	parent, and the backing object is deallocated.
1678df8bae1dSRodney W. Grimes  */
167926f9a767SRodney W. Grimes void
16801b40f8c0SMatthew Dillon vm_object_collapse(vm_object_t object)
1681df8bae1dSRodney W. Grimes {
168289f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
168323955314SAlfred Perlstein 
1684df8bae1dSRodney W. Grimes 	while (TRUE) {
16852ad1a3f7SMatthew Dillon 		vm_object_t backing_object;
16862ad1a3f7SMatthew Dillon 
1687df8bae1dSRodney W. Grimes 		/*
1688df8bae1dSRodney W. Grimes 		 * Verify that the conditions are right for collapse:
1689df8bae1dSRodney W. Grimes 		 *
16902ad1a3f7SMatthew Dillon 		 * The object exists and the backing object exists.
1691df8bae1dSRodney W. Grimes 		 */
169224a1cce3SDavid Greenman 		if ((backing_object = object->backing_object) == NULL)
16932ad1a3f7SMatthew Dillon 			break;
1694df8bae1dSRodney W. Grimes 
1695f919ebdeSDavid Greenman 		/*
1696f919ebdeSDavid Greenman 		 * we check the backing object first, because it is most likely
169724a1cce3SDavid Greenman 		 * not collapsable.
1698f919ebdeSDavid Greenman 		 */
169989f6b863SAttilio Rao 		VM_OBJECT_WLOCK(backing_object);
170024a1cce3SDavid Greenman 		if (backing_object->handle != NULL ||
170124a1cce3SDavid Greenman 		    (backing_object->type != OBJT_DEFAULT &&
170224a1cce3SDavid Greenman 		     backing_object->type != OBJT_SWAP) ||
1703f919ebdeSDavid Greenman 		    (backing_object->flags & OBJ_DEAD) ||
170424a1cce3SDavid Greenman 		    object->handle != NULL ||
170524a1cce3SDavid Greenman 		    (object->type != OBJT_DEFAULT &&
170624a1cce3SDavid Greenman 		     object->type != OBJT_SWAP) ||
170724a1cce3SDavid Greenman 		    (object->flags & OBJ_DEAD)) {
170889f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(backing_object);
17092ad1a3f7SMatthew Dillon 			break;
171024a1cce3SDavid Greenman 		}
17119b4814bbSDavid Greenman 
17122ad1a3f7SMatthew Dillon 		if (
17132ad1a3f7SMatthew Dillon 		    object->paging_in_progress != 0 ||
17142ad1a3f7SMatthew Dillon 		    backing_object->paging_in_progress != 0
17152ad1a3f7SMatthew Dillon 		) {
1716b9921222SDavid Greenman 			vm_object_qcollapse(object);
171789f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(backing_object);
17182ad1a3f7SMatthew Dillon 			break;
1719df8bae1dSRodney W. Grimes 		}
172026f9a767SRodney W. Grimes 		/*
17210d94caffSDavid Greenman 		 * We know that we can either collapse the backing object (if
17222ad1a3f7SMatthew Dillon 		 * the parent is the only reference to it) or (perhaps) have
17232ad1a3f7SMatthew Dillon 		 * the parent bypass the object if the parent happens to shadow
17242ad1a3f7SMatthew Dillon 		 * all the resident pages in the entire backing object.
17252ad1a3f7SMatthew Dillon 		 *
17262ad1a3f7SMatthew Dillon 		 * This is ignoring pager-backed pages such as swap pages.
17272ad1a3f7SMatthew Dillon 		 * vm_object_backing_scan fails the shadowing test in this
17282ad1a3f7SMatthew Dillon 		 * case.
1729df8bae1dSRodney W. Grimes 		 */
1730df8bae1dSRodney W. Grimes 		if (backing_object->ref_count == 1) {
1731df8bae1dSRodney W. Grimes 			/*
17322ad1a3f7SMatthew Dillon 			 * If there is exactly one reference to the backing
17332ad1a3f7SMatthew Dillon 			 * object, we can collapse it into the parent.
1734df8bae1dSRodney W. Grimes 			 */
17352ad1a3f7SMatthew Dillon 			vm_object_backing_scan(object, OBSC_COLLAPSE_WAIT);
1736df8bae1dSRodney W. Grimes 
1737f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
1738f8a47341SAlan Cox 			/*
1739f8a47341SAlan Cox 			 * Break any reservations from backing_object.
1740f8a47341SAlan Cox 			 */
1741f8a47341SAlan Cox 			if (__predict_false(!LIST_EMPTY(&backing_object->rvq)))
1742f8a47341SAlan Cox 				vm_reserv_break_all(backing_object);
1743f8a47341SAlan Cox #endif
1744f8a47341SAlan Cox 
1745df8bae1dSRodney W. Grimes 			/*
1746df8bae1dSRodney W. Grimes 			 * Move the pager from backing_object to object.
1747df8bae1dSRodney W. Grimes 			 */
17486be36525SAlan Cox 			if (backing_object->type == OBJT_SWAP) {
174924a1cce3SDavid Greenman 				/*
1750c7c8dd7eSAlan Cox 				 * swap_pager_copy() can sleep, in which case
1751c7c8dd7eSAlan Cox 				 * the backing_object's and object's locks are
1752c7c8dd7eSAlan Cox 				 * released and reacquired.
1753571a1e92SAttilio Rao 				 * Since swap_pager_copy() is being asked to
1754571a1e92SAttilio Rao 				 * destroy the source, it will change the
1755571a1e92SAttilio Rao 				 * backing_object's type to OBJT_DEFAULT.
175624a1cce3SDavid Greenman 				 */
17571c7c3c6aSMatthew Dillon 				swap_pager_copy(
17581c7c3c6aSMatthew Dillon 				    backing_object,
17591c7c3c6aSMatthew Dillon 				    object,
17601c7c3c6aSMatthew Dillon 				    OFF_TO_IDX(object->backing_object_offset), TRUE);
17617bfda801SAlan Cox 
17627bfda801SAlan Cox 				/*
17637bfda801SAlan Cox 				 * Free any cached pages from backing_object.
17647bfda801SAlan Cox 				 */
1765c9341161SAttilio Rao 				if (__predict_false(
1766c9341161SAttilio Rao 				    !vm_object_cache_is_empty(backing_object)))
1767c9444914SAlan Cox 					vm_page_cache_free(backing_object, 0, 0);
1768c0503609SDavid Greenman 			}
1769df8bae1dSRodney W. Grimes 			/*
1770df8bae1dSRodney W. Grimes 			 * Object now shadows whatever backing_object did.
17712ad1a3f7SMatthew Dillon 			 * Note that the reference to
17722ad1a3f7SMatthew Dillon 			 * backing_object->backing_object moves from within
17732ad1a3f7SMatthew Dillon 			 * backing_object to within object.
1774df8bae1dSRodney W. Grimes 			 */
17751c500307SAlan Cox 			LIST_REMOVE(object, shadow_list);
17764f7c7f6eSAlan Cox 			backing_object->shadow_count--;
1777de5f6a77SJohn Dyson 			if (backing_object->backing_object) {
177889f6b863SAttilio Rao 				VM_OBJECT_WLOCK(backing_object->backing_object);
17791c500307SAlan Cox 				LIST_REMOVE(backing_object, shadow_list);
178043186e53SAlan Cox 				LIST_INSERT_HEAD(
178143186e53SAlan Cox 				    &backing_object->backing_object->shadow_head,
178243186e53SAlan Cox 				    object, shadow_list);
178343186e53SAlan Cox 				/*
178443186e53SAlan Cox 				 * The shadow_count has not changed.
178543186e53SAlan Cox 				 */
178689f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(backing_object->backing_object);
1787de5f6a77SJohn Dyson 			}
178824a1cce3SDavid Greenman 			object->backing_object = backing_object->backing_object;
17892ad1a3f7SMatthew Dillon 			object->backing_object_offset +=
17902ad1a3f7SMatthew Dillon 			    backing_object->backing_object_offset;
17912ad1a3f7SMatthew Dillon 
1792df8bae1dSRodney W. Grimes 			/*
1793df8bae1dSRodney W. Grimes 			 * Discard backing_object.
1794df8bae1dSRodney W. Grimes 			 *
17950d94caffSDavid Greenman 			 * Since the backing object has no pages, no pager left,
17960d94caffSDavid Greenman 			 * and no object references within it, all that is
17970d94caffSDavid Greenman 			 * necessary is to dispose of it.
1798df8bae1dSRodney W. Grimes 			 */
17999b4d473aSKonstantin Belousov 			KASSERT(backing_object->ref_count == 1, (
18009b4d473aSKonstantin Belousov "backing_object %p was somehow re-referenced during collapse!",
18019b4d473aSKonstantin Belousov 			    backing_object));
180289f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(backing_object);
18039b4d473aSKonstantin Belousov 			vm_object_destroy(backing_object);
1804df8bae1dSRodney W. Grimes 
1805df8bae1dSRodney W. Grimes 			object_collapses++;
18060d94caffSDavid Greenman 		} else {
180795e5e988SJohn Dyson 			vm_object_t new_backing_object;
1808df8bae1dSRodney W. Grimes 
1809df8bae1dSRodney W. Grimes 			/*
18102ad1a3f7SMatthew Dillon 			 * If we do not entirely shadow the backing object,
18112ad1a3f7SMatthew Dillon 			 * there is nothing we can do so we give up.
1812df8bae1dSRodney W. Grimes 			 */
1813df59a0feSJeff Roberson 			if (object->resident_page_count != object->size &&
1814df59a0feSJeff Roberson 			    vm_object_backing_scan(object,
1815df59a0feSJeff Roberson 			    OBSC_TEST_ALL_SHADOWED) == 0) {
181689f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(backing_object);
18172ad1a3f7SMatthew Dillon 				break;
181824a1cce3SDavid Greenman 			}
1819df8bae1dSRodney W. Grimes 
1820df8bae1dSRodney W. Grimes 			/*
18210d94caffSDavid Greenman 			 * Make the parent shadow the next object in the
18220d94caffSDavid Greenman 			 * chain.  Deallocating backing_object will not remove
18230d94caffSDavid Greenman 			 * it, since its reference count is at least 2.
1824df8bae1dSRodney W. Grimes 			 */
18251c500307SAlan Cox 			LIST_REMOVE(object, shadow_list);
1826eaf13dd7SJohn Dyson 			backing_object->shadow_count--;
182795e5e988SJohn Dyson 
182895e5e988SJohn Dyson 			new_backing_object = backing_object->backing_object;
18298aef1712SMatthew Dillon 			if ((object->backing_object = new_backing_object) != NULL) {
183089f6b863SAttilio Rao 				VM_OBJECT_WLOCK(new_backing_object);
18311c500307SAlan Cox 				LIST_INSERT_HEAD(
18322ad1a3f7SMatthew Dillon 				    &new_backing_object->shadow_head,
18332ad1a3f7SMatthew Dillon 				    object,
18342ad1a3f7SMatthew Dillon 				    shadow_list
18352ad1a3f7SMatthew Dillon 				);
1836eaf13dd7SJohn Dyson 				new_backing_object->shadow_count++;
1837b921a12bSAlan Cox 				vm_object_reference_locked(new_backing_object);
183889f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(new_backing_object);
183995e5e988SJohn Dyson 				object->backing_object_offset +=
184095e5e988SJohn Dyson 					backing_object->backing_object_offset;
1841de5f6a77SJohn Dyson 			}
1842df8bae1dSRodney W. Grimes 
1843df8bae1dSRodney W. Grimes 			/*
18440d94caffSDavid Greenman 			 * Drop the reference count on backing_object. Since
184522ec553fSAlan Cox 			 * its ref_count was at least 2, it will not vanish.
1846df8bae1dSRodney W. Grimes 			 */
184722ec553fSAlan Cox 			backing_object->ref_count--;
184889f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(backing_object);
1849df8bae1dSRodney W. Grimes 			object_bypasses++;
1850df8bae1dSRodney W. Grimes 		}
1851df8bae1dSRodney W. Grimes 
1852df8bae1dSRodney W. Grimes 		/*
1853df8bae1dSRodney W. Grimes 		 * Try again with this object's new backing object.
1854df8bae1dSRodney W. Grimes 		 */
1855df8bae1dSRodney W. Grimes 	}
1856df8bae1dSRodney W. Grimes }
1857df8bae1dSRodney W. Grimes 
1858df8bae1dSRodney W. Grimes /*
1859bff99f0dSAlan Cox  *	vm_object_page_remove:
1860df8bae1dSRodney W. Grimes  *
186168855966SAlan Cox  *	For the given object, either frees or invalidates each of the
18626bbee8e2SAlan Cox  *	specified pages.  In general, a page is freed.  However, if a page is
18636bbee8e2SAlan Cox  *	wired for any reason other than the existence of a managed, wired
18646bbee8e2SAlan Cox  *	mapping, then it may be invalidated but not removed from the object.
18656bbee8e2SAlan Cox  *	Pages are specified by the given range ["start", "end") and the option
18666bbee8e2SAlan Cox  *	OBJPR_CLEANONLY.  As a special case, if "end" is zero, then the range
18676bbee8e2SAlan Cox  *	extends from "start" to the end of the object.  If the option
18686bbee8e2SAlan Cox  *	OBJPR_CLEANONLY is specified, then only the non-dirty pages within the
18696bbee8e2SAlan Cox  *	specified range are affected.  If the option OBJPR_NOTMAPPED is
18706bbee8e2SAlan Cox  *	specified, then the pages within the specified range must have no
18716bbee8e2SAlan Cox  *	mappings.  Otherwise, if this option is not specified, any mappings to
18726bbee8e2SAlan Cox  *	the specified pages are removed before the pages are freed or
18736bbee8e2SAlan Cox  *	invalidated.
187468855966SAlan Cox  *
18756bbee8e2SAlan Cox  *	In general, this operation should only be performed on objects that
18766bbee8e2SAlan Cox  *	contain managed pages.  There are, however, two exceptions.  First, it
18776bbee8e2SAlan Cox  *	is performed on the kernel and kmem objects by vm_map_entry_delete().
18786bbee8e2SAlan Cox  *	Second, it is used by msync(..., MS_INVALIDATE) to invalidate device-
18796bbee8e2SAlan Cox  *	backed pages.  In both of these cases, the option OBJPR_CLEANONLY must
18806bbee8e2SAlan Cox  *	not be specified and the option OBJPR_NOTMAPPED must be specified.
1881df8bae1dSRodney W. Grimes  *
1882df8bae1dSRodney W. Grimes  *	The object must be locked.
1883df8bae1dSRodney W. Grimes  */
188426f9a767SRodney W. Grimes void
1885ecde4b32SAlan Cox vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end,
18866bbee8e2SAlan Cox     int options)
1887df8bae1dSRodney W. Grimes {
1888d031cff1SMatthew Dillon 	vm_page_t p, next;
188959677d3cSAlan Cox 	int wirings;
1890df8bae1dSRodney W. Grimes 
189189f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
189228634820SAlan Cox 	KASSERT((object->flags & OBJ_UNMANAGED) == 0 ||
18936bbee8e2SAlan Cox 	    (options & (OBJPR_CLEANONLY | OBJPR_NOTMAPPED)) == OBJPR_NOTMAPPED,
18946bbee8e2SAlan Cox 	    ("vm_object_page_remove: illegal options for object %p", object));
1895ecde4b32SAlan Cox 	if (object->resident_page_count == 0)
189625732691SAlan Cox 		goto skipmemq;
1897d474eaaaSDoug Rabson 	vm_object_pip_add(object, 1);
189826f9a767SRodney W. Grimes again:
1899b382c10aSKonstantin Belousov 	p = vm_page_find_least(object, start);
19002965a453SKip Macy 
190175741c04SAlan Cox 	/*
19026bbee8e2SAlan Cox 	 * Here, the variable "p" is either (1) the page with the least pindex
19036bbee8e2SAlan Cox 	 * greater than or equal to the parameter "start" or (2) NULL.
190475741c04SAlan Cox 	 */
19056bbee8e2SAlan Cox 	for (; p != NULL && (p->pindex < end || end == 0); p = next) {
1906b18bfc3dSJohn Dyson 		next = TAILQ_NEXT(p, listq);
190775741c04SAlan Cox 
190859677d3cSAlan Cox 		/*
19096bbee8e2SAlan Cox 		 * If the page is wired for any reason besides the existence
19106bbee8e2SAlan Cox 		 * of managed, wired mappings, then it cannot be freed.  For
19116bbee8e2SAlan Cox 		 * example, fictitious pages, which represent device memory,
19126bbee8e2SAlan Cox 		 * are inherently wired and cannot be freed.  They can,
19136bbee8e2SAlan Cox 		 * however, be invalidated if the option OBJPR_CLEANONLY is
19146bbee8e2SAlan Cox 		 * not specified.
191559677d3cSAlan Cox 		 */
19162965a453SKip Macy 		vm_page_lock(p);
19173aaea6efSKonstantin Belousov 		if (vm_page_xbusied(p)) {
19183aaea6efSKonstantin Belousov 			VM_OBJECT_WUNLOCK(object);
19193aaea6efSKonstantin Belousov 			vm_page_busy_sleep(p, "vmopax");
19203aaea6efSKonstantin Belousov 			VM_OBJECT_WLOCK(object);
19213aaea6efSKonstantin Belousov 			goto again;
19223aaea6efSKonstantin Belousov 		}
192359677d3cSAlan Cox 		if ((wirings = p->wire_count) != 0 &&
192459677d3cSAlan Cox 		    (wirings = pmap_page_wired_mappings(p)) != p->wire_count) {
1925ebf5d94eSKonstantin Belousov 			if ((options & (OBJPR_NOTWIRED | OBJPR_NOTMAPPED)) ==
1926ebf5d94eSKonstantin Belousov 			    0) {
19274fec79beSAlan Cox 				pmap_remove_all(p);
19286bbee8e2SAlan Cox 				/* Account for removal of wired mappings. */
19296bbee8e2SAlan Cox 				if (wirings != 0)
193059677d3cSAlan Cox 					p->wire_count -= wirings;
19316bbee8e2SAlan Cox 			}
19326bbee8e2SAlan Cox 			if ((options & OBJPR_CLEANONLY) == 0) {
1933bd7e5f99SJohn Dyson 				p->valid = 0;
1934a28042d1SAlan Cox 				vm_page_undirty(p);
1935a28042d1SAlan Cox 			}
1936ebf5d94eSKonstantin Belousov 			goto next;
19370d94caffSDavid Greenman 		}
1938c7aebda8SAttilio Rao 		if (vm_page_busied(p)) {
1939c7aebda8SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
1940c7aebda8SAttilio Rao 			vm_page_busy_sleep(p, "vmopar");
1941c7aebda8SAttilio Rao 			VM_OBJECT_WLOCK(object);
194226f9a767SRodney W. Grimes 			goto again;
1943c7aebda8SAttilio Rao 		}
194468855966SAlan Cox 		KASSERT((p->flags & PG_FICTITIOUS) == 0,
194568855966SAlan Cox 		    ("vm_object_page_remove: page %p is fictitious", p));
19466bbee8e2SAlan Cox 		if ((options & OBJPR_CLEANONLY) != 0 && p->valid != 0) {
19476bbee8e2SAlan Cox 			if ((options & OBJPR_NOTMAPPED) == 0)
194878985e42SAlan Cox 				pmap_remove_write(p);
1949ebf5d94eSKonstantin Belousov 			if (p->dirty)
1950ebf5d94eSKonstantin Belousov 				goto next;
19512965a453SKip Macy 		}
19526bbee8e2SAlan Cox 		if ((options & OBJPR_NOTMAPPED) == 0) {
1953ebf5d94eSKonstantin Belousov 			if ((options & OBJPR_NOTWIRED) != 0 && wirings != 0)
1954ebf5d94eSKonstantin Belousov 				goto next;
19554fec79beSAlan Cox 			pmap_remove_all(p);
19566bbee8e2SAlan Cox 			/* Account for removal of wired mappings. */
19575f9c767bSKonstantin Belousov 			if (wirings != 0) {
19585f9c767bSKonstantin Belousov 				KASSERT(p->wire_count == wirings,
19595f9c767bSKonstantin Belousov 				    ("inconsistent wire count %d %d %p",
19605f9c767bSKonstantin Belousov 				    p->wire_count, wirings, p));
19615f9c767bSKonstantin Belousov 				p->wire_count = 0;
196244f1c916SBryan Drewery 				atomic_subtract_int(&vm_cnt.v_wire_count, 1);
19635f9c767bSKonstantin Belousov 			}
19646bbee8e2SAlan Cox 		}
1965df8bae1dSRodney W. Grimes 		vm_page_free(p);
1966ebf5d94eSKonstantin Belousov next:
19672965a453SKip Macy 		vm_page_unlock(p);
19682965a453SKip Macy 	}
1969f919ebdeSDavid Greenman 	vm_object_pip_wakeup(object);
197025732691SAlan Cox skipmemq:
1971c9341161SAttilio Rao 	if (__predict_false(!vm_object_cache_is_empty(object)))
1972c9444914SAlan Cox 		vm_page_cache_free(object, start, end);
1973c0503609SDavid Greenman }
1974df8bae1dSRodney W. Grimes 
1975df8bae1dSRodney W. Grimes /*
1976936c09acSJohn Baldwin  *	vm_object_page_cache:
1977936c09acSJohn Baldwin  *
1978936c09acSJohn Baldwin  *	For the given object, attempt to move the specified clean
1979936c09acSJohn Baldwin  *	pages to the cache queue.  If a page is wired for any reason,
1980936c09acSJohn Baldwin  *	then it will not be changed.  Pages are specified by the given
1981936c09acSJohn Baldwin  *	range ["start", "end").  As a special case, if "end" is zero,
1982936c09acSJohn Baldwin  *	then the range extends from "start" to the end of the object.
1983936c09acSJohn Baldwin  *	Any mappings to the specified pages are removed before the
1984936c09acSJohn Baldwin  *	pages are moved to the cache queue.
1985936c09acSJohn Baldwin  *
1986936c09acSJohn Baldwin  *	This operation should only be performed on objects that
198728634820SAlan Cox  *	contain non-fictitious, managed pages.
1988936c09acSJohn Baldwin  *
1989936c09acSJohn Baldwin  *	The object must be locked.
1990936c09acSJohn Baldwin  */
1991936c09acSJohn Baldwin void
1992936c09acSJohn Baldwin vm_object_page_cache(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
1993936c09acSJohn Baldwin {
1994936c09acSJohn Baldwin 	struct mtx *mtx, *new_mtx;
1995936c09acSJohn Baldwin 	vm_page_t p, next;
1996936c09acSJohn Baldwin 
199789f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
199828634820SAlan Cox 	KASSERT((object->flags & (OBJ_FICTITIOUS | OBJ_UNMANAGED)) == 0,
1999936c09acSJohn Baldwin 	    ("vm_object_page_cache: illegal object %p", object));
2000936c09acSJohn Baldwin 	if (object->resident_page_count == 0)
2001936c09acSJohn Baldwin 		return;
2002936c09acSJohn Baldwin 	p = vm_page_find_least(object, start);
2003936c09acSJohn Baldwin 
2004936c09acSJohn Baldwin 	/*
2005936c09acSJohn Baldwin 	 * Here, the variable "p" is either (1) the page with the least pindex
2006936c09acSJohn Baldwin 	 * greater than or equal to the parameter "start" or (2) NULL.
2007936c09acSJohn Baldwin 	 */
2008936c09acSJohn Baldwin 	mtx = NULL;
2009936c09acSJohn Baldwin 	for (; p != NULL && (p->pindex < end || end == 0); p = next) {
2010936c09acSJohn Baldwin 		next = TAILQ_NEXT(p, listq);
2011936c09acSJohn Baldwin 
2012936c09acSJohn Baldwin 		/*
2013936c09acSJohn Baldwin 		 * Avoid releasing and reacquiring the same page lock.
2014936c09acSJohn Baldwin 		 */
2015936c09acSJohn Baldwin 		new_mtx = vm_page_lockptr(p);
2016936c09acSJohn Baldwin 		if (mtx != new_mtx) {
2017936c09acSJohn Baldwin 			if (mtx != NULL)
2018936c09acSJohn Baldwin 				mtx_unlock(mtx);
2019936c09acSJohn Baldwin 			mtx = new_mtx;
2020936c09acSJohn Baldwin 			mtx_lock(mtx);
2021936c09acSJohn Baldwin 		}
2022936c09acSJohn Baldwin 		vm_page_try_to_cache(p);
2023936c09acSJohn Baldwin 	}
2024936c09acSJohn Baldwin 	if (mtx != NULL)
2025936c09acSJohn Baldwin 		mtx_unlock(mtx);
2026936c09acSJohn Baldwin }
2027936c09acSJohn Baldwin 
2028936c09acSJohn Baldwin /*
2029387aabc5SAlan Cox  *	Populate the specified range of the object with valid pages.  Returns
2030387aabc5SAlan Cox  *	TRUE if the range is successfully populated and FALSE otherwise.
2031387aabc5SAlan Cox  *
2032387aabc5SAlan Cox  *	Note: This function should be optimized to pass a larger array of
2033387aabc5SAlan Cox  *	pages to vm_pager_get_pages() before it is applied to a non-
2034387aabc5SAlan Cox  *	OBJT_DEVICE object.
2035387aabc5SAlan Cox  *
2036387aabc5SAlan Cox  *	The object must be locked.
2037387aabc5SAlan Cox  */
2038387aabc5SAlan Cox boolean_t
2039387aabc5SAlan Cox vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
2040387aabc5SAlan Cox {
2041387aabc5SAlan Cox 	vm_page_t m, ma[1];
2042387aabc5SAlan Cox 	vm_pindex_t pindex;
2043387aabc5SAlan Cox 	int rv;
2044387aabc5SAlan Cox 
204589f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
2046387aabc5SAlan Cox 	for (pindex = start; pindex < end; pindex++) {
20475944de8eSKonstantin Belousov 		m = vm_page_grab(object, pindex, VM_ALLOC_NORMAL);
2048387aabc5SAlan Cox 		if (m->valid != VM_PAGE_BITS_ALL) {
2049387aabc5SAlan Cox 			ma[0] = m;
2050387aabc5SAlan Cox 			rv = vm_pager_get_pages(object, ma, 1, 0);
2051387aabc5SAlan Cox 			m = vm_page_lookup(object, pindex);
2052387aabc5SAlan Cox 			if (m == NULL)
2053387aabc5SAlan Cox 				break;
2054387aabc5SAlan Cox 			if (rv != VM_PAGER_OK) {
20552965a453SKip Macy 				vm_page_lock(m);
2056387aabc5SAlan Cox 				vm_page_free(m);
20572965a453SKip Macy 				vm_page_unlock(m);
2058387aabc5SAlan Cox 				break;
2059387aabc5SAlan Cox 			}
2060387aabc5SAlan Cox 		}
2061387aabc5SAlan Cox 		/*
2062387aabc5SAlan Cox 		 * Keep "m" busy because a subsequent iteration may unlock
2063387aabc5SAlan Cox 		 * the object.
2064387aabc5SAlan Cox 		 */
2065387aabc5SAlan Cox 	}
2066387aabc5SAlan Cox 	if (pindex > start) {
2067387aabc5SAlan Cox 		m = vm_page_lookup(object, start);
2068387aabc5SAlan Cox 		while (m != NULL && m->pindex < pindex) {
2069c7aebda8SAttilio Rao 			vm_page_xunbusy(m);
2070387aabc5SAlan Cox 			m = TAILQ_NEXT(m, listq);
2071387aabc5SAlan Cox 		}
2072387aabc5SAlan Cox 	}
2073387aabc5SAlan Cox 	return (pindex == end);
2074387aabc5SAlan Cox }
2075387aabc5SAlan Cox 
2076387aabc5SAlan Cox /*
2077df8bae1dSRodney W. Grimes  *	Routine:	vm_object_coalesce
2078df8bae1dSRodney W. Grimes  *	Function:	Coalesces two objects backing up adjoining
2079df8bae1dSRodney W. Grimes  *			regions of memory into a single object.
2080df8bae1dSRodney W. Grimes  *
2081df8bae1dSRodney W. Grimes  *	returns TRUE if objects were combined.
2082df8bae1dSRodney W. Grimes  *
2083df8bae1dSRodney W. Grimes  *	NOTE:	Only works at the moment if the second object is NULL -
2084df8bae1dSRodney W. Grimes  *		if it's not, which object do we lock first?
2085df8bae1dSRodney W. Grimes  *
2086df8bae1dSRodney W. Grimes  *	Parameters:
2087df8bae1dSRodney W. Grimes  *		prev_object	First object to coalesce
2088df8bae1dSRodney W. Grimes  *		prev_offset	Offset into prev_object
2089df8bae1dSRodney W. Grimes  *		prev_size	Size of reference to prev_object
209057a21abaSAlan Cox  *		next_size	Size of reference to the second object
20913364c323SKonstantin Belousov  *		reserved	Indicator that extension region has
20923364c323SKonstantin Belousov  *				swap accounted for
2093df8bae1dSRodney W. Grimes  *
2094df8bae1dSRodney W. Grimes  *	Conditions:
2095df8bae1dSRodney W. Grimes  *	The object must *not* be locked.
2096df8bae1dSRodney W. Grimes  */
20970d94caffSDavid Greenman boolean_t
209857a21abaSAlan Cox vm_object_coalesce(vm_object_t prev_object, vm_ooffset_t prev_offset,
20993364c323SKonstantin Belousov     vm_size_t prev_size, vm_size_t next_size, boolean_t reserved)
2100df8bae1dSRodney W. Grimes {
2101ea41812fSAlan Cox 	vm_pindex_t next_pindex;
2102df8bae1dSRodney W. Grimes 
210300e1854aSAlan Cox 	if (prev_object == NULL)
2104df8bae1dSRodney W. Grimes 		return (TRUE);
210589f6b863SAttilio Rao 	VM_OBJECT_WLOCK(prev_object);
21069ded9474SKonstantin Belousov 	if ((prev_object->type != OBJT_DEFAULT &&
21079ded9474SKonstantin Belousov 	    prev_object->type != OBJT_SWAP) ||
2108f08f7dcaSKonstantin Belousov 	    (prev_object->flags & OBJ_TMPFS_NODE) != 0) {
210989f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(prev_object);
211030dcfc09SJohn Dyson 		return (FALSE);
211130dcfc09SJohn Dyson 	}
211230dcfc09SJohn Dyson 
2113df8bae1dSRodney W. Grimes 	/*
2114df8bae1dSRodney W. Grimes 	 * Try to collapse the object first
2115df8bae1dSRodney W. Grimes 	 */
2116df8bae1dSRodney W. Grimes 	vm_object_collapse(prev_object);
2117df8bae1dSRodney W. Grimes 
2118df8bae1dSRodney W. Grimes 	/*
21190d94caffSDavid Greenman 	 * Can't coalesce if: . more than one reference . paged out . shadows
21200d94caffSDavid Greenman 	 * another object . has a copy elsewhere (any of which mean that the
21210d94caffSDavid Greenman 	 * pages not mapped to prev_entry may be in use anyway)
2122df8bae1dSRodney W. Grimes 	 */
21238cc7e047SJohn Dyson 	if (prev_object->backing_object != NULL) {
212489f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(prev_object);
2125df8bae1dSRodney W. Grimes 		return (FALSE);
2126df8bae1dSRodney W. Grimes 	}
2127a316d390SJohn Dyson 
2128a316d390SJohn Dyson 	prev_size >>= PAGE_SHIFT;
2129a316d390SJohn Dyson 	next_size >>= PAGE_SHIFT;
213057a21abaSAlan Cox 	next_pindex = OFF_TO_IDX(prev_offset) + prev_size;
21318cc7e047SJohn Dyson 
21328cc7e047SJohn Dyson 	if ((prev_object->ref_count > 1) &&
2133ea41812fSAlan Cox 	    (prev_object->size != next_pindex)) {
213489f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(prev_object);
21358cc7e047SJohn Dyson 		return (FALSE);
21368cc7e047SJohn Dyson 	}
21378cc7e047SJohn Dyson 
2138df8bae1dSRodney W. Grimes 	/*
21393364c323SKonstantin Belousov 	 * Account for the charge.
21403364c323SKonstantin Belousov 	 */
2141ef694c1aSEdward Tomasz Napierala 	if (prev_object->cred != NULL) {
21423364c323SKonstantin Belousov 
21433364c323SKonstantin Belousov 		/*
21443364c323SKonstantin Belousov 		 * If prev_object was charged, then this mapping,
21453364c323SKonstantin Belousov 		 * althought not charged now, may become writable
2146ef694c1aSEdward Tomasz Napierala 		 * later. Non-NULL cred in the object would prevent
21473364c323SKonstantin Belousov 		 * swap reservation during enabling of the write
21483364c323SKonstantin Belousov 		 * access, so reserve swap now. Failed reservation
21493364c323SKonstantin Belousov 		 * cause allocation of the separate object for the map
21503364c323SKonstantin Belousov 		 * entry, and swap reservation for this entry is
21513364c323SKonstantin Belousov 		 * managed in appropriate time.
21523364c323SKonstantin Belousov 		 */
2153ef694c1aSEdward Tomasz Napierala 		if (!reserved && !swap_reserve_by_cred(ptoa(next_size),
2154ef694c1aSEdward Tomasz Napierala 		    prev_object->cred)) {
21553364c323SKonstantin Belousov 			return (FALSE);
21563364c323SKonstantin Belousov 		}
21573364c323SKonstantin Belousov 		prev_object->charge += ptoa(next_size);
21583364c323SKonstantin Belousov 	}
21593364c323SKonstantin Belousov 
21603364c323SKonstantin Belousov 	/*
21610d94caffSDavid Greenman 	 * Remove any pages that may still be in the object from a previous
21620d94caffSDavid Greenman 	 * deallocation.
2163df8bae1dSRodney W. Grimes 	 */
2164ea41812fSAlan Cox 	if (next_pindex < prev_object->size) {
21656bbee8e2SAlan Cox 		vm_object_page_remove(prev_object, next_pindex, next_pindex +
21666bbee8e2SAlan Cox 		    next_size, 0);
2167ea41812fSAlan Cox 		if (prev_object->type == OBJT_SWAP)
2168ea41812fSAlan Cox 			swap_pager_freespace(prev_object,
2169ea41812fSAlan Cox 					     next_pindex, next_size);
21703364c323SKonstantin Belousov #if 0
2171ef694c1aSEdward Tomasz Napierala 		if (prev_object->cred != NULL) {
21723364c323SKonstantin Belousov 			KASSERT(prev_object->charge >=
21733364c323SKonstantin Belousov 			    ptoa(prev_object->size - next_pindex),
21743364c323SKonstantin Belousov 			    ("object %p overcharged 1 %jx %jx", prev_object,
21753364c323SKonstantin Belousov 				(uintmax_t)next_pindex, (uintmax_t)next_size));
21763364c323SKonstantin Belousov 			prev_object->charge -= ptoa(prev_object->size -
21773364c323SKonstantin Belousov 			    next_pindex);
21783364c323SKonstantin Belousov 		}
21793364c323SKonstantin Belousov #endif
2180ea41812fSAlan Cox 	}
2181df8bae1dSRodney W. Grimes 
2182df8bae1dSRodney W. Grimes 	/*
2183df8bae1dSRodney W. Grimes 	 * Extend the object if necessary.
2184df8bae1dSRodney W. Grimes 	 */
2185ea41812fSAlan Cox 	if (next_pindex + next_size > prev_object->size)
2186ea41812fSAlan Cox 		prev_object->size = next_pindex + next_size;
2187df8bae1dSRodney W. Grimes 
218889f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(prev_object);
2189df8bae1dSRodney W. Grimes 	return (TRUE);
2190df8bae1dSRodney W. Grimes }
2191df8bae1dSRodney W. Grimes 
21927a5a6352SMatthew Dillon void
21937a5a6352SMatthew Dillon vm_object_set_writeable_dirty(vm_object_t object)
21947a5a6352SMatthew Dillon {
21957a5a6352SMatthew Dillon 
219689f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
21973280870dSKonstantin Belousov 	if (object->type != OBJT_VNODE)
21983280870dSKonstantin Belousov 		return;
21993280870dSKonstantin Belousov 	object->generation++;
22003280870dSKonstantin Belousov 	if ((object->flags & OBJ_MIGHTBEDIRTY) != 0)
2201ee39666aSJeff Roberson 		return;
2202af51d7bfSAlan Cox 	vm_object_set_flag(object, OBJ_MIGHTBEDIRTY);
22037a5a6352SMatthew Dillon }
22047a5a6352SMatthew Dillon 
2205*03462509SAlan Cox /*
2206*03462509SAlan Cox  *	vm_object_unwire:
2207*03462509SAlan Cox  *
2208*03462509SAlan Cox  *	For each page offset within the specified range of the given object,
2209*03462509SAlan Cox  *	find the highest-level page in the shadow chain and unwire it.  A page
2210*03462509SAlan Cox  *	must exist at every page offset, and the highest-level page must be
2211*03462509SAlan Cox  *	wired.
2212*03462509SAlan Cox  */
2213*03462509SAlan Cox void
2214*03462509SAlan Cox vm_object_unwire(vm_object_t object, vm_ooffset_t offset, vm_size_t length,
2215*03462509SAlan Cox     uint8_t queue)
2216*03462509SAlan Cox {
2217*03462509SAlan Cox 	vm_object_t tobject;
2218*03462509SAlan Cox 	vm_page_t m, tm;
2219*03462509SAlan Cox 	vm_pindex_t end_pindex, pindex, tpindex;
2220*03462509SAlan Cox 	int depth, locked_depth;
2221*03462509SAlan Cox 
2222*03462509SAlan Cox 	KASSERT((offset & PAGE_MASK) == 0,
2223*03462509SAlan Cox 	    ("vm_object_unwire: offset is not page aligned"));
2224*03462509SAlan Cox 	KASSERT((length & PAGE_MASK) == 0,
2225*03462509SAlan Cox 	    ("vm_object_unwire: length is not a multiple of PAGE_SIZE"));
2226*03462509SAlan Cox 	/* The wired count of a fictitious page never changes. */
2227*03462509SAlan Cox 	if ((object->flags & OBJ_FICTITIOUS) != 0)
2228*03462509SAlan Cox 		return;
2229*03462509SAlan Cox 	pindex = OFF_TO_IDX(offset);
2230*03462509SAlan Cox 	end_pindex = pindex + atop(length);
2231*03462509SAlan Cox 	locked_depth = 1;
2232*03462509SAlan Cox 	VM_OBJECT_RLOCK(object);
2233*03462509SAlan Cox 	m = vm_page_find_least(object, pindex);
2234*03462509SAlan Cox 	while (pindex < end_pindex) {
2235*03462509SAlan Cox 		if (m == NULL || pindex < m->pindex) {
2236*03462509SAlan Cox 			/*
2237*03462509SAlan Cox 			 * The first object in the shadow chain doesn't
2238*03462509SAlan Cox 			 * contain a page at the current index.  Therefore,
2239*03462509SAlan Cox 			 * the page must exist in a backing object.
2240*03462509SAlan Cox 			 */
2241*03462509SAlan Cox 			tobject = object;
2242*03462509SAlan Cox 			tpindex = pindex;
2243*03462509SAlan Cox 			depth = 0;
2244*03462509SAlan Cox 			do {
2245*03462509SAlan Cox 				tpindex +=
2246*03462509SAlan Cox 				    OFF_TO_IDX(tobject->backing_object_offset);
2247*03462509SAlan Cox 				tobject = tobject->backing_object;
2248*03462509SAlan Cox 				KASSERT(tobject != NULL,
2249*03462509SAlan Cox 				    ("vm_object_unwire: missing page"));
2250*03462509SAlan Cox 				if ((tobject->flags & OBJ_FICTITIOUS) != 0)
2251*03462509SAlan Cox 					goto next_page;
2252*03462509SAlan Cox 				depth++;
2253*03462509SAlan Cox 				if (depth == locked_depth) {
2254*03462509SAlan Cox 					locked_depth++;
2255*03462509SAlan Cox 					VM_OBJECT_RLOCK(tobject);
2256*03462509SAlan Cox 				}
2257*03462509SAlan Cox 			} while ((tm = vm_page_lookup(tobject, tpindex)) ==
2258*03462509SAlan Cox 			    NULL);
2259*03462509SAlan Cox 		} else {
2260*03462509SAlan Cox 			tm = m;
2261*03462509SAlan Cox 			m = TAILQ_NEXT(m, listq);
2262*03462509SAlan Cox 		}
2263*03462509SAlan Cox 		vm_page_lock(tm);
2264*03462509SAlan Cox 		vm_page_unwire(tm, queue);
2265*03462509SAlan Cox 		vm_page_unlock(tm);
2266*03462509SAlan Cox next_page:
2267*03462509SAlan Cox 		pindex++;
2268*03462509SAlan Cox 	}
2269*03462509SAlan Cox 	/* Release the accumulated object locks. */
2270*03462509SAlan Cox 	for (depth = 0; depth < locked_depth; depth++) {
2271*03462509SAlan Cox 		tobject = object->backing_object;
2272*03462509SAlan Cox 		VM_OBJECT_RUNLOCK(object);
2273*03462509SAlan Cox 		object = tobject;
2274*03462509SAlan Cox 	}
2275*03462509SAlan Cox }
2276*03462509SAlan Cox 
2277c7c34a24SBruce Evans #include "opt_ddb.h"
2278c3cb3e12SDavid Greenman #ifdef DDB
2279c7c34a24SBruce Evans #include <sys/kernel.h>
2280c7c34a24SBruce Evans 
2281ce9edcf5SPoul-Henning Kamp #include <sys/cons.h>
2282c7c34a24SBruce Evans 
2283c7c34a24SBruce Evans #include <ddb/ddb.h>
2284c7c34a24SBruce Evans 
2285cac597e4SBruce Evans static int
22861b40f8c0SMatthew Dillon _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry)
2287a1f6d91cSDavid Greenman {
2288a1f6d91cSDavid Greenman 	vm_map_t tmpm;
2289a1f6d91cSDavid Greenman 	vm_map_entry_t tmpe;
2290a1f6d91cSDavid Greenman 	vm_object_t obj;
2291a1f6d91cSDavid Greenman 	int entcount;
2292a1f6d91cSDavid Greenman 
2293a1f6d91cSDavid Greenman 	if (map == 0)
2294a1f6d91cSDavid Greenman 		return 0;
2295a1f6d91cSDavid Greenman 
2296a1f6d91cSDavid Greenman 	if (entry == 0) {
2297a1f6d91cSDavid Greenman 		tmpe = map->header.next;
2298a1f6d91cSDavid Greenman 		entcount = map->nentries;
2299a1f6d91cSDavid Greenman 		while (entcount-- && (tmpe != &map->header)) {
2300a1f6d91cSDavid Greenman 			if (_vm_object_in_map(map, object, tmpe)) {
2301a1f6d91cSDavid Greenman 				return 1;
2302a1f6d91cSDavid Greenman 			}
2303a1f6d91cSDavid Greenman 			tmpe = tmpe->next;
2304a1f6d91cSDavid Greenman 		}
23059fdfe602SMatthew Dillon 	} else if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
23069fdfe602SMatthew Dillon 		tmpm = entry->object.sub_map;
2307a1f6d91cSDavid Greenman 		tmpe = tmpm->header.next;
2308a1f6d91cSDavid Greenman 		entcount = tmpm->nentries;
2309a1f6d91cSDavid Greenman 		while (entcount-- && tmpe != &tmpm->header) {
2310a1f6d91cSDavid Greenman 			if (_vm_object_in_map(tmpm, object, tmpe)) {
2311a1f6d91cSDavid Greenman 				return 1;
2312a1f6d91cSDavid Greenman 			}
2313a1f6d91cSDavid Greenman 			tmpe = tmpe->next;
2314a1f6d91cSDavid Greenman 		}
23158aef1712SMatthew Dillon 	} else if ((obj = entry->object.vm_object) != NULL) {
231624a1cce3SDavid Greenman 		for (; obj; obj = obj->backing_object)
2317a1f6d91cSDavid Greenman 			if (obj == object) {
2318a1f6d91cSDavid Greenman 				return 1;
2319a1f6d91cSDavid Greenman 			}
2320a1f6d91cSDavid Greenman 	}
2321a1f6d91cSDavid Greenman 	return 0;
2322a1f6d91cSDavid Greenman }
2323a1f6d91cSDavid Greenman 
2324cac597e4SBruce Evans static int
23251b40f8c0SMatthew Dillon vm_object_in_map(vm_object_t object)
2326a1f6d91cSDavid Greenman {
2327a1f6d91cSDavid Greenman 	struct proc *p;
23281005a129SJohn Baldwin 
232960517fd1SJohn Baldwin 	/* sx_slock(&allproc_lock); */
2330f67af5c9SXin LI 	FOREACH_PROC_IN_SYSTEM(p) {
2331a1f6d91cSDavid Greenman 		if (!p->p_vmspace /* || (p->p_flag & (P_SYSTEM|P_WEXIT)) */)
2332a1f6d91cSDavid Greenman 			continue;
2333553629ebSJake Burkholder 		if (_vm_object_in_map(&p->p_vmspace->vm_map, object, 0)) {
233460517fd1SJohn Baldwin 			/* sx_sunlock(&allproc_lock); */
2335a1f6d91cSDavid Greenman 			return 1;
2336a1f6d91cSDavid Greenman 		}
2337553629ebSJake Burkholder 	}
233860517fd1SJohn Baldwin 	/* sx_sunlock(&allproc_lock); */
2339a1f6d91cSDavid Greenman 	if (_vm_object_in_map(kernel_map, object, 0))
2340a1f6d91cSDavid Greenman 		return 1;
2341a1f6d91cSDavid Greenman 	return 0;
2342a1f6d91cSDavid Greenman }
2343a1f6d91cSDavid Greenman 
2344c7c34a24SBruce Evans DB_SHOW_COMMAND(vmochk, vm_object_check)
2345f708ef1bSPoul-Henning Kamp {
2346a1f6d91cSDavid Greenman 	vm_object_t object;
2347a1f6d91cSDavid Greenman 
2348a1f6d91cSDavid Greenman 	/*
2349a1f6d91cSDavid Greenman 	 * make sure that internal objs are in a map somewhere
2350a1f6d91cSDavid Greenman 	 * and none have zero ref counts.
2351a1f6d91cSDavid Greenman 	 */
2352cc64b484SAlfred Perlstein 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
235324a1cce3SDavid Greenman 		if (object->handle == NULL &&
235424a1cce3SDavid Greenman 		    (object->type == OBJT_DEFAULT || object->type == OBJT_SWAP)) {
2355a1f6d91cSDavid Greenman 			if (object->ref_count == 0) {
23563efc015bSPeter Wemm 				db_printf("vmochk: internal obj has zero ref count: %ld\n",
23573efc015bSPeter Wemm 					(long)object->size);
2358a1f6d91cSDavid Greenman 			}
2359a1f6d91cSDavid Greenman 			if (!vm_object_in_map(object)) {
2360fc62ef1fSBruce Evans 				db_printf(
2361fc62ef1fSBruce Evans 			"vmochk: internal obj is not in a map: "
2362fc62ef1fSBruce Evans 			"ref: %d, size: %lu: 0x%lx, backing_object: %p\n",
2363fc62ef1fSBruce Evans 				    object->ref_count, (u_long)object->size,
2364fc62ef1fSBruce Evans 				    (u_long)object->size,
2365fc62ef1fSBruce Evans 				    (void *)object->backing_object);
2366a1f6d91cSDavid Greenman 			}
2367a1f6d91cSDavid Greenman 		}
2368a1f6d91cSDavid Greenman 	}
2369a1f6d91cSDavid Greenman }
2370a1f6d91cSDavid Greenman 
237126f9a767SRodney W. Grimes /*
2372df8bae1dSRodney W. Grimes  *	vm_object_print:	[ debug ]
2373df8bae1dSRodney W. Grimes  */
2374c7c34a24SBruce Evans DB_SHOW_COMMAND(object, vm_object_print_static)
2375df8bae1dSRodney W. Grimes {
2376c7c34a24SBruce Evans 	/* XXX convert args. */
2377c7c34a24SBruce Evans 	vm_object_t object = (vm_object_t)addr;
2378c7c34a24SBruce Evans 	boolean_t full = have_addr;
2379c7c34a24SBruce Evans 
2380d031cff1SMatthew Dillon 	vm_page_t p;
2381df8bae1dSRodney W. Grimes 
2382c7c34a24SBruce Evans 	/* XXX count is an (unused) arg.  Avoid shadowing it. */
2383c7c34a24SBruce Evans #define	count	was_count
2384c7c34a24SBruce Evans 
2385d031cff1SMatthew Dillon 	int count;
2386df8bae1dSRodney W. Grimes 
2387df8bae1dSRodney W. Grimes 	if (object == NULL)
2388df8bae1dSRodney W. Grimes 		return;
2389df8bae1dSRodney W. Grimes 
2390eb95adefSBruce Evans 	db_iprintf(
2391ef694c1aSEdward Tomasz Napierala 	    "Object %p: type=%d, size=0x%jx, res=%d, ref=%d, flags=0x%x ruid %d charge %jx\n",
2392e47cd172SMaxime Henrion 	    object, (int)object->type, (uintmax_t)object->size,
23933364c323SKonstantin Belousov 	    object->resident_page_count, object->ref_count, object->flags,
2394ef694c1aSEdward Tomasz Napierala 	    object->cred ? object->cred->cr_ruid : -1, (uintmax_t)object->charge);
2395e47cd172SMaxime Henrion 	db_iprintf(" sref=%d, backing_object(%d)=(%p)+0x%jx\n",
23961c7c3c6aSMatthew Dillon 	    object->shadow_count,
2397eb95adefSBruce Evans 	    object->backing_object ? object->backing_object->ref_count : 0,
2398e47cd172SMaxime Henrion 	    object->backing_object, (uintmax_t)object->backing_object_offset);
2399df8bae1dSRodney W. Grimes 
2400df8bae1dSRodney W. Grimes 	if (!full)
2401df8bae1dSRodney W. Grimes 		return;
2402df8bae1dSRodney W. Grimes 
2403c7c34a24SBruce Evans 	db_indent += 2;
2404df8bae1dSRodney W. Grimes 	count = 0;
2405fc2ffbe6SPoul-Henning Kamp 	TAILQ_FOREACH(p, &object->memq, listq) {
2406df8bae1dSRodney W. Grimes 		if (count == 0)
2407c7c34a24SBruce Evans 			db_iprintf("memory:=");
2408df8bae1dSRodney W. Grimes 		else if (count == 6) {
2409c7c34a24SBruce Evans 			db_printf("\n");
2410c7c34a24SBruce Evans 			db_iprintf(" ...");
2411df8bae1dSRodney W. Grimes 			count = 0;
2412df8bae1dSRodney W. Grimes 		} else
2413c7c34a24SBruce Evans 			db_printf(",");
2414df8bae1dSRodney W. Grimes 		count++;
2415df8bae1dSRodney W. Grimes 
2416e47cd172SMaxime Henrion 		db_printf("(off=0x%jx,page=0x%jx)",
2417e47cd172SMaxime Henrion 		    (uintmax_t)p->pindex, (uintmax_t)VM_PAGE_TO_PHYS(p));
2418df8bae1dSRodney W. Grimes 	}
2419df8bae1dSRodney W. Grimes 	if (count != 0)
2420c7c34a24SBruce Evans 		db_printf("\n");
2421c7c34a24SBruce Evans 	db_indent -= 2;
2422df8bae1dSRodney W. Grimes }
24235070c7f8SJohn Dyson 
2424c7c34a24SBruce Evans /* XXX. */
2425c7c34a24SBruce Evans #undef count
2426c7c34a24SBruce Evans 
2427c7c34a24SBruce Evans /* XXX need this non-static entry for calling from vm_map_print. */
24285070c7f8SJohn Dyson void
24291b40f8c0SMatthew Dillon vm_object_print(
24301b40f8c0SMatthew Dillon         /* db_expr_t */ long addr,
24311b40f8c0SMatthew Dillon 	boolean_t have_addr,
24321b40f8c0SMatthew Dillon 	/* db_expr_t */ long count,
24331b40f8c0SMatthew Dillon 	char *modif)
2434c7c34a24SBruce Evans {
2435c7c34a24SBruce Evans 	vm_object_print_static(addr, have_addr, count, modif);
2436c7c34a24SBruce Evans }
2437c7c34a24SBruce Evans 
2438c7c34a24SBruce Evans DB_SHOW_COMMAND(vmopag, vm_object_print_pages)
24395070c7f8SJohn Dyson {
24405070c7f8SJohn Dyson 	vm_object_t object;
2441bb2ac86fSKonstantin Belousov 	vm_pindex_t fidx;
2442bb2ac86fSKonstantin Belousov 	vm_paddr_t pa;
2443bb2ac86fSKonstantin Belousov 	vm_page_t m, prev_m;
2444bb2ac86fSKonstantin Belousov 	int rcount, nl, c;
2445cc64b484SAlfred Perlstein 
2446bb2ac86fSKonstantin Belousov 	nl = 0;
2447cc64b484SAlfred Perlstein 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
2448fc62ef1fSBruce Evans 		db_printf("new object: %p\n", (void *)object);
24495070c7f8SJohn Dyson 		if (nl > 18) {
24505070c7f8SJohn Dyson 			c = cngetc();
24515070c7f8SJohn Dyson 			if (c != ' ')
24525070c7f8SJohn Dyson 				return;
24535070c7f8SJohn Dyson 			nl = 0;
24545070c7f8SJohn Dyson 		}
24555070c7f8SJohn Dyson 		nl++;
24565070c7f8SJohn Dyson 		rcount = 0;
24575070c7f8SJohn Dyson 		fidx = 0;
2458bb2ac86fSKonstantin Belousov 		pa = -1;
2459bb2ac86fSKonstantin Belousov 		TAILQ_FOREACH(m, &object->memq, listq) {
2460bb2ac86fSKonstantin Belousov 			if (m->pindex > 128)
2461bb2ac86fSKonstantin Belousov 				break;
2462bb2ac86fSKonstantin Belousov 			if ((prev_m = TAILQ_PREV(m, pglist, listq)) != NULL &&
2463bb2ac86fSKonstantin Belousov 			    prev_m->pindex + 1 != m->pindex) {
24645070c7f8SJohn Dyson 				if (rcount) {
24653efc015bSPeter Wemm 					db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
24663efc015bSPeter Wemm 						(long)fidx, rcount, (long)pa);
24675070c7f8SJohn Dyson 					if (nl > 18) {
24685070c7f8SJohn Dyson 						c = cngetc();
24695070c7f8SJohn Dyson 						if (c != ' ')
24705070c7f8SJohn Dyson 							return;
24715070c7f8SJohn Dyson 						nl = 0;
24725070c7f8SJohn Dyson 					}
24735070c7f8SJohn Dyson 					nl++;
24745070c7f8SJohn Dyson 					rcount = 0;
24755070c7f8SJohn Dyson 				}
24765070c7f8SJohn Dyson 			}
24775070c7f8SJohn Dyson 			if (rcount &&
24785070c7f8SJohn Dyson 				(VM_PAGE_TO_PHYS(m) == pa + rcount * PAGE_SIZE)) {
24795070c7f8SJohn Dyson 				++rcount;
24805070c7f8SJohn Dyson 				continue;
24815070c7f8SJohn Dyson 			}
24825070c7f8SJohn Dyson 			if (rcount) {
24832446e4f0SAlan Cox 				db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
24843efc015bSPeter Wemm 					(long)fidx, rcount, (long)pa);
24855070c7f8SJohn Dyson 				if (nl > 18) {
24865070c7f8SJohn Dyson 					c = cngetc();
24875070c7f8SJohn Dyson 					if (c != ' ')
24885070c7f8SJohn Dyson 						return;
24895070c7f8SJohn Dyson 					nl = 0;
24905070c7f8SJohn Dyson 				}
24915070c7f8SJohn Dyson 				nl++;
24925070c7f8SJohn Dyson 			}
2493bb2ac86fSKonstantin Belousov 			fidx = m->pindex;
24945070c7f8SJohn Dyson 			pa = VM_PAGE_TO_PHYS(m);
24955070c7f8SJohn Dyson 			rcount = 1;
24965070c7f8SJohn Dyson 		}
24975070c7f8SJohn Dyson 		if (rcount) {
24983efc015bSPeter Wemm 			db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
24993efc015bSPeter Wemm 				(long)fidx, rcount, (long)pa);
25005070c7f8SJohn Dyson 			if (nl > 18) {
25015070c7f8SJohn Dyson 				c = cngetc();
25025070c7f8SJohn Dyson 				if (c != ' ')
25035070c7f8SJohn Dyson 					return;
25045070c7f8SJohn Dyson 				nl = 0;
25055070c7f8SJohn Dyson 			}
25065070c7f8SJohn Dyson 			nl++;
25075070c7f8SJohn Dyson 		}
25085070c7f8SJohn Dyson 	}
25095070c7f8SJohn Dyson }
2510c3cb3e12SDavid Greenman #endif /* DDB */
2511