xref: /freebsd/sys/vm/vm_fault.c (revision b88b6c9d80ed2e1ad85a6b928e2c9346a41aced6)
160727d8bSWarner Losh /*-
2df8bae1dSRodney W. Grimes  * Copyright (c) 1991, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
426f9a767SRodney W. Grimes  * Copyright (c) 1994 John S. Dyson
526f9a767SRodney W. Grimes  * All rights reserved.
626f9a767SRodney W. Grimes  * Copyright (c) 1994 David Greenman
726f9a767SRodney W. Grimes  * All rights reserved.
826f9a767SRodney W. Grimes  *
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * This code is derived from software contributed to Berkeley by
11df8bae1dSRodney W. Grimes  * The Mach Operating System project at Carnegie-Mellon University.
12df8bae1dSRodney W. Grimes  *
13df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
14df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
15df8bae1dSRodney W. Grimes  * are met:
16df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
17df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
18df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
19df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
20df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
21df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
225929bcfaSPhilippe Charnier  *    must display the following acknowledgement:
23df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
24df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
25df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
26df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
27df8bae1dSRodney W. Grimes  *    without specific prior written permission.
28df8bae1dSRodney W. Grimes  *
29df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
40df8bae1dSRodney W. Grimes  *
413c4dd356SDavid Greenman  *	from: @(#)vm_fault.c	8.4 (Berkeley) 1/12/94
42df8bae1dSRodney W. Grimes  *
43df8bae1dSRodney W. Grimes  *
44df8bae1dSRodney W. Grimes  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
45df8bae1dSRodney W. Grimes  * All rights reserved.
46df8bae1dSRodney W. Grimes  *
47df8bae1dSRodney W. Grimes  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
48df8bae1dSRodney W. Grimes  *
49df8bae1dSRodney W. Grimes  * Permission to use, copy, modify and distribute this software and
50df8bae1dSRodney W. Grimes  * its documentation is hereby granted, provided that both the copyright
51df8bae1dSRodney W. Grimes  * notice and this permission notice appear in all copies of the
52df8bae1dSRodney W. Grimes  * software, derivative works or modified versions, and any portions
53df8bae1dSRodney W. Grimes  * thereof, and that both notices appear in supporting documentation.
54df8bae1dSRodney W. Grimes  *
55df8bae1dSRodney W. Grimes  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
56df8bae1dSRodney W. Grimes  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
57df8bae1dSRodney W. Grimes  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
58df8bae1dSRodney W. Grimes  *
59df8bae1dSRodney W. Grimes  * Carnegie Mellon requests users of this software to return to
60df8bae1dSRodney W. Grimes  *
61df8bae1dSRodney W. Grimes  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
62df8bae1dSRodney W. Grimes  *  School of Computer Science
63df8bae1dSRodney W. Grimes  *  Carnegie Mellon University
64df8bae1dSRodney W. Grimes  *  Pittsburgh PA 15213-3890
65df8bae1dSRodney W. Grimes  *
66df8bae1dSRodney W. Grimes  * any improvements or extensions that they make and grant Carnegie the
67df8bae1dSRodney W. Grimes  * rights to redistribute these changes.
68df8bae1dSRodney W. Grimes  */
69df8bae1dSRodney W. Grimes 
70df8bae1dSRodney W. Grimes /*
71df8bae1dSRodney W. Grimes  *	Page fault handling module.
72df8bae1dSRodney W. Grimes  */
73874651b1SDavid E. O'Brien 
74874651b1SDavid E. O'Brien #include <sys/cdefs.h>
75874651b1SDavid E. O'Brien __FBSDID("$FreeBSD$");
76874651b1SDavid E. O'Brien 
77f8a47341SAlan Cox #include "opt_vm.h"
78f8a47341SAlan Cox 
79df8bae1dSRodney W. Grimes #include <sys/param.h>
80df8bae1dSRodney W. Grimes #include <sys/systm.h>
814edf4a58SJohn Baldwin #include <sys/kernel.h>
82fb919e4dSMark Murray #include <sys/lock.h>
83fb919e4dSMark Murray #include <sys/mutex.h>
8426f9a767SRodney W. Grimes #include <sys/proc.h>
8526f9a767SRodney W. Grimes #include <sys/resourcevar.h>
8623955314SAlfred Perlstein #include <sys/sysctl.h>
874edf4a58SJohn Baldwin #include <sys/vmmeter.h>
884edf4a58SJohn Baldwin #include <sys/vnode.h>
89df8bae1dSRodney W. Grimes 
90df8bae1dSRodney W. Grimes #include <vm/vm.h>
91efeaf95aSDavid Greenman #include <vm/vm_param.h>
92efeaf95aSDavid Greenman #include <vm/pmap.h>
93efeaf95aSDavid Greenman #include <vm/vm_map.h>
94efeaf95aSDavid Greenman #include <vm/vm_object.h>
95df8bae1dSRodney W. Grimes #include <vm/vm_page.h>
96df8bae1dSRodney W. Grimes #include <vm/vm_pageout.h>
97a83c285cSDavid Greenman #include <vm/vm_kern.h>
9824a1cce3SDavid Greenman #include <vm/vm_pager.h>
99efeaf95aSDavid Greenman #include <vm/vm_extern.h>
100df8bae1dSRodney W. Grimes 
101ae51ff11SJeff Roberson #include <sys/mount.h>	/* XXX Temporary for VFS_LOCK_GIANT() */
102ae51ff11SJeff Roberson 
103566526a9SAlan Cox #define PFBAK 4
104566526a9SAlan Cox #define PFFOR 4
105566526a9SAlan Cox #define PAGEORDER_SIZE (PFBAK+PFFOR)
106566526a9SAlan Cox 
107566526a9SAlan Cox static int prefault_pageorder[] = {
108566526a9SAlan Cox 	-1 * PAGE_SIZE, 1 * PAGE_SIZE,
109566526a9SAlan Cox 	-2 * PAGE_SIZE, 2 * PAGE_SIZE,
110566526a9SAlan Cox 	-3 * PAGE_SIZE, 3 * PAGE_SIZE,
111566526a9SAlan Cox 	-4 * PAGE_SIZE, 4 * PAGE_SIZE
112566526a9SAlan Cox };
113566526a9SAlan Cox 
11411caded3SAlfred Perlstein static int vm_fault_additional_pages(vm_page_t, int, int, vm_page_t *, int *);
115566526a9SAlan Cox static void vm_fault_prefault(pmap_t, vm_offset_t, vm_map_entry_t);
11626f9a767SRodney W. Grimes 
11747221757SJohn Dyson #define VM_FAULT_READ_AHEAD 8
11847221757SJohn Dyson #define VM_FAULT_READ_BEHIND 7
11926f9a767SRodney W. Grimes #define VM_FAULT_READ (VM_FAULT_READ_AHEAD+VM_FAULT_READ_BEHIND+1)
12026f9a767SRodney W. Grimes 
1214866e085SJohn Dyson struct faultstate {
1224866e085SJohn Dyson 	vm_page_t m;
1234866e085SJohn Dyson 	vm_object_t object;
1244866e085SJohn Dyson 	vm_pindex_t pindex;
1254866e085SJohn Dyson 	vm_page_t first_m;
1264866e085SJohn Dyson 	vm_object_t	first_object;
1274866e085SJohn Dyson 	vm_pindex_t first_pindex;
1284866e085SJohn Dyson 	vm_map_t map;
1294866e085SJohn Dyson 	vm_map_entry_t entry;
13025adb370SBrian Feldman 	int lookup_still_valid;
1314866e085SJohn Dyson 	struct vnode *vp;
132d2bf64c3SKonstantin Belousov 	int vfslocked;
1334866e085SJohn Dyson };
1344866e085SJohn Dyson 
13562a59e8fSWarner Losh static inline void
1364866e085SJohn Dyson release_page(struct faultstate *fs)
1374866e085SJohn Dyson {
1380d0be82aSKonstantin Belousov 
139e69763a3SDoug Rabson 	vm_page_wakeup(fs->m);
1402965a453SKip Macy 	vm_page_lock(fs->m);
14166bdd5d6SAlan Cox 	vm_page_lock_queues();
1424866e085SJohn Dyson 	vm_page_deactivate(fs->m);
1432ad98273SAlan Cox 	vm_page_unlock_queues();
1442965a453SKip Macy 	vm_page_unlock(fs->m);
1454866e085SJohn Dyson 	fs->m = NULL;
1464866e085SJohn Dyson }
1474866e085SJohn Dyson 
14862a59e8fSWarner Losh static inline void
1494866e085SJohn Dyson unlock_map(struct faultstate *fs)
1504866e085SJohn Dyson {
1510d0be82aSKonstantin Belousov 
15225adb370SBrian Feldman 	if (fs->lookup_still_valid) {
1534866e085SJohn Dyson 		vm_map_lookup_done(fs->map, fs->entry);
15425adb370SBrian Feldman 		fs->lookup_still_valid = FALSE;
1554866e085SJohn Dyson 	}
1564866e085SJohn Dyson }
1574866e085SJohn Dyson 
1584866e085SJohn Dyson static void
159a51b0840SAlan Cox unlock_and_deallocate(struct faultstate *fs)
1604866e085SJohn Dyson {
161f29ba63eSAlan Cox 
1624866e085SJohn Dyson 	vm_object_pip_wakeup(fs->object);
163b009d5a0SAlan Cox 	VM_OBJECT_UNLOCK(fs->object);
1644866e085SJohn Dyson 	if (fs->object != fs->first_object) {
165b009d5a0SAlan Cox 		VM_OBJECT_LOCK(fs->first_object);
1662965a453SKip Macy 		vm_page_lock(fs->first_m);
1672ad98273SAlan Cox 		vm_page_lock_queues();
1684866e085SJohn Dyson 		vm_page_free(fs->first_m);
1692ad98273SAlan Cox 		vm_page_unlock_queues();
1702965a453SKip Macy 		vm_page_unlock(fs->first_m);
1714866e085SJohn Dyson 		vm_object_pip_wakeup(fs->first_object);
172b009d5a0SAlan Cox 		VM_OBJECT_UNLOCK(fs->first_object);
1734866e085SJohn Dyson 		fs->first_m = NULL;
1744866e085SJohn Dyson 	}
1754866e085SJohn Dyson 	vm_object_deallocate(fs->first_object);
1764866e085SJohn Dyson 	unlock_map(fs);
1774866e085SJohn Dyson 	if (fs->vp != NULL) {
1780cddd8f0SMatthew Dillon 		vput(fs->vp);
1794866e085SJohn Dyson 		fs->vp = NULL;
1804866e085SJohn Dyson 	}
181d2bf64c3SKonstantin Belousov 	VFS_UNLOCK_GIANT(fs->vfslocked);
182d2bf64c3SKonstantin Belousov 	fs->vfslocked = 0;
1834866e085SJohn Dyson }
1844866e085SJohn Dyson 
185df8bae1dSRodney W. Grimes /*
18640360b1bSMatthew Dillon  * TRYPAGER - used by vm_fault to calculate whether the pager for the
18740360b1bSMatthew Dillon  *	      current object *might* contain the page.
18840360b1bSMatthew Dillon  *
18940360b1bSMatthew Dillon  *	      default objects are zero-fill, there is no real pager.
19040360b1bSMatthew Dillon  */
19140360b1bSMatthew Dillon #define TRYPAGER	(fs.object->type != OBJT_DEFAULT && \
1922db65ab4SAlan Cox 			((fault_flags & VM_FAULT_CHANGE_WIRING) == 0 || wired))
19340360b1bSMatthew Dillon 
19440360b1bSMatthew Dillon /*
195df8bae1dSRodney W. Grimes  *	vm_fault:
196df8bae1dSRodney W. Grimes  *
197956f3135SPhilippe Charnier  *	Handle a page fault occurring at the given address,
198df8bae1dSRodney W. Grimes  *	requiring the given permissions, in the map specified.
199df8bae1dSRodney W. Grimes  *	If successful, the page is inserted into the
200df8bae1dSRodney W. Grimes  *	associated physical map.
201df8bae1dSRodney W. Grimes  *
202df8bae1dSRodney W. Grimes  *	NOTE: the given address should be truncated to the
203df8bae1dSRodney W. Grimes  *	proper page address.
204df8bae1dSRodney W. Grimes  *
205df8bae1dSRodney W. Grimes  *	KERN_SUCCESS is returned if the page fault is handled; otherwise,
206df8bae1dSRodney W. Grimes  *	a standard error specifying why the fault is fatal is returned.
207df8bae1dSRodney W. Grimes  *
208df8bae1dSRodney W. Grimes  *
209df8bae1dSRodney W. Grimes  *	The map in question must be referenced, and remains so.
2100cddd8f0SMatthew Dillon  *	Caller may hold no locks.
211df8bae1dSRodney W. Grimes  */
212df8bae1dSRodney W. Grimes int
21323955314SAlfred Perlstein vm_fault(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type,
21423955314SAlfred Perlstein 	 int fault_flags)
21523955314SAlfred Perlstein {
216df8bae1dSRodney W. Grimes 	vm_prot_t prot;
217ebf75125SAlan Cox 	int is_first_object_locked, result;
218c722e407SAlan Cox 	boolean_t are_queues_locked, growstack, wired;
2192d8acc0fSJohn Dyson 	int map_generation;
220df8bae1dSRodney W. Grimes 	vm_object_t next_object;
22126f9a767SRodney W. Grimes 	vm_page_t marray[VM_FAULT_READ];
2224866e085SJohn Dyson 	int hardfault;
2233f1c4c4fSKonstantin Belousov 	int faultcount, ahead, behind, alloc_req;
2244866e085SJohn Dyson 	struct faultstate fs;
225d2bf64c3SKonstantin Belousov 	struct vnode *vp;
226d2bf64c3SKonstantin Belousov 	int locked, error;
227df8bae1dSRodney W. Grimes 
2284866e085SJohn Dyson 	hardfault = 0;
2296139043bSAlan Cox 	growstack = TRUE;
23067596082SAttilio Rao 	PCPU_INC(cnt.v_vm_faults);
231d2bf64c3SKonstantin Belousov 	fs.vp = NULL;
232d2bf64c3SKonstantin Belousov 	fs.vfslocked = 0;
233d2bf64c3SKonstantin Belousov 	faultcount = behind = 0;
234df8bae1dSRodney W. Grimes 
235df8bae1dSRodney W. Grimes RetryFault:;
236df8bae1dSRodney W. Grimes 
237df8bae1dSRodney W. Grimes 	/*
2380d94caffSDavid Greenman 	 * Find the backing store object and offset into it to begin the
2390d94caffSDavid Greenman 	 * search.
240df8bae1dSRodney W. Grimes 	 */
24140360b1bSMatthew Dillon 	fs.map = map;
24292de35b0SAlan Cox 	result = vm_map_lookup(&fs.map, vaddr, fault_type, &fs.entry,
24392de35b0SAlan Cox 	    &fs.first_object, &fs.first_pindex, &prot, &wired);
24492de35b0SAlan Cox 	if (result != KERN_SUCCESS) {
2456139043bSAlan Cox 		if (growstack && result == KERN_INVALID_ADDRESS &&
2462db65ab4SAlan Cox 		    map != kernel_map) {
2476139043bSAlan Cox 			result = vm_map_growstack(curproc, vaddr);
248a976eb5eSAlan Cox 			if (result != KERN_SUCCESS)
2496139043bSAlan Cox 				return (KERN_FAILURE);
2506139043bSAlan Cox 			growstack = FALSE;
2516139043bSAlan Cox 			goto RetryFault;
2526139043bSAlan Cox 		}
25392de35b0SAlan Cox 		return (result);
25409e0c6ccSJohn Dyson 	}
25509e0c6ccSJohn Dyson 
2564866e085SJohn Dyson 	map_generation = fs.map->timestamp;
2572d8acc0fSJohn Dyson 
2584866e085SJohn Dyson 	if (fs.entry->eflags & MAP_ENTRY_NOFAULT) {
25947221757SJohn Dyson 		panic("vm_fault: fault on nofault entry, addr: %lx",
26092c4c4ebSBruce Evans 		    (u_long)vaddr);
2617aaaa4fdSJohn Dyson 	}
2627aaaa4fdSJohn Dyson 
26395e5e988SJohn Dyson 	/*
26495e5e988SJohn Dyson 	 * Make a reference to this object to prevent its disposal while we
26595e5e988SJohn Dyson 	 * are messing with it.  Once we have the reference, the map is free
26695e5e988SJohn Dyson 	 * to be diddled.  Since objects reference their shadows (and copies),
26795e5e988SJohn Dyson 	 * they will stay around as well.
268fe8e0238SMatthew Dillon 	 *
269fe8e0238SMatthew Dillon 	 * Bump the paging-in-progress count to prevent size changes (e.g.
270fe8e0238SMatthew Dillon 	 * truncation operations) during I/O.  This must be done after
271fe8e0238SMatthew Dillon 	 * obtaining the vnode lock in order to avoid possible deadlocks.
27295e5e988SJohn Dyson 	 */
273d22bc710SAlan Cox 	VM_OBJECT_LOCK(fs.first_object);
274a976eb5eSAlan Cox 	vm_object_reference_locked(fs.first_object);
275d474eaaaSDoug Rabson 	vm_object_pip_add(fs.first_object, 1);
27695e5e988SJohn Dyson 
27725adb370SBrian Feldman 	fs.lookup_still_valid = TRUE;
278df8bae1dSRodney W. Grimes 
279df8bae1dSRodney W. Grimes 	if (wired)
280d8778512SAlan Cox 		fault_type = prot | (fault_type & VM_PROT_COPY);
281df8bae1dSRodney W. Grimes 
2824866e085SJohn Dyson 	fs.first_m = NULL;
283df8bae1dSRodney W. Grimes 
284df8bae1dSRodney W. Grimes 	/*
285df8bae1dSRodney W. Grimes 	 * Search for the page at object/offset.
286df8bae1dSRodney W. Grimes 	 */
2874866e085SJohn Dyson 	fs.object = fs.first_object;
2884866e085SJohn Dyson 	fs.pindex = fs.first_pindex;
289df8bae1dSRodney W. Grimes 	while (TRUE) {
2901c7c3c6aSMatthew Dillon 		/*
2911c7c3c6aSMatthew Dillon 		 * If the object is dead, we stop here
2921c7c3c6aSMatthew Dillon 		 */
2934866e085SJohn Dyson 		if (fs.object->flags & OBJ_DEAD) {
2944866e085SJohn Dyson 			unlock_and_deallocate(&fs);
29547221757SJohn Dyson 			return (KERN_PROTECTION_FAILURE);
29647221757SJohn Dyson 		}
29747221757SJohn Dyson 
2981c7c3c6aSMatthew Dillon 		/*
2991c7c3c6aSMatthew Dillon 		 * See if page is resident
3001c7c3c6aSMatthew Dillon 		 */
3014866e085SJohn Dyson 		fs.m = vm_page_lookup(fs.object, fs.pindex);
3024866e085SJohn Dyson 		if (fs.m != NULL) {
30398cb733cSKenneth D. Merry 			/*
3049b80d344SKenneth D. Merry 			 * check for page-based copy on write.
3059b80d344SKenneth D. Merry 			 * We check fs.object == fs.first_object so
3069b80d344SKenneth D. Merry 			 * as to ensure the legacy COW mechanism is
3079b80d344SKenneth D. Merry 			 * used when the page in question is part of
3089b80d344SKenneth D. Merry 			 * a shadow object.  Otherwise, vm_page_cowfault()
3099b80d344SKenneth D. Merry 			 * removes the page from the backing object,
3109b80d344SKenneth D. Merry 			 * which is not what we want.
31198cb733cSKenneth D. Merry 			 */
3122965a453SKip Macy 			vm_page_lock(fs.m);
313f4ecdf05SAlan Cox 			vm_page_lock_queues();
31498cb733cSKenneth D. Merry 			if ((fs.m->cow) &&
3159b80d344SKenneth D. Merry 			    (fault_type & VM_PROT_WRITE) &&
3169b80d344SKenneth D. Merry 			    (fs.object == fs.first_object)) {
31798cb733cSKenneth D. Merry 				vm_page_cowfault(fs.m);
318f4ecdf05SAlan Cox 				vm_page_unlock_queues();
3192965a453SKip Macy 				vm_page_unlock(fs.m);
320d18e8afeSAlan Cox 				unlock_and_deallocate(&fs);
32198cb733cSKenneth D. Merry 				goto RetryFault;
32298cb733cSKenneth D. Merry 			}
32398cb733cSKenneth D. Merry 
324df8bae1dSRodney W. Grimes 			/*
3251c7c3c6aSMatthew Dillon 			 * Wait/Retry if the page is busy.  We have to do this
3269af80719SAlan Cox 			 * if the page is busy via either VPO_BUSY or
3271c7c3c6aSMatthew Dillon 			 * vm_page_t->busy because the vm_pager may be using
3281c7c3c6aSMatthew Dillon 			 * vm_page_t->busy for pageouts ( and even pageins if
3291c7c3c6aSMatthew Dillon 			 * it is the vnode pager ), and we could end up trying
330956f3135SPhilippe Charnier 			 * to pagein and pageout the same page simultaneously.
3311c7c3c6aSMatthew Dillon 			 *
3321c7c3c6aSMatthew Dillon 			 * We can theoretically allow the busy case on a read
3331c7c3c6aSMatthew Dillon 			 * fault if the page is marked valid, but since such
3341c7c3c6aSMatthew Dillon 			 * pages are typically already pmap'd, putting that
3351c7c3c6aSMatthew Dillon 			 * special case in might be more effort then it is
3361c7c3c6aSMatthew Dillon 			 * worth.  We cannot under any circumstances mess
3371c7c3c6aSMatthew Dillon 			 * around with a vm_page_t->busy page except, perhaps,
3381c7c3c6aSMatthew Dillon 			 * to pmap it.
339df8bae1dSRodney W. Grimes 			 */
3409af80719SAlan Cox 			if ((fs.m->oflags & VPO_BUSY) || fs.m->busy) {
341*b88b6c9dSAlan Cox 				/*
342*b88b6c9dSAlan Cox 				 * Reference the page before unlocking and
343*b88b6c9dSAlan Cox 				 * sleeping so that the page daemon is less
344*b88b6c9dSAlan Cox 				 * likely to reclaim it.
345*b88b6c9dSAlan Cox 				 */
346*b88b6c9dSAlan Cox 				vm_page_flag_set(fs.m, PG_REFERENCED);
3474abd55b2SAlan Cox 				vm_page_unlock_queues();
3482965a453SKip Macy 				vm_page_unlock(fs.m);
349a51b0840SAlan Cox 				VM_OBJECT_UNLOCK(fs.object);
350a51b0840SAlan Cox 				if (fs.object != fs.first_object) {
351a51b0840SAlan Cox 					VM_OBJECT_LOCK(fs.first_object);
3522965a453SKip Macy 					vm_page_lock(fs.first_m);
3539a96b638SAlan Cox 					vm_page_lock_queues();
354a51b0840SAlan Cox 					vm_page_free(fs.first_m);
3559a96b638SAlan Cox 					vm_page_unlock_queues();
3562965a453SKip Macy 					vm_page_unlock(fs.first_m);
357a51b0840SAlan Cox 					vm_object_pip_wakeup(fs.first_object);
358a51b0840SAlan Cox 					VM_OBJECT_UNLOCK(fs.first_object);
359a51b0840SAlan Cox 					fs.first_m = NULL;
360a51b0840SAlan Cox 				}
361a51b0840SAlan Cox 				unlock_map(&fs);
362a51b0840SAlan Cox 				VM_OBJECT_LOCK(fs.object);
363a51b0840SAlan Cox 				if (fs.m == vm_page_lookup(fs.object,
364a51b0840SAlan Cox 				    fs.pindex)) {
365e7e56b28SAlan Cox 					vm_page_sleep_if_busy(fs.m, TRUE,
366e7e56b28SAlan Cox 					    "vmpfw");
367a51b0840SAlan Cox 				}
368a51b0840SAlan Cox 				vm_object_pip_wakeup(fs.object);
369a51b0840SAlan Cox 				VM_OBJECT_UNLOCK(fs.object);
37067596082SAttilio Rao 				PCPU_INC(cnt.v_intrans);
3714866e085SJohn Dyson 				vm_object_deallocate(fs.first_object);
372df8bae1dSRodney W. Grimes 				goto RetryFault;
373df8bae1dSRodney W. Grimes 			}
3747bfda801SAlan Cox 			vm_pageq_remove(fs.m);
375768131d2SAlan Cox 			vm_page_unlock_queues();
3762965a453SKip Macy 			vm_page_unlock(fs.m);
3777615edaaSMatthew Dillon 
3781c7c3c6aSMatthew Dillon 			/*
3791c7c3c6aSMatthew Dillon 			 * Mark page busy for other processes, and the
3801c7c3c6aSMatthew Dillon 			 * pagedaemon.  If it still isn't completely valid
3811c7c3c6aSMatthew Dillon 			 * (readable), jump to readrest, else break-out ( we
3821c7c3c6aSMatthew Dillon 			 * found the page ).
3831c7c3c6aSMatthew Dillon 			 */
384e69763a3SDoug Rabson 			vm_page_busy(fs.m);
3850a2e596aSAlan Cox 			if (fs.m->valid != VM_PAGE_BITS_ALL &&
3864866e085SJohn Dyson 				fs.m->object != kernel_object && fs.m->object != kmem_object) {
3870d94caffSDavid Greenman 				goto readrest;
3880d94caffSDavid Greenman 			}
389ffc82b0aSJohn Dyson 
390df8bae1dSRodney W. Grimes 			break;
391df8bae1dSRodney W. Grimes 		}
3921c7c3c6aSMatthew Dillon 
3931c7c3c6aSMatthew Dillon 		/*
39440360b1bSMatthew Dillon 		 * Page is not resident, If this is the search termination
39540360b1bSMatthew Dillon 		 * or the pager might contain the page, allocate a new page.
3961c7c3c6aSMatthew Dillon 		 */
39740360b1bSMatthew Dillon 		if (TRYPAGER || fs.object == fs.first_object) {
3984866e085SJohn Dyson 			if (fs.pindex >= fs.object->size) {
3994866e085SJohn Dyson 				unlock_and_deallocate(&fs);
4005f55e841SDavid Greenman 				return (KERN_PROTECTION_FAILURE);
4015f55e841SDavid Greenman 			}
40222ba64e8SJohn Dyson 
403df8bae1dSRodney W. Grimes 			/*
4040d94caffSDavid Greenman 			 * Allocate a new page for this object/offset pair.
4053f1c4c4fSKonstantin Belousov 			 *
4063f1c4c4fSKonstantin Belousov 			 * Unlocked read of the p_flag is harmless. At
4073f1c4c4fSKonstantin Belousov 			 * worst, the P_KILLED might be not observed
4083f1c4c4fSKonstantin Belousov 			 * there, and allocation can fail, causing
4093f1c4c4fSKonstantin Belousov 			 * restart and new reading of the p_flag.
410df8bae1dSRodney W. Grimes 			 */
41140360b1bSMatthew Dillon 			fs.m = NULL;
4123f1c4c4fSKonstantin Belousov 			if (!vm_page_count_severe() || P_KILLED(curproc)) {
413f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
414f8a47341SAlan Cox 				if ((fs.object->flags & OBJ_COLORED) == 0) {
415f8a47341SAlan Cox 					fs.object->flags |= OBJ_COLORED;
416f8a47341SAlan Cox 					fs.object->pg_color = atop(vaddr) -
417f8a47341SAlan Cox 					    fs.pindex;
418f8a47341SAlan Cox 				}
419f8a47341SAlan Cox #endif
4203f1c4c4fSKonstantin Belousov 				alloc_req = P_KILLED(curproc) ?
4213f1c4c4fSKonstantin Belousov 				    VM_ALLOC_SYSTEM : VM_ALLOC_NORMAL;
4223f1c4c4fSKonstantin Belousov 				if (fs.object->type != OBJT_VNODE &&
4233f1c4c4fSKonstantin Belousov 				    fs.object->backing_object == NULL)
4243f1c4c4fSKonstantin Belousov 					alloc_req |= VM_ALLOC_ZERO;
4254866e085SJohn Dyson 				fs.m = vm_page_alloc(fs.object, fs.pindex,
4263f1c4c4fSKonstantin Belousov 				    alloc_req);
42740360b1bSMatthew Dillon 			}
4284866e085SJohn Dyson 			if (fs.m == NULL) {
4294866e085SJohn Dyson 				unlock_and_deallocate(&fs);
430ef6020d1SMike Silbersack 				VM_WAITPFAULT;
431df8bae1dSRodney W. Grimes 				goto RetryFault;
4320a2e596aSAlan Cox 			} else if (fs.m->valid == VM_PAGE_BITS_ALL)
4334ab8ab92SKonstantin Belousov 				break;
434df8bae1dSRodney W. Grimes 		}
43547221757SJohn Dyson 
4360d94caffSDavid Greenman readrest:
4371c7c3c6aSMatthew Dillon 		/*
43840360b1bSMatthew Dillon 		 * We have found a valid page or we have allocated a new page.
43940360b1bSMatthew Dillon 		 * The page thus may not be valid or may not be entirely
44040360b1bSMatthew Dillon 		 * valid.
44140360b1bSMatthew Dillon 		 *
44240360b1bSMatthew Dillon 		 * Attempt to fault-in the page if there is a chance that the
44340360b1bSMatthew Dillon 		 * pager has it, and potentially fault in additional pages
44440360b1bSMatthew Dillon 		 * at the same time.
4451c7c3c6aSMatthew Dillon 		 */
44640360b1bSMatthew Dillon 		if (TRYPAGER) {
447df8bae1dSRodney W. Grimes 			int rv;
4489dae7290SMatt Jacob 			int reqpage = 0;
4497f866e4bSAlan Cox 			u_char behavior = vm_map_entry_behavior(fs.entry);
450867a482dSJohn Dyson 
4513f1c4c4fSKonstantin Belousov 			if (behavior == MAP_ENTRY_BEHAV_RANDOM ||
4523f1c4c4fSKonstantin Belousov 			    P_KILLED(curproc)) {
453867a482dSJohn Dyson 				ahead = 0;
454867a482dSJohn Dyson 				behind = 0;
4552d8acc0fSJohn Dyson 			} else {
4564866e085SJohn Dyson 				behind = (vaddr - fs.entry->start) >> PAGE_SHIFT;
4572d8acc0fSJohn Dyson 				if (behind > VM_FAULT_READ_BEHIND)
4582d8acc0fSJohn Dyson 					behind = VM_FAULT_READ_BEHIND;
4592d8acc0fSJohn Dyson 
4604866e085SJohn Dyson 				ahead = ((fs.entry->end - vaddr) >> PAGE_SHIFT) - 1;
4612d8acc0fSJohn Dyson 				if (ahead > VM_FAULT_READ_AHEAD)
4622d8acc0fSJohn Dyson 					ahead = VM_FAULT_READ_AHEAD;
463867a482dSJohn Dyson 			}
4648d8b9c6eSAlan Cox 			is_first_object_locked = FALSE;
4658d8b9c6eSAlan Cox 			if ((behavior == MAP_ENTRY_BEHAV_SEQUENTIAL ||
46640360b1bSMatthew Dillon 			     (behavior != MAP_ENTRY_BEHAV_RANDOM &&
46740360b1bSMatthew Dillon 			      fs.pindex >= fs.entry->lastr &&
4688d8b9c6eSAlan Cox 			      fs.pindex < fs.entry->lastr + VM_FAULT_READ)) &&
4698d8b9c6eSAlan Cox 			    (fs.first_object == fs.object ||
4708d8b9c6eSAlan Cox 			     (is_first_object_locked = VM_OBJECT_TRYLOCK(fs.first_object))) &&
471ec96dca7SAlan Cox 			    fs.first_object->type != OBJT_DEVICE &&
47201381811SJohn Baldwin 			    fs.first_object->type != OBJT_PHYS &&
47301381811SJohn Baldwin 			    fs.first_object->type != OBJT_SG) {
474867a482dSJohn Dyson 				vm_pindex_t firstpindex, tmppindex;
47540360b1bSMatthew Dillon 
47640360b1bSMatthew Dillon 				if (fs.first_pindex < 2 * VM_FAULT_READ)
477867a482dSJohn Dyson 					firstpindex = 0;
478867a482dSJohn Dyson 				else
47940360b1bSMatthew Dillon 					firstpindex = fs.first_pindex - 2 * VM_FAULT_READ;
480867a482dSJohn Dyson 
481c722e407SAlan Cox 				are_queues_locked = FALSE;
4824221e284SAlan Cox 				/*
4834221e284SAlan Cox 				 * note: partially valid pages cannot be
4844221e284SAlan Cox 				 * included in the lookahead - NFS piecemeal
4854221e284SAlan Cox 				 * writes will barf on it badly.
4864221e284SAlan Cox 				 */
4874866e085SJohn Dyson 				for (tmppindex = fs.first_pindex - 1;
4882100d645SPeter Wemm 					tmppindex >= firstpindex;
489867a482dSJohn Dyson 					--tmppindex) {
490867a482dSJohn Dyson 					vm_page_t mt;
491a1287949SEivind Eklund 
4924866e085SJohn Dyson 					mt = vm_page_lookup(fs.first_object, tmppindex);
493867a482dSJohn Dyson 					if (mt == NULL || (mt->valid != VM_PAGE_BITS_ALL))
494867a482dSJohn Dyson 						break;
495ff97964aSJohn Dyson 					if (mt->busy ||
496c722e407SAlan Cox 					    (mt->oflags & VPO_BUSY))
497c722e407SAlan Cox 						continue;
498c722e407SAlan Cox 					if (!are_queues_locked) {
499c722e407SAlan Cox 						are_queues_locked = TRUE;
5002965a453SKip Macy 						vm_page_lock(mt);
5012965a453SKip Macy 						vm_page_lock_queues();
5022965a453SKip Macy 					} else {
5032965a453SKip Macy 						vm_page_unlock_queues();
5042965a453SKip Macy 						vm_page_lock(mt);
505c722e407SAlan Cox 						vm_page_lock_queues();
506c722e407SAlan Cox 					}
507c722e407SAlan Cox 					if (mt->hold_count ||
5082965a453SKip Macy 					    mt->wire_count) {
5092965a453SKip Macy 						vm_page_unlock(mt);
510867a482dSJohn Dyson 						continue;
5112965a453SKip Macy 					}
5124fec79beSAlan Cox 					pmap_remove_all(mt);
513c6d9ef2eSAlan Cox 					if (mt->dirty) {
514867a482dSJohn Dyson 						vm_page_deactivate(mt);
515867a482dSJohn Dyson 					} else {
516867a482dSJohn Dyson 						vm_page_cache(mt);
517867a482dSJohn Dyson 					}
5182965a453SKip Macy 					vm_page_unlock(mt);
519867a482dSJohn Dyson 				}
520c722e407SAlan Cox 				if (are_queues_locked)
52115a5d210SAlan Cox 					vm_page_unlock_queues();
522867a482dSJohn Dyson 				ahead += behind;
523867a482dSJohn Dyson 				behind = 0;
524867a482dSJohn Dyson 			}
5258d8b9c6eSAlan Cox 			if (is_first_object_locked)
5268d8b9c6eSAlan Cox 				VM_OBJECT_UNLOCK(fs.first_object);
527d2bf64c3SKonstantin Belousov 
528d2bf64c3SKonstantin Belousov 			/*
529d2bf64c3SKonstantin Belousov 			 * Call the pager to retrieve the data, if any, after
530d2bf64c3SKonstantin Belousov 			 * releasing the lock on the map.  We hold a ref on
531d2bf64c3SKonstantin Belousov 			 * fs.object and the pages are VPO_BUSY'd.
532d2bf64c3SKonstantin Belousov 			 */
533d2bf64c3SKonstantin Belousov 			unlock_map(&fs);
534d2bf64c3SKonstantin Belousov 
535d2bf64c3SKonstantin Belousov vnode_lock:
536d2bf64c3SKonstantin Belousov 			if (fs.object->type == OBJT_VNODE) {
537d2bf64c3SKonstantin Belousov 				vp = fs.object->handle;
538d2bf64c3SKonstantin Belousov 				if (vp == fs.vp)
539d2bf64c3SKonstantin Belousov 					goto vnode_locked;
540d2bf64c3SKonstantin Belousov 				else if (fs.vp != NULL) {
541d2bf64c3SKonstantin Belousov 					vput(fs.vp);
542d2bf64c3SKonstantin Belousov 					fs.vp = NULL;
543d2bf64c3SKonstantin Belousov 				}
544d2bf64c3SKonstantin Belousov 				locked = VOP_ISLOCKED(vp);
545d2bf64c3SKonstantin Belousov 
546d2bf64c3SKonstantin Belousov 				if (VFS_NEEDSGIANT(vp->v_mount) && !fs.vfslocked) {
547d2bf64c3SKonstantin Belousov 					fs.vfslocked = 1;
548d2bf64c3SKonstantin Belousov 					if (!mtx_trylock(&Giant)) {
549d2bf64c3SKonstantin Belousov 						VM_OBJECT_UNLOCK(fs.object);
550d2bf64c3SKonstantin Belousov 						mtx_lock(&Giant);
551d2bf64c3SKonstantin Belousov 						VM_OBJECT_LOCK(fs.object);
552d2bf64c3SKonstantin Belousov 						goto vnode_lock;
553d2bf64c3SKonstantin Belousov 					}
554d2bf64c3SKonstantin Belousov 				}
555d2bf64c3SKonstantin Belousov 				if (locked != LK_EXCLUSIVE)
556d2bf64c3SKonstantin Belousov 					locked = LK_SHARED;
557d2bf64c3SKonstantin Belousov 				/* Do not sleep for vnode lock while fs.m is busy */
558d2bf64c3SKonstantin Belousov 				error = vget(vp, locked | LK_CANRECURSE |
559d2bf64c3SKonstantin Belousov 				    LK_NOWAIT, curthread);
560d2bf64c3SKonstantin Belousov 				if (error != 0) {
561d2bf64c3SKonstantin Belousov 					int vfslocked;
562d2bf64c3SKonstantin Belousov 
563d2bf64c3SKonstantin Belousov 					vfslocked = fs.vfslocked;
564d2bf64c3SKonstantin Belousov 					fs.vfslocked = 0; /* Keep Giant */
565d2bf64c3SKonstantin Belousov 					vhold(vp);
566d2bf64c3SKonstantin Belousov 					release_page(&fs);
567d2bf64c3SKonstantin Belousov 					unlock_and_deallocate(&fs);
568d2bf64c3SKonstantin Belousov 					error = vget(vp, locked | LK_RETRY |
569d2bf64c3SKonstantin Belousov 					    LK_CANRECURSE, curthread);
570d2bf64c3SKonstantin Belousov 					vdrop(vp);
571d2bf64c3SKonstantin Belousov 					fs.vp = vp;
572d2bf64c3SKonstantin Belousov 					fs.vfslocked = vfslocked;
573d2bf64c3SKonstantin Belousov 					KASSERT(error == 0,
574d2bf64c3SKonstantin Belousov 					    ("vm_fault: vget failed"));
575d2bf64c3SKonstantin Belousov 					goto RetryFault;
576d2bf64c3SKonstantin Belousov 				}
577d2bf64c3SKonstantin Belousov 				fs.vp = vp;
578d2bf64c3SKonstantin Belousov 			}
579d2bf64c3SKonstantin Belousov vnode_locked:
580d2bf64c3SKonstantin Belousov 			KASSERT(fs.vp == NULL || !fs.map->system_map,
581d2bf64c3SKonstantin Belousov 			    ("vm_fault: vnode-backed object mapped by system map"));
582d2bf64c3SKonstantin Belousov 
583df8bae1dSRodney W. Grimes 			/*
5840d94caffSDavid Greenman 			 * now we find out if any other pages should be paged
5850d94caffSDavid Greenman 			 * in at this time this routine checks to see if the
5860d94caffSDavid Greenman 			 * pages surrounding this fault reside in the same
5870d94caffSDavid Greenman 			 * object as the page for this fault.  If they do,
5880d94caffSDavid Greenman 			 * then they are faulted in also into the object.  The
5890d94caffSDavid Greenman 			 * array "marray" returned contains an array of
5900d94caffSDavid Greenman 			 * vm_page_t structs where one of them is the
5910d94caffSDavid Greenman 			 * vm_page_t passed to the routine.  The reqpage
5920d94caffSDavid Greenman 			 * return value is the index into the marray for the
5930d94caffSDavid Greenman 			 * vm_page_t passed to the routine.
5941c7c3c6aSMatthew Dillon 			 *
5959af80719SAlan Cox 			 * fs.m plus the additional pages are VPO_BUSY'd.
59626f9a767SRodney W. Grimes 			 */
59705f0fdd2SPoul-Henning Kamp 			faultcount = vm_fault_additional_pages(
5984866e085SJohn Dyson 			    fs.m, behind, ahead, marray, &reqpage);
599df8bae1dSRodney W. Grimes 
60026f9a767SRodney W. Grimes 			rv = faultcount ?
6014866e085SJohn Dyson 			    vm_pager_get_pages(fs.object, marray, faultcount,
60224a1cce3SDavid Greenman 				reqpage) : VM_PAGER_FAIL;
60322ba64e8SJohn Dyson 
60426f9a767SRodney W. Grimes 			if (rv == VM_PAGER_OK) {
605df8bae1dSRodney W. Grimes 				/*
606f230c45cSJohn Dyson 				 * Found the page. Leave it busy while we play
607f230c45cSJohn Dyson 				 * with it.
608f230c45cSJohn Dyson 				 */
609f230c45cSJohn Dyson 
610f230c45cSJohn Dyson 				/*
6110d94caffSDavid Greenman 				 * Relookup in case pager changed page. Pager
6120d94caffSDavid Greenman 				 * is responsible for disposition of old page
6130d94caffSDavid Greenman 				 * if moved.
614df8bae1dSRodney W. Grimes 				 */
6154866e085SJohn Dyson 				fs.m = vm_page_lookup(fs.object, fs.pindex);
6164866e085SJohn Dyson 				if (!fs.m) {
6174866e085SJohn Dyson 					unlock_and_deallocate(&fs);
618f6b04d2bSDavid Greenman 					goto RetryFault;
619f6b04d2bSDavid Greenman 				}
620f6b04d2bSDavid Greenman 
62126f9a767SRodney W. Grimes 				hardfault++;
6221c7c3c6aSMatthew Dillon 				break; /* break to PAGE HAS BEEN FOUND */
623df8bae1dSRodney W. Grimes 			}
624df8bae1dSRodney W. Grimes 			/*
6250d94caffSDavid Greenman 			 * Remove the bogus page (which does not exist at this
6260d94caffSDavid Greenman 			 * object/offset); before doing so, we must get back
6270d94caffSDavid Greenman 			 * our object lock to preserve our invariant.
628df8bae1dSRodney W. Grimes 			 *
62924a1cce3SDavid Greenman 			 * Also wake up any other process that may want to bring
6300d94caffSDavid Greenman 			 * in this page.
631df8bae1dSRodney W. Grimes 			 *
6320d94caffSDavid Greenman 			 * If this is the top-level object, we must leave the
63324a1cce3SDavid Greenman 			 * busy page to prevent another process from rushing
6340d94caffSDavid Greenman 			 * past us, and inserting the page in that object at
6350d94caffSDavid Greenman 			 * the same time that we are.
636df8bae1dSRodney W. Grimes 			 */
637a83c285cSDavid Greenman 			if (rv == VM_PAGER_ERROR)
638f3679e35SDavid Greenman 				printf("vm_fault: pager read error, pid %d (%s)\n",
639f3679e35SDavid Greenman 				    curproc->p_pid, curproc->p_comm);
64026f9a767SRodney W. Grimes 			/*
641a83c285cSDavid Greenman 			 * Data outside the range of the pager or an I/O error
64226f9a767SRodney W. Grimes 			 */
643a83c285cSDavid Greenman 			/*
6440d94caffSDavid Greenman 			 * XXX - the check for kernel_map is a kludge to work
6450d94caffSDavid Greenman 			 * around having the machine panic on a kernel space
6460d94caffSDavid Greenman 			 * fault w/ I/O error.
647a83c285cSDavid Greenman 			 */
6484866e085SJohn Dyson 			if (((fs.map != kernel_map) && (rv == VM_PAGER_ERROR)) ||
64947221757SJohn Dyson 				(rv == VM_PAGER_BAD)) {
6502965a453SKip Macy 				vm_page_lock(fs.m);
6512ad98273SAlan Cox 				vm_page_lock_queues();
6524866e085SJohn Dyson 				vm_page_free(fs.m);
6532ad98273SAlan Cox 				vm_page_unlock_queues();
6542965a453SKip Macy 				vm_page_unlock(fs.m);
6554866e085SJohn Dyson 				fs.m = NULL;
6564866e085SJohn Dyson 				unlock_and_deallocate(&fs);
657a83c285cSDavid Greenman 				return ((rv == VM_PAGER_ERROR) ? KERN_FAILURE : KERN_PROTECTION_FAILURE);
65826f9a767SRodney W. Grimes 			}
6594866e085SJohn Dyson 			if (fs.object != fs.first_object) {
6602965a453SKip Macy 				vm_page_lock(fs.m);
6612ad98273SAlan Cox 				vm_page_lock_queues();
6624866e085SJohn Dyson 				vm_page_free(fs.m);
6632ad98273SAlan Cox 				vm_page_unlock_queues();
6642965a453SKip Macy 				vm_page_unlock(fs.m);
6654866e085SJohn Dyson 				fs.m = NULL;
66626f9a767SRodney W. Grimes 				/*
66726f9a767SRodney W. Grimes 				 * XXX - we cannot just fall out at this
66826f9a767SRodney W. Grimes 				 * point, m has been freed and is invalid!
66926f9a767SRodney W. Grimes 				 */
670df8bae1dSRodney W. Grimes 			}
671df8bae1dSRodney W. Grimes 		}
67240360b1bSMatthew Dillon 
673df8bae1dSRodney W. Grimes 		/*
6741c7c3c6aSMatthew Dillon 		 * We get here if the object has default pager (or unwiring)
6751c7c3c6aSMatthew Dillon 		 * or the pager doesn't have the page.
676df8bae1dSRodney W. Grimes 		 */
6774866e085SJohn Dyson 		if (fs.object == fs.first_object)
6784866e085SJohn Dyson 			fs.first_m = fs.m;
679df8bae1dSRodney W. Grimes 
680df8bae1dSRodney W. Grimes 		/*
6810d94caffSDavid Greenman 		 * Move on to the next object.  Lock the next object before
6820d94caffSDavid Greenman 		 * unlocking the current one.
683df8bae1dSRodney W. Grimes 		 */
6844866e085SJohn Dyson 		fs.pindex += OFF_TO_IDX(fs.object->backing_object_offset);
6854866e085SJohn Dyson 		next_object = fs.object->backing_object;
686df8bae1dSRodney W. Grimes 		if (next_object == NULL) {
687df8bae1dSRodney W. Grimes 			/*
6880d94caffSDavid Greenman 			 * If there's no object left, fill the page in the top
6890d94caffSDavid Greenman 			 * object with zeros.
690df8bae1dSRodney W. Grimes 			 */
6914866e085SJohn Dyson 			if (fs.object != fs.first_object) {
6924866e085SJohn Dyson 				vm_object_pip_wakeup(fs.object);
693b009d5a0SAlan Cox 				VM_OBJECT_UNLOCK(fs.object);
694df8bae1dSRodney W. Grimes 
6954866e085SJohn Dyson 				fs.object = fs.first_object;
6964866e085SJohn Dyson 				fs.pindex = fs.first_pindex;
6974866e085SJohn Dyson 				fs.m = fs.first_m;
698f29ba63eSAlan Cox 				VM_OBJECT_LOCK(fs.object);
699df8bae1dSRodney W. Grimes 			}
7004866e085SJohn Dyson 			fs.first_m = NULL;
701df8bae1dSRodney W. Grimes 
7024221e284SAlan Cox 			/*
7034221e284SAlan Cox 			 * Zero the page if necessary and mark it valid.
7044221e284SAlan Cox 			 */
7054866e085SJohn Dyson 			if ((fs.m->flags & PG_ZERO) == 0) {
706fff6062aSAlan Cox 				pmap_zero_page(fs.m);
7074221e284SAlan Cox 			} else {
70867596082SAttilio Rao 				PCPU_INC(cnt.v_ozfod);
7094221e284SAlan Cox 			}
71067596082SAttilio Rao 			PCPU_INC(cnt.v_zfod);
7114221e284SAlan Cox 			fs.m->valid = VM_PAGE_BITS_ALL;
7121c7c3c6aSMatthew Dillon 			break;	/* break to PAGE HAS BEEN FOUND */
7130d94caffSDavid Greenman 		} else {
714c8567c3aSAlan Cox 			KASSERT(fs.object != next_object,
715c8567c3aSAlan Cox 			    ("object loop %p", next_object));
716c8567c3aSAlan Cox 			VM_OBJECT_LOCK(next_object);
717c8567c3aSAlan Cox 			vm_object_pip_add(next_object, 1);
718c8567c3aSAlan Cox 			if (fs.object != fs.first_object)
7194866e085SJohn Dyson 				vm_object_pip_wakeup(fs.object);
720b009d5a0SAlan Cox 			VM_OBJECT_UNLOCK(fs.object);
7214866e085SJohn Dyson 			fs.object = next_object;
722df8bae1dSRodney W. Grimes 		}
723df8bae1dSRodney W. Grimes 	}
7241c7c3c6aSMatthew Dillon 
7259af80719SAlan Cox 	KASSERT((fs.m->oflags & VPO_BUSY) != 0,
7265526d2d9SEivind Eklund 	    ("vm_fault: not busy after main loop"));
727df8bae1dSRodney W. Grimes 
728df8bae1dSRodney W. Grimes 	/*
7290d94caffSDavid Greenman 	 * PAGE HAS BEEN FOUND. [Loop invariant still holds -- the object lock
730df8bae1dSRodney W. Grimes 	 * is held.]
731df8bae1dSRodney W. Grimes 	 */
732df8bae1dSRodney W. Grimes 
733df8bae1dSRodney W. Grimes 	/*
7340d94caffSDavid Greenman 	 * If the page is being written, but isn't already owned by the
7350d94caffSDavid Greenman 	 * top-level object, we have to copy it into a new page owned by the
7360d94caffSDavid Greenman 	 * top-level object.
737df8bae1dSRodney W. Grimes 	 */
7384866e085SJohn Dyson 	if (fs.object != fs.first_object) {
739df8bae1dSRodney W. Grimes 		/*
7400d94caffSDavid Greenman 		 * We only really need to copy if we want to write it.
741df8bae1dSRodney W. Grimes 		 */
742a6d42a0dSAlan Cox 		if ((fault_type & (VM_PROT_COPY | VM_PROT_WRITE)) != 0) {
743df8bae1dSRodney W. Grimes 			/*
7441c7c3c6aSMatthew Dillon 			 * This allows pages to be virtually copied from a
7451c7c3c6aSMatthew Dillon 			 * backing_object into the first_object, where the
7461c7c3c6aSMatthew Dillon 			 * backing object has no other refs to it, and cannot
7471c7c3c6aSMatthew Dillon 			 * gain any more refs.  Instead of a bcopy, we just
7481c7c3c6aSMatthew Dillon 			 * move the page from the backing object to the
7491c7c3c6aSMatthew Dillon 			 * first object.  Note that we must mark the page
7501c7c3c6aSMatthew Dillon 			 * dirty in the first object so that it will go out
7511c7c3c6aSMatthew Dillon 			 * to swap when needed.
752df8bae1dSRodney W. Grimes 			 */
753ebf75125SAlan Cox 			is_first_object_locked = FALSE;
754e50346b5SAlan Cox 			if (
755de5f6a77SJohn Dyson 				/*
756de5f6a77SJohn Dyson 				 * Only one shadow object
757de5f6a77SJohn Dyson 				 */
7584866e085SJohn Dyson 				(fs.object->shadow_count == 1) &&
759de5f6a77SJohn Dyson 				/*
760de5f6a77SJohn Dyson 				 * No COW refs, except us
761de5f6a77SJohn Dyson 				 */
7624866e085SJohn Dyson 				(fs.object->ref_count == 1) &&
763de5f6a77SJohn Dyson 				/*
7645929bcfaSPhilippe Charnier 				 * No one else can look this object up
765de5f6a77SJohn Dyson 				 */
7664866e085SJohn Dyson 				(fs.object->handle == NULL) &&
767de5f6a77SJohn Dyson 				/*
768de5f6a77SJohn Dyson 				 * No other ways to look the object up
769de5f6a77SJohn Dyson 				 */
7704866e085SJohn Dyson 				((fs.object->type == OBJT_DEFAULT) ||
7714866e085SJohn Dyson 				 (fs.object->type == OBJT_SWAP)) &&
772ebf75125SAlan Cox 			    (is_first_object_locked = VM_OBJECT_TRYLOCK(fs.first_object)) &&
773de5f6a77SJohn Dyson 				/*
774de5f6a77SJohn Dyson 				 * We don't chase down the shadow chain
775de5f6a77SJohn Dyson 				 */
776e50346b5SAlan Cox 			    fs.object == fs.first_object->backing_object) {
7772965a453SKip Macy 				vm_page_lock(fs.first_m);
778d98ddc46SAlan Cox 				vm_page_lock_queues();
7792d8acc0fSJohn Dyson 				/*
780de5f6a77SJohn Dyson 				 * get rid of the unnecessary page
781df8bae1dSRodney W. Grimes 				 */
7824866e085SJohn Dyson 				vm_page_free(fs.first_m);
7832965a453SKip Macy 				vm_page_unlock_queues();
7842965a453SKip Macy 				vm_page_unlock(fs.first_m);
785de5f6a77SJohn Dyson 				/*
7861c7c3c6aSMatthew Dillon 				 * grab the page and put it into the
7871c7c3c6aSMatthew Dillon 				 * process'es object.  The page is
7881c7c3c6aSMatthew Dillon 				 * automatically made dirty.
789de5f6a77SJohn Dyson 				 */
7902965a453SKip Macy 				vm_page_lock(fs.m);
7912965a453SKip Macy 				vm_page_lock_queues();
7924866e085SJohn Dyson 				vm_page_rename(fs.m, fs.first_object, fs.first_pindex);
7939a96b638SAlan Cox 				vm_page_unlock_queues();
7942965a453SKip Macy 				vm_page_unlock(fs.m);
795768131d2SAlan Cox 				vm_page_busy(fs.m);
796d98ddc46SAlan Cox 				fs.first_m = fs.m;
7974866e085SJohn Dyson 				fs.m = NULL;
79867596082SAttilio Rao 				PCPU_INC(cnt.v_cow_optim);
799de5f6a77SJohn Dyson 			} else {
800de5f6a77SJohn Dyson 				/*
801de5f6a77SJohn Dyson 				 * Oh, well, lets copy it.
802de5f6a77SJohn Dyson 				 */
803669890eaSAlan Cox 				pmap_copy_page(fs.m, fs.first_m);
804669890eaSAlan Cox 				fs.first_m->valid = VM_PAGE_BITS_ALL;
805d8778512SAlan Cox 				if (wired && (fault_flags &
806d8778512SAlan Cox 				    VM_FAULT_CHANGE_WIRING) == 0) {
8072965a453SKip Macy 					vm_page_lock(fs.first_m);
80879f6ebe2SAlan Cox 					vm_page_lock_queues();
809d8778512SAlan Cox 					vm_page_wire(fs.first_m);
8102965a453SKip Macy 					vm_page_unlock_queues();
8112965a453SKip Macy 					vm_page_unlock(fs.first_m);
8122965a453SKip Macy 
8132965a453SKip Macy 					vm_page_lock(fs.m);
8142965a453SKip Macy 					vm_page_lock_queues();
815d8778512SAlan Cox 					vm_page_unwire(fs.m, FALSE);
81679f6ebe2SAlan Cox 					vm_page_unlock_queues();
8172965a453SKip Macy 					vm_page_unlock(fs.m);
818de5f6a77SJohn Dyson 				}
819df8bae1dSRodney W. Grimes 				/*
820df8bae1dSRodney W. Grimes 				 * We no longer need the old page or object.
821df8bae1dSRodney W. Grimes 				 */
8224866e085SJohn Dyson 				release_page(&fs);
823de5f6a77SJohn Dyson 			}
8241c7c3c6aSMatthew Dillon 			/*
8251c7c3c6aSMatthew Dillon 			 * fs.object != fs.first_object due to above
8261c7c3c6aSMatthew Dillon 			 * conditional
8271c7c3c6aSMatthew Dillon 			 */
8284866e085SJohn Dyson 			vm_object_pip_wakeup(fs.object);
829b009d5a0SAlan Cox 			VM_OBJECT_UNLOCK(fs.object);
830df8bae1dSRodney W. Grimes 			/*
831df8bae1dSRodney W. Grimes 			 * Only use the new page below...
832df8bae1dSRodney W. Grimes 			 */
8334866e085SJohn Dyson 			fs.object = fs.first_object;
8344866e085SJohn Dyson 			fs.pindex = fs.first_pindex;
835d98ddc46SAlan Cox 			fs.m = fs.first_m;
836f29ba63eSAlan Cox 			if (!is_first_object_locked)
837f29ba63eSAlan Cox 				VM_OBJECT_LOCK(fs.object);
83867596082SAttilio Rao 			PCPU_INC(cnt.v_cow_faults);
8390d94caffSDavid Greenman 		} else {
840df8bae1dSRodney W. Grimes 			prot &= ~VM_PROT_WRITE;
841df8bae1dSRodney W. Grimes 		}
842df8bae1dSRodney W. Grimes 	}
843df8bae1dSRodney W. Grimes 
844df8bae1dSRodney W. Grimes 	/*
8450d94caffSDavid Greenman 	 * We must verify that the maps have not changed since our last
8460d94caffSDavid Greenman 	 * lookup.
847df8bae1dSRodney W. Grimes 	 */
84819dc5607STor Egge 	if (!fs.lookup_still_valid) {
849df8bae1dSRodney W. Grimes 		vm_object_t retry_object;
850a316d390SJohn Dyson 		vm_pindex_t retry_pindex;
851df8bae1dSRodney W. Grimes 		vm_prot_t retry_prot;
852df8bae1dSRodney W. Grimes 
85319dc5607STor Egge 		if (!vm_map_trylock_read(fs.map)) {
854b823bbd6SMatthew Dillon 			release_page(&fs);
855b823bbd6SMatthew Dillon 			unlock_and_deallocate(&fs);
856b823bbd6SMatthew Dillon 			goto RetryFault;
857b823bbd6SMatthew Dillon 		}
85819dc5607STor Egge 		fs.lookup_still_valid = TRUE;
85919dc5607STor Egge 		if (fs.map->timestamp != map_generation) {
86019dc5607STor Egge 			result = vm_map_lookup_locked(&fs.map, vaddr, fault_type,
8614866e085SJohn Dyson 			    &fs.entry, &retry_object, &retry_pindex, &retry_prot, &wired);
862df8bae1dSRodney W. Grimes 
863df8bae1dSRodney W. Grimes 			/*
86444ed3417STor Egge 			 * If we don't need the page any longer, put it on the inactive
8650d94caffSDavid Greenman 			 * list (the easiest thing to do here).  If no one needs it,
8660d94caffSDavid Greenman 			 * pageout will grab it eventually.
867df8bae1dSRodney W. Grimes 			 */
868df8bae1dSRodney W. Grimes 			if (result != KERN_SUCCESS) {
8694866e085SJohn Dyson 				release_page(&fs);
8704866e085SJohn Dyson 				unlock_and_deallocate(&fs);
87119dc5607STor Egge 
87219dc5607STor Egge 				/*
87319dc5607STor Egge 				 * If retry of map lookup would have blocked then
87419dc5607STor Egge 				 * retry fault from start.
87519dc5607STor Egge 				 */
87619dc5607STor Egge 				if (result == KERN_FAILURE)
87719dc5607STor Egge 					goto RetryFault;
878df8bae1dSRodney W. Grimes 				return (result);
879df8bae1dSRodney W. Grimes 			}
8804866e085SJohn Dyson 			if ((retry_object != fs.first_object) ||
8814866e085SJohn Dyson 			    (retry_pindex != fs.first_pindex)) {
8824866e085SJohn Dyson 				release_page(&fs);
8834866e085SJohn Dyson 				unlock_and_deallocate(&fs);
884df8bae1dSRodney W. Grimes 				goto RetryFault;
885df8bae1dSRodney W. Grimes 			}
88619dc5607STor Egge 
887df8bae1dSRodney W. Grimes 			/*
8880d94caffSDavid Greenman 			 * Check whether the protection has changed or the object has
8890d94caffSDavid Greenman 			 * been copied while we left the map unlocked. Changing from
8900d94caffSDavid Greenman 			 * read to write permission is OK - we leave the page
8910d94caffSDavid Greenman 			 * write-protected, and catch the write fault. Changing from
8920d94caffSDavid Greenman 			 * write to read permission means that we can't mark the page
8930d94caffSDavid Greenman 			 * write-enabled after all.
894df8bae1dSRodney W. Grimes 			 */
895df8bae1dSRodney W. Grimes 			prot &= retry_prot;
896df8bae1dSRodney W. Grimes 		}
89719dc5607STor Egge 	}
898d2bf64c3SKonstantin Belousov 	/*
8995758fe71SAlan Cox 	 * If the page was filled by a pager, update the map entry's
9005758fe71SAlan Cox 	 * last read offset.  Since the pager does not return the
9015758fe71SAlan Cox 	 * actual set of pages that it read, this update is based on
9025758fe71SAlan Cox 	 * the requested set.  Typically, the requested and actual
9035758fe71SAlan Cox 	 * sets are the same.
904d2bf64c3SKonstantin Belousov 	 *
905d2bf64c3SKonstantin Belousov 	 * XXX The following assignment modifies the map
906d2bf64c3SKonstantin Belousov 	 * without holding a write lock on it.
907d2bf64c3SKonstantin Belousov 	 */
9085758fe71SAlan Cox 	if (hardfault)
909d2bf64c3SKonstantin Belousov 		fs.entry->lastr = fs.pindex + faultcount - behind;
910d2bf64c3SKonstantin Belousov 
9112ddba215SDavid Greenman 	if (prot & VM_PROT_WRITE) {
912b146f9e5SAlan Cox 		vm_object_set_writeable_dirty(fs.object);
9134f79d873SMatthew Dillon 
9142ddba215SDavid Greenman 		/*
915b146f9e5SAlan Cox 		 * If this is a NOSYNC mmap we do not want to set VPO_NOSYNC
9164f79d873SMatthew Dillon 		 * if the page is already dirty to prevent data written with
9174f79d873SMatthew Dillon 		 * the expectation of being synced from not being synced.
9184f79d873SMatthew Dillon 		 * Likewise if this entry does not request NOSYNC then make
9194f79d873SMatthew Dillon 		 * sure the page isn't marked NOSYNC.  Applications sharing
9204f79d873SMatthew Dillon 		 * data should use the same flags to avoid ping ponging.
9212ddba215SDavid Greenman 		 */
9224f79d873SMatthew Dillon 		if (fs.entry->eflags & MAP_ENTRY_NOSYNC) {
9234f79d873SMatthew Dillon 			if (fs.m->dirty == 0)
924b146f9e5SAlan Cox 				fs.m->oflags |= VPO_NOSYNC;
9254f79d873SMatthew Dillon 		} else {
926b146f9e5SAlan Cox 			fs.m->oflags &= ~VPO_NOSYNC;
9274f79d873SMatthew Dillon 		}
928e2997feaSAlan Cox 
929e2997feaSAlan Cox 		/*
930e2997feaSAlan Cox 		 * If the fault is a write, we know that this page is being
931e2997feaSAlan Cox 		 * written NOW so dirty it explicitly to save on
932e2997feaSAlan Cox 		 * pmap_is_modified() calls later.
933e2997feaSAlan Cox 		 *
934e2997feaSAlan Cox 		 * Also tell the backing pager, if any, that it should remove
935e2997feaSAlan Cox 		 * any swap backing since the page is now dirty.
936e2997feaSAlan Cox 		 */
937e2997feaSAlan Cox 		if ((fault_type & VM_PROT_WRITE) != 0 &&
938e2997feaSAlan Cox 		    (fault_flags & VM_FAULT_CHANGE_WIRING) == 0) {
9397dbf82dcSMatthew Dillon 			vm_page_dirty(fs.m);
9401c7c3c6aSMatthew Dillon 			vm_pager_page_unswapped(fs.m);
9412ddba215SDavid Greenman 		}
9422ddba215SDavid Greenman 	}
943f6b04d2bSDavid Greenman 
944bc6d84a6SMatthew Dillon 	/*
945bc6d84a6SMatthew Dillon 	 * Page had better still be busy
946bc6d84a6SMatthew Dillon 	 */
9479af80719SAlan Cox 	KASSERT(fs.m->oflags & VPO_BUSY,
948ca06c247SAlan Cox 		("vm_fault: page %p not busy!", fs.m));
9494221e284SAlan Cox 	/*
95078cfe1f7SAlan Cox 	 * Page must be completely valid or it is not fit to
9514221e284SAlan Cox 	 * map into user space.  vm_pager_get_pages() ensures this.
9524221e284SAlan Cox 	 */
95378cfe1f7SAlan Cox 	KASSERT(fs.m->valid == VM_PAGE_BITS_ALL,
95478cfe1f7SAlan Cox 	    ("vm_fault: page %p partially invalid", fs.m));
955eebf3286SAlan Cox 	VM_OBJECT_UNLOCK(fs.object);
956cbfbaad8SAlan Cox 
95786735996SAlan Cox 	/*
95886735996SAlan Cox 	 * Put this page into the physical map.  We had to do the unlock above
95986735996SAlan Cox 	 * because pmap_enter() may sleep.  We don't put the page
96086735996SAlan Cox 	 * back on the active queue until later so that the pageout daemon
96186735996SAlan Cox 	 * won't find it (yet).
96286735996SAlan Cox 	 */
963eb2a0517SAlan Cox 	pmap_enter(fs.map->pmap, vaddr, fault_type, fs.m, prot, wired);
9642db65ab4SAlan Cox 	if ((fault_flags & VM_FAULT_CHANGE_WIRING) == 0 && wired == 0)
965566526a9SAlan Cox 		vm_fault_prefault(fs.map->pmap, vaddr, fs.entry);
966eebf3286SAlan Cox 	VM_OBJECT_LOCK(fs.object);
9672965a453SKip Macy 	vm_page_lock(fs.m);
9682d09a6adSAlan Cox 	vm_page_lock_queues();
969ff97964aSJohn Dyson 
970df8bae1dSRodney W. Grimes 	/*
9710d94caffSDavid Greenman 	 * If the page is not wired down, then put it where the pageout daemon
9720d94caffSDavid Greenman 	 * can find it.
973df8bae1dSRodney W. Grimes 	 */
9742db65ab4SAlan Cox 	if (fault_flags & VM_FAULT_CHANGE_WIRING) {
975df8bae1dSRodney W. Grimes 		if (wired)
9764866e085SJohn Dyson 			vm_page_wire(fs.m);
977df8bae1dSRodney W. Grimes 		else
97873007561SDavid Greenman 			vm_page_unwire(fs.m, 1);
9790d94caffSDavid Greenman 	} else {
9804866e085SJohn Dyson 		vm_page_activate(fs.m);
98126f9a767SRodney W. Grimes 	}
9822d09a6adSAlan Cox 	vm_page_unlock_queues();
9832965a453SKip Macy 	vm_page_unlock(fs.m);
98466bdd5d6SAlan Cox 	vm_page_wakeup(fs.m);
985eeec6babSJohn Baldwin 
986eebf3286SAlan Cox 	/*
987eebf3286SAlan Cox 	 * Unlock everything, and return
988eebf3286SAlan Cox 	 */
989eebf3286SAlan Cox 	unlock_and_deallocate(&fs);
9901c4bcd05SJeff Roberson 	if (hardfault)
9911c4bcd05SJeff Roberson 		curthread->td_ru.ru_majflt++;
9921c4bcd05SJeff Roberson 	else
9931c4bcd05SJeff Roberson 		curthread->td_ru.ru_minflt++;
994df8bae1dSRodney W. Grimes 
995df8bae1dSRodney W. Grimes 	return (KERN_SUCCESS);
996df8bae1dSRodney W. Grimes }
997df8bae1dSRodney W. Grimes 
998df8bae1dSRodney W. Grimes /*
999566526a9SAlan Cox  * vm_fault_prefault provides a quick way of clustering
1000566526a9SAlan Cox  * pagefaults into a processes address space.  It is a "cousin"
1001566526a9SAlan Cox  * of vm_map_pmap_enter, except it runs at page fault time instead
1002566526a9SAlan Cox  * of mmap time.
1003566526a9SAlan Cox  */
1004566526a9SAlan Cox static void
1005566526a9SAlan Cox vm_fault_prefault(pmap_t pmap, vm_offset_t addra, vm_map_entry_t entry)
1006566526a9SAlan Cox {
1007566526a9SAlan Cox 	int i;
1008566526a9SAlan Cox 	vm_offset_t addr, starta;
1009566526a9SAlan Cox 	vm_pindex_t pindex;
10102053c127SStephan Uphoff 	vm_page_t m;
1011566526a9SAlan Cox 	vm_object_t object;
1012566526a9SAlan Cox 
1013950d5f7aSAlan Cox 	if (pmap != vmspace_pmap(curthread->td_proc->p_vmspace))
1014566526a9SAlan Cox 		return;
1015566526a9SAlan Cox 
1016566526a9SAlan Cox 	object = entry->object.vm_object;
1017566526a9SAlan Cox 
1018566526a9SAlan Cox 	starta = addra - PFBAK * PAGE_SIZE;
1019566526a9SAlan Cox 	if (starta < entry->start) {
1020566526a9SAlan Cox 		starta = entry->start;
1021566526a9SAlan Cox 	} else if (starta > addra) {
1022566526a9SAlan Cox 		starta = 0;
1023566526a9SAlan Cox 	}
1024566526a9SAlan Cox 
1025566526a9SAlan Cox 	for (i = 0; i < PAGEORDER_SIZE; i++) {
1026566526a9SAlan Cox 		vm_object_t backing_object, lobject;
1027566526a9SAlan Cox 
1028566526a9SAlan Cox 		addr = addra + prefault_pageorder[i];
1029566526a9SAlan Cox 		if (addr > addra + (PFFOR * PAGE_SIZE))
1030566526a9SAlan Cox 			addr = 0;
1031566526a9SAlan Cox 
1032566526a9SAlan Cox 		if (addr < starta || addr >= entry->end)
1033566526a9SAlan Cox 			continue;
1034566526a9SAlan Cox 
1035566526a9SAlan Cox 		if (!pmap_is_prefaultable(pmap, addr))
1036566526a9SAlan Cox 			continue;
1037566526a9SAlan Cox 
1038566526a9SAlan Cox 		pindex = ((addr - entry->start) + entry->offset) >> PAGE_SHIFT;
1039566526a9SAlan Cox 		lobject = object;
1040566526a9SAlan Cox 		VM_OBJECT_LOCK(lobject);
1041566526a9SAlan Cox 		while ((m = vm_page_lookup(lobject, pindex)) == NULL &&
1042566526a9SAlan Cox 		    lobject->type == OBJT_DEFAULT &&
1043566526a9SAlan Cox 		    (backing_object = lobject->backing_object) != NULL) {
104436930fc9SAlan Cox 			KASSERT((lobject->backing_object_offset & PAGE_MASK) ==
104536930fc9SAlan Cox 			    0, ("vm_fault_prefault: unaligned object offset"));
1046566526a9SAlan Cox 			pindex += lobject->backing_object_offset >> PAGE_SHIFT;
1047566526a9SAlan Cox 			VM_OBJECT_LOCK(backing_object);
1048566526a9SAlan Cox 			VM_OBJECT_UNLOCK(lobject);
1049566526a9SAlan Cox 			lobject = backing_object;
1050566526a9SAlan Cox 		}
1051566526a9SAlan Cox 		/*
1052566526a9SAlan Cox 		 * give-up when a page is not in memory
1053566526a9SAlan Cox 		 */
1054cbfbaad8SAlan Cox 		if (m == NULL) {
1055cbfbaad8SAlan Cox 			VM_OBJECT_UNLOCK(lobject);
1056566526a9SAlan Cox 			break;
1057cbfbaad8SAlan Cox 		}
10580a2e596aSAlan Cox 		if (m->valid == VM_PAGE_BITS_ALL &&
10599fea8cadSAlan Cox 		    (m->flags & PG_FICTITIOUS) == 0) {
10602965a453SKip Macy 			vm_page_lock(m);
1061566526a9SAlan Cox 			vm_page_lock_queues();
10627bfda801SAlan Cox 			pmap_enter_quick(pmap, addr, m, entry->protection);
10631f70d622SAlan Cox 			vm_page_unlock_queues();
10642965a453SKip Macy 			vm_page_unlock(m);
106585f5b245SAlan Cox 		}
1066cbfbaad8SAlan Cox 		VM_OBJECT_UNLOCK(lobject);
1067566526a9SAlan Cox 	}
1068566526a9SAlan Cox }
1069566526a9SAlan Cox 
1070566526a9SAlan Cox /*
1071e3669ceeSMatthew Dillon  *	vm_fault_quick:
1072e3669ceeSMatthew Dillon  *
1073e3669ceeSMatthew Dillon  *	Ensure that the requested virtual address, which may be in userland,
1074e3669ceeSMatthew Dillon  *	is valid.  Fault-in the page if necessary.  Return -1 on failure.
1075e3669ceeSMatthew Dillon  */
1076e3669ceeSMatthew Dillon int
1077e3669ceeSMatthew Dillon vm_fault_quick(caddr_t v, int prot)
1078e3669ceeSMatthew Dillon {
1079e3669ceeSMatthew Dillon 	int r;
1080e3669ceeSMatthew Dillon 
1081e3669ceeSMatthew Dillon 	if (prot & VM_PROT_WRITE)
1082e3669ceeSMatthew Dillon 		r = subyte(v, fubyte(v));
1083e3669ceeSMatthew Dillon 	else
1084e3669ceeSMatthew Dillon 		r = fubyte(v);
1085e3669ceeSMatthew Dillon 	return(r);
1086e3669ceeSMatthew Dillon }
1087e3669ceeSMatthew Dillon 
1088e3669ceeSMatthew Dillon /*
1089df8bae1dSRodney W. Grimes  *	vm_fault_wire:
1090df8bae1dSRodney W. Grimes  *
1091df8bae1dSRodney W. Grimes  *	Wire down a range of virtual addresses in a map.
1092df8bae1dSRodney W. Grimes  */
1093df8bae1dSRodney W. Grimes int
10944be14af9SAlan Cox vm_fault_wire(vm_map_t map, vm_offset_t start, vm_offset_t end,
10952db65ab4SAlan Cox     boolean_t fictitious)
1096df8bae1dSRodney W. Grimes {
109754d92145SMatthew Dillon 	vm_offset_t va;
1098df8bae1dSRodney W. Grimes 	int rv;
1099df8bae1dSRodney W. Grimes 
1100df8bae1dSRodney W. Grimes 	/*
11010d94caffSDavid Greenman 	 * We simulate a fault to get the page and enter it in the physical
1102ef594d31SAlan Cox 	 * map.  For user wiring, we only ask for read access on currently
1103ef594d31SAlan Cox 	 * read-only sections.
1104df8bae1dSRodney W. Grimes 	 */
1105df8bae1dSRodney W. Grimes 	for (va = start; va < end; va += PAGE_SIZE) {
11062db65ab4SAlan Cox 		rv = vm_fault(map, va, VM_PROT_NONE, VM_FAULT_CHANGE_WIRING);
11077aaaa4fdSJohn Dyson 		if (rv) {
11087aaaa4fdSJohn Dyson 			if (va != start)
11094be14af9SAlan Cox 				vm_fault_unwire(map, start, va, fictitious);
11107aaaa4fdSJohn Dyson 			return (rv);
11117aaaa4fdSJohn Dyson 		}
11127aaaa4fdSJohn Dyson 	}
11137aaaa4fdSJohn Dyson 	return (KERN_SUCCESS);
11147aaaa4fdSJohn Dyson }
11157aaaa4fdSJohn Dyson 
11167aaaa4fdSJohn Dyson /*
1117df8bae1dSRodney W. Grimes  *	vm_fault_unwire:
1118df8bae1dSRodney W. Grimes  *
1119df8bae1dSRodney W. Grimes  *	Unwire a range of virtual addresses in a map.
1120df8bae1dSRodney W. Grimes  */
112126f9a767SRodney W. Grimes void
11224be14af9SAlan Cox vm_fault_unwire(vm_map_t map, vm_offset_t start, vm_offset_t end,
11234be14af9SAlan Cox     boolean_t fictitious)
1124df8bae1dSRodney W. Grimes {
1125227f9a1cSJake Burkholder 	vm_paddr_t pa;
1126227f9a1cSJake Burkholder 	vm_offset_t va;
112754d92145SMatthew Dillon 	pmap_t pmap;
1128df8bae1dSRodney W. Grimes 
1129df8bae1dSRodney W. Grimes 	pmap = vm_map_pmap(map);
1130df8bae1dSRodney W. Grimes 
1131df8bae1dSRodney W. Grimes 	/*
11320d94caffSDavid Greenman 	 * Since the pages are wired down, we must be able to get their
11330d94caffSDavid Greenman 	 * mappings from the physical map system.
1134df8bae1dSRodney W. Grimes 	 */
1135df8bae1dSRodney W. Grimes 	for (va = start; va < end; va += PAGE_SIZE) {
1136df8bae1dSRodney W. Grimes 		pa = pmap_extract(pmap, va);
1137227f9a1cSJake Burkholder 		if (pa != 0) {
1138df8bae1dSRodney W. Grimes 			pmap_change_wiring(pmap, va, FALSE);
11394be14af9SAlan Cox 			if (!fictitious) {
11402965a453SKip Macy 				vm_page_lock(PHYS_TO_VM_PAGE(pa));
11412d09a6adSAlan Cox 				vm_page_lock_queues();
114273007561SDavid Greenman 				vm_page_unwire(PHYS_TO_VM_PAGE(pa), 1);
11432d09a6adSAlan Cox 				vm_page_unlock_queues();
11442965a453SKip Macy 				vm_page_unlock(PHYS_TO_VM_PAGE(pa));
1145df8bae1dSRodney W. Grimes 			}
1146b18bfc3dSJohn Dyson 		}
11474be14af9SAlan Cox 	}
1148df8bae1dSRodney W. Grimes }
1149df8bae1dSRodney W. Grimes 
1150df8bae1dSRodney W. Grimes /*
1151df8bae1dSRodney W. Grimes  *	Routine:
1152df8bae1dSRodney W. Grimes  *		vm_fault_copy_entry
1153df8bae1dSRodney W. Grimes  *	Function:
1154210a6886SKonstantin Belousov  *		Create new shadow object backing dst_entry with private copy of
1155210a6886SKonstantin Belousov  *		all underlying pages. When src_entry is equal to dst_entry,
1156210a6886SKonstantin Belousov  *		function implements COW for wired-down map entry. Otherwise,
1157210a6886SKonstantin Belousov  *		it forks wired entry into dst_map.
1158df8bae1dSRodney W. Grimes  *
1159df8bae1dSRodney W. Grimes  *	In/out conditions:
1160df8bae1dSRodney W. Grimes  *		The source and destination maps must be locked for write.
1161df8bae1dSRodney W. Grimes  *		The source map entry must be wired down (or be a sharing map
1162df8bae1dSRodney W. Grimes  *		entry corresponding to a main map entry that is wired down).
1163df8bae1dSRodney W. Grimes  */
116426f9a767SRodney W. Grimes void
1165121fd461SKonstantin Belousov vm_fault_copy_entry(vm_map_t dst_map, vm_map_t src_map,
1166121fd461SKonstantin Belousov     vm_map_entry_t dst_entry, vm_map_entry_t src_entry,
1167121fd461SKonstantin Belousov     vm_ooffset_t *fork_charge)
1168df8bae1dSRodney W. Grimes {
1169210a6886SKonstantin Belousov 	vm_object_t backing_object, dst_object, object, src_object;
11707afab86cSAlan Cox 	vm_pindex_t dst_pindex, pindex, src_pindex;
1171210a6886SKonstantin Belousov 	vm_prot_t access, prot;
1172df8bae1dSRodney W. Grimes 	vm_offset_t vaddr;
1173df8bae1dSRodney W. Grimes 	vm_page_t dst_m;
1174df8bae1dSRodney W. Grimes 	vm_page_t src_m;
1175210a6886SKonstantin Belousov 	boolean_t src_readonly, upgrade;
1176df8bae1dSRodney W. Grimes 
1177df8bae1dSRodney W. Grimes #ifdef	lint
1178df8bae1dSRodney W. Grimes 	src_map++;
11790d94caffSDavid Greenman #endif	/* lint */
1180df8bae1dSRodney W. Grimes 
1181210a6886SKonstantin Belousov 	upgrade = src_entry == dst_entry;
1182210a6886SKonstantin Belousov 
1183df8bae1dSRodney W. Grimes 	src_object = src_entry->object.vm_object;
11847afab86cSAlan Cox 	src_pindex = OFF_TO_IDX(src_entry->offset);
11857afab86cSAlan Cox 	src_readonly = (src_entry->protection & VM_PROT_WRITE) == 0;
1186df8bae1dSRodney W. Grimes 
1187df8bae1dSRodney W. Grimes 	/*
11880d94caffSDavid Greenman 	 * Create the top-level object for the destination entry. (Doesn't
11890d94caffSDavid Greenman 	 * actually shadow anything - we copy the pages directly.)
1190df8bae1dSRodney W. Grimes 	 */
119124a1cce3SDavid Greenman 	dst_object = vm_object_allocate(OBJT_DEFAULT,
119257b5187bSAlan Cox 	    OFF_TO_IDX(dst_entry->end - dst_entry->start));
1193f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
1194f8a47341SAlan Cox 	dst_object->flags |= OBJ_COLORED;
1195f8a47341SAlan Cox 	dst_object->pg_color = atop(dst_entry->start);
1196f8a47341SAlan Cox #endif
1197df8bae1dSRodney W. Grimes 
11988afcf0ccSAlan Cox 	VM_OBJECT_LOCK(dst_object);
1199210a6886SKonstantin Belousov 	KASSERT(upgrade || dst_entry->object.vm_object == NULL,
1200121fd461SKonstantin Belousov 	    ("vm_fault_copy_entry: vm_object not NULL"));
1201df8bae1dSRodney W. Grimes 	dst_entry->object.vm_object = dst_object;
1202df8bae1dSRodney W. Grimes 	dst_entry->offset = 0;
12033364c323SKonstantin Belousov 	dst_object->charge = dst_entry->end - dst_entry->start;
1204210a6886SKonstantin Belousov 	if (fork_charge != NULL) {
1205121fd461SKonstantin Belousov 		KASSERT(dst_entry->uip == NULL,
1206121fd461SKonstantin Belousov 		    ("vm_fault_copy_entry: leaked swp charge"));
1207210a6886SKonstantin Belousov 		dst_object->uip = curthread->td_ucred->cr_ruidinfo;
1208210a6886SKonstantin Belousov 		uihold(dst_object->uip);
1209121fd461SKonstantin Belousov 		*fork_charge += dst_object->charge;
1210210a6886SKonstantin Belousov 	} else {
1211210a6886SKonstantin Belousov 		dst_object->uip = dst_entry->uip;
1212210a6886SKonstantin Belousov 		dst_entry->uip = NULL;
1213210a6886SKonstantin Belousov 	}
1214e4ed417aSAlan Cox 	access = prot = dst_entry->protection;
1215210a6886SKonstantin Belousov 	/*
1216210a6886SKonstantin Belousov 	 * If not an upgrade, then enter the mappings in the pmap as
1217210a6886SKonstantin Belousov 	 * read and/or execute accesses.  Otherwise, enter them as
1218210a6886SKonstantin Belousov 	 * write accesses.
1219210a6886SKonstantin Belousov 	 *
1220210a6886SKonstantin Belousov 	 * A writeable large page mapping is only created if all of
1221210a6886SKonstantin Belousov 	 * the constituent small page mappings are modified. Marking
1222210a6886SKonstantin Belousov 	 * PTEs as modified on inception allows promotion to happen
1223210a6886SKonstantin Belousov 	 * without taking potentially large number of soft faults.
1224210a6886SKonstantin Belousov 	 */
1225210a6886SKonstantin Belousov 	if (!upgrade)
1226210a6886SKonstantin Belousov 		access &= ~VM_PROT_WRITE;
1227df8bae1dSRodney W. Grimes 
1228df8bae1dSRodney W. Grimes 	/*
12290d94caffSDavid Greenman 	 * Loop through all of the pages in the entry's range, copying each
12300d94caffSDavid Greenman 	 * one from the source object (it should be there) to the destination
12310d94caffSDavid Greenman 	 * object.
1232df8bae1dSRodney W. Grimes 	 */
12337afab86cSAlan Cox 	for (vaddr = dst_entry->start, dst_pindex = 0;
1234df8bae1dSRodney W. Grimes 	    vaddr < dst_entry->end;
12357afab86cSAlan Cox 	    vaddr += PAGE_SIZE, dst_pindex++) {
1236df8bae1dSRodney W. Grimes 
1237df8bae1dSRodney W. Grimes 		/*
12387afab86cSAlan Cox 		 * Allocate a page in the destination object.
1239df8bae1dSRodney W. Grimes 		 */
1240df8bae1dSRodney W. Grimes 		do {
12417afab86cSAlan Cox 			dst_m = vm_page_alloc(dst_object, dst_pindex,
12427afab86cSAlan Cox 			    VM_ALLOC_NORMAL);
1243df8bae1dSRodney W. Grimes 			if (dst_m == NULL) {
12448afcf0ccSAlan Cox 				VM_OBJECT_UNLOCK(dst_object);
1245df8bae1dSRodney W. Grimes 				VM_WAIT;
12468afcf0ccSAlan Cox 				VM_OBJECT_LOCK(dst_object);
1247df8bae1dSRodney W. Grimes 			}
1248df8bae1dSRodney W. Grimes 		} while (dst_m == NULL);
1249df8bae1dSRodney W. Grimes 
1250df8bae1dSRodney W. Grimes 		/*
1251df8bae1dSRodney W. Grimes 		 * Find the page in the source object, and copy it in.
12520d94caffSDavid Greenman 		 * (Because the source is wired down, the page will be in
12530d94caffSDavid Greenman 		 * memory.)
1254df8bae1dSRodney W. Grimes 		 */
1255f29ba63eSAlan Cox 		VM_OBJECT_LOCK(src_object);
1256c5b65a67SAlan Cox 		object = src_object;
12577afab86cSAlan Cox 		pindex = src_pindex + dst_pindex;
12587afab86cSAlan Cox 		while ((src_m = vm_page_lookup(object, pindex)) == NULL &&
12597afab86cSAlan Cox 		    src_readonly &&
1260c5b65a67SAlan Cox 		    (backing_object = object->backing_object) != NULL) {
1261c5b65a67SAlan Cox 			/*
1262c5b65a67SAlan Cox 			 * Allow fallback to backing objects if we are reading.
1263c5b65a67SAlan Cox 			 */
1264c5b65a67SAlan Cox 			VM_OBJECT_LOCK(backing_object);
1265c5b65a67SAlan Cox 			pindex += OFF_TO_IDX(object->backing_object_offset);
1266c5b65a67SAlan Cox 			VM_OBJECT_UNLOCK(object);
1267c5b65a67SAlan Cox 			object = backing_object;
1268c5b65a67SAlan Cox 		}
1269df8bae1dSRodney W. Grimes 		if (src_m == NULL)
1270df8bae1dSRodney W. Grimes 			panic("vm_fault_copy_wired: page missing");
1271669890eaSAlan Cox 		pmap_copy_page(src_m, dst_m);
1272c5b65a67SAlan Cox 		VM_OBJECT_UNLOCK(object);
1273669890eaSAlan Cox 		dst_m->valid = VM_PAGE_BITS_ALL;
12748afcf0ccSAlan Cox 		VM_OBJECT_UNLOCK(dst_object);
1275df8bae1dSRodney W. Grimes 
1276df8bae1dSRodney W. Grimes 		/*
1277210a6886SKonstantin Belousov 		 * Enter it in the pmap. If a wired, copy-on-write
1278210a6886SKonstantin Belousov 		 * mapping is being replaced by a write-enabled
1279210a6886SKonstantin Belousov 		 * mapping, then wire that new mapping.
1280df8bae1dSRodney W. Grimes 		 */
1281210a6886SKonstantin Belousov 		pmap_enter(dst_map->pmap, vaddr, access, dst_m, prot, upgrade);
1282df8bae1dSRodney W. Grimes 
1283df8bae1dSRodney W. Grimes 		/*
1284df8bae1dSRodney W. Grimes 		 * Mark it no longer busy, and put it on the active list.
1285df8bae1dSRodney W. Grimes 		 */
128644b8bd66SAlan Cox 		VM_OBJECT_LOCK(dst_object);
12872965a453SKip Macy 
1288210a6886SKonstantin Belousov 		if (upgrade) {
12892965a453SKip Macy 			vm_page_lock(src_m);
12902965a453SKip Macy 			vm_page_lock_queues();
1291210a6886SKonstantin Belousov 			vm_page_unwire(src_m, 0);
12922965a453SKip Macy 			vm_page_unlock_queues();
1293e20e8c15SKonstantin Belousov 			vm_page_unlock(src_m);
12942965a453SKip Macy 
12952965a453SKip Macy 			vm_page_lock(dst_m);
12962965a453SKip Macy 			vm_page_lock_queues();
1297210a6886SKonstantin Belousov 			vm_page_wire(dst_m);
12982965a453SKip Macy 			vm_page_unlock_queues();
1299e20e8c15SKonstantin Belousov 			vm_page_unlock(dst_m);
13002965a453SKip Macy 		} else {
13012965a453SKip Macy 			vm_page_lock(dst_m);
13022965a453SKip Macy 			vm_page_lock_queues();
1303df8bae1dSRodney W. Grimes 			vm_page_activate(dst_m);
13044abd55b2SAlan Cox 			vm_page_unlock_queues();
1305e20e8c15SKonstantin Belousov 			vm_page_unlock(dst_m);
13062965a453SKip Macy 		}
130766bdd5d6SAlan Cox 		vm_page_wakeup(dst_m);
1308df8bae1dSRodney W. Grimes 	}
13098afcf0ccSAlan Cox 	VM_OBJECT_UNLOCK(dst_object);
1310210a6886SKonstantin Belousov 	if (upgrade) {
1311210a6886SKonstantin Belousov 		dst_entry->eflags &= ~(MAP_ENTRY_COW | MAP_ENTRY_NEEDS_COPY);
1312210a6886SKonstantin Belousov 		vm_object_deallocate(src_object);
1313210a6886SKonstantin Belousov 	}
1314df8bae1dSRodney W. Grimes }
131526f9a767SRodney W. Grimes 
131626f9a767SRodney W. Grimes 
131726f9a767SRodney W. Grimes /*
131826f9a767SRodney W. Grimes  * This routine checks around the requested page for other pages that
131922ba64e8SJohn Dyson  * might be able to be faulted in.  This routine brackets the viable
132022ba64e8SJohn Dyson  * pages for the pages to be paged in.
132126f9a767SRodney W. Grimes  *
132226f9a767SRodney W. Grimes  * Inputs:
132322ba64e8SJohn Dyson  *	m, rbehind, rahead
132426f9a767SRodney W. Grimes  *
132526f9a767SRodney W. Grimes  * Outputs:
132626f9a767SRodney W. Grimes  *  marray (array of vm_page_t), reqpage (index of requested page)
132726f9a767SRodney W. Grimes  *
132826f9a767SRodney W. Grimes  * Return value:
132926f9a767SRodney W. Grimes  *  number of pages in marray
133026f9a767SRodney W. Grimes  */
1331303b270bSEivind Eklund static int
133222ba64e8SJohn Dyson vm_fault_additional_pages(m, rbehind, rahead, marray, reqpage)
133326f9a767SRodney W. Grimes 	vm_page_t m;
133426f9a767SRodney W. Grimes 	int rbehind;
133522ba64e8SJohn Dyson 	int rahead;
133626f9a767SRodney W. Grimes 	vm_page_t *marray;
133726f9a767SRodney W. Grimes 	int *reqpage;
133826f9a767SRodney W. Grimes {
13392d8acc0fSJohn Dyson 	int i,j;
134026f9a767SRodney W. Grimes 	vm_object_t object;
1341a316d390SJohn Dyson 	vm_pindex_t pindex, startpindex, endpindex, tpindex;
134226f9a767SRodney W. Grimes 	vm_page_t rtm;
1343170db9c6SJohn Dyson 	int cbehind, cahead;
134426f9a767SRodney W. Grimes 
1345f29ba63eSAlan Cox 	VM_OBJECT_LOCK_ASSERT(m->object, MA_OWNED);
134623955314SAlfred Perlstein 
134726f9a767SRodney W. Grimes 	object = m->object;
1348a316d390SJohn Dyson 	pindex = m->pindex;
1349fcdd9721SPawel Jakub Dawidek 	cbehind = cahead = 0;
1350fcdd9721SPawel Jakub Dawidek 
1351f35329acSJohn Dyson 	/*
135226f9a767SRodney W. Grimes 	 * if the requested page is not available, then give up now
135326f9a767SRodney W. Grimes 	 */
13541c7c3c6aSMatthew Dillon 	if (!vm_pager_has_page(object, pindex, &cbehind, &cahead)) {
135526f9a767SRodney W. Grimes 		return 0;
13562d8acc0fSJohn Dyson 	}
135726f9a767SRodney W. Grimes 
135822ba64e8SJohn Dyson 	if ((cbehind == 0) && (cahead == 0)) {
135922ba64e8SJohn Dyson 		*reqpage = 0;
136022ba64e8SJohn Dyson 		marray[0] = m;
136122ba64e8SJohn Dyson 		return 1;
1362170db9c6SJohn Dyson 	}
136322ba64e8SJohn Dyson 
136422ba64e8SJohn Dyson 	if (rahead > cahead) {
136522ba64e8SJohn Dyson 		rahead = cahead;
136622ba64e8SJohn Dyson 	}
136722ba64e8SJohn Dyson 
1368170db9c6SJohn Dyson 	if (rbehind > cbehind) {
1369170db9c6SJohn Dyson 		rbehind = cbehind;
1370170db9c6SJohn Dyson 	}
1371170db9c6SJohn Dyson 
137226f9a767SRodney W. Grimes 	/*
13732d8acc0fSJohn Dyson 	 * scan backward for the read behind pages -- in memory
137426f9a767SRodney W. Grimes 	 */
13752d8acc0fSJohn Dyson 	if (pindex > 0) {
13762d8acc0fSJohn Dyson 		if (rbehind > pindex) {
1377a316d390SJohn Dyson 			rbehind = pindex;
13782d8acc0fSJohn Dyson 			startpindex = 0;
13792d8acc0fSJohn Dyson 		} else {
1380a316d390SJohn Dyson 			startpindex = pindex - rbehind;
13812d8acc0fSJohn Dyson 		}
13822d8acc0fSJohn Dyson 
13838f8790a7SAlan Cox 		if ((rtm = TAILQ_PREV(m, pglist, listq)) != NULL &&
13848f8790a7SAlan Cox 		    rtm->pindex >= startpindex)
13858f8790a7SAlan Cox 			startpindex = rtm->pindex + 1;
138626f9a767SRodney W. Grimes 
138780645364SAlan Cox 		/* tpindex is unsigned; beware of numeric underflow. */
138880645364SAlan Cox 		for (i = 0, tpindex = pindex - 1; tpindex >= startpindex &&
138980645364SAlan Cox 		    tpindex < pindex; i++, tpindex--) {
139026f9a767SRodney W. Grimes 
13917bfda801SAlan Cox 			rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL |
13927bfda801SAlan Cox 			    VM_ALLOC_IFNOTCACHED);
1393ccbb2f72SJohn Dyson 			if (rtm == NULL) {
139480645364SAlan Cox 				/*
139580645364SAlan Cox 				 * Shift the allocated pages to the
139680645364SAlan Cox 				 * beginning of the array.
139780645364SAlan Cox 				 */
1398ccbb2f72SJohn Dyson 				for (j = 0; j < i; j++) {
139980645364SAlan Cox 					marray[j] = marray[j + tpindex + 1 -
140080645364SAlan Cox 					    startpindex];
140126f9a767SRodney W. Grimes 				}
140280645364SAlan Cox 				break;
140326f9a767SRodney W. Grimes 			}
1404170db9c6SJohn Dyson 
140580645364SAlan Cox 			marray[tpindex - startpindex] = rtm;
140626f9a767SRodney W. Grimes 		}
14072d8acc0fSJohn Dyson 	} else {
14082d8acc0fSJohn Dyson 		startpindex = 0;
14092d8acc0fSJohn Dyson 		i = 0;
14102d8acc0fSJohn Dyson 	}
14112d8acc0fSJohn Dyson 
14122d8acc0fSJohn Dyson 	marray[i] = m;
14132d8acc0fSJohn Dyson 	/* page offset of the required page */
14142d8acc0fSJohn Dyson 	*reqpage = i;
14152d8acc0fSJohn Dyson 
14162d8acc0fSJohn Dyson 	tpindex = pindex + 1;
14172d8acc0fSJohn Dyson 	i++;
14182d8acc0fSJohn Dyson 
14192d8acc0fSJohn Dyson 	/*
14202d8acc0fSJohn Dyson 	 * scan forward for the read ahead pages
14212d8acc0fSJohn Dyson 	 */
14222d8acc0fSJohn Dyson 	endpindex = tpindex + rahead;
14238f8790a7SAlan Cox 	if ((rtm = TAILQ_NEXT(m, listq)) != NULL && rtm->pindex < endpindex)
14248f8790a7SAlan Cox 		endpindex = rtm->pindex;
14252d8acc0fSJohn Dyson 	if (endpindex > object->size)
14262d8acc0fSJohn Dyson 		endpindex = object->size;
14272d8acc0fSJohn Dyson 
14282d8acc0fSJohn Dyson 	for (; tpindex < endpindex; i++, tpindex++) {
14292d8acc0fSJohn Dyson 
14307bfda801SAlan Cox 		rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL |
14317bfda801SAlan Cox 		    VM_ALLOC_IFNOTCACHED);
14322d8acc0fSJohn Dyson 		if (rtm == NULL) {
14332d8acc0fSJohn Dyson 			break;
14342d8acc0fSJohn Dyson 		}
14352d8acc0fSJohn Dyson 
14362d8acc0fSJohn Dyson 		marray[i] = rtm;
14372d8acc0fSJohn Dyson 	}
14382d8acc0fSJohn Dyson 
143965ea29a6SAlan Cox 	/* return number of pages */
14402d8acc0fSJohn Dyson 	return i;
144126f9a767SRodney W. Grimes }
1442