xref: /freebsd/sys/vm/vm_page.c (revision 410556f1f10fd35b350102725fd8504c3cb0afc8)
1 /*-
2  * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU)
3  *
4  * Copyright (c) 1991 Regents of the University of California.
5  * All rights reserved.
6  * Copyright (c) 1998 Matthew Dillon.  All Rights Reserved.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * The Mach Operating System project at Carnegie-Mellon University.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *	from: @(#)vm_page.c	7.4 (Berkeley) 5/7/91
36  */
37 
38 /*-
39  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
40  * All rights reserved.
41  *
42  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
43  *
44  * Permission to use, copy, modify and distribute this software and
45  * its documentation is hereby granted, provided that both the copyright
46  * notice and this permission notice appear in all copies of the
47  * software, derivative works or modified versions, and any portions
48  * thereof, and that both notices appear in supporting documentation.
49  *
50  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
51  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
52  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
53  *
54  * Carnegie Mellon requests users of this software to return to
55  *
56  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
57  *  School of Computer Science
58  *  Carnegie Mellon University
59  *  Pittsburgh PA 15213-3890
60  *
61  * any improvements or extensions that they make and grant Carnegie the
62  * rights to redistribute these changes.
63  */
64 
65 /*
66  *	Resident memory management module.
67  */
68 
69 #include <sys/cdefs.h>
70 __FBSDID("$FreeBSD$");
71 
72 #include "opt_vm.h"
73 
74 #include <sys/param.h>
75 #include <sys/systm.h>
76 #include <sys/counter.h>
77 #include <sys/domainset.h>
78 #include <sys/kernel.h>
79 #include <sys/limits.h>
80 #include <sys/linker.h>
81 #include <sys/lock.h>
82 #include <sys/malloc.h>
83 #include <sys/mman.h>
84 #include <sys/msgbuf.h>
85 #include <sys/mutex.h>
86 #include <sys/proc.h>
87 #include <sys/rwlock.h>
88 #include <sys/sleepqueue.h>
89 #include <sys/sbuf.h>
90 #include <sys/sched.h>
91 #include <sys/smp.h>
92 #include <sys/sysctl.h>
93 #include <sys/vmmeter.h>
94 #include <sys/vnode.h>
95 
96 #include <vm/vm.h>
97 #include <vm/pmap.h>
98 #include <vm/vm_param.h>
99 #include <vm/vm_domainset.h>
100 #include <vm/vm_kern.h>
101 #include <vm/vm_map.h>
102 #include <vm/vm_object.h>
103 #include <vm/vm_page.h>
104 #include <vm/vm_pageout.h>
105 #include <vm/vm_phys.h>
106 #include <vm/vm_pagequeue.h>
107 #include <vm/vm_pager.h>
108 #include <vm/vm_radix.h>
109 #include <vm/vm_reserv.h>
110 #include <vm/vm_extern.h>
111 #include <vm/vm_dumpset.h>
112 #include <vm/uma.h>
113 #include <vm/uma_int.h>
114 
115 #include <machine/md_var.h>
116 
117 struct vm_domain vm_dom[MAXMEMDOM];
118 
119 DPCPU_DEFINE_STATIC(struct vm_batchqueue, pqbatch[MAXMEMDOM][PQ_COUNT]);
120 
121 struct mtx_padalign __exclusive_cache_line pa_lock[PA_LOCK_COUNT];
122 
123 struct mtx_padalign __exclusive_cache_line vm_domainset_lock;
124 /* The following fields are protected by the domainset lock. */
125 domainset_t __exclusive_cache_line vm_min_domains;
126 domainset_t __exclusive_cache_line vm_severe_domains;
127 static int vm_min_waiters;
128 static int vm_severe_waiters;
129 static int vm_pageproc_waiters;
130 
131 static SYSCTL_NODE(_vm_stats, OID_AUTO, page, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
132     "VM page statistics");
133 
134 static COUNTER_U64_DEFINE_EARLY(pqstate_commit_retries);
135 SYSCTL_COUNTER_U64(_vm_stats_page, OID_AUTO, pqstate_commit_retries,
136     CTLFLAG_RD, &pqstate_commit_retries,
137     "Number of failed per-page atomic queue state updates");
138 
139 static COUNTER_U64_DEFINE_EARLY(queue_ops);
140 SYSCTL_COUNTER_U64(_vm_stats_page, OID_AUTO, queue_ops,
141     CTLFLAG_RD, &queue_ops,
142     "Number of batched queue operations");
143 
144 static COUNTER_U64_DEFINE_EARLY(queue_nops);
145 SYSCTL_COUNTER_U64(_vm_stats_page, OID_AUTO, queue_nops,
146     CTLFLAG_RD, &queue_nops,
147     "Number of batched queue operations with no effects");
148 
149 /*
150  * bogus page -- for I/O to/from partially complete buffers,
151  * or for paging into sparsely invalid regions.
152  */
153 vm_page_t bogus_page;
154 
155 vm_page_t vm_page_array;
156 long vm_page_array_size;
157 long first_page;
158 
159 struct bitset *vm_page_dump;
160 long vm_page_dump_pages;
161 
162 static TAILQ_HEAD(, vm_page) blacklist_head;
163 static int sysctl_vm_page_blacklist(SYSCTL_HANDLER_ARGS);
164 SYSCTL_PROC(_vm, OID_AUTO, page_blacklist, CTLTYPE_STRING | CTLFLAG_RD |
165     CTLFLAG_MPSAFE, NULL, 0, sysctl_vm_page_blacklist, "A", "Blacklist pages");
166 
167 static uma_zone_t fakepg_zone;
168 
169 static void vm_page_alloc_check(vm_page_t m);
170 static bool _vm_page_busy_sleep(vm_object_t obj, vm_page_t m,
171     vm_pindex_t pindex, const char *wmesg, int allocflags, bool locked);
172 static void vm_page_clear_dirty_mask(vm_page_t m, vm_page_bits_t pagebits);
173 static void vm_page_enqueue(vm_page_t m, uint8_t queue);
174 static bool vm_page_free_prep(vm_page_t m);
175 static void vm_page_free_toq(vm_page_t m);
176 static void vm_page_init(void *dummy);
177 static int vm_page_insert_after(vm_page_t m, vm_object_t object,
178     vm_pindex_t pindex, vm_page_t mpred);
179 static void vm_page_insert_radixdone(vm_page_t m, vm_object_t object,
180     vm_page_t mpred);
181 static void vm_page_mvqueue(vm_page_t m, const uint8_t queue,
182     const uint16_t nflag);
183 static int vm_page_reclaim_run(int req_class, int domain, u_long npages,
184     vm_page_t m_run, vm_paddr_t high);
185 static void vm_page_release_toq(vm_page_t m, uint8_t nqueue, bool noreuse);
186 static int vm_domain_alloc_fail(struct vm_domain *vmd, vm_object_t object,
187     int req);
188 static int vm_page_zone_import(void *arg, void **store, int cnt, int domain,
189     int flags);
190 static void vm_page_zone_release(void *arg, void **store, int cnt);
191 
192 SYSINIT(vm_page, SI_SUB_VM, SI_ORDER_SECOND, vm_page_init, NULL);
193 
194 static void
195 vm_page_init(void *dummy)
196 {
197 
198 	fakepg_zone = uma_zcreate("fakepg", sizeof(struct vm_page), NULL, NULL,
199 	    NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
200 	bogus_page = vm_page_alloc(NULL, 0, VM_ALLOC_NOOBJ |
201 	    VM_ALLOC_NORMAL | VM_ALLOC_WIRED);
202 }
203 
204 /*
205  * The cache page zone is initialized later since we need to be able to allocate
206  * pages before UMA is fully initialized.
207  */
208 static void
209 vm_page_init_cache_zones(void *dummy __unused)
210 {
211 	struct vm_domain *vmd;
212 	struct vm_pgcache *pgcache;
213 	int cache, domain, maxcache, pool;
214 
215 	maxcache = 0;
216 	TUNABLE_INT_FETCH("vm.pgcache_zone_max_pcpu", &maxcache);
217 	maxcache *= mp_ncpus;
218 	for (domain = 0; domain < vm_ndomains; domain++) {
219 		vmd = VM_DOMAIN(domain);
220 		for (pool = 0; pool < VM_NFREEPOOL; pool++) {
221 			pgcache = &vmd->vmd_pgcache[pool];
222 			pgcache->domain = domain;
223 			pgcache->pool = pool;
224 			pgcache->zone = uma_zcache_create("vm pgcache",
225 			    PAGE_SIZE, NULL, NULL, NULL, NULL,
226 			    vm_page_zone_import, vm_page_zone_release, pgcache,
227 			    UMA_ZONE_VM);
228 
229 			/*
230 			 * Limit each pool's zone to 0.1% of the pages in the
231 			 * domain.
232 			 */
233 			cache = maxcache != 0 ? maxcache :
234 			    vmd->vmd_page_count / 1000;
235 			uma_zone_set_maxcache(pgcache->zone, cache);
236 		}
237 	}
238 }
239 SYSINIT(vm_page2, SI_SUB_VM_CONF, SI_ORDER_ANY, vm_page_init_cache_zones, NULL);
240 
241 /* Make sure that u_long is at least 64 bits when PAGE_SIZE is 32K. */
242 #if PAGE_SIZE == 32768
243 #ifdef CTASSERT
244 CTASSERT(sizeof(u_long) >= 8);
245 #endif
246 #endif
247 
248 /*
249  *	vm_set_page_size:
250  *
251  *	Sets the page size, perhaps based upon the memory
252  *	size.  Must be called before any use of page-size
253  *	dependent functions.
254  */
255 void
256 vm_set_page_size(void)
257 {
258 	if (vm_cnt.v_page_size == 0)
259 		vm_cnt.v_page_size = PAGE_SIZE;
260 	if (((vm_cnt.v_page_size - 1) & vm_cnt.v_page_size) != 0)
261 		panic("vm_set_page_size: page size not a power of two");
262 }
263 
264 /*
265  *	vm_page_blacklist_next:
266  *
267  *	Find the next entry in the provided string of blacklist
268  *	addresses.  Entries are separated by space, comma, or newline.
269  *	If an invalid integer is encountered then the rest of the
270  *	string is skipped.  Updates the list pointer to the next
271  *	character, or NULL if the string is exhausted or invalid.
272  */
273 static vm_paddr_t
274 vm_page_blacklist_next(char **list, char *end)
275 {
276 	vm_paddr_t bad;
277 	char *cp, *pos;
278 
279 	if (list == NULL || *list == NULL)
280 		return (0);
281 	if (**list =='\0') {
282 		*list = NULL;
283 		return (0);
284 	}
285 
286 	/*
287 	 * If there's no end pointer then the buffer is coming from
288 	 * the kenv and we know it's null-terminated.
289 	 */
290 	if (end == NULL)
291 		end = *list + strlen(*list);
292 
293 	/* Ensure that strtoq() won't walk off the end */
294 	if (*end != '\0') {
295 		if (*end == '\n' || *end == ' ' || *end  == ',')
296 			*end = '\0';
297 		else {
298 			printf("Blacklist not terminated, skipping\n");
299 			*list = NULL;
300 			return (0);
301 		}
302 	}
303 
304 	for (pos = *list; *pos != '\0'; pos = cp) {
305 		bad = strtoq(pos, &cp, 0);
306 		if (*cp == '\0' || *cp == ' ' || *cp == ',' || *cp == '\n') {
307 			if (bad == 0) {
308 				if (++cp < end)
309 					continue;
310 				else
311 					break;
312 			}
313 		} else
314 			break;
315 		if (*cp == '\0' || ++cp >= end)
316 			*list = NULL;
317 		else
318 			*list = cp;
319 		return (trunc_page(bad));
320 	}
321 	printf("Garbage in RAM blacklist, skipping\n");
322 	*list = NULL;
323 	return (0);
324 }
325 
326 bool
327 vm_page_blacklist_add(vm_paddr_t pa, bool verbose)
328 {
329 	struct vm_domain *vmd;
330 	vm_page_t m;
331 	int ret;
332 
333 	m = vm_phys_paddr_to_vm_page(pa);
334 	if (m == NULL)
335 		return (true); /* page does not exist, no failure */
336 
337 	vmd = vm_pagequeue_domain(m);
338 	vm_domain_free_lock(vmd);
339 	ret = vm_phys_unfree_page(m);
340 	vm_domain_free_unlock(vmd);
341 	if (ret != 0) {
342 		vm_domain_freecnt_inc(vmd, -1);
343 		TAILQ_INSERT_TAIL(&blacklist_head, m, listq);
344 		if (verbose)
345 			printf("Skipping page with pa 0x%jx\n", (uintmax_t)pa);
346 	}
347 	return (ret);
348 }
349 
350 /*
351  *	vm_page_blacklist_check:
352  *
353  *	Iterate through the provided string of blacklist addresses, pulling
354  *	each entry out of the physical allocator free list and putting it
355  *	onto a list for reporting via the vm.page_blacklist sysctl.
356  */
357 static void
358 vm_page_blacklist_check(char *list, char *end)
359 {
360 	vm_paddr_t pa;
361 	char *next;
362 
363 	next = list;
364 	while (next != NULL) {
365 		if ((pa = vm_page_blacklist_next(&next, end)) == 0)
366 			continue;
367 		vm_page_blacklist_add(pa, bootverbose);
368 	}
369 }
370 
371 /*
372  *	vm_page_blacklist_load:
373  *
374  *	Search for a special module named "ram_blacklist".  It'll be a
375  *	plain text file provided by the user via the loader directive
376  *	of the same name.
377  */
378 static void
379 vm_page_blacklist_load(char **list, char **end)
380 {
381 	void *mod;
382 	u_char *ptr;
383 	u_int len;
384 
385 	mod = NULL;
386 	ptr = NULL;
387 
388 	mod = preload_search_by_type("ram_blacklist");
389 	if (mod != NULL) {
390 		ptr = preload_fetch_addr(mod);
391 		len = preload_fetch_size(mod);
392         }
393 	*list = ptr;
394 	if (ptr != NULL)
395 		*end = ptr + len;
396 	else
397 		*end = NULL;
398 	return;
399 }
400 
401 static int
402 sysctl_vm_page_blacklist(SYSCTL_HANDLER_ARGS)
403 {
404 	vm_page_t m;
405 	struct sbuf sbuf;
406 	int error, first;
407 
408 	first = 1;
409 	error = sysctl_wire_old_buffer(req, 0);
410 	if (error != 0)
411 		return (error);
412 	sbuf_new_for_sysctl(&sbuf, NULL, 128, req);
413 	TAILQ_FOREACH(m, &blacklist_head, listq) {
414 		sbuf_printf(&sbuf, "%s%#jx", first ? "" : ",",
415 		    (uintmax_t)m->phys_addr);
416 		first = 0;
417 	}
418 	error = sbuf_finish(&sbuf);
419 	sbuf_delete(&sbuf);
420 	return (error);
421 }
422 
423 /*
424  * Initialize a dummy page for use in scans of the specified paging queue.
425  * In principle, this function only needs to set the flag PG_MARKER.
426  * Nonetheless, it write busies the page as a safety precaution.
427  */
428 void
429 vm_page_init_marker(vm_page_t marker, int queue, uint16_t aflags)
430 {
431 
432 	bzero(marker, sizeof(*marker));
433 	marker->flags = PG_MARKER;
434 	marker->a.flags = aflags;
435 	marker->busy_lock = VPB_CURTHREAD_EXCLUSIVE;
436 	marker->a.queue = queue;
437 }
438 
439 static void
440 vm_page_domain_init(int domain)
441 {
442 	struct vm_domain *vmd;
443 	struct vm_pagequeue *pq;
444 	int i;
445 
446 	vmd = VM_DOMAIN(domain);
447 	bzero(vmd, sizeof(*vmd));
448 	*__DECONST(const char **, &vmd->vmd_pagequeues[PQ_INACTIVE].pq_name) =
449 	    "vm inactive pagequeue";
450 	*__DECONST(const char **, &vmd->vmd_pagequeues[PQ_ACTIVE].pq_name) =
451 	    "vm active pagequeue";
452 	*__DECONST(const char **, &vmd->vmd_pagequeues[PQ_LAUNDRY].pq_name) =
453 	    "vm laundry pagequeue";
454 	*__DECONST(const char **,
455 	    &vmd->vmd_pagequeues[PQ_UNSWAPPABLE].pq_name) =
456 	    "vm unswappable pagequeue";
457 	vmd->vmd_domain = domain;
458 	vmd->vmd_page_count = 0;
459 	vmd->vmd_free_count = 0;
460 	vmd->vmd_segs = 0;
461 	vmd->vmd_oom = FALSE;
462 	for (i = 0; i < PQ_COUNT; i++) {
463 		pq = &vmd->vmd_pagequeues[i];
464 		TAILQ_INIT(&pq->pq_pl);
465 		mtx_init(&pq->pq_mutex, pq->pq_name, "vm pagequeue",
466 		    MTX_DEF | MTX_DUPOK);
467 		pq->pq_pdpages = 0;
468 		vm_page_init_marker(&vmd->vmd_markers[i], i, 0);
469 	}
470 	mtx_init(&vmd->vmd_free_mtx, "vm page free queue", NULL, MTX_DEF);
471 	mtx_init(&vmd->vmd_pageout_mtx, "vm pageout lock", NULL, MTX_DEF);
472 	snprintf(vmd->vmd_name, sizeof(vmd->vmd_name), "%d", domain);
473 
474 	/*
475 	 * inacthead is used to provide FIFO ordering for LRU-bypassing
476 	 * insertions.
477 	 */
478 	vm_page_init_marker(&vmd->vmd_inacthead, PQ_INACTIVE, PGA_ENQUEUED);
479 	TAILQ_INSERT_HEAD(&vmd->vmd_pagequeues[PQ_INACTIVE].pq_pl,
480 	    &vmd->vmd_inacthead, plinks.q);
481 
482 	/*
483 	 * The clock pages are used to implement active queue scanning without
484 	 * requeues.  Scans start at clock[0], which is advanced after the scan
485 	 * ends.  When the two clock hands meet, they are reset and scanning
486 	 * resumes from the head of the queue.
487 	 */
488 	vm_page_init_marker(&vmd->vmd_clock[0], PQ_ACTIVE, PGA_ENQUEUED);
489 	vm_page_init_marker(&vmd->vmd_clock[1], PQ_ACTIVE, PGA_ENQUEUED);
490 	TAILQ_INSERT_HEAD(&vmd->vmd_pagequeues[PQ_ACTIVE].pq_pl,
491 	    &vmd->vmd_clock[0], plinks.q);
492 	TAILQ_INSERT_TAIL(&vmd->vmd_pagequeues[PQ_ACTIVE].pq_pl,
493 	    &vmd->vmd_clock[1], plinks.q);
494 }
495 
496 /*
497  * Initialize a physical page in preparation for adding it to the free
498  * lists.
499  */
500 static void
501 vm_page_init_page(vm_page_t m, vm_paddr_t pa, int segind)
502 {
503 
504 	m->object = NULL;
505 	m->ref_count = 0;
506 	m->busy_lock = VPB_FREED;
507 	m->flags = m->a.flags = 0;
508 	m->phys_addr = pa;
509 	m->a.queue = PQ_NONE;
510 	m->psind = 0;
511 	m->segind = segind;
512 	m->order = VM_NFREEORDER;
513 	m->pool = VM_FREEPOOL_DEFAULT;
514 	m->valid = m->dirty = 0;
515 	pmap_page_init(m);
516 }
517 
518 #ifndef PMAP_HAS_PAGE_ARRAY
519 static vm_paddr_t
520 vm_page_array_alloc(vm_offset_t *vaddr, vm_paddr_t end, vm_paddr_t page_range)
521 {
522 	vm_paddr_t new_end;
523 
524 	/*
525 	 * Reserve an unmapped guard page to trap access to vm_page_array[-1].
526 	 * However, because this page is allocated from KVM, out-of-bounds
527 	 * accesses using the direct map will not be trapped.
528 	 */
529 	*vaddr += PAGE_SIZE;
530 
531 	/*
532 	 * Allocate physical memory for the page structures, and map it.
533 	 */
534 	new_end = trunc_page(end - page_range * sizeof(struct vm_page));
535 	vm_page_array = (vm_page_t)pmap_map(vaddr, new_end, end,
536 	    VM_PROT_READ | VM_PROT_WRITE);
537 	vm_page_array_size = page_range;
538 
539 	return (new_end);
540 }
541 #endif
542 
543 /*
544  *	vm_page_startup:
545  *
546  *	Initializes the resident memory module.  Allocates physical memory for
547  *	bootstrapping UMA and some data structures that are used to manage
548  *	physical pages.  Initializes these structures, and populates the free
549  *	page queues.
550  */
551 vm_offset_t
552 vm_page_startup(vm_offset_t vaddr)
553 {
554 	struct vm_phys_seg *seg;
555 	vm_page_t m;
556 	char *list, *listend;
557 	vm_paddr_t end, high_avail, low_avail, new_end, size;
558 	vm_paddr_t page_range __unused;
559 	vm_paddr_t last_pa, pa;
560 	u_long pagecount;
561 #if MINIDUMP_PAGE_TRACKING
562 	u_long vm_page_dump_size;
563 #endif
564 	int biggestone, i, segind;
565 #ifdef WITNESS
566 	vm_offset_t mapped;
567 	int witness_size;
568 #endif
569 #if defined(__i386__) && defined(VM_PHYSSEG_DENSE)
570 	long ii;
571 #endif
572 
573 	vaddr = round_page(vaddr);
574 
575 	vm_phys_early_startup();
576 	biggestone = vm_phys_avail_largest();
577 	end = phys_avail[biggestone+1];
578 
579 	/*
580 	 * Initialize the page and queue locks.
581 	 */
582 	mtx_init(&vm_domainset_lock, "vm domainset lock", NULL, MTX_DEF);
583 	for (i = 0; i < PA_LOCK_COUNT; i++)
584 		mtx_init(&pa_lock[i], "vm page", NULL, MTX_DEF);
585 	for (i = 0; i < vm_ndomains; i++)
586 		vm_page_domain_init(i);
587 
588 	new_end = end;
589 #ifdef WITNESS
590 	witness_size = round_page(witness_startup_count());
591 	new_end -= witness_size;
592 	mapped = pmap_map(&vaddr, new_end, new_end + witness_size,
593 	    VM_PROT_READ | VM_PROT_WRITE);
594 	bzero((void *)mapped, witness_size);
595 	witness_startup((void *)mapped);
596 #endif
597 
598 #if MINIDUMP_PAGE_TRACKING
599 	/*
600 	 * Allocate a bitmap to indicate that a random physical page
601 	 * needs to be included in a minidump.
602 	 *
603 	 * The amd64 port needs this to indicate which direct map pages
604 	 * need to be dumped, via calls to dump_add_page()/dump_drop_page().
605 	 *
606 	 * However, i386 still needs this workspace internally within the
607 	 * minidump code.  In theory, they are not needed on i386, but are
608 	 * included should the sf_buf code decide to use them.
609 	 */
610 	last_pa = 0;
611 	vm_page_dump_pages = 0;
612 	for (i = 0; dump_avail[i + 1] != 0; i += 2) {
613 		vm_page_dump_pages += howmany(dump_avail[i + 1], PAGE_SIZE) -
614 		    dump_avail[i] / PAGE_SIZE;
615 		if (dump_avail[i + 1] > last_pa)
616 			last_pa = dump_avail[i + 1];
617 	}
618 	vm_page_dump_size = round_page(BITSET_SIZE(vm_page_dump_pages));
619 	new_end -= vm_page_dump_size;
620 	vm_page_dump = (void *)(uintptr_t)pmap_map(&vaddr, new_end,
621 	    new_end + vm_page_dump_size, VM_PROT_READ | VM_PROT_WRITE);
622 	bzero((void *)vm_page_dump, vm_page_dump_size);
623 #else
624 	(void)last_pa;
625 #endif
626 #if defined(__aarch64__) || defined(__amd64__) || defined(__mips__) || \
627     defined(__riscv) || defined(__powerpc64__)
628 	/*
629 	 * Include the UMA bootstrap pages, witness pages and vm_page_dump
630 	 * in a crash dump.  When pmap_map() uses the direct map, they are
631 	 * not automatically included.
632 	 */
633 	for (pa = new_end; pa < end; pa += PAGE_SIZE)
634 		dump_add_page(pa);
635 #endif
636 	phys_avail[biggestone + 1] = new_end;
637 #ifdef __amd64__
638 	/*
639 	 * Request that the physical pages underlying the message buffer be
640 	 * included in a crash dump.  Since the message buffer is accessed
641 	 * through the direct map, they are not automatically included.
642 	 */
643 	pa = DMAP_TO_PHYS((vm_offset_t)msgbufp->msg_ptr);
644 	last_pa = pa + round_page(msgbufsize);
645 	while (pa < last_pa) {
646 		dump_add_page(pa);
647 		pa += PAGE_SIZE;
648 	}
649 #endif
650 	/*
651 	 * Compute the number of pages of memory that will be available for
652 	 * use, taking into account the overhead of a page structure per page.
653 	 * In other words, solve
654 	 *	"available physical memory" - round_page(page_range *
655 	 *	    sizeof(struct vm_page)) = page_range * PAGE_SIZE
656 	 * for page_range.
657 	 */
658 	low_avail = phys_avail[0];
659 	high_avail = phys_avail[1];
660 	for (i = 0; i < vm_phys_nsegs; i++) {
661 		if (vm_phys_segs[i].start < low_avail)
662 			low_avail = vm_phys_segs[i].start;
663 		if (vm_phys_segs[i].end > high_avail)
664 			high_avail = vm_phys_segs[i].end;
665 	}
666 	/* Skip the first chunk.  It is already accounted for. */
667 	for (i = 2; phys_avail[i + 1] != 0; i += 2) {
668 		if (phys_avail[i] < low_avail)
669 			low_avail = phys_avail[i];
670 		if (phys_avail[i + 1] > high_avail)
671 			high_avail = phys_avail[i + 1];
672 	}
673 	first_page = low_avail / PAGE_SIZE;
674 #ifdef VM_PHYSSEG_SPARSE
675 	size = 0;
676 	for (i = 0; i < vm_phys_nsegs; i++)
677 		size += vm_phys_segs[i].end - vm_phys_segs[i].start;
678 	for (i = 0; phys_avail[i + 1] != 0; i += 2)
679 		size += phys_avail[i + 1] - phys_avail[i];
680 #elif defined(VM_PHYSSEG_DENSE)
681 	size = high_avail - low_avail;
682 #else
683 #error "Either VM_PHYSSEG_DENSE or VM_PHYSSEG_SPARSE must be defined."
684 #endif
685 
686 #ifdef PMAP_HAS_PAGE_ARRAY
687 	pmap_page_array_startup(size / PAGE_SIZE);
688 	biggestone = vm_phys_avail_largest();
689 	end = new_end = phys_avail[biggestone + 1];
690 #else
691 #ifdef VM_PHYSSEG_DENSE
692 	/*
693 	 * In the VM_PHYSSEG_DENSE case, the number of pages can account for
694 	 * the overhead of a page structure per page only if vm_page_array is
695 	 * allocated from the last physical memory chunk.  Otherwise, we must
696 	 * allocate page structures representing the physical memory
697 	 * underlying vm_page_array, even though they will not be used.
698 	 */
699 	if (new_end != high_avail)
700 		page_range = size / PAGE_SIZE;
701 	else
702 #endif
703 	{
704 		page_range = size / (PAGE_SIZE + sizeof(struct vm_page));
705 
706 		/*
707 		 * If the partial bytes remaining are large enough for
708 		 * a page (PAGE_SIZE) without a corresponding
709 		 * 'struct vm_page', then new_end will contain an
710 		 * extra page after subtracting the length of the VM
711 		 * page array.  Compensate by subtracting an extra
712 		 * page from new_end.
713 		 */
714 		if (size % (PAGE_SIZE + sizeof(struct vm_page)) >= PAGE_SIZE) {
715 			if (new_end == high_avail)
716 				high_avail -= PAGE_SIZE;
717 			new_end -= PAGE_SIZE;
718 		}
719 	}
720 	end = new_end;
721 	new_end = vm_page_array_alloc(&vaddr, end, page_range);
722 #endif
723 
724 #if VM_NRESERVLEVEL > 0
725 	/*
726 	 * Allocate physical memory for the reservation management system's
727 	 * data structures, and map it.
728 	 */
729 	new_end = vm_reserv_startup(&vaddr, new_end);
730 #endif
731 #if defined(__aarch64__) || defined(__amd64__) || defined(__mips__) || \
732     defined(__riscv) || defined(__powerpc64__)
733 	/*
734 	 * Include vm_page_array and vm_reserv_array in a crash dump.
735 	 */
736 	for (pa = new_end; pa < end; pa += PAGE_SIZE)
737 		dump_add_page(pa);
738 #endif
739 	phys_avail[biggestone + 1] = new_end;
740 
741 	/*
742 	 * Add physical memory segments corresponding to the available
743 	 * physical pages.
744 	 */
745 	for (i = 0; phys_avail[i + 1] != 0; i += 2)
746 		if (vm_phys_avail_size(i) != 0)
747 			vm_phys_add_seg(phys_avail[i], phys_avail[i + 1]);
748 
749 	/*
750 	 * Initialize the physical memory allocator.
751 	 */
752 	vm_phys_init();
753 
754 	/*
755 	 * Initialize the page structures and add every available page to the
756 	 * physical memory allocator's free lists.
757 	 */
758 #if defined(__i386__) && defined(VM_PHYSSEG_DENSE)
759 	for (ii = 0; ii < vm_page_array_size; ii++) {
760 		m = &vm_page_array[ii];
761 		vm_page_init_page(m, (first_page + ii) << PAGE_SHIFT, 0);
762 		m->flags = PG_FICTITIOUS;
763 	}
764 #endif
765 	vm_cnt.v_page_count = 0;
766 	for (segind = 0; segind < vm_phys_nsegs; segind++) {
767 		seg = &vm_phys_segs[segind];
768 		for (m = seg->first_page, pa = seg->start; pa < seg->end;
769 		    m++, pa += PAGE_SIZE)
770 			vm_page_init_page(m, pa, segind);
771 
772 		/*
773 		 * Add the segment to the free lists only if it is covered by
774 		 * one of the ranges in phys_avail.  Because we've added the
775 		 * ranges to the vm_phys_segs array, we can assume that each
776 		 * segment is either entirely contained in one of the ranges,
777 		 * or doesn't overlap any of them.
778 		 */
779 		for (i = 0; phys_avail[i + 1] != 0; i += 2) {
780 			struct vm_domain *vmd;
781 
782 			if (seg->start < phys_avail[i] ||
783 			    seg->end > phys_avail[i + 1])
784 				continue;
785 
786 			m = seg->first_page;
787 			pagecount = (u_long)atop(seg->end - seg->start);
788 
789 			vmd = VM_DOMAIN(seg->domain);
790 			vm_domain_free_lock(vmd);
791 			vm_phys_enqueue_contig(m, pagecount);
792 			vm_domain_free_unlock(vmd);
793 			vm_domain_freecnt_inc(vmd, pagecount);
794 			vm_cnt.v_page_count += (u_int)pagecount;
795 
796 			vmd = VM_DOMAIN(seg->domain);
797 			vmd->vmd_page_count += (u_int)pagecount;
798 			vmd->vmd_segs |= 1UL << m->segind;
799 			break;
800 		}
801 	}
802 
803 	/*
804 	 * Remove blacklisted pages from the physical memory allocator.
805 	 */
806 	TAILQ_INIT(&blacklist_head);
807 	vm_page_blacklist_load(&list, &listend);
808 	vm_page_blacklist_check(list, listend);
809 
810 	list = kern_getenv("vm.blacklist");
811 	vm_page_blacklist_check(list, NULL);
812 
813 	freeenv(list);
814 #if VM_NRESERVLEVEL > 0
815 	/*
816 	 * Initialize the reservation management system.
817 	 */
818 	vm_reserv_init();
819 #endif
820 
821 	return (vaddr);
822 }
823 
824 void
825 vm_page_reference(vm_page_t m)
826 {
827 
828 	vm_page_aflag_set(m, PGA_REFERENCED);
829 }
830 
831 /*
832  *	vm_page_trybusy
833  *
834  *	Helper routine for grab functions to trylock busy.
835  *
836  *	Returns true on success and false on failure.
837  */
838 static bool
839 vm_page_trybusy(vm_page_t m, int allocflags)
840 {
841 
842 	if ((allocflags & (VM_ALLOC_SBUSY | VM_ALLOC_IGN_SBUSY)) != 0)
843 		return (vm_page_trysbusy(m));
844 	else
845 		return (vm_page_tryxbusy(m));
846 }
847 
848 /*
849  *	vm_page_tryacquire
850  *
851  *	Helper routine for grab functions to trylock busy and wire.
852  *
853  *	Returns true on success and false on failure.
854  */
855 static inline bool
856 vm_page_tryacquire(vm_page_t m, int allocflags)
857 {
858 	bool locked;
859 
860 	locked = vm_page_trybusy(m, allocflags);
861 	if (locked && (allocflags & VM_ALLOC_WIRED) != 0)
862 		vm_page_wire(m);
863 	return (locked);
864 }
865 
866 /*
867  *	vm_page_busy_acquire:
868  *
869  *	Acquire the busy lock as described by VM_ALLOC_* flags.  Will loop
870  *	and drop the object lock if necessary.
871  */
872 bool
873 vm_page_busy_acquire(vm_page_t m, int allocflags)
874 {
875 	vm_object_t obj;
876 	bool locked;
877 
878 	/*
879 	 * The page-specific object must be cached because page
880 	 * identity can change during the sleep, causing the
881 	 * re-lock of a different object.
882 	 * It is assumed that a reference to the object is already
883 	 * held by the callers.
884 	 */
885 	obj = atomic_load_ptr(&m->object);
886 	for (;;) {
887 		if (vm_page_tryacquire(m, allocflags))
888 			return (true);
889 		if ((allocflags & VM_ALLOC_NOWAIT) != 0)
890 			return (false);
891 		if (obj != NULL)
892 			locked = VM_OBJECT_WOWNED(obj);
893 		else
894 			locked = false;
895 		MPASS(locked || vm_page_wired(m));
896 		if (_vm_page_busy_sleep(obj, m, m->pindex, "vmpba", allocflags,
897 		    locked) && locked)
898 			VM_OBJECT_WLOCK(obj);
899 		if ((allocflags & VM_ALLOC_WAITFAIL) != 0)
900 			return (false);
901 		KASSERT(m->object == obj || m->object == NULL,
902 		    ("vm_page_busy_acquire: page %p does not belong to %p",
903 		    m, obj));
904 	}
905 }
906 
907 /*
908  *	vm_page_busy_downgrade:
909  *
910  *	Downgrade an exclusive busy page into a single shared busy page.
911  */
912 void
913 vm_page_busy_downgrade(vm_page_t m)
914 {
915 	u_int x;
916 
917 	vm_page_assert_xbusied(m);
918 
919 	x = vm_page_busy_fetch(m);
920 	for (;;) {
921 		if (atomic_fcmpset_rel_int(&m->busy_lock,
922 		    &x, VPB_SHARERS_WORD(1)))
923 			break;
924 	}
925 	if ((x & VPB_BIT_WAITERS) != 0)
926 		wakeup(m);
927 }
928 
929 /*
930  *
931  *	vm_page_busy_tryupgrade:
932  *
933  *	Attempt to upgrade a single shared busy into an exclusive busy.
934  */
935 int
936 vm_page_busy_tryupgrade(vm_page_t m)
937 {
938 	u_int ce, x;
939 
940 	vm_page_assert_sbusied(m);
941 
942 	x = vm_page_busy_fetch(m);
943 	ce = VPB_CURTHREAD_EXCLUSIVE;
944 	for (;;) {
945 		if (VPB_SHARERS(x) > 1)
946 			return (0);
947 		KASSERT((x & ~VPB_BIT_WAITERS) == VPB_SHARERS_WORD(1),
948 		    ("vm_page_busy_tryupgrade: invalid lock state"));
949 		if (!atomic_fcmpset_acq_int(&m->busy_lock, &x,
950 		    ce | (x & VPB_BIT_WAITERS)))
951 			continue;
952 		return (1);
953 	}
954 }
955 
956 /*
957  *	vm_page_sbusied:
958  *
959  *	Return a positive value if the page is shared busied, 0 otherwise.
960  */
961 int
962 vm_page_sbusied(vm_page_t m)
963 {
964 	u_int x;
965 
966 	x = vm_page_busy_fetch(m);
967 	return ((x & VPB_BIT_SHARED) != 0 && x != VPB_UNBUSIED);
968 }
969 
970 /*
971  *	vm_page_sunbusy:
972  *
973  *	Shared unbusy a page.
974  */
975 void
976 vm_page_sunbusy(vm_page_t m)
977 {
978 	u_int x;
979 
980 	vm_page_assert_sbusied(m);
981 
982 	x = vm_page_busy_fetch(m);
983 	for (;;) {
984 		KASSERT(x != VPB_FREED,
985 		    ("vm_page_sunbusy: Unlocking freed page."));
986 		if (VPB_SHARERS(x) > 1) {
987 			if (atomic_fcmpset_int(&m->busy_lock, &x,
988 			    x - VPB_ONE_SHARER))
989 				break;
990 			continue;
991 		}
992 		KASSERT((x & ~VPB_BIT_WAITERS) == VPB_SHARERS_WORD(1),
993 		    ("vm_page_sunbusy: invalid lock state"));
994 		if (!atomic_fcmpset_rel_int(&m->busy_lock, &x, VPB_UNBUSIED))
995 			continue;
996 		if ((x & VPB_BIT_WAITERS) == 0)
997 			break;
998 		wakeup(m);
999 		break;
1000 	}
1001 }
1002 
1003 /*
1004  *	vm_page_busy_sleep:
1005  *
1006  *	Sleep if the page is busy, using the page pointer as wchan.
1007  *	This is used to implement the hard-path of busying mechanism.
1008  *
1009  *	If nonshared is true, sleep only if the page is xbusy.
1010  *
1011  *	The object lock must be held on entry and will be released on exit.
1012  */
1013 void
1014 vm_page_busy_sleep(vm_page_t m, const char *wmesg, bool nonshared)
1015 {
1016 	vm_object_t obj;
1017 
1018 	obj = m->object;
1019 	VM_OBJECT_ASSERT_LOCKED(obj);
1020 	vm_page_lock_assert(m, MA_NOTOWNED);
1021 
1022 	if (!_vm_page_busy_sleep(obj, m, m->pindex, wmesg,
1023 	    nonshared ? VM_ALLOC_SBUSY : 0 , true))
1024 		VM_OBJECT_DROP(obj);
1025 }
1026 
1027 /*
1028  *	vm_page_busy_sleep_unlocked:
1029  *
1030  *	Sleep if the page is busy, using the page pointer as wchan.
1031  *	This is used to implement the hard-path of busying mechanism.
1032  *
1033  *	If nonshared is true, sleep only if the page is xbusy.
1034  *
1035  *	The object lock must not be held on entry.  The operation will
1036  *	return if the page changes identity.
1037  */
1038 void
1039 vm_page_busy_sleep_unlocked(vm_object_t obj, vm_page_t m, vm_pindex_t pindex,
1040     const char *wmesg, bool nonshared)
1041 {
1042 
1043 	VM_OBJECT_ASSERT_UNLOCKED(obj);
1044 	vm_page_lock_assert(m, MA_NOTOWNED);
1045 
1046 	_vm_page_busy_sleep(obj, m, pindex, wmesg,
1047 	    nonshared ? VM_ALLOC_SBUSY : 0, false);
1048 }
1049 
1050 /*
1051  *	_vm_page_busy_sleep:
1052  *
1053  *	Internal busy sleep function.  Verifies the page identity and
1054  *	lockstate against parameters.  Returns true if it sleeps and
1055  *	false otherwise.
1056  *
1057  *	If locked is true the lock will be dropped for any true returns
1058  *	and held for any false returns.
1059  */
1060 static bool
1061 _vm_page_busy_sleep(vm_object_t obj, vm_page_t m, vm_pindex_t pindex,
1062     const char *wmesg, int allocflags, bool locked)
1063 {
1064 	bool xsleep;
1065 	u_int x;
1066 
1067 	/*
1068 	 * If the object is busy we must wait for that to drain to zero
1069 	 * before trying the page again.
1070 	 */
1071 	if (obj != NULL && vm_object_busied(obj)) {
1072 		if (locked)
1073 			VM_OBJECT_DROP(obj);
1074 		vm_object_busy_wait(obj, wmesg);
1075 		return (true);
1076 	}
1077 
1078 	if (!vm_page_busied(m))
1079 		return (false);
1080 
1081 	xsleep = (allocflags & (VM_ALLOC_SBUSY | VM_ALLOC_IGN_SBUSY)) != 0;
1082 	sleepq_lock(m);
1083 	x = vm_page_busy_fetch(m);
1084 	do {
1085 		/*
1086 		 * If the page changes objects or becomes unlocked we can
1087 		 * simply return.
1088 		 */
1089 		if (x == VPB_UNBUSIED ||
1090 		    (xsleep && (x & VPB_BIT_SHARED) != 0) ||
1091 		    m->object != obj || m->pindex != pindex) {
1092 			sleepq_release(m);
1093 			return (false);
1094 		}
1095 		if ((x & VPB_BIT_WAITERS) != 0)
1096 			break;
1097 	} while (!atomic_fcmpset_int(&m->busy_lock, &x, x | VPB_BIT_WAITERS));
1098 	if (locked)
1099 		VM_OBJECT_DROP(obj);
1100 	DROP_GIANT();
1101 	sleepq_add(m, NULL, wmesg, 0, 0);
1102 	sleepq_wait(m, PVM);
1103 	PICKUP_GIANT();
1104 	return (true);
1105 }
1106 
1107 /*
1108  *	vm_page_trysbusy:
1109  *
1110  *	Try to shared busy a page.
1111  *	If the operation succeeds 1 is returned otherwise 0.
1112  *	The operation never sleeps.
1113  */
1114 int
1115 vm_page_trysbusy(vm_page_t m)
1116 {
1117 	vm_object_t obj;
1118 	u_int x;
1119 
1120 	obj = m->object;
1121 	x = vm_page_busy_fetch(m);
1122 	for (;;) {
1123 		if ((x & VPB_BIT_SHARED) == 0)
1124 			return (0);
1125 		/*
1126 		 * Reduce the window for transient busies that will trigger
1127 		 * false negatives in vm_page_ps_test().
1128 		 */
1129 		if (obj != NULL && vm_object_busied(obj))
1130 			return (0);
1131 		if (atomic_fcmpset_acq_int(&m->busy_lock, &x,
1132 		    x + VPB_ONE_SHARER))
1133 			break;
1134 	}
1135 
1136 	/* Refetch the object now that we're guaranteed that it is stable. */
1137 	obj = m->object;
1138 	if (obj != NULL && vm_object_busied(obj)) {
1139 		vm_page_sunbusy(m);
1140 		return (0);
1141 	}
1142 	return (1);
1143 }
1144 
1145 /*
1146  *	vm_page_tryxbusy:
1147  *
1148  *	Try to exclusive busy a page.
1149  *	If the operation succeeds 1 is returned otherwise 0.
1150  *	The operation never sleeps.
1151  */
1152 int
1153 vm_page_tryxbusy(vm_page_t m)
1154 {
1155 	vm_object_t obj;
1156 
1157         if (atomic_cmpset_acq_int(&m->busy_lock, VPB_UNBUSIED,
1158             VPB_CURTHREAD_EXCLUSIVE) == 0)
1159 		return (0);
1160 
1161 	obj = m->object;
1162 	if (obj != NULL && vm_object_busied(obj)) {
1163 		vm_page_xunbusy(m);
1164 		return (0);
1165 	}
1166 	return (1);
1167 }
1168 
1169 static void
1170 vm_page_xunbusy_hard_tail(vm_page_t m)
1171 {
1172 	atomic_store_rel_int(&m->busy_lock, VPB_UNBUSIED);
1173 	/* Wake the waiter. */
1174 	wakeup(m);
1175 }
1176 
1177 /*
1178  *	vm_page_xunbusy_hard:
1179  *
1180  *	Called when unbusy has failed because there is a waiter.
1181  */
1182 void
1183 vm_page_xunbusy_hard(vm_page_t m)
1184 {
1185 	vm_page_assert_xbusied(m);
1186 	vm_page_xunbusy_hard_tail(m);
1187 }
1188 
1189 void
1190 vm_page_xunbusy_hard_unchecked(vm_page_t m)
1191 {
1192 	vm_page_assert_xbusied_unchecked(m);
1193 	vm_page_xunbusy_hard_tail(m);
1194 }
1195 
1196 static void
1197 vm_page_busy_free(vm_page_t m)
1198 {
1199 	u_int x;
1200 
1201 	atomic_thread_fence_rel();
1202 	x = atomic_swap_int(&m->busy_lock, VPB_FREED);
1203 	if ((x & VPB_BIT_WAITERS) != 0)
1204 		wakeup(m);
1205 }
1206 
1207 /*
1208  *	vm_page_unhold_pages:
1209  *
1210  *	Unhold each of the pages that is referenced by the given array.
1211  */
1212 void
1213 vm_page_unhold_pages(vm_page_t *ma, int count)
1214 {
1215 
1216 	for (; count != 0; count--) {
1217 		vm_page_unwire(*ma, PQ_ACTIVE);
1218 		ma++;
1219 	}
1220 }
1221 
1222 vm_page_t
1223 PHYS_TO_VM_PAGE(vm_paddr_t pa)
1224 {
1225 	vm_page_t m;
1226 
1227 #ifdef VM_PHYSSEG_SPARSE
1228 	m = vm_phys_paddr_to_vm_page(pa);
1229 	if (m == NULL)
1230 		m = vm_phys_fictitious_to_vm_page(pa);
1231 	return (m);
1232 #elif defined(VM_PHYSSEG_DENSE)
1233 	long pi;
1234 
1235 	pi = atop(pa);
1236 	if (pi >= first_page && (pi - first_page) < vm_page_array_size) {
1237 		m = &vm_page_array[pi - first_page];
1238 		return (m);
1239 	}
1240 	return (vm_phys_fictitious_to_vm_page(pa));
1241 #else
1242 #error "Either VM_PHYSSEG_DENSE or VM_PHYSSEG_SPARSE must be defined."
1243 #endif
1244 }
1245 
1246 /*
1247  *	vm_page_getfake:
1248  *
1249  *	Create a fictitious page with the specified physical address and
1250  *	memory attribute.  The memory attribute is the only the machine-
1251  *	dependent aspect of a fictitious page that must be initialized.
1252  */
1253 vm_page_t
1254 vm_page_getfake(vm_paddr_t paddr, vm_memattr_t memattr)
1255 {
1256 	vm_page_t m;
1257 
1258 	m = uma_zalloc(fakepg_zone, M_WAITOK | M_ZERO);
1259 	vm_page_initfake(m, paddr, memattr);
1260 	return (m);
1261 }
1262 
1263 void
1264 vm_page_initfake(vm_page_t m, vm_paddr_t paddr, vm_memattr_t memattr)
1265 {
1266 
1267 	if ((m->flags & PG_FICTITIOUS) != 0) {
1268 		/*
1269 		 * The page's memattr might have changed since the
1270 		 * previous initialization.  Update the pmap to the
1271 		 * new memattr.
1272 		 */
1273 		goto memattr;
1274 	}
1275 	m->phys_addr = paddr;
1276 	m->a.queue = PQ_NONE;
1277 	/* Fictitious pages don't use "segind". */
1278 	m->flags = PG_FICTITIOUS;
1279 	/* Fictitious pages don't use "order" or "pool". */
1280 	m->oflags = VPO_UNMANAGED;
1281 	m->busy_lock = VPB_CURTHREAD_EXCLUSIVE;
1282 	/* Fictitious pages are unevictable. */
1283 	m->ref_count = 1;
1284 	pmap_page_init(m);
1285 memattr:
1286 	pmap_page_set_memattr(m, memattr);
1287 }
1288 
1289 /*
1290  *	vm_page_putfake:
1291  *
1292  *	Release a fictitious page.
1293  */
1294 void
1295 vm_page_putfake(vm_page_t m)
1296 {
1297 
1298 	KASSERT((m->oflags & VPO_UNMANAGED) != 0, ("managed %p", m));
1299 	KASSERT((m->flags & PG_FICTITIOUS) != 0,
1300 	    ("vm_page_putfake: bad page %p", m));
1301 	vm_page_assert_xbusied(m);
1302 	vm_page_busy_free(m);
1303 	uma_zfree(fakepg_zone, m);
1304 }
1305 
1306 /*
1307  *	vm_page_updatefake:
1308  *
1309  *	Update the given fictitious page to the specified physical address and
1310  *	memory attribute.
1311  */
1312 void
1313 vm_page_updatefake(vm_page_t m, vm_paddr_t paddr, vm_memattr_t memattr)
1314 {
1315 
1316 	KASSERT((m->flags & PG_FICTITIOUS) != 0,
1317 	    ("vm_page_updatefake: bad page %p", m));
1318 	m->phys_addr = paddr;
1319 	pmap_page_set_memattr(m, memattr);
1320 }
1321 
1322 /*
1323  *	vm_page_free:
1324  *
1325  *	Free a page.
1326  */
1327 void
1328 vm_page_free(vm_page_t m)
1329 {
1330 
1331 	m->flags &= ~PG_ZERO;
1332 	vm_page_free_toq(m);
1333 }
1334 
1335 /*
1336  *	vm_page_free_zero:
1337  *
1338  *	Free a page to the zerod-pages queue
1339  */
1340 void
1341 vm_page_free_zero(vm_page_t m)
1342 {
1343 
1344 	m->flags |= PG_ZERO;
1345 	vm_page_free_toq(m);
1346 }
1347 
1348 /*
1349  * Unbusy and handle the page queueing for a page from a getpages request that
1350  * was optionally read ahead or behind.
1351  */
1352 void
1353 vm_page_readahead_finish(vm_page_t m)
1354 {
1355 
1356 	/* We shouldn't put invalid pages on queues. */
1357 	KASSERT(!vm_page_none_valid(m), ("%s: %p is invalid", __func__, m));
1358 
1359 	/*
1360 	 * Since the page is not the actually needed one, whether it should
1361 	 * be activated or deactivated is not obvious.  Empirical results
1362 	 * have shown that deactivating the page is usually the best choice,
1363 	 * unless the page is wanted by another thread.
1364 	 */
1365 	if ((vm_page_busy_fetch(m) & VPB_BIT_WAITERS) != 0)
1366 		vm_page_activate(m);
1367 	else
1368 		vm_page_deactivate(m);
1369 	vm_page_xunbusy_unchecked(m);
1370 }
1371 
1372 /*
1373  * Destroy the identity of an invalid page and free it if possible.
1374  * This is intended to be used when reading a page from backing store fails.
1375  */
1376 void
1377 vm_page_free_invalid(vm_page_t m)
1378 {
1379 
1380 	KASSERT(vm_page_none_valid(m), ("page %p is valid", m));
1381 	KASSERT(!pmap_page_is_mapped(m), ("page %p is mapped", m));
1382 	KASSERT(m->object != NULL, ("page %p has no object", m));
1383 	VM_OBJECT_ASSERT_WLOCKED(m->object);
1384 
1385 	/*
1386 	 * We may be attempting to free the page as part of the handling for an
1387 	 * I/O error, in which case the page was xbusied by a different thread.
1388 	 */
1389 	vm_page_xbusy_claim(m);
1390 
1391 	/*
1392 	 * If someone has wired this page while the object lock
1393 	 * was not held, then the thread that unwires is responsible
1394 	 * for freeing the page.  Otherwise just free the page now.
1395 	 * The wire count of this unmapped page cannot change while
1396 	 * we have the page xbusy and the page's object wlocked.
1397 	 */
1398 	if (vm_page_remove(m))
1399 		vm_page_free(m);
1400 }
1401 
1402 /*
1403  *	vm_page_sleep_if_busy:
1404  *
1405  *	Sleep and release the object lock if the page is busied.
1406  *	Returns TRUE if the thread slept.
1407  *
1408  *	The given page must be unlocked and object containing it must
1409  *	be locked.
1410  */
1411 int
1412 vm_page_sleep_if_busy(vm_page_t m, const char *wmesg)
1413 {
1414 	vm_object_t obj;
1415 
1416 	vm_page_lock_assert(m, MA_NOTOWNED);
1417 	VM_OBJECT_ASSERT_WLOCKED(m->object);
1418 
1419 	/*
1420 	 * The page-specific object must be cached because page
1421 	 * identity can change during the sleep, causing the
1422 	 * re-lock of a different object.
1423 	 * It is assumed that a reference to the object is already
1424 	 * held by the callers.
1425 	 */
1426 	obj = m->object;
1427 	if (_vm_page_busy_sleep(obj, m, m->pindex, wmesg, 0, true)) {
1428 		VM_OBJECT_WLOCK(obj);
1429 		return (TRUE);
1430 	}
1431 	return (FALSE);
1432 }
1433 
1434 /*
1435  *	vm_page_sleep_if_xbusy:
1436  *
1437  *	Sleep and release the object lock if the page is xbusied.
1438  *	Returns TRUE if the thread slept.
1439  *
1440  *	The given page must be unlocked and object containing it must
1441  *	be locked.
1442  */
1443 int
1444 vm_page_sleep_if_xbusy(vm_page_t m, const char *wmesg)
1445 {
1446 	vm_object_t obj;
1447 
1448 	vm_page_lock_assert(m, MA_NOTOWNED);
1449 	VM_OBJECT_ASSERT_WLOCKED(m->object);
1450 
1451 	/*
1452 	 * The page-specific object must be cached because page
1453 	 * identity can change during the sleep, causing the
1454 	 * re-lock of a different object.
1455 	 * It is assumed that a reference to the object is already
1456 	 * held by the callers.
1457 	 */
1458 	obj = m->object;
1459 	if (_vm_page_busy_sleep(obj, m, m->pindex, wmesg, VM_ALLOC_SBUSY,
1460 	    true)) {
1461 		VM_OBJECT_WLOCK(obj);
1462 		return (TRUE);
1463 	}
1464 	return (FALSE);
1465 }
1466 
1467 /*
1468  *	vm_page_dirty_KBI:		[ internal use only ]
1469  *
1470  *	Set all bits in the page's dirty field.
1471  *
1472  *	The object containing the specified page must be locked if the
1473  *	call is made from the machine-independent layer.
1474  *
1475  *	See vm_page_clear_dirty_mask().
1476  *
1477  *	This function should only be called by vm_page_dirty().
1478  */
1479 void
1480 vm_page_dirty_KBI(vm_page_t m)
1481 {
1482 
1483 	/* Refer to this operation by its public name. */
1484 	KASSERT(vm_page_all_valid(m), ("vm_page_dirty: page is invalid!"));
1485 	m->dirty = VM_PAGE_BITS_ALL;
1486 }
1487 
1488 /*
1489  *	vm_page_insert:		[ internal use only ]
1490  *
1491  *	Inserts the given mem entry into the object and object list.
1492  *
1493  *	The object must be locked.
1494  */
1495 int
1496 vm_page_insert(vm_page_t m, vm_object_t object, vm_pindex_t pindex)
1497 {
1498 	vm_page_t mpred;
1499 
1500 	VM_OBJECT_ASSERT_WLOCKED(object);
1501 	mpred = vm_radix_lookup_le(&object->rtree, pindex);
1502 	return (vm_page_insert_after(m, object, pindex, mpred));
1503 }
1504 
1505 /*
1506  *	vm_page_insert_after:
1507  *
1508  *	Inserts the page "m" into the specified object at offset "pindex".
1509  *
1510  *	The page "mpred" must immediately precede the offset "pindex" within
1511  *	the specified object.
1512  *
1513  *	The object must be locked.
1514  */
1515 static int
1516 vm_page_insert_after(vm_page_t m, vm_object_t object, vm_pindex_t pindex,
1517     vm_page_t mpred)
1518 {
1519 	vm_page_t msucc;
1520 
1521 	VM_OBJECT_ASSERT_WLOCKED(object);
1522 	KASSERT(m->object == NULL,
1523 	    ("vm_page_insert_after: page already inserted"));
1524 	if (mpred != NULL) {
1525 		KASSERT(mpred->object == object,
1526 		    ("vm_page_insert_after: object doesn't contain mpred"));
1527 		KASSERT(mpred->pindex < pindex,
1528 		    ("vm_page_insert_after: mpred doesn't precede pindex"));
1529 		msucc = TAILQ_NEXT(mpred, listq);
1530 	} else
1531 		msucc = TAILQ_FIRST(&object->memq);
1532 	if (msucc != NULL)
1533 		KASSERT(msucc->pindex > pindex,
1534 		    ("vm_page_insert_after: msucc doesn't succeed pindex"));
1535 
1536 	/*
1537 	 * Record the object/offset pair in this page.
1538 	 */
1539 	m->object = object;
1540 	m->pindex = pindex;
1541 	m->ref_count |= VPRC_OBJREF;
1542 
1543 	/*
1544 	 * Now link into the object's ordered list of backed pages.
1545 	 */
1546 	if (vm_radix_insert(&object->rtree, m)) {
1547 		m->object = NULL;
1548 		m->pindex = 0;
1549 		m->ref_count &= ~VPRC_OBJREF;
1550 		return (1);
1551 	}
1552 	vm_page_insert_radixdone(m, object, mpred);
1553 	return (0);
1554 }
1555 
1556 /*
1557  *	vm_page_insert_radixdone:
1558  *
1559  *	Complete page "m" insertion into the specified object after the
1560  *	radix trie hooking.
1561  *
1562  *	The page "mpred" must precede the offset "m->pindex" within the
1563  *	specified object.
1564  *
1565  *	The object must be locked.
1566  */
1567 static void
1568 vm_page_insert_radixdone(vm_page_t m, vm_object_t object, vm_page_t mpred)
1569 {
1570 
1571 	VM_OBJECT_ASSERT_WLOCKED(object);
1572 	KASSERT(object != NULL && m->object == object,
1573 	    ("vm_page_insert_radixdone: page %p has inconsistent object", m));
1574 	KASSERT((m->ref_count & VPRC_OBJREF) != 0,
1575 	    ("vm_page_insert_radixdone: page %p is missing object ref", m));
1576 	if (mpred != NULL) {
1577 		KASSERT(mpred->object == object,
1578 		    ("vm_page_insert_radixdone: object doesn't contain mpred"));
1579 		KASSERT(mpred->pindex < m->pindex,
1580 		    ("vm_page_insert_radixdone: mpred doesn't precede pindex"));
1581 	}
1582 
1583 	if (mpred != NULL)
1584 		TAILQ_INSERT_AFTER(&object->memq, mpred, m, listq);
1585 	else
1586 		TAILQ_INSERT_HEAD(&object->memq, m, listq);
1587 
1588 	/*
1589 	 * Show that the object has one more resident page.
1590 	 */
1591 	object->resident_page_count++;
1592 
1593 	/*
1594 	 * Hold the vnode until the last page is released.
1595 	 */
1596 	if (object->resident_page_count == 1 && object->type == OBJT_VNODE)
1597 		vhold(object->handle);
1598 
1599 	/*
1600 	 * Since we are inserting a new and possibly dirty page,
1601 	 * update the object's generation count.
1602 	 */
1603 	if (pmap_page_is_write_mapped(m))
1604 		vm_object_set_writeable_dirty(object);
1605 }
1606 
1607 /*
1608  * Do the work to remove a page from its object.  The caller is responsible for
1609  * updating the page's fields to reflect this removal.
1610  */
1611 static void
1612 vm_page_object_remove(vm_page_t m)
1613 {
1614 	vm_object_t object;
1615 	vm_page_t mrem;
1616 
1617 	vm_page_assert_xbusied(m);
1618 	object = m->object;
1619 	VM_OBJECT_ASSERT_WLOCKED(object);
1620 	KASSERT((m->ref_count & VPRC_OBJREF) != 0,
1621 	    ("page %p is missing its object ref", m));
1622 
1623 	/* Deferred free of swap space. */
1624 	if ((m->a.flags & PGA_SWAP_FREE) != 0)
1625 		vm_pager_page_unswapped(m);
1626 
1627 	m->object = NULL;
1628 	mrem = vm_radix_remove(&object->rtree, m->pindex);
1629 	KASSERT(mrem == m, ("removed page %p, expected page %p", mrem, m));
1630 
1631 	/*
1632 	 * Now remove from the object's list of backed pages.
1633 	 */
1634 	TAILQ_REMOVE(&object->memq, m, listq);
1635 
1636 	/*
1637 	 * And show that the object has one fewer resident page.
1638 	 */
1639 	object->resident_page_count--;
1640 
1641 	/*
1642 	 * The vnode may now be recycled.
1643 	 */
1644 	if (object->resident_page_count == 0 && object->type == OBJT_VNODE)
1645 		vdrop(object->handle);
1646 }
1647 
1648 /*
1649  *	vm_page_remove:
1650  *
1651  *	Removes the specified page from its containing object, but does not
1652  *	invalidate any backing storage.  Returns true if the object's reference
1653  *	was the last reference to the page, and false otherwise.
1654  *
1655  *	The object must be locked and the page must be exclusively busied.
1656  *	The exclusive busy will be released on return.  If this is not the
1657  *	final ref and the caller does not hold a wire reference it may not
1658  *	continue to access the page.
1659  */
1660 bool
1661 vm_page_remove(vm_page_t m)
1662 {
1663 	bool dropped;
1664 
1665 	dropped = vm_page_remove_xbusy(m);
1666 	vm_page_xunbusy(m);
1667 
1668 	return (dropped);
1669 }
1670 
1671 /*
1672  *	vm_page_remove_xbusy
1673  *
1674  *	Removes the page but leaves the xbusy held.  Returns true if this
1675  *	removed the final ref and false otherwise.
1676  */
1677 bool
1678 vm_page_remove_xbusy(vm_page_t m)
1679 {
1680 
1681 	vm_page_object_remove(m);
1682 	return (vm_page_drop(m, VPRC_OBJREF) == VPRC_OBJREF);
1683 }
1684 
1685 /*
1686  *	vm_page_lookup:
1687  *
1688  *	Returns the page associated with the object/offset
1689  *	pair specified; if none is found, NULL is returned.
1690  *
1691  *	The object must be locked.
1692  */
1693 vm_page_t
1694 vm_page_lookup(vm_object_t object, vm_pindex_t pindex)
1695 {
1696 
1697 	VM_OBJECT_ASSERT_LOCKED(object);
1698 	return (vm_radix_lookup(&object->rtree, pindex));
1699 }
1700 
1701 /*
1702  *	vm_page_lookup_unlocked:
1703  *
1704  *	Returns the page associated with the object/offset pair specified;
1705  *	if none is found, NULL is returned.  The page may be no longer be
1706  *	present in the object at the time that this function returns.  Only
1707  *	useful for opportunistic checks such as inmem().
1708  */
1709 vm_page_t
1710 vm_page_lookup_unlocked(vm_object_t object, vm_pindex_t pindex)
1711 {
1712 
1713 	return (vm_radix_lookup_unlocked(&object->rtree, pindex));
1714 }
1715 
1716 /*
1717  *	vm_page_relookup:
1718  *
1719  *	Returns a page that must already have been busied by
1720  *	the caller.  Used for bogus page replacement.
1721  */
1722 vm_page_t
1723 vm_page_relookup(vm_object_t object, vm_pindex_t pindex)
1724 {
1725 	vm_page_t m;
1726 
1727 	m = vm_radix_lookup_unlocked(&object->rtree, pindex);
1728 	KASSERT(m != NULL && (vm_page_busied(m) || vm_page_wired(m)) &&
1729 	    m->object == object && m->pindex == pindex,
1730 	    ("vm_page_relookup: Invalid page %p", m));
1731 	return (m);
1732 }
1733 
1734 /*
1735  * This should only be used by lockless functions for releasing transient
1736  * incorrect acquires.  The page may have been freed after we acquired a
1737  * busy lock.  In this case busy_lock == VPB_FREED and we have nothing
1738  * further to do.
1739  */
1740 static void
1741 vm_page_busy_release(vm_page_t m)
1742 {
1743 	u_int x;
1744 
1745 	x = vm_page_busy_fetch(m);
1746 	for (;;) {
1747 		if (x == VPB_FREED)
1748 			break;
1749 		if ((x & VPB_BIT_SHARED) != 0 && VPB_SHARERS(x) > 1) {
1750 			if (atomic_fcmpset_int(&m->busy_lock, &x,
1751 			    x - VPB_ONE_SHARER))
1752 				break;
1753 			continue;
1754 		}
1755 		KASSERT((x & VPB_BIT_SHARED) != 0 ||
1756 		    (x & ~VPB_BIT_WAITERS) == VPB_CURTHREAD_EXCLUSIVE,
1757 		    ("vm_page_busy_release: %p xbusy not owned.", m));
1758 		if (!atomic_fcmpset_rel_int(&m->busy_lock, &x, VPB_UNBUSIED))
1759 			continue;
1760 		if ((x & VPB_BIT_WAITERS) != 0)
1761 			wakeup(m);
1762 		break;
1763 	}
1764 }
1765 
1766 /*
1767  *	vm_page_find_least:
1768  *
1769  *	Returns the page associated with the object with least pindex
1770  *	greater than or equal to the parameter pindex, or NULL.
1771  *
1772  *	The object must be locked.
1773  */
1774 vm_page_t
1775 vm_page_find_least(vm_object_t object, vm_pindex_t pindex)
1776 {
1777 	vm_page_t m;
1778 
1779 	VM_OBJECT_ASSERT_LOCKED(object);
1780 	if ((m = TAILQ_FIRST(&object->memq)) != NULL && m->pindex < pindex)
1781 		m = vm_radix_lookup_ge(&object->rtree, pindex);
1782 	return (m);
1783 }
1784 
1785 /*
1786  * Returns the given page's successor (by pindex) within the object if it is
1787  * resident; if none is found, NULL is returned.
1788  *
1789  * The object must be locked.
1790  */
1791 vm_page_t
1792 vm_page_next(vm_page_t m)
1793 {
1794 	vm_page_t next;
1795 
1796 	VM_OBJECT_ASSERT_LOCKED(m->object);
1797 	if ((next = TAILQ_NEXT(m, listq)) != NULL) {
1798 		MPASS(next->object == m->object);
1799 		if (next->pindex != m->pindex + 1)
1800 			next = NULL;
1801 	}
1802 	return (next);
1803 }
1804 
1805 /*
1806  * Returns the given page's predecessor (by pindex) within the object if it is
1807  * resident; if none is found, NULL is returned.
1808  *
1809  * The object must be locked.
1810  */
1811 vm_page_t
1812 vm_page_prev(vm_page_t m)
1813 {
1814 	vm_page_t prev;
1815 
1816 	VM_OBJECT_ASSERT_LOCKED(m->object);
1817 	if ((prev = TAILQ_PREV(m, pglist, listq)) != NULL) {
1818 		MPASS(prev->object == m->object);
1819 		if (prev->pindex != m->pindex - 1)
1820 			prev = NULL;
1821 	}
1822 	return (prev);
1823 }
1824 
1825 /*
1826  * Uses the page mnew as a replacement for an existing page at index
1827  * pindex which must be already present in the object.
1828  *
1829  * Both pages must be exclusively busied on enter.  The old page is
1830  * unbusied on exit.
1831  *
1832  * A return value of true means mold is now free.  If this is not the
1833  * final ref and the caller does not hold a wire reference it may not
1834  * continue to access the page.
1835  */
1836 static bool
1837 vm_page_replace_hold(vm_page_t mnew, vm_object_t object, vm_pindex_t pindex,
1838     vm_page_t mold)
1839 {
1840 	vm_page_t mret;
1841 	bool dropped;
1842 
1843 	VM_OBJECT_ASSERT_WLOCKED(object);
1844 	vm_page_assert_xbusied(mold);
1845 	KASSERT(mnew->object == NULL && (mnew->ref_count & VPRC_OBJREF) == 0,
1846 	    ("vm_page_replace: page %p already in object", mnew));
1847 
1848 	/*
1849 	 * This function mostly follows vm_page_insert() and
1850 	 * vm_page_remove() without the radix, object count and vnode
1851 	 * dance.  Double check such functions for more comments.
1852 	 */
1853 
1854 	mnew->object = object;
1855 	mnew->pindex = pindex;
1856 	atomic_set_int(&mnew->ref_count, VPRC_OBJREF);
1857 	mret = vm_radix_replace(&object->rtree, mnew);
1858 	KASSERT(mret == mold,
1859 	    ("invalid page replacement, mold=%p, mret=%p", mold, mret));
1860 	KASSERT((mold->oflags & VPO_UNMANAGED) ==
1861 	    (mnew->oflags & VPO_UNMANAGED),
1862 	    ("vm_page_replace: mismatched VPO_UNMANAGED"));
1863 
1864 	/* Keep the resident page list in sorted order. */
1865 	TAILQ_INSERT_AFTER(&object->memq, mold, mnew, listq);
1866 	TAILQ_REMOVE(&object->memq, mold, listq);
1867 	mold->object = NULL;
1868 
1869 	/*
1870 	 * The object's resident_page_count does not change because we have
1871 	 * swapped one page for another, but the generation count should
1872 	 * change if the page is dirty.
1873 	 */
1874 	if (pmap_page_is_write_mapped(mnew))
1875 		vm_object_set_writeable_dirty(object);
1876 	dropped = vm_page_drop(mold, VPRC_OBJREF) == VPRC_OBJREF;
1877 	vm_page_xunbusy(mold);
1878 
1879 	return (dropped);
1880 }
1881 
1882 void
1883 vm_page_replace(vm_page_t mnew, vm_object_t object, vm_pindex_t pindex,
1884     vm_page_t mold)
1885 {
1886 
1887 	vm_page_assert_xbusied(mnew);
1888 
1889 	if (vm_page_replace_hold(mnew, object, pindex, mold))
1890 		vm_page_free(mold);
1891 }
1892 
1893 /*
1894  *	vm_page_rename:
1895  *
1896  *	Move the given memory entry from its
1897  *	current object to the specified target object/offset.
1898  *
1899  *	Note: swap associated with the page must be invalidated by the move.  We
1900  *	      have to do this for several reasons:  (1) we aren't freeing the
1901  *	      page, (2) we are dirtying the page, (3) the VM system is probably
1902  *	      moving the page from object A to B, and will then later move
1903  *	      the backing store from A to B and we can't have a conflict.
1904  *
1905  *	Note: we *always* dirty the page.  It is necessary both for the
1906  *	      fact that we moved it, and because we may be invalidating
1907  *	      swap.
1908  *
1909  *	The objects must be locked.
1910  */
1911 int
1912 vm_page_rename(vm_page_t m, vm_object_t new_object, vm_pindex_t new_pindex)
1913 {
1914 	vm_page_t mpred;
1915 	vm_pindex_t opidx;
1916 
1917 	VM_OBJECT_ASSERT_WLOCKED(new_object);
1918 
1919 	KASSERT(m->ref_count != 0, ("vm_page_rename: page %p has no refs", m));
1920 	mpred = vm_radix_lookup_le(&new_object->rtree, new_pindex);
1921 	KASSERT(mpred == NULL || mpred->pindex != new_pindex,
1922 	    ("vm_page_rename: pindex already renamed"));
1923 
1924 	/*
1925 	 * Create a custom version of vm_page_insert() which does not depend
1926 	 * by m_prev and can cheat on the implementation aspects of the
1927 	 * function.
1928 	 */
1929 	opidx = m->pindex;
1930 	m->pindex = new_pindex;
1931 	if (vm_radix_insert(&new_object->rtree, m)) {
1932 		m->pindex = opidx;
1933 		return (1);
1934 	}
1935 
1936 	/*
1937 	 * The operation cannot fail anymore.  The removal must happen before
1938 	 * the listq iterator is tainted.
1939 	 */
1940 	m->pindex = opidx;
1941 	vm_page_object_remove(m);
1942 
1943 	/* Return back to the new pindex to complete vm_page_insert(). */
1944 	m->pindex = new_pindex;
1945 	m->object = new_object;
1946 
1947 	vm_page_insert_radixdone(m, new_object, mpred);
1948 	vm_page_dirty(m);
1949 	return (0);
1950 }
1951 
1952 /*
1953  *	vm_page_alloc:
1954  *
1955  *	Allocate and return a page that is associated with the specified
1956  *	object and offset pair.  By default, this page is exclusive busied.
1957  *
1958  *	The caller must always specify an allocation class.
1959  *
1960  *	allocation classes:
1961  *	VM_ALLOC_NORMAL		normal process request
1962  *	VM_ALLOC_SYSTEM		system *really* needs a page
1963  *	VM_ALLOC_INTERRUPT	interrupt time request
1964  *
1965  *	optional allocation flags:
1966  *	VM_ALLOC_COUNT(number)	the number of additional pages that the caller
1967  *				intends to allocate
1968  *	VM_ALLOC_NOBUSY		do not exclusive busy the page
1969  *	VM_ALLOC_NODUMP		do not include the page in a kernel core dump
1970  *	VM_ALLOC_NOOBJ		page is not associated with an object and
1971  *				should not be exclusive busy
1972  *	VM_ALLOC_SBUSY		shared busy the allocated page
1973  *	VM_ALLOC_WIRED		wire the allocated page
1974  *	VM_ALLOC_ZERO		prefer a zeroed page
1975  */
1976 vm_page_t
1977 vm_page_alloc(vm_object_t object, vm_pindex_t pindex, int req)
1978 {
1979 
1980 	return (vm_page_alloc_after(object, pindex, req, object != NULL ?
1981 	    vm_radix_lookup_le(&object->rtree, pindex) : NULL));
1982 }
1983 
1984 vm_page_t
1985 vm_page_alloc_domain(vm_object_t object, vm_pindex_t pindex, int domain,
1986     int req)
1987 {
1988 
1989 	return (vm_page_alloc_domain_after(object, pindex, domain, req,
1990 	    object != NULL ? vm_radix_lookup_le(&object->rtree, pindex) :
1991 	    NULL));
1992 }
1993 
1994 /*
1995  * Allocate a page in the specified object with the given page index.  To
1996  * optimize insertion of the page into the object, the caller must also specifiy
1997  * the resident page in the object with largest index smaller than the given
1998  * page index, or NULL if no such page exists.
1999  */
2000 vm_page_t
2001 vm_page_alloc_after(vm_object_t object, vm_pindex_t pindex,
2002     int req, vm_page_t mpred)
2003 {
2004 	struct vm_domainset_iter di;
2005 	vm_page_t m;
2006 	int domain;
2007 
2008 	vm_domainset_iter_page_init(&di, object, pindex, &domain, &req);
2009 	do {
2010 		m = vm_page_alloc_domain_after(object, pindex, domain, req,
2011 		    mpred);
2012 		if (m != NULL)
2013 			break;
2014 	} while (vm_domainset_iter_page(&di, object, &domain) == 0);
2015 
2016 	return (m);
2017 }
2018 
2019 /*
2020  * Returns true if the number of free pages exceeds the minimum
2021  * for the request class and false otherwise.
2022  */
2023 static int
2024 _vm_domain_allocate(struct vm_domain *vmd, int req_class, int npages)
2025 {
2026 	u_int limit, old, new;
2027 
2028 	if (req_class == VM_ALLOC_INTERRUPT)
2029 		limit = 0;
2030 	else if (req_class == VM_ALLOC_SYSTEM)
2031 		limit = vmd->vmd_interrupt_free_min;
2032 	else
2033 		limit = vmd->vmd_free_reserved;
2034 
2035 	/*
2036 	 * Attempt to reserve the pages.  Fail if we're below the limit.
2037 	 */
2038 	limit += npages;
2039 	old = vmd->vmd_free_count;
2040 	do {
2041 		if (old < limit)
2042 			return (0);
2043 		new = old - npages;
2044 	} while (atomic_fcmpset_int(&vmd->vmd_free_count, &old, new) == 0);
2045 
2046 	/* Wake the page daemon if we've crossed the threshold. */
2047 	if (vm_paging_needed(vmd, new) && !vm_paging_needed(vmd, old))
2048 		pagedaemon_wakeup(vmd->vmd_domain);
2049 
2050 	/* Only update bitsets on transitions. */
2051 	if ((old >= vmd->vmd_free_min && new < vmd->vmd_free_min) ||
2052 	    (old >= vmd->vmd_free_severe && new < vmd->vmd_free_severe))
2053 		vm_domain_set(vmd);
2054 
2055 	return (1);
2056 }
2057 
2058 int
2059 vm_domain_allocate(struct vm_domain *vmd, int req, int npages)
2060 {
2061 	int req_class;
2062 
2063 	/*
2064 	 * The page daemon is allowed to dig deeper into the free page list.
2065 	 */
2066 	req_class = req & VM_ALLOC_CLASS_MASK;
2067 	if (curproc == pageproc && req_class != VM_ALLOC_INTERRUPT)
2068 		req_class = VM_ALLOC_SYSTEM;
2069 	return (_vm_domain_allocate(vmd, req_class, npages));
2070 }
2071 
2072 vm_page_t
2073 vm_page_alloc_domain_after(vm_object_t object, vm_pindex_t pindex, int domain,
2074     int req, vm_page_t mpred)
2075 {
2076 	struct vm_domain *vmd;
2077 	vm_page_t m;
2078 	int flags, pool;
2079 
2080 	KASSERT((object != NULL) == ((req & VM_ALLOC_NOOBJ) == 0) &&
2081 	    (object != NULL || (req & VM_ALLOC_SBUSY) == 0) &&
2082 	    ((req & (VM_ALLOC_NOBUSY | VM_ALLOC_SBUSY)) !=
2083 	    (VM_ALLOC_NOBUSY | VM_ALLOC_SBUSY)),
2084 	    ("inconsistent object(%p)/req(%x)", object, req));
2085 	KASSERT(object == NULL || (req & VM_ALLOC_WAITOK) == 0,
2086 	    ("Can't sleep and retry object insertion."));
2087 	KASSERT(mpred == NULL || mpred->pindex < pindex,
2088 	    ("mpred %p doesn't precede pindex 0x%jx", mpred,
2089 	    (uintmax_t)pindex));
2090 	if (object != NULL)
2091 		VM_OBJECT_ASSERT_WLOCKED(object);
2092 
2093 	flags = 0;
2094 	m = NULL;
2095 	pool = object != NULL ? VM_FREEPOOL_DEFAULT : VM_FREEPOOL_DIRECT;
2096 again:
2097 #if VM_NRESERVLEVEL > 0
2098 	/*
2099 	 * Can we allocate the page from a reservation?
2100 	 */
2101 	if (vm_object_reserv(object) &&
2102 	    (m = vm_reserv_alloc_page(object, pindex, domain, req, mpred)) !=
2103 	    NULL) {
2104 		goto found;
2105 	}
2106 #endif
2107 	vmd = VM_DOMAIN(domain);
2108 	if (vmd->vmd_pgcache[pool].zone != NULL) {
2109 		m = uma_zalloc(vmd->vmd_pgcache[pool].zone, M_NOWAIT | M_NOVM);
2110 		if (m != NULL) {
2111 			flags |= PG_PCPU_CACHE;
2112 			goto found;
2113 		}
2114 	}
2115 	if (vm_domain_allocate(vmd, req, 1)) {
2116 		/*
2117 		 * If not, allocate it from the free page queues.
2118 		 */
2119 		vm_domain_free_lock(vmd);
2120 		m = vm_phys_alloc_pages(domain, pool, 0);
2121 		vm_domain_free_unlock(vmd);
2122 		if (m == NULL) {
2123 			vm_domain_freecnt_inc(vmd, 1);
2124 #if VM_NRESERVLEVEL > 0
2125 			if (vm_reserv_reclaim_inactive(domain))
2126 				goto again;
2127 #endif
2128 		}
2129 	}
2130 	if (m == NULL) {
2131 		/*
2132 		 * Not allocatable, give up.
2133 		 */
2134 		if (vm_domain_alloc_fail(vmd, object, req))
2135 			goto again;
2136 		return (NULL);
2137 	}
2138 
2139 	/*
2140 	 * At this point we had better have found a good page.
2141 	 */
2142 found:
2143 	vm_page_dequeue(m);
2144 	vm_page_alloc_check(m);
2145 
2146 	/*
2147 	 * Initialize the page.  Only the PG_ZERO flag is inherited.
2148 	 */
2149 	if ((req & VM_ALLOC_ZERO) != 0)
2150 		flags |= (m->flags & PG_ZERO);
2151 	if ((req & VM_ALLOC_NODUMP) != 0)
2152 		flags |= PG_NODUMP;
2153 	m->flags = flags;
2154 	m->a.flags = 0;
2155 	m->oflags = object == NULL || (object->flags & OBJ_UNMANAGED) != 0 ?
2156 	    VPO_UNMANAGED : 0;
2157 	if ((req & (VM_ALLOC_NOBUSY | VM_ALLOC_NOOBJ | VM_ALLOC_SBUSY)) == 0)
2158 		m->busy_lock = VPB_CURTHREAD_EXCLUSIVE;
2159 	else if ((req & VM_ALLOC_SBUSY) != 0)
2160 		m->busy_lock = VPB_SHARERS_WORD(1);
2161 	else
2162 		m->busy_lock = VPB_UNBUSIED;
2163 	if (req & VM_ALLOC_WIRED) {
2164 		vm_wire_add(1);
2165 		m->ref_count = 1;
2166 	}
2167 	m->a.act_count = 0;
2168 
2169 	if (object != NULL) {
2170 		if (vm_page_insert_after(m, object, pindex, mpred)) {
2171 			if (req & VM_ALLOC_WIRED) {
2172 				vm_wire_sub(1);
2173 				m->ref_count = 0;
2174 			}
2175 			KASSERT(m->object == NULL, ("page %p has object", m));
2176 			m->oflags = VPO_UNMANAGED;
2177 			m->busy_lock = VPB_UNBUSIED;
2178 			/* Don't change PG_ZERO. */
2179 			vm_page_free_toq(m);
2180 			if (req & VM_ALLOC_WAITFAIL) {
2181 				VM_OBJECT_WUNLOCK(object);
2182 				vm_radix_wait();
2183 				VM_OBJECT_WLOCK(object);
2184 			}
2185 			return (NULL);
2186 		}
2187 
2188 		/* Ignore device objects; the pager sets "memattr" for them. */
2189 		if (object->memattr != VM_MEMATTR_DEFAULT &&
2190 		    (object->flags & OBJ_FICTITIOUS) == 0)
2191 			pmap_page_set_memattr(m, object->memattr);
2192 	} else
2193 		m->pindex = pindex;
2194 
2195 	return (m);
2196 }
2197 
2198 /*
2199  *	vm_page_alloc_contig:
2200  *
2201  *	Allocate a contiguous set of physical pages of the given size "npages"
2202  *	from the free lists.  All of the physical pages must be at or above
2203  *	the given physical address "low" and below the given physical address
2204  *	"high".  The given value "alignment" determines the alignment of the
2205  *	first physical page in the set.  If the given value "boundary" is
2206  *	non-zero, then the set of physical pages cannot cross any physical
2207  *	address boundary that is a multiple of that value.  Both "alignment"
2208  *	and "boundary" must be a power of two.
2209  *
2210  *	If the specified memory attribute, "memattr", is VM_MEMATTR_DEFAULT,
2211  *	then the memory attribute setting for the physical pages is configured
2212  *	to the object's memory attribute setting.  Otherwise, the memory
2213  *	attribute setting for the physical pages is configured to "memattr",
2214  *	overriding the object's memory attribute setting.  However, if the
2215  *	object's memory attribute setting is not VM_MEMATTR_DEFAULT, then the
2216  *	memory attribute setting for the physical pages cannot be configured
2217  *	to VM_MEMATTR_DEFAULT.
2218  *
2219  *	The specified object may not contain fictitious pages.
2220  *
2221  *	The caller must always specify an allocation class.
2222  *
2223  *	allocation classes:
2224  *	VM_ALLOC_NORMAL		normal process request
2225  *	VM_ALLOC_SYSTEM		system *really* needs a page
2226  *	VM_ALLOC_INTERRUPT	interrupt time request
2227  *
2228  *	optional allocation flags:
2229  *	VM_ALLOC_NOBUSY		do not exclusive busy the page
2230  *	VM_ALLOC_NODUMP		do not include the page in a kernel core dump
2231  *	VM_ALLOC_NOOBJ		page is not associated with an object and
2232  *				should not be exclusive busy
2233  *	VM_ALLOC_SBUSY		shared busy the allocated page
2234  *	VM_ALLOC_WIRED		wire the allocated page
2235  *	VM_ALLOC_ZERO		prefer a zeroed page
2236  */
2237 vm_page_t
2238 vm_page_alloc_contig(vm_object_t object, vm_pindex_t pindex, int req,
2239     u_long npages, vm_paddr_t low, vm_paddr_t high, u_long alignment,
2240     vm_paddr_t boundary, vm_memattr_t memattr)
2241 {
2242 	struct vm_domainset_iter di;
2243 	vm_page_t m;
2244 	int domain;
2245 
2246 	vm_domainset_iter_page_init(&di, object, pindex, &domain, &req);
2247 	do {
2248 		m = vm_page_alloc_contig_domain(object, pindex, domain, req,
2249 		    npages, low, high, alignment, boundary, memattr);
2250 		if (m != NULL)
2251 			break;
2252 	} while (vm_domainset_iter_page(&di, object, &domain) == 0);
2253 
2254 	return (m);
2255 }
2256 
2257 vm_page_t
2258 vm_page_alloc_contig_domain(vm_object_t object, vm_pindex_t pindex, int domain,
2259     int req, u_long npages, vm_paddr_t low, vm_paddr_t high, u_long alignment,
2260     vm_paddr_t boundary, vm_memattr_t memattr)
2261 {
2262 	struct vm_domain *vmd;
2263 	vm_page_t m, m_ret, mpred;
2264 	u_int busy_lock, flags, oflags;
2265 
2266 	mpred = NULL;	/* XXX: pacify gcc */
2267 	KASSERT((object != NULL) == ((req & VM_ALLOC_NOOBJ) == 0) &&
2268 	    (object != NULL || (req & VM_ALLOC_SBUSY) == 0) &&
2269 	    ((req & (VM_ALLOC_NOBUSY | VM_ALLOC_SBUSY)) !=
2270 	    (VM_ALLOC_NOBUSY | VM_ALLOC_SBUSY)),
2271 	    ("vm_page_alloc_contig: inconsistent object(%p)/req(%x)", object,
2272 	    req));
2273 	KASSERT(object == NULL || (req & VM_ALLOC_WAITOK) == 0,
2274 	    ("Can't sleep and retry object insertion."));
2275 	if (object != NULL) {
2276 		VM_OBJECT_ASSERT_WLOCKED(object);
2277 		KASSERT((object->flags & OBJ_FICTITIOUS) == 0,
2278 		    ("vm_page_alloc_contig: object %p has fictitious pages",
2279 		    object));
2280 	}
2281 	KASSERT(npages > 0, ("vm_page_alloc_contig: npages is zero"));
2282 
2283 	if (object != NULL) {
2284 		mpred = vm_radix_lookup_le(&object->rtree, pindex);
2285 		KASSERT(mpred == NULL || mpred->pindex != pindex,
2286 		    ("vm_page_alloc_contig: pindex already allocated"));
2287 	}
2288 
2289 	/*
2290 	 * Can we allocate the pages without the number of free pages falling
2291 	 * below the lower bound for the allocation class?
2292 	 */
2293 	m_ret = NULL;
2294 again:
2295 #if VM_NRESERVLEVEL > 0
2296 	/*
2297 	 * Can we allocate the pages from a reservation?
2298 	 */
2299 	if (vm_object_reserv(object) &&
2300 	    (m_ret = vm_reserv_alloc_contig(object, pindex, domain, req,
2301 	    mpred, npages, low, high, alignment, boundary)) != NULL) {
2302 		goto found;
2303 	}
2304 #endif
2305 	vmd = VM_DOMAIN(domain);
2306 	if (vm_domain_allocate(vmd, req, npages)) {
2307 		/*
2308 		 * allocate them from the free page queues.
2309 		 */
2310 		vm_domain_free_lock(vmd);
2311 		m_ret = vm_phys_alloc_contig(domain, npages, low, high,
2312 		    alignment, boundary);
2313 		vm_domain_free_unlock(vmd);
2314 		if (m_ret == NULL) {
2315 			vm_domain_freecnt_inc(vmd, npages);
2316 #if VM_NRESERVLEVEL > 0
2317 			if (vm_reserv_reclaim_contig(domain, npages, low,
2318 			    high, alignment, boundary))
2319 				goto again;
2320 #endif
2321 		}
2322 	}
2323 	if (m_ret == NULL) {
2324 		if (vm_domain_alloc_fail(vmd, object, req))
2325 			goto again;
2326 		return (NULL);
2327 	}
2328 #if VM_NRESERVLEVEL > 0
2329 found:
2330 #endif
2331 	for (m = m_ret; m < &m_ret[npages]; m++) {
2332 		vm_page_dequeue(m);
2333 		vm_page_alloc_check(m);
2334 	}
2335 
2336 	/*
2337 	 * Initialize the pages.  Only the PG_ZERO flag is inherited.
2338 	 */
2339 	flags = 0;
2340 	if ((req & VM_ALLOC_ZERO) != 0)
2341 		flags = PG_ZERO;
2342 	if ((req & VM_ALLOC_NODUMP) != 0)
2343 		flags |= PG_NODUMP;
2344 	oflags = object == NULL || (object->flags & OBJ_UNMANAGED) != 0 ?
2345 	    VPO_UNMANAGED : 0;
2346 	if ((req & (VM_ALLOC_NOBUSY | VM_ALLOC_NOOBJ | VM_ALLOC_SBUSY)) == 0)
2347 		busy_lock = VPB_CURTHREAD_EXCLUSIVE;
2348 	else if ((req & VM_ALLOC_SBUSY) != 0)
2349 		busy_lock = VPB_SHARERS_WORD(1);
2350 	else
2351 		busy_lock = VPB_UNBUSIED;
2352 	if ((req & VM_ALLOC_WIRED) != 0)
2353 		vm_wire_add(npages);
2354 	if (object != NULL) {
2355 		if (object->memattr != VM_MEMATTR_DEFAULT &&
2356 		    memattr == VM_MEMATTR_DEFAULT)
2357 			memattr = object->memattr;
2358 	}
2359 	for (m = m_ret; m < &m_ret[npages]; m++) {
2360 		m->a.flags = 0;
2361 		m->flags = (m->flags | PG_NODUMP) & flags;
2362 		m->busy_lock = busy_lock;
2363 		if ((req & VM_ALLOC_WIRED) != 0)
2364 			m->ref_count = 1;
2365 		m->a.act_count = 0;
2366 		m->oflags = oflags;
2367 		if (object != NULL) {
2368 			if (vm_page_insert_after(m, object, pindex, mpred)) {
2369 				if ((req & VM_ALLOC_WIRED) != 0)
2370 					vm_wire_sub(npages);
2371 				KASSERT(m->object == NULL,
2372 				    ("page %p has object", m));
2373 				mpred = m;
2374 				for (m = m_ret; m < &m_ret[npages]; m++) {
2375 					if (m <= mpred &&
2376 					    (req & VM_ALLOC_WIRED) != 0)
2377 						m->ref_count = 0;
2378 					m->oflags = VPO_UNMANAGED;
2379 					m->busy_lock = VPB_UNBUSIED;
2380 					/* Don't change PG_ZERO. */
2381 					vm_page_free_toq(m);
2382 				}
2383 				if (req & VM_ALLOC_WAITFAIL) {
2384 					VM_OBJECT_WUNLOCK(object);
2385 					vm_radix_wait();
2386 					VM_OBJECT_WLOCK(object);
2387 				}
2388 				return (NULL);
2389 			}
2390 			mpred = m;
2391 		} else
2392 			m->pindex = pindex;
2393 		if (memattr != VM_MEMATTR_DEFAULT)
2394 			pmap_page_set_memattr(m, memattr);
2395 		pindex++;
2396 	}
2397 	return (m_ret);
2398 }
2399 
2400 /*
2401  * Check a page that has been freshly dequeued from a freelist.
2402  */
2403 static void
2404 vm_page_alloc_check(vm_page_t m)
2405 {
2406 
2407 	KASSERT(m->object == NULL, ("page %p has object", m));
2408 	KASSERT(m->a.queue == PQ_NONE &&
2409 	    (m->a.flags & PGA_QUEUE_STATE_MASK) == 0,
2410 	    ("page %p has unexpected queue %d, flags %#x",
2411 	    m, m->a.queue, (m->a.flags & PGA_QUEUE_STATE_MASK)));
2412 	KASSERT(m->ref_count == 0, ("page %p has references", m));
2413 	KASSERT(vm_page_busy_freed(m), ("page %p is not freed", m));
2414 	KASSERT(m->dirty == 0, ("page %p is dirty", m));
2415 	KASSERT(pmap_page_get_memattr(m) == VM_MEMATTR_DEFAULT,
2416 	    ("page %p has unexpected memattr %d",
2417 	    m, pmap_page_get_memattr(m)));
2418 	KASSERT(m->valid == 0, ("free page %p is valid", m));
2419 }
2420 
2421 /*
2422  * 	vm_page_alloc_freelist:
2423  *
2424  *	Allocate a physical page from the specified free page list.
2425  *
2426  *	The caller must always specify an allocation class.
2427  *
2428  *	allocation classes:
2429  *	VM_ALLOC_NORMAL		normal process request
2430  *	VM_ALLOC_SYSTEM		system *really* needs a page
2431  *	VM_ALLOC_INTERRUPT	interrupt time request
2432  *
2433  *	optional allocation flags:
2434  *	VM_ALLOC_COUNT(number)	the number of additional pages that the caller
2435  *				intends to allocate
2436  *	VM_ALLOC_WIRED		wire the allocated page
2437  *	VM_ALLOC_ZERO		prefer a zeroed page
2438  */
2439 vm_page_t
2440 vm_page_alloc_freelist(int freelist, int req)
2441 {
2442 	struct vm_domainset_iter di;
2443 	vm_page_t m;
2444 	int domain;
2445 
2446 	vm_domainset_iter_page_init(&di, NULL, 0, &domain, &req);
2447 	do {
2448 		m = vm_page_alloc_freelist_domain(domain, freelist, req);
2449 		if (m != NULL)
2450 			break;
2451 	} while (vm_domainset_iter_page(&di, NULL, &domain) == 0);
2452 
2453 	return (m);
2454 }
2455 
2456 vm_page_t
2457 vm_page_alloc_freelist_domain(int domain, int freelist, int req)
2458 {
2459 	struct vm_domain *vmd;
2460 	vm_page_t m;
2461 	u_int flags;
2462 
2463 	m = NULL;
2464 	vmd = VM_DOMAIN(domain);
2465 again:
2466 	if (vm_domain_allocate(vmd, req, 1)) {
2467 		vm_domain_free_lock(vmd);
2468 		m = vm_phys_alloc_freelist_pages(domain, freelist,
2469 		    VM_FREEPOOL_DIRECT, 0);
2470 		vm_domain_free_unlock(vmd);
2471 		if (m == NULL)
2472 			vm_domain_freecnt_inc(vmd, 1);
2473 	}
2474 	if (m == NULL) {
2475 		if (vm_domain_alloc_fail(vmd, NULL, req))
2476 			goto again;
2477 		return (NULL);
2478 	}
2479 	vm_page_dequeue(m);
2480 	vm_page_alloc_check(m);
2481 
2482 	/*
2483 	 * Initialize the page.  Only the PG_ZERO flag is inherited.
2484 	 */
2485 	m->a.flags = 0;
2486 	flags = 0;
2487 	if ((req & VM_ALLOC_ZERO) != 0)
2488 		flags = PG_ZERO;
2489 	m->flags &= flags;
2490 	if ((req & VM_ALLOC_WIRED) != 0) {
2491 		vm_wire_add(1);
2492 		m->ref_count = 1;
2493 	}
2494 	/* Unmanaged pages don't use "act_count". */
2495 	m->oflags = VPO_UNMANAGED;
2496 	return (m);
2497 }
2498 
2499 static int
2500 vm_page_zone_import(void *arg, void **store, int cnt, int domain, int flags)
2501 {
2502 	struct vm_domain *vmd;
2503 	struct vm_pgcache *pgcache;
2504 	int i;
2505 
2506 	pgcache = arg;
2507 	vmd = VM_DOMAIN(pgcache->domain);
2508 
2509 	/*
2510 	 * The page daemon should avoid creating extra memory pressure since its
2511 	 * main purpose is to replenish the store of free pages.
2512 	 */
2513 	if (vmd->vmd_severeset || curproc == pageproc ||
2514 	    !_vm_domain_allocate(vmd, VM_ALLOC_NORMAL, cnt))
2515 		return (0);
2516 	domain = vmd->vmd_domain;
2517 	vm_domain_free_lock(vmd);
2518 	i = vm_phys_alloc_npages(domain, pgcache->pool, cnt,
2519 	    (vm_page_t *)store);
2520 	vm_domain_free_unlock(vmd);
2521 	if (cnt != i)
2522 		vm_domain_freecnt_inc(vmd, cnt - i);
2523 
2524 	return (i);
2525 }
2526 
2527 static void
2528 vm_page_zone_release(void *arg, void **store, int cnt)
2529 {
2530 	struct vm_domain *vmd;
2531 	struct vm_pgcache *pgcache;
2532 	vm_page_t m;
2533 	int i;
2534 
2535 	pgcache = arg;
2536 	vmd = VM_DOMAIN(pgcache->domain);
2537 	vm_domain_free_lock(vmd);
2538 	for (i = 0; i < cnt; i++) {
2539 		m = (vm_page_t)store[i];
2540 		vm_phys_free_pages(m, 0);
2541 	}
2542 	vm_domain_free_unlock(vmd);
2543 	vm_domain_freecnt_inc(vmd, cnt);
2544 }
2545 
2546 #define	VPSC_ANY	0	/* No restrictions. */
2547 #define	VPSC_NORESERV	1	/* Skip reservations; implies VPSC_NOSUPER. */
2548 #define	VPSC_NOSUPER	2	/* Skip superpages. */
2549 
2550 /*
2551  *	vm_page_scan_contig:
2552  *
2553  *	Scan vm_page_array[] between the specified entries "m_start" and
2554  *	"m_end" for a run of contiguous physical pages that satisfy the
2555  *	specified conditions, and return the lowest page in the run.  The
2556  *	specified "alignment" determines the alignment of the lowest physical
2557  *	page in the run.  If the specified "boundary" is non-zero, then the
2558  *	run of physical pages cannot span a physical address that is a
2559  *	multiple of "boundary".
2560  *
2561  *	"m_end" is never dereferenced, so it need not point to a vm_page
2562  *	structure within vm_page_array[].
2563  *
2564  *	"npages" must be greater than zero.  "m_start" and "m_end" must not
2565  *	span a hole (or discontiguity) in the physical address space.  Both
2566  *	"alignment" and "boundary" must be a power of two.
2567  */
2568 vm_page_t
2569 vm_page_scan_contig(u_long npages, vm_page_t m_start, vm_page_t m_end,
2570     u_long alignment, vm_paddr_t boundary, int options)
2571 {
2572 	vm_object_t object;
2573 	vm_paddr_t pa;
2574 	vm_page_t m, m_run;
2575 #if VM_NRESERVLEVEL > 0
2576 	int level;
2577 #endif
2578 	int m_inc, order, run_ext, run_len;
2579 
2580 	KASSERT(npages > 0, ("npages is 0"));
2581 	KASSERT(powerof2(alignment), ("alignment is not a power of 2"));
2582 	KASSERT(powerof2(boundary), ("boundary is not a power of 2"));
2583 	m_run = NULL;
2584 	run_len = 0;
2585 	for (m = m_start; m < m_end && run_len < npages; m += m_inc) {
2586 		KASSERT((m->flags & PG_MARKER) == 0,
2587 		    ("page %p is PG_MARKER", m));
2588 		KASSERT((m->flags & PG_FICTITIOUS) == 0 || m->ref_count >= 1,
2589 		    ("fictitious page %p has invalid ref count", m));
2590 
2591 		/*
2592 		 * If the current page would be the start of a run, check its
2593 		 * physical address against the end, alignment, and boundary
2594 		 * conditions.  If it doesn't satisfy these conditions, either
2595 		 * terminate the scan or advance to the next page that
2596 		 * satisfies the failed condition.
2597 		 */
2598 		if (run_len == 0) {
2599 			KASSERT(m_run == NULL, ("m_run != NULL"));
2600 			if (m + npages > m_end)
2601 				break;
2602 			pa = VM_PAGE_TO_PHYS(m);
2603 			if ((pa & (alignment - 1)) != 0) {
2604 				m_inc = atop(roundup2(pa, alignment) - pa);
2605 				continue;
2606 			}
2607 			if (rounddown2(pa ^ (pa + ptoa(npages) - 1),
2608 			    boundary) != 0) {
2609 				m_inc = atop(roundup2(pa, boundary) - pa);
2610 				continue;
2611 			}
2612 		} else
2613 			KASSERT(m_run != NULL, ("m_run == NULL"));
2614 
2615 retry:
2616 		m_inc = 1;
2617 		if (vm_page_wired(m))
2618 			run_ext = 0;
2619 #if VM_NRESERVLEVEL > 0
2620 		else if ((level = vm_reserv_level(m)) >= 0 &&
2621 		    (options & VPSC_NORESERV) != 0) {
2622 			run_ext = 0;
2623 			/* Advance to the end of the reservation. */
2624 			pa = VM_PAGE_TO_PHYS(m);
2625 			m_inc = atop(roundup2(pa + 1, vm_reserv_size(level)) -
2626 			    pa);
2627 		}
2628 #endif
2629 		else if ((object = atomic_load_ptr(&m->object)) != NULL) {
2630 			/*
2631 			 * The page is considered eligible for relocation if
2632 			 * and only if it could be laundered or reclaimed by
2633 			 * the page daemon.
2634 			 */
2635 			VM_OBJECT_RLOCK(object);
2636 			if (object != m->object) {
2637 				VM_OBJECT_RUNLOCK(object);
2638 				goto retry;
2639 			}
2640 			/* Don't care: PG_NODUMP, PG_ZERO. */
2641 			if (object->type != OBJT_DEFAULT &&
2642 			    object->type != OBJT_SWAP &&
2643 			    object->type != OBJT_VNODE) {
2644 				run_ext = 0;
2645 #if VM_NRESERVLEVEL > 0
2646 			} else if ((options & VPSC_NOSUPER) != 0 &&
2647 			    (level = vm_reserv_level_iffullpop(m)) >= 0) {
2648 				run_ext = 0;
2649 				/* Advance to the end of the superpage. */
2650 				pa = VM_PAGE_TO_PHYS(m);
2651 				m_inc = atop(roundup2(pa + 1,
2652 				    vm_reserv_size(level)) - pa);
2653 #endif
2654 			} else if (object->memattr == VM_MEMATTR_DEFAULT &&
2655 			    vm_page_queue(m) != PQ_NONE && !vm_page_busied(m)) {
2656 				/*
2657 				 * The page is allocated but eligible for
2658 				 * relocation.  Extend the current run by one
2659 				 * page.
2660 				 */
2661 				KASSERT(pmap_page_get_memattr(m) ==
2662 				    VM_MEMATTR_DEFAULT,
2663 				    ("page %p has an unexpected memattr", m));
2664 				KASSERT((m->oflags & (VPO_SWAPINPROG |
2665 				    VPO_SWAPSLEEP | VPO_UNMANAGED)) == 0,
2666 				    ("page %p has unexpected oflags", m));
2667 				/* Don't care: PGA_NOSYNC. */
2668 				run_ext = 1;
2669 			} else
2670 				run_ext = 0;
2671 			VM_OBJECT_RUNLOCK(object);
2672 #if VM_NRESERVLEVEL > 0
2673 		} else if (level >= 0) {
2674 			/*
2675 			 * The page is reserved but not yet allocated.  In
2676 			 * other words, it is still free.  Extend the current
2677 			 * run by one page.
2678 			 */
2679 			run_ext = 1;
2680 #endif
2681 		} else if ((order = m->order) < VM_NFREEORDER) {
2682 			/*
2683 			 * The page is enqueued in the physical memory
2684 			 * allocator's free page queues.  Moreover, it is the
2685 			 * first page in a power-of-two-sized run of
2686 			 * contiguous free pages.  Add these pages to the end
2687 			 * of the current run, and jump ahead.
2688 			 */
2689 			run_ext = 1 << order;
2690 			m_inc = 1 << order;
2691 		} else {
2692 			/*
2693 			 * Skip the page for one of the following reasons: (1)
2694 			 * It is enqueued in the physical memory allocator's
2695 			 * free page queues.  However, it is not the first
2696 			 * page in a run of contiguous free pages.  (This case
2697 			 * rarely occurs because the scan is performed in
2698 			 * ascending order.) (2) It is not reserved, and it is
2699 			 * transitioning from free to allocated.  (Conversely,
2700 			 * the transition from allocated to free for managed
2701 			 * pages is blocked by the page busy lock.) (3) It is
2702 			 * allocated but not contained by an object and not
2703 			 * wired, e.g., allocated by Xen's balloon driver.
2704 			 */
2705 			run_ext = 0;
2706 		}
2707 
2708 		/*
2709 		 * Extend or reset the current run of pages.
2710 		 */
2711 		if (run_ext > 0) {
2712 			if (run_len == 0)
2713 				m_run = m;
2714 			run_len += run_ext;
2715 		} else {
2716 			if (run_len > 0) {
2717 				m_run = NULL;
2718 				run_len = 0;
2719 			}
2720 		}
2721 	}
2722 	if (run_len >= npages)
2723 		return (m_run);
2724 	return (NULL);
2725 }
2726 
2727 /*
2728  *	vm_page_reclaim_run:
2729  *
2730  *	Try to relocate each of the allocated virtual pages within the
2731  *	specified run of physical pages to a new physical address.  Free the
2732  *	physical pages underlying the relocated virtual pages.  A virtual page
2733  *	is relocatable if and only if it could be laundered or reclaimed by
2734  *	the page daemon.  Whenever possible, a virtual page is relocated to a
2735  *	physical address above "high".
2736  *
2737  *	Returns 0 if every physical page within the run was already free or
2738  *	just freed by a successful relocation.  Otherwise, returns a non-zero
2739  *	value indicating why the last attempt to relocate a virtual page was
2740  *	unsuccessful.
2741  *
2742  *	"req_class" must be an allocation class.
2743  */
2744 static int
2745 vm_page_reclaim_run(int req_class, int domain, u_long npages, vm_page_t m_run,
2746     vm_paddr_t high)
2747 {
2748 	struct vm_domain *vmd;
2749 	struct spglist free;
2750 	vm_object_t object;
2751 	vm_paddr_t pa;
2752 	vm_page_t m, m_end, m_new;
2753 	int error, order, req;
2754 
2755 	KASSERT((req_class & VM_ALLOC_CLASS_MASK) == req_class,
2756 	    ("req_class is not an allocation class"));
2757 	SLIST_INIT(&free);
2758 	error = 0;
2759 	m = m_run;
2760 	m_end = m_run + npages;
2761 	for (; error == 0 && m < m_end; m++) {
2762 		KASSERT((m->flags & (PG_FICTITIOUS | PG_MARKER)) == 0,
2763 		    ("page %p is PG_FICTITIOUS or PG_MARKER", m));
2764 
2765 		/*
2766 		 * Racily check for wirings.  Races are handled once the object
2767 		 * lock is held and the page is unmapped.
2768 		 */
2769 		if (vm_page_wired(m))
2770 			error = EBUSY;
2771 		else if ((object = atomic_load_ptr(&m->object)) != NULL) {
2772 			/*
2773 			 * The page is relocated if and only if it could be
2774 			 * laundered or reclaimed by the page daemon.
2775 			 */
2776 			VM_OBJECT_WLOCK(object);
2777 			/* Don't care: PG_NODUMP, PG_ZERO. */
2778 			if (m->object != object ||
2779 			    (object->type != OBJT_DEFAULT &&
2780 			    object->type != OBJT_SWAP &&
2781 			    object->type != OBJT_VNODE))
2782 				error = EINVAL;
2783 			else if (object->memattr != VM_MEMATTR_DEFAULT)
2784 				error = EINVAL;
2785 			else if (vm_page_queue(m) != PQ_NONE &&
2786 			    vm_page_tryxbusy(m) != 0) {
2787 				if (vm_page_wired(m)) {
2788 					vm_page_xunbusy(m);
2789 					error = EBUSY;
2790 					goto unlock;
2791 				}
2792 				KASSERT(pmap_page_get_memattr(m) ==
2793 				    VM_MEMATTR_DEFAULT,
2794 				    ("page %p has an unexpected memattr", m));
2795 				KASSERT(m->oflags == 0,
2796 				    ("page %p has unexpected oflags", m));
2797 				/* Don't care: PGA_NOSYNC. */
2798 				if (!vm_page_none_valid(m)) {
2799 					/*
2800 					 * First, try to allocate a new page
2801 					 * that is above "high".  Failing
2802 					 * that, try to allocate a new page
2803 					 * that is below "m_run".  Allocate
2804 					 * the new page between the end of
2805 					 * "m_run" and "high" only as a last
2806 					 * resort.
2807 					 */
2808 					req = req_class | VM_ALLOC_NOOBJ;
2809 					if ((m->flags & PG_NODUMP) != 0)
2810 						req |= VM_ALLOC_NODUMP;
2811 					if (trunc_page(high) !=
2812 					    ~(vm_paddr_t)PAGE_MASK) {
2813 						m_new = vm_page_alloc_contig(
2814 						    NULL, 0, req, 1,
2815 						    round_page(high),
2816 						    ~(vm_paddr_t)0,
2817 						    PAGE_SIZE, 0,
2818 						    VM_MEMATTR_DEFAULT);
2819 					} else
2820 						m_new = NULL;
2821 					if (m_new == NULL) {
2822 						pa = VM_PAGE_TO_PHYS(m_run);
2823 						m_new = vm_page_alloc_contig(
2824 						    NULL, 0, req, 1,
2825 						    0, pa - 1, PAGE_SIZE, 0,
2826 						    VM_MEMATTR_DEFAULT);
2827 					}
2828 					if (m_new == NULL) {
2829 						pa += ptoa(npages);
2830 						m_new = vm_page_alloc_contig(
2831 						    NULL, 0, req, 1,
2832 						    pa, high, PAGE_SIZE, 0,
2833 						    VM_MEMATTR_DEFAULT);
2834 					}
2835 					if (m_new == NULL) {
2836 						vm_page_xunbusy(m);
2837 						error = ENOMEM;
2838 						goto unlock;
2839 					}
2840 
2841 					/*
2842 					 * Unmap the page and check for new
2843 					 * wirings that may have been acquired
2844 					 * through a pmap lookup.
2845 					 */
2846 					if (object->ref_count != 0 &&
2847 					    !vm_page_try_remove_all(m)) {
2848 						vm_page_xunbusy(m);
2849 						vm_page_free(m_new);
2850 						error = EBUSY;
2851 						goto unlock;
2852 					}
2853 
2854 					/*
2855 					 * Replace "m" with the new page.  For
2856 					 * vm_page_replace(), "m" must be busy
2857 					 * and dequeued.  Finally, change "m"
2858 					 * as if vm_page_free() was called.
2859 					 */
2860 					m_new->a.flags = m->a.flags &
2861 					    ~PGA_QUEUE_STATE_MASK;
2862 					KASSERT(m_new->oflags == VPO_UNMANAGED,
2863 					    ("page %p is managed", m_new));
2864 					m_new->oflags = 0;
2865 					pmap_copy_page(m, m_new);
2866 					m_new->valid = m->valid;
2867 					m_new->dirty = m->dirty;
2868 					m->flags &= ~PG_ZERO;
2869 					vm_page_dequeue(m);
2870 					if (vm_page_replace_hold(m_new, object,
2871 					    m->pindex, m) &&
2872 					    vm_page_free_prep(m))
2873 						SLIST_INSERT_HEAD(&free, m,
2874 						    plinks.s.ss);
2875 
2876 					/*
2877 					 * The new page must be deactivated
2878 					 * before the object is unlocked.
2879 					 */
2880 					vm_page_deactivate(m_new);
2881 				} else {
2882 					m->flags &= ~PG_ZERO;
2883 					vm_page_dequeue(m);
2884 					if (vm_page_free_prep(m))
2885 						SLIST_INSERT_HEAD(&free, m,
2886 						    plinks.s.ss);
2887 					KASSERT(m->dirty == 0,
2888 					    ("page %p is dirty", m));
2889 				}
2890 			} else
2891 				error = EBUSY;
2892 unlock:
2893 			VM_OBJECT_WUNLOCK(object);
2894 		} else {
2895 			MPASS(vm_page_domain(m) == domain);
2896 			vmd = VM_DOMAIN(domain);
2897 			vm_domain_free_lock(vmd);
2898 			order = m->order;
2899 			if (order < VM_NFREEORDER) {
2900 				/*
2901 				 * The page is enqueued in the physical memory
2902 				 * allocator's free page queues.  Moreover, it
2903 				 * is the first page in a power-of-two-sized
2904 				 * run of contiguous free pages.  Jump ahead
2905 				 * to the last page within that run, and
2906 				 * continue from there.
2907 				 */
2908 				m += (1 << order) - 1;
2909 			}
2910 #if VM_NRESERVLEVEL > 0
2911 			else if (vm_reserv_is_page_free(m))
2912 				order = 0;
2913 #endif
2914 			vm_domain_free_unlock(vmd);
2915 			if (order == VM_NFREEORDER)
2916 				error = EINVAL;
2917 		}
2918 	}
2919 	if ((m = SLIST_FIRST(&free)) != NULL) {
2920 		int cnt;
2921 
2922 		vmd = VM_DOMAIN(domain);
2923 		cnt = 0;
2924 		vm_domain_free_lock(vmd);
2925 		do {
2926 			MPASS(vm_page_domain(m) == domain);
2927 			SLIST_REMOVE_HEAD(&free, plinks.s.ss);
2928 			vm_phys_free_pages(m, 0);
2929 			cnt++;
2930 		} while ((m = SLIST_FIRST(&free)) != NULL);
2931 		vm_domain_free_unlock(vmd);
2932 		vm_domain_freecnt_inc(vmd, cnt);
2933 	}
2934 	return (error);
2935 }
2936 
2937 #define	NRUNS	16
2938 
2939 CTASSERT(powerof2(NRUNS));
2940 
2941 #define	RUN_INDEX(count)	((count) & (NRUNS - 1))
2942 
2943 #define	MIN_RECLAIM	8
2944 
2945 /*
2946  *	vm_page_reclaim_contig:
2947  *
2948  *	Reclaim allocated, contiguous physical memory satisfying the specified
2949  *	conditions by relocating the virtual pages using that physical memory.
2950  *	Returns true if reclamation is successful and false otherwise.  Since
2951  *	relocation requires the allocation of physical pages, reclamation may
2952  *	fail due to a shortage of free pages.  When reclamation fails, callers
2953  *	are expected to perform vm_wait() before retrying a failed allocation
2954  *	operation, e.g., vm_page_alloc_contig().
2955  *
2956  *	The caller must always specify an allocation class through "req".
2957  *
2958  *	allocation classes:
2959  *	VM_ALLOC_NORMAL		normal process request
2960  *	VM_ALLOC_SYSTEM		system *really* needs a page
2961  *	VM_ALLOC_INTERRUPT	interrupt time request
2962  *
2963  *	The optional allocation flags are ignored.
2964  *
2965  *	"npages" must be greater than zero.  Both "alignment" and "boundary"
2966  *	must be a power of two.
2967  */
2968 bool
2969 vm_page_reclaim_contig_domain(int domain, int req, u_long npages,
2970     vm_paddr_t low, vm_paddr_t high, u_long alignment, vm_paddr_t boundary)
2971 {
2972 	struct vm_domain *vmd;
2973 	vm_paddr_t curr_low;
2974 	vm_page_t m_run, m_runs[NRUNS];
2975 	u_long count, minalign, reclaimed;
2976 	int error, i, options, req_class;
2977 
2978 	KASSERT(npages > 0, ("npages is 0"));
2979 	KASSERT(powerof2(alignment), ("alignment is not a power of 2"));
2980 	KASSERT(powerof2(boundary), ("boundary is not a power of 2"));
2981 
2982 	/*
2983 	 * The caller will attempt an allocation after some runs have been
2984 	 * reclaimed and added to the vm_phys buddy lists.  Due to limitations
2985 	 * of vm_phys_alloc_contig(), round up the requested length to the next
2986 	 * power of two or maximum chunk size, and ensure that each run is
2987 	 * suitably aligned.
2988 	 */
2989 	minalign = 1ul << imin(flsl(npages - 1), VM_NFREEORDER - 1);
2990 	npages = roundup2(npages, minalign);
2991 	if (alignment < ptoa(minalign))
2992 		alignment = ptoa(minalign);
2993 
2994 	/*
2995 	 * The page daemon is allowed to dig deeper into the free page list.
2996 	 */
2997 	req_class = req & VM_ALLOC_CLASS_MASK;
2998 	if (curproc == pageproc && req_class != VM_ALLOC_INTERRUPT)
2999 		req_class = VM_ALLOC_SYSTEM;
3000 
3001 	/*
3002 	 * Return if the number of free pages cannot satisfy the requested
3003 	 * allocation.
3004 	 */
3005 	vmd = VM_DOMAIN(domain);
3006 	count = vmd->vmd_free_count;
3007 	if (count < npages + vmd->vmd_free_reserved || (count < npages +
3008 	    vmd->vmd_interrupt_free_min && req_class == VM_ALLOC_SYSTEM) ||
3009 	    (count < npages && req_class == VM_ALLOC_INTERRUPT))
3010 		return (false);
3011 
3012 	/*
3013 	 * Scan up to three times, relaxing the restrictions ("options") on
3014 	 * the reclamation of reservations and superpages each time.
3015 	 */
3016 	for (options = VPSC_NORESERV;;) {
3017 		/*
3018 		 * Find the highest runs that satisfy the given constraints
3019 		 * and restrictions, and record them in "m_runs".
3020 		 */
3021 		curr_low = low;
3022 		count = 0;
3023 		for (;;) {
3024 			m_run = vm_phys_scan_contig(domain, npages, curr_low,
3025 			    high, alignment, boundary, options);
3026 			if (m_run == NULL)
3027 				break;
3028 			curr_low = VM_PAGE_TO_PHYS(m_run) + ptoa(npages);
3029 			m_runs[RUN_INDEX(count)] = m_run;
3030 			count++;
3031 		}
3032 
3033 		/*
3034 		 * Reclaim the highest runs in LIFO (descending) order until
3035 		 * the number of reclaimed pages, "reclaimed", is at least
3036 		 * MIN_RECLAIM.  Reset "reclaimed" each time because each
3037 		 * reclamation is idempotent, and runs will (likely) recur
3038 		 * from one scan to the next as restrictions are relaxed.
3039 		 */
3040 		reclaimed = 0;
3041 		for (i = 0; count > 0 && i < NRUNS; i++) {
3042 			count--;
3043 			m_run = m_runs[RUN_INDEX(count)];
3044 			error = vm_page_reclaim_run(req_class, domain, npages,
3045 			    m_run, high);
3046 			if (error == 0) {
3047 				reclaimed += npages;
3048 				if (reclaimed >= MIN_RECLAIM)
3049 					return (true);
3050 			}
3051 		}
3052 
3053 		/*
3054 		 * Either relax the restrictions on the next scan or return if
3055 		 * the last scan had no restrictions.
3056 		 */
3057 		if (options == VPSC_NORESERV)
3058 			options = VPSC_NOSUPER;
3059 		else if (options == VPSC_NOSUPER)
3060 			options = VPSC_ANY;
3061 		else if (options == VPSC_ANY)
3062 			return (reclaimed != 0);
3063 	}
3064 }
3065 
3066 bool
3067 vm_page_reclaim_contig(int req, u_long npages, vm_paddr_t low, vm_paddr_t high,
3068     u_long alignment, vm_paddr_t boundary)
3069 {
3070 	struct vm_domainset_iter di;
3071 	int domain;
3072 	bool ret;
3073 
3074 	vm_domainset_iter_page_init(&di, NULL, 0, &domain, &req);
3075 	do {
3076 		ret = vm_page_reclaim_contig_domain(domain, req, npages, low,
3077 		    high, alignment, boundary);
3078 		if (ret)
3079 			break;
3080 	} while (vm_domainset_iter_page(&di, NULL, &domain) == 0);
3081 
3082 	return (ret);
3083 }
3084 
3085 /*
3086  * Set the domain in the appropriate page level domainset.
3087  */
3088 void
3089 vm_domain_set(struct vm_domain *vmd)
3090 {
3091 
3092 	mtx_lock(&vm_domainset_lock);
3093 	if (!vmd->vmd_minset && vm_paging_min(vmd)) {
3094 		vmd->vmd_minset = 1;
3095 		DOMAINSET_SET(vmd->vmd_domain, &vm_min_domains);
3096 	}
3097 	if (!vmd->vmd_severeset && vm_paging_severe(vmd)) {
3098 		vmd->vmd_severeset = 1;
3099 		DOMAINSET_SET(vmd->vmd_domain, &vm_severe_domains);
3100 	}
3101 	mtx_unlock(&vm_domainset_lock);
3102 }
3103 
3104 /*
3105  * Clear the domain from the appropriate page level domainset.
3106  */
3107 void
3108 vm_domain_clear(struct vm_domain *vmd)
3109 {
3110 
3111 	mtx_lock(&vm_domainset_lock);
3112 	if (vmd->vmd_minset && !vm_paging_min(vmd)) {
3113 		vmd->vmd_minset = 0;
3114 		DOMAINSET_CLR(vmd->vmd_domain, &vm_min_domains);
3115 		if (vm_min_waiters != 0) {
3116 			vm_min_waiters = 0;
3117 			wakeup(&vm_min_domains);
3118 		}
3119 	}
3120 	if (vmd->vmd_severeset && !vm_paging_severe(vmd)) {
3121 		vmd->vmd_severeset = 0;
3122 		DOMAINSET_CLR(vmd->vmd_domain, &vm_severe_domains);
3123 		if (vm_severe_waiters != 0) {
3124 			vm_severe_waiters = 0;
3125 			wakeup(&vm_severe_domains);
3126 		}
3127 	}
3128 
3129 	/*
3130 	 * If pageout daemon needs pages, then tell it that there are
3131 	 * some free.
3132 	 */
3133 	if (vmd->vmd_pageout_pages_needed &&
3134 	    vmd->vmd_free_count >= vmd->vmd_pageout_free_min) {
3135 		wakeup(&vmd->vmd_pageout_pages_needed);
3136 		vmd->vmd_pageout_pages_needed = 0;
3137 	}
3138 
3139 	/* See comments in vm_wait_doms(). */
3140 	if (vm_pageproc_waiters) {
3141 		vm_pageproc_waiters = 0;
3142 		wakeup(&vm_pageproc_waiters);
3143 	}
3144 	mtx_unlock(&vm_domainset_lock);
3145 }
3146 
3147 /*
3148  * Wait for free pages to exceed the min threshold globally.
3149  */
3150 void
3151 vm_wait_min(void)
3152 {
3153 
3154 	mtx_lock(&vm_domainset_lock);
3155 	while (vm_page_count_min()) {
3156 		vm_min_waiters++;
3157 		msleep(&vm_min_domains, &vm_domainset_lock, PVM, "vmwait", 0);
3158 	}
3159 	mtx_unlock(&vm_domainset_lock);
3160 }
3161 
3162 /*
3163  * Wait for free pages to exceed the severe threshold globally.
3164  */
3165 void
3166 vm_wait_severe(void)
3167 {
3168 
3169 	mtx_lock(&vm_domainset_lock);
3170 	while (vm_page_count_severe()) {
3171 		vm_severe_waiters++;
3172 		msleep(&vm_severe_domains, &vm_domainset_lock, PVM,
3173 		    "vmwait", 0);
3174 	}
3175 	mtx_unlock(&vm_domainset_lock);
3176 }
3177 
3178 u_int
3179 vm_wait_count(void)
3180 {
3181 
3182 	return (vm_severe_waiters + vm_min_waiters + vm_pageproc_waiters);
3183 }
3184 
3185 int
3186 vm_wait_doms(const domainset_t *wdoms, int mflags)
3187 {
3188 	int error;
3189 
3190 	error = 0;
3191 
3192 	/*
3193 	 * We use racey wakeup synchronization to avoid expensive global
3194 	 * locking for the pageproc when sleeping with a non-specific vm_wait.
3195 	 * To handle this, we only sleep for one tick in this instance.  It
3196 	 * is expected that most allocations for the pageproc will come from
3197 	 * kmem or vm_page_grab* which will use the more specific and
3198 	 * race-free vm_wait_domain().
3199 	 */
3200 	if (curproc == pageproc) {
3201 		mtx_lock(&vm_domainset_lock);
3202 		vm_pageproc_waiters++;
3203 		error = msleep(&vm_pageproc_waiters, &vm_domainset_lock,
3204 		    PVM | PDROP | mflags, "pageprocwait", 1);
3205 	} else {
3206 		/*
3207 		 * XXX Ideally we would wait only until the allocation could
3208 		 * be satisfied.  This condition can cause new allocators to
3209 		 * consume all freed pages while old allocators wait.
3210 		 */
3211 		mtx_lock(&vm_domainset_lock);
3212 		if (vm_page_count_min_set(wdoms)) {
3213 			vm_min_waiters++;
3214 			error = msleep(&vm_min_domains, &vm_domainset_lock,
3215 			    PVM | PDROP | mflags, "vmwait", 0);
3216 		} else
3217 			mtx_unlock(&vm_domainset_lock);
3218 	}
3219 	return (error);
3220 }
3221 
3222 /*
3223  *	vm_wait_domain:
3224  *
3225  *	Sleep until free pages are available for allocation.
3226  *	- Called in various places after failed memory allocations.
3227  */
3228 void
3229 vm_wait_domain(int domain)
3230 {
3231 	struct vm_domain *vmd;
3232 	domainset_t wdom;
3233 
3234 	vmd = VM_DOMAIN(domain);
3235 	vm_domain_free_assert_unlocked(vmd);
3236 
3237 	if (curproc == pageproc) {
3238 		mtx_lock(&vm_domainset_lock);
3239 		if (vmd->vmd_free_count < vmd->vmd_pageout_free_min) {
3240 			vmd->vmd_pageout_pages_needed = 1;
3241 			msleep(&vmd->vmd_pageout_pages_needed,
3242 			    &vm_domainset_lock, PDROP | PSWP, "VMWait", 0);
3243 		} else
3244 			mtx_unlock(&vm_domainset_lock);
3245 	} else {
3246 		if (pageproc == NULL)
3247 			panic("vm_wait in early boot");
3248 		DOMAINSET_ZERO(&wdom);
3249 		DOMAINSET_SET(vmd->vmd_domain, &wdom);
3250 		vm_wait_doms(&wdom, 0);
3251 	}
3252 }
3253 
3254 static int
3255 vm_wait_flags(vm_object_t obj, int mflags)
3256 {
3257 	struct domainset *d;
3258 
3259 	d = NULL;
3260 
3261 	/*
3262 	 * Carefully fetch pointers only once: the struct domainset
3263 	 * itself is ummutable but the pointer might change.
3264 	 */
3265 	if (obj != NULL)
3266 		d = obj->domain.dr_policy;
3267 	if (d == NULL)
3268 		d = curthread->td_domain.dr_policy;
3269 
3270 	return (vm_wait_doms(&d->ds_mask, mflags));
3271 }
3272 
3273 /*
3274  *	vm_wait:
3275  *
3276  *	Sleep until free pages are available for allocation in the
3277  *	affinity domains of the obj.  If obj is NULL, the domain set
3278  *	for the calling thread is used.
3279  *	Called in various places after failed memory allocations.
3280  */
3281 void
3282 vm_wait(vm_object_t obj)
3283 {
3284 	(void)vm_wait_flags(obj, 0);
3285 }
3286 
3287 int
3288 vm_wait_intr(vm_object_t obj)
3289 {
3290 	return (vm_wait_flags(obj, PCATCH));
3291 }
3292 
3293 /*
3294  *	vm_domain_alloc_fail:
3295  *
3296  *	Called when a page allocation function fails.  Informs the
3297  *	pagedaemon and performs the requested wait.  Requires the
3298  *	domain_free and object lock on entry.  Returns with the
3299  *	object lock held and free lock released.  Returns an error when
3300  *	retry is necessary.
3301  *
3302  */
3303 static int
3304 vm_domain_alloc_fail(struct vm_domain *vmd, vm_object_t object, int req)
3305 {
3306 
3307 	vm_domain_free_assert_unlocked(vmd);
3308 
3309 	atomic_add_int(&vmd->vmd_pageout_deficit,
3310 	    max((u_int)req >> VM_ALLOC_COUNT_SHIFT, 1));
3311 	if (req & (VM_ALLOC_WAITOK | VM_ALLOC_WAITFAIL)) {
3312 		if (object != NULL)
3313 			VM_OBJECT_WUNLOCK(object);
3314 		vm_wait_domain(vmd->vmd_domain);
3315 		if (object != NULL)
3316 			VM_OBJECT_WLOCK(object);
3317 		if (req & VM_ALLOC_WAITOK)
3318 			return (EAGAIN);
3319 	}
3320 
3321 	return (0);
3322 }
3323 
3324 /*
3325  *	vm_waitpfault:
3326  *
3327  *	Sleep until free pages are available for allocation.
3328  *	- Called only in vm_fault so that processes page faulting
3329  *	  can be easily tracked.
3330  *	- Sleeps at a lower priority than vm_wait() so that vm_wait()ing
3331  *	  processes will be able to grab memory first.  Do not change
3332  *	  this balance without careful testing first.
3333  */
3334 void
3335 vm_waitpfault(struct domainset *dset, int timo)
3336 {
3337 
3338 	/*
3339 	 * XXX Ideally we would wait only until the allocation could
3340 	 * be satisfied.  This condition can cause new allocators to
3341 	 * consume all freed pages while old allocators wait.
3342 	 */
3343 	mtx_lock(&vm_domainset_lock);
3344 	if (vm_page_count_min_set(&dset->ds_mask)) {
3345 		vm_min_waiters++;
3346 		msleep(&vm_min_domains, &vm_domainset_lock, PUSER | PDROP,
3347 		    "pfault", timo);
3348 	} else
3349 		mtx_unlock(&vm_domainset_lock);
3350 }
3351 
3352 static struct vm_pagequeue *
3353 _vm_page_pagequeue(vm_page_t m, uint8_t queue)
3354 {
3355 
3356 	return (&vm_pagequeue_domain(m)->vmd_pagequeues[queue]);
3357 }
3358 
3359 #ifdef INVARIANTS
3360 static struct vm_pagequeue *
3361 vm_page_pagequeue(vm_page_t m)
3362 {
3363 
3364 	return (_vm_page_pagequeue(m, vm_page_astate_load(m).queue));
3365 }
3366 #endif
3367 
3368 static __always_inline bool
3369 vm_page_pqstate_fcmpset(vm_page_t m, vm_page_astate_t *old, vm_page_astate_t new)
3370 {
3371 	vm_page_astate_t tmp;
3372 
3373 	tmp = *old;
3374 	do {
3375 		if (__predict_true(vm_page_astate_fcmpset(m, old, new)))
3376 			return (true);
3377 		counter_u64_add(pqstate_commit_retries, 1);
3378 	} while (old->_bits == tmp._bits);
3379 
3380 	return (false);
3381 }
3382 
3383 /*
3384  * Do the work of committing a queue state update that moves the page out of
3385  * its current queue.
3386  */
3387 static bool
3388 _vm_page_pqstate_commit_dequeue(struct vm_pagequeue *pq, vm_page_t m,
3389     vm_page_astate_t *old, vm_page_astate_t new)
3390 {
3391 	vm_page_t next;
3392 
3393 	vm_pagequeue_assert_locked(pq);
3394 	KASSERT(vm_page_pagequeue(m) == pq,
3395 	    ("%s: queue %p does not match page %p", __func__, pq, m));
3396 	KASSERT(old->queue != PQ_NONE && new.queue != old->queue,
3397 	    ("%s: invalid queue indices %d %d",
3398 	    __func__, old->queue, new.queue));
3399 
3400 	/*
3401 	 * Once the queue index of the page changes there is nothing
3402 	 * synchronizing with further updates to the page's physical
3403 	 * queue state.  Therefore we must speculatively remove the page
3404 	 * from the queue now and be prepared to roll back if the queue
3405 	 * state update fails.  If the page is not physically enqueued then
3406 	 * we just update its queue index.
3407 	 */
3408 	if ((old->flags & PGA_ENQUEUED) != 0) {
3409 		new.flags &= ~PGA_ENQUEUED;
3410 		next = TAILQ_NEXT(m, plinks.q);
3411 		TAILQ_REMOVE(&pq->pq_pl, m, plinks.q);
3412 		vm_pagequeue_cnt_dec(pq);
3413 		if (!vm_page_pqstate_fcmpset(m, old, new)) {
3414 			if (next == NULL)
3415 				TAILQ_INSERT_TAIL(&pq->pq_pl, m, plinks.q);
3416 			else
3417 				TAILQ_INSERT_BEFORE(next, m, plinks.q);
3418 			vm_pagequeue_cnt_inc(pq);
3419 			return (false);
3420 		} else {
3421 			return (true);
3422 		}
3423 	} else {
3424 		return (vm_page_pqstate_fcmpset(m, old, new));
3425 	}
3426 }
3427 
3428 static bool
3429 vm_page_pqstate_commit_dequeue(vm_page_t m, vm_page_astate_t *old,
3430     vm_page_astate_t new)
3431 {
3432 	struct vm_pagequeue *pq;
3433 	vm_page_astate_t as;
3434 	bool ret;
3435 
3436 	pq = _vm_page_pagequeue(m, old->queue);
3437 
3438 	/*
3439 	 * The queue field and PGA_ENQUEUED flag are stable only so long as the
3440 	 * corresponding page queue lock is held.
3441 	 */
3442 	vm_pagequeue_lock(pq);
3443 	as = vm_page_astate_load(m);
3444 	if (__predict_false(as._bits != old->_bits)) {
3445 		*old = as;
3446 		ret = false;
3447 	} else {
3448 		ret = _vm_page_pqstate_commit_dequeue(pq, m, old, new);
3449 	}
3450 	vm_pagequeue_unlock(pq);
3451 	return (ret);
3452 }
3453 
3454 /*
3455  * Commit a queue state update that enqueues or requeues a page.
3456  */
3457 static bool
3458 _vm_page_pqstate_commit_requeue(struct vm_pagequeue *pq, vm_page_t m,
3459     vm_page_astate_t *old, vm_page_astate_t new)
3460 {
3461 	struct vm_domain *vmd;
3462 
3463 	vm_pagequeue_assert_locked(pq);
3464 	KASSERT(old->queue != PQ_NONE && new.queue == old->queue,
3465 	    ("%s: invalid queue indices %d %d",
3466 	    __func__, old->queue, new.queue));
3467 
3468 	new.flags |= PGA_ENQUEUED;
3469 	if (!vm_page_pqstate_fcmpset(m, old, new))
3470 		return (false);
3471 
3472 	if ((old->flags & PGA_ENQUEUED) != 0)
3473 		TAILQ_REMOVE(&pq->pq_pl, m, plinks.q);
3474 	else
3475 		vm_pagequeue_cnt_inc(pq);
3476 
3477 	/*
3478 	 * Give PGA_REQUEUE_HEAD precedence over PGA_REQUEUE.  In particular, if
3479 	 * both flags are set in close succession, only PGA_REQUEUE_HEAD will be
3480 	 * applied, even if it was set first.
3481 	 */
3482 	if ((old->flags & PGA_REQUEUE_HEAD) != 0) {
3483 		vmd = vm_pagequeue_domain(m);
3484 		KASSERT(pq == &vmd->vmd_pagequeues[PQ_INACTIVE],
3485 		    ("%s: invalid page queue for page %p", __func__, m));
3486 		TAILQ_INSERT_BEFORE(&vmd->vmd_inacthead, m, plinks.q);
3487 	} else {
3488 		TAILQ_INSERT_TAIL(&pq->pq_pl, m, plinks.q);
3489 	}
3490 	return (true);
3491 }
3492 
3493 /*
3494  * Commit a queue state update that encodes a request for a deferred queue
3495  * operation.
3496  */
3497 static bool
3498 vm_page_pqstate_commit_request(vm_page_t m, vm_page_astate_t *old,
3499     vm_page_astate_t new)
3500 {
3501 
3502 	KASSERT(old->queue == new.queue || new.queue != PQ_NONE,
3503 	    ("%s: invalid state, queue %d flags %x",
3504 	    __func__, new.queue, new.flags));
3505 
3506 	if (old->_bits != new._bits &&
3507 	    !vm_page_pqstate_fcmpset(m, old, new))
3508 		return (false);
3509 	vm_page_pqbatch_submit(m, new.queue);
3510 	return (true);
3511 }
3512 
3513 /*
3514  * A generic queue state update function.  This handles more cases than the
3515  * specialized functions above.
3516  */
3517 bool
3518 vm_page_pqstate_commit(vm_page_t m, vm_page_astate_t *old, vm_page_astate_t new)
3519 {
3520 
3521 	if (old->_bits == new._bits)
3522 		return (true);
3523 
3524 	if (old->queue != PQ_NONE && new.queue != old->queue) {
3525 		if (!vm_page_pqstate_commit_dequeue(m, old, new))
3526 			return (false);
3527 		if (new.queue != PQ_NONE)
3528 			vm_page_pqbatch_submit(m, new.queue);
3529 	} else {
3530 		if (!vm_page_pqstate_fcmpset(m, old, new))
3531 			return (false);
3532 		if (new.queue != PQ_NONE &&
3533 		    ((new.flags & ~old->flags) & PGA_QUEUE_OP_MASK) != 0)
3534 			vm_page_pqbatch_submit(m, new.queue);
3535 	}
3536 	return (true);
3537 }
3538 
3539 /*
3540  * Apply deferred queue state updates to a page.
3541  */
3542 static inline void
3543 vm_pqbatch_process_page(struct vm_pagequeue *pq, vm_page_t m, uint8_t queue)
3544 {
3545 	vm_page_astate_t new, old;
3546 
3547 	CRITICAL_ASSERT(curthread);
3548 	vm_pagequeue_assert_locked(pq);
3549 	KASSERT(queue < PQ_COUNT,
3550 	    ("%s: invalid queue index %d", __func__, queue));
3551 	KASSERT(pq == _vm_page_pagequeue(m, queue),
3552 	    ("%s: page %p does not belong to queue %p", __func__, m, pq));
3553 
3554 	for (old = vm_page_astate_load(m);;) {
3555 		if (__predict_false(old.queue != queue ||
3556 		    (old.flags & PGA_QUEUE_OP_MASK) == 0)) {
3557 			counter_u64_add(queue_nops, 1);
3558 			break;
3559 		}
3560 		KASSERT((m->oflags & VPO_UNMANAGED) == 0,
3561 		    ("%s: page %p is unmanaged", __func__, m));
3562 
3563 		new = old;
3564 		if ((old.flags & PGA_DEQUEUE) != 0) {
3565 			new.flags &= ~PGA_QUEUE_OP_MASK;
3566 			new.queue = PQ_NONE;
3567 			if (__predict_true(_vm_page_pqstate_commit_dequeue(pq,
3568 			    m, &old, new))) {
3569 				counter_u64_add(queue_ops, 1);
3570 				break;
3571 			}
3572 		} else {
3573 			new.flags &= ~(PGA_REQUEUE | PGA_REQUEUE_HEAD);
3574 			if (__predict_true(_vm_page_pqstate_commit_requeue(pq,
3575 			    m, &old, new))) {
3576 				counter_u64_add(queue_ops, 1);
3577 				break;
3578 			}
3579 		}
3580 	}
3581 }
3582 
3583 static void
3584 vm_pqbatch_process(struct vm_pagequeue *pq, struct vm_batchqueue *bq,
3585     uint8_t queue)
3586 {
3587 	int i;
3588 
3589 	for (i = 0; i < bq->bq_cnt; i++)
3590 		vm_pqbatch_process_page(pq, bq->bq_pa[i], queue);
3591 	vm_batchqueue_init(bq);
3592 }
3593 
3594 /*
3595  *	vm_page_pqbatch_submit:		[ internal use only ]
3596  *
3597  *	Enqueue a page in the specified page queue's batched work queue.
3598  *	The caller must have encoded the requested operation in the page
3599  *	structure's a.flags field.
3600  */
3601 void
3602 vm_page_pqbatch_submit(vm_page_t m, uint8_t queue)
3603 {
3604 	struct vm_batchqueue *bq;
3605 	struct vm_pagequeue *pq;
3606 	int domain;
3607 
3608 	KASSERT(queue < PQ_COUNT, ("invalid queue %d", queue));
3609 
3610 	domain = vm_page_domain(m);
3611 	critical_enter();
3612 	bq = DPCPU_PTR(pqbatch[domain][queue]);
3613 	if (vm_batchqueue_insert(bq, m)) {
3614 		critical_exit();
3615 		return;
3616 	}
3617 	critical_exit();
3618 
3619 	pq = &VM_DOMAIN(domain)->vmd_pagequeues[queue];
3620 	vm_pagequeue_lock(pq);
3621 	critical_enter();
3622 	bq = DPCPU_PTR(pqbatch[domain][queue]);
3623 	vm_pqbatch_process(pq, bq, queue);
3624 	vm_pqbatch_process_page(pq, m, queue);
3625 	vm_pagequeue_unlock(pq);
3626 	critical_exit();
3627 }
3628 
3629 /*
3630  *	vm_page_pqbatch_drain:		[ internal use only ]
3631  *
3632  *	Force all per-CPU page queue batch queues to be drained.  This is
3633  *	intended for use in severe memory shortages, to ensure that pages
3634  *	do not remain stuck in the batch queues.
3635  */
3636 void
3637 vm_page_pqbatch_drain(void)
3638 {
3639 	struct thread *td;
3640 	struct vm_domain *vmd;
3641 	struct vm_pagequeue *pq;
3642 	int cpu, domain, queue;
3643 
3644 	td = curthread;
3645 	CPU_FOREACH(cpu) {
3646 		thread_lock(td);
3647 		sched_bind(td, cpu);
3648 		thread_unlock(td);
3649 
3650 		for (domain = 0; domain < vm_ndomains; domain++) {
3651 			vmd = VM_DOMAIN(domain);
3652 			for (queue = 0; queue < PQ_COUNT; queue++) {
3653 				pq = &vmd->vmd_pagequeues[queue];
3654 				vm_pagequeue_lock(pq);
3655 				critical_enter();
3656 				vm_pqbatch_process(pq,
3657 				    DPCPU_PTR(pqbatch[domain][queue]), queue);
3658 				critical_exit();
3659 				vm_pagequeue_unlock(pq);
3660 			}
3661 		}
3662 	}
3663 	thread_lock(td);
3664 	sched_unbind(td);
3665 	thread_unlock(td);
3666 }
3667 
3668 /*
3669  *	vm_page_dequeue_deferred:	[ internal use only ]
3670  *
3671  *	Request removal of the given page from its current page
3672  *	queue.  Physical removal from the queue may be deferred
3673  *	indefinitely.
3674  */
3675 void
3676 vm_page_dequeue_deferred(vm_page_t m)
3677 {
3678 	vm_page_astate_t new, old;
3679 
3680 	old = vm_page_astate_load(m);
3681 	do {
3682 		if (old.queue == PQ_NONE) {
3683 			KASSERT((old.flags & PGA_QUEUE_STATE_MASK) == 0,
3684 			    ("%s: page %p has unexpected queue state",
3685 			    __func__, m));
3686 			break;
3687 		}
3688 		new = old;
3689 		new.flags |= PGA_DEQUEUE;
3690 	} while (!vm_page_pqstate_commit_request(m, &old, new));
3691 }
3692 
3693 /*
3694  *	vm_page_dequeue:
3695  *
3696  *	Remove the page from whichever page queue it's in, if any, before
3697  *	returning.
3698  */
3699 void
3700 vm_page_dequeue(vm_page_t m)
3701 {
3702 	vm_page_astate_t new, old;
3703 
3704 	old = vm_page_astate_load(m);
3705 	do {
3706 		if (old.queue == PQ_NONE) {
3707 			KASSERT((old.flags & PGA_QUEUE_STATE_MASK) == 0,
3708 			    ("%s: page %p has unexpected queue state",
3709 			    __func__, m));
3710 			break;
3711 		}
3712 		new = old;
3713 		new.flags &= ~PGA_QUEUE_OP_MASK;
3714 		new.queue = PQ_NONE;
3715 	} while (!vm_page_pqstate_commit_dequeue(m, &old, new));
3716 
3717 }
3718 
3719 /*
3720  * Schedule the given page for insertion into the specified page queue.
3721  * Physical insertion of the page may be deferred indefinitely.
3722  */
3723 static void
3724 vm_page_enqueue(vm_page_t m, uint8_t queue)
3725 {
3726 
3727 	KASSERT(m->a.queue == PQ_NONE &&
3728 	    (m->a.flags & PGA_QUEUE_STATE_MASK) == 0,
3729 	    ("%s: page %p is already enqueued", __func__, m));
3730 	KASSERT(m->ref_count > 0,
3731 	    ("%s: page %p does not carry any references", __func__, m));
3732 
3733 	m->a.queue = queue;
3734 	if ((m->a.flags & PGA_REQUEUE) == 0)
3735 		vm_page_aflag_set(m, PGA_REQUEUE);
3736 	vm_page_pqbatch_submit(m, queue);
3737 }
3738 
3739 /*
3740  *	vm_page_free_prep:
3741  *
3742  *	Prepares the given page to be put on the free list,
3743  *	disassociating it from any VM object. The caller may return
3744  *	the page to the free list only if this function returns true.
3745  *
3746  *	The object, if it exists, must be locked, and then the page must
3747  *	be xbusy.  Otherwise the page must be not busied.  A managed
3748  *	page must be unmapped.
3749  */
3750 static bool
3751 vm_page_free_prep(vm_page_t m)
3752 {
3753 
3754 	/*
3755 	 * Synchronize with threads that have dropped a reference to this
3756 	 * page.
3757 	 */
3758 	atomic_thread_fence_acq();
3759 
3760 #if defined(DIAGNOSTIC) && defined(PHYS_TO_DMAP)
3761 	if (PMAP_HAS_DMAP && (m->flags & PG_ZERO) != 0) {
3762 		uint64_t *p;
3763 		int i;
3764 		p = (uint64_t *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(m));
3765 		for (i = 0; i < PAGE_SIZE / sizeof(uint64_t); i++, p++)
3766 			KASSERT(*p == 0, ("vm_page_free_prep %p PG_ZERO %d %jx",
3767 			    m, i, (uintmax_t)*p));
3768 	}
3769 #endif
3770 	if ((m->oflags & VPO_UNMANAGED) == 0) {
3771 		KASSERT(!pmap_page_is_mapped(m),
3772 		    ("vm_page_free_prep: freeing mapped page %p", m));
3773 		KASSERT((m->a.flags & (PGA_EXECUTABLE | PGA_WRITEABLE)) == 0,
3774 		    ("vm_page_free_prep: mapping flags set in page %p", m));
3775 	} else {
3776 		KASSERT(m->a.queue == PQ_NONE,
3777 		    ("vm_page_free_prep: unmanaged page %p is queued", m));
3778 	}
3779 	VM_CNT_INC(v_tfree);
3780 
3781 	if (m->object != NULL) {
3782 		KASSERT(((m->oflags & VPO_UNMANAGED) != 0) ==
3783 		    ((m->object->flags & OBJ_UNMANAGED) != 0),
3784 		    ("vm_page_free_prep: managed flag mismatch for page %p",
3785 		    m));
3786 		vm_page_assert_xbusied(m);
3787 
3788 		/*
3789 		 * The object reference can be released without an atomic
3790 		 * operation.
3791 		 */
3792 		KASSERT((m->flags & PG_FICTITIOUS) != 0 ||
3793 		    m->ref_count == VPRC_OBJREF,
3794 		    ("vm_page_free_prep: page %p has unexpected ref_count %u",
3795 		    m, m->ref_count));
3796 		vm_page_object_remove(m);
3797 		m->ref_count -= VPRC_OBJREF;
3798 	} else
3799 		vm_page_assert_unbusied(m);
3800 
3801 	vm_page_busy_free(m);
3802 
3803 	/*
3804 	 * If fictitious remove object association and
3805 	 * return.
3806 	 */
3807 	if ((m->flags & PG_FICTITIOUS) != 0) {
3808 		KASSERT(m->ref_count == 1,
3809 		    ("fictitious page %p is referenced", m));
3810 		KASSERT(m->a.queue == PQ_NONE,
3811 		    ("fictitious page %p is queued", m));
3812 		return (false);
3813 	}
3814 
3815 	/*
3816 	 * Pages need not be dequeued before they are returned to the physical
3817 	 * memory allocator, but they must at least be marked for a deferred
3818 	 * dequeue.
3819 	 */
3820 	if ((m->oflags & VPO_UNMANAGED) == 0)
3821 		vm_page_dequeue_deferred(m);
3822 
3823 	m->valid = 0;
3824 	vm_page_undirty(m);
3825 
3826 	if (m->ref_count != 0)
3827 		panic("vm_page_free_prep: page %p has references", m);
3828 
3829 	/*
3830 	 * Restore the default memory attribute to the page.
3831 	 */
3832 	if (pmap_page_get_memattr(m) != VM_MEMATTR_DEFAULT)
3833 		pmap_page_set_memattr(m, VM_MEMATTR_DEFAULT);
3834 
3835 #if VM_NRESERVLEVEL > 0
3836 	/*
3837 	 * Determine whether the page belongs to a reservation.  If the page was
3838 	 * allocated from a per-CPU cache, it cannot belong to a reservation, so
3839 	 * as an optimization, we avoid the check in that case.
3840 	 */
3841 	if ((m->flags & PG_PCPU_CACHE) == 0 && vm_reserv_free_page(m))
3842 		return (false);
3843 #endif
3844 
3845 	return (true);
3846 }
3847 
3848 /*
3849  *	vm_page_free_toq:
3850  *
3851  *	Returns the given page to the free list, disassociating it
3852  *	from any VM object.
3853  *
3854  *	The object must be locked.  The page must be exclusively busied if it
3855  *	belongs to an object.
3856  */
3857 static void
3858 vm_page_free_toq(vm_page_t m)
3859 {
3860 	struct vm_domain *vmd;
3861 	uma_zone_t zone;
3862 
3863 	if (!vm_page_free_prep(m))
3864 		return;
3865 
3866 	vmd = vm_pagequeue_domain(m);
3867 	zone = vmd->vmd_pgcache[m->pool].zone;
3868 	if ((m->flags & PG_PCPU_CACHE) != 0 && zone != NULL) {
3869 		uma_zfree(zone, m);
3870 		return;
3871 	}
3872 	vm_domain_free_lock(vmd);
3873 	vm_phys_free_pages(m, 0);
3874 	vm_domain_free_unlock(vmd);
3875 	vm_domain_freecnt_inc(vmd, 1);
3876 }
3877 
3878 /*
3879  *	vm_page_free_pages_toq:
3880  *
3881  *	Returns a list of pages to the free list, disassociating it
3882  *	from any VM object.  In other words, this is equivalent to
3883  *	calling vm_page_free_toq() for each page of a list of VM objects.
3884  */
3885 void
3886 vm_page_free_pages_toq(struct spglist *free, bool update_wire_count)
3887 {
3888 	vm_page_t m;
3889 	int count;
3890 
3891 	if (SLIST_EMPTY(free))
3892 		return;
3893 
3894 	count = 0;
3895 	while ((m = SLIST_FIRST(free)) != NULL) {
3896 		count++;
3897 		SLIST_REMOVE_HEAD(free, plinks.s.ss);
3898 		vm_page_free_toq(m);
3899 	}
3900 
3901 	if (update_wire_count)
3902 		vm_wire_sub(count);
3903 }
3904 
3905 /*
3906  * Mark this page as wired down.  For managed pages, this prevents reclamation
3907  * by the page daemon, or when the containing object, if any, is destroyed.
3908  */
3909 void
3910 vm_page_wire(vm_page_t m)
3911 {
3912 	u_int old;
3913 
3914 #ifdef INVARIANTS
3915 	if (m->object != NULL && !vm_page_busied(m) &&
3916 	    !vm_object_busied(m->object))
3917 		VM_OBJECT_ASSERT_LOCKED(m->object);
3918 #endif
3919 	KASSERT((m->flags & PG_FICTITIOUS) == 0 ||
3920 	    VPRC_WIRE_COUNT(m->ref_count) >= 1,
3921 	    ("vm_page_wire: fictitious page %p has zero wirings", m));
3922 
3923 	old = atomic_fetchadd_int(&m->ref_count, 1);
3924 	KASSERT(VPRC_WIRE_COUNT(old) != VPRC_WIRE_COUNT_MAX,
3925 	    ("vm_page_wire: counter overflow for page %p", m));
3926 	if (VPRC_WIRE_COUNT(old) == 0) {
3927 		if ((m->oflags & VPO_UNMANAGED) == 0)
3928 			vm_page_aflag_set(m, PGA_DEQUEUE);
3929 		vm_wire_add(1);
3930 	}
3931 }
3932 
3933 /*
3934  * Attempt to wire a mapped page following a pmap lookup of that page.
3935  * This may fail if a thread is concurrently tearing down mappings of the page.
3936  * The transient failure is acceptable because it translates to the
3937  * failure of the caller pmap_extract_and_hold(), which should be then
3938  * followed by the vm_fault() fallback, see e.g. vm_fault_quick_hold_pages().
3939  */
3940 bool
3941 vm_page_wire_mapped(vm_page_t m)
3942 {
3943 	u_int old;
3944 
3945 	old = m->ref_count;
3946 	do {
3947 		KASSERT(old > 0,
3948 		    ("vm_page_wire_mapped: wiring unreferenced page %p", m));
3949 		if ((old & VPRC_BLOCKED) != 0)
3950 			return (false);
3951 	} while (!atomic_fcmpset_int(&m->ref_count, &old, old + 1));
3952 
3953 	if (VPRC_WIRE_COUNT(old) == 0) {
3954 		if ((m->oflags & VPO_UNMANAGED) == 0)
3955 			vm_page_aflag_set(m, PGA_DEQUEUE);
3956 		vm_wire_add(1);
3957 	}
3958 	return (true);
3959 }
3960 
3961 /*
3962  * Release a wiring reference to a managed page.  If the page still belongs to
3963  * an object, update its position in the page queues to reflect the reference.
3964  * If the wiring was the last reference to the page, free the page.
3965  */
3966 static void
3967 vm_page_unwire_managed(vm_page_t m, uint8_t nqueue, bool noreuse)
3968 {
3969 	u_int old;
3970 
3971 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
3972 	    ("%s: page %p is unmanaged", __func__, m));
3973 
3974 	/*
3975 	 * Update LRU state before releasing the wiring reference.
3976 	 * Use a release store when updating the reference count to
3977 	 * synchronize with vm_page_free_prep().
3978 	 */
3979 	old = m->ref_count;
3980 	do {
3981 		KASSERT(VPRC_WIRE_COUNT(old) > 0,
3982 		    ("vm_page_unwire: wire count underflow for page %p", m));
3983 
3984 		if (old > VPRC_OBJREF + 1) {
3985 			/*
3986 			 * The page has at least one other wiring reference.  An
3987 			 * earlier iteration of this loop may have called
3988 			 * vm_page_release_toq() and cleared PGA_DEQUEUE, so
3989 			 * re-set it if necessary.
3990 			 */
3991 			if ((vm_page_astate_load(m).flags & PGA_DEQUEUE) == 0)
3992 				vm_page_aflag_set(m, PGA_DEQUEUE);
3993 		} else if (old == VPRC_OBJREF + 1) {
3994 			/*
3995 			 * This is the last wiring.  Clear PGA_DEQUEUE and
3996 			 * update the page's queue state to reflect the
3997 			 * reference.  If the page does not belong to an object
3998 			 * (i.e., the VPRC_OBJREF bit is clear), we only need to
3999 			 * clear leftover queue state.
4000 			 */
4001 			vm_page_release_toq(m, nqueue, noreuse);
4002 		} else if (old == 1) {
4003 			vm_page_aflag_clear(m, PGA_DEQUEUE);
4004 		}
4005 	} while (!atomic_fcmpset_rel_int(&m->ref_count, &old, old - 1));
4006 
4007 	if (VPRC_WIRE_COUNT(old) == 1) {
4008 		vm_wire_sub(1);
4009 		if (old == 1)
4010 			vm_page_free(m);
4011 	}
4012 }
4013 
4014 /*
4015  * Release one wiring of the specified page, potentially allowing it to be
4016  * paged out.
4017  *
4018  * Only managed pages belonging to an object can be paged out.  If the number
4019  * of wirings transitions to zero and the page is eligible for page out, then
4020  * the page is added to the specified paging queue.  If the released wiring
4021  * represented the last reference to the page, the page is freed.
4022  */
4023 void
4024 vm_page_unwire(vm_page_t m, uint8_t nqueue)
4025 {
4026 
4027 	KASSERT(nqueue < PQ_COUNT,
4028 	    ("vm_page_unwire: invalid queue %u request for page %p",
4029 	    nqueue, m));
4030 
4031 	if ((m->oflags & VPO_UNMANAGED) != 0) {
4032 		if (vm_page_unwire_noq(m) && m->ref_count == 0)
4033 			vm_page_free(m);
4034 		return;
4035 	}
4036 	vm_page_unwire_managed(m, nqueue, false);
4037 }
4038 
4039 /*
4040  * Unwire a page without (re-)inserting it into a page queue.  It is up
4041  * to the caller to enqueue, requeue, or free the page as appropriate.
4042  * In most cases involving managed pages, vm_page_unwire() should be used
4043  * instead.
4044  */
4045 bool
4046 vm_page_unwire_noq(vm_page_t m)
4047 {
4048 	u_int old;
4049 
4050 	old = vm_page_drop(m, 1);
4051 	KASSERT(VPRC_WIRE_COUNT(old) != 0,
4052 	    ("vm_page_unref: counter underflow for page %p", m));
4053 	KASSERT((m->flags & PG_FICTITIOUS) == 0 || VPRC_WIRE_COUNT(old) > 1,
4054 	    ("vm_page_unref: missing ref on fictitious page %p", m));
4055 
4056 	if (VPRC_WIRE_COUNT(old) > 1)
4057 		return (false);
4058 	if ((m->oflags & VPO_UNMANAGED) == 0)
4059 		vm_page_aflag_clear(m, PGA_DEQUEUE);
4060 	vm_wire_sub(1);
4061 	return (true);
4062 }
4063 
4064 /*
4065  * Ensure that the page ends up in the specified page queue.  If the page is
4066  * active or being moved to the active queue, ensure that its act_count is
4067  * at least ACT_INIT but do not otherwise mess with it.
4068  */
4069 static __always_inline void
4070 vm_page_mvqueue(vm_page_t m, const uint8_t nqueue, const uint16_t nflag)
4071 {
4072 	vm_page_astate_t old, new;
4073 
4074 	KASSERT(m->ref_count > 0,
4075 	    ("%s: page %p does not carry any references", __func__, m));
4076 	KASSERT(nflag == PGA_REQUEUE || nflag == PGA_REQUEUE_HEAD,
4077 	    ("%s: invalid flags %x", __func__, nflag));
4078 
4079 	if ((m->oflags & VPO_UNMANAGED) != 0 || vm_page_wired(m))
4080 		return;
4081 
4082 	old = vm_page_astate_load(m);
4083 	do {
4084 		if ((old.flags & PGA_DEQUEUE) != 0)
4085 			break;
4086 		new = old;
4087 		new.flags &= ~PGA_QUEUE_OP_MASK;
4088 		if (nqueue == PQ_ACTIVE)
4089 			new.act_count = max(old.act_count, ACT_INIT);
4090 		if (old.queue == nqueue) {
4091 			if (nqueue != PQ_ACTIVE)
4092 				new.flags |= nflag;
4093 		} else {
4094 			new.flags |= nflag;
4095 			new.queue = nqueue;
4096 		}
4097 	} while (!vm_page_pqstate_commit(m, &old, new));
4098 }
4099 
4100 /*
4101  * Put the specified page on the active list (if appropriate).
4102  */
4103 void
4104 vm_page_activate(vm_page_t m)
4105 {
4106 
4107 	vm_page_mvqueue(m, PQ_ACTIVE, PGA_REQUEUE);
4108 }
4109 
4110 /*
4111  * Move the specified page to the tail of the inactive queue, or requeue
4112  * the page if it is already in the inactive queue.
4113  */
4114 void
4115 vm_page_deactivate(vm_page_t m)
4116 {
4117 
4118 	vm_page_mvqueue(m, PQ_INACTIVE, PGA_REQUEUE);
4119 }
4120 
4121 void
4122 vm_page_deactivate_noreuse(vm_page_t m)
4123 {
4124 
4125 	vm_page_mvqueue(m, PQ_INACTIVE, PGA_REQUEUE_HEAD);
4126 }
4127 
4128 /*
4129  * Put a page in the laundry, or requeue it if it is already there.
4130  */
4131 void
4132 vm_page_launder(vm_page_t m)
4133 {
4134 
4135 	vm_page_mvqueue(m, PQ_LAUNDRY, PGA_REQUEUE);
4136 }
4137 
4138 /*
4139  * Put a page in the PQ_UNSWAPPABLE holding queue.
4140  */
4141 void
4142 vm_page_unswappable(vm_page_t m)
4143 {
4144 
4145 	KASSERT(!vm_page_wired(m) && (m->oflags & VPO_UNMANAGED) == 0,
4146 	    ("page %p already unswappable", m));
4147 
4148 	vm_page_dequeue(m);
4149 	vm_page_enqueue(m, PQ_UNSWAPPABLE);
4150 }
4151 
4152 /*
4153  * Release a page back to the page queues in preparation for unwiring.
4154  */
4155 static void
4156 vm_page_release_toq(vm_page_t m, uint8_t nqueue, const bool noreuse)
4157 {
4158 	vm_page_astate_t old, new;
4159 	uint16_t nflag;
4160 
4161 	/*
4162 	 * Use a check of the valid bits to determine whether we should
4163 	 * accelerate reclamation of the page.  The object lock might not be
4164 	 * held here, in which case the check is racy.  At worst we will either
4165 	 * accelerate reclamation of a valid page and violate LRU, or
4166 	 * unnecessarily defer reclamation of an invalid page.
4167 	 *
4168 	 * If we were asked to not cache the page, place it near the head of the
4169 	 * inactive queue so that is reclaimed sooner.
4170 	 */
4171 	if (noreuse || m->valid == 0) {
4172 		nqueue = PQ_INACTIVE;
4173 		nflag = PGA_REQUEUE_HEAD;
4174 	} else {
4175 		nflag = PGA_REQUEUE;
4176 	}
4177 
4178 	old = vm_page_astate_load(m);
4179 	do {
4180 		new = old;
4181 
4182 		/*
4183 		 * If the page is already in the active queue and we are not
4184 		 * trying to accelerate reclamation, simply mark it as
4185 		 * referenced and avoid any queue operations.
4186 		 */
4187 		new.flags &= ~PGA_QUEUE_OP_MASK;
4188 		if (nflag != PGA_REQUEUE_HEAD && old.queue == PQ_ACTIVE)
4189 			new.flags |= PGA_REFERENCED;
4190 		else {
4191 			new.flags |= nflag;
4192 			new.queue = nqueue;
4193 		}
4194 	} while (!vm_page_pqstate_commit(m, &old, new));
4195 }
4196 
4197 /*
4198  * Unwire a page and either attempt to free it or re-add it to the page queues.
4199  */
4200 void
4201 vm_page_release(vm_page_t m, int flags)
4202 {
4203 	vm_object_t object;
4204 
4205 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
4206 	    ("vm_page_release: page %p is unmanaged", m));
4207 
4208 	if ((flags & VPR_TRYFREE) != 0) {
4209 		for (;;) {
4210 			object = atomic_load_ptr(&m->object);
4211 			if (object == NULL)
4212 				break;
4213 			/* Depends on type-stability. */
4214 			if (vm_page_busied(m) || !VM_OBJECT_TRYWLOCK(object))
4215 				break;
4216 			if (object == m->object) {
4217 				vm_page_release_locked(m, flags);
4218 				VM_OBJECT_WUNLOCK(object);
4219 				return;
4220 			}
4221 			VM_OBJECT_WUNLOCK(object);
4222 		}
4223 	}
4224 	vm_page_unwire_managed(m, PQ_INACTIVE, flags != 0);
4225 }
4226 
4227 /* See vm_page_release(). */
4228 void
4229 vm_page_release_locked(vm_page_t m, int flags)
4230 {
4231 
4232 	VM_OBJECT_ASSERT_WLOCKED(m->object);
4233 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
4234 	    ("vm_page_release_locked: page %p is unmanaged", m));
4235 
4236 	if (vm_page_unwire_noq(m)) {
4237 		if ((flags & VPR_TRYFREE) != 0 &&
4238 		    (m->object->ref_count == 0 || !pmap_page_is_mapped(m)) &&
4239 		    m->dirty == 0 && vm_page_tryxbusy(m)) {
4240 			/*
4241 			 * An unlocked lookup may have wired the page before the
4242 			 * busy lock was acquired, in which case the page must
4243 			 * not be freed.
4244 			 */
4245 			if (__predict_true(!vm_page_wired(m))) {
4246 				vm_page_free(m);
4247 				return;
4248 			}
4249 			vm_page_xunbusy(m);
4250 		} else {
4251 			vm_page_release_toq(m, PQ_INACTIVE, flags != 0);
4252 		}
4253 	}
4254 }
4255 
4256 static bool
4257 vm_page_try_blocked_op(vm_page_t m, void (*op)(vm_page_t))
4258 {
4259 	u_int old;
4260 
4261 	KASSERT(m->object != NULL && (m->oflags & VPO_UNMANAGED) == 0,
4262 	    ("vm_page_try_blocked_op: page %p has no object", m));
4263 	KASSERT(vm_page_busied(m),
4264 	    ("vm_page_try_blocked_op: page %p is not busy", m));
4265 	VM_OBJECT_ASSERT_LOCKED(m->object);
4266 
4267 	old = m->ref_count;
4268 	do {
4269 		KASSERT(old != 0,
4270 		    ("vm_page_try_blocked_op: page %p has no references", m));
4271 		if (VPRC_WIRE_COUNT(old) != 0)
4272 			return (false);
4273 	} while (!atomic_fcmpset_int(&m->ref_count, &old, old | VPRC_BLOCKED));
4274 
4275 	(op)(m);
4276 
4277 	/*
4278 	 * If the object is read-locked, new wirings may be created via an
4279 	 * object lookup.
4280 	 */
4281 	old = vm_page_drop(m, VPRC_BLOCKED);
4282 	KASSERT(!VM_OBJECT_WOWNED(m->object) ||
4283 	    old == (VPRC_BLOCKED | VPRC_OBJREF),
4284 	    ("vm_page_try_blocked_op: unexpected refcount value %u for %p",
4285 	    old, m));
4286 	return (true);
4287 }
4288 
4289 /*
4290  * Atomically check for wirings and remove all mappings of the page.
4291  */
4292 bool
4293 vm_page_try_remove_all(vm_page_t m)
4294 {
4295 
4296 	return (vm_page_try_blocked_op(m, pmap_remove_all));
4297 }
4298 
4299 /*
4300  * Atomically check for wirings and remove all writeable mappings of the page.
4301  */
4302 bool
4303 vm_page_try_remove_write(vm_page_t m)
4304 {
4305 
4306 	return (vm_page_try_blocked_op(m, pmap_remove_write));
4307 }
4308 
4309 /*
4310  * vm_page_advise
4311  *
4312  * 	Apply the specified advice to the given page.
4313  */
4314 void
4315 vm_page_advise(vm_page_t m, int advice)
4316 {
4317 
4318 	VM_OBJECT_ASSERT_WLOCKED(m->object);
4319 	vm_page_assert_xbusied(m);
4320 
4321 	if (advice == MADV_FREE)
4322 		/*
4323 		 * Mark the page clean.  This will allow the page to be freed
4324 		 * without first paging it out.  MADV_FREE pages are often
4325 		 * quickly reused by malloc(3), so we do not do anything that
4326 		 * would result in a page fault on a later access.
4327 		 */
4328 		vm_page_undirty(m);
4329 	else if (advice != MADV_DONTNEED) {
4330 		if (advice == MADV_WILLNEED)
4331 			vm_page_activate(m);
4332 		return;
4333 	}
4334 
4335 	if (advice != MADV_FREE && m->dirty == 0 && pmap_is_modified(m))
4336 		vm_page_dirty(m);
4337 
4338 	/*
4339 	 * Clear any references to the page.  Otherwise, the page daemon will
4340 	 * immediately reactivate the page.
4341 	 */
4342 	vm_page_aflag_clear(m, PGA_REFERENCED);
4343 
4344 	/*
4345 	 * Place clean pages near the head of the inactive queue rather than
4346 	 * the tail, thus defeating the queue's LRU operation and ensuring that
4347 	 * the page will be reused quickly.  Dirty pages not already in the
4348 	 * laundry are moved there.
4349 	 */
4350 	if (m->dirty == 0)
4351 		vm_page_deactivate_noreuse(m);
4352 	else if (!vm_page_in_laundry(m))
4353 		vm_page_launder(m);
4354 }
4355 
4356 /*
4357  *	vm_page_grab_release
4358  *
4359  *	Helper routine for grab functions to release busy on return.
4360  */
4361 static inline void
4362 vm_page_grab_release(vm_page_t m, int allocflags)
4363 {
4364 
4365 	if ((allocflags & VM_ALLOC_NOBUSY) != 0) {
4366 		if ((allocflags & VM_ALLOC_IGN_SBUSY) != 0)
4367 			vm_page_sunbusy(m);
4368 		else
4369 			vm_page_xunbusy(m);
4370 	}
4371 }
4372 
4373 /*
4374  *	vm_page_grab_sleep
4375  *
4376  *	Sleep for busy according to VM_ALLOC_ parameters.  Returns true
4377  *	if the caller should retry and false otherwise.
4378  *
4379  *	If the object is locked on entry the object will be unlocked with
4380  *	false returns and still locked but possibly having been dropped
4381  *	with true returns.
4382  */
4383 static bool
4384 vm_page_grab_sleep(vm_object_t object, vm_page_t m, vm_pindex_t pindex,
4385     const char *wmesg, int allocflags, bool locked)
4386 {
4387 
4388 	if ((allocflags & VM_ALLOC_NOWAIT) != 0)
4389 		return (false);
4390 
4391 	/*
4392 	 * Reference the page before unlocking and sleeping so that
4393 	 * the page daemon is less likely to reclaim it.
4394 	 */
4395 	if (locked && (allocflags & VM_ALLOC_NOCREAT) == 0)
4396 		vm_page_reference(m);
4397 
4398 	if (_vm_page_busy_sleep(object, m, pindex, wmesg, allocflags, locked) &&
4399 	    locked)
4400 		VM_OBJECT_WLOCK(object);
4401 	if ((allocflags & VM_ALLOC_WAITFAIL) != 0)
4402 		return (false);
4403 
4404 	return (true);
4405 }
4406 
4407 /*
4408  * Assert that the grab flags are valid.
4409  */
4410 static inline void
4411 vm_page_grab_check(int allocflags)
4412 {
4413 
4414 	KASSERT((allocflags & VM_ALLOC_NOBUSY) == 0 ||
4415 	    (allocflags & VM_ALLOC_WIRED) != 0,
4416 	    ("vm_page_grab*: the pages must be busied or wired"));
4417 
4418 	KASSERT((allocflags & VM_ALLOC_SBUSY) == 0 ||
4419 	    (allocflags & VM_ALLOC_IGN_SBUSY) != 0,
4420 	    ("vm_page_grab*: VM_ALLOC_SBUSY/VM_ALLOC_IGN_SBUSY mismatch"));
4421 }
4422 
4423 /*
4424  * Calculate the page allocation flags for grab.
4425  */
4426 static inline int
4427 vm_page_grab_pflags(int allocflags)
4428 {
4429 	int pflags;
4430 
4431 	pflags = allocflags &
4432 	    ~(VM_ALLOC_NOWAIT | VM_ALLOC_WAITOK | VM_ALLOC_WAITFAIL |
4433 	    VM_ALLOC_NOBUSY);
4434 	if ((allocflags & VM_ALLOC_NOWAIT) == 0)
4435 		pflags |= VM_ALLOC_WAITFAIL;
4436 	if ((allocflags & VM_ALLOC_IGN_SBUSY) != 0)
4437 		pflags |= VM_ALLOC_SBUSY;
4438 
4439 	return (pflags);
4440 }
4441 
4442 /*
4443  * Grab a page, waiting until we are waken up due to the page
4444  * changing state.  We keep on waiting, if the page continues
4445  * to be in the object.  If the page doesn't exist, first allocate it
4446  * and then conditionally zero it.
4447  *
4448  * This routine may sleep.
4449  *
4450  * The object must be locked on entry.  The lock will, however, be released
4451  * and reacquired if the routine sleeps.
4452  */
4453 vm_page_t
4454 vm_page_grab(vm_object_t object, vm_pindex_t pindex, int allocflags)
4455 {
4456 	vm_page_t m;
4457 
4458 	VM_OBJECT_ASSERT_WLOCKED(object);
4459 	vm_page_grab_check(allocflags);
4460 
4461 retrylookup:
4462 	if ((m = vm_page_lookup(object, pindex)) != NULL) {
4463 		if (!vm_page_tryacquire(m, allocflags)) {
4464 			if (vm_page_grab_sleep(object, m, pindex, "pgrbwt",
4465 			    allocflags, true))
4466 				goto retrylookup;
4467 			return (NULL);
4468 		}
4469 		goto out;
4470 	}
4471 	if ((allocflags & VM_ALLOC_NOCREAT) != 0)
4472 		return (NULL);
4473 	m = vm_page_alloc(object, pindex, vm_page_grab_pflags(allocflags));
4474 	if (m == NULL) {
4475 		if ((allocflags & (VM_ALLOC_NOWAIT | VM_ALLOC_WAITFAIL)) != 0)
4476 			return (NULL);
4477 		goto retrylookup;
4478 	}
4479 	if (allocflags & VM_ALLOC_ZERO && (m->flags & PG_ZERO) == 0)
4480 		pmap_zero_page(m);
4481 
4482 out:
4483 	vm_page_grab_release(m, allocflags);
4484 
4485 	return (m);
4486 }
4487 
4488 /*
4489  * Locklessly attempt to acquire a page given a (object, pindex) tuple
4490  * and an optional previous page to avoid the radix lookup.  The resulting
4491  * page will be validated against the identity tuple and busied or wired
4492  * as requested.  A NULL *mp return guarantees that the page was not in
4493  * radix at the time of the call but callers must perform higher level
4494  * synchronization or retry the operation under a lock if they require
4495  * an atomic answer.  This is the only lock free validation routine,
4496  * other routines can depend on the resulting page state.
4497  *
4498  * The return value indicates whether the operation failed due to caller
4499  * flags.  The return is tri-state with mp:
4500  *
4501  * (true, *mp != NULL) - The operation was successful.
4502  * (true, *mp == NULL) - The page was not found in tree.
4503  * (false, *mp == NULL) - WAITFAIL or NOWAIT prevented acquisition.
4504  */
4505 static bool
4506 vm_page_acquire_unlocked(vm_object_t object, vm_pindex_t pindex,
4507     vm_page_t prev, vm_page_t *mp, int allocflags)
4508 {
4509 	vm_page_t m;
4510 
4511 	vm_page_grab_check(allocflags);
4512 	MPASS(prev == NULL || vm_page_busied(prev) || vm_page_wired(prev));
4513 
4514 	*mp = NULL;
4515 	for (;;) {
4516 		/*
4517 		 * We may see a false NULL here because the previous page
4518 		 * has been removed or just inserted and the list is loaded
4519 		 * without barriers.  Switch to radix to verify.
4520 		 */
4521 		if (prev == NULL || (m = TAILQ_NEXT(prev, listq)) == NULL ||
4522 		    QMD_IS_TRASHED(m) || m->pindex != pindex ||
4523 		    atomic_load_ptr(&m->object) != object) {
4524 			prev = NULL;
4525 			/*
4526 			 * This guarantees the result is instantaneously
4527 			 * correct.
4528 			 */
4529 			m = vm_radix_lookup_unlocked(&object->rtree, pindex);
4530 		}
4531 		if (m == NULL)
4532 			return (true);
4533 		if (vm_page_trybusy(m, allocflags)) {
4534 			if (m->object == object && m->pindex == pindex)
4535 				break;
4536 			/* relookup. */
4537 			vm_page_busy_release(m);
4538 			cpu_spinwait();
4539 			continue;
4540 		}
4541 		if (!vm_page_grab_sleep(object, m, pindex, "pgnslp",
4542 		    allocflags, false))
4543 			return (false);
4544 	}
4545 	if ((allocflags & VM_ALLOC_WIRED) != 0)
4546 		vm_page_wire(m);
4547 	vm_page_grab_release(m, allocflags);
4548 	*mp = m;
4549 	return (true);
4550 }
4551 
4552 /*
4553  * Try to locklessly grab a page and fall back to the object lock if NOCREAT
4554  * is not set.
4555  */
4556 vm_page_t
4557 vm_page_grab_unlocked(vm_object_t object, vm_pindex_t pindex, int allocflags)
4558 {
4559 	vm_page_t m;
4560 
4561 	vm_page_grab_check(allocflags);
4562 
4563 	if (!vm_page_acquire_unlocked(object, pindex, NULL, &m, allocflags))
4564 		return (NULL);
4565 	if (m != NULL)
4566 		return (m);
4567 
4568 	/*
4569 	 * The radix lockless lookup should never return a false negative
4570 	 * errors.  If the user specifies NOCREAT they are guaranteed there
4571 	 * was no page present at the instant of the call.  A NOCREAT caller
4572 	 * must handle create races gracefully.
4573 	 */
4574 	if ((allocflags & VM_ALLOC_NOCREAT) != 0)
4575 		return (NULL);
4576 
4577 	VM_OBJECT_WLOCK(object);
4578 	m = vm_page_grab(object, pindex, allocflags);
4579 	VM_OBJECT_WUNLOCK(object);
4580 
4581 	return (m);
4582 }
4583 
4584 /*
4585  * Grab a page and make it valid, paging in if necessary.  Pages missing from
4586  * their pager are zero filled and validated.  If a VM_ALLOC_COUNT is supplied
4587  * and the page is not valid as many as VM_INITIAL_PAGEIN pages can be brought
4588  * in simultaneously.  Additional pages will be left on a paging queue but
4589  * will neither be wired nor busy regardless of allocflags.
4590  */
4591 int
4592 vm_page_grab_valid(vm_page_t *mp, vm_object_t object, vm_pindex_t pindex, int allocflags)
4593 {
4594 	vm_page_t m;
4595 	vm_page_t ma[VM_INITIAL_PAGEIN];
4596 	int after, i, pflags, rv;
4597 
4598 	KASSERT((allocflags & VM_ALLOC_SBUSY) == 0 ||
4599 	    (allocflags & VM_ALLOC_IGN_SBUSY) != 0,
4600 	    ("vm_page_grab_valid: VM_ALLOC_SBUSY/VM_ALLOC_IGN_SBUSY mismatch"));
4601 	KASSERT((allocflags &
4602 	    (VM_ALLOC_NOWAIT | VM_ALLOC_WAITFAIL | VM_ALLOC_ZERO)) == 0,
4603 	    ("vm_page_grab_valid: Invalid flags 0x%X", allocflags));
4604 	VM_OBJECT_ASSERT_WLOCKED(object);
4605 	pflags = allocflags & ~(VM_ALLOC_NOBUSY | VM_ALLOC_SBUSY |
4606 	    VM_ALLOC_WIRED);
4607 	pflags |= VM_ALLOC_WAITFAIL;
4608 
4609 retrylookup:
4610 	if ((m = vm_page_lookup(object, pindex)) != NULL) {
4611 		/*
4612 		 * If the page is fully valid it can only become invalid
4613 		 * with the object lock held.  If it is not valid it can
4614 		 * become valid with the busy lock held.  Therefore, we
4615 		 * may unnecessarily lock the exclusive busy here if we
4616 		 * race with I/O completion not using the object lock.
4617 		 * However, we will not end up with an invalid page and a
4618 		 * shared lock.
4619 		 */
4620 		if (!vm_page_trybusy(m,
4621 		    vm_page_all_valid(m) ? allocflags : 0)) {
4622 			(void)vm_page_grab_sleep(object, m, pindex, "pgrbwt",
4623 			    allocflags, true);
4624 			goto retrylookup;
4625 		}
4626 		if (vm_page_all_valid(m))
4627 			goto out;
4628 		if ((allocflags & VM_ALLOC_NOCREAT) != 0) {
4629 			vm_page_busy_release(m);
4630 			*mp = NULL;
4631 			return (VM_PAGER_FAIL);
4632 		}
4633 	} else if ((allocflags & VM_ALLOC_NOCREAT) != 0) {
4634 		*mp = NULL;
4635 		return (VM_PAGER_FAIL);
4636 	} else if ((m = vm_page_alloc(object, pindex, pflags)) == NULL) {
4637 		goto retrylookup;
4638 	}
4639 
4640 	vm_page_assert_xbusied(m);
4641 	if (vm_pager_has_page(object, pindex, NULL, &after)) {
4642 		after = MIN(after, VM_INITIAL_PAGEIN);
4643 		after = MIN(after, allocflags >> VM_ALLOC_COUNT_SHIFT);
4644 		after = MAX(after, 1);
4645 		ma[0] = m;
4646 		for (i = 1; i < after; i++) {
4647 			if ((ma[i] = vm_page_next(ma[i - 1])) != NULL) {
4648 				if (ma[i]->valid || !vm_page_tryxbusy(ma[i]))
4649 					break;
4650 			} else {
4651 				ma[i] = vm_page_alloc(object, m->pindex + i,
4652 				    VM_ALLOC_NORMAL);
4653 				if (ma[i] == NULL)
4654 					break;
4655 			}
4656 		}
4657 		after = i;
4658 		vm_object_pip_add(object, after);
4659 		VM_OBJECT_WUNLOCK(object);
4660 		rv = vm_pager_get_pages(object, ma, after, NULL, NULL);
4661 		VM_OBJECT_WLOCK(object);
4662 		vm_object_pip_wakeupn(object, after);
4663 		/* Pager may have replaced a page. */
4664 		m = ma[0];
4665 		if (rv != VM_PAGER_OK) {
4666 			for (i = 0; i < after; i++) {
4667 				if (!vm_page_wired(ma[i]))
4668 					vm_page_free(ma[i]);
4669 				else
4670 					vm_page_xunbusy(ma[i]);
4671 			}
4672 			*mp = NULL;
4673 			return (rv);
4674 		}
4675 		for (i = 1; i < after; i++)
4676 			vm_page_readahead_finish(ma[i]);
4677 		MPASS(vm_page_all_valid(m));
4678 	} else {
4679 		vm_page_zero_invalid(m, TRUE);
4680 	}
4681 out:
4682 	if ((allocflags & VM_ALLOC_WIRED) != 0)
4683 		vm_page_wire(m);
4684 	if ((allocflags & VM_ALLOC_SBUSY) != 0 && vm_page_xbusied(m))
4685 		vm_page_busy_downgrade(m);
4686 	else if ((allocflags & VM_ALLOC_NOBUSY) != 0)
4687 		vm_page_busy_release(m);
4688 	*mp = m;
4689 	return (VM_PAGER_OK);
4690 }
4691 
4692 /*
4693  * Locklessly grab a valid page.  If the page is not valid or not yet
4694  * allocated this will fall back to the object lock method.
4695  */
4696 int
4697 vm_page_grab_valid_unlocked(vm_page_t *mp, vm_object_t object,
4698     vm_pindex_t pindex, int allocflags)
4699 {
4700 	vm_page_t m;
4701 	int flags;
4702 	int error;
4703 
4704 	KASSERT((allocflags & VM_ALLOC_SBUSY) == 0 ||
4705 	    (allocflags & VM_ALLOC_IGN_SBUSY) != 0,
4706 	    ("vm_page_grab_valid_unlocked: VM_ALLOC_SBUSY/VM_ALLOC_IGN_SBUSY "
4707 	    "mismatch"));
4708 	KASSERT((allocflags &
4709 	    (VM_ALLOC_NOWAIT | VM_ALLOC_WAITFAIL | VM_ALLOC_ZERO)) == 0,
4710 	    ("vm_page_grab_valid_unlocked: Invalid flags 0x%X", allocflags));
4711 
4712 	/*
4713 	 * Attempt a lockless lookup and busy.  We need at least an sbusy
4714 	 * before we can inspect the valid field and return a wired page.
4715 	 */
4716 	flags = allocflags & ~(VM_ALLOC_NOBUSY | VM_ALLOC_WIRED);
4717 	if (!vm_page_acquire_unlocked(object, pindex, NULL, mp, flags))
4718 		return (VM_PAGER_FAIL);
4719 	if ((m = *mp) != NULL) {
4720 		if (vm_page_all_valid(m)) {
4721 			if ((allocflags & VM_ALLOC_WIRED) != 0)
4722 				vm_page_wire(m);
4723 			vm_page_grab_release(m, allocflags);
4724 			return (VM_PAGER_OK);
4725 		}
4726 		vm_page_busy_release(m);
4727 	}
4728 	if ((allocflags & VM_ALLOC_NOCREAT) != 0) {
4729 		*mp = NULL;
4730 		return (VM_PAGER_FAIL);
4731 	}
4732 	VM_OBJECT_WLOCK(object);
4733 	error = vm_page_grab_valid(mp, object, pindex, allocflags);
4734 	VM_OBJECT_WUNLOCK(object);
4735 
4736 	return (error);
4737 }
4738 
4739 /*
4740  * Return the specified range of pages from the given object.  For each
4741  * page offset within the range, if a page already exists within the object
4742  * at that offset and it is busy, then wait for it to change state.  If,
4743  * instead, the page doesn't exist, then allocate it.
4744  *
4745  * The caller must always specify an allocation class.
4746  *
4747  * allocation classes:
4748  *	VM_ALLOC_NORMAL		normal process request
4749  *	VM_ALLOC_SYSTEM		system *really* needs the pages
4750  *
4751  * The caller must always specify that the pages are to be busied and/or
4752  * wired.
4753  *
4754  * optional allocation flags:
4755  *	VM_ALLOC_IGN_SBUSY	do not sleep on soft busy pages
4756  *	VM_ALLOC_NOBUSY		do not exclusive busy the page
4757  *	VM_ALLOC_NOWAIT		do not sleep
4758  *	VM_ALLOC_SBUSY		set page to sbusy state
4759  *	VM_ALLOC_WIRED		wire the pages
4760  *	VM_ALLOC_ZERO		zero and validate any invalid pages
4761  *
4762  * If VM_ALLOC_NOWAIT is not specified, this routine may sleep.  Otherwise, it
4763  * may return a partial prefix of the requested range.
4764  */
4765 int
4766 vm_page_grab_pages(vm_object_t object, vm_pindex_t pindex, int allocflags,
4767     vm_page_t *ma, int count)
4768 {
4769 	vm_page_t m, mpred;
4770 	int pflags;
4771 	int i;
4772 
4773 	VM_OBJECT_ASSERT_WLOCKED(object);
4774 	KASSERT(((u_int)allocflags >> VM_ALLOC_COUNT_SHIFT) == 0,
4775 	    ("vm_page_grap_pages: VM_ALLOC_COUNT() is not allowed"));
4776 	KASSERT(count > 0,
4777 	    ("vm_page_grab_pages: invalid page count %d", count));
4778 	vm_page_grab_check(allocflags);
4779 
4780 	pflags = vm_page_grab_pflags(allocflags);
4781 	i = 0;
4782 retrylookup:
4783 	m = vm_radix_lookup_le(&object->rtree, pindex + i);
4784 	if (m == NULL || m->pindex != pindex + i) {
4785 		mpred = m;
4786 		m = NULL;
4787 	} else
4788 		mpred = TAILQ_PREV(m, pglist, listq);
4789 	for (; i < count; i++) {
4790 		if (m != NULL) {
4791 			if (!vm_page_tryacquire(m, allocflags)) {
4792 				if (vm_page_grab_sleep(object, m, pindex + i,
4793 				    "grbmaw", allocflags, true))
4794 					goto retrylookup;
4795 				break;
4796 			}
4797 		} else {
4798 			if ((allocflags & VM_ALLOC_NOCREAT) != 0)
4799 				break;
4800 			m = vm_page_alloc_after(object, pindex + i,
4801 			    pflags | VM_ALLOC_COUNT(count - i), mpred);
4802 			if (m == NULL) {
4803 				if ((allocflags & (VM_ALLOC_NOWAIT |
4804 				    VM_ALLOC_WAITFAIL)) != 0)
4805 					break;
4806 				goto retrylookup;
4807 			}
4808 		}
4809 		if (vm_page_none_valid(m) &&
4810 		    (allocflags & VM_ALLOC_ZERO) != 0) {
4811 			if ((m->flags & PG_ZERO) == 0)
4812 				pmap_zero_page(m);
4813 			vm_page_valid(m);
4814 		}
4815 		vm_page_grab_release(m, allocflags);
4816 		ma[i] = mpred = m;
4817 		m = vm_page_next(m);
4818 	}
4819 	return (i);
4820 }
4821 
4822 /*
4823  * Unlocked variant of vm_page_grab_pages().  This accepts the same flags
4824  * and will fall back to the locked variant to handle allocation.
4825  */
4826 int
4827 vm_page_grab_pages_unlocked(vm_object_t object, vm_pindex_t pindex,
4828     int allocflags, vm_page_t *ma, int count)
4829 {
4830 	vm_page_t m, pred;
4831 	int flags;
4832 	int i;
4833 
4834 	KASSERT(count > 0,
4835 	    ("vm_page_grab_pages_unlocked: invalid page count %d", count));
4836 	vm_page_grab_check(allocflags);
4837 
4838 	/*
4839 	 * Modify flags for lockless acquire to hold the page until we
4840 	 * set it valid if necessary.
4841 	 */
4842 	flags = allocflags & ~VM_ALLOC_NOBUSY;
4843 	pred = NULL;
4844 	for (i = 0; i < count; i++, pindex++) {
4845 		if (!vm_page_acquire_unlocked(object, pindex, pred, &m, flags))
4846 			return (i);
4847 		if (m == NULL)
4848 			break;
4849 		if ((flags & VM_ALLOC_ZERO) != 0 && vm_page_none_valid(m)) {
4850 			if ((m->flags & PG_ZERO) == 0)
4851 				pmap_zero_page(m);
4852 			vm_page_valid(m);
4853 		}
4854 		/* m will still be wired or busy according to flags. */
4855 		vm_page_grab_release(m, allocflags);
4856 		pred = ma[i] = m;
4857 	}
4858 	if (i == count || (allocflags & VM_ALLOC_NOCREAT) != 0)
4859 		return (i);
4860 	count -= i;
4861 	VM_OBJECT_WLOCK(object);
4862 	i += vm_page_grab_pages(object, pindex, allocflags, &ma[i], count);
4863 	VM_OBJECT_WUNLOCK(object);
4864 
4865 	return (i);
4866 }
4867 
4868 /*
4869  * Mapping function for valid or dirty bits in a page.
4870  *
4871  * Inputs are required to range within a page.
4872  */
4873 vm_page_bits_t
4874 vm_page_bits(int base, int size)
4875 {
4876 	int first_bit;
4877 	int last_bit;
4878 
4879 	KASSERT(
4880 	    base + size <= PAGE_SIZE,
4881 	    ("vm_page_bits: illegal base/size %d/%d", base, size)
4882 	);
4883 
4884 	if (size == 0)		/* handle degenerate case */
4885 		return (0);
4886 
4887 	first_bit = base >> DEV_BSHIFT;
4888 	last_bit = (base + size - 1) >> DEV_BSHIFT;
4889 
4890 	return (((vm_page_bits_t)2 << last_bit) -
4891 	    ((vm_page_bits_t)1 << first_bit));
4892 }
4893 
4894 void
4895 vm_page_bits_set(vm_page_t m, vm_page_bits_t *bits, vm_page_bits_t set)
4896 {
4897 
4898 #if PAGE_SIZE == 32768
4899 	atomic_set_64((uint64_t *)bits, set);
4900 #elif PAGE_SIZE == 16384
4901 	atomic_set_32((uint32_t *)bits, set);
4902 #elif (PAGE_SIZE == 8192) && defined(atomic_set_16)
4903 	atomic_set_16((uint16_t *)bits, set);
4904 #elif (PAGE_SIZE == 4096) && defined(atomic_set_8)
4905 	atomic_set_8((uint8_t *)bits, set);
4906 #else		/* PAGE_SIZE <= 8192 */
4907 	uintptr_t addr;
4908 	int shift;
4909 
4910 	addr = (uintptr_t)bits;
4911 	/*
4912 	 * Use a trick to perform a 32-bit atomic on the
4913 	 * containing aligned word, to not depend on the existence
4914 	 * of atomic_{set, clear}_{8, 16}.
4915 	 */
4916 	shift = addr & (sizeof(uint32_t) - 1);
4917 #if BYTE_ORDER == BIG_ENDIAN
4918 	shift = (sizeof(uint32_t) - sizeof(vm_page_bits_t) - shift) * NBBY;
4919 #else
4920 	shift *= NBBY;
4921 #endif
4922 	addr &= ~(sizeof(uint32_t) - 1);
4923 	atomic_set_32((uint32_t *)addr, set << shift);
4924 #endif		/* PAGE_SIZE */
4925 }
4926 
4927 static inline void
4928 vm_page_bits_clear(vm_page_t m, vm_page_bits_t *bits, vm_page_bits_t clear)
4929 {
4930 
4931 #if PAGE_SIZE == 32768
4932 	atomic_clear_64((uint64_t *)bits, clear);
4933 #elif PAGE_SIZE == 16384
4934 	atomic_clear_32((uint32_t *)bits, clear);
4935 #elif (PAGE_SIZE == 8192) && defined(atomic_clear_16)
4936 	atomic_clear_16((uint16_t *)bits, clear);
4937 #elif (PAGE_SIZE == 4096) && defined(atomic_clear_8)
4938 	atomic_clear_8((uint8_t *)bits, clear);
4939 #else		/* PAGE_SIZE <= 8192 */
4940 	uintptr_t addr;
4941 	int shift;
4942 
4943 	addr = (uintptr_t)bits;
4944 	/*
4945 	 * Use a trick to perform a 32-bit atomic on the
4946 	 * containing aligned word, to not depend on the existence
4947 	 * of atomic_{set, clear}_{8, 16}.
4948 	 */
4949 	shift = addr & (sizeof(uint32_t) - 1);
4950 #if BYTE_ORDER == BIG_ENDIAN
4951 	shift = (sizeof(uint32_t) - sizeof(vm_page_bits_t) - shift) * NBBY;
4952 #else
4953 	shift *= NBBY;
4954 #endif
4955 	addr &= ~(sizeof(uint32_t) - 1);
4956 	atomic_clear_32((uint32_t *)addr, clear << shift);
4957 #endif		/* PAGE_SIZE */
4958 }
4959 
4960 static inline vm_page_bits_t
4961 vm_page_bits_swap(vm_page_t m, vm_page_bits_t *bits, vm_page_bits_t newbits)
4962 {
4963 #if PAGE_SIZE == 32768
4964 	uint64_t old;
4965 
4966 	old = *bits;
4967 	while (atomic_fcmpset_64(bits, &old, newbits) == 0);
4968 	return (old);
4969 #elif PAGE_SIZE == 16384
4970 	uint32_t old;
4971 
4972 	old = *bits;
4973 	while (atomic_fcmpset_32(bits, &old, newbits) == 0);
4974 	return (old);
4975 #elif (PAGE_SIZE == 8192) && defined(atomic_fcmpset_16)
4976 	uint16_t old;
4977 
4978 	old = *bits;
4979 	while (atomic_fcmpset_16(bits, &old, newbits) == 0);
4980 	return (old);
4981 #elif (PAGE_SIZE == 4096) && defined(atomic_fcmpset_8)
4982 	uint8_t old;
4983 
4984 	old = *bits;
4985 	while (atomic_fcmpset_8(bits, &old, newbits) == 0);
4986 	return (old);
4987 #else		/* PAGE_SIZE <= 4096*/
4988 	uintptr_t addr;
4989 	uint32_t old, new, mask;
4990 	int shift;
4991 
4992 	addr = (uintptr_t)bits;
4993 	/*
4994 	 * Use a trick to perform a 32-bit atomic on the
4995 	 * containing aligned word, to not depend on the existence
4996 	 * of atomic_{set, swap, clear}_{8, 16}.
4997 	 */
4998 	shift = addr & (sizeof(uint32_t) - 1);
4999 #if BYTE_ORDER == BIG_ENDIAN
5000 	shift = (sizeof(uint32_t) - sizeof(vm_page_bits_t) - shift) * NBBY;
5001 #else
5002 	shift *= NBBY;
5003 #endif
5004 	addr &= ~(sizeof(uint32_t) - 1);
5005 	mask = VM_PAGE_BITS_ALL << shift;
5006 
5007 	old = *bits;
5008 	do {
5009 		new = old & ~mask;
5010 		new |= newbits << shift;
5011 	} while (atomic_fcmpset_32((uint32_t *)addr, &old, new) == 0);
5012 	return (old >> shift);
5013 #endif		/* PAGE_SIZE */
5014 }
5015 
5016 /*
5017  *	vm_page_set_valid_range:
5018  *
5019  *	Sets portions of a page valid.  The arguments are expected
5020  *	to be DEV_BSIZE aligned but if they aren't the bitmap is inclusive
5021  *	of any partial chunks touched by the range.  The invalid portion of
5022  *	such chunks will be zeroed.
5023  *
5024  *	(base + size) must be less then or equal to PAGE_SIZE.
5025  */
5026 void
5027 vm_page_set_valid_range(vm_page_t m, int base, int size)
5028 {
5029 	int endoff, frag;
5030 	vm_page_bits_t pagebits;
5031 
5032 	vm_page_assert_busied(m);
5033 	if (size == 0)	/* handle degenerate case */
5034 		return;
5035 
5036 	/*
5037 	 * If the base is not DEV_BSIZE aligned and the valid
5038 	 * bit is clear, we have to zero out a portion of the
5039 	 * first block.
5040 	 */
5041 	if ((frag = rounddown2(base, DEV_BSIZE)) != base &&
5042 	    (m->valid & (1 << (base >> DEV_BSHIFT))) == 0)
5043 		pmap_zero_page_area(m, frag, base - frag);
5044 
5045 	/*
5046 	 * If the ending offset is not DEV_BSIZE aligned and the
5047 	 * valid bit is clear, we have to zero out a portion of
5048 	 * the last block.
5049 	 */
5050 	endoff = base + size;
5051 	if ((frag = rounddown2(endoff, DEV_BSIZE)) != endoff &&
5052 	    (m->valid & (1 << (endoff >> DEV_BSHIFT))) == 0)
5053 		pmap_zero_page_area(m, endoff,
5054 		    DEV_BSIZE - (endoff & (DEV_BSIZE - 1)));
5055 
5056 	/*
5057 	 * Assert that no previously invalid block that is now being validated
5058 	 * is already dirty.
5059 	 */
5060 	KASSERT((~m->valid & vm_page_bits(base, size) & m->dirty) == 0,
5061 	    ("vm_page_set_valid_range: page %p is dirty", m));
5062 
5063 	/*
5064 	 * Set valid bits inclusive of any overlap.
5065 	 */
5066 	pagebits = vm_page_bits(base, size);
5067 	if (vm_page_xbusied(m))
5068 		m->valid |= pagebits;
5069 	else
5070 		vm_page_bits_set(m, &m->valid, pagebits);
5071 }
5072 
5073 /*
5074  * Set the page dirty bits and free the invalid swap space if
5075  * present.  Returns the previous dirty bits.
5076  */
5077 vm_page_bits_t
5078 vm_page_set_dirty(vm_page_t m)
5079 {
5080 	vm_page_bits_t old;
5081 
5082 	VM_PAGE_OBJECT_BUSY_ASSERT(m);
5083 
5084 	if (vm_page_xbusied(m) && !pmap_page_is_write_mapped(m)) {
5085 		old = m->dirty;
5086 		m->dirty = VM_PAGE_BITS_ALL;
5087 	} else
5088 		old = vm_page_bits_swap(m, &m->dirty, VM_PAGE_BITS_ALL);
5089 	if (old == 0 && (m->a.flags & PGA_SWAP_SPACE) != 0)
5090 		vm_pager_page_unswapped(m);
5091 
5092 	return (old);
5093 }
5094 
5095 /*
5096  * Clear the given bits from the specified page's dirty field.
5097  */
5098 static __inline void
5099 vm_page_clear_dirty_mask(vm_page_t m, vm_page_bits_t pagebits)
5100 {
5101 
5102 	vm_page_assert_busied(m);
5103 
5104 	/*
5105 	 * If the page is xbusied and not write mapped we are the
5106 	 * only thread that can modify dirty bits.  Otherwise, The pmap
5107 	 * layer can call vm_page_dirty() without holding a distinguished
5108 	 * lock.  The combination of page busy and atomic operations
5109 	 * suffice to guarantee consistency of the page dirty field.
5110 	 */
5111 	if (vm_page_xbusied(m) && !pmap_page_is_write_mapped(m))
5112 		m->dirty &= ~pagebits;
5113 	else
5114 		vm_page_bits_clear(m, &m->dirty, pagebits);
5115 }
5116 
5117 /*
5118  *	vm_page_set_validclean:
5119  *
5120  *	Sets portions of a page valid and clean.  The arguments are expected
5121  *	to be DEV_BSIZE aligned but if they aren't the bitmap is inclusive
5122  *	of any partial chunks touched by the range.  The invalid portion of
5123  *	such chunks will be zero'd.
5124  *
5125  *	(base + size) must be less then or equal to PAGE_SIZE.
5126  */
5127 void
5128 vm_page_set_validclean(vm_page_t m, int base, int size)
5129 {
5130 	vm_page_bits_t oldvalid, pagebits;
5131 	int endoff, frag;
5132 
5133 	vm_page_assert_busied(m);
5134 	if (size == 0)	/* handle degenerate case */
5135 		return;
5136 
5137 	/*
5138 	 * If the base is not DEV_BSIZE aligned and the valid
5139 	 * bit is clear, we have to zero out a portion of the
5140 	 * first block.
5141 	 */
5142 	if ((frag = rounddown2(base, DEV_BSIZE)) != base &&
5143 	    (m->valid & ((vm_page_bits_t)1 << (base >> DEV_BSHIFT))) == 0)
5144 		pmap_zero_page_area(m, frag, base - frag);
5145 
5146 	/*
5147 	 * If the ending offset is not DEV_BSIZE aligned and the
5148 	 * valid bit is clear, we have to zero out a portion of
5149 	 * the last block.
5150 	 */
5151 	endoff = base + size;
5152 	if ((frag = rounddown2(endoff, DEV_BSIZE)) != endoff &&
5153 	    (m->valid & ((vm_page_bits_t)1 << (endoff >> DEV_BSHIFT))) == 0)
5154 		pmap_zero_page_area(m, endoff,
5155 		    DEV_BSIZE - (endoff & (DEV_BSIZE - 1)));
5156 
5157 	/*
5158 	 * Set valid, clear dirty bits.  If validating the entire
5159 	 * page we can safely clear the pmap modify bit.  We also
5160 	 * use this opportunity to clear the PGA_NOSYNC flag.  If a process
5161 	 * takes a write fault on a MAP_NOSYNC memory area the flag will
5162 	 * be set again.
5163 	 *
5164 	 * We set valid bits inclusive of any overlap, but we can only
5165 	 * clear dirty bits for DEV_BSIZE chunks that are fully within
5166 	 * the range.
5167 	 */
5168 	oldvalid = m->valid;
5169 	pagebits = vm_page_bits(base, size);
5170 	if (vm_page_xbusied(m))
5171 		m->valid |= pagebits;
5172 	else
5173 		vm_page_bits_set(m, &m->valid, pagebits);
5174 #if 0	/* NOT YET */
5175 	if ((frag = base & (DEV_BSIZE - 1)) != 0) {
5176 		frag = DEV_BSIZE - frag;
5177 		base += frag;
5178 		size -= frag;
5179 		if (size < 0)
5180 			size = 0;
5181 	}
5182 	pagebits = vm_page_bits(base, size & (DEV_BSIZE - 1));
5183 #endif
5184 	if (base == 0 && size == PAGE_SIZE) {
5185 		/*
5186 		 * The page can only be modified within the pmap if it is
5187 		 * mapped, and it can only be mapped if it was previously
5188 		 * fully valid.
5189 		 */
5190 		if (oldvalid == VM_PAGE_BITS_ALL)
5191 			/*
5192 			 * Perform the pmap_clear_modify() first.  Otherwise,
5193 			 * a concurrent pmap operation, such as
5194 			 * pmap_protect(), could clear a modification in the
5195 			 * pmap and set the dirty field on the page before
5196 			 * pmap_clear_modify() had begun and after the dirty
5197 			 * field was cleared here.
5198 			 */
5199 			pmap_clear_modify(m);
5200 		m->dirty = 0;
5201 		vm_page_aflag_clear(m, PGA_NOSYNC);
5202 	} else if (oldvalid != VM_PAGE_BITS_ALL && vm_page_xbusied(m))
5203 		m->dirty &= ~pagebits;
5204 	else
5205 		vm_page_clear_dirty_mask(m, pagebits);
5206 }
5207 
5208 void
5209 vm_page_clear_dirty(vm_page_t m, int base, int size)
5210 {
5211 
5212 	vm_page_clear_dirty_mask(m, vm_page_bits(base, size));
5213 }
5214 
5215 /*
5216  *	vm_page_set_invalid:
5217  *
5218  *	Invalidates DEV_BSIZE'd chunks within a page.  Both the
5219  *	valid and dirty bits for the effected areas are cleared.
5220  */
5221 void
5222 vm_page_set_invalid(vm_page_t m, int base, int size)
5223 {
5224 	vm_page_bits_t bits;
5225 	vm_object_t object;
5226 
5227 	/*
5228 	 * The object lock is required so that pages can't be mapped
5229 	 * read-only while we're in the process of invalidating them.
5230 	 */
5231 	object = m->object;
5232 	VM_OBJECT_ASSERT_WLOCKED(object);
5233 	vm_page_assert_busied(m);
5234 
5235 	if (object->type == OBJT_VNODE && base == 0 && IDX_TO_OFF(m->pindex) +
5236 	    size >= object->un_pager.vnp.vnp_size)
5237 		bits = VM_PAGE_BITS_ALL;
5238 	else
5239 		bits = vm_page_bits(base, size);
5240 	if (object->ref_count != 0 && vm_page_all_valid(m) && bits != 0)
5241 		pmap_remove_all(m);
5242 	KASSERT((bits == 0 && vm_page_all_valid(m)) ||
5243 	    !pmap_page_is_mapped(m),
5244 	    ("vm_page_set_invalid: page %p is mapped", m));
5245 	if (vm_page_xbusied(m)) {
5246 		m->valid &= ~bits;
5247 		m->dirty &= ~bits;
5248 	} else {
5249 		vm_page_bits_clear(m, &m->valid, bits);
5250 		vm_page_bits_clear(m, &m->dirty, bits);
5251 	}
5252 }
5253 
5254 /*
5255  *	vm_page_invalid:
5256  *
5257  *	Invalidates the entire page.  The page must be busy, unmapped, and
5258  *	the enclosing object must be locked.  The object locks protects
5259  *	against concurrent read-only pmap enter which is done without
5260  *	busy.
5261  */
5262 void
5263 vm_page_invalid(vm_page_t m)
5264 {
5265 
5266 	vm_page_assert_busied(m);
5267 	VM_OBJECT_ASSERT_LOCKED(m->object);
5268 	MPASS(!pmap_page_is_mapped(m));
5269 
5270 	if (vm_page_xbusied(m))
5271 		m->valid = 0;
5272 	else
5273 		vm_page_bits_clear(m, &m->valid, VM_PAGE_BITS_ALL);
5274 }
5275 
5276 /*
5277  * vm_page_zero_invalid()
5278  *
5279  *	The kernel assumes that the invalid portions of a page contain
5280  *	garbage, but such pages can be mapped into memory by user code.
5281  *	When this occurs, we must zero out the non-valid portions of the
5282  *	page so user code sees what it expects.
5283  *
5284  *	Pages are most often semi-valid when the end of a file is mapped
5285  *	into memory and the file's size is not page aligned.
5286  */
5287 void
5288 vm_page_zero_invalid(vm_page_t m, boolean_t setvalid)
5289 {
5290 	int b;
5291 	int i;
5292 
5293 	/*
5294 	 * Scan the valid bits looking for invalid sections that
5295 	 * must be zeroed.  Invalid sub-DEV_BSIZE'd areas ( where the
5296 	 * valid bit may be set ) have already been zeroed by
5297 	 * vm_page_set_validclean().
5298 	 */
5299 	for (b = i = 0; i <= PAGE_SIZE / DEV_BSIZE; ++i) {
5300 		if (i == (PAGE_SIZE / DEV_BSIZE) ||
5301 		    (m->valid & ((vm_page_bits_t)1 << i))) {
5302 			if (i > b) {
5303 				pmap_zero_page_area(m,
5304 				    b << DEV_BSHIFT, (i - b) << DEV_BSHIFT);
5305 			}
5306 			b = i + 1;
5307 		}
5308 	}
5309 
5310 	/*
5311 	 * setvalid is TRUE when we can safely set the zero'd areas
5312 	 * as being valid.  We can do this if there are no cache consistancy
5313 	 * issues.  e.g. it is ok to do with UFS, but not ok to do with NFS.
5314 	 */
5315 	if (setvalid)
5316 		vm_page_valid(m);
5317 }
5318 
5319 /*
5320  *	vm_page_is_valid:
5321  *
5322  *	Is (partial) page valid?  Note that the case where size == 0
5323  *	will return FALSE in the degenerate case where the page is
5324  *	entirely invalid, and TRUE otherwise.
5325  *
5326  *	Some callers envoke this routine without the busy lock held and
5327  *	handle races via higher level locks.  Typical callers should
5328  *	hold a busy lock to prevent invalidation.
5329  */
5330 int
5331 vm_page_is_valid(vm_page_t m, int base, int size)
5332 {
5333 	vm_page_bits_t bits;
5334 
5335 	bits = vm_page_bits(base, size);
5336 	return (m->valid != 0 && (m->valid & bits) == bits);
5337 }
5338 
5339 /*
5340  * Returns true if all of the specified predicates are true for the entire
5341  * (super)page and false otherwise.
5342  */
5343 bool
5344 vm_page_ps_test(vm_page_t m, int flags, vm_page_t skip_m)
5345 {
5346 	vm_object_t object;
5347 	int i, npages;
5348 
5349 	object = m->object;
5350 	if (skip_m != NULL && skip_m->object != object)
5351 		return (false);
5352 	VM_OBJECT_ASSERT_LOCKED(object);
5353 	npages = atop(pagesizes[m->psind]);
5354 
5355 	/*
5356 	 * The physically contiguous pages that make up a superpage, i.e., a
5357 	 * page with a page size index ("psind") greater than zero, will
5358 	 * occupy adjacent entries in vm_page_array[].
5359 	 */
5360 	for (i = 0; i < npages; i++) {
5361 		/* Always test object consistency, including "skip_m". */
5362 		if (m[i].object != object)
5363 			return (false);
5364 		if (&m[i] == skip_m)
5365 			continue;
5366 		if ((flags & PS_NONE_BUSY) != 0 && vm_page_busied(&m[i]))
5367 			return (false);
5368 		if ((flags & PS_ALL_DIRTY) != 0) {
5369 			/*
5370 			 * Calling vm_page_test_dirty() or pmap_is_modified()
5371 			 * might stop this case from spuriously returning
5372 			 * "false".  However, that would require a write lock
5373 			 * on the object containing "m[i]".
5374 			 */
5375 			if (m[i].dirty != VM_PAGE_BITS_ALL)
5376 				return (false);
5377 		}
5378 		if ((flags & PS_ALL_VALID) != 0 &&
5379 		    m[i].valid != VM_PAGE_BITS_ALL)
5380 			return (false);
5381 	}
5382 	return (true);
5383 }
5384 
5385 /*
5386  * Set the page's dirty bits if the page is modified.
5387  */
5388 void
5389 vm_page_test_dirty(vm_page_t m)
5390 {
5391 
5392 	vm_page_assert_busied(m);
5393 	if (m->dirty != VM_PAGE_BITS_ALL && pmap_is_modified(m))
5394 		vm_page_dirty(m);
5395 }
5396 
5397 void
5398 vm_page_valid(vm_page_t m)
5399 {
5400 
5401 	vm_page_assert_busied(m);
5402 	if (vm_page_xbusied(m))
5403 		m->valid = VM_PAGE_BITS_ALL;
5404 	else
5405 		vm_page_bits_set(m, &m->valid, VM_PAGE_BITS_ALL);
5406 }
5407 
5408 void
5409 vm_page_lock_KBI(vm_page_t m, const char *file, int line)
5410 {
5411 
5412 	mtx_lock_flags_(vm_page_lockptr(m), 0, file, line);
5413 }
5414 
5415 void
5416 vm_page_unlock_KBI(vm_page_t m, const char *file, int line)
5417 {
5418 
5419 	mtx_unlock_flags_(vm_page_lockptr(m), 0, file, line);
5420 }
5421 
5422 int
5423 vm_page_trylock_KBI(vm_page_t m, const char *file, int line)
5424 {
5425 
5426 	return (mtx_trylock_flags_(vm_page_lockptr(m), 0, file, line));
5427 }
5428 
5429 #if defined(INVARIANTS) || defined(INVARIANT_SUPPORT)
5430 void
5431 vm_page_assert_locked_KBI(vm_page_t m, const char *file, int line)
5432 {
5433 
5434 	vm_page_lock_assert_KBI(m, MA_OWNED, file, line);
5435 }
5436 
5437 void
5438 vm_page_lock_assert_KBI(vm_page_t m, int a, const char *file, int line)
5439 {
5440 
5441 	mtx_assert_(vm_page_lockptr(m), a, file, line);
5442 }
5443 #endif
5444 
5445 #ifdef INVARIANTS
5446 void
5447 vm_page_object_busy_assert(vm_page_t m)
5448 {
5449 
5450 	/*
5451 	 * Certain of the page's fields may only be modified by the
5452 	 * holder of a page or object busy.
5453 	 */
5454 	if (m->object != NULL && !vm_page_busied(m))
5455 		VM_OBJECT_ASSERT_BUSY(m->object);
5456 }
5457 
5458 void
5459 vm_page_assert_pga_writeable(vm_page_t m, uint16_t bits)
5460 {
5461 
5462 	if ((bits & PGA_WRITEABLE) == 0)
5463 		return;
5464 
5465 	/*
5466 	 * The PGA_WRITEABLE flag can only be set if the page is
5467 	 * managed, is exclusively busied or the object is locked.
5468 	 * Currently, this flag is only set by pmap_enter().
5469 	 */
5470 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
5471 	    ("PGA_WRITEABLE on unmanaged page"));
5472 	if (!vm_page_xbusied(m))
5473 		VM_OBJECT_ASSERT_BUSY(m->object);
5474 }
5475 #endif
5476 
5477 #include "opt_ddb.h"
5478 #ifdef DDB
5479 #include <sys/kernel.h>
5480 
5481 #include <ddb/ddb.h>
5482 
5483 DB_SHOW_COMMAND(page, vm_page_print_page_info)
5484 {
5485 
5486 	db_printf("vm_cnt.v_free_count: %d\n", vm_free_count());
5487 	db_printf("vm_cnt.v_inactive_count: %d\n", vm_inactive_count());
5488 	db_printf("vm_cnt.v_active_count: %d\n", vm_active_count());
5489 	db_printf("vm_cnt.v_laundry_count: %d\n", vm_laundry_count());
5490 	db_printf("vm_cnt.v_wire_count: %d\n", vm_wire_count());
5491 	db_printf("vm_cnt.v_free_reserved: %d\n", vm_cnt.v_free_reserved);
5492 	db_printf("vm_cnt.v_free_min: %d\n", vm_cnt.v_free_min);
5493 	db_printf("vm_cnt.v_free_target: %d\n", vm_cnt.v_free_target);
5494 	db_printf("vm_cnt.v_inactive_target: %d\n", vm_cnt.v_inactive_target);
5495 }
5496 
5497 DB_SHOW_COMMAND(pageq, vm_page_print_pageq_info)
5498 {
5499 	int dom;
5500 
5501 	db_printf("pq_free %d\n", vm_free_count());
5502 	for (dom = 0; dom < vm_ndomains; dom++) {
5503 		db_printf(
5504     "dom %d page_cnt %d free %d pq_act %d pq_inact %d pq_laund %d pq_unsw %d\n",
5505 		    dom,
5506 		    vm_dom[dom].vmd_page_count,
5507 		    vm_dom[dom].vmd_free_count,
5508 		    vm_dom[dom].vmd_pagequeues[PQ_ACTIVE].pq_cnt,
5509 		    vm_dom[dom].vmd_pagequeues[PQ_INACTIVE].pq_cnt,
5510 		    vm_dom[dom].vmd_pagequeues[PQ_LAUNDRY].pq_cnt,
5511 		    vm_dom[dom].vmd_pagequeues[PQ_UNSWAPPABLE].pq_cnt);
5512 	}
5513 }
5514 
5515 DB_SHOW_COMMAND(pginfo, vm_page_print_pginfo)
5516 {
5517 	vm_page_t m;
5518 	boolean_t phys, virt;
5519 
5520 	if (!have_addr) {
5521 		db_printf("show pginfo addr\n");
5522 		return;
5523 	}
5524 
5525 	phys = strchr(modif, 'p') != NULL;
5526 	virt = strchr(modif, 'v') != NULL;
5527 	if (virt)
5528 		m = PHYS_TO_VM_PAGE(pmap_kextract(addr));
5529 	else if (phys)
5530 		m = PHYS_TO_VM_PAGE(addr);
5531 	else
5532 		m = (vm_page_t)addr;
5533 	db_printf(
5534     "page %p obj %p pidx 0x%jx phys 0x%jx q %d ref 0x%x\n"
5535     "  af 0x%x of 0x%x f 0x%x act %d busy %x valid 0x%x dirty 0x%x\n",
5536 	    m, m->object, (uintmax_t)m->pindex, (uintmax_t)m->phys_addr,
5537 	    m->a.queue, m->ref_count, m->a.flags, m->oflags,
5538 	    m->flags, m->a.act_count, m->busy_lock, m->valid, m->dirty);
5539 }
5540 #endif /* DDB */
5541