Introduce globals: KvaStart, KvaEnd, and KvaSize. Used by the kernel
[dragonfly.git] / sys / vm / vm_fault.c
1 /*
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (c) 1994 John S. Dyson
5  * All rights reserved.
6  * Copyright (c) 1994 David Greenman
7  * All rights reserved.
8  *
9  *
10  * This code is derived from software contributed to Berkeley by
11  * The Mach Operating System project at Carnegie-Mellon University.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. All advertising materials mentioning features or use of this software
22  *    must display the following acknowledgement:
23  *      This product includes software developed by the University of
24  *      California, Berkeley and its contributors.
25  * 4. Neither the name of the University nor the names of its contributors
26  *    may be used to endorse or promote products derived from this software
27  *    without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39  * SUCH DAMAGE.
40  *
41  *      from: @(#)vm_fault.c    8.4 (Berkeley) 1/12/94
42  *
43  *
44  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
45  * All rights reserved.
46  *
47  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
48  *
49  * Permission to use, copy, modify and distribute this software and
50  * its documentation is hereby granted, provided that both the copyright
51  * notice and this permission notice appear in all copies of the
52  * software, derivative works or modified versions, and any portions
53  * thereof, and that both notices appear in supporting documentation.
54  *
55  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
56  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
57  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
58  *
59  * Carnegie Mellon requests users of this software to return to
60  *
61  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
62  *  School of Computer Science
63  *  Carnegie Mellon University
64  *  Pittsburgh PA 15213-3890
65  *
66  * any improvements or extensions that they make and grant Carnegie the
67  * rights to redistribute these changes.
68  *
69  * $FreeBSD: src/sys/vm/vm_fault.c,v 1.108.2.8 2002/02/26 05:49:27 silby Exp $
70  * $DragonFly: src/sys/vm/vm_fault.c,v 1.32 2006/12/28 18:29:08 dillon Exp $
71  */
72
73 /*
74  *      Page fault handling module.
75  */
76
77 #include <sys/param.h>
78 #include <sys/systm.h>
79 #include <sys/kernel.h>
80 #include <sys/proc.h>
81 #include <sys/vnode.h>
82 #include <sys/resourcevar.h>
83 #include <sys/vmmeter.h>
84 #include <sys/vkernel.h>
85 #include <sys/sfbuf.h>
86 #include <sys/lock.h>
87
88 #include <vm/vm.h>
89 #include <vm/vm_param.h>
90 #include <vm/pmap.h>
91 #include <vm/vm_map.h>
92 #include <vm/vm_object.h>
93 #include <vm/vm_page.h>
94 #include <vm/vm_pageout.h>
95 #include <vm/vm_kern.h>
96 #include <vm/vm_pager.h>
97 #include <vm/vnode_pager.h>
98 #include <vm/vm_extern.h>
99
100 #include <sys/thread2.h>
101 #include <vm/vm_page2.h>
102
103 #define VM_FAULT_READ_AHEAD 8
104 #define VM_FAULT_READ_BEHIND 7
105 #define VM_FAULT_READ (VM_FAULT_READ_AHEAD+VM_FAULT_READ_BEHIND+1)
106
107 struct faultstate {
108         vm_page_t m;
109         vm_object_t object;
110         vm_pindex_t pindex;
111         vm_prot_t prot;
112         vm_page_t first_m;
113         vm_object_t first_object;
114         vm_prot_t first_prot;
115         vm_map_t map;
116         vm_map_entry_t entry;
117         int lookup_still_valid;
118         int didlimit;
119         int hardfault;
120         int fault_flags;
121         int map_generation;
122         boolean_t wired;
123         struct vnode *vp;
124 };
125
126 static int vm_fault_object(struct faultstate *, vm_pindex_t, vm_prot_t);
127 static int vm_fault_vpagetable(struct faultstate *, vm_pindex_t *, vpte_t);
128 static int vm_fault_additional_pages (vm_page_t, int, int, vm_page_t *, int *);
129 static int vm_fault_ratelimit(struct vmspace *);
130
131 static __inline void
132 release_page(struct faultstate *fs)
133 {
134         vm_page_wakeup(fs->m);
135         vm_page_deactivate(fs->m);
136         fs->m = NULL;
137 }
138
139 static __inline void
140 unlock_map(struct faultstate *fs)
141 {
142         if (fs->lookup_still_valid) {
143                 vm_map_lookup_done(fs->map, fs->entry, 0);
144                 fs->lookup_still_valid = FALSE;
145         }
146 }
147
148 /*
149  * Clean up after a successful call to vm_fault_object() so another call
150  * to vm_fault_object() can be made.
151  */
152 static void
153 _cleanup_successful_fault(struct faultstate *fs, int relock)
154 {
155         if (fs->object != fs->first_object) {
156                 vm_page_free(fs->first_m);
157                 vm_object_pip_wakeup(fs->object);
158                 fs->first_m = NULL;
159         }
160         fs->object = fs->first_object;
161         if (relock && fs->lookup_still_valid == FALSE) {
162                 vm_map_lock_read(fs->map);
163                 fs->lookup_still_valid = TRUE;
164         }
165 }
166
167 static void
168 _unlock_things(struct faultstate *fs, int dealloc)
169 {
170         vm_object_pip_wakeup(fs->first_object);
171         _cleanup_successful_fault(fs, 0);
172         if (dealloc) {
173                 vm_object_deallocate(fs->first_object);
174         }
175         unlock_map(fs); 
176         if (fs->vp != NULL) { 
177                 vput(fs->vp);
178                 fs->vp = NULL;
179         }
180 }
181
182 #define unlock_things(fs) _unlock_things(fs, 0)
183 #define unlock_and_deallocate(fs) _unlock_things(fs, 1)
184 #define cleanup_successful_fault(fs) _cleanup_successful_fault(fs, 1)
185
186 /*
187  * TRYPAGER 
188  *
189  * Determine if the pager for the current object *might* contain the page.
190  *
191  * We only need to try the pager if this is not a default object (default
192  * objects are zero-fill and have no real pager), and if we are not taking
193  * a wiring fault or if the FS entry is wired.
194  */
195 #define TRYPAGER(fs)    \
196                 (fs->object->type != OBJT_DEFAULT && \
197                 (((fs->fault_flags & VM_FAULT_WIRE_MASK) == 0) || fs->wired))
198
199 /*
200  * vm_fault:
201  *
202  * Handle a page fault occuring at the given address, requiring the given
203  * permissions, in the map specified.  If successful, the page is inserted
204  * into the associated physical map.
205  *
206  * NOTE: The given address should be truncated to the proper page address.
207  *
208  * KERN_SUCCESS is returned if the page fault is handled; otherwise,
209  * a standard error specifying why the fault is fatal is returned.
210  *
211  * The map in question must be referenced, and remains so.
212  * The caller may hold no locks.
213  */
214 int
215 vm_fault(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type, int fault_flags)
216 {
217         int result;
218         vm_pindex_t first_pindex;
219         struct faultstate fs;
220
221         mycpu->gd_cnt.v_vm_faults++;
222
223         fs.didlimit = 0;
224         fs.hardfault = 0;
225         fs.fault_flags = fault_flags;
226
227 RetryFault:
228         /*
229          * Find the vm_map_entry representing the backing store and resolve
230          * the top level object and page index.  This may have the side
231          * effect of executing a copy-on-write on the map entry and/or
232          * creating a shadow object, but will not COW any actual VM pages.
233          *
234          * On success fs.map is left read-locked and various other fields 
235          * are initialized but not otherwise referenced or locked.
236          *
237          * NOTE!  vm_map_lookup will upgrade the fault_type to VM_FAULT_WRITE
238          * if the map entry is a virtual page table and also writable,
239          * so we can set the 'A'accessed bit in the virtual page table entry.
240          */
241         fs.map = map;
242         result = vm_map_lookup(&fs.map, vaddr, fault_type,
243                                &fs.entry, &fs.first_object,
244                                &first_pindex, &fs.first_prot, &fs.wired);
245
246         /*
247          * If the lookup failed or the map protections are incompatible,
248          * the fault generally fails.  However, if the caller is trying
249          * to do a user wiring we have more work to do.
250          */
251         if (result != KERN_SUCCESS) {
252                 if (result != KERN_PROTECTION_FAILURE)
253                         return result;
254                 if ((fs.fault_flags & VM_FAULT_WIRE_MASK) != VM_FAULT_USER_WIRE)
255                         return result;
256
257                 /*
258                  * If we are user-wiring a r/w segment, and it is COW, then
259                  * we need to do the COW operation.  Note that we don't
260                  * currently COW RO sections now, because it is NOT desirable
261                  * to COW .text.  We simply keep .text from ever being COW'ed
262                  * and take the heat that one cannot debug wired .text sections.
263                  */
264                 result = vm_map_lookup(&fs.map, vaddr,
265                                        VM_PROT_READ|VM_PROT_WRITE|
266                                         VM_PROT_OVERRIDE_WRITE,
267                                        &fs.entry, &fs.first_object,
268                                        &first_pindex, &fs.first_prot,
269                                        &fs.wired);
270                 if (result != KERN_SUCCESS)
271                         return result;
272
273                 /*
274                  * If we don't COW now, on a user wire, the user will never
275                  * be able to write to the mapping.  If we don't make this
276                  * restriction, the bookkeeping would be nearly impossible.
277                  */
278                 if ((fs.entry->protection & VM_PROT_WRITE) == 0)
279                         fs.entry->max_protection &= ~VM_PROT_WRITE;
280         }
281
282         /*
283          * fs.map is read-locked
284          *
285          * Misc checks.  Save the map generation number to detect races.
286          */
287         fs.map_generation = fs.map->timestamp;
288
289         if (fs.entry->eflags & MAP_ENTRY_NOFAULT) {
290                 panic("vm_fault: fault on nofault entry, addr: %lx",
291                     (u_long)vaddr);
292         }
293
294         /*
295          * A system map entry may return a NULL object.  No object means
296          * no pager means an unrecoverable kernel fault.
297          */
298         if (fs.first_object == NULL) {
299                 panic("vm_fault: unrecoverable fault at %p in entry %p",
300                         (void *)vaddr, fs.entry);
301         }
302
303         /*
304          * Make a reference to this object to prevent its disposal while we
305          * are messing with it.  Once we have the reference, the map is free
306          * to be diddled.  Since objects reference their shadows (and copies),
307          * they will stay around as well.
308          *
309          * Bump the paging-in-progress count to prevent size changes (e.g.
310          * truncation operations) during I/O.  This must be done after
311          * obtaining the vnode lock in order to avoid possible deadlocks.
312          */
313         vm_object_reference(fs.first_object);
314         fs.vp = vnode_pager_lock(fs.first_object);
315         vm_object_pip_add(fs.first_object, 1);
316
317         fs.lookup_still_valid = TRUE;
318         fs.first_m = NULL;
319         fs.object = fs.first_object;    /* so unlock_and_deallocate works */
320
321         /*
322          * If the entry is wired we cannot change the page protection.
323          */
324         if (fs.wired)
325                 fault_type = fs.first_prot;
326
327         /*
328          * The page we want is at (first_object, first_pindex), but if the
329          * vm_map_entry is VM_MAPTYPE_VPAGETABLE we have to traverse the
330          * page table to figure out the actual pindex.
331          *
332          * NOTE!  DEVELOPMENT IN PROGRESS, THIS IS AN INITIAL IMPLEMENTATION
333          * ONLY
334          */
335         if (fs.entry->maptype == VM_MAPTYPE_VPAGETABLE) {
336                 result = vm_fault_vpagetable(&fs, &first_pindex,
337                                              fs.entry->aux.master_pde);
338                 if (result == KERN_TRY_AGAIN)
339                         goto RetryFault;
340                 if (result != KERN_SUCCESS)
341                         return (result);
342         }
343
344         /*
345          * Now we have the actual (object, pindex), fault in the page.  If
346          * vm_fault_object() fails it will unlock and deallocate the FS
347          * data.   If it succeeds everything remains locked and fs->object
348          * will have an additinal PIP count if it is not equal to
349          * fs->first_object
350          */
351         result = vm_fault_object(&fs, first_pindex, fault_type);
352
353         if (result == KERN_TRY_AGAIN)
354                 goto RetryFault;
355         if (result != KERN_SUCCESS)
356                 return (result);
357
358         /*
359          * On success vm_fault_object() does not unlock or deallocate, and fs.m
360          * will contain a busied page.
361          *
362          * Enter the page into the pmap and do pmap-related adjustments.
363          */
364         unlock_things(&fs);
365         pmap_enter(fs.map->pmap, vaddr, fs.m, fs.prot, fs.wired);
366
367         if (((fs.fault_flags & VM_FAULT_WIRE_MASK) == 0) && (fs.wired == 0)) {
368                 pmap_prefault(fs.map->pmap, vaddr, fs.entry);
369         }
370
371         vm_page_flag_clear(fs.m, PG_ZERO);
372         vm_page_flag_set(fs.m, PG_MAPPED|PG_REFERENCED);
373         if (fs.fault_flags & VM_FAULT_HOLD)
374                 vm_page_hold(fs.m);
375
376         /*
377          * If the page is not wired down, then put it where the pageout daemon
378          * can find it.
379          */
380         if (fs.fault_flags & VM_FAULT_WIRE_MASK) {
381                 if (fs.wired)
382                         vm_page_wire(fs.m);
383                 else
384                         vm_page_unwire(fs.m, 1);
385         } else {
386                 vm_page_activate(fs.m);
387         }
388
389         if (curproc && (curproc->p_flag & P_SWAPPEDOUT) == 0 &&
390             curproc->p_stats) {
391                 if (fs.hardfault) {
392                         curproc->p_stats->p_ru.ru_majflt++;
393                 } else {
394                         curproc->p_stats->p_ru.ru_minflt++;
395                 }
396         }
397
398         /*
399          * Unlock everything, and return
400          */
401         vm_page_wakeup(fs.m);
402         vm_object_deallocate(fs.first_object);
403
404         return (KERN_SUCCESS);
405 }
406
407 /*
408  * Translate the virtual page number (first_pindex) that is relative
409  * to the address space into a logical page number that is relative to the
410  * backing object.  Use the virtual page table pointed to by (vpte).
411  *
412  * This implements an N-level page table.  Any level can terminate the
413  * scan by setting VPTE_PS.   A linear mapping is accomplished by setting
414  * VPTE_PS in the master page directory entry set via mcontrol(MADV_SETMAP).
415  */
416 static
417 int
418 vm_fault_vpagetable(struct faultstate *fs, vm_pindex_t *pindex, vpte_t vpte)
419 {
420         struct sf_buf *sf;
421         int vshift = 32 - PAGE_SHIFT;   /* page index bits remaining */
422         int result = KERN_SUCCESS;
423
424         for (;;) {
425                 if ((vpte & VPTE_V) == 0) {
426                         unlock_and_deallocate(fs);
427                         return (KERN_FAILURE);
428                 }
429                 if ((vpte & VPTE_PS) || vshift == 0)
430                         break;
431                 KKASSERT(vshift >= VPTE_PAGE_BITS);
432
433                 /*
434                  * Get the page table page
435                  */
436                 result = vm_fault_object(fs, vpte >> PAGE_SHIFT, VM_PROT_READ);
437                 if (result != KERN_SUCCESS)
438                         return (result);
439
440                 /*
441                  * Process the returned fs.m and look up the page table
442                  * entry in the page table page.
443                  */
444                 vshift -= VPTE_PAGE_BITS;
445                 sf = sf_buf_alloc(fs->m, SFB_CPUPRIVATE);
446                 vpte = *((vpte_t *)sf_buf_kva(sf) +
447                        ((*pindex >> vshift) & VPTE_PAGE_MASK));
448                 sf_buf_free(sf);
449                 vm_page_flag_set(fs->m, PG_REFERENCED);
450                 vm_page_activate(fs->m);
451                 vm_page_wakeup(fs->m);
452                 cleanup_successful_fault(fs);
453         }
454         /*
455          * Combine remaining address bits with the vpte.
456          */
457         *pindex = (vpte >> PAGE_SHIFT) +
458                   (*pindex & ((1 << vshift) - 1));
459         return (KERN_SUCCESS);
460 }
461
462
463 /*
464  * Do all operations required to fault-in (fs.first_object, pindex).  Run
465  * through the shadow chain as necessary and do required COW or virtual
466  * copy operations.  The caller has already fully resolved the vm_map_entry
467  * and, if appropriate, has created a copy-on-write layer.  All we need to
468  * do is iterate the object chain.
469  *
470  * On failure (fs) is unlocked and deallocated and the caller may return or
471  * retry depending on the failure code.  On success (fs) is NOT unlocked or
472  * deallocated, fs.m will contained a resolved, busied page, and fs.object
473  * will have an additional PIP count if it is not equal to fs.first_object.
474  */
475 static
476 int
477 vm_fault_object(struct faultstate *fs,
478                 vm_pindex_t first_pindex, vm_prot_t fault_type)
479 {
480         vm_object_t next_object;
481         vm_page_t marray[VM_FAULT_READ];
482         vm_pindex_t pindex;
483         int faultcount;
484
485         fs->prot = fs->first_prot;
486         fs->object = fs->first_object;
487         pindex = first_pindex;
488
489         for (;;) {
490                 /*
491                  * If the object is dead, we stop here
492                  */
493                 if (fs->object->flags & OBJ_DEAD) {
494                         unlock_and_deallocate(fs);
495                         return (KERN_PROTECTION_FAILURE);
496                 }
497
498                 /*
499                  * See if page is resident.  spl protection is required
500                  * to avoid an interrupt unbusy/free race against our
501                  * lookup.  We must hold the protection through a page
502                  * allocation or busy.
503                  */
504                 crit_enter();
505                 fs->m = vm_page_lookup(fs->object, pindex);
506                 if (fs->m != NULL) {
507                         int queue;
508                         /*
509                          * Wait/Retry if the page is busy.  We have to do this
510                          * if the page is busy via either PG_BUSY or 
511                          * vm_page_t->busy because the vm_pager may be using
512                          * vm_page_t->busy for pageouts ( and even pageins if
513                          * it is the vnode pager ), and we could end up trying
514                          * to pagein and pageout the same page simultaneously.
515                          *
516                          * We can theoretically allow the busy case on a read
517                          * fault if the page is marked valid, but since such
518                          * pages are typically already pmap'd, putting that
519                          * special case in might be more effort then it is 
520                          * worth.  We cannot under any circumstances mess
521                          * around with a vm_page_t->busy page except, perhaps,
522                          * to pmap it.
523                          */
524                         if ((fs->m->flags & PG_BUSY) || fs->m->busy) {
525                                 unlock_things(fs);
526                                 vm_page_sleep_busy(fs->m, TRUE, "vmpfw");
527                                 mycpu->gd_cnt.v_intrans++;
528                                 vm_object_deallocate(fs->first_object);
529                                 crit_exit();
530                                 return (KERN_TRY_AGAIN);
531                         }
532
533                         /*
534                          * If reactivating a page from PQ_CACHE we may have
535                          * to rate-limit.
536                          */
537                         queue = fs->m->queue;
538                         vm_page_unqueue_nowakeup(fs->m);
539
540                         if ((queue - fs->m->pc) == PQ_CACHE && 
541                             vm_page_count_severe()) {
542                                 vm_page_activate(fs->m);
543                                 unlock_and_deallocate(fs);
544                                 vm_waitpfault();
545                                 crit_exit();
546                                 return (KERN_TRY_AGAIN);
547                         }
548
549                         /*
550                          * Mark page busy for other processes, and the 
551                          * pagedaemon.  If it still isn't completely valid
552                          * (readable), jump to readrest, else we found the
553                          * page and can return.
554                          *
555                          * We can release the spl once we have marked the
556                          * page busy.
557                          */
558                         vm_page_busy(fs->m);
559                         crit_exit();
560
561                         if (((fs->m->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) &&
562                             fs->m->object != &kernel_object) {
563                                 goto readrest;
564                         }
565                         break; /* break to PAGE HAS BEEN FOUND */
566                 }
567
568                 /*
569                  * Page is not resident, If this is the search termination
570                  * or the pager might contain the page, allocate a new page.
571                  *
572                  * NOTE: We are still in a critical section.
573                  */
574                 if (TRYPAGER(fs) || fs->object == fs->first_object) {
575                         /*
576                          * If the page is beyond the object size we fail
577                          */
578                         if (pindex >= fs->object->size) {
579                                 crit_exit();
580                                 unlock_and_deallocate(fs);
581                                 return (KERN_PROTECTION_FAILURE);
582                         }
583
584                         /*
585                          * Ratelimit.
586                          */
587                         if (fs->didlimit == 0 && curproc != NULL) {
588                                 int limticks;
589
590                                 limticks = vm_fault_ratelimit(curproc->p_vmspace);
591                                 if (limticks) {
592                                         crit_exit();
593                                         unlock_and_deallocate(fs);
594                                         tsleep(curproc, 0, "vmrate", limticks);
595                                         fs->didlimit = 1;
596                                         return (KERN_TRY_AGAIN);
597                                 }
598                         }
599
600                         /*
601                          * Allocate a new page for this object/offset pair.
602                          */
603                         fs->m = NULL;
604                         if (!vm_page_count_severe()) {
605                                 fs->m = vm_page_alloc(fs->object, pindex,
606                                     (fs->vp || fs->object->backing_object) ? VM_ALLOC_NORMAL : VM_ALLOC_NORMAL | VM_ALLOC_ZERO);
607                         }
608                         if (fs->m == NULL) {
609                                 crit_exit();
610                                 unlock_and_deallocate(fs);
611                                 vm_waitpfault();
612                                 return (KERN_TRY_AGAIN);
613                         }
614                 }
615                 crit_exit();
616
617 readrest:
618                 /*
619                  * We have found a valid page or we have allocated a new page.
620                  * The page thus may not be valid or may not be entirely 
621                  * valid.
622                  *
623                  * Attempt to fault-in the page if there is a chance that the
624                  * pager has it, and potentially fault in additional pages
625                  * at the same time.
626                  *
627                  * We are NOT in splvm here and if TRYPAGER is true then
628                  * fs.m will be non-NULL and will be PG_BUSY for us.
629                  */
630
631                 if (TRYPAGER(fs)) {
632                         int rv;
633                         int reqpage;
634                         int ahead, behind;
635                         u_char behavior = vm_map_entry_behavior(fs->entry);
636
637                         if (behavior == MAP_ENTRY_BEHAV_RANDOM) {
638                                 ahead = 0;
639                                 behind = 0;
640                         } else {
641                                 behind = pindex;
642                                 if (behind > VM_FAULT_READ_BEHIND)
643                                         behind = VM_FAULT_READ_BEHIND;
644
645                                 ahead = fs->object->size - pindex;
646                                 if (ahead < 1)
647                                         ahead = 1;
648                                 if (ahead > VM_FAULT_READ_AHEAD)
649                                         ahead = VM_FAULT_READ_AHEAD;
650                         }
651
652                         if ((fs->first_object->type != OBJT_DEVICE) &&
653                             (behavior == MAP_ENTRY_BEHAV_SEQUENTIAL ||
654                                 (behavior != MAP_ENTRY_BEHAV_RANDOM &&
655                                 pindex >= fs->entry->lastr &&
656                                 pindex < fs->entry->lastr + VM_FAULT_READ))
657                         ) {
658                                 vm_pindex_t firstpindex, tmppindex;
659
660                                 if (first_pindex < 2 * VM_FAULT_READ)
661                                         firstpindex = 0;
662                                 else
663                                         firstpindex = first_pindex - 2 * VM_FAULT_READ;
664
665                                 /*
666                                  * note: partially valid pages cannot be 
667                                  * included in the lookahead - NFS piecemeal
668                                  * writes will barf on it badly.
669                                  *
670                                  * spl protection is required to avoid races
671                                  * between the lookup and an interrupt
672                                  * unbusy/free sequence occuring prior to
673                                  * our busy check.
674                                  */
675                                 crit_enter();
676                                 for (tmppindex = first_pindex - 1;
677                                     tmppindex >= firstpindex;
678                                     --tmppindex
679                                 ) {
680                                         vm_page_t mt;
681
682                                         mt = vm_page_lookup(fs->first_object, tmppindex);
683                                         if (mt == NULL || (mt->valid != VM_PAGE_BITS_ALL))
684                                                 break;
685                                         if (mt->busy ||
686                                                 (mt->flags & (PG_BUSY | PG_FICTITIOUS | PG_UNMANAGED)) ||
687                                                 mt->hold_count ||
688                                                 mt->wire_count) 
689                                                 continue;
690                                         if (mt->dirty == 0)
691                                                 vm_page_test_dirty(mt);
692                                         if (mt->dirty) {
693                                                 vm_page_protect(mt, VM_PROT_NONE);
694                                                 vm_page_deactivate(mt);
695                                         } else {
696                                                 vm_page_cache(mt);
697                                         }
698                                 }
699                                 crit_exit();
700
701                                 ahead += behind;
702                                 behind = 0;
703                         }
704
705                         /*
706                          * now we find out if any other pages should be paged
707                          * in at this time this routine checks to see if the
708                          * pages surrounding this fault reside in the same
709                          * object as the page for this fault.  If they do,
710                          * then they are faulted in also into the object.  The
711                          * array "marray" returned contains an array of
712                          * vm_page_t structs where one of them is the
713                          * vm_page_t passed to the routine.  The reqpage
714                          * return value is the index into the marray for the
715                          * vm_page_t passed to the routine.
716                          *
717                          * fs.m plus the additional pages are PG_BUSY'd.
718                          */
719                         faultcount = vm_fault_additional_pages(
720                             fs->m, behind, ahead, marray, &reqpage);
721
722                         /*
723                          * update lastr imperfectly (we do not know how much
724                          * getpages will actually read), but good enough.
725                          */
726                         fs->entry->lastr = pindex + faultcount - behind;
727
728                         /*
729                          * Call the pager to retrieve the data, if any, after
730                          * releasing the lock on the map.  We hold a ref on
731                          * fs.object and the pages are PG_BUSY'd.
732                          */
733                         unlock_map(fs);
734
735                         if (faultcount) {
736                                 rv = vm_pager_get_pages(fs->object, marray, 
737                                                         faultcount, reqpage);
738                         } else {
739                                 rv = VM_PAGER_FAIL;
740                         }
741
742                         if (rv == VM_PAGER_OK) {
743                                 /*
744                                  * Found the page. Leave it busy while we play
745                                  * with it.
746                                  */
747
748                                 /*
749                                  * Relookup in case pager changed page. Pager
750                                  * is responsible for disposition of old page
751                                  * if moved.
752                                  *
753                                  * XXX other code segments do relookups too.
754                                  * It's a bad abstraction that needs to be
755                                  * fixed/removed.
756                                  */
757                                 fs->m = vm_page_lookup(fs->object, pindex);
758                                 if (fs->m == NULL) {
759                                         unlock_and_deallocate(fs);
760                                         return (KERN_TRY_AGAIN);
761                                 }
762
763                                 ++fs->hardfault;
764                                 break; /* break to PAGE HAS BEEN FOUND */
765                         }
766
767                         /*
768                          * Remove the bogus page (which does not exist at this
769                          * object/offset); before doing so, we must get back
770                          * our object lock to preserve our invariant.
771                          *
772                          * Also wake up any other process that may want to bring
773                          * in this page.
774                          *
775                          * If this is the top-level object, we must leave the
776                          * busy page to prevent another process from rushing
777                          * past us, and inserting the page in that object at
778                          * the same time that we are.
779                          */
780                         if (rv == VM_PAGER_ERROR) {
781                                 if (curproc)
782                                         kprintf("vm_fault: pager read error, pid %d (%s)\n", curproc->p_pid, curproc->p_comm);
783                                 else
784                                         kprintf("vm_fault: pager read error, thread %p (%s)\n", curthread, curproc->p_comm);
785                         }
786                         /*
787                          * Data outside the range of the pager or an I/O error
788                          */
789                         /*
790                          * XXX - the check for kernel_map is a kludge to work
791                          * around having the machine panic on a kernel space
792                          * fault w/ I/O error.
793                          */
794                         if (((fs->map != kernel_map) && (rv == VM_PAGER_ERROR)) ||
795                                 (rv == VM_PAGER_BAD)) {
796                                 vm_page_free(fs->m);
797                                 fs->m = NULL;
798                                 unlock_and_deallocate(fs);
799                                 if (rv == VM_PAGER_ERROR)
800                                         return (KERN_FAILURE);
801                                 else
802                                         return (KERN_PROTECTION_FAILURE);
803                                 /* NOT REACHED */
804                         }
805                         if (fs->object != fs->first_object) {
806                                 vm_page_free(fs->m);
807                                 fs->m = NULL;
808                                 /*
809                                  * XXX - we cannot just fall out at this
810                                  * point, m has been freed and is invalid!
811                                  */
812                         }
813                 }
814
815                 /*
816                  * We get here if the object has a default pager (or unwiring) 
817                  * or the pager doesn't have the page.
818                  */
819                 if (fs->object == fs->first_object)
820                         fs->first_m = fs->m;
821
822                 /*
823                  * Move on to the next object.  Lock the next object before
824                  * unlocking the current one.
825                  */
826                 pindex += OFF_TO_IDX(fs->object->backing_object_offset);
827                 next_object = fs->object->backing_object;
828                 if (next_object == NULL) {
829                         /*
830                          * If there's no object left, fill the page in the top
831                          * object with zeros.
832                          */
833                         if (fs->object != fs->first_object) {
834                                 vm_object_pip_wakeup(fs->object);
835
836                                 fs->object = fs->first_object;
837                                 pindex = first_pindex;
838                                 fs->m = fs->first_m;
839                         }
840                         fs->first_m = NULL;
841
842                         /*
843                          * Zero the page if necessary and mark it valid.
844                          */
845                         if ((fs->m->flags & PG_ZERO) == 0) {
846                                 vm_page_zero_fill(fs->m);
847                         } else {
848                                 mycpu->gd_cnt.v_ozfod++;
849                         }
850                         mycpu->gd_cnt.v_zfod++;
851                         fs->m->valid = VM_PAGE_BITS_ALL;
852                         break;  /* break to PAGE HAS BEEN FOUND */
853                 } else {
854                         if (fs->object != fs->first_object) {
855                                 vm_object_pip_wakeup(fs->object);
856                         }
857                         KASSERT(fs->object != next_object, ("object loop %p", next_object));
858                         fs->object = next_object;
859                         vm_object_pip_add(fs->object, 1);
860                 }
861         }
862
863         KASSERT((fs->m->flags & PG_BUSY) != 0,
864                 ("vm_fault: not busy after main loop"));
865
866         /*
867          * PAGE HAS BEEN FOUND. [Loop invariant still holds -- the object lock
868          * is held.]
869          */
870
871         /*
872          * If the page is being written, but isn't already owned by the
873          * top-level object, we have to copy it into a new page owned by the
874          * top-level object.
875          */
876         if (fs->object != fs->first_object) {
877                 /*
878                  * We only really need to copy if we want to write it.
879                  */
880                 if (fault_type & VM_PROT_WRITE) {
881                         /*
882                          * This allows pages to be virtually copied from a 
883                          * backing_object into the first_object, where the 
884                          * backing object has no other refs to it, and cannot
885                          * gain any more refs.  Instead of a bcopy, we just 
886                          * move the page from the backing object to the 
887                          * first object.  Note that we must mark the page 
888                          * dirty in the first object so that it will go out 
889                          * to swap when needed.
890                          */
891                         if (fs->map_generation == fs->map->timestamp &&
892                                 /*
893                                  * Only one shadow object
894                                  */
895                                 (fs->object->shadow_count == 1) &&
896                                 /*
897                                  * No COW refs, except us
898                                  */
899                                 (fs->object->ref_count == 1) &&
900                                 /*
901                                  * No one else can look this object up
902                                  */
903                                 (fs->object->handle == NULL) &&
904                                 /*
905                                  * No other ways to look the object up
906                                  */
907                                 ((fs->object->type == OBJT_DEFAULT) ||
908                                  (fs->object->type == OBJT_SWAP)) &&
909                                 /*
910                                  * We don't chase down the shadow chain
911                                  */
912                                 (fs->object == fs->first_object->backing_object) &&
913
914                                 /*
915                                  * grab the lock if we need to
916                                  */
917                                 (fs->lookup_still_valid ||
918                                  lockmgr(&fs->map->lock, LK_EXCLUSIVE|LK_NOWAIT) == 0)
919                             ) {
920                                 
921                                 fs->lookup_still_valid = 1;
922                                 /*
923                                  * get rid of the unnecessary page
924                                  */
925                                 vm_page_protect(fs->first_m, VM_PROT_NONE);
926                                 vm_page_free(fs->first_m);
927                                 fs->first_m = NULL;
928
929                                 /*
930                                  * grab the page and put it into the 
931                                  * process'es object.  The page is 
932                                  * automatically made dirty.
933                                  */
934                                 vm_page_rename(fs->m, fs->first_object, first_pindex);
935                                 fs->first_m = fs->m;
936                                 vm_page_busy(fs->first_m);
937                                 fs->m = NULL;
938                                 mycpu->gd_cnt.v_cow_optim++;
939                         } else {
940                                 /*
941                                  * Oh, well, lets copy it.
942                                  */
943                                 vm_page_copy(fs->m, fs->first_m);
944                         }
945
946                         if (fs->m) {
947                                 /*
948                                  * We no longer need the old page or object.
949                                  */
950                                 release_page(fs);
951                         }
952
953                         /*
954                          * fs->object != fs->first_object due to above 
955                          * conditional
956                          */
957                         vm_object_pip_wakeup(fs->object);
958
959                         /*
960                          * Only use the new page below...
961                          */
962
963                         mycpu->gd_cnt.v_cow_faults++;
964                         fs->m = fs->first_m;
965                         fs->object = fs->first_object;
966                         pindex = first_pindex;
967                 } else {
968                         /*
969                          * If it wasn't a write fault avoid having to copy
970                          * the page by mapping it read-only.
971                          */
972                         fs->prot &= ~VM_PROT_WRITE;
973                 }
974         }
975
976         /*
977          * We may have had to unlock a map to do I/O.  If we did then
978          * lookup_still_valid will be FALSE.  If the map generation count
979          * also changed then all sorts of things could have happened while
980          * we were doing the I/O and we need to retry.
981          */
982
983         if (!fs->lookup_still_valid &&
984             (fs->map->timestamp != fs->map_generation)) {
985                 release_page(fs);
986                 unlock_and_deallocate(fs);
987                 return (KERN_TRY_AGAIN);
988         }
989
990         /*
991          * Put this page into the physical map. We had to do the unlock above
992          * because pmap_enter may cause other faults.   We don't put the page
993          * back on the active queue until later so that the page-out daemon
994          * won't find us (yet).
995          */
996         if (fs->prot & VM_PROT_WRITE) {
997                 vm_page_flag_set(fs->m, PG_WRITEABLE);
998                 vm_object_set_writeable_dirty(fs->m->object);
999
1000                 /*
1001                  * If the fault is a write, we know that this page is being
1002                  * written NOW so dirty it explicitly to save on 
1003                  * pmap_is_modified() calls later.
1004                  *
1005                  * If this is a NOSYNC mmap we do not want to set PG_NOSYNC
1006                  * if the page is already dirty to prevent data written with
1007                  * the expectation of being synced from not being synced.
1008                  * Likewise if this entry does not request NOSYNC then make
1009                  * sure the page isn't marked NOSYNC.  Applications sharing
1010                  * data should use the same flags to avoid ping ponging.
1011                  *
1012                  * Also tell the backing pager, if any, that it should remove
1013                  * any swap backing since the page is now dirty.
1014                  */
1015                 if (fs->entry->eflags & MAP_ENTRY_NOSYNC) {
1016                         if (fs->m->dirty == 0)
1017                                 vm_page_flag_set(fs->m, PG_NOSYNC);
1018                 } else {
1019                         vm_page_flag_clear(fs->m, PG_NOSYNC);
1020                 }
1021                 if (fs->fault_flags & VM_FAULT_DIRTY) {
1022                         crit_enter();
1023                         vm_page_dirty(fs->m);
1024                         vm_pager_page_unswapped(fs->m);
1025                         crit_exit();
1026                 }
1027         }
1028
1029         /*
1030          * Page had better still be busy.  We are still locked up and 
1031          * fs->object will have another PIP reference if it is not equal
1032          * to fs->first_object.
1033          */
1034         KASSERT(fs->m->flags & PG_BUSY,
1035                 ("vm_fault: page %p not busy!", fs->m));
1036
1037         /*
1038          * Sanity check: page must be completely valid or it is not fit to
1039          * map into user space.  vm_pager_get_pages() ensures this.
1040          */
1041         if (fs->m->valid != VM_PAGE_BITS_ALL) {
1042                 vm_page_zero_invalid(fs->m, TRUE);
1043                 kprintf("Warning: page %p partially invalid on fault\n", fs->m);
1044         }
1045
1046         return (KERN_SUCCESS);
1047 }
1048
1049 /*
1050  * quick version of vm_fault
1051  */
1052 int
1053 vm_fault_quick(caddr_t v, int prot)
1054 {
1055         int r;
1056
1057         if (prot & VM_PROT_WRITE)
1058                 r = subyte(v, fubyte(v));
1059         else
1060                 r = fubyte(v);
1061         return(r);
1062 }
1063
1064 /*
1065  * Wire down a range of virtual addresses in a map.  The entry in question
1066  * should be marked in-transition and the map must be locked.  We must
1067  * release the map temporarily while faulting-in the page to avoid a
1068  * deadlock.  Note that the entry may be clipped while we are blocked but
1069  * will never be freed.
1070  */
1071 int
1072 vm_fault_wire(vm_map_t map, vm_map_entry_t entry, boolean_t user_wire)
1073 {
1074         boolean_t fictitious;
1075         vm_offset_t start;
1076         vm_offset_t end;
1077         vm_offset_t va;
1078         vm_paddr_t pa;
1079         pmap_t pmap;
1080         int rv;
1081
1082         pmap = vm_map_pmap(map);
1083         start = entry->start;
1084         end = entry->end;
1085         fictitious = entry->object.vm_object &&
1086                         (entry->object.vm_object->type == OBJT_DEVICE);
1087
1088         vm_map_unlock(map);
1089         map->timestamp++;
1090
1091         /*
1092          * We simulate a fault to get the page and enter it in the physical
1093          * map.
1094          */
1095         for (va = start; va < end; va += PAGE_SIZE) {
1096                 if (user_wire) {
1097                         rv = vm_fault(map, va, VM_PROT_READ, 
1098                                         VM_FAULT_USER_WIRE);
1099                 } else {
1100                         rv = vm_fault(map, va, VM_PROT_READ|VM_PROT_WRITE,
1101                                         VM_FAULT_CHANGE_WIRING);
1102                 }
1103                 if (rv) {
1104                         while (va > start) {
1105                                 va -= PAGE_SIZE;
1106                                 if ((pa = pmap_extract(pmap, va)) == 0)
1107                                         continue;
1108                                 pmap_change_wiring(pmap, va, FALSE);
1109                                 if (!fictitious)
1110                                         vm_page_unwire(PHYS_TO_VM_PAGE(pa), 1);
1111                         }
1112                         vm_map_lock(map);
1113                         return (rv);
1114                 }
1115         }
1116         vm_map_lock(map);
1117         return (KERN_SUCCESS);
1118 }
1119
1120 /*
1121  * Unwire a range of virtual addresses in a map.  The map should be
1122  * locked.
1123  */
1124 void
1125 vm_fault_unwire(vm_map_t map, vm_map_entry_t entry)
1126 {
1127         boolean_t fictitious;
1128         vm_offset_t start;
1129         vm_offset_t end;
1130         vm_offset_t va;
1131         vm_paddr_t pa;
1132         pmap_t pmap;
1133
1134         pmap = vm_map_pmap(map);
1135         start = entry->start;
1136         end = entry->end;
1137         fictitious = entry->object.vm_object &&
1138                         (entry->object.vm_object->type == OBJT_DEVICE);
1139
1140         /*
1141          * Since the pages are wired down, we must be able to get their
1142          * mappings from the physical map system.
1143          */
1144         for (va = start; va < end; va += PAGE_SIZE) {
1145                 pa = pmap_extract(pmap, va);
1146                 if (pa != 0) {
1147                         pmap_change_wiring(pmap, va, FALSE);
1148                         if (!fictitious)
1149                                 vm_page_unwire(PHYS_TO_VM_PAGE(pa), 1);
1150                 }
1151         }
1152 }
1153
1154 /*
1155  * Reduce the rate at which memory is allocated to a process based
1156  * on the perceived load on the VM system. As the load increases
1157  * the allocation burst rate goes down and the delay increases. 
1158  *
1159  * Rate limiting does not apply when faulting active or inactive
1160  * pages.  When faulting 'cache' pages, rate limiting only applies
1161  * if the system currently has a severe page deficit.
1162  *
1163  * XXX vm_pagesupply should be increased when a page is freed.
1164  *
1165  * We sleep up to 1/10 of a second.
1166  */
1167 static int
1168 vm_fault_ratelimit(struct vmspace *vmspace)
1169 {
1170         if (vm_load_enable == 0)
1171                 return(0);
1172         if (vmspace->vm_pagesupply > 0) {
1173                 --vmspace->vm_pagesupply;
1174                 return(0);
1175         }
1176 #ifdef INVARIANTS
1177         if (vm_load_debug) {
1178                 kprintf("load %-4d give %d pgs, wait %d, pid %-5d (%s)\n",
1179                         vm_load, 
1180                         (1000 - vm_load ) / 10, vm_load * hz / 10000,
1181                         curproc->p_pid, curproc->p_comm);
1182         }
1183 #endif
1184         vmspace->vm_pagesupply = (1000 - vm_load) / 10;
1185         return(vm_load * hz / 10000);
1186 }
1187
1188 /*
1189  *      Routine:
1190  *              vm_fault_copy_entry
1191  *      Function:
1192  *              Copy all of the pages from a wired-down map entry to another.
1193  *
1194  *      In/out conditions:
1195  *              The source and destination maps must be locked for write.
1196  *              The source map entry must be wired down (or be a sharing map
1197  *              entry corresponding to a main map entry that is wired down).
1198  */
1199
1200 void
1201 vm_fault_copy_entry(vm_map_t dst_map, vm_map_t src_map,
1202     vm_map_entry_t dst_entry, vm_map_entry_t src_entry)
1203 {
1204         vm_object_t dst_object;
1205         vm_object_t src_object;
1206         vm_ooffset_t dst_offset;
1207         vm_ooffset_t src_offset;
1208         vm_prot_t prot;
1209         vm_offset_t vaddr;
1210         vm_page_t dst_m;
1211         vm_page_t src_m;
1212
1213 #ifdef  lint
1214         src_map++;
1215 #endif  /* lint */
1216
1217         src_object = src_entry->object.vm_object;
1218         src_offset = src_entry->offset;
1219
1220         /*
1221          * Create the top-level object for the destination entry. (Doesn't
1222          * actually shadow anything - we copy the pages directly.)
1223          */
1224         vm_map_entry_allocate_object(dst_entry);
1225         dst_object = dst_entry->object.vm_object;
1226
1227         prot = dst_entry->max_protection;
1228
1229         /*
1230          * Loop through all of the pages in the entry's range, copying each
1231          * one from the source object (it should be there) to the destination
1232          * object.
1233          */
1234         for (vaddr = dst_entry->start, dst_offset = 0;
1235             vaddr < dst_entry->end;
1236             vaddr += PAGE_SIZE, dst_offset += PAGE_SIZE) {
1237
1238                 /*
1239                  * Allocate a page in the destination object
1240                  */
1241                 do {
1242                         dst_m = vm_page_alloc(dst_object,
1243                                 OFF_TO_IDX(dst_offset), VM_ALLOC_NORMAL);
1244                         if (dst_m == NULL) {
1245                                 vm_wait();
1246                         }
1247                 } while (dst_m == NULL);
1248
1249                 /*
1250                  * Find the page in the source object, and copy it in.
1251                  * (Because the source is wired down, the page will be in
1252                  * memory.)
1253                  */
1254                 src_m = vm_page_lookup(src_object,
1255                         OFF_TO_IDX(dst_offset + src_offset));
1256                 if (src_m == NULL)
1257                         panic("vm_fault_copy_wired: page missing");
1258
1259                 vm_page_copy(src_m, dst_m);
1260
1261                 /*
1262                  * Enter it in the pmap...
1263                  */
1264
1265                 vm_page_flag_clear(dst_m, PG_ZERO);
1266                 pmap_enter(dst_map->pmap, vaddr, dst_m, prot, FALSE);
1267                 vm_page_flag_set(dst_m, PG_WRITEABLE|PG_MAPPED);
1268
1269                 /*
1270                  * Mark it no longer busy, and put it on the active list.
1271                  */
1272                 vm_page_activate(dst_m);
1273                 vm_page_wakeup(dst_m);
1274         }
1275 }
1276
1277
1278 /*
1279  * This routine checks around the requested page for other pages that
1280  * might be able to be faulted in.  This routine brackets the viable
1281  * pages for the pages to be paged in.
1282  *
1283  * Inputs:
1284  *      m, rbehind, rahead
1285  *
1286  * Outputs:
1287  *  marray (array of vm_page_t), reqpage (index of requested page)
1288  *
1289  * Return value:
1290  *  number of pages in marray
1291  */
1292 static int
1293 vm_fault_additional_pages(vm_page_t m, int rbehind, int rahead,
1294     vm_page_t *marray, int *reqpage)
1295 {
1296         int i,j;
1297         vm_object_t object;
1298         vm_pindex_t pindex, startpindex, endpindex, tpindex;
1299         vm_page_t rtm;
1300         int cbehind, cahead;
1301
1302         object = m->object;
1303         pindex = m->pindex;
1304
1305         /*
1306          * we don't fault-ahead for device pager
1307          */
1308         if (object->type == OBJT_DEVICE) {
1309                 *reqpage = 0;
1310                 marray[0] = m;
1311                 return 1;
1312         }
1313
1314         /*
1315          * if the requested page is not available, then give up now
1316          */
1317
1318         if (!vm_pager_has_page(object, pindex, &cbehind, &cahead)) {
1319                 return 0;
1320         }
1321
1322         if ((cbehind == 0) && (cahead == 0)) {
1323                 *reqpage = 0;
1324                 marray[0] = m;
1325                 return 1;
1326         }
1327
1328         if (rahead > cahead) {
1329                 rahead = cahead;
1330         }
1331
1332         if (rbehind > cbehind) {
1333                 rbehind = cbehind;
1334         }
1335
1336         /*
1337          * try to do any readahead that we might have free pages for.
1338          */
1339         if ((rahead + rbehind) >
1340                 ((vmstats.v_free_count + vmstats.v_cache_count) - vmstats.v_free_reserved)) {
1341                 pagedaemon_wakeup();
1342                 marray[0] = m;
1343                 *reqpage = 0;
1344                 return 1;
1345         }
1346
1347         /*
1348          * scan backward for the read behind pages -- in memory 
1349          *
1350          * Assume that if the page is not found an interrupt will not
1351          * create it.  Theoretically interrupts can only remove (busy)
1352          * pages, not create new associations.
1353          */
1354         if (pindex > 0) {
1355                 if (rbehind > pindex) {
1356                         rbehind = pindex;
1357                         startpindex = 0;
1358                 } else {
1359                         startpindex = pindex - rbehind;
1360                 }
1361
1362                 crit_enter();
1363                 for ( tpindex = pindex - 1; tpindex >= startpindex; tpindex -= 1) {
1364                         if (vm_page_lookup( object, tpindex)) {
1365                                 startpindex = tpindex + 1;
1366                                 break;
1367                         }
1368                         if (tpindex == 0)
1369                                 break;
1370                 }
1371
1372                 for(i = 0, tpindex = startpindex; tpindex < pindex; i++, tpindex++) {
1373
1374                         rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL);
1375                         if (rtm == NULL) {
1376                                 crit_exit();
1377                                 for (j = 0; j < i; j++) {
1378                                         vm_page_free(marray[j]);
1379                                 }
1380                                 marray[0] = m;
1381                                 *reqpage = 0;
1382                                 return 1;
1383                         }
1384
1385                         marray[i] = rtm;
1386                 }
1387                 crit_exit();
1388         } else {
1389                 startpindex = 0;
1390                 i = 0;
1391         }
1392
1393         marray[i] = m;
1394         /* page offset of the required page */
1395         *reqpage = i;
1396
1397         tpindex = pindex + 1;
1398         i++;
1399
1400         /*
1401          * scan forward for the read ahead pages
1402          */
1403         endpindex = tpindex + rahead;
1404         if (endpindex > object->size)
1405                 endpindex = object->size;
1406
1407         crit_enter();
1408         for( ; tpindex < endpindex; i++, tpindex++) {
1409
1410                 if (vm_page_lookup(object, tpindex)) {
1411                         break;
1412                 }
1413
1414                 rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL);
1415                 if (rtm == NULL) {
1416                         break;
1417                 }
1418
1419                 marray[i] = rtm;
1420         }
1421         crit_exit();
1422
1423         /* return number of bytes of pages */
1424         return i;
1425 }