kernel - reformulate some of the pmap code to adhere to the new rules
[dragonfly.git] / sys / vm / vm_page.c
1 /*
2  * (MPSAFE)
3  *
4  * Copyright (c) 1991 Regents of the University of California.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to Berkeley by
8  * The Mach Operating System project at Carnegie-Mellon University.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      from: @(#)vm_page.c     7.4 (Berkeley) 5/7/91
35  * $FreeBSD: src/sys/vm/vm_page.c,v 1.147.2.18 2002/03/10 05:03:19 alc Exp $
36  */
37
38 /*
39  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
40  * All rights reserved.
41  *
42  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
43  *
44  * Permission to use, copy, modify and distribute this software and
45  * its documentation is hereby granted, provided that both the copyright
46  * notice and this permission notice appear in all copies of the
47  * software, derivative works or modified versions, and any portions
48  * thereof, and that both notices appear in supporting documentation.
49  *
50  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
51  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
52  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
53  *
54  * Carnegie Mellon requests users of this software to return to
55  *
56  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
57  *  School of Computer Science
58  *  Carnegie Mellon University
59  *  Pittsburgh PA 15213-3890
60  *
61  * any improvements or extensions that they make and grant Carnegie the
62  * rights to redistribute these changes.
63  */
64 /*
65  * Resident memory management module.  The module manipulates 'VM pages'.
66  * A VM page is the core building block for memory management.
67  */
68
69 #include <sys/param.h>
70 #include <sys/systm.h>
71 #include <sys/malloc.h>
72 #include <sys/proc.h>
73 #include <sys/vmmeter.h>
74 #include <sys/vnode.h>
75 #include <sys/kernel.h>
76
77 #include <vm/vm.h>
78 #include <vm/vm_param.h>
79 #include <sys/lock.h>
80 #include <vm/vm_kern.h>
81 #include <vm/pmap.h>
82 #include <vm/vm_map.h>
83 #include <vm/vm_object.h>
84 #include <vm/vm_page.h>
85 #include <vm/vm_pageout.h>
86 #include <vm/vm_pager.h>
87 #include <vm/vm_extern.h>
88 #include <vm/swap_pager.h>
89
90 #include <machine/inttypes.h>
91 #include <machine/md_var.h>
92
93 #include <vm/vm_page2.h>
94 #include <sys/spinlock2.h>
95
96 #define VMACTION_HSIZE  256
97 #define VMACTION_HMASK  (VMACTION_HSIZE - 1)
98
99 static void vm_page_queue_init(void);
100 static void vm_page_free_wakeup(void);
101 static vm_page_t vm_page_select_cache(u_short pg_color);
102 static vm_page_t _vm_page_list_find2(int basequeue, int index);
103 static void _vm_page_deactivate_locked(vm_page_t m, int athead);
104
105 /*
106  * Array of tailq lists
107  */
108 __cachealign struct vpgqueues vm_page_queues[PQ_COUNT];
109
110 LIST_HEAD(vm_page_action_list, vm_page_action);
111 struct vm_page_action_list      action_list[VMACTION_HSIZE];
112 static volatile int vm_pages_waiting;
113
114
115 RB_GENERATE2(vm_page_rb_tree, vm_page, rb_entry, rb_vm_page_compare,
116              vm_pindex_t, pindex);
117
118 static void
119 vm_page_queue_init(void) 
120 {
121         int i;
122
123         for (i = 0; i < PQ_L2_SIZE; i++)
124                 vm_page_queues[PQ_FREE+i].cnt = &vmstats.v_free_count;
125         for (i = 0; i < PQ_L2_SIZE; i++)
126                 vm_page_queues[PQ_CACHE+i].cnt = &vmstats.v_cache_count;
127         for (i = 0; i < PQ_L2_SIZE; i++)
128                 vm_page_queues[PQ_INACTIVE+i].cnt = &vmstats.v_inactive_count;
129         for (i = 0; i < PQ_L2_SIZE; i++)
130                 vm_page_queues[PQ_ACTIVE+i].cnt = &vmstats.v_active_count;
131         for (i = 0; i < PQ_L2_SIZE; i++)
132                 vm_page_queues[PQ_HOLD+i].cnt = &vmstats.v_active_count;
133         /* PQ_NONE has no queue */
134
135         for (i = 0; i < PQ_COUNT; i++) {
136                 TAILQ_INIT(&vm_page_queues[i].pl);
137                 spin_init(&vm_page_queues[i].spin);
138         }
139
140         for (i = 0; i < VMACTION_HSIZE; i++)
141                 LIST_INIT(&action_list[i]);
142 }
143
144 /*
145  * note: place in initialized data section?  Is this necessary?
146  */
147 long first_page = 0;
148 int vm_page_array_size = 0;
149 int vm_page_zero_count = 0;
150 vm_page_t vm_page_array = 0;
151
152 /*
153  * (low level boot)
154  *
155  * Sets the page size, perhaps based upon the memory size.
156  * Must be called before any use of page-size dependent functions.
157  */
158 void
159 vm_set_page_size(void)
160 {
161         if (vmstats.v_page_size == 0)
162                 vmstats.v_page_size = PAGE_SIZE;
163         if (((vmstats.v_page_size - 1) & vmstats.v_page_size) != 0)
164                 panic("vm_set_page_size: page size not a power of two");
165 }
166
167 /*
168  * (low level boot)
169  *
170  * Add a new page to the freelist for use by the system.  New pages
171  * are added to both the head and tail of the associated free page
172  * queue in a bottom-up fashion, so both zero'd and non-zero'd page
173  * requests pull 'recent' adds (higher physical addresses) first.
174  *
175  * Must be called in a critical section.
176  */
177 static vm_page_t
178 vm_add_new_page(vm_paddr_t pa)
179 {
180         struct vpgqueues *vpq;
181         vm_page_t m;
182
183         m = PHYS_TO_VM_PAGE(pa);
184         m->phys_addr = pa;
185         m->flags = 0;
186         m->pc = (pa >> PAGE_SHIFT) & PQ_L2_MASK;
187 #ifdef SMP
188         /*
189          * Twist for cpu localization instead of page coloring.
190          */
191         m->pc ^= ((pa >> PAGE_SHIFT) / PQ_L2_SIZE) & PQ_L2_MASK;
192         m->pc ^= ((pa >> PAGE_SHIFT) / (PQ_L2_SIZE * PQ_L2_SIZE)) & PQ_L2_MASK;
193 #endif
194         m->queue = m->pc + PQ_FREE;
195         KKASSERT(m->dirty == 0);
196
197         atomic_add_int(&vmstats.v_page_count, 1);
198         atomic_add_int(&vmstats.v_free_count, 1);
199         vpq = &vm_page_queues[m->queue];
200         if (vpq->flipflop)
201                 TAILQ_INSERT_TAIL(&vpq->pl, m, pageq);
202         else
203                 TAILQ_INSERT_HEAD(&vpq->pl, m, pageq);
204         vpq->flipflop = 1 - vpq->flipflop;
205         ++vpq->lcnt;
206
207         return (m);
208 }
209
210 /*
211  * (low level boot)
212  *
213  * Initializes the resident memory module.
214  *
215  * Preallocates memory for critical VM structures and arrays prior to
216  * kernel_map becoming available.
217  *
218  * Memory is allocated from (virtual2_start, virtual2_end) if available,
219  * otherwise memory is allocated from (virtual_start, virtual_end).
220  *
221  * On x86-64 (virtual_start, virtual_end) is only 2GB and may not be
222  * large enough to hold vm_page_array & other structures for machines with
223  * large amounts of ram, so we want to use virtual2* when available.
224  */
225 void
226 vm_page_startup(void)
227 {
228         vm_offset_t vaddr = virtual2_start ? virtual2_start : virtual_start;
229         vm_offset_t mapped;
230         vm_size_t npages;
231         vm_paddr_t page_range;
232         vm_paddr_t new_end;
233         int i;
234         vm_paddr_t pa;
235         int nblocks;
236         vm_paddr_t last_pa;
237         vm_paddr_t end;
238         vm_paddr_t biggestone, biggestsize;
239         vm_paddr_t total;
240
241         total = 0;
242         biggestsize = 0;
243         biggestone = 0;
244         nblocks = 0;
245         vaddr = round_page(vaddr);
246
247         for (i = 0; phys_avail[i + 1]; i += 2) {
248                 phys_avail[i] = round_page64(phys_avail[i]);
249                 phys_avail[i + 1] = trunc_page64(phys_avail[i + 1]);
250         }
251
252         for (i = 0; phys_avail[i + 1]; i += 2) {
253                 vm_paddr_t size = phys_avail[i + 1] - phys_avail[i];
254
255                 if (size > biggestsize) {
256                         biggestone = i;
257                         biggestsize = size;
258                 }
259                 ++nblocks;
260                 total += size;
261         }
262
263         end = phys_avail[biggestone+1];
264         end = trunc_page(end);
265
266         /*
267          * Initialize the queue headers for the free queue, the active queue
268          * and the inactive queue.
269          */
270
271         vm_page_queue_init();
272
273 #if !defined(_KERNEL_VIRTUAL)
274         /*
275          * VKERNELs don't support minidumps and as such don't need
276          * vm_page_dump
277          *
278          * Allocate a bitmap to indicate that a random physical page
279          * needs to be included in a minidump.
280          *
281          * The amd64 port needs this to indicate which direct map pages
282          * need to be dumped, via calls to dump_add_page()/dump_drop_page().
283          *
284          * However, i386 still needs this workspace internally within the
285          * minidump code.  In theory, they are not needed on i386, but are
286          * included should the sf_buf code decide to use them.
287          */
288         page_range = phys_avail[(nblocks - 1) * 2 + 1] / PAGE_SIZE;
289         vm_page_dump_size = round_page(roundup2(page_range, NBBY) / NBBY);
290         end -= vm_page_dump_size;
291         vm_page_dump = (void *)pmap_map(&vaddr, end, end + vm_page_dump_size,
292             VM_PROT_READ | VM_PROT_WRITE);
293         bzero((void *)vm_page_dump, vm_page_dump_size);
294 #endif
295
296         /*
297          * Compute the number of pages of memory that will be available for
298          * use (taking into account the overhead of a page structure per
299          * page).
300          */
301         first_page = phys_avail[0] / PAGE_SIZE;
302         page_range = phys_avail[(nblocks - 1) * 2 + 1] / PAGE_SIZE - first_page;
303         npages = (total - (page_range * sizeof(struct vm_page))) / PAGE_SIZE;
304
305         /*
306          * Initialize the mem entry structures now, and put them in the free
307          * queue.
308          */
309         new_end = trunc_page(end - page_range * sizeof(struct vm_page));
310         mapped = pmap_map(&vaddr, new_end, end,
311             VM_PROT_READ | VM_PROT_WRITE);
312         vm_page_array = (vm_page_t)mapped;
313
314 #if defined(__x86_64__) && !defined(_KERNEL_VIRTUAL)
315         /*
316          * since pmap_map on amd64 returns stuff out of a direct-map region,
317          * we have to manually add these pages to the minidump tracking so
318          * that they can be dumped, including the vm_page_array.
319          */
320         for (pa = new_end; pa < phys_avail[biggestone + 1]; pa += PAGE_SIZE)
321                 dump_add_page(pa);
322 #endif
323
324         /*
325          * Clear all of the page structures
326          */
327         bzero((caddr_t) vm_page_array, page_range * sizeof(struct vm_page));
328         vm_page_array_size = page_range;
329
330         /*
331          * Construct the free queue(s) in ascending order (by physical
332          * address) so that the first 16MB of physical memory is allocated
333          * last rather than first.  On large-memory machines, this avoids
334          * the exhaustion of low physical memory before isa_dmainit has run.
335          */
336         vmstats.v_page_count = 0;
337         vmstats.v_free_count = 0;
338         for (i = 0; phys_avail[i + 1] && npages > 0; i += 2) {
339                 pa = phys_avail[i];
340                 if (i == biggestone)
341                         last_pa = new_end;
342                 else
343                         last_pa = phys_avail[i + 1];
344                 while (pa < last_pa && npages-- > 0) {
345                         vm_add_new_page(pa);
346                         pa += PAGE_SIZE;
347                 }
348         }
349         if (virtual2_start)
350                 virtual2_start = vaddr;
351         else
352                 virtual_start = vaddr;
353 }
354
355 /*
356  * Scan comparison function for Red-Black tree scans.  An inclusive
357  * (start,end) is expected.  Other fields are not used.
358  */
359 int
360 rb_vm_page_scancmp(struct vm_page *p, void *data)
361 {
362         struct rb_vm_page_scan_info *info = data;
363
364         if (p->pindex < info->start_pindex)
365                 return(-1);
366         if (p->pindex > info->end_pindex)
367                 return(1);
368         return(0);
369 }
370
371 int
372 rb_vm_page_compare(struct vm_page *p1, struct vm_page *p2)
373 {
374         if (p1->pindex < p2->pindex)
375                 return(-1);
376         if (p1->pindex > p2->pindex)
377                 return(1);
378         return(0);
379 }
380
381 /*
382  * Each page queue has its own spin lock, which is fairly optimal for
383  * allocating and freeing pages at least.
384  *
385  * The caller must hold the vm_page_spin_lock() before locking a vm_page's
386  * queue spinlock via this function.  Also note that m->queue cannot change
387  * unless both the page and queue are locked.
388  */
389 static __inline
390 void
391 _vm_page_queue_spin_lock(vm_page_t m)
392 {
393         u_short queue;
394
395         queue = m->queue;
396         if (queue != PQ_NONE) {
397                 spin_lock(&vm_page_queues[queue].spin);
398                 KKASSERT(queue == m->queue);
399         }
400 }
401
402 static __inline
403 void
404 _vm_page_queue_spin_unlock(vm_page_t m)
405 {
406         u_short queue;
407
408         queue = m->queue;
409         cpu_ccfence();
410         if (queue != PQ_NONE)
411                 spin_unlock(&vm_page_queues[queue].spin);
412 }
413
414 static __inline
415 void
416 _vm_page_queues_spin_lock(u_short queue)
417 {
418         cpu_ccfence();
419         if (queue != PQ_NONE)
420                 spin_lock(&vm_page_queues[queue].spin);
421 }
422
423
424 static __inline
425 void
426 _vm_page_queues_spin_unlock(u_short queue)
427 {
428         cpu_ccfence();
429         if (queue != PQ_NONE)
430                 spin_unlock(&vm_page_queues[queue].spin);
431 }
432
433 void
434 vm_page_queue_spin_lock(vm_page_t m)
435 {
436         _vm_page_queue_spin_lock(m);
437 }
438
439 void
440 vm_page_queues_spin_lock(u_short queue)
441 {
442         _vm_page_queues_spin_lock(queue);
443 }
444
445 void
446 vm_page_queue_spin_unlock(vm_page_t m)
447 {
448         _vm_page_queue_spin_unlock(m);
449 }
450
451 void
452 vm_page_queues_spin_unlock(u_short queue)
453 {
454         _vm_page_queues_spin_unlock(queue);
455 }
456
457 /*
458  * This locks the specified vm_page and its queue in the proper order
459  * (page first, then queue).  The queue may change so the caller must
460  * recheck on return.
461  */
462 static __inline
463 void
464 _vm_page_and_queue_spin_lock(vm_page_t m)
465 {
466         vm_page_spin_lock(m);
467         _vm_page_queue_spin_lock(m);
468 }
469
470 static __inline
471 void
472 _vm_page_and_queue_spin_unlock(vm_page_t m)
473 {
474         _vm_page_queues_spin_unlock(m->queue);
475         vm_page_spin_unlock(m);
476 }
477
478 void
479 vm_page_and_queue_spin_unlock(vm_page_t m)
480 {
481         _vm_page_and_queue_spin_unlock(m);
482 }
483
484 void
485 vm_page_and_queue_spin_lock(vm_page_t m)
486 {
487         _vm_page_and_queue_spin_lock(m);
488 }
489
490 /*
491  * Helper function removes vm_page from its current queue.
492  * Returns the base queue the page used to be on.
493  *
494  * The vm_page and the queue must be spinlocked.
495  * This function will unlock the queue but leave the page spinlocked.
496  */
497 static __inline u_short
498 _vm_page_rem_queue_spinlocked(vm_page_t m)
499 {
500         struct vpgqueues *pq;
501         u_short queue;
502
503         queue = m->queue;
504         if (queue != PQ_NONE) {
505                 pq = &vm_page_queues[queue];
506                 TAILQ_REMOVE(&pq->pl, m, pageq);
507                 atomic_add_int(pq->cnt, -1);
508                 pq->lcnt--;
509                 m->queue = PQ_NONE;
510                 vm_page_queues_spin_unlock(queue);
511                 if ((queue - m->pc) == PQ_FREE && (m->flags & PG_ZERO))
512                         atomic_subtract_int(&vm_page_zero_count, 1);
513                 if ((queue - m->pc) == PQ_CACHE || (queue - m->pc) == PQ_FREE)
514                         return (queue - m->pc);
515         }
516         return queue;
517 }
518
519 /*
520  * Helper function places the vm_page on the specified queue.
521  *
522  * The vm_page must be spinlocked.
523  * This function will return with both the page and the queue locked.
524  */
525 static __inline void
526 _vm_page_add_queue_spinlocked(vm_page_t m, u_short queue, int athead)
527 {
528         struct vpgqueues *pq;
529
530         KKASSERT(m->queue == PQ_NONE);
531
532         if (queue != PQ_NONE) {
533                 vm_page_queues_spin_lock(queue);
534                 pq = &vm_page_queues[queue];
535                 ++pq->lcnt;
536                 atomic_add_int(pq->cnt, 1);
537                 m->queue = queue;
538
539                 /*
540                  * Put zero'd pages on the end ( where we look for zero'd pages
541                  * first ) and non-zerod pages at the head.
542                  */
543                 if (queue - m->pc == PQ_FREE) {
544                         if (m->flags & PG_ZERO) {
545                                 TAILQ_INSERT_TAIL(&pq->pl, m, pageq);
546                                 atomic_add_int(&vm_page_zero_count, 1);
547                         } else {
548                                 TAILQ_INSERT_HEAD(&pq->pl, m, pageq);
549                         }
550                 } else if (athead) {
551                         TAILQ_INSERT_HEAD(&pq->pl, m, pageq);
552                 } else {
553                         TAILQ_INSERT_TAIL(&pq->pl, m, pageq);
554                 }
555                 /* leave the queue spinlocked */
556         }
557 }
558
559 /*
560  * Wait until page is no longer PG_BUSY or (if also_m_busy is TRUE)
561  * m->busy is zero.  Returns TRUE if it had to sleep, FALSE if we
562  * did not.  Only one sleep call will be made before returning.
563  *
564  * This function does NOT busy the page and on return the page is not
565  * guaranteed to be available.
566  */
567 void
568 vm_page_sleep_busy(vm_page_t m, int also_m_busy, const char *msg)
569 {
570         u_int32_t flags;
571
572         for (;;) {
573                 flags = m->flags;
574                 cpu_ccfence();
575
576                 if ((flags & PG_BUSY) == 0 &&
577                     (also_m_busy == 0 || (flags & PG_SBUSY) == 0)) {
578                         break;
579                 }
580                 tsleep_interlock(m, 0);
581                 if (atomic_cmpset_int(&m->flags, flags,
582                                       flags | PG_WANTED | PG_REFERENCED)) {
583                         tsleep(m, PINTERLOCKED, msg, 0);
584                         break;
585                 }
586         }
587 }
588
589 /*
590  * Wait until PG_BUSY can be set, then set it.  If also_m_busy is TRUE we
591  * also wait for m->busy to become 0 before setting PG_BUSY.
592  */
593 void
594 VM_PAGE_DEBUG_EXT(vm_page_busy_wait)(vm_page_t m,
595                                      int also_m_busy, const char *msg
596                                      VM_PAGE_DEBUG_ARGS)
597 {
598         u_int32_t flags;
599
600         for (;;) {
601                 flags = m->flags;
602                 cpu_ccfence();
603                 if (flags & PG_BUSY) {
604                         tsleep_interlock(m, 0);
605                         if (atomic_cmpset_int(&m->flags, flags,
606                                           flags | PG_WANTED | PG_REFERENCED)) {
607                                 tsleep(m, PINTERLOCKED, msg, 0);
608                         }
609                 } else if (also_m_busy && (flags & PG_SBUSY)) {
610                         tsleep_interlock(m, 0);
611                         if (atomic_cmpset_int(&m->flags, flags,
612                                           flags | PG_WANTED | PG_REFERENCED)) {
613                                 tsleep(m, PINTERLOCKED, msg, 0);
614                         }
615                 } else {
616                         if (atomic_cmpset_int(&m->flags, flags,
617                                               flags | PG_BUSY)) {
618 #ifdef VM_PAGE_DEBUG
619                                 m->busy_func = func;
620                                 m->busy_line = lineno;
621 #endif
622                                 break;
623                         }
624                 }
625         }
626 }
627
628 /*
629  * Attempt to set PG_BUSY.  If also_m_busy is TRUE we only succeed if m->busy
630  * is also 0.
631  *
632  * Returns non-zero on failure.
633  */
634 int
635 VM_PAGE_DEBUG_EXT(vm_page_busy_try)(vm_page_t m, int also_m_busy
636                                     VM_PAGE_DEBUG_ARGS)
637 {
638         u_int32_t flags;
639
640         for (;;) {
641                 flags = m->flags;
642                 cpu_ccfence();
643                 if (flags & PG_BUSY)
644                         return TRUE;
645                 if (also_m_busy && (flags & PG_SBUSY))
646                         return TRUE;
647                 if (atomic_cmpset_int(&m->flags, flags, flags | PG_BUSY)) {
648 #ifdef VM_PAGE_DEBUG
649                                 m->busy_func = func;
650                                 m->busy_line = lineno;
651 #endif
652                         return FALSE;
653                 }
654         }
655 }
656
657 /*
658  * Clear the PG_BUSY flag and return non-zero to indicate to the caller
659  * that a wakeup() should be performed.
660  *
661  * The vm_page must be spinlocked and will remain spinlocked on return.
662  * The related queue must NOT be spinlocked (which could deadlock us).
663  *
664  * (inline version)
665  */
666 static __inline
667 int
668 _vm_page_wakeup(vm_page_t m)
669 {
670         u_int32_t flags;
671
672         for (;;) {
673                 flags = m->flags;
674                 cpu_ccfence();
675                 if (atomic_cmpset_int(&m->flags, flags,
676                                       flags & ~(PG_BUSY | PG_WANTED))) {
677                         break;
678                 }
679         }
680         return(flags & PG_WANTED);
681 }
682
683 /*
684  * Clear the PG_BUSY flag and wakeup anyone waiting for the page.  This
685  * is typically the last call you make on a page before moving onto
686  * other things.
687  */
688 void
689 vm_page_wakeup(vm_page_t m)
690 {
691         KASSERT(m->flags & PG_BUSY, ("vm_page_wakeup: page not busy!!!"));
692         vm_page_spin_lock(m);
693         if (_vm_page_wakeup(m)) {
694                 vm_page_spin_unlock(m);
695                 wakeup(m);
696         } else {
697                 vm_page_spin_unlock(m);
698         }
699 }
700
701 /*
702  * Holding a page keeps it from being reused.  Other parts of the system
703  * can still disassociate the page from its current object and free it, or
704  * perform read or write I/O on it and/or otherwise manipulate the page,
705  * but if the page is held the VM system will leave the page and its data
706  * intact and not reuse the page for other purposes until the last hold
707  * reference is released.  (see vm_page_wire() if you want to prevent the
708  * page from being disassociated from its object too).
709  *
710  * The caller must still validate the contents of the page and, if necessary,
711  * wait for any pending I/O (e.g. vm_page_sleep_busy() loop) to complete
712  * before manipulating the page.
713  *
714  * XXX get vm_page_spin_lock() here and move FREE->HOLD if necessary
715  */
716 void
717 vm_page_hold(vm_page_t m)
718 {
719         vm_page_spin_lock(m);
720         atomic_add_int(&m->hold_count, 1);
721         if (m->queue - m->pc == PQ_FREE) {
722                 _vm_page_queue_spin_lock(m);
723                 _vm_page_rem_queue_spinlocked(m);
724                 _vm_page_add_queue_spinlocked(m, PQ_HOLD + m->pc, 0);
725                 _vm_page_queue_spin_unlock(m);
726         }
727         vm_page_spin_unlock(m);
728 }
729
730 /*
731  * The opposite of vm_page_hold().  A page can be freed while being held,
732  * which places it on the PQ_HOLD queue.  If we are able to busy the page
733  * after the hold count drops to zero we will move the page to the
734  * appropriate PQ_FREE queue by calling vm_page_free_toq().
735  */
736 void
737 vm_page_unhold(vm_page_t m)
738 {
739         vm_page_spin_lock(m);
740         atomic_add_int(&m->hold_count, -1);
741         if (m->hold_count == 0 && m->queue - m->pc == PQ_HOLD) {
742                 _vm_page_queue_spin_lock(m);
743                 _vm_page_rem_queue_spinlocked(m);
744                 _vm_page_add_queue_spinlocked(m, PQ_FREE + m->pc, 0);
745                 _vm_page_queue_spin_unlock(m);
746         }
747         vm_page_spin_unlock(m);
748 }
749
750 /*
751  * Inserts the given vm_page into the object and object list.
752  *
753  * The pagetables are not updated but will presumably fault the page
754  * in if necessary, or if a kernel page the caller will at some point
755  * enter the page into the kernel's pmap.  We are not allowed to block
756  * here so we *can't* do this anyway.
757  *
758  * This routine may not block.
759  * This routine must be called with the vm_object held.
760  * This routine must be called with a critical section held.
761  *
762  * This routine returns TRUE if the page was inserted into the object
763  * successfully, and FALSE if the page already exists in the object.
764  */
765 int
766 vm_page_insert(vm_page_t m, vm_object_t object, vm_pindex_t pindex)
767 {
768         ASSERT_LWKT_TOKEN_HELD(vm_object_token(object));
769         if (m->object != NULL)
770                 panic("vm_page_insert: already inserted");
771
772         object->generation++;
773
774         /*
775          * Record the object/offset pair in this page and add the
776          * pv_list_count of the page to the object.
777          *
778          * The vm_page spin lock is required for interactions with the pmap.
779          */
780         vm_page_spin_lock(m);
781         m->object = object;
782         m->pindex = pindex;
783         if (vm_page_rb_tree_RB_INSERT(&object->rb_memq, m)) {
784                 m->object = NULL;
785                 m->pindex = 0;
786                 vm_page_spin_unlock(m);
787                 return FALSE;
788         }
789         object->resident_page_count++;
790         /* atomic_add_int(&object->agg_pv_list_count, m->md.pv_list_count); */
791         vm_page_spin_unlock(m);
792
793         /*
794          * Since we are inserting a new and possibly dirty page,
795          * update the object's OBJ_WRITEABLE and OBJ_MIGHTBEDIRTY flags.
796          */
797         if ((m->valid & m->dirty) || (m->flags & PG_WRITEABLE))
798                 vm_object_set_writeable_dirty(object);
799
800         /*
801          * Checks for a swap assignment and sets PG_SWAPPED if appropriate.
802          */
803         swap_pager_page_inserted(m);
804         return TRUE;
805 }
806
807 /*
808  * Removes the given vm_page_t from the (object,index) table
809  *
810  * The underlying pmap entry (if any) is NOT removed here.
811  * This routine may not block.
812  *
813  * The page must be BUSY and will remain BUSY on return.
814  * No other requirements.
815  *
816  * NOTE: FreeBSD side effect was to unbusy the page on return.  We leave
817  *       it busy.
818  */
819 void
820 vm_page_remove(vm_page_t m)
821 {
822         vm_object_t object;
823
824         if (m->object == NULL) {
825                 return;
826         }
827
828         if ((m->flags & PG_BUSY) == 0)
829                 panic("vm_page_remove: page not busy");
830
831         object = m->object;
832
833         vm_object_hold(object);
834
835         /*
836          * Remove the page from the object and update the object.
837          *
838          * The vm_page spin lock is required for interactions with the pmap.
839          */
840         vm_page_spin_lock(m);
841         vm_page_rb_tree_RB_REMOVE(&object->rb_memq, m);
842         object->resident_page_count--;
843         /* atomic_add_int(&object->agg_pv_list_count, -m->md.pv_list_count); */
844         m->object = NULL;
845         vm_page_spin_unlock(m);
846
847         object->generation++;
848
849         vm_object_drop(object);
850 }
851
852 /*
853  * Locate and return the page at (object, pindex), or NULL if the
854  * page could not be found.
855  *
856  * The caller must hold the vm_object token.
857  */
858 vm_page_t
859 vm_page_lookup(vm_object_t object, vm_pindex_t pindex)
860 {
861         vm_page_t m;
862
863         /*
864          * Search the hash table for this object/offset pair
865          */
866         ASSERT_LWKT_TOKEN_HELD(vm_object_token(object));
867         m = vm_page_rb_tree_RB_LOOKUP(&object->rb_memq, pindex);
868         KKASSERT(m == NULL || (m->object == object && m->pindex == pindex));
869         return(m);
870 }
871
872 vm_page_t
873 VM_PAGE_DEBUG_EXT(vm_page_lookup_busy_wait)(struct vm_object *object,
874                                             vm_pindex_t pindex,
875                                             int also_m_busy, const char *msg
876                                             VM_PAGE_DEBUG_ARGS)
877 {
878         u_int32_t flags;
879         vm_page_t m;
880
881         ASSERT_LWKT_TOKEN_HELD(vm_object_token(object));
882         m = vm_page_rb_tree_RB_LOOKUP(&object->rb_memq, pindex);
883         while (m) {
884                 KKASSERT(m->object == object && m->pindex == pindex);
885                 flags = m->flags;
886                 cpu_ccfence();
887                 if (flags & PG_BUSY) {
888                         tsleep_interlock(m, 0);
889                         if (atomic_cmpset_int(&m->flags, flags,
890                                           flags | PG_WANTED | PG_REFERENCED)) {
891                                 tsleep(m, PINTERLOCKED, msg, 0);
892                                 m = vm_page_rb_tree_RB_LOOKUP(&object->rb_memq,
893                                                               pindex);
894                         }
895                 } else if (also_m_busy && (flags & PG_SBUSY)) {
896                         tsleep_interlock(m, 0);
897                         if (atomic_cmpset_int(&m->flags, flags,
898                                           flags | PG_WANTED | PG_REFERENCED)) {
899                                 tsleep(m, PINTERLOCKED, msg, 0);
900                                 m = vm_page_rb_tree_RB_LOOKUP(&object->rb_memq,
901                                                               pindex);
902                         }
903                 } else if (atomic_cmpset_int(&m->flags, flags,
904                                              flags | PG_BUSY)) {
905 #ifdef VM_PAGE_DEBUG
906                         m->busy_func = func;
907                         m->busy_line = lineno;
908 #endif
909                         break;
910                 }
911         }
912         return m;
913 }
914
915 /*
916  * Attempt to lookup and busy a page.
917  *
918  * Returns NULL if the page could not be found
919  *
920  * Returns a vm_page and error == TRUE if the page exists but could not
921  * be busied.
922  *
923  * Returns a vm_page and error == FALSE on success.
924  */
925 vm_page_t
926 VM_PAGE_DEBUG_EXT(vm_page_lookup_busy_try)(struct vm_object *object,
927                                            vm_pindex_t pindex,
928                                            int also_m_busy, int *errorp
929                                            VM_PAGE_DEBUG_ARGS)
930 {
931         u_int32_t flags;
932         vm_page_t m;
933
934         ASSERT_LWKT_TOKEN_HELD(vm_object_token(object));
935         m = vm_page_rb_tree_RB_LOOKUP(&object->rb_memq, pindex);
936         *errorp = FALSE;
937         while (m) {
938                 KKASSERT(m->object == object && m->pindex == pindex);
939                 flags = m->flags;
940                 cpu_ccfence();
941                 if (flags & PG_BUSY) {
942                         *errorp = TRUE;
943                         break;
944                 }
945                 if (also_m_busy && (flags & PG_SBUSY)) {
946                         *errorp = TRUE;
947                         break;
948                 }
949                 if (atomic_cmpset_int(&m->flags, flags, flags | PG_BUSY)) {
950 #ifdef VM_PAGE_DEBUG
951                         m->busy_func = func;
952                         m->busy_line = lineno;
953 #endif
954                         break;
955                 }
956         }
957         return m;
958 }
959
960 /*
961  * Caller must hold the related vm_object
962  */
963 vm_page_t
964 vm_page_next(vm_page_t m)
965 {
966         vm_page_t next;
967
968         next = vm_page_rb_tree_RB_NEXT(m);
969         if (next && next->pindex != m->pindex + 1)
970                 next = NULL;
971         return (next);
972 }
973
974 /*
975  * vm_page_rename()
976  *
977  * Move the given vm_page from its current object to the specified
978  * target object/offset.  The page must be busy and will remain so
979  * on return.
980  *
981  * new_object must be held.
982  * This routine might block. XXX ?
983  *
984  * NOTE: Swap associated with the page must be invalidated by the move.  We
985  *       have to do this for several reasons:  (1) we aren't freeing the
986  *       page, (2) we are dirtying the page, (3) the VM system is probably
987  *       moving the page from object A to B, and will then later move
988  *       the backing store from A to B and we can't have a conflict.
989  *
990  * NOTE: We *always* dirty the page.  It is necessary both for the
991  *       fact that we moved it, and because we may be invalidating
992  *       swap.  If the page is on the cache, we have to deactivate it
993  *       or vm_page_dirty() will panic.  Dirty pages are not allowed
994  *       on the cache.
995  */
996 void
997 vm_page_rename(vm_page_t m, vm_object_t new_object, vm_pindex_t new_pindex)
998 {
999         KKASSERT(m->flags & PG_BUSY);
1000         ASSERT_LWKT_TOKEN_HELD(vm_object_token(new_object));
1001         if (m->object) {
1002                 ASSERT_LWKT_TOKEN_HELD(vm_object_token(m->object));
1003                 vm_page_remove(m);
1004         }
1005         if (vm_page_insert(m, new_object, new_pindex) == FALSE) {
1006                 panic("vm_page_rename: target exists (%p,%"PRIu64")",
1007                       new_object, new_pindex);
1008         }
1009         if (m->queue - m->pc == PQ_CACHE)
1010                 vm_page_deactivate(m);
1011         vm_page_dirty(m);
1012 }
1013
1014 /*
1015  * vm_page_unqueue() without any wakeup.  This routine is used when a page
1016  * is being moved between queues or otherwise is to remain BUSYied by the
1017  * caller.
1018  *
1019  * This routine may not block.
1020  */
1021 void
1022 vm_page_unqueue_nowakeup(vm_page_t m)
1023 {
1024         vm_page_and_queue_spin_lock(m);
1025         (void)_vm_page_rem_queue_spinlocked(m);
1026         vm_page_spin_unlock(m);
1027 }
1028
1029 /*
1030  * vm_page_unqueue() - Remove a page from its queue, wakeup the pagedemon
1031  * if necessary.
1032  *
1033  * This routine may not block.
1034  */
1035 void
1036 vm_page_unqueue(vm_page_t m)
1037 {
1038         u_short queue;
1039
1040         vm_page_and_queue_spin_lock(m);
1041         queue = _vm_page_rem_queue_spinlocked(m);
1042         if (queue == PQ_FREE || queue == PQ_CACHE) {
1043                 vm_page_spin_unlock(m);
1044                 pagedaemon_wakeup();
1045         } else {
1046                 vm_page_spin_unlock(m);
1047         }
1048 }
1049
1050 /*
1051  * vm_page_list_find()
1052  *
1053  * Find a page on the specified queue with color optimization.
1054  *
1055  * The page coloring optimization attempts to locate a page that does
1056  * not overload other nearby pages in the object in the cpu's L1 or L2
1057  * caches.  We need this optimization because cpu caches tend to be
1058  * physical caches, while object spaces tend to be virtual.
1059  *
1060  * On MP systems each PQ_FREE and PQ_CACHE color queue has its own spinlock
1061  * and the algorithm is adjusted to localize allocations on a per-core basis.
1062  * This is done by 'twisting' the colors.
1063  *
1064  * The page is returned spinlocked and removed from its queue (it will
1065  * be on PQ_NONE), or NULL. The page is not PG_BUSY'd.  The caller
1066  * is responsible for dealing with the busy-page case (usually by
1067  * deactivating the page and looping).
1068  *
1069  * NOTE:  This routine is carefully inlined.  A non-inlined version
1070  *        is available for outside callers but the only critical path is
1071  *        from within this source file.
1072  *
1073  * NOTE:  This routine assumes that the vm_pages found in PQ_CACHE and PQ_FREE
1074  *        represent stable storage, allowing us to order our locks vm_page
1075  *        first, then queue.
1076  */
1077 static __inline
1078 vm_page_t
1079 _vm_page_list_find(int basequeue, int index, boolean_t prefer_zero)
1080 {
1081         vm_page_t m;
1082
1083         for (;;) {
1084                 if (prefer_zero)
1085                         m = TAILQ_LAST(&vm_page_queues[basequeue+index].pl, pglist);
1086                 else
1087                         m = TAILQ_FIRST(&vm_page_queues[basequeue+index].pl);
1088                 if (m == NULL) {
1089                         m = _vm_page_list_find2(basequeue, index);
1090                         return(m);
1091                 }
1092                 vm_page_and_queue_spin_lock(m);
1093                 if (m->queue == basequeue + index) {
1094                         _vm_page_rem_queue_spinlocked(m);
1095                         /* vm_page_t spin held, no queue spin */
1096                         break;
1097                 }
1098                 vm_page_and_queue_spin_unlock(m);
1099         }
1100         return(m);
1101 }
1102
1103 static vm_page_t
1104 _vm_page_list_find2(int basequeue, int index)
1105 {
1106         int i;
1107         vm_page_t m = NULL;
1108         struct vpgqueues *pq;
1109
1110         pq = &vm_page_queues[basequeue];
1111
1112         /*
1113          * Note that for the first loop, index+i and index-i wind up at the
1114          * same place.  Even though this is not totally optimal, we've already
1115          * blown it by missing the cache case so we do not care.
1116          */
1117         for (i = PQ_L2_SIZE / 2; i > 0; --i) {
1118                 for (;;) {
1119                         m = TAILQ_FIRST(&pq[(index + i) & PQ_L2_MASK].pl);
1120                         if (m) {
1121                                 _vm_page_and_queue_spin_lock(m);
1122                                 if (m->queue ==
1123                                     basequeue + ((index + i) & PQ_L2_MASK)) {
1124                                         _vm_page_rem_queue_spinlocked(m);
1125                                         return(m);
1126                                 }
1127                                 _vm_page_and_queue_spin_unlock(m);
1128                                 continue;
1129                         }
1130                         m = TAILQ_FIRST(&pq[(index - i) & PQ_L2_MASK].pl);
1131                         if (m) {
1132                                 _vm_page_and_queue_spin_lock(m);
1133                                 if (m->queue ==
1134                                     basequeue + ((index - i) & PQ_L2_MASK)) {
1135                                         _vm_page_rem_queue_spinlocked(m);
1136                                         return(m);
1137                                 }
1138                                 _vm_page_and_queue_spin_unlock(m);
1139                                 continue;
1140                         }
1141                         break;  /* next i */
1142                 }
1143         }
1144         return(m);
1145 }
1146
1147 /*
1148  * Returns a vm_page candidate for allocation.  The page is not busied so
1149  * it can move around.  The caller must busy the page (and typically
1150  * deactivate it if it cannot be busied!)
1151  *
1152  * Returns a spinlocked vm_page that has been removed from its queue.
1153  */
1154 vm_page_t
1155 vm_page_list_find(int basequeue, int index, boolean_t prefer_zero)
1156 {
1157         return(_vm_page_list_find(basequeue, index, prefer_zero));
1158 }
1159
1160 /*
1161  * Find a page on the cache queue with color optimization, remove it
1162  * from the queue, and busy it.  The returned page will not be spinlocked.
1163  *
1164  * A candidate failure will be deactivated.  Candidates can fail due to
1165  * being busied by someone else, in which case they will be deactivated.
1166  *
1167  * This routine may not block.
1168  *
1169  */
1170 static vm_page_t
1171 vm_page_select_cache(u_short pg_color)
1172 {
1173         vm_page_t m;
1174
1175         for (;;) {
1176                 m = _vm_page_list_find(PQ_CACHE, pg_color & PQ_L2_MASK, FALSE);
1177                 if (m == NULL)
1178                         break;
1179                 /*
1180                  * (m) has been removed from its queue and spinlocked
1181                  */
1182                 if (vm_page_busy_try(m, TRUE)) {
1183                         _vm_page_deactivate_locked(m, 0);
1184                         vm_page_spin_unlock(m);
1185 #ifdef INVARIANTS
1186                         kprintf("Warning: busy page %p found in cache\n", m);
1187 #endif
1188                 } else {
1189                         /*
1190                          * We successfully busied the page
1191                          */
1192                         if ((m->flags & PG_UNMANAGED) == 0 &&
1193                             m->hold_count == 0 &&
1194                             m->wire_count == 0) {
1195                                 vm_page_spin_unlock(m);
1196                                 pagedaemon_wakeup();
1197                                 return(m);
1198                         }
1199                         _vm_page_deactivate_locked(m, 0);
1200                         if (_vm_page_wakeup(m)) {
1201                                 vm_page_spin_unlock(m);
1202                                 wakeup(m);
1203                         } else {
1204                                 vm_page_spin_unlock(m);
1205                         }
1206                 }
1207         }
1208         return (m);
1209 }
1210
1211 /*
1212  * Find a free or zero page, with specified preference.  We attempt to
1213  * inline the nominal case and fall back to _vm_page_select_free() 
1214  * otherwise.  A busied page is removed from the queue and returned.
1215  *
1216  * This routine may not block.
1217  */
1218 static __inline vm_page_t
1219 vm_page_select_free(u_short pg_color, boolean_t prefer_zero)
1220 {
1221         vm_page_t m;
1222
1223         for (;;) {
1224                 m = _vm_page_list_find(PQ_FREE, pg_color & PQ_L2_MASK,
1225                                        prefer_zero);
1226                 if (m == NULL)
1227                         break;
1228                 if (vm_page_busy_try(m, TRUE)) {
1229                         /*
1230                          * Various mechanisms such as a pmap_collect can
1231                          * result in a busy page on the free queue.  We
1232                          * have to move the page out of the way so we can
1233                          * retry the allocation.  If the other thread is not
1234                          * allocating the page then m->valid will remain 0 and
1235                          * the pageout daemon will free the page later on.
1236                          *
1237                          * Since we could not busy the page, however, we
1238                          * cannot make assumptions as to whether the page
1239                          * will be allocated by the other thread or not,
1240                          * so all we can do is deactivate it to move it out
1241                          * of the way.  In particular, if the other thread
1242                          * wires the page it may wind up on the inactive
1243                          * queue and the pageout daemon will have to deal
1244                          * with that case too.
1245                          */
1246                         _vm_page_deactivate_locked(m, 0);
1247                         vm_page_spin_unlock(m);
1248 #ifdef INVARIANTS
1249                         kprintf("Warning: busy page %p found in cache\n", m);
1250 #endif
1251                 } else {
1252                         /*
1253                          * Theoretically if we are able to busy the page
1254                          * atomic with the queue removal (using the vm_page
1255                          * lock) nobody else should be able to mess with the
1256                          * page before us.
1257                          */
1258                         KKASSERT((m->flags & PG_UNMANAGED) == 0);
1259                         KKASSERT(m->hold_count == 0);
1260                         KKASSERT(m->wire_count == 0);
1261                         vm_page_spin_unlock(m);
1262                         pagedaemon_wakeup();
1263
1264                         /* return busied and removed page */
1265                         return(m);
1266                 }
1267         }
1268         return(m);
1269 }
1270
1271 /*
1272  * vm_page_alloc()
1273  *
1274  * Allocate and return a memory cell associated with this VM object/offset
1275  * pair.  If object is NULL an unassociated page will be allocated.
1276  *
1277  * The returned page will be busied and removed from its queues.  This
1278  * routine can block and may return NULL if a race occurs and the page
1279  * is found to already exist at the specified (object, pindex).
1280  *
1281  *      VM_ALLOC_NORMAL         allow use of cache pages, nominal free drain
1282  *      VM_ALLOC_QUICK          like normal but cannot use cache
1283  *      VM_ALLOC_SYSTEM         greater free drain
1284  *      VM_ALLOC_INTERRUPT      allow free list to be completely drained
1285  *      VM_ALLOC_ZERO           advisory request for pre-zero'd page only
1286  *      VM_ALLOC_FORCE_ZERO     advisory request for pre-zero'd page only
1287  *      VM_ALLOC_NULL_OK        ok to return NULL on insertion collision
1288  *                              (see vm_page_grab())
1289  * The object must be held if not NULL
1290  * This routine may not block
1291  *
1292  * Additional special handling is required when called from an interrupt
1293  * (VM_ALLOC_INTERRUPT).  We are not allowed to mess with the page cache
1294  * in this case.
1295  */
1296 vm_page_t
1297 vm_page_alloc(vm_object_t object, vm_pindex_t pindex, int page_req)
1298 {
1299         vm_page_t m = NULL;
1300         u_short pg_color;
1301
1302 #ifdef SMP
1303         /*
1304          * Cpu twist - cpu localization algorithm
1305          */
1306         if (object) {
1307                 pg_color = mycpu->gd_cpuid + (pindex & ~ncpus_fit_mask) +
1308                            (object->pg_color & ~ncpus_fit_mask);
1309         } else {
1310                 pg_color = mycpu->gd_cpuid + (pindex & ~ncpus_fit_mask);
1311         }
1312 #else
1313         /*
1314          * Normal page coloring algorithm
1315          */
1316         if (object) {
1317                 pg_color = object->pg_color + pindex;
1318         } else {
1319                 pg_color = pindex;
1320         }
1321 #endif
1322         KKASSERT(page_req & 
1323                 (VM_ALLOC_NORMAL|VM_ALLOC_QUICK|
1324                  VM_ALLOC_INTERRUPT|VM_ALLOC_SYSTEM));
1325
1326         /*
1327          * Certain system threads (pageout daemon, buf_daemon's) are
1328          * allowed to eat deeper into the free page list.
1329          */
1330         if (curthread->td_flags & TDF_SYSTHREAD)
1331                 page_req |= VM_ALLOC_SYSTEM;
1332
1333 loop:
1334         if (vmstats.v_free_count > vmstats.v_free_reserved ||
1335             ((page_req & VM_ALLOC_INTERRUPT) && vmstats.v_free_count > 0) ||
1336             ((page_req & VM_ALLOC_SYSTEM) && vmstats.v_cache_count == 0 &&
1337                 vmstats.v_free_count > vmstats.v_interrupt_free_min)
1338         ) {
1339                 /*
1340                  * The free queue has sufficient free pages to take one out.
1341                  */
1342                 if (page_req & (VM_ALLOC_ZERO | VM_ALLOC_FORCE_ZERO))
1343                         m = vm_page_select_free(pg_color, TRUE);
1344                 else
1345                         m = vm_page_select_free(pg_color, FALSE);
1346         } else if (page_req & VM_ALLOC_NORMAL) {
1347                 /*
1348                  * Allocatable from the cache (non-interrupt only).  On
1349                  * success, we must free the page and try again, thus
1350                  * ensuring that vmstats.v_*_free_min counters are replenished.
1351                  */
1352 #ifdef INVARIANTS
1353                 if (curthread->td_preempted) {
1354                         kprintf("vm_page_alloc(): warning, attempt to allocate"
1355                                 " cache page from preempting interrupt\n");
1356                         m = NULL;
1357                 } else {
1358                         m = vm_page_select_cache(pg_color);
1359                 }
1360 #else
1361                 m = vm_page_select_cache(pg_color);
1362 #endif
1363                 /*
1364                  * On success move the page into the free queue and loop.
1365                  */
1366                 if (m != NULL) {
1367                         KASSERT(m->dirty == 0,
1368                                 ("Found dirty cache page %p", m));
1369                         vm_page_protect(m, VM_PROT_NONE);
1370                         vm_page_free(m);
1371                         goto loop;
1372                 }
1373
1374                 /*
1375                  * On failure return NULL
1376                  */
1377 #if defined(DIAGNOSTIC)
1378                 if (vmstats.v_cache_count > 0)
1379                         kprintf("vm_page_alloc(NORMAL): missing pages on cache queue: %d\n", vmstats.v_cache_count);
1380 #endif
1381                 vm_pageout_deficit++;
1382                 pagedaemon_wakeup();
1383                 return (NULL);
1384         } else {
1385                 /*
1386                  * No pages available, wakeup the pageout daemon and give up.
1387                  */
1388                 vm_pageout_deficit++;
1389                 pagedaemon_wakeup();
1390                 return (NULL);
1391         }
1392
1393         /*
1394          * v_free_count can race so loop if we don't find the expected
1395          * page.
1396          */
1397         if (m == NULL)
1398                 goto loop;
1399
1400         /*
1401          * Good page found.  The page has already been busied for us and
1402          * removed from its queues.
1403          */
1404         KASSERT(m->dirty == 0,
1405                 ("vm_page_alloc: free/cache page %p was dirty", m));
1406         KKASSERT(m->queue == PQ_NONE);
1407
1408         /*
1409          * Initialize the structure, inheriting some flags but clearing
1410          * all the rest.  The page has already been busied for us.
1411          */
1412         vm_page_flag_clear(m, ~(PG_ZERO | PG_BUSY | PG_SBUSY));
1413         KKASSERT(m->wire_count == 0);
1414         KKASSERT(m->busy == 0);
1415         m->act_count = 0;
1416         m->valid = 0;
1417
1418         /*
1419          * Caller must be holding the object lock (asserted by
1420          * vm_page_insert()).
1421          *
1422          * NOTE: Inserting a page here does not insert it into any pmaps
1423          *       (which could cause us to block allocating memory).
1424          *
1425          * NOTE: If no object an unassociated page is allocated, m->pindex
1426          *       can be used by the caller for any purpose.
1427          */
1428         if (object) {
1429                 if (vm_page_insert(m, object, pindex) == FALSE) {
1430                         kprintf("PAGE RACE (%p:%d,%"PRIu64")\n",
1431                                 object, object->type, pindex);
1432                         vm_page_free(m);
1433                         m = NULL;
1434                         if ((page_req & VM_ALLOC_NULL_OK) == 0)
1435                                 panic("PAGE RACE");
1436                 }
1437         } else {
1438                 m->pindex = pindex;
1439         }
1440
1441         /*
1442          * Don't wakeup too often - wakeup the pageout daemon when
1443          * we would be nearly out of memory.
1444          */
1445         pagedaemon_wakeup();
1446
1447         /*
1448          * A PG_BUSY page is returned.
1449          */
1450         return (m);
1451 }
1452
1453 /*
1454  * Wait for sufficient free memory for nominal heavy memory use kernel
1455  * operations.
1456  */
1457 void
1458 vm_wait_nominal(void)
1459 {
1460         while (vm_page_count_min(0))
1461                 vm_wait(0);
1462 }
1463
1464 /*
1465  * Test if vm_wait_nominal() would block.
1466  */
1467 int
1468 vm_test_nominal(void)
1469 {
1470         if (vm_page_count_min(0))
1471                 return(1);
1472         return(0);
1473 }
1474
1475 /*
1476  * Block until free pages are available for allocation, called in various
1477  * places before memory allocations.
1478  *
1479  * The caller may loop if vm_page_count_min() == FALSE so we cannot be
1480  * more generous then that.
1481  */
1482 void
1483 vm_wait(int timo)
1484 {
1485         /*
1486          * never wait forever
1487          */
1488         if (timo == 0)
1489                 timo = hz;
1490         lwkt_gettoken(&vm_token);
1491
1492         if (curthread == pagethread) {
1493                 /*
1494                  * The pageout daemon itself needs pages, this is bad.
1495                  */
1496                 if (vm_page_count_min(0)) {
1497                         vm_pageout_pages_needed = 1;
1498                         tsleep(&vm_pageout_pages_needed, 0, "VMWait", timo);
1499                 }
1500         } else {
1501                 /*
1502                  * Wakeup the pageout daemon if necessary and wait.
1503                  */
1504                 if (vm_page_count_target()) {
1505                         if (vm_pages_needed == 0) {
1506                                 vm_pages_needed = 1;
1507                                 wakeup(&vm_pages_needed);
1508                         }
1509                         ++vm_pages_waiting;     /* SMP race ok */
1510                         tsleep(&vmstats.v_free_count, 0, "vmwait", timo);
1511                 }
1512         }
1513         lwkt_reltoken(&vm_token);
1514 }
1515
1516 /*
1517  * Block until free pages are available for allocation
1518  *
1519  * Called only from vm_fault so that processes page faulting can be
1520  * easily tracked.
1521  */
1522 void
1523 vm_waitpfault(void)
1524 {
1525         /*
1526          * Wakeup the pageout daemon if necessary and wait.
1527          */
1528         if (vm_page_count_target()) {
1529                 lwkt_gettoken(&vm_token);
1530                 if (vm_page_count_target()) {
1531                         if (vm_pages_needed == 0) {
1532                                 vm_pages_needed = 1;
1533                                 wakeup(&vm_pages_needed);
1534                         }
1535                         ++vm_pages_waiting;     /* SMP race ok */
1536                         tsleep(&vmstats.v_free_count, 0, "pfault", hz);
1537                 }
1538                 lwkt_reltoken(&vm_token);
1539         }
1540 }
1541
1542 /*
1543  * Put the specified page on the active list (if appropriate).  Ensure
1544  * that act_count is at least ACT_INIT but do not otherwise mess with it.
1545  *
1546  * The caller should be holding the page busied ? XXX
1547  * This routine may not block.
1548  */
1549 void
1550 vm_page_activate(vm_page_t m)
1551 {
1552         u_short oqueue;
1553
1554         vm_page_spin_lock(m);
1555         if (m->queue - m->pc != PQ_ACTIVE) {
1556                 _vm_page_queue_spin_lock(m);
1557                 oqueue = _vm_page_rem_queue_spinlocked(m);
1558                 /* page is left spinlocked, queue is unlocked */
1559
1560                 if (oqueue == PQ_CACHE)
1561                         mycpu->gd_cnt.v_reactivated++;
1562                 if (m->wire_count == 0 && (m->flags & PG_UNMANAGED) == 0) {
1563                         if (m->act_count < ACT_INIT)
1564                                 m->act_count = ACT_INIT;
1565                         _vm_page_add_queue_spinlocked(m, PQ_ACTIVE + m->pc, 0);
1566                 }
1567                 _vm_page_and_queue_spin_unlock(m);
1568                 if (oqueue == PQ_CACHE || oqueue == PQ_FREE)
1569                         pagedaemon_wakeup();
1570         } else {
1571                 if (m->act_count < ACT_INIT)
1572                         m->act_count = ACT_INIT;
1573                 vm_page_spin_unlock(m);
1574         }
1575 }
1576
1577 /*
1578  * Helper routine for vm_page_free_toq() and vm_page_cache().  This
1579  * routine is called when a page has been added to the cache or free
1580  * queues.
1581  *
1582  * This routine may not block.
1583  */
1584 static __inline void
1585 vm_page_free_wakeup(void)
1586 {
1587         /*
1588          * If the pageout daemon itself needs pages, then tell it that
1589          * there are some free.
1590          */
1591         if (vm_pageout_pages_needed &&
1592             vmstats.v_cache_count + vmstats.v_free_count >= 
1593             vmstats.v_pageout_free_min
1594         ) {
1595                 wakeup(&vm_pageout_pages_needed);
1596                 vm_pageout_pages_needed = 0;
1597         }
1598
1599         /*
1600          * Wakeup processes that are waiting on memory.
1601          *
1602          * NOTE: vm_paging_target() is the pageout daemon's target, while
1603          *       vm_page_count_target() is somewhere inbetween.  We want
1604          *       to wake processes up prior to the pageout daemon reaching
1605          *       its target to provide some hysteresis.
1606          */
1607         if (vm_pages_waiting) {
1608                 if (!vm_page_count_target()) {
1609                         /*
1610                          * Plenty of pages are free, wakeup everyone.
1611                          */
1612                         vm_pages_waiting = 0;
1613                         wakeup(&vmstats.v_free_count);
1614                         ++mycpu->gd_cnt.v_ppwakeups;
1615                 } else if (!vm_page_count_min(0)) {
1616                         /*
1617                          * Some pages are free, wakeup someone.
1618                          */
1619                         int wcount = vm_pages_waiting;
1620                         if (wcount > 0)
1621                                 --wcount;
1622                         vm_pages_waiting = wcount;
1623                         wakeup_one(&vmstats.v_free_count);
1624                         ++mycpu->gd_cnt.v_ppwakeups;
1625                 }
1626         }
1627 }
1628
1629 /*
1630  * Returns the given page to the PQ_FREE or PQ_HOLD list and disassociates
1631  * it from its VM object.
1632  *
1633  * The vm_page must be PG_BUSY on entry.  PG_BUSY will be released on
1634  * return (the page will have been freed).
1635  */
1636 void
1637 vm_page_free_toq(vm_page_t m)
1638 {
1639         mycpu->gd_cnt.v_tfree++;
1640         KKASSERT((m->flags & PG_MAPPED) == 0);
1641         KKASSERT(m->flags & PG_BUSY);
1642
1643         if (m->busy || ((m->queue - m->pc) == PQ_FREE)) {
1644                 kprintf(
1645                 "vm_page_free: pindex(%lu), busy(%d), PG_BUSY(%d), hold(%d)\n",
1646                     (u_long)m->pindex, m->busy, (m->flags & PG_BUSY) ? 1 : 0,
1647                     m->hold_count);
1648                 if ((m->queue - m->pc) == PQ_FREE)
1649                         panic("vm_page_free: freeing free page");
1650                 else
1651                         panic("vm_page_free: freeing busy page");
1652         }
1653
1654         /*
1655          * Remove from object, spinlock the page and its queues and
1656          * remove from any queue.  No queue spinlock will be held
1657          * after this section (because the page was removed from any
1658          * queue).
1659          */
1660         vm_page_remove(m);
1661         vm_page_and_queue_spin_lock(m);
1662         _vm_page_rem_queue_spinlocked(m);
1663
1664         /*
1665          * No further management of fictitious pages occurs beyond object
1666          * and queue removal.
1667          */
1668         if ((m->flags & PG_FICTITIOUS) != 0) {
1669                 vm_page_spin_unlock(m);
1670                 vm_page_wakeup(m);
1671                 return;
1672         }
1673
1674         m->valid = 0;
1675         vm_page_undirty(m);
1676
1677         if (m->wire_count != 0) {
1678                 if (m->wire_count > 1) {
1679                     panic(
1680                         "vm_page_free: invalid wire count (%d), pindex: 0x%lx",
1681                         m->wire_count, (long)m->pindex);
1682                 }
1683                 panic("vm_page_free: freeing wired page");
1684         }
1685
1686         /*
1687          * Clear the UNMANAGED flag when freeing an unmanaged page.
1688          */
1689         if (m->flags & PG_UNMANAGED) {
1690                 vm_page_flag_clear(m, PG_UNMANAGED);
1691         }
1692
1693         if (m->hold_count != 0) {
1694                 vm_page_flag_clear(m, PG_ZERO);
1695                 _vm_page_add_queue_spinlocked(m, PQ_HOLD + m->pc, 0);
1696         } else {
1697                 _vm_page_add_queue_spinlocked(m, PQ_FREE + m->pc, 0);
1698         }
1699
1700         /*
1701          * This sequence allows us to clear PG_BUSY while still holding
1702          * its spin lock, which reduces contention vs allocators.  We
1703          * must not leave the queue locked or _vm_page_wakeup() may
1704          * deadlock.
1705          */
1706         _vm_page_queue_spin_unlock(m);
1707         if (_vm_page_wakeup(m)) {
1708                 vm_page_spin_unlock(m);
1709                 wakeup(m);
1710         } else {
1711                 vm_page_spin_unlock(m);
1712         }
1713         vm_page_free_wakeup();
1714 }
1715
1716 /*
1717  * vm_page_free_fromq_fast()
1718  *
1719  * Remove a non-zero page from one of the free queues; the page is removed for
1720  * zeroing, so do not issue a wakeup.
1721  */
1722 vm_page_t
1723 vm_page_free_fromq_fast(void)
1724 {
1725         static int qi;
1726         vm_page_t m;
1727         int i;
1728
1729         for (i = 0; i < PQ_L2_SIZE; ++i) {
1730                 m = vm_page_list_find(PQ_FREE, qi, FALSE);
1731                 /* page is returned spinlocked and removed from its queue */
1732                 if (m) {
1733                         if (vm_page_busy_try(m, TRUE)) {
1734                                 /*
1735                                  * We were unable to busy the page, deactivate
1736                                  * it and loop.
1737                                  */
1738                                 _vm_page_deactivate_locked(m, 0);
1739                                 vm_page_spin_unlock(m);
1740                         } else if (m->flags & PG_ZERO) {
1741                                 /*
1742                                  * The page is PG_ZERO, requeue it and loop
1743                                  */
1744                                 _vm_page_add_queue_spinlocked(m,
1745                                                               PQ_FREE + m->pc,
1746                                                               0);
1747                                 vm_page_queue_spin_unlock(m);
1748                                 if (_vm_page_wakeup(m)) {
1749                                         vm_page_spin_unlock(m);
1750                                         wakeup(m);
1751                                 } else {
1752                                         vm_page_spin_unlock(m);
1753                                 }
1754                         } else {
1755                                 /*
1756                                  * The page is not PG_ZERO'd so return it.
1757                                  */
1758                                 vm_page_spin_unlock(m);
1759                                 KKASSERT((m->flags & PG_UNMANAGED) == 0);
1760                                 KKASSERT(m->hold_count == 0);
1761                                 KKASSERT(m->wire_count == 0);
1762                                 break;
1763                         }
1764                         m = NULL;
1765                 }
1766                 qi = (qi + PQ_PRIME2) & PQ_L2_MASK;
1767         }
1768         return (m);
1769 }
1770
1771 /*
1772  * vm_page_unmanage()
1773  *
1774  * Prevent PV management from being done on the page.  The page is
1775  * removed from the paging queues as if it were wired, and as a 
1776  * consequence of no longer being managed the pageout daemon will not
1777  * touch it (since there is no way to locate the pte mappings for the
1778  * page).  madvise() calls that mess with the pmap will also no longer
1779  * operate on the page.
1780  *
1781  * Beyond that the page is still reasonably 'normal'.  Freeing the page
1782  * will clear the flag.
1783  *
1784  * This routine is used by OBJT_PHYS objects - objects using unswappable
1785  * physical memory as backing store rather then swap-backed memory and
1786  * will eventually be extended to support 4MB unmanaged physical 
1787  * mappings.
1788  *
1789  * Caller must be holding the page busy.
1790  */
1791 void
1792 vm_page_unmanage(vm_page_t m)
1793 {
1794         KKASSERT(m->flags & PG_BUSY);
1795         if ((m->flags & PG_UNMANAGED) == 0) {
1796                 if (m->wire_count == 0)
1797                         vm_page_unqueue(m);
1798         }
1799         vm_page_flag_set(m, PG_UNMANAGED);
1800 }
1801
1802 /*
1803  * Mark this page as wired down by yet another map, removing it from
1804  * paging queues as necessary.
1805  *
1806  * Caller must be holding the page busy.
1807  */
1808 void
1809 vm_page_wire(vm_page_t m)
1810 {
1811         /*
1812          * Only bump the wire statistics if the page is not already wired,
1813          * and only unqueue the page if it is on some queue (if it is unmanaged
1814          * it is already off the queues).  Don't do anything with fictitious
1815          * pages because they are always wired.
1816          */
1817         KKASSERT(m->flags & PG_BUSY);
1818         if ((m->flags & PG_FICTITIOUS) == 0) {
1819                 if (atomic_fetchadd_int(&m->wire_count, 1) == 0) {
1820                         if ((m->flags & PG_UNMANAGED) == 0)
1821                                 vm_page_unqueue(m);
1822                         atomic_add_int(&vmstats.v_wire_count, 1);
1823                 }
1824                 KASSERT(m->wire_count != 0,
1825                         ("vm_page_wire: wire_count overflow m=%p", m));
1826         }
1827 }
1828
1829 /*
1830  * Release one wiring of this page, potentially enabling it to be paged again.
1831  *
1832  * Many pages placed on the inactive queue should actually go
1833  * into the cache, but it is difficult to figure out which.  What
1834  * we do instead, if the inactive target is well met, is to put
1835  * clean pages at the head of the inactive queue instead of the tail.
1836  * This will cause them to be moved to the cache more quickly and
1837  * if not actively re-referenced, freed more quickly.  If we just
1838  * stick these pages at the end of the inactive queue, heavy filesystem
1839  * meta-data accesses can cause an unnecessary paging load on memory bound 
1840  * processes.  This optimization causes one-time-use metadata to be
1841  * reused more quickly.
1842  *
1843  * BUT, if we are in a low-memory situation we have no choice but to
1844  * put clean pages on the cache queue.
1845  *
1846  * A number of routines use vm_page_unwire() to guarantee that the page
1847  * will go into either the inactive or active queues, and will NEVER
1848  * be placed in the cache - for example, just after dirtying a page.
1849  * dirty pages in the cache are not allowed.
1850  *
1851  * The page queues must be locked.
1852  * This routine may not block.
1853  */
1854 void
1855 vm_page_unwire(vm_page_t m, int activate)
1856 {
1857         KKASSERT(m->flags & PG_BUSY);
1858         if (m->flags & PG_FICTITIOUS) {
1859                 /* do nothing */
1860         } else if (m->wire_count <= 0) {
1861                 panic("vm_page_unwire: invalid wire count: %d", m->wire_count);
1862         } else {
1863                 if (atomic_fetchadd_int(&m->wire_count, -1) == 1) {
1864                         atomic_add_int(&vmstats.v_wire_count, -1);
1865                         if (m->flags & PG_UNMANAGED) {
1866                                 ;
1867                         } else if (activate) {
1868                                 vm_page_spin_lock(m);
1869                                 _vm_page_add_queue_spinlocked(m,
1870                                                         PQ_ACTIVE + m->pc, 0);
1871                                 _vm_page_and_queue_spin_unlock(m);
1872                         } else {
1873                                 vm_page_spin_lock(m);
1874                                 vm_page_flag_clear(m, PG_WINATCFLS);
1875                                 _vm_page_add_queue_spinlocked(m,
1876                                                         PQ_INACTIVE + m->pc, 0);
1877                                 ++vm_swapcache_inactive_heuristic;
1878                                 _vm_page_and_queue_spin_unlock(m);
1879                         }
1880                 }
1881         }
1882 }
1883
1884 /*
1885  * Move the specified page to the inactive queue.  If the page has
1886  * any associated swap, the swap is deallocated.
1887  *
1888  * Normally athead is 0 resulting in LRU operation.  athead is set
1889  * to 1 if we want this page to be 'as if it were placed in the cache',
1890  * except without unmapping it from the process address space.
1891  *
1892  * vm_page's spinlock must be held on entry and will remain held on return.
1893  * This routine may not block.
1894  */
1895 static void
1896 _vm_page_deactivate_locked(vm_page_t m, int athead)
1897 {
1898         u_short oqueue;
1899
1900         /*
1901          * Ignore if already inactive.
1902          */
1903         if (m->queue - m->pc == PQ_INACTIVE)
1904                 return;
1905         _vm_page_queue_spin_lock(m);
1906         oqueue = _vm_page_rem_queue_spinlocked(m);
1907
1908         if (m->wire_count == 0 && (m->flags & PG_UNMANAGED) == 0) {
1909                 if (oqueue == PQ_CACHE)
1910                         mycpu->gd_cnt.v_reactivated++;
1911                 vm_page_flag_clear(m, PG_WINATCFLS);
1912                 _vm_page_add_queue_spinlocked(m, PQ_INACTIVE + m->pc, athead);
1913                 if (athead == 0)
1914                         ++vm_swapcache_inactive_heuristic;
1915         }
1916         _vm_page_queue_spin_unlock(m);
1917         /* leaves vm_page spinlocked */
1918 }
1919
1920 /*
1921  * Attempt to deactivate a page.
1922  *
1923  * No requirements.
1924  */
1925 void
1926 vm_page_deactivate(vm_page_t m)
1927 {
1928         vm_page_spin_lock(m);
1929         _vm_page_deactivate_locked(m, 0);
1930         vm_page_spin_unlock(m);
1931 }
1932
1933 void
1934 vm_page_deactivate_locked(vm_page_t m)
1935 {
1936         _vm_page_deactivate_locked(m, 0);
1937 }
1938
1939 /*
1940  * Attempt to move a page to PQ_CACHE.
1941  *
1942  * Returns 0 on failure, 1 on success
1943  *
1944  * The page should NOT be busied by the caller.  This function will validate
1945  * whether the page can be safely moved to the cache.
1946  */
1947 int
1948 vm_page_try_to_cache(vm_page_t m)
1949 {
1950         vm_page_spin_lock(m);
1951         if (vm_page_busy_try(m, TRUE)) {
1952                 vm_page_spin_unlock(m);
1953                 return(0);
1954         }
1955         if (m->dirty || m->hold_count || m->wire_count ||
1956             (m->flags & PG_UNMANAGED)) {
1957                 if (_vm_page_wakeup(m)) {
1958                         vm_page_spin_unlock(m);
1959                         wakeup(m);
1960                 } else {
1961                         vm_page_spin_unlock(m);
1962                 }
1963                 return(0);
1964         }
1965         vm_page_spin_unlock(m);
1966
1967         /*
1968          * Page busied by us and no longer spinlocked.  Dirty pages cannot
1969          * be moved to the cache.
1970          */
1971         vm_page_test_dirty(m);
1972         if (m->dirty) {
1973                 vm_page_wakeup(m);
1974                 return(0);
1975         }
1976         vm_page_cache(m);
1977         return(1);
1978 }
1979
1980 /*
1981  * Attempt to free the page.  If we cannot free it, we do nothing.
1982  * 1 is returned on success, 0 on failure.
1983  *
1984  * No requirements.
1985  */
1986 int
1987 vm_page_try_to_free(vm_page_t m)
1988 {
1989         vm_page_spin_lock(m);
1990         if (vm_page_busy_try(m, TRUE)) {
1991                 vm_page_spin_unlock(m);
1992                 return(0);
1993         }
1994         if (m->dirty || m->hold_count || m->wire_count ||
1995             (m->flags & PG_UNMANAGED)) {
1996                 if (_vm_page_wakeup(m)) {
1997                         vm_page_spin_unlock(m);
1998                         wakeup(m);
1999                 } else {
2000                         vm_page_spin_unlock(m);
2001                 }
2002                 return(0);
2003         }
2004         vm_page_spin_unlock(m);
2005
2006         /*
2007          * Page busied by us and no longer spinlocked.  Dirty pages will
2008          * not be freed by this function.    We have to re-test the
2009          * dirty bit after cleaning out the pmaps.
2010          */
2011         vm_page_test_dirty(m);
2012         if (m->dirty) {
2013                 vm_page_wakeup(m);
2014                 return(0);
2015         }
2016         vm_page_protect(m, VM_PROT_NONE);
2017         if (m->dirty) {
2018                 vm_page_wakeup(m);
2019                 return(0);
2020         }
2021         vm_page_free(m);
2022         return(1);
2023 }
2024
2025 /*
2026  * vm_page_cache
2027  *
2028  * Put the specified page onto the page cache queue (if appropriate).
2029  *
2030  * The page must be busy, and this routine will release the busy and
2031  * possibly even free the page.
2032  */
2033 void
2034 vm_page_cache(vm_page_t m)
2035 {
2036         if ((m->flags & PG_UNMANAGED) || m->busy ||
2037             m->wire_count || m->hold_count) {
2038                 kprintf("vm_page_cache: attempting to cache busy/held page\n");
2039                 vm_page_wakeup(m);
2040                 return;
2041         }
2042
2043         /*
2044          * Already in the cache (and thus not mapped)
2045          */
2046         if ((m->queue - m->pc) == PQ_CACHE) {
2047                 KKASSERT((m->flags & PG_MAPPED) == 0);
2048                 vm_page_wakeup(m);
2049                 return;
2050         }
2051
2052         /*
2053          * Caller is required to test m->dirty, but note that the act of
2054          * removing the page from its maps can cause it to become dirty
2055          * on an SMP system due to another cpu running in usermode.
2056          */
2057         if (m->dirty) {
2058                 panic("vm_page_cache: caching a dirty page, pindex: %ld",
2059                         (long)m->pindex);
2060         }
2061
2062         /*
2063          * Remove all pmaps and indicate that the page is not
2064          * writeable or mapped.  Our vm_page_protect() call may
2065          * have blocked (especially w/ VM_PROT_NONE), so recheck
2066          * everything.
2067          */
2068         vm_page_protect(m, VM_PROT_NONE);
2069         if ((m->flags & (PG_UNMANAGED|PG_MAPPED)) || m->busy ||
2070                         m->wire_count || m->hold_count) {
2071                 vm_page_wakeup(m);
2072         } else if (m->dirty) {
2073                 vm_page_deactivate(m);
2074                 vm_page_wakeup(m);
2075         } else {
2076                 _vm_page_and_queue_spin_lock(m);
2077                 _vm_page_rem_queue_spinlocked(m);
2078                 _vm_page_add_queue_spinlocked(m, PQ_CACHE + m->pc, 0);
2079                 _vm_page_queue_spin_unlock(m);
2080                 if (_vm_page_wakeup(m)) {
2081                         vm_page_spin_unlock(m);
2082                         wakeup(m);
2083                 } else {
2084                         vm_page_spin_unlock(m);
2085                 }
2086                 vm_page_free_wakeup();
2087         }
2088 }
2089
2090 /*
2091  * vm_page_dontneed()
2092  *
2093  * Cache, deactivate, or do nothing as appropriate.  This routine
2094  * is typically used by madvise() MADV_DONTNEED.
2095  *
2096  * Generally speaking we want to move the page into the cache so
2097  * it gets reused quickly.  However, this can result in a silly syndrome
2098  * due to the page recycling too quickly.  Small objects will not be
2099  * fully cached.  On the otherhand, if we move the page to the inactive
2100  * queue we wind up with a problem whereby very large objects 
2101  * unnecessarily blow away our inactive and cache queues.
2102  *
2103  * The solution is to move the pages based on a fixed weighting.  We
2104  * either leave them alone, deactivate them, or move them to the cache,
2105  * where moving them to the cache has the highest weighting.
2106  * By forcing some pages into other queues we eventually force the
2107  * system to balance the queues, potentially recovering other unrelated
2108  * space from active.  The idea is to not force this to happen too
2109  * often.
2110  *
2111  * The page must be busied.
2112  */
2113 void
2114 vm_page_dontneed(vm_page_t m)
2115 {
2116         static int dnweight;
2117         int dnw;
2118         int head;
2119
2120         dnw = ++dnweight;
2121
2122         /*
2123          * occassionally leave the page alone
2124          */
2125         if ((dnw & 0x01F0) == 0 ||
2126             m->queue - m->pc == PQ_INACTIVE ||
2127             m->queue - m->pc == PQ_CACHE
2128         ) {
2129                 if (m->act_count >= ACT_INIT)
2130                         --m->act_count;
2131                 return;
2132         }
2133
2134         /*
2135          * If vm_page_dontneed() is inactivating a page, it must clear
2136          * the referenced flag; otherwise the pagedaemon will see references
2137          * on the page in the inactive queue and reactivate it. Until the 
2138          * page can move to the cache queue, madvise's job is not done.
2139          */
2140         vm_page_flag_clear(m, PG_REFERENCED);
2141         pmap_clear_reference(m);
2142
2143         if (m->dirty == 0)
2144                 vm_page_test_dirty(m);
2145
2146         if (m->dirty || (dnw & 0x0070) == 0) {
2147                 /*
2148                  * Deactivate the page 3 times out of 32.
2149                  */
2150                 head = 0;
2151         } else {
2152                 /*
2153                  * Cache the page 28 times out of every 32.  Note that
2154                  * the page is deactivated instead of cached, but placed
2155                  * at the head of the queue instead of the tail.
2156                  */
2157                 head = 1;
2158         }
2159         vm_page_spin_lock(m);
2160         _vm_page_deactivate_locked(m, head);
2161         vm_page_spin_unlock(m);
2162 }
2163
2164 /*
2165  * These routines manipulate the 'soft busy' count for a page.  A soft busy
2166  * is almost like PG_BUSY except that it allows certain compatible operations
2167  * to occur on the page while it is busy.  For example, a page undergoing a
2168  * write can still be mapped read-only.
2169  *
2170  * Because vm_pages can overlap buffers m->busy can be > 1.  m->busy is only
2171  * adjusted while the vm_page is PG_BUSY so the flash will occur when the
2172  * busy bit is cleared.
2173  */
2174 void
2175 vm_page_io_start(vm_page_t m)
2176 {
2177         KASSERT(m->flags & PG_BUSY, ("vm_page_io_start: page not busy!!!"));
2178         atomic_add_char(&m->busy, 1);
2179         vm_page_flag_set(m, PG_SBUSY);
2180 }
2181
2182 void
2183 vm_page_io_finish(vm_page_t m)
2184 {
2185         KASSERT(m->flags & PG_BUSY, ("vm_page_io_finish: page not busy!!!"));
2186         atomic_subtract_char(&m->busy, 1);
2187         if (m->busy == 0)
2188                 vm_page_flag_clear(m, PG_SBUSY);
2189 }
2190
2191 /*
2192  * Grab a page, blocking if it is busy and allocating a page if necessary.
2193  * A busy page is returned or NULL.  The page may or may not be valid and
2194  * might not be on a queue (the caller is responsible for the disposition of
2195  * the page).
2196  *
2197  * If VM_ALLOC_ZERO is specified and the grab must allocate a new page, the
2198  * page will be zero'd and marked valid.
2199  *
2200  * If VM_ALLOC_FORCE_ZERO is specified the page will be zero'd and marked
2201  * valid even if it already exists.
2202  *
2203  * If VM_ALLOC_RETRY is specified this routine will never return NULL.  Also
2204  * note that VM_ALLOC_NORMAL must be specified if VM_ALLOC_RETRY is specified.
2205  *
2206  * This routine may block, but if VM_ALLOC_RETRY is not set then NULL is
2207  * always returned if we had blocked.  
2208  *
2209  * This routine may not be called from an interrupt.
2210  *
2211  * PG_ZERO is *ALWAYS* cleared by this routine.
2212  *
2213  * No other requirements.
2214  */
2215 vm_page_t
2216 vm_page_grab(vm_object_t object, vm_pindex_t pindex, int allocflags)
2217 {
2218         vm_page_t m;
2219         int error;
2220
2221         KKASSERT(allocflags &
2222                 (VM_ALLOC_NORMAL|VM_ALLOC_INTERRUPT|VM_ALLOC_SYSTEM));
2223         vm_object_hold(object);
2224         for (;;) {
2225                 m = vm_page_lookup_busy_try(object, pindex, TRUE, &error);
2226                 if (error) {
2227                         vm_page_sleep_busy(m, TRUE, "pgrbwt");
2228                         if ((allocflags & VM_ALLOC_RETRY) == 0) {
2229                                 m = NULL;
2230                                 break;
2231                         }
2232                         /* retry */
2233                 } else if (m == NULL) {
2234                         m = vm_page_alloc(object, pindex,
2235                                           allocflags & ~VM_ALLOC_RETRY);
2236                         if (m)
2237                                 break;
2238                         vm_wait(0);
2239                         if ((allocflags & VM_ALLOC_RETRY) == 0)
2240                                 goto failed;
2241                 } else {
2242                         /* m found */
2243                         break;
2244                 }
2245         }
2246
2247         /*
2248          * If VM_ALLOC_ZERO an invalid page will be zero'd and set valid.
2249          *
2250          * If VM_ALLOC_FORCE_ZERO the page is unconditionally zero'd and set
2251          * valid even if already valid.
2252          */
2253         if (m->valid == 0) {
2254                 if (allocflags & (VM_ALLOC_ZERO | VM_ALLOC_FORCE_ZERO)) {
2255                         if ((m->flags & PG_ZERO) == 0)
2256                                 pmap_zero_page(VM_PAGE_TO_PHYS(m));
2257                         m->valid = VM_PAGE_BITS_ALL;
2258                 }
2259         } else if (allocflags & VM_ALLOC_FORCE_ZERO) {
2260                 pmap_zero_page(VM_PAGE_TO_PHYS(m));
2261                 m->valid = VM_PAGE_BITS_ALL;
2262         }
2263         vm_page_flag_clear(m, PG_ZERO);
2264 failed:
2265         vm_object_drop(object);
2266         return(m);
2267 }
2268
2269 /*
2270  * Mapping function for valid bits or for dirty bits in
2271  * a page.  May not block.
2272  *
2273  * Inputs are required to range within a page.
2274  *
2275  * No requirements.
2276  * Non blocking.
2277  */
2278 int
2279 vm_page_bits(int base, int size)
2280 {
2281         int first_bit;
2282         int last_bit;
2283
2284         KASSERT(
2285             base + size <= PAGE_SIZE,
2286             ("vm_page_bits: illegal base/size %d/%d", base, size)
2287         );
2288
2289         if (size == 0)          /* handle degenerate case */
2290                 return(0);
2291
2292         first_bit = base >> DEV_BSHIFT;
2293         last_bit = (base + size - 1) >> DEV_BSHIFT;
2294
2295         return ((2 << last_bit) - (1 << first_bit));
2296 }
2297
2298 /*
2299  * Sets portions of a page valid and clean.  The arguments are expected
2300  * to be DEV_BSIZE aligned but if they aren't the bitmap is inclusive
2301  * of any partial chunks touched by the range.  The invalid portion of
2302  * such chunks will be zero'd.
2303  *
2304  * NOTE: When truncating a buffer vnode_pager_setsize() will automatically
2305  *       align base to DEV_BSIZE so as not to mark clean a partially
2306  *       truncated device block.  Otherwise the dirty page status might be
2307  *       lost.
2308  *
2309  * This routine may not block.
2310  *
2311  * (base + size) must be less then or equal to PAGE_SIZE.
2312  */
2313 static void
2314 _vm_page_zero_valid(vm_page_t m, int base, int size)
2315 {
2316         int frag;
2317         int endoff;
2318
2319         if (size == 0)  /* handle degenerate case */
2320                 return;
2321
2322         /*
2323          * If the base is not DEV_BSIZE aligned and the valid
2324          * bit is clear, we have to zero out a portion of the
2325          * first block.
2326          */
2327
2328         if ((frag = base & ~(DEV_BSIZE - 1)) != base &&
2329             (m->valid & (1 << (base >> DEV_BSHIFT))) == 0
2330         ) {
2331                 pmap_zero_page_area(
2332                     VM_PAGE_TO_PHYS(m),
2333                     frag,
2334                     base - frag
2335                 );
2336         }
2337
2338         /*
2339          * If the ending offset is not DEV_BSIZE aligned and the 
2340          * valid bit is clear, we have to zero out a portion of
2341          * the last block.
2342          */
2343
2344         endoff = base + size;
2345
2346         if ((frag = endoff & ~(DEV_BSIZE - 1)) != endoff &&
2347             (m->valid & (1 << (endoff >> DEV_BSHIFT))) == 0
2348         ) {
2349                 pmap_zero_page_area(
2350                     VM_PAGE_TO_PHYS(m),
2351                     endoff,
2352                     DEV_BSIZE - (endoff & (DEV_BSIZE - 1))
2353                 );
2354         }
2355 }
2356
2357 /*
2358  * Set valid, clear dirty bits.  If validating the entire
2359  * page we can safely clear the pmap modify bit.  We also
2360  * use this opportunity to clear the PG_NOSYNC flag.  If a process
2361  * takes a write fault on a MAP_NOSYNC memory area the flag will
2362  * be set again.
2363  *
2364  * We set valid bits inclusive of any overlap, but we can only
2365  * clear dirty bits for DEV_BSIZE chunks that are fully within
2366  * the range.
2367  *
2368  * Page must be busied?
2369  * No other requirements.
2370  */
2371 void
2372 vm_page_set_valid(vm_page_t m, int base, int size)
2373 {
2374         _vm_page_zero_valid(m, base, size);
2375         m->valid |= vm_page_bits(base, size);
2376 }
2377
2378
2379 /*
2380  * Set valid bits and clear dirty bits.
2381  *
2382  * NOTE: This function does not clear the pmap modified bit.
2383  *       Also note that e.g. NFS may use a byte-granular base
2384  *       and size.
2385  *
2386  * WARNING: Page must be busied?  But vfs_clean_one_page() will call
2387  *          this without necessarily busying the page (via bdwrite()).
2388  *          So for now vm_token must also be held.
2389  *
2390  * No other requirements.
2391  */
2392 void
2393 vm_page_set_validclean(vm_page_t m, int base, int size)
2394 {
2395         int pagebits;
2396
2397         _vm_page_zero_valid(m, base, size);
2398         pagebits = vm_page_bits(base, size);
2399         m->valid |= pagebits;
2400         m->dirty &= ~pagebits;
2401         if (base == 0 && size == PAGE_SIZE) {
2402                 /*pmap_clear_modify(m);*/
2403                 vm_page_flag_clear(m, PG_NOSYNC);
2404         }
2405 }
2406
2407 /*
2408  * Set valid & dirty.  Used by buwrite()
2409  *
2410  * WARNING: Page must be busied?  But vfs_dirty_one_page() will
2411  *          call this function in buwrite() so for now vm_token must
2412  *          be held.
2413  *
2414  * No other requirements.
2415  */
2416 void
2417 vm_page_set_validdirty(vm_page_t m, int base, int size)
2418 {
2419         int pagebits;
2420
2421         pagebits = vm_page_bits(base, size);
2422         m->valid |= pagebits;
2423         m->dirty |= pagebits;
2424         if (m->object)
2425                 vm_object_set_writeable_dirty(m->object);
2426 }
2427
2428 /*
2429  * Clear dirty bits.
2430  *
2431  * NOTE: This function does not clear the pmap modified bit.
2432  *       Also note that e.g. NFS may use a byte-granular base
2433  *       and size.
2434  *
2435  * Page must be busied?
2436  * No other requirements.
2437  */
2438 void
2439 vm_page_clear_dirty(vm_page_t m, int base, int size)
2440 {
2441         m->dirty &= ~vm_page_bits(base, size);
2442         if (base == 0 && size == PAGE_SIZE) {
2443                 /*pmap_clear_modify(m);*/
2444                 vm_page_flag_clear(m, PG_NOSYNC);
2445         }
2446 }
2447
2448 /*
2449  * Make the page all-dirty.
2450  *
2451  * Also make sure the related object and vnode reflect the fact that the
2452  * object may now contain a dirty page.
2453  *
2454  * Page must be busied?
2455  * No other requirements.
2456  */
2457 void
2458 vm_page_dirty(vm_page_t m)
2459 {
2460 #ifdef INVARIANTS
2461         int pqtype = m->queue - m->pc;
2462 #endif
2463         KASSERT(pqtype != PQ_CACHE && pqtype != PQ_FREE,
2464                 ("vm_page_dirty: page in free/cache queue!"));
2465         if (m->dirty != VM_PAGE_BITS_ALL) {
2466                 m->dirty = VM_PAGE_BITS_ALL;
2467                 if (m->object)
2468                         vm_object_set_writeable_dirty(m->object);
2469         }
2470 }
2471
2472 /*
2473  * Invalidates DEV_BSIZE'd chunks within a page.  Both the
2474  * valid and dirty bits for the effected areas are cleared.
2475  *
2476  * Page must be busied?
2477  * Does not block.
2478  * No other requirements.
2479  */
2480 void
2481 vm_page_set_invalid(vm_page_t m, int base, int size)
2482 {
2483         int bits;
2484
2485         bits = vm_page_bits(base, size);
2486         m->valid &= ~bits;
2487         m->dirty &= ~bits;
2488         m->object->generation++;
2489 }
2490
2491 /*
2492  * The kernel assumes that the invalid portions of a page contain 
2493  * garbage, but such pages can be mapped into memory by user code.
2494  * When this occurs, we must zero out the non-valid portions of the
2495  * page so user code sees what it expects.
2496  *
2497  * Pages are most often semi-valid when the end of a file is mapped 
2498  * into memory and the file's size is not page aligned.
2499  *
2500  * Page must be busied?
2501  * No other requirements.
2502  */
2503 void
2504 vm_page_zero_invalid(vm_page_t m, boolean_t setvalid)
2505 {
2506         int b;
2507         int i;
2508
2509         /*
2510          * Scan the valid bits looking for invalid sections that
2511          * must be zerod.  Invalid sub-DEV_BSIZE'd areas ( where the
2512          * valid bit may be set ) have already been zerod by
2513          * vm_page_set_validclean().
2514          */
2515         for (b = i = 0; i <= PAGE_SIZE / DEV_BSIZE; ++i) {
2516                 if (i == (PAGE_SIZE / DEV_BSIZE) || 
2517                     (m->valid & (1 << i))
2518                 ) {
2519                         if (i > b) {
2520                                 pmap_zero_page_area(
2521                                     VM_PAGE_TO_PHYS(m), 
2522                                     b << DEV_BSHIFT,
2523                                     (i - b) << DEV_BSHIFT
2524                                 );
2525                         }
2526                         b = i + 1;
2527                 }
2528         }
2529
2530         /*
2531          * setvalid is TRUE when we can safely set the zero'd areas
2532          * as being valid.  We can do this if there are no cache consistency
2533          * issues.  e.g. it is ok to do with UFS, but not ok to do with NFS.
2534          */
2535         if (setvalid)
2536                 m->valid = VM_PAGE_BITS_ALL;
2537 }
2538
2539 /*
2540  * Is a (partial) page valid?  Note that the case where size == 0
2541  * will return FALSE in the degenerate case where the page is entirely
2542  * invalid, and TRUE otherwise.
2543  *
2544  * Does not block.
2545  * No other requirements.
2546  */
2547 int
2548 vm_page_is_valid(vm_page_t m, int base, int size)
2549 {
2550         int bits = vm_page_bits(base, size);
2551
2552         if (m->valid && ((m->valid & bits) == bits))
2553                 return 1;
2554         else
2555                 return 0;
2556 }
2557
2558 /*
2559  * update dirty bits from pmap/mmu.  May not block.
2560  *
2561  * Caller must hold the page busy
2562  */
2563 void
2564 vm_page_test_dirty(vm_page_t m)
2565 {
2566         if ((m->dirty != VM_PAGE_BITS_ALL) && pmap_is_modified(m)) {
2567                 vm_page_dirty(m);
2568         }
2569 }
2570
2571 /*
2572  * Register an action, associating it with its vm_page
2573  */
2574 void
2575 vm_page_register_action(vm_page_action_t action, vm_page_event_t event)
2576 {
2577         struct vm_page_action_list *list;
2578         int hv;
2579
2580         hv = (int)((intptr_t)action->m >> 8) & VMACTION_HMASK;
2581         list = &action_list[hv];
2582
2583         lwkt_gettoken(&vm_token);
2584         vm_page_flag_set(action->m, PG_ACTIONLIST);
2585         action->event = event;
2586         LIST_INSERT_HEAD(list, action, entry);
2587         lwkt_reltoken(&vm_token);
2588 }
2589
2590 /*
2591  * Unregister an action, disassociating it from its related vm_page
2592  */
2593 void
2594 vm_page_unregister_action(vm_page_action_t action)
2595 {
2596         struct vm_page_action_list *list;
2597         int hv;
2598
2599         lwkt_gettoken(&vm_token);
2600         if (action->event != VMEVENT_NONE) {
2601                 action->event = VMEVENT_NONE;
2602                 LIST_REMOVE(action, entry);
2603
2604                 hv = (int)((intptr_t)action->m >> 8) & VMACTION_HMASK;
2605                 list = &action_list[hv];
2606                 if (LIST_EMPTY(list))
2607                         vm_page_flag_clear(action->m, PG_ACTIONLIST);
2608         }
2609         lwkt_reltoken(&vm_token);
2610 }
2611
2612 /*
2613  * Issue an event on a VM page.  Corresponding action structures are
2614  * removed from the page's list and called.
2615  *
2616  * If the vm_page has no more pending action events we clear its
2617  * PG_ACTIONLIST flag.
2618  */
2619 void
2620 vm_page_event_internal(vm_page_t m, vm_page_event_t event)
2621 {
2622         struct vm_page_action_list *list;
2623         struct vm_page_action *scan;
2624         struct vm_page_action *next;
2625         int hv;
2626         int all;
2627
2628         hv = (int)((intptr_t)m >> 8) & VMACTION_HMASK;
2629         list = &action_list[hv];
2630         all = 1;
2631
2632         lwkt_gettoken(&vm_token);
2633         LIST_FOREACH_MUTABLE(scan, list, entry, next) {
2634                 if (scan->m == m) {
2635                         if (scan->event == event) {
2636                                 scan->event = VMEVENT_NONE;
2637                                 LIST_REMOVE(scan, entry);
2638                                 scan->func(m, scan);
2639                                 /* XXX */
2640                         } else {
2641                                 all = 0;
2642                         }
2643                 }
2644         }
2645         if (all)
2646                 vm_page_flag_clear(m, PG_ACTIONLIST);
2647         lwkt_reltoken(&vm_token);
2648 }
2649
2650 #include "opt_ddb.h"
2651 #ifdef DDB
2652 #include <sys/kernel.h>
2653
2654 #include <ddb/ddb.h>
2655
2656 DB_SHOW_COMMAND(page, vm_page_print_page_info)
2657 {
2658         db_printf("vmstats.v_free_count: %d\n", vmstats.v_free_count);
2659         db_printf("vmstats.v_cache_count: %d\n", vmstats.v_cache_count);
2660         db_printf("vmstats.v_inactive_count: %d\n", vmstats.v_inactive_count);
2661         db_printf("vmstats.v_active_count: %d\n", vmstats.v_active_count);
2662         db_printf("vmstats.v_wire_count: %d\n", vmstats.v_wire_count);
2663         db_printf("vmstats.v_free_reserved: %d\n", vmstats.v_free_reserved);
2664         db_printf("vmstats.v_free_min: %d\n", vmstats.v_free_min);
2665         db_printf("vmstats.v_free_target: %d\n", vmstats.v_free_target);
2666         db_printf("vmstats.v_cache_min: %d\n", vmstats.v_cache_min);
2667         db_printf("vmstats.v_inactive_target: %d\n", vmstats.v_inactive_target);
2668 }
2669
2670 DB_SHOW_COMMAND(pageq, vm_page_print_pageq_info)
2671 {
2672         int i;
2673         db_printf("PQ_FREE:");
2674         for(i=0;i<PQ_L2_SIZE;i++) {
2675                 db_printf(" %d", vm_page_queues[PQ_FREE + i].lcnt);
2676         }
2677         db_printf("\n");
2678                 
2679         db_printf("PQ_CACHE:");
2680         for(i=0;i<PQ_L2_SIZE;i++) {
2681                 db_printf(" %d", vm_page_queues[PQ_CACHE + i].lcnt);
2682         }
2683         db_printf("\n");
2684
2685         db_printf("PQ_ACTIVE:");
2686         for(i=0;i<PQ_L2_SIZE;i++) {
2687                 db_printf(" %d", vm_page_queues[PQ_ACTIVE + i].lcnt);
2688         }
2689         db_printf("\n");
2690
2691         db_printf("PQ_INACTIVE:");
2692         for(i=0;i<PQ_L2_SIZE;i++) {
2693                 db_printf(" %d", vm_page_queues[PQ_INACTIVE + i].lcnt);
2694         }
2695         db_printf("\n");
2696 }
2697 #endif /* DDB */