Replace the the buffer cache's B_READ, B_WRITE, B_FORMAT, and B_FREEBUF
[dragonfly.git] / sys / vm / swap_pager.c
1 /*
2  * Copyright (c) 1998,2004 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * Copyright (c) 1994 John S. Dyson
35  * Copyright (c) 1990 University of Utah.
36  * Copyright (c) 1991, 1993
37  *      The Regents of the University of California.  All rights reserved.
38  *
39  * This code is derived from software contributed to Berkeley by
40  * the Systems Programming Group of the University of Utah Computer
41  * Science Department.
42  *
43  * Redistribution and use in source and binary forms, with or without
44  * modification, are permitted provided that the following conditions
45  * are met:
46  * 1. Redistributions of source code must retain the above copyright
47  *    notice, this list of conditions and the following disclaimer.
48  * 2. Redistributions in binary form must reproduce the above copyright
49  *    notice, this list of conditions and the following disclaimer in the
50  *    documentation and/or other materials provided with the distribution.
51  * 3. All advertising materials mentioning features or use of this software
52  *    must display the following acknowledgement:
53  *      This product includes software developed by the University of
54  *      California, Berkeley and its contributors.
55  * 4. Neither the name of the University nor the names of its contributors
56  *    may be used to endorse or promote products derived from this software
57  *    without specific prior written permission.
58  *
59  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69  * SUCH DAMAGE.
70  *
71  *                              New Swap System
72  *                              Matthew Dillon
73  *
74  * Radix Bitmap 'blists'.
75  *
76  *      - The new swapper uses the new radix bitmap code.  This should scale
77  *        to arbitrarily small or arbitrarily large swap spaces and an almost
78  *        arbitrary degree of fragmentation.
79  *
80  * Features:
81  *
82  *      - on the fly reallocation of swap during putpages.  The new system
83  *        does not try to keep previously allocated swap blocks for dirty
84  *        pages.  
85  *
86  *      - on the fly deallocation of swap
87  *
88  *      - No more garbage collection required.  Unnecessarily allocated swap
89  *        blocks only exist for dirty vm_page_t's now and these are already
90  *        cycled (in a high-load system) by the pager.  We also do on-the-fly
91  *        removal of invalidated swap blocks when a page is destroyed
92  *        or renamed.
93  *
94  * from: Utah $Hdr: swap_pager.c 1.4 91/04/30$
95  *
96  *      @(#)swap_pager.c        8.9 (Berkeley) 3/21/94
97  *
98  * $FreeBSD: src/sys/vm/swap_pager.c,v 1.130.2.12 2002/08/31 21:15:55 dillon Exp $
99  * $DragonFly: src/sys/vm/swap_pager.c,v 1.22 2006/04/30 17:22:18 dillon Exp $
100  */
101
102 #include <sys/param.h>
103 #include <sys/systm.h>
104 #include <sys/conf.h>
105 #include <sys/kernel.h>
106 #include <sys/proc.h>
107 #include <sys/buf.h>
108 #include <sys/vnode.h>
109 #include <sys/malloc.h>
110 #include <sys/vmmeter.h>
111 #include <sys/sysctl.h>
112 #include <sys/blist.h>
113 #include <sys/lock.h>
114 #include <sys/thread2.h>
115
116 #ifndef MAX_PAGEOUT_CLUSTER
117 #define MAX_PAGEOUT_CLUSTER 16
118 #endif
119
120 #define SWB_NPAGES      MAX_PAGEOUT_CLUSTER
121
122 #include "opt_swap.h"
123 #include <vm/vm.h>
124 #include <vm/vm_object.h>
125 #include <vm/vm_page.h>
126 #include <vm/vm_pager.h>
127 #include <vm/vm_pageout.h>
128 #include <vm/swap_pager.h>
129 #include <vm/vm_extern.h>
130 #include <vm/vm_zone.h>
131
132 #include <sys/buf2.h>
133 #include <vm/vm_page2.h>
134
135 #define SWM_FREE        0x02    /* free, period                 */
136 #define SWM_POP         0x04    /* pop out                      */
137
138 /*
139  * vm_swap_size is in page-sized chunks now.  It was DEV_BSIZE'd chunks
140  * in the old system.
141  */
142
143 extern int vm_swap_size;        /* number of free swap blocks, in pages */
144
145 int swap_pager_full;            /* swap space exhaustion (task killing) */
146 static int swap_pager_almost_full; /* swap space exhaustion (w/ hysteresis)*/
147 static int nsw_rcount;          /* free read buffers                    */
148 static int nsw_wcount_sync;     /* limit write buffers / synchronous    */
149 static int nsw_wcount_async;    /* limit write buffers / asynchronous   */
150 static int nsw_wcount_async_max;/* assigned maximum                     */
151 static int nsw_cluster_max;     /* maximum VOP I/O allowed              */
152 static int sw_alloc_interlock;  /* swap pager allocation interlock      */
153
154 struct blist *swapblist;
155 static struct swblock **swhash;
156 static int swhash_mask;
157 static int swap_async_max = 4;  /* maximum in-progress async I/O's      */
158
159 extern struct vnode *swapdev_vp;        /* from vm_swap.c */
160
161 SYSCTL_INT(_vm, OID_AUTO, swap_async_max,
162         CTLFLAG_RW, &swap_async_max, 0, "Maximum running async swap ops");
163
164 /*
165  * "named" and "unnamed" anon region objects.  Try to reduce the overhead
166  * of searching a named list by hashing it just a little.
167  */
168
169 #define NOBJLISTS               8
170
171 #define NOBJLIST(handle)        \
172         (&swap_pager_object_list[((int)(intptr_t)handle >> 4) & (NOBJLISTS-1)])
173
174 static struct pagerlst  swap_pager_object_list[NOBJLISTS];
175 struct pagerlst         swap_pager_un_object_list;
176 vm_zone_t               swap_zone;
177
178 /*
179  * pagerops for OBJT_SWAP - "swap pager".  Some ops are also global procedure
180  * calls hooked from other parts of the VM system and do not appear here.
181  * (see vm/swap_pager.h).
182  */
183
184 static vm_object_t
185                 swap_pager_alloc (void *handle, off_t size,
186                                   vm_prot_t prot, off_t offset);
187 static void     swap_pager_dealloc (vm_object_t object);
188 static int      swap_pager_getpages (vm_object_t, vm_page_t *, int, int);
189 static void     swap_pager_init (void);
190 static void     swap_pager_unswapped (vm_page_t);
191 static void     swap_pager_strategy (vm_object_t, struct bio *);
192 static void     swap_chain_iodone(struct bio *biox);
193
194 struct pagerops swappagerops = {
195         swap_pager_init,        /* early system initialization of pager */
196         swap_pager_alloc,       /* allocate an OBJT_SWAP object         */
197         swap_pager_dealloc,     /* deallocate an OBJT_SWAP object       */
198         swap_pager_getpages,    /* pagein                               */
199         swap_pager_putpages,    /* pageout                              */
200         swap_pager_haspage,     /* get backing store status for page    */
201         swap_pager_unswapped,   /* remove swap related to page          */
202         swap_pager_strategy     /* pager strategy call                  */
203 };
204
205 /*
206  * dmmax is in page-sized chunks with the new swap system.  It was
207  * dev-bsized chunks in the old.  dmmax is always a power of 2.
208  *
209  * swap_*() routines are externally accessible.  swp_*() routines are
210  * internal.
211  */
212
213 int dmmax;
214 static int dmmax_mask;
215 int nswap_lowat = 128;          /* in pages, swap_pager_almost_full warn */
216 int nswap_hiwat = 512;          /* in pages, swap_pager_almost_full warn */
217
218 static __inline void    swp_sizecheck (void);
219 static void     swp_pager_sync_iodone (struct bio *bio);
220 static void     swp_pager_async_iodone (struct bio *bio);
221
222 /*
223  * Swap bitmap functions
224  */
225
226 static __inline void    swp_pager_freeswapspace (daddr_t blk, int npages);
227 static __inline daddr_t swp_pager_getswapspace (int npages);
228
229 /*
230  * Metadata functions
231  */
232
233 static void swp_pager_meta_build (vm_object_t, vm_pindex_t, daddr_t);
234 static void swp_pager_meta_free (vm_object_t, vm_pindex_t, daddr_t);
235 static void swp_pager_meta_free_all (vm_object_t);
236 static daddr_t swp_pager_meta_ctl (vm_object_t, vm_pindex_t, int);
237
238 /*
239  * SWP_SIZECHECK() -    update swap_pager_full indication
240  *      
241  *      update the swap_pager_almost_full indication and warn when we are
242  *      about to run out of swap space, using lowat/hiwat hysteresis.
243  *
244  *      Clear swap_pager_full ( task killing ) indication when lowat is met.
245  *
246  *      No restrictions on call
247  *      This routine may not block.
248  *      This routine must be called at splvm()
249  */
250
251 static __inline void
252 swp_sizecheck(void)
253 {
254         if (vm_swap_size < nswap_lowat) {
255                 if (swap_pager_almost_full == 0) {
256                         printf("swap_pager: out of swap space\n");
257                         swap_pager_almost_full = 1;
258                 }
259         } else {
260                 swap_pager_full = 0;
261                 if (vm_swap_size > nswap_hiwat)
262                         swap_pager_almost_full = 0;
263         }
264 }
265
266 /*
267  * SWAP_PAGER_INIT() -  initialize the swap pager!
268  *
269  *      Expected to be started from system init.  NOTE:  This code is run 
270  *      before much else so be careful what you depend on.  Most of the VM
271  *      system has yet to be initialized at this point.
272  */
273
274 static void
275 swap_pager_init(void)
276 {
277         /*
278          * Initialize object lists
279          */
280         int i;
281
282         for (i = 0; i < NOBJLISTS; ++i)
283                 TAILQ_INIT(&swap_pager_object_list[i]);
284         TAILQ_INIT(&swap_pager_un_object_list);
285
286         /*
287          * Device Stripe, in PAGE_SIZE'd blocks
288          */
289
290         dmmax = SWB_NPAGES * 2;
291         dmmax_mask = ~(dmmax - 1);
292 }
293
294 /*
295  * SWAP_PAGER_SWAP_INIT() - swap pager initialization from pageout process
296  *
297  *      Expected to be started from pageout process once, prior to entering
298  *      its main loop.
299  */
300
301 void
302 swap_pager_swap_init(void)
303 {
304         int n, n2;
305
306         /*
307          * Number of in-transit swap bp operations.  Don't
308          * exhaust the pbufs completely.  Make sure we
309          * initialize workable values (0 will work for hysteresis
310          * but it isn't very efficient).
311          *
312          * The nsw_cluster_max is constrained by the number of pages an XIO
313          * holds, i.e., (MAXPHYS/PAGE_SIZE) and our locally defined
314          * MAX_PAGEOUT_CLUSTER.   Also be aware that swap ops are
315          * constrained by the swap device interleave stripe size.
316          *
317          * Currently we hardwire nsw_wcount_async to 4.  This limit is 
318          * designed to prevent other I/O from having high latencies due to
319          * our pageout I/O.  The value 4 works well for one or two active swap
320          * devices but is probably a little low if you have more.  Even so,
321          * a higher value would probably generate only a limited improvement
322          * with three or four active swap devices since the system does not
323          * typically have to pageout at extreme bandwidths.   We will want
324          * at least 2 per swap devices, and 4 is a pretty good value if you
325          * have one NFS swap device due to the command/ack latency over NFS.
326          * So it all works out pretty well.
327          */
328
329         nsw_cluster_max = min((MAXPHYS/PAGE_SIZE), MAX_PAGEOUT_CLUSTER);
330
331         nsw_rcount = (nswbuf + 1) / 2;
332         nsw_wcount_sync = (nswbuf + 3) / 4;
333         nsw_wcount_async = 4;
334         nsw_wcount_async_max = nsw_wcount_async;
335
336         /*
337          * Initialize our zone.  Right now I'm just guessing on the number
338          * we need based on the number of pages in the system.  Each swblock
339          * can hold 16 pages, so this is probably overkill.  This reservation
340          * is typically limited to around 32MB by default.
341          */
342         n = vmstats.v_page_count / 2;
343         if (maxswzone && n > maxswzone / sizeof(struct swblock))
344                 n = maxswzone / sizeof(struct swblock);
345         n2 = n;
346
347         do {
348                 swap_zone = zinit(
349                         "SWAPMETA", 
350                         sizeof(struct swblock), 
351                         n,
352                         ZONE_INTERRUPT, 
353                         1);
354                 if (swap_zone != NULL)
355                         break;
356                 /*
357                  * if the allocation failed, try a zone two thirds the
358                  * size of the previous attempt.
359                  */
360                 n -= ((n + 2) / 3);
361         } while (n > 0);
362
363         if (swap_zone == NULL)
364                 panic("swap_pager_swap_init: swap_zone == NULL");
365         if (n2 != n)
366                 printf("Swap zone entries reduced from %d to %d.\n", n2, n);
367         n2 = n;
368
369         /*
370          * Initialize our meta-data hash table.  The swapper does not need to
371          * be quite as efficient as the VM system, so we do not use an 
372          * oversized hash table.
373          *
374          *      n:              size of hash table, must be power of 2
375          *      swhash_mask:    hash table index mask
376          */
377
378         for (n = 1; n < n2 / 8; n *= 2)
379                 ;
380
381         swhash = malloc(sizeof(struct swblock *) * n, M_VMPGDATA, M_WAITOK);
382         bzero(swhash, sizeof(struct swblock *) * n);
383
384         swhash_mask = n - 1;
385 }
386
387 /*
388  * SWAP_PAGER_ALLOC() - allocate a new OBJT_SWAP VM object and instantiate
389  *                      its metadata structures.
390  *
391  *      This routine is called from the mmap and fork code to create a new
392  *      OBJT_SWAP object.  We do this by creating an OBJT_DEFAULT object
393  *      and then converting it with swp_pager_meta_build().
394  *
395  *      This routine may block in vm_object_allocate() and create a named
396  *      object lookup race, so we must interlock.   We must also run at
397  *      splvm() for the object lookup to handle races with interrupts, but
398  *      we do not have to maintain splvm() in between the lookup and the
399  *      add because (I believe) it is not possible to attempt to create
400  *      a new swap object w/handle when a default object with that handle
401  *      already exists.
402  */
403
404 static vm_object_t
405 swap_pager_alloc(void *handle, off_t size, vm_prot_t prot, off_t offset)
406 {
407         vm_object_t object;
408
409         if (handle) {
410                 /*
411                  * Reference existing named region or allocate new one.  There
412                  * should not be a race here against swp_pager_meta_build()
413                  * as called from vm_page_remove() in regards to the lookup
414                  * of the handle.
415                  */
416
417                 while (sw_alloc_interlock) {
418                         sw_alloc_interlock = -1;
419                         tsleep(&sw_alloc_interlock, 0, "swpalc", 0);
420                 }
421                 sw_alloc_interlock = 1;
422
423                 object = vm_pager_object_lookup(NOBJLIST(handle), handle);
424
425                 if (object != NULL) {
426                         vm_object_reference(object);
427                 } else {
428                         object = vm_object_allocate(OBJT_DEFAULT,
429                                 OFF_TO_IDX(offset + PAGE_MASK + size));
430                         object->handle = handle;
431
432                         swp_pager_meta_build(object, 0, SWAPBLK_NONE);
433                 }
434
435                 if (sw_alloc_interlock < 0)
436                         wakeup(&sw_alloc_interlock);
437
438                 sw_alloc_interlock = 0;
439         } else {
440                 object = vm_object_allocate(OBJT_DEFAULT,
441                         OFF_TO_IDX(offset + PAGE_MASK + size));
442
443                 swp_pager_meta_build(object, 0, SWAPBLK_NONE);
444         }
445
446         return (object);
447 }
448
449 /*
450  * SWAP_PAGER_DEALLOC() -       remove swap metadata from object
451  *
452  *      The swap backing for the object is destroyed.  The code is 
453  *      designed such that we can reinstantiate it later, but this
454  *      routine is typically called only when the entire object is
455  *      about to be destroyed.
456  *
457  *      This routine may block, but no longer does. 
458  *
459  *      The object must be locked or unreferenceable.
460  */
461
462 static void
463 swap_pager_dealloc(vm_object_t object)
464 {
465         /*
466          * Remove from list right away so lookups will fail if we block for
467          * pageout completion.
468          */
469
470         if (object->handle == NULL) {
471                 TAILQ_REMOVE(&swap_pager_un_object_list, object, pager_object_list);
472         } else {
473                 TAILQ_REMOVE(NOBJLIST(object->handle), object, pager_object_list);
474         }
475
476         vm_object_pip_wait(object, "swpdea");
477
478         /*
479          * Free all remaining metadata.  We only bother to free it from 
480          * the swap meta data.  We do not attempt to free swapblk's still
481          * associated with vm_page_t's for this object.  We do not care
482          * if paging is still in progress on some objects.
483          */
484         crit_enter();
485         swp_pager_meta_free_all(object);
486         crit_exit();
487 }
488
489 /************************************************************************
490  *                      SWAP PAGER BITMAP ROUTINES                      *
491  ************************************************************************/
492
493 /*
494  * SWP_PAGER_GETSWAPSPACE() -   allocate raw swap space
495  *
496  *      Allocate swap for the requested number of pages.  The starting
497  *      swap block number (a page index) is returned or SWAPBLK_NONE
498  *      if the allocation failed.
499  *
500  *      Also has the side effect of advising that somebody made a mistake
501  *      when they configured swap and didn't configure enough.
502  *
503  *      Must be called at splvm() to avoid races with bitmap frees from
504  *      vm_page_remove() aka swap_pager_page_removed().
505  *
506  *      This routine may not block
507  *      This routine must be called at splvm().
508  */
509
510 static __inline daddr_t
511 swp_pager_getswapspace(int npages)
512 {
513         daddr_t blk;
514
515         if ((blk = blist_alloc(swapblist, npages)) == SWAPBLK_NONE) {
516                 if (swap_pager_full != 2) {
517                         printf("swap_pager_getswapspace: failed\n");
518                         swap_pager_full = 2;
519                         swap_pager_almost_full = 1;
520                 }
521         } else {
522                 vm_swap_size -= npages;
523                 swp_sizecheck();
524         }
525         return(blk);
526 }
527
528 /*
529  * SWP_PAGER_FREESWAPSPACE() -  free raw swap space 
530  *
531  *      This routine returns the specified swap blocks back to the bitmap.
532  *
533  *      Note:  This routine may not block (it could in the old swap code),
534  *      and through the use of the new blist routines it does not block.
535  *
536  *      We must be called at splvm() to avoid races with bitmap frees from
537  *      vm_page_remove() aka swap_pager_page_removed().
538  *
539  *      This routine may not block
540  *      This routine must be called at splvm().
541  */
542
543 static __inline void
544 swp_pager_freeswapspace(daddr_t blk, int npages)
545 {
546         blist_free(swapblist, blk, npages);
547         vm_swap_size += npages;
548         swp_sizecheck();
549 }
550
551 /*
552  * SWAP_PAGER_FREESPACE() -     frees swap blocks associated with a page
553  *                              range within an object.
554  *
555  *      This is a globally accessible routine.
556  *
557  *      This routine removes swapblk assignments from swap metadata.
558  *
559  *      The external callers of this routine typically have already destroyed 
560  *      or renamed vm_page_t's associated with this range in the object so 
561  *      we should be ok.
562  *
563  *      This routine may be called at any spl.  We up our spl to splvm temporarily
564  *      in order to perform the metadata removal.
565  */
566
567 void
568 swap_pager_freespace(vm_object_t object, vm_pindex_t start, vm_size_t size)
569 {
570         crit_enter();
571         swp_pager_meta_free(object, start, size);
572         crit_exit();
573 }
574
575 /*
576  * SWAP_PAGER_RESERVE() - reserve swap blocks in object
577  *
578  *      Assigns swap blocks to the specified range within the object.  The 
579  *      swap blocks are not zerod.  Any previous swap assignment is destroyed.
580  *
581  *      Returns 0 on success, -1 on failure.
582  */
583
584 int
585 swap_pager_reserve(vm_object_t object, vm_pindex_t start, vm_size_t size)
586 {
587         int n = 0;
588         daddr_t blk = SWAPBLK_NONE;
589         vm_pindex_t beg = start;        /* save start index */
590
591         crit_enter();
592         while (size) {
593                 if (n == 0) {
594                         n = BLIST_MAX_ALLOC;
595                         while ((blk = swp_pager_getswapspace(n)) == SWAPBLK_NONE) {
596                                 n >>= 1;
597                                 if (n == 0) {
598                                         swp_pager_meta_free(object, beg, start - beg);
599                                         crit_exit();
600                                         return(-1);
601                                 }
602                         }
603                 }
604                 swp_pager_meta_build(object, start, blk);
605                 --size;
606                 ++start;
607                 ++blk;
608                 --n;
609         }
610         swp_pager_meta_free(object, start, n);
611         crit_exit();
612         return(0);
613 }
614
615 /*
616  * SWAP_PAGER_COPY() -  copy blocks from source pager to destination pager
617  *                      and destroy the source.
618  *
619  *      Copy any valid swapblks from the source to the destination.  In
620  *      cases where both the source and destination have a valid swapblk,
621  *      we keep the destination's.
622  *
623  *      This routine is allowed to block.  It may block allocating metadata
624  *      indirectly through swp_pager_meta_build() or if paging is still in
625  *      progress on the source. 
626  *
627  *      This routine can be called at any spl
628  *
629  *      XXX vm_page_collapse() kinda expects us not to block because we 
630  *      supposedly do not need to allocate memory, but for the moment we
631  *      *may* have to get a little memory from the zone allocator, but
632  *      it is taken from the interrupt memory.  We should be ok. 
633  *
634  *      The source object contains no vm_page_t's (which is just as well)
635  *
636  *      The source object is of type OBJT_SWAP.
637  *
638  *      The source and destination objects must be locked or 
639  *      inaccessible (XXX are they ?)
640  */
641
642 void
643 swap_pager_copy(vm_object_t srcobject, vm_object_t dstobject,
644     vm_pindex_t offset, int destroysource)
645 {
646         vm_pindex_t i;
647
648         crit_enter();
649
650         /*
651          * If destroysource is set, we remove the source object from the 
652          * swap_pager internal queue now. 
653          */
654
655         if (destroysource) {
656                 if (srcobject->handle == NULL) {
657                         TAILQ_REMOVE(
658                             &swap_pager_un_object_list, 
659                             srcobject, 
660                             pager_object_list
661                         );
662                 } else {
663                         TAILQ_REMOVE(
664                             NOBJLIST(srcobject->handle),
665                             srcobject,
666                             pager_object_list
667                         );
668                 }
669         }
670
671         /*
672          * transfer source to destination.
673          */
674
675         for (i = 0; i < dstobject->size; ++i) {
676                 daddr_t dstaddr;
677
678                 /*
679                  * Locate (without changing) the swapblk on the destination,
680                  * unless it is invalid in which case free it silently, or
681                  * if the destination is a resident page, in which case the
682                  * source is thrown away.
683                  */
684
685                 dstaddr = swp_pager_meta_ctl(dstobject, i, 0);
686
687                 if (dstaddr == SWAPBLK_NONE) {
688                         /*
689                          * Destination has no swapblk and is not resident,
690                          * copy source.
691                          */
692                         daddr_t srcaddr;
693
694                         srcaddr = swp_pager_meta_ctl(
695                             srcobject, 
696                             i + offset,
697                             SWM_POP
698                         );
699
700                         if (srcaddr != SWAPBLK_NONE)
701                                 swp_pager_meta_build(dstobject, i, srcaddr);
702                 } else {
703                         /*
704                          * Destination has valid swapblk or it is represented
705                          * by a resident page.  We destroy the sourceblock.
706                          */
707                         
708                         swp_pager_meta_ctl(srcobject, i + offset, SWM_FREE);
709                 }
710         }
711
712         /*
713          * Free left over swap blocks in source.
714          *
715          * We have to revert the type to OBJT_DEFAULT so we do not accidently
716          * double-remove the object from the swap queues.
717          */
718
719         if (destroysource) {
720                 swp_pager_meta_free_all(srcobject);
721                 /*
722                  * Reverting the type is not necessary, the caller is going
723                  * to destroy srcobject directly, but I'm doing it here
724                  * for consistency since we've removed the object from its
725                  * queues.
726                  */
727                 srcobject->type = OBJT_DEFAULT;
728         }
729         crit_exit();
730 }
731
732 /*
733  * SWAP_PAGER_HASPAGE() -       determine if we have good backing store for
734  *                              the requested page.
735  *
736  *      We determine whether good backing store exists for the requested
737  *      page and return TRUE if it does, FALSE if it doesn't.
738  *
739  *      If TRUE, we also try to determine how much valid, contiguous backing
740  *      store exists before and after the requested page within a reasonable
741  *      distance.  We do not try to restrict it to the swap device stripe
742  *      (that is handled in getpages/putpages).  It probably isn't worth
743  *      doing here.
744  */
745
746 boolean_t
747 swap_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before,
748     int *after)
749 {
750         daddr_t blk0;
751
752         /*
753          * do we have good backing store at the requested index ?
754          */
755
756         crit_enter();
757         blk0 = swp_pager_meta_ctl(object, pindex, 0);
758
759         if (blk0 == SWAPBLK_NONE) {
760                 crit_exit();
761                 if (before)
762                         *before = 0;
763                 if (after)
764                         *after = 0;
765                 return (FALSE);
766         }
767
768         /*
769          * find backwards-looking contiguous good backing store
770          */
771
772         if (before != NULL) {
773                 int i;
774
775                 for (i = 1; i < (SWB_NPAGES/2); ++i) {
776                         daddr_t blk;
777
778                         if (i > pindex)
779                                 break;
780                         blk = swp_pager_meta_ctl(object, pindex - i, 0);
781                         if (blk != blk0 - i)
782                                 break;
783                 }
784                 *before = (i - 1);
785         }
786
787         /*
788          * find forward-looking contiguous good backing store
789          */
790
791         if (after != NULL) {
792                 int i;
793
794                 for (i = 1; i < (SWB_NPAGES/2); ++i) {
795                         daddr_t blk;
796
797                         blk = swp_pager_meta_ctl(object, pindex + i, 0);
798                         if (blk != blk0 + i)
799                                 break;
800                 }
801                 *after = (i - 1);
802         }
803         crit_exit();
804         return (TRUE);
805 }
806
807 /*
808  * SWAP_PAGER_PAGE_UNSWAPPED() - remove swap backing store related to page
809  *
810  *      This removes any associated swap backing store, whether valid or
811  *      not, from the page.  
812  *
813  *      This routine is typically called when a page is made dirty, at
814  *      which point any associated swap can be freed.  MADV_FREE also
815  *      calls us in a special-case situation
816  *
817  *      NOTE!!!  If the page is clean and the swap was valid, the caller
818  *      should make the page dirty before calling this routine.  This routine
819  *      does NOT change the m->dirty status of the page.  Also: MADV_FREE
820  *      depends on it.
821  *
822  *      This routine may not block
823  *      This routine must be called at splvm()
824  */
825
826 static void
827 swap_pager_unswapped(vm_page_t m)
828 {
829         swp_pager_meta_ctl(m->object, m->pindex, SWM_FREE);
830 }
831
832 /*
833  * SWAP_PAGER_STRATEGY() - read, write, free blocks
834  *
835  *      This implements the vm_pager_strategy() interface to swap and allows
836  *      other parts of the system to directly access swap as backing store
837  *      through vm_objects of type OBJT_SWAP.  This is intended to be a 
838  *      cacheless interface ( i.e. caching occurs at higher levels ).
839  *      Therefore we do not maintain any resident pages.  All I/O goes
840  *      directly to and from the swap device.
841  *      
842  *      We currently attempt to run I/O synchronously or asynchronously as
843  *      the caller requests.  This isn't perfect because we loose error
844  *      sequencing when we run multiple ops in parallel to satisfy a request.
845  *      But this is swap, so we let it all hang out.
846  */
847
848 static void     
849 swap_pager_strategy(vm_object_t object, struct bio *bio)
850 {
851         struct buf *bp = bio->bio_buf;
852         struct bio *nbio;
853         vm_pindex_t start;
854         vm_pindex_t biox_blkno = 0;
855         int count;
856         char *data;
857         struct bio *biox = NULL;
858         struct buf *bufx = NULL;
859         struct bio_track *track;
860
861         /*
862          * tracking for swapdev vnode I/Os
863          */
864         if (bp->b_cmd == BUF_CMD_READ)
865                 track = &swapdev_vp->v_track_read;
866         else
867                 track = &swapdev_vp->v_track_write;
868
869         if (bp->b_bcount & PAGE_MASK) {
870                 bp->b_error = EINVAL;
871                 bp->b_flags |= B_ERROR | B_INVAL;
872                 biodone(bio);
873                 printf("swap_pager_strategy: bp %p offset %lld size %d, not page bounded\n", bp, bio->bio_offset, (int)bp->b_bcount);
874                 return;
875         }
876
877         /*
878          * Clear error indication, initialize page index, count, data pointer.
879          */
880         bp->b_error = 0;
881         bp->b_flags &= ~B_ERROR;
882         bp->b_resid = bp->b_bcount;
883
884         start = (vm_pindex_t)(bio->bio_offset >> PAGE_SHIFT);
885         count = howmany(bp->b_bcount, PAGE_SIZE);
886         data = bp->b_data;
887
888         crit_enter();
889
890         /*
891          * Deal with BUF_CMD_FREEBLKS
892          */
893         if (bp->b_cmd == BUF_CMD_FREEBLKS) {
894                 /*
895                  * FREE PAGE(s) - destroy underlying swap that is no longer
896                  *                needed.
897                  */
898                 swp_pager_meta_free(object, start, count);
899                 crit_exit();
900                 bp->b_resid = 0;
901                 biodone(bio);
902                 return;
903         }
904
905         /*
906          * We need to be able to create a new cluster of I/O's.  We cannot
907          * use the caller fields of the passed bio so push a new one.
908          *
909          * Because nbio is just a placeholder for the cluster links,
910          * we can biodone() the original bio instead of nbio to make
911          * things a bit more efficient.
912          */
913         nbio = push_bio(bio);
914         nbio->bio_offset = bio->bio_offset;
915         nbio->bio_caller_info1.cluster_head = NULL;
916         nbio->bio_caller_info2.cluster_tail = NULL;
917
918         /*
919          * Execute read or write
920          */
921
922         while (count > 0) {
923                 daddr_t blk;
924
925                 /*
926                  * Obtain block.  If block not found and writing, allocate a
927                  * new block and build it into the object.
928                  */
929
930                 blk = swp_pager_meta_ctl(object, start, 0);
931                 if ((blk == SWAPBLK_NONE) && bp->b_cmd != BUF_CMD_READ) {
932                         blk = swp_pager_getswapspace(1);
933                         if (blk == SWAPBLK_NONE) {
934                                 bp->b_error = ENOMEM;
935                                 bp->b_flags |= B_ERROR;
936                                 break;
937                         }
938                         swp_pager_meta_build(object, start, blk);
939                 }
940                         
941                 /*
942                  * Do we have to flush our current collection?  Yes if:
943                  *
944                  *      - no swap block at this index
945                  *      - swap block is not contiguous
946                  *      - we cross a physical disk boundry in the
947                  *        stripe.
948                  */
949
950                 if (
951                     biox && (biox_blkno + btoc(bufx->b_bcount) != blk ||
952                      ((biox_blkno ^ blk) & dmmax_mask)
953                     )
954                 ) {
955                         crit_exit();
956                         if (bp->b_cmd == BUF_CMD_READ) {
957                                 ++mycpu->gd_cnt.v_swapin;
958                                 mycpu->gd_cnt.v_swappgsin += btoc(bufx->b_bcount);
959                         } else {
960                                 ++mycpu->gd_cnt.v_swapout;
961                                 mycpu->gd_cnt.v_swappgsout += btoc(bufx->b_bcount);
962                                 bufx->b_dirtyend = bufx->b_bcount;
963                         }
964
965                         /*
966                          * Flush the biox to the swap device.
967                          */
968                         if (bufx->b_bcount) {
969                                 bufx->b_bufsize = bufx->b_bcount;
970                                 if (bufx->b_cmd != BUF_CMD_READ)
971                                         bufx->b_dirtyend = bufx->b_bcount;
972                                 BUF_KERNPROC(bufx);
973                                 vn_strategy(swapdev_vp, biox);
974                         } else {
975                                 biodone(biox);
976                         }
977                         crit_enter();
978                         biox = NULL;
979                         bufx = NULL;
980                 }
981
982                 /*
983                  * Add new swapblk to biox, instantiating biox if necessary.
984                  * Zero-fill reads are able to take a shortcut.
985                  */
986                 if (blk == SWAPBLK_NONE) {
987                         /*
988                          * We can only get here if we are reading.  Since
989                          * we are at splvm() we can safely modify b_resid,
990                          * even if chain ops are in progress.
991                          */
992                         bzero(data, PAGE_SIZE);
993                         bp->b_resid -= PAGE_SIZE;
994                 } else {
995                         if (biox == NULL) {
996                                 /* XXX chain count > 4, wait to <= 4 */
997
998                                 bufx = getpbuf(NULL);
999                                 biox = &bufx->b_bio1;
1000                                 cluster_append(nbio, bufx);
1001                                 bufx->b_flags |= (bufx->b_flags & B_ORDERED) |
1002                                                 B_ASYNC;
1003                                 bufx->b_cmd = bp->b_cmd;
1004                                 biox->bio_done = swap_chain_iodone;
1005                                 biox->bio_offset = (off_t)blk << PAGE_SHIFT;
1006                                 biox->bio_caller_info1.cluster_parent = nbio;
1007                                 biox_blkno = blk;
1008                                 bufx->b_bcount = 0;
1009                                 bufx->b_data = data;
1010                         }
1011                         bufx->b_bcount += PAGE_SIZE;
1012                 }
1013                 --count;
1014                 ++start;
1015                 data += PAGE_SIZE;
1016         }
1017
1018         /*
1019          *  Flush out last buffer
1020          */
1021         crit_exit();
1022
1023         if (biox) {
1024                 if ((bp->b_flags & B_ASYNC) == 0)
1025                         bufx->b_flags &= ~B_ASYNC;
1026                 if (bufx->b_cmd == BUF_CMD_READ) {
1027                         ++mycpu->gd_cnt.v_swapin;
1028                         mycpu->gd_cnt.v_swappgsin += btoc(bufx->b_bcount);
1029                 } else {
1030                         ++mycpu->gd_cnt.v_swapout;
1031                         mycpu->gd_cnt.v_swappgsout += btoc(bufx->b_bcount);
1032                         bufx->b_dirtyend = bufx->b_bcount;
1033                 }
1034                 if (bufx->b_bcount) {
1035                         bufx->b_bufsize = bufx->b_bcount;
1036                         if (bufx->b_cmd != BUF_CMD_READ)
1037                                 bufx->b_dirtyend = bufx->b_bcount;
1038                         BUF_KERNPROC(bufx);
1039                         vn_strategy(swapdev_vp, biox);
1040                 } else {
1041                         biodone(biox);
1042                 }
1043                 /* biox, bufx = NULL */
1044         }
1045
1046         /*
1047          * Wait for completion.
1048          */
1049         if (bp->b_flags & B_ASYNC) {
1050                 crit_enter();
1051                 if (nbio->bio_caller_info1.cluster_head == NULL) {
1052                         biodone(bio);
1053                 } else {
1054                         bp->b_xflags |= BX_AUTOCHAINDONE;
1055                 }
1056                 crit_exit();
1057         } else {
1058                 crit_enter();
1059                 while (nbio->bio_caller_info1.cluster_head != NULL) {
1060                         bp->b_flags |= B_WANT;
1061                         tsleep(bp, 0, "bpchain", 0);
1062                 }
1063                 if (bp->b_resid != 0 && !(bp->b_flags & B_ERROR)) {
1064                         bp->b_flags |= B_ERROR;
1065                         bp->b_error = EINVAL;
1066                 }
1067                 biodone(bio);
1068                 crit_exit();
1069         }
1070 }
1071
1072 static void
1073 swap_chain_iodone(struct bio *biox)
1074 {
1075         struct buf **nextp;
1076         struct buf *bufx;       /* chained sub-buffer */
1077         struct bio *nbio;       /* parent nbio with chain glue */
1078         struct buf *bp;         /* original bp associated with nbio */
1079
1080         bufx = biox->bio_buf;
1081         nbio = biox->bio_caller_info1.cluster_parent;
1082         bp = nbio->bio_buf;
1083
1084         /*
1085          * Update the original buffer
1086          */
1087         KKASSERT(bp != NULL);
1088         if (bufx->b_flags & B_ERROR) {
1089                 bp->b_flags |= B_ERROR;
1090                 bp->b_error = bufx->b_error;
1091         } else if (bufx->b_resid != 0) {
1092                 bp->b_flags |= B_ERROR;
1093                 bp->b_error = EINVAL;
1094         } else {
1095                 bp->b_resid -= bufx->b_bcount;
1096         }
1097
1098         /*
1099          * Remove us from the chain.  It is sufficient to clean up 
1100          * cluster_head.  We do not have to clean up cluster_tail.
1101          */
1102         nextp = &nbio->bio_caller_info1.cluster_head;
1103         while (*nextp != bufx) {
1104                 KKASSERT(*nextp != NULL);
1105                 nextp = &(*nextp)->b_cluster_next;
1106         }
1107         *nextp = bufx->b_cluster_next;
1108         if (bp->b_flags & B_WANT) {
1109                 bp->b_flags &= ~B_WANT;
1110                 wakeup(bp);
1111         }
1112
1113         /*
1114          * Clean up bufx.  If this was the last buffer in the chain
1115          * and BX_AUTOCHAINDONE was set, finish off the original I/O
1116          * as well.
1117          *
1118          * nbio was just a fake BIO layer to hold the cluster links,
1119          * we can issue the biodone() on the layer above it.
1120          */
1121         if (nbio->bio_caller_info1.cluster_head == NULL &&
1122             (bp->b_xflags & BX_AUTOCHAINDONE)) {
1123                 bp->b_xflags &= ~BX_AUTOCHAINDONE;
1124                 if (bp->b_resid != 0 && !(bp->b_flags & B_ERROR)) {
1125                         bp->b_flags |= B_ERROR;
1126                         bp->b_error = EINVAL;
1127                 }
1128                 biodone(nbio->bio_prev);
1129         }
1130         bufx->b_flags &= ~B_ASYNC;
1131         relpbuf(bufx, NULL);
1132 }
1133
1134 /*
1135  * SWAP_PAGER_GETPAGES() - bring pages in from swap
1136  *
1137  *      Attempt to retrieve (m, count) pages from backing store, but make
1138  *      sure we retrieve at least m[reqpage].  We try to load in as large
1139  *      a chunk surrounding m[reqpage] as is contiguous in swap and which
1140  *      belongs to the same object.
1141  *
1142  *      The code is designed for asynchronous operation and 
1143  *      immediate-notification of 'reqpage' but tends not to be
1144  *      used that way.  Please do not optimize-out this algorithmic
1145  *      feature, I intend to improve on it in the future.
1146  *
1147  *      The parent has a single vm_object_pip_add() reference prior to
1148  *      calling us and we should return with the same.
1149  *
1150  *      The parent has BUSY'd the pages.  We should return with 'm'
1151  *      left busy, but the others adjusted.
1152  */
1153
1154 static int
1155 swap_pager_getpages(vm_object_t object, vm_page_t *m, int count, int reqpage)
1156 {
1157         struct buf *bp;
1158         struct bio *bio;
1159         vm_page_t mreq;
1160         int i;
1161         int j;
1162         daddr_t blk;
1163         vm_offset_t kva;
1164         vm_pindex_t lastpindex;
1165
1166         mreq = m[reqpage];
1167
1168         if (mreq->object != object) {
1169                 panic("swap_pager_getpages: object mismatch %p/%p", 
1170                     object, 
1171                     mreq->object
1172                 );
1173         }
1174         /*
1175          * Calculate range to retrieve.  The pages have already been assigned
1176          * their swapblks.  We require a *contiguous* range that falls entirely
1177          * within a single device stripe.   If we do not supply it, bad things
1178          * happen.  Note that blk, iblk & jblk can be SWAPBLK_NONE, but the 
1179          * loops are set up such that the case(s) are handled implicitly.
1180          *
1181          * The swp_*() calls must be made at splvm().  vm_page_free() does
1182          * not need to be, but it will go a little faster if it is.
1183          */
1184
1185         crit_enter();
1186         blk = swp_pager_meta_ctl(mreq->object, mreq->pindex, 0);
1187
1188         for (i = reqpage - 1; i >= 0; --i) {
1189                 daddr_t iblk;
1190
1191                 iblk = swp_pager_meta_ctl(m[i]->object, m[i]->pindex, 0);
1192                 if (blk != iblk + (reqpage - i))
1193                         break;
1194                 if ((blk ^ iblk) & dmmax_mask)
1195                         break;
1196         }
1197         ++i;
1198
1199         for (j = reqpage + 1; j < count; ++j) {
1200                 daddr_t jblk;
1201
1202                 jblk = swp_pager_meta_ctl(m[j]->object, m[j]->pindex, 0);
1203                 if (blk != jblk - (j - reqpage))
1204                         break;
1205                 if ((blk ^ jblk) & dmmax_mask)
1206                         break;
1207         }
1208
1209         /*
1210          * free pages outside our collection range.   Note: we never free
1211          * mreq, it must remain busy throughout.
1212          */
1213
1214         {
1215                 int k;
1216
1217                 for (k = 0; k < i; ++k)
1218                         vm_page_free(m[k]);
1219                 for (k = j; k < count; ++k)
1220                         vm_page_free(m[k]);
1221         }
1222         crit_exit();
1223
1224
1225         /*
1226          * Return VM_PAGER_FAIL if we have nothing to do.  Return mreq 
1227          * still busy, but the others unbusied.
1228          */
1229
1230         if (blk == SWAPBLK_NONE)
1231                 return(VM_PAGER_FAIL);
1232
1233         /*
1234          * Get a swap buffer header to perform the IO
1235          */
1236
1237         bp = getpbuf(&nsw_rcount);
1238         bio = &bp->b_bio1;
1239         kva = (vm_offset_t) bp->b_data;
1240
1241         /*
1242          * map our page(s) into kva for input
1243          */
1244
1245         pmap_qenter(kva, m + i, j - i);
1246
1247         bp->b_data = (caddr_t) kva;
1248         bp->b_bcount = PAGE_SIZE * (j - i);
1249         bp->b_bufsize = PAGE_SIZE * (j - i);
1250         bio->bio_done = swp_pager_async_iodone;
1251         bio->bio_offset = (off_t)(blk - (reqpage - i)) << PAGE_SHIFT;
1252         bio->bio_driver_info = (void *)(reqpage - i);
1253
1254         {
1255                 int k;
1256
1257                 for (k = i; k < j; ++k) {
1258                         bp->b_xio.xio_pages[k - i] = m[k];
1259                         vm_page_flag_set(m[k], PG_SWAPINPROG);
1260                 }
1261         }
1262         bp->b_xio.xio_npages = j - i;
1263
1264         mycpu->gd_cnt.v_swapin++;
1265         mycpu->gd_cnt.v_swappgsin += bp->b_xio.xio_npages;
1266
1267         /*
1268          * We still hold the lock on mreq, and our automatic completion routine
1269          * does not remove it.
1270          */
1271
1272         vm_object_pip_add(mreq->object, bp->b_xio.xio_npages);
1273         lastpindex = m[j-1]->pindex;
1274
1275         /*
1276          * perform the I/O.  NOTE!!!  bp cannot be considered valid after
1277          * this point because we automatically release it on completion.
1278          * Instead, we look at the one page we are interested in which we
1279          * still hold a lock on even through the I/O completion.
1280          *
1281          * The other pages in our m[] array are also released on completion,
1282          * so we cannot assume they are valid anymore either.
1283          */
1284
1285         bp->b_cmd = BUF_CMD_READ;
1286         BUF_KERNPROC(bp);
1287         vn_strategy(swapdev_vp, bio);
1288
1289         /*
1290          * wait for the page we want to complete.  PG_SWAPINPROG is always
1291          * cleared on completion.  If an I/O error occurs, SWAPBLK_NONE
1292          * is set in the meta-data.
1293          */
1294
1295         crit_enter();
1296
1297         while ((mreq->flags & PG_SWAPINPROG) != 0) {
1298                 vm_page_flag_set(mreq, PG_WANTED | PG_REFERENCED);
1299                 mycpu->gd_cnt.v_intrans++;
1300                 if (tsleep(mreq, 0, "swread", hz*20)) {
1301                         printf(
1302                             "swap_pager: indefinite wait buffer: "
1303                                 " offset: %lld, size: %d\n",
1304                             bio->bio_offset, bp->b_bcount
1305                         );
1306                 }
1307         }
1308
1309         crit_exit();
1310
1311         /*
1312          * mreq is left bussied after completion, but all the other pages
1313          * are freed.  If we had an unrecoverable read error the page will
1314          * not be valid.
1315          */
1316
1317         if (mreq->valid != VM_PAGE_BITS_ALL) {
1318                 return(VM_PAGER_ERROR);
1319         } else {
1320                 return(VM_PAGER_OK);
1321         }
1322
1323         /*
1324          * A final note: in a low swap situation, we cannot deallocate swap
1325          * and mark a page dirty here because the caller is likely to mark
1326          * the page clean when we return, causing the page to possibly revert 
1327          * to all-zero's later.
1328          */
1329 }
1330
1331 /*
1332  *      swap_pager_putpages: 
1333  *
1334  *      Assign swap (if necessary) and initiate I/O on the specified pages.
1335  *
1336  *      We support both OBJT_DEFAULT and OBJT_SWAP objects.  DEFAULT objects
1337  *      are automatically converted to SWAP objects.
1338  *
1339  *      In a low memory situation we may block in vn_strategy(), but the new 
1340  *      vm_page reservation system coupled with properly written VFS devices 
1341  *      should ensure that no low-memory deadlock occurs.  This is an area
1342  *      which needs work.
1343  *
1344  *      The parent has N vm_object_pip_add() references prior to
1345  *      calling us and will remove references for rtvals[] that are
1346  *      not set to VM_PAGER_PEND.  We need to remove the rest on I/O
1347  *      completion.
1348  *
1349  *      The parent has soft-busy'd the pages it passes us and will unbusy
1350  *      those whos rtvals[] entry is not set to VM_PAGER_PEND on return.
1351  *      We need to unbusy the rest on I/O completion.
1352  */
1353
1354 void
1355 swap_pager_putpages(vm_object_t object, vm_page_t *m, int count, boolean_t sync,
1356     int *rtvals)
1357 {
1358         int i;
1359         int n = 0;
1360
1361         if (count && m[0]->object != object) {
1362                 panic("swap_pager_getpages: object mismatch %p/%p", 
1363                     object, 
1364                     m[0]->object
1365                 );
1366         }
1367         /*
1368          * Step 1
1369          *
1370          * Turn object into OBJT_SWAP
1371          * check for bogus sysops
1372          * force sync if not pageout process
1373          */
1374
1375         if (object->type != OBJT_SWAP)
1376                 swp_pager_meta_build(object, 0, SWAPBLK_NONE);
1377
1378         if (curthread != pagethread)
1379                 sync = TRUE;
1380
1381         /*
1382          * Step 2
1383          *
1384          * Update nsw parameters from swap_async_max sysctl values.  
1385          * Do not let the sysop crash the machine with bogus numbers.
1386          */
1387
1388         if (swap_async_max != nsw_wcount_async_max) {
1389                 int n;
1390
1391                 /*
1392                  * limit range
1393                  */
1394                 if ((n = swap_async_max) > nswbuf / 2)
1395                         n = nswbuf / 2;
1396                 if (n < 1)
1397                         n = 1;
1398                 swap_async_max = n;
1399
1400                 /*
1401                  * Adjust difference ( if possible ).  If the current async
1402                  * count is too low, we may not be able to make the adjustment
1403                  * at this time.
1404                  */
1405                 crit_enter();
1406                 n -= nsw_wcount_async_max;
1407                 if (nsw_wcount_async + n >= 0) {
1408                         nsw_wcount_async += n;
1409                         nsw_wcount_async_max += n;
1410                         wakeup(&nsw_wcount_async);
1411                 }
1412                 crit_exit();
1413         }
1414
1415         /*
1416          * Step 3
1417          *
1418          * Assign swap blocks and issue I/O.  We reallocate swap on the fly.
1419          * The page is left dirty until the pageout operation completes
1420          * successfully.
1421          */
1422
1423         for (i = 0; i < count; i += n) {
1424                 struct buf *bp;
1425                 struct bio *bio;
1426                 daddr_t blk;
1427                 int j;
1428
1429                 /*
1430                  * Maximum I/O size is limited by a number of factors.
1431                  */
1432
1433                 n = min(BLIST_MAX_ALLOC, count - i);
1434                 n = min(n, nsw_cluster_max);
1435
1436                 crit_enter();
1437
1438                 /*
1439                  * Get biggest block of swap we can.  If we fail, fall
1440                  * back and try to allocate a smaller block.  Don't go
1441                  * overboard trying to allocate space if it would overly
1442                  * fragment swap.
1443                  */
1444                 while (
1445                     (blk = swp_pager_getswapspace(n)) == SWAPBLK_NONE &&
1446                     n > 4
1447                 ) {
1448                         n >>= 1;
1449                 }
1450                 if (blk == SWAPBLK_NONE) {
1451                         for (j = 0; j < n; ++j)
1452                                 rtvals[i+j] = VM_PAGER_FAIL;
1453                         crit_exit();
1454                         continue;
1455                 }
1456
1457                 /*
1458                  * The I/O we are constructing cannot cross a physical
1459                  * disk boundry in the swap stripe.  Note: we are still
1460                  * at splvm().
1461                  */
1462                 if ((blk ^ (blk + n)) & dmmax_mask) {
1463                         j = ((blk + dmmax) & dmmax_mask) - blk;
1464                         swp_pager_freeswapspace(blk + j, n - j);
1465                         n = j;
1466                 }
1467
1468                 /*
1469                  * All I/O parameters have been satisfied, build the I/O
1470                  * request and assign the swap space.
1471                  */
1472
1473                 if (sync == TRUE)
1474                         bp = getpbuf(&nsw_wcount_sync);
1475                 else
1476                         bp = getpbuf(&nsw_wcount_async);
1477                 bio = &bp->b_bio1;
1478
1479                 pmap_qenter((vm_offset_t)bp->b_data, &m[i], n);
1480
1481                 bp->b_bcount = PAGE_SIZE * n;
1482                 bp->b_bufsize = PAGE_SIZE * n;
1483                 bio->bio_offset = (off_t)blk << PAGE_SHIFT;
1484
1485                 for (j = 0; j < n; ++j) {
1486                         vm_page_t mreq = m[i+j];
1487
1488                         swp_pager_meta_build(
1489                             mreq->object, 
1490                             mreq->pindex,
1491                             blk + j
1492                         );
1493                         vm_page_dirty(mreq);
1494                         rtvals[i+j] = VM_PAGER_OK;
1495
1496                         vm_page_flag_set(mreq, PG_SWAPINPROG);
1497                         bp->b_xio.xio_pages[j] = mreq;
1498                 }
1499                 bp->b_xio.xio_npages = n;
1500
1501                 mycpu->gd_cnt.v_swapout++;
1502                 mycpu->gd_cnt.v_swappgsout += bp->b_xio.xio_npages;
1503
1504                 crit_exit();
1505
1506                 bp->b_dirtyoff = 0;             /* req'd for NFS */
1507                 bp->b_dirtyend = bp->b_bcount;  /* req'd for NFS */
1508                 bp->b_cmd = BUF_CMD_WRITE;
1509
1510                 /*
1511                  * asynchronous
1512                  */
1513                 if (sync == FALSE) {
1514                         bp->b_flags |= B_ASYNC;
1515                         bio->bio_done = swp_pager_async_iodone;
1516                         BUF_KERNPROC(bp);
1517                         vn_strategy(swapdev_vp, bio);
1518
1519                         for (j = 0; j < n; ++j)
1520                                 rtvals[i+j] = VM_PAGER_PEND;
1521                         continue;
1522                 }
1523
1524                 /*
1525                  * synchronous
1526                  */
1527
1528                 bio->bio_done = swp_pager_sync_iodone;
1529                 vn_strategy(swapdev_vp, bio);
1530
1531                 /*
1532                  * Wait for the sync I/O to complete, then update rtvals.
1533                  * We just set the rtvals[] to VM_PAGER_PEND so we can call
1534                  * our async completion routine at the end, thus avoiding a
1535                  * double-free.
1536                  */
1537                 crit_enter();
1538
1539                 while (bp->b_cmd != BUF_CMD_DONE)
1540                         tsleep(bp, 0, "swwrt", 0);
1541
1542                 for (j = 0; j < n; ++j)
1543                         rtvals[i+j] = VM_PAGER_PEND;
1544
1545                 /*
1546                  * Now that we are through with the bp, we can call the
1547                  * normal async completion, which frees everything up.
1548                  */
1549
1550                 swp_pager_async_iodone(bio);
1551
1552                 crit_exit();
1553         }
1554 }
1555
1556 /*
1557  *      swap_pager_sync_iodone:
1558  *
1559  *      Completion routine for synchronous reads and writes from/to swap.
1560  *      We just mark the bp is complete and wake up anyone waiting on it.
1561  *
1562  *      This routine may not block.  This routine is called at splbio() or better.
1563  */
1564
1565 static void
1566 swp_pager_sync_iodone(struct bio *bio)
1567 {
1568         struct buf *bp = bio->bio_buf;
1569
1570         bp->b_flags &= ~B_ASYNC;
1571         bp->b_cmd = BUF_CMD_DONE;
1572         wakeup(bp);
1573 }
1574
1575 /*
1576  *      swp_pager_async_iodone:
1577  *
1578  *      Completion routine for asynchronous reads and writes from/to swap.
1579  *      Also called manually by synchronous code to finish up a bp.
1580  *
1581  *      For READ operations, the pages are PG_BUSY'd.  For WRITE operations, 
1582  *      the pages are vm_page_t->busy'd.  For READ operations, we PG_BUSY 
1583  *      unbusy all pages except the 'main' request page.  For WRITE 
1584  *      operations, we vm_page_t->busy'd unbusy all pages ( we can do this 
1585  *      because we marked them all VM_PAGER_PEND on return from putpages ).
1586  *
1587  *      This routine may not block.
1588  */
1589
1590 static void
1591 swp_pager_async_iodone(struct bio *bio)
1592 {
1593         struct buf *bp = bio->bio_buf;
1594         vm_object_t object = NULL;
1595         int i;
1596         int *nswptr;
1597
1598         /*
1599          * report error
1600          */
1601         if (bp->b_flags & B_ERROR) {
1602                 printf(
1603                     "swap_pager: I/O error - %s failed; offset %lld,"
1604                         "size %ld, error %d\n",
1605                     ((bp->b_cmd == BUF_CMD_READ) ? "pagein" : "pageout"),
1606                     bio->bio_offset, 
1607                     (long)bp->b_bcount,
1608                     bp->b_error
1609                 );
1610         }
1611
1612         /*
1613          * set object, raise to splvm().
1614          */
1615
1616         if (bp->b_xio.xio_npages)
1617                 object = bp->b_xio.xio_pages[0]->object;
1618         crit_enter();
1619
1620         /*
1621          * remove the mapping for kernel virtual
1622          */
1623
1624         pmap_qremove((vm_offset_t)bp->b_data, bp->b_xio.xio_npages);
1625
1626         /*
1627          * cleanup pages.  If an error occurs writing to swap, we are in
1628          * very serious trouble.  If it happens to be a disk error, though,
1629          * we may be able to recover by reassigning the swap later on.  So
1630          * in this case we remove the m->swapblk assignment for the page 
1631          * but do not free it in the rlist.  The errornous block(s) are thus
1632          * never reallocated as swap.  Redirty the page and continue.
1633          */
1634
1635         for (i = 0; i < bp->b_xio.xio_npages; ++i) {
1636                 vm_page_t m = bp->b_xio.xio_pages[i];
1637
1638                 vm_page_flag_clear(m, PG_SWAPINPROG);
1639
1640                 if (bp->b_flags & B_ERROR) {
1641                         /*
1642                          * If an error occurs I'd love to throw the swapblk
1643                          * away without freeing it back to swapspace, so it
1644                          * can never be used again.  But I can't from an 
1645                          * interrupt.
1646                          */
1647
1648                         if (bp->b_cmd == BUF_CMD_READ) {
1649                                 /*
1650                                  * When reading, reqpage needs to stay
1651                                  * locked for the parent, but all other
1652                                  * pages can be freed.  We still want to
1653                                  * wakeup the parent waiting on the page,
1654                                  * though.  ( also: pg_reqpage can be -1 and 
1655                                  * not match anything ).
1656                                  *
1657                                  * We have to wake specifically requested pages
1658                                  * up too because we cleared PG_SWAPINPROG and
1659                                  * someone may be waiting for that.
1660                                  *
1661                                  * NOTE: for reads, m->dirty will probably
1662                                  * be overridden by the original caller of
1663                                  * getpages so don't play cute tricks here.
1664                                  *
1665                                  * XXX IT IS NOT LEGAL TO FREE THE PAGE HERE
1666                                  * AS THIS MESSES WITH object->memq, and it is
1667                                  * not legal to mess with object->memq from an
1668                                  * interrupt.
1669                                  */
1670
1671                                 m->valid = 0;
1672                                 vm_page_flag_clear(m, PG_ZERO);
1673
1674                                 /*
1675                                  * bio_driver_info holds the requested page
1676                                  * index.
1677                                  */
1678                                 if (i != (int)bio->bio_driver_info)
1679                                         vm_page_free(m);
1680                                 else
1681                                         vm_page_flash(m);
1682                                 /*
1683                                  * If i == bp->b_pager.pg_reqpage, do not wake 
1684                                  * the page up.  The caller needs to.
1685                                  */
1686                         } else {
1687                                 /*
1688                                  * If a write error occurs, reactivate page
1689                                  * so it doesn't clog the inactive list,
1690                                  * then finish the I/O.
1691                                  */
1692                                 vm_page_dirty(m);
1693                                 vm_page_activate(m);
1694                                 vm_page_io_finish(m);
1695                         }
1696                 } else if (bp->b_cmd == BUF_CMD_READ) {
1697                         /*
1698                          * For read success, clear dirty bits.  Nobody should
1699                          * have this page mapped but don't take any chances,
1700                          * make sure the pmap modify bits are also cleared.
1701                          *
1702                          * NOTE: for reads, m->dirty will probably be 
1703                          * overridden by the original caller of getpages so
1704                          * we cannot set them in order to free the underlying
1705                          * swap in a low-swap situation.  I don't think we'd
1706                          * want to do that anyway, but it was an optimization
1707                          * that existed in the old swapper for a time before
1708                          * it got ripped out due to precisely this problem.
1709                          *
1710                          * clear PG_ZERO in page.
1711                          *
1712                          * If not the requested page then deactivate it.
1713                          *
1714                          * Note that the requested page, reqpage, is left
1715                          * busied, but we still have to wake it up.  The
1716                          * other pages are released (unbusied) by 
1717                          * vm_page_wakeup().  We do not set reqpage's
1718                          * valid bits here, it is up to the caller.
1719                          */
1720
1721                         pmap_clear_modify(m);
1722                         m->valid = VM_PAGE_BITS_ALL;
1723                         vm_page_undirty(m);
1724                         vm_page_flag_clear(m, PG_ZERO);
1725
1726                         /*
1727                          * We have to wake specifically requested pages
1728                          * up too because we cleared PG_SWAPINPROG and
1729                          * could be waiting for it in getpages.  However,
1730                          * be sure to not unbusy getpages specifically
1731                          * requested page - getpages expects it to be 
1732                          * left busy.
1733                          *
1734                          * bio_driver_info holds the requested page
1735                          */
1736                         if (i != (int)bio->bio_driver_info) {
1737                                 vm_page_deactivate(m);
1738                                 vm_page_wakeup(m);
1739                         } else {
1740                                 vm_page_flash(m);
1741                         }
1742                 } else {
1743                         /*
1744                          * For write success, clear the modify and dirty 
1745                          * status, then finish the I/O ( which decrements the 
1746                          * busy count and possibly wakes waiter's up ).
1747                          */
1748                         pmap_clear_modify(m);
1749                         vm_page_undirty(m);
1750                         vm_page_io_finish(m);
1751                         if (!vm_page_count_severe() || !vm_page_try_to_cache(m))
1752                                 vm_page_protect(m, VM_PROT_READ);
1753                 }
1754         }
1755
1756         /*
1757          * adjust pip.  NOTE: the original parent may still have its own
1758          * pip refs on the object.
1759          */
1760
1761         if (object)
1762                 vm_object_pip_wakeupn(object, bp->b_xio.xio_npages);
1763
1764         /*
1765          * release the physical I/O buffer
1766          */
1767         if (bp->b_cmd == BUF_CMD_READ)
1768                 nswptr = &nsw_rcount;
1769         else if (bp->b_flags & B_ASYNC)
1770                 nswptr = &nsw_wcount_async;
1771         else
1772                 nswptr = &nsw_wcount_sync;
1773         bp->b_cmd = BUF_CMD_DONE;
1774         relpbuf(bp, nswptr);
1775         crit_exit();
1776 }
1777
1778 /************************************************************************
1779  *                              SWAP META DATA                          *
1780  ************************************************************************
1781  *
1782  *      These routines manipulate the swap metadata stored in the 
1783  *      OBJT_SWAP object.  All swp_*() routines must be called at
1784  *      splvm() because swap can be freed up by the low level vm_page
1785  *      code which might be called from interrupts beyond what splbio() covers.
1786  *
1787  *      Swap metadata is implemented with a global hash and not directly
1788  *      linked into the object.  Instead the object simply contains
1789  *      appropriate tracking counters.
1790  */
1791
1792 /*
1793  * SWP_PAGER_HASH() -   hash swap meta data
1794  *
1795  *      This is an inline helper function which hashes the swapblk given
1796  *      the object and page index.  It returns a pointer to a pointer
1797  *      to the object, or a pointer to a NULL pointer if it could not
1798  *      find a swapblk.
1799  *
1800  *      This routine must be called at splvm().
1801  */
1802
1803 static __inline struct swblock **
1804 swp_pager_hash(vm_object_t object, vm_pindex_t index)
1805 {
1806         struct swblock **pswap;
1807         struct swblock *swap;
1808
1809         index &= ~SWAP_META_MASK;
1810         pswap = &swhash[(index ^ (int)(intptr_t)object) & swhash_mask];
1811
1812         while ((swap = *pswap) != NULL) {
1813                 if (swap->swb_object == object &&
1814                     swap->swb_index == index
1815                 ) {
1816                         break;
1817                 }
1818                 pswap = &swap->swb_hnext;
1819         }
1820         return(pswap);
1821 }
1822
1823 /*
1824  * SWP_PAGER_META_BUILD() -     add swap block to swap meta data for object
1825  *
1826  *      We first convert the object to a swap object if it is a default
1827  *      object.
1828  *
1829  *      The specified swapblk is added to the object's swap metadata.  If
1830  *      the swapblk is not valid, it is freed instead.  Any previously
1831  *      assigned swapblk is freed.
1832  *
1833  *      This routine must be called at splvm(), except when used to convert
1834  *      an OBJT_DEFAULT object into an OBJT_SWAP object.
1835
1836  */
1837
1838 static void
1839 swp_pager_meta_build(
1840         vm_object_t object, 
1841         vm_pindex_t index,
1842         daddr_t swapblk
1843 ) {
1844         struct swblock *swap;
1845         struct swblock **pswap;
1846
1847         /*
1848          * Convert default object to swap object if necessary
1849          */
1850
1851         if (object->type != OBJT_SWAP) {
1852                 object->type = OBJT_SWAP;
1853                 object->un_pager.swp.swp_bcount = 0;
1854
1855                 if (object->handle != NULL) {
1856                         TAILQ_INSERT_TAIL(
1857                             NOBJLIST(object->handle),
1858                             object, 
1859                             pager_object_list
1860                         );
1861                 } else {
1862                         TAILQ_INSERT_TAIL(
1863                             &swap_pager_un_object_list,
1864                             object, 
1865                             pager_object_list
1866                         );
1867                 }
1868         }
1869         
1870         /*
1871          * Locate hash entry.  If not found create, but if we aren't adding
1872          * anything just return.  If we run out of space in the map we wait
1873          * and, since the hash table may have changed, retry.
1874          */
1875
1876 retry:
1877         pswap = swp_pager_hash(object, index);
1878
1879         if ((swap = *pswap) == NULL) {
1880                 int i;
1881
1882                 if (swapblk == SWAPBLK_NONE)
1883                         return;
1884
1885                 swap = *pswap = zalloc(swap_zone);
1886                 if (swap == NULL) {
1887                         vm_wait();
1888                         goto retry;
1889                 }
1890                 swap->swb_hnext = NULL;
1891                 swap->swb_object = object;
1892                 swap->swb_index = index & ~SWAP_META_MASK;
1893                 swap->swb_count = 0;
1894
1895                 ++object->un_pager.swp.swp_bcount;
1896
1897                 for (i = 0; i < SWAP_META_PAGES; ++i)
1898                         swap->swb_pages[i] = SWAPBLK_NONE;
1899         }
1900
1901         /*
1902          * Delete prior contents of metadata
1903          */
1904
1905         index &= SWAP_META_MASK;
1906
1907         if (swap->swb_pages[index] != SWAPBLK_NONE) {
1908                 swp_pager_freeswapspace(swap->swb_pages[index], 1);
1909                 --swap->swb_count;
1910         }
1911
1912         /*
1913          * Enter block into metadata
1914          */
1915
1916         swap->swb_pages[index] = swapblk;
1917         if (swapblk != SWAPBLK_NONE)
1918                 ++swap->swb_count;
1919 }
1920
1921 /*
1922  * SWP_PAGER_META_FREE() - free a range of blocks in the object's swap metadata
1923  *
1924  *      The requested range of blocks is freed, with any associated swap 
1925  *      returned to the swap bitmap.
1926  *
1927  *      This routine will free swap metadata structures as they are cleaned 
1928  *      out.  This routine does *NOT* operate on swap metadata associated
1929  *      with resident pages.
1930  *
1931  *      This routine must be called at splvm()
1932  */
1933
1934 static void
1935 swp_pager_meta_free(vm_object_t object, vm_pindex_t index, daddr_t count)
1936 {
1937         if (object->type != OBJT_SWAP)
1938                 return;
1939
1940         while (count > 0) {
1941                 struct swblock **pswap;
1942                 struct swblock *swap;
1943
1944                 pswap = swp_pager_hash(object, index);
1945
1946                 if ((swap = *pswap) != NULL) {
1947                         daddr_t v = swap->swb_pages[index & SWAP_META_MASK];
1948
1949                         if (v != SWAPBLK_NONE) {
1950                                 swp_pager_freeswapspace(v, 1);
1951                                 swap->swb_pages[index & SWAP_META_MASK] =
1952                                         SWAPBLK_NONE;
1953                                 if (--swap->swb_count == 0) {
1954                                         *pswap = swap->swb_hnext;
1955                                         zfree(swap_zone, swap);
1956                                         --object->un_pager.swp.swp_bcount;
1957                                 }
1958                         }
1959                         --count;
1960                         ++index;
1961                 } else {
1962                         int n = SWAP_META_PAGES - (index & SWAP_META_MASK);
1963                         count -= n;
1964                         index += n;
1965                 }
1966         }
1967 }
1968
1969 /*
1970  * SWP_PAGER_META_FREE_ALL() - destroy all swap metadata associated with object
1971  *
1972  *      This routine locates and destroys all swap metadata associated with
1973  *      an object.
1974  *
1975  *      This routine must be called at splvm()
1976  */
1977
1978 static void
1979 swp_pager_meta_free_all(vm_object_t object)
1980 {
1981         daddr_t index = 0;
1982
1983         if (object->type != OBJT_SWAP)
1984                 return;
1985
1986         while (object->un_pager.swp.swp_bcount) {
1987                 struct swblock **pswap;
1988                 struct swblock *swap;
1989
1990                 pswap = swp_pager_hash(object, index);
1991                 if ((swap = *pswap) != NULL) {
1992                         int i;
1993
1994                         for (i = 0; i < SWAP_META_PAGES; ++i) {
1995                                 daddr_t v = swap->swb_pages[i];
1996                                 if (v != SWAPBLK_NONE) {
1997                                         --swap->swb_count;
1998                                         swp_pager_freeswapspace(v, 1);
1999                                 }
2000                         }
2001                         if (swap->swb_count != 0)
2002                                 panic("swap_pager_meta_free_all: swb_count != 0");
2003                         *pswap = swap->swb_hnext;
2004                         zfree(swap_zone, swap);
2005                         --object->un_pager.swp.swp_bcount;
2006                 }
2007                 index += SWAP_META_PAGES;
2008                 if (index > 0x20000000)
2009                         panic("swp_pager_meta_free_all: failed to locate all swap meta blocks");
2010         }
2011 }
2012
2013 /*
2014  * SWP_PAGER_METACTL() -  misc control of swap and vm_page_t meta data.
2015  *
2016  *      This routine is capable of looking up, popping, or freeing
2017  *      swapblk assignments in the swap meta data or in the vm_page_t.
2018  *      The routine typically returns the swapblk being looked-up, or popped,
2019  *      or SWAPBLK_NONE if the block was freed, or SWAPBLK_NONE if the block
2020  *      was invalid.  This routine will automatically free any invalid 
2021  *      meta-data swapblks.
2022  *
2023  *      It is not possible to store invalid swapblks in the swap meta data
2024  *      (other then a literal 'SWAPBLK_NONE'), so we don't bother checking.
2025  *
2026  *      When acting on a busy resident page and paging is in progress, we 
2027  *      have to wait until paging is complete but otherwise can act on the 
2028  *      busy page.
2029  *
2030  *      This routine must be called at splvm().
2031  *
2032  *      SWM_FREE        remove and free swap block from metadata
2033  *      SWM_POP         remove from meta data but do not free.. pop it out
2034  */
2035
2036 static daddr_t
2037 swp_pager_meta_ctl(
2038         vm_object_t object,
2039         vm_pindex_t index,
2040         int flags
2041 ) {
2042         struct swblock **pswap;
2043         struct swblock *swap;
2044         daddr_t r1;
2045
2046         /*
2047          * The meta data only exists of the object is OBJT_SWAP 
2048          * and even then might not be allocated yet.
2049          */
2050
2051         if (object->type != OBJT_SWAP)
2052                 return(SWAPBLK_NONE);
2053
2054         r1 = SWAPBLK_NONE;
2055         pswap = swp_pager_hash(object, index);
2056
2057         if ((swap = *pswap) != NULL) {
2058                 index &= SWAP_META_MASK;
2059                 r1 = swap->swb_pages[index];
2060
2061                 if (r1 != SWAPBLK_NONE) {
2062                         if (flags & SWM_FREE) {
2063                                 swp_pager_freeswapspace(r1, 1);
2064                                 r1 = SWAPBLK_NONE;
2065                         }
2066                         if (flags & (SWM_FREE|SWM_POP)) {
2067                                 swap->swb_pages[index] = SWAPBLK_NONE;
2068                                 if (--swap->swb_count == 0) {
2069                                         *pswap = swap->swb_hnext;
2070                                         zfree(swap_zone, swap);
2071                                         --object->un_pager.swp.swp_bcount;
2072                                 }
2073                         } 
2074                 }
2075         }
2076         return(r1);
2077 }