Correct a bug in vm_page_cache(). We should make sure that a held
[dragonfly.git] / sys / vm / vm_page.c
1 /*
2  * Copyright (c) 1991 Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * The Mach Operating System project at Carnegie-Mellon University.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      from: @(#)vm_page.c     7.4 (Berkeley) 5/7/91
37  * $FreeBSD: src/sys/vm/vm_page.c,v 1.147.2.18 2002/03/10 05:03:19 alc Exp $
38  * $DragonFly: src/sys/vm/vm_page.c,v 1.18 2004/03/24 17:06:44 hmp Exp $
39  */
40
41 /*
42  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
43  * All rights reserved.
44  *
45  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
46  *
47  * Permission to use, copy, modify and distribute this software and
48  * its documentation is hereby granted, provided that both the copyright
49  * notice and this permission notice appear in all copies of the
50  * software, derivative works or modified versions, and any portions
51  * thereof, and that both notices appear in supporting documentation.
52  *
53  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
54  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
55  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
56  *
57  * Carnegie Mellon requests users of this software to return to
58  *
59  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
60  *  School of Computer Science
61  *  Carnegie Mellon University
62  *  Pittsburgh PA 15213-3890
63  *
64  * any improvements or extensions that they make and grant Carnegie the
65  * rights to redistribute these changes.
66  */
67
68 /*
69  *      Resident memory management module.
70  */
71
72 #include <sys/param.h>
73 #include <sys/systm.h>
74 #include <sys/malloc.h>
75 #include <sys/proc.h>
76 #include <sys/vmmeter.h>
77 #include <sys/vnode.h>
78
79 #include <vm/vm.h>
80 #include <vm/vm_param.h>
81 #include <sys/lock.h>
82 #include <vm/vm_kern.h>
83 #include <vm/pmap.h>
84 #include <vm/vm_map.h>
85 #include <vm/vm_object.h>
86 #include <vm/vm_page.h>
87 #include <vm/vm_pageout.h>
88 #include <vm/vm_pager.h>
89 #include <vm/vm_extern.h>
90 #include <vm/vm_page2.h>
91
92 static void     vm_page_queue_init (void);
93 static vm_page_t vm_page_select_cache (vm_object_t, vm_pindex_t);
94
95 /*
96  *      Associated with page of user-allocatable memory is a
97  *      page structure.
98  */
99
100 static struct vm_page **vm_page_buckets; /* Array of buckets */
101 static int vm_page_bucket_count;        /* How big is array? */
102 static int vm_page_hash_mask;           /* Mask for hash function */
103 static volatile int vm_page_bucket_generation;
104
105 struct vpgqueues vm_page_queues[PQ_COUNT];
106
107 static void
108 vm_page_queue_init(void) {
109         int i;
110
111         for(i=0;i<PQ_L2_SIZE;i++) {
112                 vm_page_queues[PQ_FREE+i].cnt = &vmstats.v_free_count;
113         }
114         vm_page_queues[PQ_INACTIVE].cnt = &vmstats.v_inactive_count;
115
116         vm_page_queues[PQ_ACTIVE].cnt = &vmstats.v_active_count;
117         vm_page_queues[PQ_HOLD].cnt = &vmstats.v_active_count;
118         for(i=0;i<PQ_L2_SIZE;i++) {
119                 vm_page_queues[PQ_CACHE+i].cnt = &vmstats.v_cache_count;
120         }
121         for(i=0;i<PQ_COUNT;i++) {
122                 TAILQ_INIT(&vm_page_queues[i].pl);
123         }
124 }
125
126 vm_page_t vm_page_array = 0;
127 int vm_page_array_size = 0;
128 long first_page = 0;
129 int vm_page_zero_count = 0;
130
131 static __inline int vm_page_hash (vm_object_t object, vm_pindex_t pindex);
132 static void vm_page_free_wakeup (void);
133
134 /*
135  *      vm_set_page_size:
136  *
137  *      Sets the page size, perhaps based upon the memory
138  *      size.  Must be called before any use of page-size
139  *      dependent functions.
140  */
141 void
142 vm_set_page_size(void)
143 {
144         if (vmstats.v_page_size == 0)
145                 vmstats.v_page_size = PAGE_SIZE;
146         if (((vmstats.v_page_size - 1) & vmstats.v_page_size) != 0)
147                 panic("vm_set_page_size: page size not a power of two");
148 }
149
150 /*
151  *      vm_add_new_page:
152  *
153  *      Add a new page to the freelist for use by the system.  New pages
154  *      are added to both the head and tail of the associated free page
155  *      queue in a bottom-up fashion, so both zero'd and non-zero'd page
156  *      requests pull 'recent' adds (higher physical addresses) first.
157  *
158  *      Must be called at splhigh().
159  */
160 vm_page_t
161 vm_add_new_page(vm_paddr_t pa)
162 {
163         vm_page_t m;
164         struct vpgqueues *vpq;
165
166         ++vmstats.v_page_count;
167         ++vmstats.v_free_count;
168         m = PHYS_TO_VM_PAGE(pa);
169         m->phys_addr = pa;
170         m->flags = 0;
171         m->pc = (pa >> PAGE_SHIFT) & PQ_L2_MASK;
172         m->queue = m->pc + PQ_FREE;
173         vpq = &vm_page_queues[m->queue];
174         if (vpq->flipflop)
175                 TAILQ_INSERT_TAIL(&vpq->pl, m, pageq);
176         else
177                 TAILQ_INSERT_HEAD(&vpq->pl, m, pageq);
178         vpq->flipflop = 1 - vpq->flipflop;
179         vm_page_queues[m->queue].lcnt++;
180         return (m);
181 }
182
183 /*
184  *      vm_page_startup:
185  *
186  *      Initializes the resident memory module.
187  *
188  *      Allocates memory for the page cells, and
189  *      for the object/offset-to-page hash table headers.
190  *      Each page cell is initialized and placed on the free list.
191  */
192
193 vm_offset_t
194 vm_page_startup(vm_offset_t starta, vm_offset_t enda, vm_offset_t vaddr)
195 {
196         vm_offset_t mapped;
197         struct vm_page **bucket;
198         vm_size_t npages;
199         vm_paddr_t page_range;
200         vm_paddr_t new_end;
201         int i;
202         vm_paddr_t pa;
203         int nblocks;
204         vm_paddr_t last_pa;
205
206         /* the biggest memory array is the second group of pages */
207         vm_paddr_t end;
208         vm_paddr_t biggestone, biggestsize;
209
210         vm_paddr_t total;
211
212         total = 0;
213         biggestsize = 0;
214         biggestone = 0;
215         nblocks = 0;
216         vaddr = round_page(vaddr);
217
218         for (i = 0; phys_avail[i + 1]; i += 2) {
219                 phys_avail[i] = round_page(phys_avail[i]);
220                 phys_avail[i + 1] = trunc_page(phys_avail[i + 1]);
221         }
222
223         for (i = 0; phys_avail[i + 1]; i += 2) {
224                 vm_paddr_t size = phys_avail[i + 1] - phys_avail[i];
225
226                 if (size > biggestsize) {
227                         biggestone = i;
228                         biggestsize = size;
229                 }
230                 ++nblocks;
231                 total += size;
232         }
233
234         end = phys_avail[biggestone+1];
235
236         /*
237          * Initialize the queue headers for the free queue, the active queue
238          * and the inactive queue.
239          */
240
241         vm_page_queue_init();
242
243         /*
244          * Allocate (and initialize) the hash table buckets.
245          *
246          * The number of buckets MUST BE a power of 2, and the actual value is
247          * the next power of 2 greater than the number of physical pages in
248          * the system.  
249          *
250          * We make the hash table approximately 2x the number of pages to
251          * reduce the chain length.  This is about the same size using the 
252          * singly-linked list as the 1x hash table we were using before 
253          * using TAILQ but the chain length will be smaller.
254          *
255          * Note: This computation can be tweaked if desired.
256          */
257         vm_page_buckets = (struct vm_page **)vaddr;
258         bucket = vm_page_buckets;
259         if (vm_page_bucket_count == 0) {
260                 vm_page_bucket_count = 1;
261                 while (vm_page_bucket_count < atop(total))
262                         vm_page_bucket_count <<= 1;
263         }
264         vm_page_bucket_count <<= 1;
265         vm_page_hash_mask = vm_page_bucket_count - 1;
266
267         /*
268          * Validate these addresses.
269          */
270         new_end = end - vm_page_bucket_count * sizeof(struct vm_page *);
271         new_end = trunc_page(new_end);
272         mapped = round_page(vaddr);
273         vaddr = pmap_map(mapped, new_end, end,
274             VM_PROT_READ | VM_PROT_WRITE);
275         vaddr = round_page(vaddr);
276         bzero((caddr_t) mapped, vaddr - mapped);
277
278         for (i = 0; i < vm_page_bucket_count; i++) {
279                 *bucket = NULL;
280                 bucket++;
281         }
282
283         /*
284          * Compute the number of pages of memory that will be available for
285          * use (taking into account the overhead of a page structure per
286          * page).
287          */
288
289         first_page = phys_avail[0] / PAGE_SIZE;
290
291         page_range = phys_avail[(nblocks - 1) * 2 + 1] / PAGE_SIZE - first_page;
292         npages = (total - (page_range * sizeof(struct vm_page)) -
293             (end - new_end)) / PAGE_SIZE;
294
295         end = new_end;
296         /*
297          * Initialize the mem entry structures now, and put them in the free
298          * queue.
299          */
300         vm_page_array = (vm_page_t) vaddr;
301         mapped = vaddr;
302
303         /*
304          * Validate these addresses.
305          */
306
307         new_end = trunc_page(end - page_range * sizeof(struct vm_page));
308         mapped = pmap_map(mapped, new_end, end,
309             VM_PROT_READ | VM_PROT_WRITE);
310
311         /*
312          * Clear all of the page structures
313          */
314         bzero((caddr_t) vm_page_array, page_range * sizeof(struct vm_page));
315         vm_page_array_size = page_range;
316
317         /*
318          * Construct the free queue(s) in ascending order (by physical
319          * address) so that the first 16MB of physical memory is allocated
320          * last rather than first.  On large-memory machines, this avoids
321          * the exhaustion of low physical memory before isa_dmainit has run.
322          */
323         vmstats.v_page_count = 0;
324         vmstats.v_free_count = 0;
325         for (i = 0; phys_avail[i + 1] && npages > 0; i += 2) {
326                 pa = phys_avail[i];
327                 if (i == biggestone)
328                         last_pa = new_end;
329                 else
330                         last_pa = phys_avail[i + 1];
331                 while (pa < last_pa && npages-- > 0) {
332                         vm_add_new_page(pa);
333                         pa += PAGE_SIZE;
334                 }
335         }
336         return (mapped);
337 }
338
339 /*
340  *      vm_page_hash:
341  *
342  *      Distributes the object/offset key pair among hash buckets.
343  *
344  *      NOTE:  This macro depends on vm_page_bucket_count being a power of 2.
345  *      This routine may not block.
346  *
347  *      We try to randomize the hash based on the object to spread the pages
348  *      out in the hash table without it costing us too much.
349  */
350 static __inline int
351 vm_page_hash(vm_object_t object, vm_pindex_t pindex)
352 {
353         int i = ((uintptr_t)object + pindex) ^ object->hash_rand;
354
355         return(i & vm_page_hash_mask);
356 }
357
358 void
359 vm_page_unhold(vm_page_t mem)
360 {
361         --mem->hold_count;
362         KASSERT(mem->hold_count >= 0, ("vm_page_unhold: hold count < 0!!!"));
363         if (mem->hold_count == 0 && mem->queue == PQ_HOLD)
364                 vm_page_free_toq(mem);
365 }
366
367 /*
368  *      vm_page_insert:         [ internal use only ]
369  *
370  *      Inserts the given mem entry into the object and object list.
371  *
372  *      The pagetables are not updated but will presumably fault the page
373  *      in if necessary, or if a kernel page the caller will at some point
374  *      enter the page into the kernel's pmap.  We are not allowed to block
375  *      here so we *can't* do this anyway.
376  *
377  *      The object and page must be locked, and must be splhigh.
378  *      This routine may not block.
379  */
380
381 void
382 vm_page_insert(vm_page_t m, vm_object_t object, vm_pindex_t pindex)
383 {
384         struct vm_page **bucket;
385
386         if (m->object != NULL)
387                 panic("vm_page_insert: already inserted");
388
389         /*
390          * Record the object/offset pair in this page
391          */
392
393         m->object = object;
394         m->pindex = pindex;
395
396         /*
397          * Insert it into the object_object/offset hash table
398          */
399
400         bucket = &vm_page_buckets[vm_page_hash(object, pindex)];
401         m->hnext = *bucket;
402         *bucket = m;
403         vm_page_bucket_generation++;
404
405         /*
406          * Now link into the object's list of backed pages.
407          */
408
409         TAILQ_INSERT_TAIL(&object->memq, m, listq);
410         object->generation++;
411
412         /*
413          * show that the object has one more resident page.
414          */
415
416         object->resident_page_count++;
417
418         /*
419          * Since we are inserting a new and possibly dirty page,
420          * update the object's OBJ_WRITEABLE and OBJ_MIGHTBEDIRTY flags.
421          */
422         if (m->flags & PG_WRITEABLE)
423                 vm_object_set_writeable_dirty(object);
424 }
425
426 /*
427  *      vm_page_remove:
428  *                              NOTE: used by device pager as well -wfj
429  *
430  *      Removes the given mem entry from the object/offset-page
431  *      table and the object page list, but do not invalidate/terminate
432  *      the backing store.
433  *
434  *      The object and page must be locked, and at splhigh.
435  *      The underlying pmap entry (if any) is NOT removed here.
436  *      This routine may not block.
437  */
438
439 void
440 vm_page_remove(vm_page_t m)
441 {
442         vm_object_t object;
443
444         if (m->object == NULL)
445                 return;
446
447         if ((m->flags & PG_BUSY) == 0) {
448                 panic("vm_page_remove: page not busy");
449         }
450
451         /*
452          * Basically destroy the page.
453          */
454
455         vm_page_wakeup(m);
456
457         object = m->object;
458
459         /*
460          * Remove from the object_object/offset hash table.  The object
461          * must be on the hash queue, we will panic if it isn't
462          *
463          * Note: we must NULL-out m->hnext to prevent loops in detached
464          * buffers with vm_page_lookup().
465          */
466
467         {
468                 struct vm_page **bucket;
469
470                 bucket = &vm_page_buckets[vm_page_hash(m->object, m->pindex)];
471                 while (*bucket != m) {
472                         if (*bucket == NULL)
473                                 panic("vm_page_remove(): page not found in hash");
474                         bucket = &(*bucket)->hnext;
475                 }
476                 *bucket = m->hnext;
477                 m->hnext = NULL;
478                 vm_page_bucket_generation++;
479         }
480
481         /*
482          * Now remove from the object's list of backed pages.
483          */
484
485         TAILQ_REMOVE(&object->memq, m, listq);
486
487         /*
488          * And show that the object has one fewer resident page.
489          */
490
491         object->resident_page_count--;
492         object->generation++;
493
494         m->object = NULL;
495 }
496
497 /*
498  *      vm_page_lookup:
499  *
500  *      Returns the page associated with the object/offset
501  *      pair specified; if none is found, NULL is returned.
502  *
503  *      NOTE: the code below does not lock.  It will operate properly if
504  *      an interrupt makes a change, but the generation algorithm will not 
505  *      operate properly in an SMP environment where both cpu's are able to run
506  *      kernel code simultaneously.
507  *
508  *      The object must be locked.  No side effects.
509  *      This routine may not block.
510  *      This is a critical path routine
511  */
512
513 vm_page_t
514 vm_page_lookup(vm_object_t object, vm_pindex_t pindex)
515 {
516         vm_page_t m;
517         struct vm_page **bucket;
518         int generation;
519
520         /*
521          * Search the hash table for this object/offset pair
522          */
523
524 retry:
525         generation = vm_page_bucket_generation;
526         bucket = &vm_page_buckets[vm_page_hash(object, pindex)];
527         for (m = *bucket; m != NULL; m = m->hnext) {
528                 if ((m->object == object) && (m->pindex == pindex)) {
529                         if (vm_page_bucket_generation != generation)
530                                 goto retry;
531                         return (m);
532                 }
533         }
534         if (vm_page_bucket_generation != generation)
535                 goto retry;
536         return (NULL);
537 }
538
539 /*
540  *      vm_page_rename:
541  *
542  *      Move the given memory entry from its
543  *      current object to the specified target object/offset.
544  *
545  *      The object must be locked.
546  *      This routine may not block.
547  *
548  *      Note: this routine will raise itself to splvm(), the caller need not. 
549  *
550  *      Note: swap associated with the page must be invalidated by the move.  We
551  *            have to do this for several reasons:  (1) we aren't freeing the
552  *            page, (2) we are dirtying the page, (3) the VM system is probably
553  *            moving the page from object A to B, and will then later move
554  *            the backing store from A to B and we can't have a conflict.
555  *
556  *      Note: we *always* dirty the page.  It is necessary both for the
557  *            fact that we moved it, and because we may be invalidating
558  *            swap.  If the page is on the cache, we have to deactivate it
559  *            or vm_page_dirty() will panic.  Dirty pages are not allowed
560  *            on the cache.
561  */
562
563 void
564 vm_page_rename(vm_page_t m, vm_object_t new_object, vm_pindex_t new_pindex)
565 {
566         int s;
567
568         s = splvm();
569         vm_page_remove(m);
570         vm_page_insert(m, new_object, new_pindex);
571         if (m->queue - m->pc == PQ_CACHE)
572                 vm_page_deactivate(m);
573         vm_page_dirty(m);
574         splx(s);
575 }
576
577 /*
578  * vm_page_unqueue_nowakeup:
579  *
580  *      vm_page_unqueue() without any wakeup
581  *
582  *      This routine must be called at splhigh().
583  *      This routine may not block.
584  */
585
586 void
587 vm_page_unqueue_nowakeup(vm_page_t m)
588 {
589         int queue = m->queue;
590         struct vpgqueues *pq;
591         if (queue != PQ_NONE) {
592                 pq = &vm_page_queues[queue];
593                 m->queue = PQ_NONE;
594                 TAILQ_REMOVE(&pq->pl, m, pageq);
595                 (*pq->cnt)--;
596                 pq->lcnt--;
597         }
598 }
599
600 /*
601  * vm_page_unqueue:
602  *
603  *      Remove a page from its queue.
604  *
605  *      This routine must be called at splhigh().
606  *      This routine may not block.
607  */
608
609 void
610 vm_page_unqueue(vm_page_t m)
611 {
612         int queue = m->queue;
613         struct vpgqueues *pq;
614         if (queue != PQ_NONE) {
615                 m->queue = PQ_NONE;
616                 pq = &vm_page_queues[queue];
617                 TAILQ_REMOVE(&pq->pl, m, pageq);
618                 (*pq->cnt)--;
619                 pq->lcnt--;
620                 if ((queue - m->pc) == PQ_CACHE) {
621                         if (vm_paging_needed())
622                                 pagedaemon_wakeup();
623                 }
624         }
625 }
626
627 #if PQ_L2_SIZE > 1
628
629 /*
630  *      vm_page_list_find:
631  *
632  *      Find a page on the specified queue with color optimization.
633  *
634  *      The page coloring optimization attempts to locate a page
635  *      that does not overload other nearby pages in the object in
636  *      the cpu's L1 or L2 caches.  We need this optimization because 
637  *      cpu caches tend to be physical caches, while object spaces tend 
638  *      to be virtual.
639  *
640  *      This routine must be called at splvm().
641  *      This routine may not block.
642  *
643  *      This routine may only be called from the vm_page_list_find() macro
644  *      in vm_page.h
645  */
646 vm_page_t
647 _vm_page_list_find(int basequeue, int index)
648 {
649         int i;
650         vm_page_t m = NULL;
651         struct vpgqueues *pq;
652
653         pq = &vm_page_queues[basequeue];
654
655         /*
656          * Note that for the first loop, index+i and index-i wind up at the
657          * same place.  Even though this is not totally optimal, we've already
658          * blown it by missing the cache case so we do not care.
659          */
660
661         for(i = PQ_L2_SIZE / 2; i > 0; --i) {
662                 if ((m = TAILQ_FIRST(&pq[(index + i) & PQ_L2_MASK].pl)) != NULL)
663                         break;
664
665                 if ((m = TAILQ_FIRST(&pq[(index - i) & PQ_L2_MASK].pl)) != NULL)
666                         break;
667         }
668         return(m);
669 }
670
671 #endif
672
673 /*
674  *      vm_page_select_cache:
675  *
676  *      Find a page on the cache queue with color optimization.  As pages
677  *      might be found, but not applicable, they are deactivated.  This
678  *      keeps us from using potentially busy cached pages.
679  *
680  *      This routine must be called at splvm().
681  *      This routine may not block.
682  */
683 vm_page_t
684 vm_page_select_cache(vm_object_t object, vm_pindex_t pindex)
685 {
686         vm_page_t m;
687
688         while (TRUE) {
689                 m = vm_page_list_find(
690                     PQ_CACHE,
691                     (pindex + object->pg_color) & PQ_L2_MASK,
692                     FALSE
693                 );
694                 if (m && ((m->flags & (PG_BUSY|PG_UNMANAGED)) || m->busy ||
695                                m->hold_count || m->wire_count)) {
696                         vm_page_deactivate(m);
697                         continue;
698                 }
699                 return m;
700         }
701 }
702
703 /*
704  *      vm_page_select_free:
705  *
706  *      Find a free or zero page, with specified preference.  We attempt to
707  *      inline the nominal case and fall back to _vm_page_select_free() 
708  *      otherwise.
709  *
710  *      This routine must be called at splvm().
711  *      This routine may not block.
712  */
713
714 static __inline vm_page_t
715 vm_page_select_free(vm_object_t object, vm_pindex_t pindex, boolean_t prefer_zero)
716 {
717         vm_page_t m;
718
719         m = vm_page_list_find(
720                 PQ_FREE,
721                 (pindex + object->pg_color) & PQ_L2_MASK,
722                 prefer_zero
723         );
724         return(m);
725 }
726
727 /*
728  *      vm_page_alloc:
729  *
730  *      Allocate and return a memory cell associated
731  *      with this VM object/offset pair.
732  *
733  *      page_req classes:
734  *      VM_ALLOC_NORMAL         allow use of cache pages, nominal free drain
735  *      VM_ALLOC_SYSTEM         greater free drain
736  *      VM_ALLOC_INTERRUPT      allow free list to be completely drained
737  *      VM_ALLOC_ZERO           advisory request for pre-zero'd page
738  *
739  *      Object must be locked.
740  *      This routine may not block.
741  *
742  *      Additional special handling is required when called from an
743  *      interrupt (VM_ALLOC_INTERRUPT).  We are not allowed to mess with
744  *      the page cache in this case.
745  */
746
747 vm_page_t
748 vm_page_alloc(vm_object_t object, vm_pindex_t pindex, int page_req)
749 {
750         vm_page_t m = NULL;
751         int s;
752
753         KASSERT(!vm_page_lookup(object, pindex),
754                 ("vm_page_alloc: page already allocated"));
755         KKASSERT(page_req & 
756                 (VM_ALLOC_NORMAL|VM_ALLOC_INTERRUPT|VM_ALLOC_SYSTEM));
757
758         /*
759          * The pager is allowed to eat deeper into the free page list.
760          */
761         if (curthread == pagethread)
762                 page_req |= VM_ALLOC_SYSTEM;
763
764         s = splvm();
765 loop:
766         if (vmstats.v_free_count > vmstats.v_free_reserved ||
767             ((page_req & VM_ALLOC_INTERRUPT) && vmstats.v_free_count > 0) ||
768             ((page_req & VM_ALLOC_SYSTEM) && vmstats.v_cache_count == 0 &&
769                 vmstats.v_free_count > vmstats.v_interrupt_free_min)
770         ) {
771                 /*
772                  * The free queue has sufficient free pages to take one out.
773                  */
774                 if (page_req & VM_ALLOC_ZERO)
775                         m = vm_page_select_free(object, pindex, TRUE);
776                 else
777                         m = vm_page_select_free(object, pindex, FALSE);
778         } else if (page_req & VM_ALLOC_NORMAL) {
779                 /*
780                  * Allocatable from the cache (non-interrupt only).  On
781                  * success, we must free the page and try again, thus
782                  * ensuring that vmstats.v_*_free_min counters are replenished.
783                  */
784 #ifdef INVARIANTS
785                 if (curthread->td_preempted) {
786                         printf("vm_page_alloc(): warning, attempt to allocate"
787                                 " cache page from preempting interrupt\n");
788                         m = NULL;
789                 } else {
790                         m = vm_page_select_cache(object, pindex);
791                 }
792 #else
793                 m = vm_page_select_cache(object, pindex);
794 #endif
795                 /*
796                  * On succuess move the page into the free queue and loop.
797                  */
798                 if (m != NULL) {
799                         KASSERT(m->dirty == 0,
800                             ("Found dirty cache page %p", m));
801                         vm_page_busy(m);
802                         vm_page_protect(m, VM_PROT_NONE);
803                         vm_page_free(m);
804                         goto loop;
805                 }
806
807                 /*
808                  * On failure return NULL
809                  */
810                 splx(s);
811 #if defined(DIAGNOSTIC)
812                 if (vmstats.v_cache_count > 0)
813                         printf("vm_page_alloc(NORMAL): missing pages on cache queue: %d\n", vmstats.v_cache_count);
814 #endif
815                 vm_pageout_deficit++;
816                 pagedaemon_wakeup();
817                 return (NULL);
818         } else {
819                 /*
820                  * No pages available, wakeup the pageout daemon and give up.
821                  */
822                 splx(s);
823                 vm_pageout_deficit++;
824                 pagedaemon_wakeup();
825                 return (NULL);
826         }
827
828         /*
829          * Good page found.
830          */
831         KASSERT(m != NULL, ("vm_page_alloc(): missing page on free queue\n"));
832
833         /*
834          * Remove from free queue
835          */
836         vm_page_unqueue_nowakeup(m);
837
838         /*
839          * Initialize structure.  Only the PG_ZERO flag is inherited.
840          */
841         if (m->flags & PG_ZERO) {
842                 vm_page_zero_count--;
843                 m->flags = PG_ZERO | PG_BUSY;
844         } else {
845                 m->flags = PG_BUSY;
846         }
847         m->wire_count = 0;
848         m->hold_count = 0;
849         m->act_count = 0;
850         m->busy = 0;
851         m->valid = 0;
852         KASSERT(m->dirty == 0, 
853                 ("vm_page_alloc: free/cache page %p was dirty", m));
854
855         /*
856          * vm_page_insert() is safe prior to the splx().  Note also that
857          * inserting a page here does not insert it into the pmap (which
858          * could cause us to block allocating memory).  We cannot block 
859          * anywhere.
860          */
861         vm_page_insert(m, object, pindex);
862
863         /*
864          * Don't wakeup too often - wakeup the pageout daemon when
865          * we would be nearly out of memory.
866          */
867         if (vm_paging_needed())
868                 pagedaemon_wakeup();
869
870         splx(s);
871         return (m);
872 }
873
874 /*
875  *      vm_wait:        (also see VM_WAIT macro)
876  *
877  *      Block until free pages are available for allocation
878  *      - Called in various places before memory allocations.
879  */
880
881 void
882 vm_wait(void)
883 {
884         int s;
885
886         s = splvm();
887         if (curthread == pagethread) {
888                 vm_pageout_pages_needed = 1;
889                 tsleep(&vm_pageout_pages_needed, 0, "VMWait", 0);
890         } else {
891                 if (!vm_pages_needed) {
892                         vm_pages_needed = 1;
893                         wakeup(&vm_pages_needed);
894                 }
895                 tsleep(&vmstats.v_free_count, 0, "vmwait", 0);
896         }
897         splx(s);
898 }
899
900 /*
901  *      vm_waitpfault:  (also see VM_WAITPFAULT macro)
902  *
903  *      Block until free pages are available for allocation
904  *      - Called only in vm_fault so that processes page faulting
905  *        can be easily tracked.
906  *      - Sleeps at a lower priority than vm_wait() so that vm_wait()ing
907  *        processes will be able to grab memory first.  Do not change
908  *        this balance without careful testing first.
909  */
910
911 void
912 vm_waitpfault(void)
913 {
914         int s;
915
916         s = splvm();
917         if (!vm_pages_needed) {
918                 vm_pages_needed = 1;
919                 wakeup(&vm_pages_needed);
920         }
921         tsleep(&vmstats.v_free_count, 0, "pfault", 0);
922         splx(s);
923 }
924
925 /*
926  *      vm_page_activate:
927  *
928  *      Put the specified page on the active list (if appropriate).
929  *      Ensure that act_count is at least ACT_INIT but do not otherwise
930  *      mess with it.
931  *
932  *      The page queues must be locked.
933  *      This routine may not block.
934  */
935 void
936 vm_page_activate(vm_page_t m)
937 {
938         int s;
939
940         s = splvm();
941         if (m->queue != PQ_ACTIVE) {
942                 if ((m->queue - m->pc) == PQ_CACHE)
943                         mycpu->gd_cnt.v_reactivated++;
944
945                 vm_page_unqueue(m);
946
947                 if (m->wire_count == 0 && (m->flags & PG_UNMANAGED) == 0) {
948                         m->queue = PQ_ACTIVE;
949                         vm_page_queues[PQ_ACTIVE].lcnt++;
950                         TAILQ_INSERT_TAIL(&vm_page_queues[PQ_ACTIVE].pl, m, pageq);
951                         if (m->act_count < ACT_INIT)
952                                 m->act_count = ACT_INIT;
953                         vmstats.v_active_count++;
954                 }
955         } else {
956                 if (m->act_count < ACT_INIT)
957                         m->act_count = ACT_INIT;
958         }
959
960         splx(s);
961 }
962
963 /*
964  *      vm_page_free_wakeup:
965  *
966  *      Helper routine for vm_page_free_toq() and vm_page_cache().  This
967  *      routine is called when a page has been added to the cache or free
968  *      queues.
969  *
970  *      This routine may not block.
971  *      This routine must be called at splvm()
972  */
973 static __inline void
974 vm_page_free_wakeup(void)
975 {
976         /*
977          * if pageout daemon needs pages, then tell it that there are
978          * some free.
979          */
980         if (vm_pageout_pages_needed &&
981             vmstats.v_cache_count + vmstats.v_free_count >= vmstats.v_pageout_free_min) {
982                 wakeup(&vm_pageout_pages_needed);
983                 vm_pageout_pages_needed = 0;
984         }
985         /*
986          * wakeup processes that are waiting on memory if we hit a
987          * high water mark. And wakeup scheduler process if we have
988          * lots of memory. this process will swapin processes.
989          */
990         if (vm_pages_needed && !vm_page_count_min()) {
991                 vm_pages_needed = 0;
992                 wakeup(&vmstats.v_free_count);
993         }
994 }
995
996 /*
997  *      vm_page_free_toq:
998  *
999  *      Returns the given page to the PQ_FREE list,
1000  *      disassociating it with any VM object.
1001  *
1002  *      Object and page must be locked prior to entry.
1003  *      This routine may not block.
1004  */
1005
1006 void
1007 vm_page_free_toq(vm_page_t m)
1008 {
1009         int s;
1010         struct vpgqueues *pq;
1011         vm_object_t object = m->object;
1012
1013         s = splvm();
1014
1015         mycpu->gd_cnt.v_tfree++;
1016
1017         if (m->busy || ((m->queue - m->pc) == PQ_FREE)) {
1018                 printf(
1019                 "vm_page_free: pindex(%lu), busy(%d), PG_BUSY(%d), hold(%d)\n",
1020                     (u_long)m->pindex, m->busy, (m->flags & PG_BUSY) ? 1 : 0,
1021                     m->hold_count);
1022                 if ((m->queue - m->pc) == PQ_FREE)
1023                         panic("vm_page_free: freeing free page");
1024                 else
1025                         panic("vm_page_free: freeing busy page");
1026         }
1027
1028         /*
1029          * unqueue, then remove page.  Note that we cannot destroy
1030          * the page here because we do not want to call the pager's
1031          * callback routine until after we've put the page on the
1032          * appropriate free queue.
1033          */
1034
1035         vm_page_unqueue_nowakeup(m);
1036         vm_page_remove(m);
1037
1038         /*
1039          * If fictitious remove object association and
1040          * return, otherwise delay object association removal.
1041          */
1042
1043         if ((m->flags & PG_FICTITIOUS) != 0) {
1044                 splx(s);
1045                 return;
1046         }
1047
1048         m->valid = 0;
1049         vm_page_undirty(m);
1050
1051         if (m->wire_count != 0) {
1052                 if (m->wire_count > 1) {
1053                         panic("vm_page_free: invalid wire count (%d), pindex: 0x%lx",
1054                                 m->wire_count, (long)m->pindex);
1055                 }
1056                 panic("vm_page_free: freeing wired page\n");
1057         }
1058
1059         /*
1060          * We used to free the underlying vnode if the object was empty,
1061          * but we no longer do that because it can block.  Instead, the
1062          * sync code is made responsible for the cleanup.
1063          */
1064 #if 0
1065         if (object && 
1066             (object->type == OBJT_VNODE) &&
1067             ((object->flags & OBJ_DEAD) == 0) &&
1068             object->handle != NULL
1069         ) {
1070                 struct vnode *vp = (struct vnode *)object->handle;
1071
1072                 if (vp && VSHOULDFREE(vp))
1073                         vfree(vp);
1074         }
1075 #endif
1076
1077         /*
1078          * Clear the UNMANAGED flag when freeing an unmanaged page.
1079          */
1080
1081         if (m->flags & PG_UNMANAGED) {
1082             m->flags &= ~PG_UNMANAGED;
1083         } else {
1084 #ifdef __alpha__
1085             pmap_page_is_free(m);
1086 #endif
1087         }
1088
1089         if (m->hold_count != 0) {
1090                 m->flags &= ~PG_ZERO;
1091                 m->queue = PQ_HOLD;
1092         } else
1093                 m->queue = PQ_FREE + m->pc;
1094         pq = &vm_page_queues[m->queue];
1095         pq->lcnt++;
1096         ++(*pq->cnt);
1097
1098         /*
1099          * Put zero'd pages on the end ( where we look for zero'd pages
1100          * first ) and non-zerod pages at the head.
1101          */
1102
1103         if (m->flags & PG_ZERO) {
1104                 TAILQ_INSERT_TAIL(&pq->pl, m, pageq);
1105                 ++vm_page_zero_count;
1106         } else {
1107                 TAILQ_INSERT_HEAD(&pq->pl, m, pageq);
1108         }
1109
1110         vm_page_free_wakeup();
1111
1112         splx(s);
1113 }
1114
1115 /*
1116  *      vm_page_unmanage:
1117  *
1118  *      Prevent PV management from being done on the page.  The page is
1119  *      removed from the paging queues as if it were wired, and as a 
1120  *      consequence of no longer being managed the pageout daemon will not
1121  *      touch it (since there is no way to locate the pte mappings for the
1122  *      page).  madvise() calls that mess with the pmap will also no longer
1123  *      operate on the page.
1124  *
1125  *      Beyond that the page is still reasonably 'normal'.  Freeing the page
1126  *      will clear the flag.
1127  *
1128  *      This routine is used by OBJT_PHYS objects - objects using unswappable
1129  *      physical memory as backing store rather then swap-backed memory and
1130  *      will eventually be extended to support 4MB unmanaged physical 
1131  *      mappings.
1132  */
1133
1134 void
1135 vm_page_unmanage(vm_page_t m)
1136 {
1137         int s;
1138
1139         s = splvm();
1140         if ((m->flags & PG_UNMANAGED) == 0) {
1141                 if (m->wire_count == 0)
1142                         vm_page_unqueue(m);
1143         }
1144         vm_page_flag_set(m, PG_UNMANAGED);
1145         splx(s);
1146 }
1147
1148 /*
1149  *      vm_page_wire:
1150  *
1151  *      Mark this page as wired down by yet
1152  *      another map, removing it from paging queues
1153  *      as necessary.
1154  *
1155  *      The page queues must be locked.
1156  *      This routine may not block.
1157  */
1158 void
1159 vm_page_wire(vm_page_t m)
1160 {
1161         int s;
1162
1163         /*
1164          * Only bump the wire statistics if the page is not already wired,
1165          * and only unqueue the page if it is on some queue (if it is unmanaged
1166          * it is already off the queues).
1167          */
1168         s = splvm();
1169         if (m->wire_count == 0) {
1170                 if ((m->flags & PG_UNMANAGED) == 0)
1171                         vm_page_unqueue(m);
1172                 vmstats.v_wire_count++;
1173         }
1174         m->wire_count++;
1175         KASSERT(m->wire_count != 0,
1176             ("vm_page_wire: wire_count overflow m=%p", m));
1177
1178         splx(s);
1179         vm_page_flag_set(m, PG_MAPPED);
1180 }
1181
1182 /*
1183  *      vm_page_unwire:
1184  *
1185  *      Release one wiring of this page, potentially
1186  *      enabling it to be paged again.
1187  *
1188  *      Many pages placed on the inactive queue should actually go
1189  *      into the cache, but it is difficult to figure out which.  What
1190  *      we do instead, if the inactive target is well met, is to put
1191  *      clean pages at the head of the inactive queue instead of the tail.
1192  *      This will cause them to be moved to the cache more quickly and
1193  *      if not actively re-referenced, freed more quickly.  If we just
1194  *      stick these pages at the end of the inactive queue, heavy filesystem
1195  *      meta-data accesses can cause an unnecessary paging load on memory bound 
1196  *      processes.  This optimization causes one-time-use metadata to be
1197  *      reused more quickly.
1198  *
1199  *      BUT, if we are in a low-memory situation we have no choice but to
1200  *      put clean pages on the cache queue.
1201  *
1202  *      A number of routines use vm_page_unwire() to guarantee that the page
1203  *      will go into either the inactive or active queues, and will NEVER
1204  *      be placed in the cache - for example, just after dirtying a page.
1205  *      dirty pages in the cache are not allowed.
1206  *
1207  *      The page queues must be locked.
1208  *      This routine may not block.
1209  */
1210 void
1211 vm_page_unwire(vm_page_t m, int activate)
1212 {
1213         int s;
1214
1215         s = splvm();
1216
1217         if (m->wire_count > 0) {
1218                 m->wire_count--;
1219                 if (m->wire_count == 0) {
1220                         vmstats.v_wire_count--;
1221                         if (m->flags & PG_UNMANAGED) {
1222                                 ;
1223                         } else if (activate) {
1224                                 TAILQ_INSERT_TAIL(&vm_page_queues[PQ_ACTIVE].pl, m, pageq);
1225                                 m->queue = PQ_ACTIVE;
1226                                 vm_page_queues[PQ_ACTIVE].lcnt++;
1227                                 vmstats.v_active_count++;
1228                         } else {
1229                                 vm_page_flag_clear(m, PG_WINATCFLS);
1230                                 TAILQ_INSERT_TAIL(&vm_page_queues[PQ_INACTIVE].pl, m, pageq);
1231                                 m->queue = PQ_INACTIVE;
1232                                 vm_page_queues[PQ_INACTIVE].lcnt++;
1233                                 vmstats.v_inactive_count++;
1234                         }
1235                 }
1236         } else {
1237                 panic("vm_page_unwire: invalid wire count: %d\n", m->wire_count);
1238         }
1239         splx(s);
1240 }
1241
1242
1243 /*
1244  * Move the specified page to the inactive queue.  If the page has
1245  * any associated swap, the swap is deallocated.
1246  *
1247  * Normally athead is 0 resulting in LRU operation.  athead is set
1248  * to 1 if we want this page to be 'as if it were placed in the cache',
1249  * except without unmapping it from the process address space.
1250  *
1251  * This routine may not block.
1252  */
1253 static __inline void
1254 _vm_page_deactivate(vm_page_t m, int athead)
1255 {
1256         int s;
1257
1258         /*
1259          * Ignore if already inactive.
1260          */
1261         if (m->queue == PQ_INACTIVE)
1262                 return;
1263
1264         s = splvm();
1265         if (m->wire_count == 0 && (m->flags & PG_UNMANAGED) == 0) {
1266                 if ((m->queue - m->pc) == PQ_CACHE)
1267                         mycpu->gd_cnt.v_reactivated++;
1268                 vm_page_flag_clear(m, PG_WINATCFLS);
1269                 vm_page_unqueue(m);
1270                 if (athead)
1271                         TAILQ_INSERT_HEAD(&vm_page_queues[PQ_INACTIVE].pl, m, pageq);
1272                 else
1273                         TAILQ_INSERT_TAIL(&vm_page_queues[PQ_INACTIVE].pl, m, pageq);
1274                 m->queue = PQ_INACTIVE;
1275                 vm_page_queues[PQ_INACTIVE].lcnt++;
1276                 vmstats.v_inactive_count++;
1277         }
1278         splx(s);
1279 }
1280
1281 void
1282 vm_page_deactivate(vm_page_t m)
1283 {
1284     _vm_page_deactivate(m, 0);
1285 }
1286
1287 /*
1288  * vm_page_try_to_cache:
1289  *
1290  * Returns 0 on failure, 1 on success
1291  */
1292 int
1293 vm_page_try_to_cache(vm_page_t m)
1294 {
1295         if (m->dirty || m->hold_count || m->busy || m->wire_count ||
1296             (m->flags & (PG_BUSY|PG_UNMANAGED))) {
1297                 return(0);
1298         }
1299         vm_page_test_dirty(m);
1300         if (m->dirty)
1301                 return(0);
1302         vm_page_cache(m);
1303         return(1);
1304 }
1305
1306 /*
1307  * vm_page_try_to_free()
1308  *
1309  *      Attempt to free the page.  If we cannot free it, we do nothing.
1310  *      1 is returned on success, 0 on failure.
1311  */
1312
1313 int
1314 vm_page_try_to_free(vm_page_t m)
1315 {
1316         if (m->dirty || m->hold_count || m->busy || m->wire_count ||
1317             (m->flags & (PG_BUSY|PG_UNMANAGED))) {
1318                 return(0);
1319         }
1320         vm_page_test_dirty(m);
1321         if (m->dirty)
1322                 return(0);
1323         vm_page_busy(m);
1324         vm_page_protect(m, VM_PROT_NONE);
1325         vm_page_free(m);
1326         return(1);
1327 }
1328
1329
1330 /*
1331  * vm_page_cache
1332  *
1333  * Put the specified page onto the page cache queue (if appropriate).
1334  *
1335  * This routine may not block.
1336  */
1337 void
1338 vm_page_cache(vm_page_t m)
1339 {
1340         int s;
1341
1342         if ((m->flags & (PG_BUSY|PG_UNMANAGED)) || m->busy ||
1343                         m->wire_count || m->hold_count) {
1344                 printf("vm_page_cache: attempting to cache busy/held page\n");
1345                 return;
1346         }
1347         if ((m->queue - m->pc) == PQ_CACHE)
1348                 return;
1349
1350         /*
1351          * Remove all pmaps and indicate that the page is not
1352          * writeable or mapped.
1353          */
1354
1355         vm_page_protect(m, VM_PROT_NONE);
1356         if (m->dirty != 0) {
1357                 panic("vm_page_cache: caching a dirty page, pindex: %ld",
1358                         (long)m->pindex);
1359         }
1360         s = splvm();
1361         vm_page_unqueue_nowakeup(m);
1362         m->queue = PQ_CACHE + m->pc;
1363         vm_page_queues[m->queue].lcnt++;
1364         TAILQ_INSERT_TAIL(&vm_page_queues[m->queue].pl, m, pageq);
1365         vmstats.v_cache_count++;
1366         vm_page_free_wakeup();
1367         splx(s);
1368 }
1369
1370 /*
1371  * vm_page_dontneed
1372  *
1373  *      Cache, deactivate, or do nothing as appropriate.  This routine
1374  *      is typically used by madvise() MADV_DONTNEED.
1375  *
1376  *      Generally speaking we want to move the page into the cache so
1377  *      it gets reused quickly.  However, this can result in a silly syndrome
1378  *      due to the page recycling too quickly.  Small objects will not be
1379  *      fully cached.  On the otherhand, if we move the page to the inactive
1380  *      queue we wind up with a problem whereby very large objects 
1381  *      unnecessarily blow away our inactive and cache queues.
1382  *
1383  *      The solution is to move the pages based on a fixed weighting.  We
1384  *      either leave them alone, deactivate them, or move them to the cache,
1385  *      where moving them to the cache has the highest weighting.
1386  *      By forcing some pages into other queues we eventually force the
1387  *      system to balance the queues, potentially recovering other unrelated
1388  *      space from active.  The idea is to not force this to happen too
1389  *      often.
1390  */
1391
1392 void
1393 vm_page_dontneed(vm_page_t m)
1394 {
1395         static int dnweight;
1396         int dnw;
1397         int head;
1398
1399         dnw = ++dnweight;
1400
1401         /*
1402          * occassionally leave the page alone
1403          */
1404
1405         if ((dnw & 0x01F0) == 0 ||
1406             m->queue == PQ_INACTIVE || 
1407             m->queue - m->pc == PQ_CACHE
1408         ) {
1409                 if (m->act_count >= ACT_INIT)
1410                         --m->act_count;
1411                 return;
1412         }
1413
1414         if (m->dirty == 0)
1415                 vm_page_test_dirty(m);
1416
1417         if (m->dirty || (dnw & 0x0070) == 0) {
1418                 /*
1419                  * Deactivate the page 3 times out of 32.
1420                  */
1421                 head = 0;
1422         } else {
1423                 /*
1424                  * Cache the page 28 times out of every 32.  Note that
1425                  * the page is deactivated instead of cached, but placed
1426                  * at the head of the queue instead of the tail.
1427                  */
1428                 head = 1;
1429         }
1430         _vm_page_deactivate(m, head);
1431 }
1432
1433 /*
1434  * Grab a page, waiting until we are waken up due to the page
1435  * changing state.  We keep on waiting, if the page continues
1436  * to be in the object.  If the page doesn't exist, allocate it.
1437  *
1438  * If VM_ALLOC_RETRY is specified VM_ALLOC_NORMAL must also be specified.
1439  *
1440  * This routine may block.
1441  */
1442 vm_page_t
1443 vm_page_grab(vm_object_t object, vm_pindex_t pindex, int allocflags)
1444 {
1445         vm_page_t m;
1446         int s, generation;
1447
1448         KKASSERT(allocflags &
1449                 (VM_ALLOC_NORMAL|VM_ALLOC_INTERRUPT|VM_ALLOC_SYSTEM));
1450 retrylookup:
1451         if ((m = vm_page_lookup(object, pindex)) != NULL) {
1452                 if (m->busy || (m->flags & PG_BUSY)) {
1453                         generation = object->generation;
1454
1455                         s = splvm();
1456                         while ((object->generation == generation) &&
1457                                         (m->busy || (m->flags & PG_BUSY))) {
1458                                 vm_page_flag_set(m, PG_WANTED | PG_REFERENCED);
1459                                 tsleep(m, 0, "pgrbwt", 0);
1460                                 if ((allocflags & VM_ALLOC_RETRY) == 0) {
1461                                         splx(s);
1462                                         return NULL;
1463                                 }
1464                         }
1465                         splx(s);
1466                         goto retrylookup;
1467                 } else {
1468                         vm_page_busy(m);
1469                         return m;
1470                 }
1471         }
1472
1473         m = vm_page_alloc(object, pindex, allocflags & ~VM_ALLOC_RETRY);
1474         if (m == NULL) {
1475                 VM_WAIT;
1476                 if ((allocflags & VM_ALLOC_RETRY) == 0)
1477                         return NULL;
1478                 goto retrylookup;
1479         }
1480
1481         return m;
1482 }
1483
1484 /*
1485  * Mapping function for valid bits or for dirty bits in
1486  * a page.  May not block.
1487  *
1488  * Inputs are required to range within a page.
1489  */
1490
1491 __inline int
1492 vm_page_bits(int base, int size)
1493 {
1494         int first_bit;
1495         int last_bit;
1496
1497         KASSERT(
1498             base + size <= PAGE_SIZE,
1499             ("vm_page_bits: illegal base/size %d/%d", base, size)
1500         );
1501
1502         if (size == 0)          /* handle degenerate case */
1503                 return(0);
1504
1505         first_bit = base >> DEV_BSHIFT;
1506         last_bit = (base + size - 1) >> DEV_BSHIFT;
1507
1508         return ((2 << last_bit) - (1 << first_bit));
1509 }
1510
1511 /*
1512  *      vm_page_set_validclean:
1513  *
1514  *      Sets portions of a page valid and clean.  The arguments are expected
1515  *      to be DEV_BSIZE aligned but if they aren't the bitmap is inclusive
1516  *      of any partial chunks touched by the range.  The invalid portion of
1517  *      such chunks will be zero'd.
1518  *
1519  *      This routine may not block.
1520  *
1521  *      (base + size) must be less then or equal to PAGE_SIZE.
1522  */
1523 void
1524 vm_page_set_validclean(vm_page_t m, int base, int size)
1525 {
1526         int pagebits;
1527         int frag;
1528         int endoff;
1529
1530         if (size == 0)  /* handle degenerate case */
1531                 return;
1532
1533         /*
1534          * If the base is not DEV_BSIZE aligned and the valid
1535          * bit is clear, we have to zero out a portion of the
1536          * first block.
1537          */
1538
1539         if ((frag = base & ~(DEV_BSIZE - 1)) != base &&
1540             (m->valid & (1 << (base >> DEV_BSHIFT))) == 0
1541         ) {
1542                 pmap_zero_page_area(
1543                     VM_PAGE_TO_PHYS(m),
1544                     frag,
1545                     base - frag
1546                 );
1547         }
1548
1549         /*
1550          * If the ending offset is not DEV_BSIZE aligned and the 
1551          * valid bit is clear, we have to zero out a portion of
1552          * the last block.
1553          */
1554
1555         endoff = base + size;
1556
1557         if ((frag = endoff & ~(DEV_BSIZE - 1)) != endoff &&
1558             (m->valid & (1 << (endoff >> DEV_BSHIFT))) == 0
1559         ) {
1560                 pmap_zero_page_area(
1561                     VM_PAGE_TO_PHYS(m),
1562                     endoff,
1563                     DEV_BSIZE - (endoff & (DEV_BSIZE - 1))
1564                 );
1565         }
1566
1567         /*
1568          * Set valid, clear dirty bits.  If validating the entire
1569          * page we can safely clear the pmap modify bit.  We also
1570          * use this opportunity to clear the PG_NOSYNC flag.  If a process
1571          * takes a write fault on a MAP_NOSYNC memory area the flag will
1572          * be set again.
1573          *
1574          * We set valid bits inclusive of any overlap, but we can only
1575          * clear dirty bits for DEV_BSIZE chunks that are fully within
1576          * the range.
1577          */
1578
1579         pagebits = vm_page_bits(base, size);
1580         m->valid |= pagebits;
1581 #if 0   /* NOT YET */
1582         if ((frag = base & (DEV_BSIZE - 1)) != 0) {
1583                 frag = DEV_BSIZE - frag;
1584                 base += frag;
1585                 size -= frag;
1586                 if (size < 0)
1587                     size = 0;
1588         }
1589         pagebits = vm_page_bits(base, size & (DEV_BSIZE - 1));
1590 #endif
1591         m->dirty &= ~pagebits;
1592         if (base == 0 && size == PAGE_SIZE) {
1593                 pmap_clear_modify(m);
1594                 vm_page_flag_clear(m, PG_NOSYNC);
1595         }
1596 }
1597
1598 #if 0
1599
1600 void
1601 vm_page_set_dirty(vm_page_t m, int base, int size)
1602 {
1603         m->dirty |= vm_page_bits(base, size);
1604 }
1605
1606 #endif
1607
1608 void
1609 vm_page_clear_dirty(vm_page_t m, int base, int size)
1610 {
1611         m->dirty &= ~vm_page_bits(base, size);
1612 }
1613
1614 /*
1615  *      vm_page_set_invalid:
1616  *
1617  *      Invalidates DEV_BSIZE'd chunks within a page.  Both the
1618  *      valid and dirty bits for the effected areas are cleared.
1619  *
1620  *      May not block.
1621  */
1622 void
1623 vm_page_set_invalid(vm_page_t m, int base, int size)
1624 {
1625         int bits;
1626
1627         bits = vm_page_bits(base, size);
1628         m->valid &= ~bits;
1629         m->dirty &= ~bits;
1630         m->object->generation++;
1631 }
1632
1633 /*
1634  * vm_page_zero_invalid()
1635  *
1636  *      The kernel assumes that the invalid portions of a page contain 
1637  *      garbage, but such pages can be mapped into memory by user code.
1638  *      When this occurs, we must zero out the non-valid portions of the
1639  *      page so user code sees what it expects.
1640  *
1641  *      Pages are most often semi-valid when the end of a file is mapped 
1642  *      into memory and the file's size is not page aligned.
1643  */
1644
1645 void
1646 vm_page_zero_invalid(vm_page_t m, boolean_t setvalid)
1647 {
1648         int b;
1649         int i;
1650
1651         /*
1652          * Scan the valid bits looking for invalid sections that
1653          * must be zerod.  Invalid sub-DEV_BSIZE'd areas ( where the
1654          * valid bit may be set ) have already been zerod by
1655          * vm_page_set_validclean().
1656          */
1657
1658         for (b = i = 0; i <= PAGE_SIZE / DEV_BSIZE; ++i) {
1659                 if (i == (PAGE_SIZE / DEV_BSIZE) || 
1660                     (m->valid & (1 << i))
1661                 ) {
1662                         if (i > b) {
1663                                 pmap_zero_page_area(
1664                                     VM_PAGE_TO_PHYS(m), 
1665                                     b << DEV_BSHIFT,
1666                                     (i - b) << DEV_BSHIFT
1667                                 );
1668                         }
1669                         b = i + 1;
1670                 }
1671         }
1672
1673         /*
1674          * setvalid is TRUE when we can safely set the zero'd areas
1675          * as being valid.  We can do this if there are no cache consistency
1676          * issues.  e.g. it is ok to do with UFS, but not ok to do with NFS.
1677          */
1678
1679         if (setvalid)
1680                 m->valid = VM_PAGE_BITS_ALL;
1681 }
1682
1683 /*
1684  *      vm_page_is_valid:
1685  *
1686  *      Is (partial) page valid?  Note that the case where size == 0
1687  *      will return FALSE in the degenerate case where the page is
1688  *      entirely invalid, and TRUE otherwise.
1689  *
1690  *      May not block.
1691  */
1692
1693 int
1694 vm_page_is_valid(vm_page_t m, int base, int size)
1695 {
1696         int bits = vm_page_bits(base, size);
1697
1698         if (m->valid && ((m->valid & bits) == bits))
1699                 return 1;
1700         else
1701                 return 0;
1702 }
1703
1704 /*
1705  * update dirty bits from pmap/mmu.  May not block.
1706  */
1707
1708 void
1709 vm_page_test_dirty(vm_page_t m)
1710 {
1711         if ((m->dirty != VM_PAGE_BITS_ALL) && pmap_is_modified(m)) {
1712                 vm_page_dirty(m);
1713         }
1714 }
1715
1716 #include "opt_ddb.h"
1717 #ifdef DDB
1718 #include <sys/kernel.h>
1719
1720 #include <ddb/ddb.h>
1721
1722 DB_SHOW_COMMAND(page, vm_page_print_page_info)
1723 {
1724         db_printf("vmstats.v_free_count: %d\n", vmstats.v_free_count);
1725         db_printf("vmstats.v_cache_count: %d\n", vmstats.v_cache_count);
1726         db_printf("vmstats.v_inactive_count: %d\n", vmstats.v_inactive_count);
1727         db_printf("vmstats.v_active_count: %d\n", vmstats.v_active_count);
1728         db_printf("vmstats.v_wire_count: %d\n", vmstats.v_wire_count);
1729         db_printf("vmstats.v_free_reserved: %d\n", vmstats.v_free_reserved);
1730         db_printf("vmstats.v_free_min: %d\n", vmstats.v_free_min);
1731         db_printf("vmstats.v_free_target: %d\n", vmstats.v_free_target);
1732         db_printf("vmstats.v_cache_min: %d\n", vmstats.v_cache_min);
1733         db_printf("vmstats.v_inactive_target: %d\n", vmstats.v_inactive_target);
1734 }
1735
1736 DB_SHOW_COMMAND(pageq, vm_page_print_pageq_info)
1737 {
1738         int i;
1739         db_printf("PQ_FREE:");
1740         for(i=0;i<PQ_L2_SIZE;i++) {
1741                 db_printf(" %d", vm_page_queues[PQ_FREE + i].lcnt);
1742         }
1743         db_printf("\n");
1744                 
1745         db_printf("PQ_CACHE:");
1746         for(i=0;i<PQ_L2_SIZE;i++) {
1747                 db_printf(" %d", vm_page_queues[PQ_CACHE + i].lcnt);
1748         }
1749         db_printf("\n");
1750
1751         db_printf("PQ_ACTIVE: %d, PQ_INACTIVE: %d\n",
1752                 vm_page_queues[PQ_ACTIVE].lcnt,
1753                 vm_page_queues[PQ_INACTIVE].lcnt);
1754 }
1755 #endif /* DDB */