xref: /freebsd/sys/vm/swap_pager.c (revision b82d7897595d9b28a2b9861c2e09a943500c28ed)
160727d8bSWarner Losh /*-
2df57947fSPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni  *
41c7c3c6aSMatthew Dillon  * Copyright (c) 1998 Matthew Dillon,
526f9a767SRodney W. Grimes  * Copyright (c) 1994 John S. Dyson
6df8bae1dSRodney W. Grimes  * Copyright (c) 1990 University of Utah.
7e9c0cc15SPoul-Henning Kamp  * Copyright (c) 1982, 1986, 1989, 1993
8df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * This code is derived from software contributed to Berkeley by
11df8bae1dSRodney W. Grimes  * the Systems Programming Group of the University of Utah Computer
12df8bae1dSRodney W. Grimes  * Science Department.
13df8bae1dSRodney W. Grimes  *
14df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
15df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
16df8bae1dSRodney W. Grimes  * are met:
17df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
18df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
19df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
20df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
21df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
22df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
235929bcfaSPhilippe Charnier  *    must display the following acknowledgement:
24df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
25df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
26df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
27df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
28df8bae1dSRodney W. Grimes  *    without specific prior written permission.
29df8bae1dSRodney W. Grimes  *
30df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
41df8bae1dSRodney W. Grimes  *
421c7c3c6aSMatthew Dillon  *				New Swap System
431c7c3c6aSMatthew Dillon  *				Matthew Dillon
441c7c3c6aSMatthew Dillon  *
451c7c3c6aSMatthew Dillon  * Radix Bitmap 'blists'.
461c7c3c6aSMatthew Dillon  *
471c7c3c6aSMatthew Dillon  *	- The new swapper uses the new radix bitmap code.  This should scale
481c7c3c6aSMatthew Dillon  *	  to arbitrarily small or arbitrarily large swap spaces and an almost
491c7c3c6aSMatthew Dillon  *	  arbitrary degree of fragmentation.
501c7c3c6aSMatthew Dillon  *
511c7c3c6aSMatthew Dillon  * Features:
521c7c3c6aSMatthew Dillon  *
531c7c3c6aSMatthew Dillon  *	- on the fly reallocation of swap during putpages.  The new system
541c7c3c6aSMatthew Dillon  *	  does not try to keep previously allocated swap blocks for dirty
551c7c3c6aSMatthew Dillon  *	  pages.
561c7c3c6aSMatthew Dillon  *
571c7c3c6aSMatthew Dillon  *	- on the fly deallocation of swap
581c7c3c6aSMatthew Dillon  *
591c7c3c6aSMatthew Dillon  *	- No more garbage collection required.  Unnecessarily allocated swap
601c7c3c6aSMatthew Dillon  *	  blocks only exist for dirty vm_page_t's now and these are already
611c7c3c6aSMatthew Dillon  *	  cycled (in a high-load system) by the pager.  We also do on-the-fly
621c7c3c6aSMatthew Dillon  *	  removal of invalidated swap blocks when a page is destroyed
631c7c3c6aSMatthew Dillon  *	  or renamed.
641c7c3c6aSMatthew Dillon  *
65df8bae1dSRodney W. Grimes  * from: Utah $Hdr: swap_pager.c 1.4 91/04/30$
66df8bae1dSRodney W. Grimes  */
67df8bae1dSRodney W. Grimes 
68874651b1SDavid E. O'Brien #include <sys/cdefs.h>
69e9c0cc15SPoul-Henning Kamp #include "opt_vm.h"
70e9c0cc15SPoul-Henning Kamp 
71df8bae1dSRodney W. Grimes #include <sys/param.h>
729626b608SPoul-Henning Kamp #include <sys/bio.h>
73e2e050c8SConrad Meyer #include <sys/blist.h>
74df8bae1dSRodney W. Grimes #include <sys/buf.h>
75e2e050c8SConrad Meyer #include <sys/conf.h>
76e9c0cc15SPoul-Henning Kamp #include <sys/disk.h>
77504f5e29SDoug Moore #include <sys/disklabel.h>
78e2e050c8SConrad Meyer #include <sys/eventhandler.h>
79e9c0cc15SPoul-Henning Kamp #include <sys/fcntl.h>
80686aa928SMark Johnston #include <sys/limits.h>
81e2e050c8SConrad Meyer #include <sys/lock.h>
82e2e050c8SConrad Meyer #include <sys/kernel.h>
83e9c0cc15SPoul-Henning Kamp #include <sys/mount.h>
84e9c0cc15SPoul-Henning Kamp #include <sys/namei.h>
85df8bae1dSRodney W. Grimes #include <sys/malloc.h>
86f425ab8eSKonstantin Belousov #include <sys/pctrie.h>
87e2e050c8SConrad Meyer #include <sys/priv.h>
88e2e050c8SConrad Meyer #include <sys/proc.h>
891ba5ad42SEdward Tomasz Napierala #include <sys/racct.h>
903364c323SKonstantin Belousov #include <sys/resource.h>
913364c323SKonstantin Belousov #include <sys/resourcevar.h>
9289f6b863SAttilio Rao #include <sys/rwlock.h>
93d027ed2eSAlan Cox #include <sys/sbuf.h>
94327f4e83SMatthew Dillon #include <sys/sysctl.h>
95e9c0cc15SPoul-Henning Kamp #include <sys/sysproto.h>
96e2e050c8SConrad Meyer #include <sys/systm.h>
970cddd8f0SMatthew Dillon #include <sys/sx.h>
9853465702SKonstantin Belousov #include <sys/unistd.h>
9900a3fe96SKonstantin Belousov #include <sys/user.h>
100936524aaSMatthew Dillon #include <sys/vmmeter.h>
101e2e050c8SConrad Meyer #include <sys/vnode.h>
102df8bae1dSRodney W. Grimes 
103aed55708SRobert Watson #include <security/mac/mac_framework.h>
104aed55708SRobert Watson 
105df8bae1dSRodney W. Grimes #include <vm/vm.h>
10621cd6e62SSeigo Tanimura #include <vm/pmap.h>
10721cd6e62SSeigo Tanimura #include <vm/vm_map.h>
10821cd6e62SSeigo Tanimura #include <vm/vm_kern.h>
109efeaf95aSDavid Greenman #include <vm/vm_object.h>
110df8bae1dSRodney W. Grimes #include <vm/vm_page.h>
111efeaf95aSDavid Greenman #include <vm/vm_pager.h>
112df8bae1dSRodney W. Grimes #include <vm/vm_pageout.h>
113e9c0cc15SPoul-Henning Kamp #include <vm/vm_param.h>
114db08b0b0SDoug Moore #include <vm/vm_radix.h>
115df8bae1dSRodney W. Grimes #include <vm/swap_pager.h>
116efeaf95aSDavid Greenman #include <vm/vm_extern.h>
117670d17b5SJeff Roberson #include <vm/uma.h>
118df8bae1dSRodney W. Grimes 
119dee34ca4SPoul-Henning Kamp #include <geom/geom.h>
120dee34ca4SPoul-Henning Kamp 
121ec38b344SPoul-Henning Kamp /*
122064650c1SAlan Cox  * MAX_PAGEOUT_CLUSTER must be a power of 2 between 1 and 64.
123064650c1SAlan Cox  * The 64-page limit is due to the radix code (kern/subr_blist.c).
124ec38b344SPoul-Henning Kamp  */
125ec38b344SPoul-Henning Kamp #ifndef MAX_PAGEOUT_CLUSTER
126e2241590SAlan Cox #define	MAX_PAGEOUT_CLUSTER	32
127ec38b344SPoul-Henning Kamp #endif
128ec38b344SPoul-Henning Kamp 
129ec38b344SPoul-Henning Kamp #if !defined(SWB_NPAGES)
130ec38b344SPoul-Henning Kamp #define SWB_NPAGES	MAX_PAGEOUT_CLUSTER
131ec38b344SPoul-Henning Kamp #endif
132ec38b344SPoul-Henning Kamp 
133f425ab8eSKonstantin Belousov #define	SWAP_META_PAGES		PCTRIE_COUNT
134ec38b344SPoul-Henning Kamp 
135f425ab8eSKonstantin Belousov /*
136f425ab8eSKonstantin Belousov  * A swblk structure maps each page index within a
137f425ab8eSKonstantin Belousov  * SWAP_META_PAGES-aligned and sized range to the address of an
138f425ab8eSKonstantin Belousov  * on-disk swap block (or SWAPBLK_NONE). The collection of these
139f425ab8eSKonstantin Belousov  * mappings for an entire vm object is implemented as a pc-trie.
140f425ab8eSKonstantin Belousov  */
141f425ab8eSKonstantin Belousov struct swblk {
142f425ab8eSKonstantin Belousov 	vm_pindex_t	p;
143f425ab8eSKonstantin Belousov 	daddr_t		d[SWAP_META_PAGES];
144e9c0cc15SPoul-Henning Kamp };
145e9c0cc15SPoul-Henning Kamp 
146a880104aSDoug Moore /*
147a880104aSDoug Moore  * A page_range structure records the start address and length of a sequence of
148a880104aSDoug Moore  * mapped page addresses.
149a880104aSDoug Moore  */
150a880104aSDoug Moore struct page_range {
151a880104aSDoug Moore 	daddr_t start;
152a880104aSDoug Moore 	daddr_t num;
153a880104aSDoug Moore };
154a880104aSDoug Moore 
1552c4992dbSAlan Cox static MALLOC_DEFINE(M_VMPGDATA, "vm_pgdata", "swap pager private data");
15620da9c2eSPoul-Henning Kamp static struct mtx sw_dev_mtx;
1578f60c087SPoul-Henning Kamp static TAILQ_HEAD(, swdevt) swtailq = TAILQ_HEAD_INITIALIZER(swtailq);
1588f60c087SPoul-Henning Kamp static struct swdevt *swdevhd;	/* Allocate from here next */
1598f60c087SPoul-Henning Kamp static int nswapdev;		/* Number of swap devices */
1608f60c087SPoul-Henning Kamp int swap_pager_avail;
16104533e1eSKonstantin Belousov static struct sx swdev_syscall_lock;	/* serialize swap(on|off) */
162e9c0cc15SPoul-Henning Kamp 
163126a2470SMateusz Guzik static __exclusive_cache_line u_long swap_reserved;
164e8bb589dSMatt Macy static u_long swap_total;
165e8bb589dSMatt Macy static int sysctl_page_shift(SYSCTL_HANDLER_ARGS);
166a8081778SJeff Roberson 
1677029da5cSPawel Biernacki static SYSCTL_NODE(_vm_stats, OID_AUTO, swap, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
1687029da5cSPawel Biernacki     "VM swap stats");
169a8081778SJeff Roberson 
170e8bb589dSMatt Macy SYSCTL_PROC(_vm, OID_AUTO, swap_reserved, CTLTYPE_U64 | CTLFLAG_RD | CTLFLAG_MPSAFE,
171567378ccSEnji Cooper     &swap_reserved, 0, sysctl_page_shift, "QU",
1728a9c731fSIvan Voras     "Amount of swap storage needed to back all allocated anonymous memory.");
173e8bb589dSMatt Macy SYSCTL_PROC(_vm, OID_AUTO, swap_total, CTLTYPE_U64 | CTLFLAG_RD | CTLFLAG_MPSAFE,
174567378ccSEnji Cooper     &swap_total, 0, sysctl_page_shift, "QU",
175e8bb589dSMatt Macy     "Total amount of available swap storage.");
176e8bb589dSMatt Macy 
177ccdaa1abSKonstantin Belousov int vm_overcommit __read_mostly = 0;
178a6cc4c6eSKonstantin Belousov SYSCTL_INT(_vm, VM_OVERCOMMIT, overcommit, CTLFLAG_RW, &vm_overcommit, 0,
1798a9c731fSIvan Voras     "Configure virtual memory overcommit behavior. See tuning(7) "
1808a9c731fSIvan Voras     "for details.");
18161203277SDag-Erling Smørgrav static unsigned long swzone;
18261203277SDag-Erling Smørgrav SYSCTL_ULONG(_vm, OID_AUTO, swzone, CTLFLAG_RD, &swzone, 0,
18361203277SDag-Erling Smørgrav     "Actual size of swap metadata zone");
18461203277SDag-Erling Smørgrav static unsigned long swap_maxpages;
18561203277SDag-Erling Smørgrav SYSCTL_ULONG(_vm, OID_AUTO, swap_maxpages, CTLFLAG_RD, &swap_maxpages, 0,
18661203277SDag-Erling Smørgrav     "Maximum amount of swap supported");
1873364c323SKonstantin Belousov 
188d869a17eSMark Johnston static COUNTER_U64_DEFINE_EARLY(swap_free_deferred);
189a8081778SJeff Roberson SYSCTL_COUNTER_U64(_vm_stats_swap, OID_AUTO, free_deferred,
190a8081778SJeff Roberson     CTLFLAG_RD, &swap_free_deferred,
191a8081778SJeff Roberson     "Number of pages that deferred freeing swap space");
192a8081778SJeff Roberson 
193d869a17eSMark Johnston static COUNTER_U64_DEFINE_EARLY(swap_free_completed);
194a8081778SJeff Roberson SYSCTL_COUNTER_U64(_vm_stats_swap, OID_AUTO, free_completed,
195a8081778SJeff Roberson     CTLFLAG_RD, &swap_free_completed,
196a8081778SJeff Roberson     "Number of deferred frees completed");
197a8081778SJeff Roberson 
198e8bb589dSMatt Macy static int
sysctl_page_shift(SYSCTL_HANDLER_ARGS)199e8bb589dSMatt Macy sysctl_page_shift(SYSCTL_HANDLER_ARGS)
200e8bb589dSMatt Macy {
201e8bb589dSMatt Macy 	uint64_t newval;
202e8bb589dSMatt Macy 	u_long value = *(u_long *)arg1;
203e8bb589dSMatt Macy 
204e8bb589dSMatt Macy 	newval = ((uint64_t)value) << PAGE_SHIFT;
205e8bb589dSMatt Macy 	return (sysctl_handle_64(oidp, &newval, 0, req));
206e8bb589dSMatt Macy }
207e8bb589dSMatt Macy 
208ee744122SMateusz Guzik static bool
swap_reserve_by_cred_rlimit(u_long pincr,struct ucred * cred,int oc)209ee744122SMateusz Guzik swap_reserve_by_cred_rlimit(u_long pincr, struct ucred *cred, int oc)
210ee744122SMateusz Guzik {
211ee744122SMateusz Guzik 	struct uidinfo *uip;
212ee744122SMateusz Guzik 	u_long prev;
213ee744122SMateusz Guzik 
214ee744122SMateusz Guzik 	uip = cred->cr_ruidinfo;
215ee744122SMateusz Guzik 
216ee744122SMateusz Guzik 	prev = atomic_fetchadd_long(&uip->ui_vmsize, pincr);
217ee744122SMateusz Guzik 	if ((oc & SWAP_RESERVE_RLIMIT_ON) != 0 &&
218ee744122SMateusz Guzik 	    prev + pincr > lim_cur(curthread, RLIMIT_SWAP) &&
219ee744122SMateusz Guzik 	    priv_check(curthread, PRIV_VM_SWAP_NORLIMIT) != 0) {
220ee744122SMateusz Guzik 		prev = atomic_fetchadd_long(&uip->ui_vmsize, -pincr);
22126eed2aaSKonstantin Belousov 		KASSERT(prev >= pincr,
22226eed2aaSKonstantin Belousov 		    ("negative vmsize for uid %d\n", uip->ui_uid));
223ee744122SMateusz Guzik 		return (false);
224ee744122SMateusz Guzik 	}
225ee744122SMateusz Guzik 	return (true);
226ee744122SMateusz Guzik }
227ee744122SMateusz Guzik 
228ee744122SMateusz Guzik static void
swap_release_by_cred_rlimit(u_long pdecr,struct ucred * cred)229ee744122SMateusz Guzik swap_release_by_cred_rlimit(u_long pdecr, struct ucred *cred)
230ee744122SMateusz Guzik {
231ee744122SMateusz Guzik 	struct uidinfo *uip;
232ee744122SMateusz Guzik #ifdef INVARIANTS
233ee744122SMateusz Guzik 	u_long prev;
234ee744122SMateusz Guzik #endif
235ee744122SMateusz Guzik 
236ee744122SMateusz Guzik 	uip = cred->cr_ruidinfo;
237ee744122SMateusz Guzik 
238ee744122SMateusz Guzik #ifdef INVARIANTS
239ee744122SMateusz Guzik 	prev = atomic_fetchadd_long(&uip->ui_vmsize, -pdecr);
24026eed2aaSKonstantin Belousov 	KASSERT(prev >= pdecr,
24126eed2aaSKonstantin Belousov 	    ("negative vmsize for uid %d\n", uip->ui_uid));
242ee744122SMateusz Guzik #else
243ee744122SMateusz Guzik 	atomic_subtract_long(&uip->ui_vmsize, pdecr);
244ee744122SMateusz Guzik #endif
245ee744122SMateusz Guzik }
246ee744122SMateusz Guzik 
247ee744122SMateusz Guzik static void
swap_reserve_force_rlimit(u_long pincr,struct ucred * cred)248ee744122SMateusz Guzik swap_reserve_force_rlimit(u_long pincr, struct ucred *cred)
249ee744122SMateusz Guzik {
250ee744122SMateusz Guzik 	struct uidinfo *uip;
251ee744122SMateusz Guzik 
252ee744122SMateusz Guzik 	uip = cred->cr_ruidinfo;
253ee744122SMateusz Guzik 	atomic_add_long(&uip->ui_vmsize, pincr);
254ee744122SMateusz Guzik }
255ee744122SMateusz Guzik 
256ee744122SMateusz Guzik bool
swap_reserve(vm_ooffset_t incr)2573364c323SKonstantin Belousov swap_reserve(vm_ooffset_t incr)
2583364c323SKonstantin Belousov {
2593364c323SKonstantin Belousov 
260ef694c1aSEdward Tomasz Napierala 	return (swap_reserve_by_cred(incr, curthread->td_ucred));
2613364c323SKonstantin Belousov }
2623364c323SKonstantin Belousov 
263ee744122SMateusz Guzik bool
swap_reserve_by_cred(vm_ooffset_t incr,struct ucred * cred)264ef694c1aSEdward Tomasz Napierala swap_reserve_by_cred(vm_ooffset_t incr, struct ucred *cred)
2653364c323SKonstantin Belousov {
266e8bb589dSMatt Macy 	u_long r, s, prev, pincr;
267ee744122SMateusz Guzik #ifdef RACCT
268ee744122SMateusz Guzik 	int error;
269ee744122SMateusz Guzik #endif
270ee744122SMateusz Guzik 	int oc;
2713364c323SKonstantin Belousov 	static int curfail;
2723364c323SKonstantin Belousov 	static struct timeval lastfail;
2733364c323SKonstantin Belousov 
27426eed2aaSKonstantin Belousov 	KASSERT((incr & PAGE_MASK) == 0, ("%s: incr: %ju & PAGE_MASK",
27526eed2aaSKonstantin Belousov 	    __func__, (uintmax_t)incr));
2763364c323SKonstantin Belousov 
277afcc55f3SEdward Tomasz Napierala #ifdef RACCT
278ee744122SMateusz Guzik 	if (RACCT_ENABLED()) {
2791ba5ad42SEdward Tomasz Napierala 		PROC_LOCK(curproc);
2801ba5ad42SEdward Tomasz Napierala 		error = racct_add(curproc, RACCT_SWAP, incr);
2811ba5ad42SEdward Tomasz Napierala 		PROC_UNLOCK(curproc);
2821ba5ad42SEdward Tomasz Napierala 		if (error != 0)
283ee744122SMateusz Guzik 			return (false);
2844b5c9cf6SEdward Tomasz Napierala 	}
285afcc55f3SEdward Tomasz Napierala #endif
2861ba5ad42SEdward Tomasz Napierala 
287e8bb589dSMatt Macy 	pincr = atop(incr);
288e8bb589dSMatt Macy 	prev = atomic_fetchadd_long(&swap_reserved, pincr);
289e8bb589dSMatt Macy 	r = prev + pincr;
290ee744122SMateusz Guzik 	s = swap_total;
291a6cc4c6eSKonstantin Belousov 	oc = atomic_load_int(&vm_overcommit);
292ee744122SMateusz Guzik 	if (r > s && (oc & SWAP_RESERVE_ALLOW_NONWIRED) != 0) {
293ee744122SMateusz Guzik 		s += vm_cnt.v_page_count - vm_cnt.v_free_reserved -
294e958ad4cSJeff Roberson 		    vm_wire_count();
295ee744122SMateusz Guzik 	}
296ee744122SMateusz Guzik 	if ((oc & SWAP_RESERVE_FORCE_ON) != 0 && r > s &&
297ee744122SMateusz Guzik 	    priv_check(curthread, PRIV_VM_SWAP_NOQUOTA) != 0) {
298e8bb589dSMatt Macy 		prev = atomic_fetchadd_long(&swap_reserved, -pincr);
29926eed2aaSKonstantin Belousov 		KASSERT(prev >= pincr,
30026eed2aaSKonstantin Belousov 		    ("swap_reserved < incr on overcommit fail"));
301ee744122SMateusz Guzik 		goto out_error;
3023364c323SKonstantin Belousov 	}
3033364c323SKonstantin Belousov 
304ee744122SMateusz Guzik 	if (!swap_reserve_by_cred_rlimit(pincr, cred, oc)) {
305ee744122SMateusz Guzik 		prev = atomic_fetchadd_long(&swap_reserved, -pincr);
30626eed2aaSKonstantin Belousov 		KASSERT(prev >= pincr,
30726eed2aaSKonstantin Belousov 		    ("swap_reserved < incr on overcommit fail"));
308ee744122SMateusz Guzik 		goto out_error;
309ee744122SMateusz Guzik 	}
310ee744122SMateusz Guzik 
311ee744122SMateusz Guzik 	return (true);
312ee744122SMateusz Guzik 
313ee744122SMateusz Guzik out_error:
314ee744122SMateusz Guzik 	if (ppsratecheck(&lastfail, &curfail, 1)) {
31526eed2aaSKonstantin Belousov 		printf("uid %d, pid %d: swap reservation "
31626eed2aaSKonstantin Belousov 		    "for %jd bytes failed\n",
317ee744122SMateusz Guzik 		    cred->cr_ruidinfo->ui_uid, curproc->p_pid, incr);
318ee744122SMateusz Guzik 	}
319afcc55f3SEdward Tomasz Napierala #ifdef RACCT
320ee744122SMateusz Guzik 	if (RACCT_ENABLED()) {
3211ba5ad42SEdward Tomasz Napierala 		PROC_LOCK(curproc);
3221ba5ad42SEdward Tomasz Napierala 		racct_sub(curproc, RACCT_SWAP, incr);
3231ba5ad42SEdward Tomasz Napierala 		PROC_UNLOCK(curproc);
3241ba5ad42SEdward Tomasz Napierala 	}
325afcc55f3SEdward Tomasz Napierala #endif
3261ba5ad42SEdward Tomasz Napierala 
327ee744122SMateusz Guzik 	return (false);
3283364c323SKonstantin Belousov }
3293364c323SKonstantin Belousov 
3303364c323SKonstantin Belousov void
swap_reserve_force(vm_ooffset_t incr)3313364c323SKonstantin Belousov swap_reserve_force(vm_ooffset_t incr)
3323364c323SKonstantin Belousov {
333e8bb589dSMatt Macy 	u_long pincr;
3343364c323SKonstantin Belousov 
33526eed2aaSKonstantin Belousov 	KASSERT((incr & PAGE_MASK) == 0, ("%s: incr: %ju & PAGE_MASK",
33626eed2aaSKonstantin Belousov 	    __func__, (uintmax_t)incr));
3373364c323SKonstantin Belousov 
338afcc55f3SEdward Tomasz Napierala #ifdef RACCT
339ee744122SMateusz Guzik 	if (RACCT_ENABLED()) {
340ee744122SMateusz Guzik 		PROC_LOCK(curproc);
3411ba5ad42SEdward Tomasz Napierala 		racct_add_force(curproc, RACCT_SWAP, incr);
342ee744122SMateusz Guzik 		PROC_UNLOCK(curproc);
343ee744122SMateusz Guzik 	}
344afcc55f3SEdward Tomasz Napierala #endif
345e8bb589dSMatt Macy 	pincr = atop(incr);
346e8bb589dSMatt Macy 	atomic_add_long(&swap_reserved, pincr);
347ee744122SMateusz Guzik 	swap_reserve_force_rlimit(pincr, curthread->td_ucred);
3483364c323SKonstantin Belousov }
3493364c323SKonstantin Belousov 
3503364c323SKonstantin Belousov void
swap_release(vm_ooffset_t decr)3513364c323SKonstantin Belousov swap_release(vm_ooffset_t decr)
3523364c323SKonstantin Belousov {
353ef694c1aSEdward Tomasz Napierala 	struct ucred *cred;
3543364c323SKonstantin Belousov 
3553364c323SKonstantin Belousov 	PROC_LOCK(curproc);
356e8bb589dSMatt Macy 	cred = curproc->p_ucred;
357ef694c1aSEdward Tomasz Napierala 	swap_release_by_cred(decr, cred);
3583364c323SKonstantin Belousov 	PROC_UNLOCK(curproc);
3593364c323SKonstantin Belousov }
3603364c323SKonstantin Belousov 
3613364c323SKonstantin Belousov void
swap_release_by_cred(vm_ooffset_t decr,struct ucred * cred)362ef694c1aSEdward Tomasz Napierala swap_release_by_cred(vm_ooffset_t decr, struct ucred *cred)
3633364c323SKonstantin Belousov {
364ee744122SMateusz Guzik 	u_long pdecr;
365ee744122SMateusz Guzik #ifdef INVARIANTS
366ee744122SMateusz Guzik 	u_long prev;
367ee744122SMateusz Guzik #endif
3683364c323SKonstantin Belousov 
36926eed2aaSKonstantin Belousov 	KASSERT((decr & PAGE_MASK) == 0, ("%s: decr: %ju & PAGE_MASK",
37026eed2aaSKonstantin Belousov 	    __func__, (uintmax_t)decr));
3713364c323SKonstantin Belousov 
372e8bb589dSMatt Macy 	pdecr = atop(decr);
373ee744122SMateusz Guzik #ifdef INVARIANTS
374e8bb589dSMatt Macy 	prev = atomic_fetchadd_long(&swap_reserved, -pdecr);
375ee744122SMateusz Guzik 	KASSERT(prev >= pdecr, ("swap_reserved < decr"));
376ee744122SMateusz Guzik #else
377ee744122SMateusz Guzik 	atomic_subtract_long(&swap_reserved, pdecr);
378ee744122SMateusz Guzik #endif
3793364c323SKonstantin Belousov 
380ee744122SMateusz Guzik 	swap_release_by_cred_rlimit(pdecr, cred);
381e8bb589dSMatt Macy #ifdef RACCT
382e8bb589dSMatt Macy 	if (racct_enable)
3831ba5ad42SEdward Tomasz Napierala 		racct_sub_cred(cred, RACCT_SWAP, decr);
384e8bb589dSMatt Macy #endif
3853364c323SKonstantin Belousov }
3863364c323SKonstantin Belousov 
387f08b3099SKonstantin Belousov static int swap_pager_full = 2;	/* swap space exhaustion (task killing) */
3887dea2c2eSAlan Cox static int swap_pager_almost_full = 1; /* swap space exhaustion (w/hysteresis)*/
389756a5412SGleb Smirnoff static struct mtx swbuf_mtx;	/* to sync nsw_wcount_async */
390756a5412SGleb Smirnoff static int nsw_wcount_async;	/* limit async write buffers */
391327f4e83SMatthew Dillon static int nsw_wcount_async_max;/* assigned maximum			*/
392183f8e1eSGleb Smirnoff int nsw_cluster_max; 		/* maximum VOP I/O allowed		*/
3931c7c3c6aSMatthew Dillon 
39489c241d1SGleb Smirnoff static int sysctl_swap_async_max(SYSCTL_HANDLER_ARGS);
3954c36e917SKonstantin Belousov SYSCTL_PROC(_vm, OID_AUTO, swap_async_max, CTLTYPE_INT | CTLFLAG_RW |
3964c36e917SKonstantin Belousov     CTLFLAG_MPSAFE, NULL, 0, sysctl_swap_async_max, "I",
3974c36e917SKonstantin Belousov     "Maximum running async swap ops");
398d027ed2eSAlan Cox static int sysctl_swap_fragmentation(SYSCTL_HANDLER_ARGS);
399d027ed2eSAlan Cox SYSCTL_PROC(_vm, OID_AUTO, swap_fragmentation, CTLTYPE_STRING | CTLFLAG_RD |
400d027ed2eSAlan Cox     CTLFLAG_MPSAFE, NULL, 0, sysctl_swap_fragmentation, "A",
401d027ed2eSAlan Cox     "Swap Fragmentation Info");
40289c241d1SGleb Smirnoff 
4030cddd8f0SMatthew Dillon static struct sx sw_alloc_sx;
404327f4e83SMatthew Dillon 
4051c7c3c6aSMatthew Dillon /*
4061c7c3c6aSMatthew Dillon  * "named" and "unnamed" anon region objects.  Try to reduce the overhead
4071c7c3c6aSMatthew Dillon  * of searching a named list by hashing it just a little.
4081c7c3c6aSMatthew Dillon  */
4091c7c3c6aSMatthew Dillon 
4101c7c3c6aSMatthew Dillon #define NOBJLISTS		8
4111c7c3c6aSMatthew Dillon 
4121c7c3c6aSMatthew Dillon #define NOBJLIST(handle)	\
413af647ddeSBruce Evans 	(&swap_pager_object_list[((int)(intptr_t)handle >> 4) & (NOBJLISTS-1)])
4141c7c3c6aSMatthew Dillon 
4151c7c3c6aSMatthew Dillon static struct pagerlst	swap_pager_object_list[NOBJLISTS];
416756a5412SGleb Smirnoff static uma_zone_t swwbuf_zone;
417756a5412SGleb Smirnoff static uma_zone_t swrbuf_zone;
418f425ab8eSKonstantin Belousov static uma_zone_t swblk_zone;
419f425ab8eSKonstantin Belousov static uma_zone_t swpctrie_zone;
4201c7c3c6aSMatthew Dillon 
4211c7c3c6aSMatthew Dillon /*
4221c7c3c6aSMatthew Dillon  * pagerops for OBJT_SWAP - "swap pager".  Some ops are also global procedure
4231c7c3c6aSMatthew Dillon  * calls hooked from other parts of the VM system and do not appear here.
4241c7c3c6aSMatthew Dillon  * (see vm/swap_pager.h).
4251c7c3c6aSMatthew Dillon  */
426ff98689dSBruce Evans static vm_object_t
42711caded3SAlfred Perlstein 		swap_pager_alloc(void *handle, vm_ooffset_t size,
4283364c323SKonstantin Belousov 		    vm_prot_t prot, vm_ooffset_t offset, struct ucred *);
42911caded3SAlfred Perlstein static void	swap_pager_dealloc(vm_object_t object);
430b0cd2017SGleb Smirnoff static int	swap_pager_getpages(vm_object_t, vm_page_t *, int, int *,
431b0cd2017SGleb Smirnoff     int *);
432b0cd2017SGleb Smirnoff static int	swap_pager_getpages_async(vm_object_t, vm_page_t *, int, int *,
433b0cd2017SGleb Smirnoff     int *, pgo_getpages_iodone_t, void *);
434f74be55eSDimitry Andric static void	swap_pager_putpages(vm_object_t, vm_page_t *, int, int, int *);
4355ea4972cSAlan Cox static boolean_t
4365ea4972cSAlan Cox 		swap_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before, int *after);
43711caded3SAlfred Perlstein static void	swap_pager_init(void);
43811caded3SAlfred Perlstein static void	swap_pager_unswapped(vm_page_t);
439b3fed13eSDavid Schultz static void	swap_pager_swapoff(struct swdevt *sp);
440fe7bcbafSKyle Evans static void	swap_pager_update_writecount(vm_object_t object,
441fe7bcbafSKyle Evans     vm_offset_t start, vm_offset_t end);
442fe7bcbafSKyle Evans static void	swap_pager_release_writecount(vm_object_t object,
443fe7bcbafSKyle Evans     vm_offset_t start, vm_offset_t end);
444baa1ccceSKonstantin Belousov static void	swap_pager_freespace_pgo(vm_object_t object, vm_pindex_t start,
4451390a5cbSKonstantin Belousov     vm_size_t size);
446f708ef1bSPoul-Henning Kamp 
447d474440aSKonstantin Belousov const struct pagerops swappagerops = {
44800a3fe96SKonstantin Belousov 	.pgo_kvme_type = KVME_TYPE_SWAP,
449e04e4bacSPoul-Henning Kamp 	.pgo_init =	swap_pager_init,	/* early system initialization of pager	*/
450e04e4bacSPoul-Henning Kamp 	.pgo_alloc =	swap_pager_alloc,	/* allocate an OBJT_SWAP object */
451e04e4bacSPoul-Henning Kamp 	.pgo_dealloc =	swap_pager_dealloc,	/* deallocate an OBJT_SWAP object */
452e04e4bacSPoul-Henning Kamp 	.pgo_getpages =	swap_pager_getpages,	/* pagein */
45390effb23SGleb Smirnoff 	.pgo_getpages_async = swap_pager_getpages_async, /* pagein (async) */
454e04e4bacSPoul-Henning Kamp 	.pgo_putpages =	swap_pager_putpages,	/* pageout */
455e04e4bacSPoul-Henning Kamp 	.pgo_haspage =	swap_pager_haspage,	/* get backing store status for page */
456e04e4bacSPoul-Henning Kamp 	.pgo_pageunswapped = swap_pager_unswapped, /* remove swap related to page */
457fe7bcbafSKyle Evans 	.pgo_update_writecount = swap_pager_update_writecount,
458fe7bcbafSKyle Evans 	.pgo_release_writecount = swap_pager_release_writecount,
459baa1ccceSKonstantin Belousov 	.pgo_freespace = swap_pager_freespace_pgo,
4604b8365d7SKonstantin Belousov };
4614b8365d7SKonstantin Belousov 
4621c7c3c6aSMatthew Dillon /*
4631c7c3c6aSMatthew Dillon  * swap_*() routines are externally accessible.  swp_*() routines are
4641c7c3c6aSMatthew Dillon  * internal.
4651c7c3c6aSMatthew Dillon  */
466e9c0cc15SPoul-Henning Kamp static int nswap_lowat = 128;	/* in pages, swap_pager_almost_full warn */
467e9c0cc15SPoul-Henning Kamp static int nswap_hiwat = 512;	/* in pages, swap_pager_almost_full warn */
46826f9a767SRodney W. Grimes 
46907c348eaSAlan Cox SYSCTL_INT(_vm, OID_AUTO, dmmax, CTLFLAG_RD, &nsw_cluster_max, 0,
47007c348eaSAlan Cox     "Maximum size of a swap block in pages");
471cee313c4SRobert Watson 
472a5edd34aSPoul-Henning Kamp static void	swp_sizecheck(void);
47311caded3SAlfred Perlstein static void	swp_pager_async_iodone(struct buf *bp);
474230869e0SAlan Cox static bool	swp_pager_swblk_empty(struct swblk *sb, int start, int limit);
475abdab7b6SDoug Moore static void	swp_pager_free_empty_swblk(vm_object_t, struct swblk *sb);
47688ad2d7bSKonstantin Belousov static int	swapongeom(struct vnode *);
47759efee01SPoul-Henning Kamp static int	swaponvp(struct thread *, struct vnode *, u_long);
4780190c38bSKonstantin Belousov static int	swapoff_one(struct swdevt *sp, struct ucred *cred,
479e8dc2ba2SKonstantin Belousov 		    u_int flags);
48024a1cce3SDavid Greenman 
4811c7c3c6aSMatthew Dillon /*
4821c7c3c6aSMatthew Dillon  * Swap bitmap functions
4831c7c3c6aSMatthew Dillon  */
484a880104aSDoug Moore static void	swp_pager_freeswapspace(const struct page_range *range);
48536b01270SDoug Moore static daddr_t	swp_pager_getswapspace(int *npages);
4861c7c3c6aSMatthew Dillon 
4871c7c3c6aSMatthew Dillon /*
4881c7c3c6aSMatthew Dillon  * Metadata functions
4891c7c3c6aSMatthew Dillon  */
490d0b225d1SDoug Moore static daddr_t swp_pager_meta_build(struct pctrie_iter *, vm_object_t object,
491d0b225d1SDoug Moore 	vm_pindex_t, daddr_t, bool);
492645510e6SKonstantin Belousov static void swp_pager_meta_free(vm_object_t, vm_pindex_t, vm_pindex_t,
493baa1ccceSKonstantin Belousov     vm_size_t *);
494467057fcSDoug Moore static void swp_pager_meta_transfer(vm_object_t src, vm_object_t dst,
49594264705SDoug Moore     vm_pindex_t pindex, vm_pindex_t count);
49611caded3SAlfred Perlstein static void swp_pager_meta_free_all(vm_object_t);
49739f6d1e7SDoug Moore static daddr_t swp_pager_meta_lookup(struct pctrie_iter *, vm_pindex_t);
4981c7c3c6aSMatthew Dillon 
49978f1deefSAlan Cox static void
swp_pager_init_freerange(struct page_range * range)500a880104aSDoug Moore swp_pager_init_freerange(struct page_range *range)
50178f1deefSAlan Cox {
502a880104aSDoug Moore 	range->start = SWAPBLK_NONE;
503a880104aSDoug Moore 	range->num = 0;
50478f1deefSAlan Cox }
50578f1deefSAlan Cox 
50678f1deefSAlan Cox static void
swp_pager_update_freerange(struct page_range * range,daddr_t addr)507a880104aSDoug Moore swp_pager_update_freerange(struct page_range *range, daddr_t addr)
50878f1deefSAlan Cox {
509a880104aSDoug Moore 	if (range->start + range->num == addr) {
510a880104aSDoug Moore 		range->num++;
51178f1deefSAlan Cox 	} else {
512a880104aSDoug Moore 		swp_pager_freeswapspace(range);
513a880104aSDoug Moore 		range->start = addr;
514a880104aSDoug Moore 		range->num = 1;
51578f1deefSAlan Cox 	}
51678f1deefSAlan Cox }
51778f1deefSAlan Cox 
518f425ab8eSKonstantin Belousov static void *
swblk_trie_alloc(struct pctrie * ptree)519f425ab8eSKonstantin Belousov swblk_trie_alloc(struct pctrie *ptree)
520f425ab8eSKonstantin Belousov {
521f425ab8eSKonstantin Belousov 
522f425ab8eSKonstantin Belousov 	return (uma_zalloc(swpctrie_zone, M_NOWAIT | (curproc == pageproc ?
523f425ab8eSKonstantin Belousov 	    M_USE_RESERVE : 0)));
524f425ab8eSKonstantin Belousov }
525f425ab8eSKonstantin Belousov 
526f425ab8eSKonstantin Belousov static void
swblk_trie_free(struct pctrie * ptree,void * node)527f425ab8eSKonstantin Belousov swblk_trie_free(struct pctrie *ptree, void *node)
528f425ab8eSKonstantin Belousov {
529f425ab8eSKonstantin Belousov 
530f425ab8eSKonstantin Belousov 	uma_zfree(swpctrie_zone, node);
531f425ab8eSKonstantin Belousov }
532f425ab8eSKonstantin Belousov 
53352b35140SDoug Moore static int
swblk_start(struct swblk * sb,vm_pindex_t pindex)53452b35140SDoug Moore swblk_start(struct swblk *sb, vm_pindex_t pindex)
53552b35140SDoug Moore {
53652b35140SDoug Moore 	return (sb == NULL || sb->p >= pindex ?
53752b35140SDoug Moore 	    0 : pindex % SWAP_META_PAGES);
53852b35140SDoug Moore }
53952b35140SDoug Moore 
540f425ab8eSKonstantin Belousov PCTRIE_DEFINE(SWAP, swblk, p, swblk_trie_alloc, swblk_trie_free);
541f425ab8eSKonstantin Belousov 
54294264705SDoug Moore static struct swblk *
swblk_lookup(vm_object_t object,vm_pindex_t pindex)54394264705SDoug Moore swblk_lookup(vm_object_t object, vm_pindex_t pindex)
54494264705SDoug Moore {
54594264705SDoug Moore 	return (SWAP_PCTRIE_LOOKUP(&object->un_pager.swp.swp_blks,
54694264705SDoug Moore 	    rounddown(pindex, SWAP_META_PAGES)));
54794264705SDoug Moore }
54894264705SDoug Moore 
54994264705SDoug Moore static void
swblk_lookup_remove(vm_object_t object,struct swblk * sb)55094264705SDoug Moore swblk_lookup_remove(vm_object_t object, struct swblk *sb)
55194264705SDoug Moore {
55294264705SDoug Moore 	SWAP_PCTRIE_REMOVE(&object->un_pager.swp.swp_blks, sb->p);
55394264705SDoug Moore }
55494264705SDoug Moore 
55594264705SDoug Moore static bool
swblk_is_empty(vm_object_t object)55694264705SDoug Moore swblk_is_empty(vm_object_t object)
55794264705SDoug Moore {
55894264705SDoug Moore 	return (pctrie_is_empty(&object->un_pager.swp.swp_blks));
55994264705SDoug Moore }
56094264705SDoug Moore 
56134951b0bSDoug Moore static struct swblk *
swblk_iter_lookup_ge(struct pctrie_iter * blks,vm_pindex_t pindex)56234951b0bSDoug Moore swblk_iter_lookup_ge(struct pctrie_iter *blks, vm_pindex_t pindex)
56334951b0bSDoug Moore {
56434951b0bSDoug Moore 	return (SWAP_PCTRIE_ITER_LOOKUP_GE(blks,
56534951b0bSDoug Moore 	    rounddown(pindex, SWAP_META_PAGES)));
56634951b0bSDoug Moore }
56734951b0bSDoug Moore 
568d0b225d1SDoug Moore static void
swblk_iter_init_only(struct pctrie_iter * blks,vm_object_t object)569d0b225d1SDoug Moore swblk_iter_init_only(struct pctrie_iter *blks, vm_object_t object)
57052b35140SDoug Moore {
57152b35140SDoug Moore 	VM_OBJECT_ASSERT_LOCKED(object);
57252b35140SDoug Moore 	MPASS((object->flags & OBJ_SWAP) != 0);
57352b35140SDoug Moore 	pctrie_iter_init(blks, &object->un_pager.swp.swp_blks);
574d0b225d1SDoug Moore }
575d0b225d1SDoug Moore 
576d0b225d1SDoug Moore 
577d0b225d1SDoug Moore static struct swblk *
swblk_iter_init(struct pctrie_iter * blks,vm_object_t object,vm_pindex_t pindex)578d0b225d1SDoug Moore swblk_iter_init(struct pctrie_iter *blks, vm_object_t object,
579d0b225d1SDoug Moore     vm_pindex_t pindex)
580d0b225d1SDoug Moore {
581d0b225d1SDoug Moore 	swblk_iter_init_only(blks, object);
58234951b0bSDoug Moore 	return (swblk_iter_lookup_ge(blks, pindex));
58352b35140SDoug Moore }
58452b35140SDoug Moore 
58552b35140SDoug Moore static struct swblk *
swblk_iter_reinit(struct pctrie_iter * blks,vm_object_t object,vm_pindex_t pindex)586d0b225d1SDoug Moore swblk_iter_reinit(struct pctrie_iter *blks, vm_object_t object,
587d0b225d1SDoug Moore     vm_pindex_t pindex)
588d0b225d1SDoug Moore {
589d0b225d1SDoug Moore 	swblk_iter_init_only(blks, object);
590d0b225d1SDoug Moore 	return (SWAP_PCTRIE_ITER_LOOKUP(blks,
591d0b225d1SDoug Moore 	    rounddown(pindex, SWAP_META_PAGES)));
592d0b225d1SDoug Moore }
593d0b225d1SDoug Moore 
594d0b225d1SDoug Moore static struct swblk *
swblk_iter_limit_init(struct pctrie_iter * blks,vm_object_t object,vm_pindex_t pindex,vm_pindex_t limit)5956af02087SDoug Moore swblk_iter_limit_init(struct pctrie_iter *blks, vm_object_t object,
59652b35140SDoug Moore     vm_pindex_t pindex, vm_pindex_t limit)
59752b35140SDoug Moore {
59852b35140SDoug Moore 	VM_OBJECT_ASSERT_LOCKED(object);
59952b35140SDoug Moore 	MPASS((object->flags & OBJ_SWAP) != 0);
60052b35140SDoug Moore 	pctrie_iter_limit_init(blks, &object->un_pager.swp.swp_blks, limit);
60134951b0bSDoug Moore 	return (swblk_iter_lookup_ge(blks, pindex));
60252b35140SDoug Moore }
60352b35140SDoug Moore 
60452b35140SDoug Moore static struct swblk *
swblk_iter_next(struct pctrie_iter * blks)60552b35140SDoug Moore swblk_iter_next(struct pctrie_iter *blks)
60652b35140SDoug Moore {
60752b35140SDoug Moore 	return (SWAP_PCTRIE_ITER_JUMP_GE(blks, SWAP_META_PAGES));
60852b35140SDoug Moore }
60952b35140SDoug Moore 
610d0b225d1SDoug Moore static struct swblk *
swblk_iter_lookup(struct pctrie_iter * blks,vm_pindex_t pindex)611d0b225d1SDoug Moore swblk_iter_lookup(struct pctrie_iter *blks, vm_pindex_t pindex)
612d0b225d1SDoug Moore {
613d0b225d1SDoug Moore 	return (SWAP_PCTRIE_ITER_LOOKUP(blks,
614d0b225d1SDoug Moore 	    rounddown(pindex, SWAP_META_PAGES)));
615d0b225d1SDoug Moore }
616d0b225d1SDoug Moore 
617d0b225d1SDoug Moore static int
swblk_iter_insert(struct pctrie_iter * blks,struct swblk * sb)618d0b225d1SDoug Moore swblk_iter_insert(struct pctrie_iter *blks, struct swblk *sb)
619d0b225d1SDoug Moore {
620d0b225d1SDoug Moore 	return (SWAP_PCTRIE_ITER_INSERT(blks, sb));
621d0b225d1SDoug Moore }
622d0b225d1SDoug Moore 
62352b35140SDoug Moore static void
swblk_iter_remove(struct pctrie_iter * blks)62452b35140SDoug Moore swblk_iter_remove(struct pctrie_iter *blks)
62552b35140SDoug Moore {
62652b35140SDoug Moore 	SWAP_PCTRIE_ITER_REMOVE(blks);
62752b35140SDoug Moore }
62852b35140SDoug Moore 
6291c7c3c6aSMatthew Dillon /*
6301c7c3c6aSMatthew Dillon  * SWP_SIZECHECK() -	update swap_pager_full indication
6311c7c3c6aSMatthew Dillon  *
63220d3034fSMatthew Dillon  *	update the swap_pager_almost_full indication and warn when we are
63320d3034fSMatthew Dillon  *	about to run out of swap space, using lowat/hiwat hysteresis.
63420d3034fSMatthew Dillon  *
63520d3034fSMatthew Dillon  *	Clear swap_pager_full ( task killing ) indication when lowat is met.
6361c7c3c6aSMatthew Dillon  *
6371c7c3c6aSMatthew Dillon  *	No restrictions on call
6381c7c3c6aSMatthew Dillon  *	This routine may not block.
6391c7c3c6aSMatthew Dillon  */
640a5edd34aSPoul-Henning Kamp static void
swp_sizecheck(void)6412f249180SPoul-Henning Kamp swp_sizecheck(void)
6420d94caffSDavid Greenman {
64323955314SAlfred Perlstein 
6448f60c087SPoul-Henning Kamp 	if (swap_pager_avail < nswap_lowat) {
64520d3034fSMatthew Dillon 		if (swap_pager_almost_full == 0) {
6461af87c92SDavid Greenman 			printf("swap_pager: out of swap space\n");
64720d3034fSMatthew Dillon 			swap_pager_almost_full = 1;
6482b0d37a4SMatthew Dillon 		}
64920d3034fSMatthew Dillon 	} else {
65026f9a767SRodney W. Grimes 		swap_pager_full = 0;
6518f60c087SPoul-Henning Kamp 		if (swap_pager_avail > nswap_hiwat)
65220d3034fSMatthew Dillon 			swap_pager_almost_full = 0;
65326f9a767SRodney W. Grimes 	}
6541c7c3c6aSMatthew Dillon }
6551c7c3c6aSMatthew Dillon 
6561c7c3c6aSMatthew Dillon /*
6571c7c3c6aSMatthew Dillon  * SWAP_PAGER_INIT() -	initialize the swap pager!
6581c7c3c6aSMatthew Dillon  *
6591c7c3c6aSMatthew Dillon  *	Expected to be started from system init.  NOTE:  This code is run
6601c7c3c6aSMatthew Dillon  *	before much else so be careful what you depend on.  Most of the VM
6611c7c3c6aSMatthew Dillon  *	system has yet to be initialized at this point.
6621c7c3c6aSMatthew Dillon  */
663f5a12711SPoul-Henning Kamp static void
swap_pager_init(void)6642f249180SPoul-Henning Kamp swap_pager_init(void)
665df8bae1dSRodney W. Grimes {
6661c7c3c6aSMatthew Dillon 	/*
6671c7c3c6aSMatthew Dillon 	 * Initialize object lists
6681c7c3c6aSMatthew Dillon 	 */
6691c7c3c6aSMatthew Dillon 	int i;
6701c7c3c6aSMatthew Dillon 
6711c7c3c6aSMatthew Dillon 	for (i = 0; i < NOBJLISTS; ++i)
6721c7c3c6aSMatthew Dillon 		TAILQ_INIT(&swap_pager_object_list[i]);
67320da9c2eSPoul-Henning Kamp 	mtx_init(&sw_dev_mtx, "swapdev", NULL, MTX_DEF);
67415719273SKonstantin Belousov 	sx_init(&sw_alloc_sx, "swspsx");
67504533e1eSKonstantin Belousov 	sx_init(&swdev_syscall_lock, "swsysc");
676183f8e1eSGleb Smirnoff 
677183f8e1eSGleb Smirnoff 	/*
678183f8e1eSGleb Smirnoff 	 * The nsw_cluster_max is constrained by the bp->b_pages[]
679183f8e1eSGleb Smirnoff 	 * array, which has maxphys / PAGE_SIZE entries, and our locally
680183f8e1eSGleb Smirnoff 	 * defined MAX_PAGEOUT_CLUSTER.   Also be aware that swap ops are
681183f8e1eSGleb Smirnoff 	 * constrained by the swap device interleave stripe size.
682183f8e1eSGleb Smirnoff 	 *
683183f8e1eSGleb Smirnoff 	 * Initialized early so that GEOM_ELI can see it.
684183f8e1eSGleb Smirnoff 	 */
685183f8e1eSGleb Smirnoff 	nsw_cluster_max = min(maxphys / PAGE_SIZE, MAX_PAGEOUT_CLUSTER);
6861c7c3c6aSMatthew Dillon }
68726f9a767SRodney W. Grimes 
688df8bae1dSRodney W. Grimes /*
6891c7c3c6aSMatthew Dillon  * SWAP_PAGER_SWAP_INIT() - swap pager initialization from pageout process
6901c7c3c6aSMatthew Dillon  *
6911c7c3c6aSMatthew Dillon  *	Expected to be started from pageout process once, prior to entering
6921c7c3c6aSMatthew Dillon  *	its main loop.
693df8bae1dSRodney W. Grimes  */
69424a1cce3SDavid Greenman void
swap_pager_swap_init(void)6952f249180SPoul-Henning Kamp swap_pager_swap_init(void)
696df8bae1dSRodney W. Grimes {
69761203277SDag-Erling Smørgrav 	unsigned long n, n2;
6980d94caffSDavid Greenman 
69926f9a767SRodney W. Grimes 	/*
7001c7c3c6aSMatthew Dillon 	 * Number of in-transit swap bp operations.  Don't
7011c7c3c6aSMatthew Dillon 	 * exhaust the pbufs completely.  Make sure we
7021c7c3c6aSMatthew Dillon 	 * initialize workable values (0 will work for hysteresis
7031c7c3c6aSMatthew Dillon 	 * but it isn't very efficient).
7041c7c3c6aSMatthew Dillon 	 *
705327f4e83SMatthew Dillon 	 * Currently we hardwire nsw_wcount_async to 4.  This limit is
706327f4e83SMatthew Dillon 	 * designed to prevent other I/O from having high latencies due to
707327f4e83SMatthew Dillon 	 * our pageout I/O.  The value 4 works well for one or two active swap
708327f4e83SMatthew Dillon 	 * devices but is probably a little low if you have more.  Even so,
709327f4e83SMatthew Dillon 	 * a higher value would probably generate only a limited improvement
710327f4e83SMatthew Dillon 	 * with three or four active swap devices since the system does not
711327f4e83SMatthew Dillon 	 * typically have to pageout at extreme bandwidths.   We will want
712327f4e83SMatthew Dillon 	 * at least 2 per swap devices, and 4 is a pretty good value if you
713327f4e83SMatthew Dillon 	 * have one NFS swap device due to the command/ack latency over NFS.
714327f4e83SMatthew Dillon 	 * So it all works out pretty well.
715183f8e1eSGleb Smirnoff 	 *
716183f8e1eSGleb Smirnoff 	 * nsw_cluster_max is initialized in swap_pager_init().
71726f9a767SRodney W. Grimes 	 */
718327f4e83SMatthew Dillon 
719327f4e83SMatthew Dillon 	nsw_wcount_async = 4;
720327f4e83SMatthew Dillon 	nsw_wcount_async_max = nsw_wcount_async;
721756a5412SGleb Smirnoff 	mtx_init(&swbuf_mtx, "async swbuf mutex", NULL, MTX_DEF);
722756a5412SGleb Smirnoff 
723756a5412SGleb Smirnoff 	swwbuf_zone = pbuf_zsecond_create("swwbuf", nswbuf / 4);
724756a5412SGleb Smirnoff 	swrbuf_zone = pbuf_zsecond_create("swrbuf", nswbuf / 2);
72524a1cce3SDavid Greenman 
7261c7c3c6aSMatthew Dillon 	/*
727a8233027SKonstantin Belousov 	 * Initialize our zone, taking the user's requested size or
728a8233027SKonstantin Belousov 	 * estimating the number we need based on the number of pages
729a8233027SKonstantin Belousov 	 * in the system.
7301c7c3c6aSMatthew Dillon 	 */
731a8233027SKonstantin Belousov 	n = maxswzone != 0 ? maxswzone / sizeof(struct swblk) :
732a8233027SKonstantin Belousov 	    vm_cnt.v_page_count / 2;
733f425ab8eSKonstantin Belousov 	swpctrie_zone = uma_zcreate("swpctrie", pctrie_node_size(), NULL, NULL,
7346c5f36ffSJeff Roberson 	    pctrie_zone_init, NULL, UMA_ALIGN_PTR, 0);
735f425ab8eSKonstantin Belousov 	swblk_zone = uma_zcreate("swblk", sizeof(struct swblk), NULL, NULL,
7366c5f36ffSJeff Roberson 	    NULL, NULL, _Alignof(struct swblk) - 1, 0);
73722a5e6b9SDag-Erling Smørgrav 	n2 = n;
7388355f576SJeff Roberson 	do {
739f425ab8eSKonstantin Belousov 		if (uma_zone_reserve_kva(swblk_zone, n))
74061ce6eeeSAlfred Perlstein 			break;
74161ce6eeeSAlfred Perlstein 		/*
74261ce6eeeSAlfred Perlstein 		 * if the allocation failed, try a zone two thirds the
74361ce6eeeSAlfred Perlstein 		 * size of the previous attempt.
74461ce6eeeSAlfred Perlstein 		 */
74561ce6eeeSAlfred Perlstein 		n -= ((n + 2) / 3);
74661ce6eeeSAlfred Perlstein 	} while (n > 0);
74753faf5a7SKonstantin Belousov 
74853faf5a7SKonstantin Belousov 	/*
74953faf5a7SKonstantin Belousov 	 * Often uma_zone_reserve_kva() cannot reserve exactly the
75053faf5a7SKonstantin Belousov 	 * requested size.  Account for the difference when
75153faf5a7SKonstantin Belousov 	 * calculating swap_maxpages.
75253faf5a7SKonstantin Belousov 	 */
75353faf5a7SKonstantin Belousov 	n = uma_zone_get_max(swblk_zone);
75453faf5a7SKonstantin Belousov 
7551fffcd75SKonstantin Belousov 	if (n < n2)
756a8233027SKonstantin Belousov 		printf("Swap blk zone entries changed from %lu to %lu.\n",
757f425ab8eSKonstantin Belousov 		    n2, n);
758303fa05aSKonstantin Belousov 	/* absolute maximum we can handle assuming 100% efficiency */
75961203277SDag-Erling Smørgrav 	swap_maxpages = n * SWAP_META_PAGES;
760f425ab8eSKonstantin Belousov 	swzone = n * sizeof(struct swblk);
761f425ab8eSKonstantin Belousov 	if (!uma_zone_reserve_kva(swpctrie_zone, n))
762f425ab8eSKonstantin Belousov 		printf("Cannot reserve swap pctrie zone, "
763f425ab8eSKonstantin Belousov 		    "reduce kern.maxswzone.\n");
76424a1cce3SDavid Greenman }
76524a1cce3SDavid Greenman 
76628bc23abSKonstantin Belousov bool
swap_pager_init_object(vm_object_t object,void * handle,struct ucred * cred,vm_ooffset_t size,vm_ooffset_t offset)76728bc23abSKonstantin Belousov swap_pager_init_object(vm_object_t object, void *handle, struct ucred *cred,
76828bc23abSKonstantin Belousov     vm_ooffset_t size, vm_ooffset_t offset)
76928bc23abSKonstantin Belousov {
77028bc23abSKonstantin Belousov 	if (cred != NULL) {
77128bc23abSKonstantin Belousov 		if (!swap_reserve_by_cred(size, cred))
77228bc23abSKonstantin Belousov 			return (false);
77328bc23abSKonstantin Belousov 		crhold(cred);
77428bc23abSKonstantin Belousov 	}
77528bc23abSKonstantin Belousov 
77628bc23abSKonstantin Belousov 	object->un_pager.swp.writemappings = 0;
77728bc23abSKonstantin Belousov 	object->handle = handle;
77828bc23abSKonstantin Belousov 	if (cred != NULL) {
77928bc23abSKonstantin Belousov 		object->cred = cred;
78028bc23abSKonstantin Belousov 		object->charge = size;
78128bc23abSKonstantin Belousov 	}
78228bc23abSKonstantin Belousov 	return (true);
78328bc23abSKonstantin Belousov }
78428bc23abSKonstantin Belousov 
785eb4d6a1bSKonstantin Belousov static vm_object_t
swap_pager_alloc_init(objtype_t otype,void * handle,struct ucred * cred,vm_ooffset_t size,vm_ooffset_t offset)7864b8365d7SKonstantin Belousov swap_pager_alloc_init(objtype_t otype, void *handle, struct ucred *cred,
7874b8365d7SKonstantin Belousov     vm_ooffset_t size, vm_ooffset_t offset)
788eb4d6a1bSKonstantin Belousov {
789eb4d6a1bSKonstantin Belousov 	vm_object_t object;
790eb4d6a1bSKonstantin Belousov 
791f425ab8eSKonstantin Belousov 	/*
792f425ab8eSKonstantin Belousov 	 * The un_pager.swp.swp_blks trie is initialized by
793f425ab8eSKonstantin Belousov 	 * vm_object_allocate() to ensure the correct order of
794f425ab8eSKonstantin Belousov 	 * visibility to other threads.
795f425ab8eSKonstantin Belousov 	 */
7964b8365d7SKonstantin Belousov 	object = vm_object_allocate(otype, OFF_TO_IDX(offset +
797eb4d6a1bSKonstantin Belousov 	    PAGE_MASK + size));
798f425ab8eSKonstantin Belousov 
79928bc23abSKonstantin Belousov 	if (!swap_pager_init_object(object, handle, cred, size, offset)) {
80028bc23abSKonstantin Belousov 		vm_object_deallocate(object);
80128bc23abSKonstantin Belousov 		return (NULL);
802eb4d6a1bSKonstantin Belousov 	}
803eb4d6a1bSKonstantin Belousov 	return (object);
804eb4d6a1bSKonstantin Belousov }
805eb4d6a1bSKonstantin Belousov 
80624a1cce3SDavid Greenman /*
8071c7c3c6aSMatthew Dillon  * SWAP_PAGER_ALLOC() -	allocate a new OBJT_SWAP VM object and instantiate
8081c7c3c6aSMatthew Dillon  *			its metadata structures.
8091c7c3c6aSMatthew Dillon  *
8101c7c3c6aSMatthew Dillon  *	This routine is called from the mmap and fork code to create a new
811eb4d6a1bSKonstantin Belousov  *	OBJT_SWAP object.
8121c7c3c6aSMatthew Dillon  *
813eb4d6a1bSKonstantin Belousov  *	This routine must ensure that no live duplicate is created for
814eb4d6a1bSKonstantin Belousov  *	the named object request, which is protected against by
815eb4d6a1bSKonstantin Belousov  *	holding the sw_alloc_sx lock in case handle != NULL.
81624a1cce3SDavid Greenman  */
817f5a12711SPoul-Henning Kamp static vm_object_t
swap_pager_alloc(void * handle,vm_ooffset_t size,vm_prot_t prot,vm_ooffset_t offset,struct ucred * cred)8186cde7a16SDavid Greenman swap_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
8193364c323SKonstantin Belousov     vm_ooffset_t offset, struct ucred *cred)
82024a1cce3SDavid Greenman {
82124a1cce3SDavid Greenman 	vm_object_t object;
8222f7af3dbSAlan Cox 
823eb4d6a1bSKonstantin Belousov 	if (handle != NULL) {
8241c7c3c6aSMatthew Dillon 		/*
8251c7c3c6aSMatthew Dillon 		 * Reference existing named region or allocate new one.  There
8261c7c3c6aSMatthew Dillon 		 * should not be a race here against swp_pager_meta_build()
8271c7c3c6aSMatthew Dillon 		 * as called from vm_page_remove() in regards to the lookup
8281c7c3c6aSMatthew Dillon 		 * of the handle.
8291c7c3c6aSMatthew Dillon 		 */
8300cddd8f0SMatthew Dillon 		sx_xlock(&sw_alloc_sx);
8311c7c3c6aSMatthew Dillon 		object = vm_pager_object_lookup(NOBJLIST(handle), handle);
832b5e8f167SAlan Cox 		if (object == NULL) {
8334b8365d7SKonstantin Belousov 			object = swap_pager_alloc_init(OBJT_SWAP, handle, cred,
8344b8365d7SKonstantin Belousov 			    size, offset);
835eb4d6a1bSKonstantin Belousov 			if (object != NULL) {
836eb4d6a1bSKonstantin Belousov 				TAILQ_INSERT_TAIL(NOBJLIST(object->handle),
837eb4d6a1bSKonstantin Belousov 				    object, pager_object_list);
8383364c323SKonstantin Belousov 			}
83924a1cce3SDavid Greenman 		}
8400cddd8f0SMatthew Dillon 		sx_xunlock(&sw_alloc_sx);
84124a1cce3SDavid Greenman 	} else {
8424b8365d7SKonstantin Belousov 		object = swap_pager_alloc_init(OBJT_SWAP, handle, cred,
8434b8365d7SKonstantin Belousov 		    size, offset);
84424a1cce3SDavid Greenman 	}
84524a1cce3SDavid Greenman 	return (object);
846df8bae1dSRodney W. Grimes }
847df8bae1dSRodney W. Grimes 
84826f9a767SRodney W. Grimes /*
8491c7c3c6aSMatthew Dillon  * SWAP_PAGER_DEALLOC() -	remove swap metadata from object
8501c7c3c6aSMatthew Dillon  *
8511c7c3c6aSMatthew Dillon  *	The swap backing for the object is destroyed.  The code is
8521c7c3c6aSMatthew Dillon  *	designed such that we can reinstantiate it later, but this
8531c7c3c6aSMatthew Dillon  *	routine is typically called only when the entire object is
8541c7c3c6aSMatthew Dillon  *	about to be destroyed.
8551c7c3c6aSMatthew Dillon  *
85615523cf7SKonstantin Belousov  *	The object must be locked.
85726f9a767SRodney W. Grimes  */
858df8bae1dSRodney W. Grimes static void
swap_pager_dealloc(vm_object_t object)8592f249180SPoul-Henning Kamp swap_pager_dealloc(vm_object_t object)
86026f9a767SRodney W. Grimes {
8614dcc5c2dSMatthew Dillon 
862eb4d6a1bSKonstantin Belousov 	VM_OBJECT_ASSERT_WLOCKED(object);
863eb4d6a1bSKonstantin Belousov 	KASSERT((object->flags & OBJ_DEAD) != 0, ("dealloc of reachable obj"));
864eb4d6a1bSKonstantin Belousov 
86526f9a767SRodney W. Grimes 	/*
8661c7c3c6aSMatthew Dillon 	 * Remove from list right away so lookups will fail if we block for
8671c7c3c6aSMatthew Dillon 	 * pageout completion.
86826f9a767SRodney W. Grimes 	 */
86967388836SKonstantin Belousov 	if ((object->flags & OBJ_ANON) == 0 && object->handle != NULL) {
870eb4d6a1bSKonstantin Belousov 		VM_OBJECT_WUNLOCK(object);
871eb4d6a1bSKonstantin Belousov 		sx_xlock(&sw_alloc_sx);
872eb4d6a1bSKonstantin Belousov 		TAILQ_REMOVE(NOBJLIST(object->handle), object,
873eb4d6a1bSKonstantin Belousov 		    pager_object_list);
874eb4d6a1bSKonstantin Belousov 		sx_xunlock(&sw_alloc_sx);
875eb4d6a1bSKonstantin Belousov 		VM_OBJECT_WLOCK(object);
876bd228075SAlan Cox 	}
8771c7c3c6aSMatthew Dillon 
8781c7c3c6aSMatthew Dillon 	vm_object_pip_wait(object, "swpdea");
8791c7c3c6aSMatthew Dillon 
8801c7c3c6aSMatthew Dillon 	/*
8811c7c3c6aSMatthew Dillon 	 * Free all remaining metadata.  We only bother to free it from
8821c7c3c6aSMatthew Dillon 	 * the swap meta data.  We do not attempt to free swapblk's still
8831c7c3c6aSMatthew Dillon 	 * associated with vm_page_t's for this object.  We do not care
8841c7c3c6aSMatthew Dillon 	 * if paging is still in progress on some objects.
8851c7c3c6aSMatthew Dillon 	 */
8861c7c3c6aSMatthew Dillon 	swp_pager_meta_free_all(object);
887e735691bSJohn Baldwin 	object->handle = NULL;
888e735691bSJohn Baldwin 	object->type = OBJT_DEAD;
889fffc1c59SMark Johnston 
890fffc1c59SMark Johnston 	/*
891fffc1c59SMark Johnston 	 * Release the allocation charge.
892fffc1c59SMark Johnston 	 */
893fffc1c59SMark Johnston 	if (object->cred != NULL) {
894fffc1c59SMark Johnston 		swap_release_by_cred(object->charge, object->cred);
895fffc1c59SMark Johnston 		object->charge = 0;
896fffc1c59SMark Johnston 		crfree(object->cred);
897fffc1c59SMark Johnston 		object->cred = NULL;
898fffc1c59SMark Johnston 	}
899fffc1c59SMark Johnston 
900fffc1c59SMark Johnston 	/*
901fffc1c59SMark Johnston 	 * Hide the object from swap_pager_swapoff().
902fffc1c59SMark Johnston 	 */
9034b8365d7SKonstantin Belousov 	vm_object_clear_flag(object, OBJ_SWAP);
9041c7c3c6aSMatthew Dillon }
9051c7c3c6aSMatthew Dillon 
9061c7c3c6aSMatthew Dillon /************************************************************************
9071c7c3c6aSMatthew Dillon  *			SWAP PAGER BITMAP ROUTINES			*
9081c7c3c6aSMatthew Dillon  ************************************************************************/
9091c7c3c6aSMatthew Dillon 
9101c7c3c6aSMatthew Dillon /*
9111c7c3c6aSMatthew Dillon  * SWP_PAGER_GETSWAPSPACE() -	allocate raw swap space
9121c7c3c6aSMatthew Dillon  *
91336b01270SDoug Moore  *	Allocate swap for up to the requested number of pages.  The
91436b01270SDoug Moore  *	starting swap block number (a page index) is returned or
91536b01270SDoug Moore  *	SWAPBLK_NONE if the allocation failed.
9161c7c3c6aSMatthew Dillon  *
9171c7c3c6aSMatthew Dillon  *	Also has the side effect of advising that somebody made a mistake
9181c7c3c6aSMatthew Dillon  *	when they configured swap and didn't configure enough.
9191c7c3c6aSMatthew Dillon  *
92015523cf7SKonstantin Belousov  *	This routine may not sleep.
9218f60c087SPoul-Henning Kamp  *
9228f60c087SPoul-Henning Kamp  *	We allocate in round-robin fashion from the configured devices.
9231c7c3c6aSMatthew Dillon  */
924a5edd34aSPoul-Henning Kamp static daddr_t
swp_pager_getswapspace(int * io_npages)92536b01270SDoug Moore swp_pager_getswapspace(int *io_npages)
9261c7c3c6aSMatthew Dillon {
9271c7c3c6aSMatthew Dillon 	daddr_t blk;
9288f60c087SPoul-Henning Kamp 	struct swdevt *sp;
92987ae0686SDoug Moore 	int mpages, npages;
9301c7c3c6aSMatthew Dillon 
93136b01270SDoug Moore 	KASSERT(*io_npages >= 1,
93236b01270SDoug Moore 	    ("%s: npages not positive", __func__));
9338f60c087SPoul-Henning Kamp 	blk = SWAPBLK_NONE;
93431c82722SDoug Moore 	mpages = *io_npages;
93531c82722SDoug Moore 	npages = imin(BLIST_MAX_ALLOC, mpages);
93620da9c2eSPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
9378f60c087SPoul-Henning Kamp 	sp = swdevhd;
93848e98a2aSDoug Moore 	while (!TAILQ_EMPTY(&swtailq)) {
9398f60c087SPoul-Henning Kamp 		if (sp == NULL)
9408f60c087SPoul-Henning Kamp 			sp = TAILQ_FIRST(&swtailq);
94148e98a2aSDoug Moore 		if ((sp->sw_flags & SW_CLOSING) == 0)
94287ae0686SDoug Moore 			blk = blist_alloc(sp->sw_blist, &npages, mpages);
94348e98a2aSDoug Moore 		if (blk != SWAPBLK_NONE)
94448e98a2aSDoug Moore 			break;
94548e98a2aSDoug Moore 		sp = TAILQ_NEXT(sp, sw_list);
94648e98a2aSDoug Moore 		if (swdevhd == sp) {
94736b01270SDoug Moore 			if (npages == 1)
94848e98a2aSDoug Moore 				break;
94987ae0686SDoug Moore 			mpages = npages - 1;
95048e98a2aSDoug Moore 			npages >>= 1;
95148e98a2aSDoug Moore 		}
95248e98a2aSDoug Moore 	}
9538f60c087SPoul-Henning Kamp 	if (blk != SWAPBLK_NONE) {
95448e98a2aSDoug Moore 		*io_npages = npages;
9558f60c087SPoul-Henning Kamp 		blk += sp->sw_first;
9568f60c087SPoul-Henning Kamp 		sp->sw_used += npages;
957d05bc129SAlan Cox 		swap_pager_avail -= npages;
9588f60c087SPoul-Henning Kamp 		swp_sizecheck();
9598f60c087SPoul-Henning Kamp 		swdevhd = TAILQ_NEXT(sp, sw_list);
96048e98a2aSDoug Moore 	} else {
9612b0d37a4SMatthew Dillon 		if (swap_pager_full != 2) {
96248e98a2aSDoug Moore 			printf("swp_pager_getswapspace(%d): failed\n",
96348e98a2aSDoug Moore 			    *io_npages);
9642b0d37a4SMatthew Dillon 			swap_pager_full = 2;
96520d3034fSMatthew Dillon 			swap_pager_almost_full = 1;
9662b0d37a4SMatthew Dillon 		}
9678f60c087SPoul-Henning Kamp 		swdevhd = NULL;
96848e98a2aSDoug Moore 	}
969d05bc129SAlan Cox 	mtx_unlock(&sw_dev_mtx);
9701c7c3c6aSMatthew Dillon 	return (blk);
97126f9a767SRodney W. Grimes }
97226f9a767SRodney W. Grimes 
973541a1175SAlan Cox static bool
swp_pager_isondev(daddr_t blk,struct swdevt * sp)974b3fed13eSDavid Schultz swp_pager_isondev(daddr_t blk, struct swdevt *sp)
9758f60c087SPoul-Henning Kamp {
9768f60c087SPoul-Henning Kamp 
977b3fed13eSDavid Schultz 	return (blk >= sp->sw_first && blk < sp->sw_end);
9788f60c087SPoul-Henning Kamp }
9798f60c087SPoul-Henning Kamp 
9804b03903aSPoul-Henning Kamp static void
swp_pager_strategy(struct buf * bp)9814b03903aSPoul-Henning Kamp swp_pager_strategy(struct buf *bp)
9824b03903aSPoul-Henning Kamp {
9834b03903aSPoul-Henning Kamp 	struct swdevt *sp;
9844b03903aSPoul-Henning Kamp 
98520da9c2eSPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
9864b03903aSPoul-Henning Kamp 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
987541a1175SAlan Cox 		if (swp_pager_isondev(bp->b_blkno, sp)) {
98820da9c2eSPoul-Henning Kamp 			mtx_unlock(&sw_dev_mtx);
9892cc718a1SKonstantin Belousov 			if ((sp->sw_flags & SW_UNMAPPED) != 0 &&
9902cc718a1SKonstantin Belousov 			    unmapped_buf_allowed) {
9912cc718a1SKonstantin Belousov 				bp->b_data = unmapped_buf;
9922cc718a1SKonstantin Belousov 				bp->b_offset = 0;
9932cc718a1SKonstantin Belousov 			} else {
9942cc718a1SKonstantin Belousov 				pmap_qenter((vm_offset_t)bp->b_data,
9952cc718a1SKonstantin Belousov 				    &bp->b_pages[0], bp->b_bcount / PAGE_SIZE);
9962cc718a1SKonstantin Belousov 			}
9974b03903aSPoul-Henning Kamp 			sp->sw_strategy(bp, sp);
9984b03903aSPoul-Henning Kamp 			return;
9994b03903aSPoul-Henning Kamp 		}
10004b03903aSPoul-Henning Kamp 	}
100120da9c2eSPoul-Henning Kamp 	panic("Swapdev not found");
10024b03903aSPoul-Henning Kamp }
10034b03903aSPoul-Henning Kamp 
100426f9a767SRodney W. Grimes /*
10051c7c3c6aSMatthew Dillon  * SWP_PAGER_FREESWAPSPACE() -	free raw swap space
10061c7c3c6aSMatthew Dillon  *
10071c7c3c6aSMatthew Dillon  *	This routine returns the specified swap blocks back to the bitmap.
10081c7c3c6aSMatthew Dillon  *
100915523cf7SKonstantin Belousov  *	This routine may not sleep.
101026f9a767SRodney W. Grimes  */
1011a5edd34aSPoul-Henning Kamp static void
swp_pager_freeswapspace(const struct page_range * range)1012a880104aSDoug Moore swp_pager_freeswapspace(const struct page_range *range)
10130d94caffSDavid Greenman {
1014a880104aSDoug Moore 	daddr_t blk, npages;
10158f60c087SPoul-Henning Kamp 	struct swdevt *sp;
101692da00bbSMatthew Dillon 
1017a880104aSDoug Moore 	blk = range->start;
1018a880104aSDoug Moore 	npages = range->num;
1019230869e0SAlan Cox 	if (npages == 0)
1020230869e0SAlan Cox 		return;
10217645e885SAlan Cox 	mtx_lock(&sw_dev_mtx);
10227645e885SAlan Cox 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
1023541a1175SAlan Cox 		if (swp_pager_isondev(blk, sp)) {
102492da00bbSMatthew Dillon 			sp->sw_used -= npages;
102592da00bbSMatthew Dillon 			/*
10267645e885SAlan Cox 			 * If we are attempting to stop swapping on
10277645e885SAlan Cox 			 * this device, we don't want to mark any
10287645e885SAlan Cox 			 * blocks free lest they be reused.
102992da00bbSMatthew Dillon 			 */
10307645e885SAlan Cox 			if ((sp->sw_flags & SW_CLOSING) == 0) {
10317645e885SAlan Cox 				blist_free(sp->sw_blist, blk - sp->sw_first,
10327645e885SAlan Cox 				    npages);
10338f60c087SPoul-Henning Kamp 				swap_pager_avail += npages;
10341c7c3c6aSMatthew Dillon 				swp_sizecheck();
103526f9a767SRodney W. Grimes 			}
10367645e885SAlan Cox 			mtx_unlock(&sw_dev_mtx);
10377645e885SAlan Cox 			return;
10387645e885SAlan Cox 		}
10397645e885SAlan Cox 	}
10407645e885SAlan Cox 	panic("Swapdev not found");
10417645e885SAlan Cox }
10421c7c3c6aSMatthew Dillon 
104326f9a767SRodney W. Grimes /*
1044d027ed2eSAlan Cox  * SYSCTL_SWAP_FRAGMENTATION() -	produce raw swap space stats
1045d027ed2eSAlan Cox  */
1046d027ed2eSAlan Cox static int
sysctl_swap_fragmentation(SYSCTL_HANDLER_ARGS)1047d027ed2eSAlan Cox sysctl_swap_fragmentation(SYSCTL_HANDLER_ARGS)
1048d027ed2eSAlan Cox {
1049d027ed2eSAlan Cox 	struct sbuf sbuf;
1050d027ed2eSAlan Cox 	struct swdevt *sp;
1051d027ed2eSAlan Cox 	const char *devname;
1052d027ed2eSAlan Cox 	int error;
1053d027ed2eSAlan Cox 
1054d027ed2eSAlan Cox 	error = sysctl_wire_old_buffer(req, 0);
1055d027ed2eSAlan Cox 	if (error != 0)
1056d027ed2eSAlan Cox 		return (error);
1057d027ed2eSAlan Cox 	sbuf_new_for_sysctl(&sbuf, NULL, 128, req);
1058d027ed2eSAlan Cox 	mtx_lock(&sw_dev_mtx);
1059d027ed2eSAlan Cox 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
10607ad2a82dSMateusz Guzik 		if (vn_isdisk(sp->sw_vp))
1061d027ed2eSAlan Cox 			devname = devtoname(sp->sw_vp->v_rdev);
1062d027ed2eSAlan Cox 		else
1063d027ed2eSAlan Cox 			devname = "[file]";
1064d027ed2eSAlan Cox 		sbuf_printf(&sbuf, "\nFree space on device %s:\n", devname);
1065d027ed2eSAlan Cox 		blist_stats(sp->sw_blist, &sbuf);
1066d027ed2eSAlan Cox 	}
1067d027ed2eSAlan Cox 	mtx_unlock(&sw_dev_mtx);
1068d027ed2eSAlan Cox 	error = sbuf_finish(&sbuf);
1069d027ed2eSAlan Cox 	sbuf_delete(&sbuf);
1070d027ed2eSAlan Cox 	return (error);
1071d027ed2eSAlan Cox }
1072d027ed2eSAlan Cox 
1073d027ed2eSAlan Cox /*
10741c7c3c6aSMatthew Dillon  * SWAP_PAGER_FREESPACE() -	frees swap blocks associated with a page
10751c7c3c6aSMatthew Dillon  *				range within an object.
10761c7c3c6aSMatthew Dillon  *
10771c7c3c6aSMatthew Dillon  *	This routine removes swapblk assignments from swap metadata.
10781c7c3c6aSMatthew Dillon  *
10791c7c3c6aSMatthew Dillon  *	The external callers of this routine typically have already destroyed
10801c7c3c6aSMatthew Dillon  *	or renamed vm_page_t's associated with this range in the object so
10811c7c3c6aSMatthew Dillon  *	we should be ok.
1082c25673ffSAttilio Rao  *
1083c25673ffSAttilio Rao  *	The object must be locked.
108426f9a767SRodney W. Grimes  */
1085baa1ccceSKonstantin Belousov void
swap_pager_freespace(vm_object_t object,vm_pindex_t start,vm_size_t size,vm_size_t * freed)1086baa1ccceSKonstantin Belousov swap_pager_freespace(vm_object_t object, vm_pindex_t start, vm_size_t size,
1087baa1ccceSKonstantin Belousov     vm_size_t *freed)
108826f9a767SRodney W. Grimes {
1089baa1ccceSKonstantin Belousov 	MPASS((object->flags & OBJ_SWAP) != 0);
109023955314SAlfred Perlstein 
1091baa1ccceSKonstantin Belousov 	swp_pager_meta_free(object, start, size, freed);
1092baa1ccceSKonstantin Belousov }
1093baa1ccceSKonstantin Belousov 
1094baa1ccceSKonstantin Belousov static void
swap_pager_freespace_pgo(vm_object_t object,vm_pindex_t start,vm_size_t size)1095baa1ccceSKonstantin Belousov swap_pager_freespace_pgo(vm_object_t object, vm_pindex_t start, vm_size_t size)
1096baa1ccceSKonstantin Belousov {
1097baa1ccceSKonstantin Belousov 	MPASS((object->flags & OBJ_SWAP) != 0);
1098baa1ccceSKonstantin Belousov 
1099baa1ccceSKonstantin Belousov 	swp_pager_meta_free(object, start, size, NULL);
11004dcc5c2dSMatthew Dillon }
11014dcc5c2dSMatthew Dillon 
11024dcc5c2dSMatthew Dillon /*
11034dcc5c2dSMatthew Dillon  * SWAP_PAGER_RESERVE() - reserve swap blocks in object
11044dcc5c2dSMatthew Dillon  *
11054dcc5c2dSMatthew Dillon  *	Assigns swap blocks to the specified range within the object.  The
110656ce850bSKonstantin Belousov  *	swap blocks are not zeroed.  Any previous swap assignment is destroyed.
11074dcc5c2dSMatthew Dillon  *
11084dcc5c2dSMatthew Dillon  *	Returns 0 on success, -1 on failure.
11094dcc5c2dSMatthew Dillon  */
11104dcc5c2dSMatthew Dillon int
swap_pager_reserve(vm_object_t object,vm_pindex_t start,vm_pindex_t size)1111686aa928SMark Johnston swap_pager_reserve(vm_object_t object, vm_pindex_t start, vm_pindex_t size)
11124dcc5c2dSMatthew Dillon {
1113d0b225d1SDoug Moore 	struct pctrie_iter blks;
1114a880104aSDoug Moore 	struct page_range range;
1115a880104aSDoug Moore 	daddr_t addr, blk;
1116686aa928SMark Johnston 	vm_pindex_t i, j;
1117686aa928SMark Johnston 	int n;
11184dcc5c2dSMatthew Dillon 
1119a880104aSDoug Moore 	swp_pager_init_freerange(&range);
112089f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
1121d0b225d1SDoug Moore 	swblk_iter_init_only(&blks, object);
112248e98a2aSDoug Moore 	for (i = 0; i < size; i += n) {
1123686aa928SMark Johnston 		n = MIN(size - i, INT_MAX);
112436b01270SDoug Moore 		blk = swp_pager_getswapspace(&n);
112548e98a2aSDoug Moore 		if (blk == SWAPBLK_NONE) {
1126baa1ccceSKonstantin Belousov 			swp_pager_meta_free(object, start, i, NULL);
112789f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
11284dcc5c2dSMatthew Dillon 			return (-1);
11294dcc5c2dSMatthew Dillon 		}
113048e98a2aSDoug Moore 		for (j = 0; j < n; ++j) {
1131d0b225d1SDoug Moore 			addr = swp_pager_meta_build(&blks, object,
113275694e65SDoug Moore 			    start + i + j, blk + j, false);
113378f1deefSAlan Cox 			if (addr != SWAPBLK_NONE)
1134a880104aSDoug Moore 				swp_pager_update_freerange(&range, addr);
113548e98a2aSDoug Moore 		}
11364dcc5c2dSMatthew Dillon 	}
1137a880104aSDoug Moore 	swp_pager_freeswapspace(&range);
113889f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
11394dcc5c2dSMatthew Dillon 	return (0);
114026f9a767SRodney W. Grimes }
114126f9a767SRodney W. Grimes 
11420a47b48bSJohn Dyson /*
11431c7c3c6aSMatthew Dillon  * SWAP_PAGER_COPY() -  copy blocks from source pager to destination pager
11441c7c3c6aSMatthew Dillon  *			and destroy the source.
11451c7c3c6aSMatthew Dillon  *
11461c7c3c6aSMatthew Dillon  *	Copy any valid swapblks from the source to the destination.  In
11471c7c3c6aSMatthew Dillon  *	cases where both the source and destination have a valid swapblk,
11481c7c3c6aSMatthew Dillon  *	we keep the destination's.
11491c7c3c6aSMatthew Dillon  *
115015523cf7SKonstantin Belousov  *	This routine is allowed to sleep.  It may sleep allocating metadata
115198087a06SJeff Roberson  *	indirectly through swp_pager_meta_build().
11521c7c3c6aSMatthew Dillon  *
11531c7c3c6aSMatthew Dillon  *	The source object contains no vm_page_t's (which is just as well)
11541c7c3c6aSMatthew Dillon  *
115515523cf7SKonstantin Belousov  *	The source and destination objects must be locked.
115615523cf7SKonstantin Belousov  *	Both object locks may temporarily be released.
115726f9a767SRodney W. Grimes  */
115826f9a767SRodney W. Grimes void
swap_pager_copy(vm_object_t srcobject,vm_object_t dstobject,vm_pindex_t offset,int destroysource)11592f249180SPoul-Henning Kamp swap_pager_copy(vm_object_t srcobject, vm_object_t dstobject,
11602f249180SPoul-Henning Kamp     vm_pindex_t offset, int destroysource)
116126f9a767SRodney W. Grimes {
116289f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(srcobject);
116389f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(dstobject);
11640cddd8f0SMatthew Dillon 
116526f9a767SRodney W. Grimes 	/*
11661c7c3c6aSMatthew Dillon 	 * If destroysource is set, we remove the source object from the
11671c7c3c6aSMatthew Dillon 	 * swap_pager internal queue now.
116826f9a767SRodney W. Grimes 	 */
116967388836SKonstantin Belousov 	if (destroysource && (srcobject->flags & OBJ_ANON) == 0 &&
117067388836SKonstantin Belousov 	    srcobject->handle != NULL) {
1171eb4d6a1bSKonstantin Belousov 		VM_OBJECT_WUNLOCK(srcobject);
1172eb4d6a1bSKonstantin Belousov 		VM_OBJECT_WUNLOCK(dstobject);
1173eb4d6a1bSKonstantin Belousov 		sx_xlock(&sw_alloc_sx);
1174eb4d6a1bSKonstantin Belousov 		TAILQ_REMOVE(NOBJLIST(srcobject->handle), srcobject,
1175eb4d6a1bSKonstantin Belousov 		    pager_object_list);
1176eb4d6a1bSKonstantin Belousov 		sx_xunlock(&sw_alloc_sx);
1177eb4d6a1bSKonstantin Belousov 		VM_OBJECT_WLOCK(dstobject);
1178eb4d6a1bSKonstantin Belousov 		VM_OBJECT_WLOCK(srcobject);
1179bd228075SAlan Cox 	}
118026f9a767SRodney W. Grimes 
11811c7c3c6aSMatthew Dillon 	/*
11824abca9bbSAlan Cox 	 * Transfer source to destination.
11831c7c3c6aSMatthew Dillon 	 */
118494264705SDoug Moore 	swp_pager_meta_transfer(srcobject, dstobject, offset, dstobject->size);
118526f9a767SRodney W. Grimes 
118626f9a767SRodney W. Grimes 	/*
11871c7c3c6aSMatthew Dillon 	 * Free left over swap blocks in source.
118826f9a767SRodney W. Grimes 	 */
1189cb6757c0SMark Johnston 	if (destroysource)
11901c7c3c6aSMatthew Dillon 		swp_pager_meta_free_all(srcobject);
119126f9a767SRodney W. Grimes }
119226f9a767SRodney W. Grimes 
1193df8bae1dSRodney W. Grimes /*
119439f6d1e7SDoug Moore  * SWP_PAGER_HASPAGE_ITER() -	determine if we have good backing store for
119539f6d1e7SDoug Moore  *				the requested page, accessed with the given
119639f6d1e7SDoug Moore  *				iterator.
11971c7c3c6aSMatthew Dillon  *
11981c7c3c6aSMatthew Dillon  *	We determine whether good backing store exists for the requested
11991c7c3c6aSMatthew Dillon  *	page and return TRUE if it does, FALSE if it doesn't.
12001c7c3c6aSMatthew Dillon  *
12011c7c3c6aSMatthew Dillon  *	If TRUE, we also try to determine how much valid, contiguous backing
1202915d1b71SMark Johnston  *	store exists before and after the requested page.
1203df8bae1dSRodney W. Grimes  */
12045ea4972cSAlan Cox static boolean_t
swp_pager_haspage_iter(struct pctrie_iter * blks,vm_pindex_t pindex,int * before,int * after)120539f6d1e7SDoug Moore swp_pager_haspage_iter(struct pctrie_iter *blks, vm_pindex_t pindex,
120639f6d1e7SDoug Moore     int *before, int *after)
120726f9a767SRodney W. Grimes {
1208915d1b71SMark Johnston 	daddr_t blk, blk0;
1209915d1b71SMark Johnston 	int i;
121026f9a767SRodney W. Grimes 
12111c7c3c6aSMatthew Dillon 	/*
12121c7c3c6aSMatthew Dillon 	 * do we have good backing store at the requested index ?
12131c7c3c6aSMatthew Dillon 	 */
121439f6d1e7SDoug Moore 	blk0 = swp_pager_meta_lookup(blks, pindex);
12154dcc5c2dSMatthew Dillon 	if (blk0 == SWAPBLK_NONE) {
12161c7c3c6aSMatthew Dillon 		if (before)
121724a1cce3SDavid Greenman 			*before = 0;
12181c7c3c6aSMatthew Dillon 		if (after)
121924a1cce3SDavid Greenman 			*after = 0;
122026f9a767SRodney W. Grimes 		return (FALSE);
122126f9a767SRodney W. Grimes 	}
122226f9a767SRodney W. Grimes 
122326f9a767SRodney W. Grimes 	/*
12241c7c3c6aSMatthew Dillon 	 * find backwards-looking contiguous good backing store
1225e47ed70bSJohn Dyson 	 */
12261c7c3c6aSMatthew Dillon 	if (before != NULL) {
1227915d1b71SMark Johnston 		for (i = 1; i < SWB_NPAGES; i++) {
12281c7c3c6aSMatthew Dillon 			if (i > pindex)
12291c7c3c6aSMatthew Dillon 				break;
123039f6d1e7SDoug Moore 			blk = swp_pager_meta_lookup(blks, pindex - i);
12311c7c3c6aSMatthew Dillon 			if (blk != blk0 - i)
12321c7c3c6aSMatthew Dillon 				break;
1233ffc82b0aSJohn Dyson 		}
1234915d1b71SMark Johnston 		*before = i - 1;
123526f9a767SRodney W. Grimes 	}
123626f9a767SRodney W. Grimes 
123726f9a767SRodney W. Grimes 	/*
12381c7c3c6aSMatthew Dillon 	 * find forward-looking contiguous good backing store
123926f9a767SRodney W. Grimes 	 */
12401c7c3c6aSMatthew Dillon 	if (after != NULL) {
1241915d1b71SMark Johnston 		for (i = 1; i < SWB_NPAGES; i++) {
124239f6d1e7SDoug Moore 			blk = swp_pager_meta_lookup(blks, pindex + i);
12431c7c3c6aSMatthew Dillon 			if (blk != blk0 + i)
12441c7c3c6aSMatthew Dillon 				break;
124526f9a767SRodney W. Grimes 		}
1246915d1b71SMark Johnston 		*after = i - 1;
12471c7c3c6aSMatthew Dillon 	}
12481c7c3c6aSMatthew Dillon 	return (TRUE);
12491c7c3c6aSMatthew Dillon }
12501c7c3c6aSMatthew Dillon 
125139f6d1e7SDoug Moore /*
125239f6d1e7SDoug Moore  * SWAP_PAGER_HASPAGE() -	determine if we have good backing store for
125339f6d1e7SDoug Moore  *				the requested page, in the given object.
125439f6d1e7SDoug Moore  *
125539f6d1e7SDoug Moore  *	We determine whether good backing store exists for the requested
125639f6d1e7SDoug Moore  *	page and return TRUE if it does, FALSE if it doesn't.
125739f6d1e7SDoug Moore  *
125839f6d1e7SDoug Moore  *	If TRUE, we also try to determine how much valid, contiguous backing
125939f6d1e7SDoug Moore  *	store exists before and after the requested page.
126039f6d1e7SDoug Moore  */
126139f6d1e7SDoug Moore static boolean_t
swap_pager_haspage(vm_object_t object,vm_pindex_t pindex,int * before,int * after)126239f6d1e7SDoug Moore swap_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before,
126339f6d1e7SDoug Moore     int *after)
126439f6d1e7SDoug Moore {
126539f6d1e7SDoug Moore 	struct pctrie_iter blks;
126639f6d1e7SDoug Moore 
126739f6d1e7SDoug Moore 	swblk_iter_init_only(&blks, object);
126839f6d1e7SDoug Moore 	return (swp_pager_haspage_iter(&blks, pindex, before, after));
126939f6d1e7SDoug Moore }
127039f6d1e7SDoug Moore 
1271995730a6SDoug Moore static void
swap_pager_unswapped_acct(vm_page_t m)1272995730a6SDoug Moore swap_pager_unswapped_acct(vm_page_t m)
1273995730a6SDoug Moore {
1274995730a6SDoug Moore 	KASSERT((m->object->flags & OBJ_SWAP) != 0,
1275995730a6SDoug Moore 	    ("Free object not swappable"));
1276995730a6SDoug Moore 	if ((m->a.flags & PGA_SWAP_FREE) != 0)
1277995730a6SDoug Moore 		counter_u64_add(swap_free_completed, 1);
1278995730a6SDoug Moore 	vm_page_aflag_clear(m, PGA_SWAP_FREE | PGA_SWAP_SPACE);
1279995730a6SDoug Moore 
1280995730a6SDoug Moore 	/*
1281995730a6SDoug Moore 	 * The meta data only exists if the object is OBJT_SWAP
1282995730a6SDoug Moore 	 * and even then might not be allocated yet.
1283995730a6SDoug Moore 	 */
1284995730a6SDoug Moore }
1285995730a6SDoug Moore 
12861c7c3c6aSMatthew Dillon /*
12871c7c3c6aSMatthew Dillon  * SWAP_PAGER_PAGE_UNSWAPPED() - remove swap backing store related to page
12881c7c3c6aSMatthew Dillon  *
12891c7c3c6aSMatthew Dillon  *	This removes any associated swap backing store, whether valid or
12901c7c3c6aSMatthew Dillon  *	not, from the page.
12911c7c3c6aSMatthew Dillon  *
12921c7c3c6aSMatthew Dillon  *	This routine is typically called when a page is made dirty, at
12931c7c3c6aSMatthew Dillon  *	which point any associated swap can be freed.  MADV_FREE also
12941c7c3c6aSMatthew Dillon  *	calls us in a special-case situation
12951c7c3c6aSMatthew Dillon  *
12961c7c3c6aSMatthew Dillon  *	NOTE!!!  If the page is clean and the swap was valid, the caller
12971c7c3c6aSMatthew Dillon  *	should make the page dirty before calling this routine.  This routine
12981c7c3c6aSMatthew Dillon  *	does NOT change the m->dirty status of the page.  Also: MADV_FREE
12991c7c3c6aSMatthew Dillon  *	depends on it.
13001c7c3c6aSMatthew Dillon  *
130115523cf7SKonstantin Belousov  *	This routine may not sleep.
1302c25673ffSAttilio Rao  *
1303a8081778SJeff Roberson  *	The object containing the page may be locked.
13041c7c3c6aSMatthew Dillon  */
13051c7c3c6aSMatthew Dillon static void
swap_pager_unswapped(vm_page_t m)13062f249180SPoul-Henning Kamp swap_pager_unswapped(vm_page_t m)
13071c7c3c6aSMatthew Dillon {
1308a880104aSDoug Moore 	struct page_range range;
13098ecbf14bSDoug Moore 	struct swblk *sb;
1310a8081778SJeff Roberson 	vm_object_t obj;
13112f249180SPoul-Henning Kamp 
1312a8081778SJeff Roberson 	/*
1313a8081778SJeff Roberson 	 * Handle enqueing deferred frees first.  If we do not have the
1314a8081778SJeff Roberson 	 * object lock we wait for the page daemon to clear the space.
1315a8081778SJeff Roberson 	 */
1316a8081778SJeff Roberson 	obj = m->object;
1317a8081778SJeff Roberson 	if (!VM_OBJECT_WOWNED(obj)) {
1318a8081778SJeff Roberson 		VM_PAGE_OBJECT_BUSY_ASSERT(m);
1319a8081778SJeff Roberson 		/*
1320a8081778SJeff Roberson 		 * The caller is responsible for synchronization but we
1321a8081778SJeff Roberson 		 * will harmlessly handle races.  This is typically provided
1322a8081778SJeff Roberson 		 * by only calling unswapped() when a page transitions from
1323a8081778SJeff Roberson 		 * clean to dirty.
1324a8081778SJeff Roberson 		 */
1325a8081778SJeff Roberson 		if ((m->a.flags & (PGA_SWAP_SPACE | PGA_SWAP_FREE)) ==
1326a8081778SJeff Roberson 		    PGA_SWAP_SPACE) {
1327a8081778SJeff Roberson 			vm_page_aflag_set(m, PGA_SWAP_FREE);
1328a8081778SJeff Roberson 			counter_u64_add(swap_free_deferred, 1);
1329a8081778SJeff Roberson 		}
1330a8081778SJeff Roberson 		return;
1331a8081778SJeff Roberson 	}
1332995730a6SDoug Moore 	swap_pager_unswapped_acct(m);
13338ecbf14bSDoug Moore 
133494264705SDoug Moore 	sb = swblk_lookup(m->object, m->pindex);
13358ecbf14bSDoug Moore 	if (sb == NULL)
13368ecbf14bSDoug Moore 		return;
1337a880104aSDoug Moore 	range.start = sb->d[m->pindex % SWAP_META_PAGES];
1338a880104aSDoug Moore 	if (range.start == SWAPBLK_NONE)
13398ecbf14bSDoug Moore 		return;
1340a880104aSDoug Moore 	range.num = 1;
1341a880104aSDoug Moore 	swp_pager_freeswapspace(&range);
13428ecbf14bSDoug Moore 	sb->d[m->pindex % SWAP_META_PAGES] = SWAPBLK_NONE;
13438ecbf14bSDoug Moore 	swp_pager_free_empty_swblk(m->object, sb);
13441c7c3c6aSMatthew Dillon }
13451c7c3c6aSMatthew Dillon 
13461c7c3c6aSMatthew Dillon /*
1347*b82d7897SDoug Moore  * swap_pager_getpages_locked() - bring pages in from swap
13481c7c3c6aSMatthew Dillon  *
13493f060b60SMark Johnston  *	Attempt to page in the pages in array "ma" of length "count".  The
13503f060b60SMark Johnston  *	caller may optionally specify that additional pages preceding and
13513f060b60SMark Johnston  *	succeeding the specified range be paged in.  The number of such pages
1352*b82d7897SDoug Moore  *	is returned in the "a_rbehind" and "a_rahead" parameters, and they will
13533f060b60SMark Johnston  *	be in the inactive queue upon return.
13541c7c3c6aSMatthew Dillon  *
13553f060b60SMark Johnston  *	The pages in "ma" must be busied and will remain busied upon return.
13561c7c3c6aSMatthew Dillon  */
1357f708ef1bSPoul-Henning Kamp static int
swap_pager_getpages_locked(struct pctrie_iter * blks,vm_object_t object,vm_page_t * ma,int count,int * a_rbehind,int * a_rahead,struct buf * bp)135839f6d1e7SDoug Moore swap_pager_getpages_locked(struct pctrie_iter *blks, vm_object_t object,
1359*b82d7897SDoug Moore     vm_page_t *ma, int count, int *a_rbehind, int *a_rahead, struct buf *bp)
1360df8bae1dSRodney W. Grimes {
1361915d1b71SMark Johnston 	vm_pindex_t pindex;
1362*b82d7897SDoug Moore 	int rahead, rbehind;
13630d94caffSDavid Greenman 
1364c90d075bSMark Johnston 	VM_OBJECT_ASSERT_WLOCKED(object);
13651c7c3c6aSMatthew Dillon 
13664b8365d7SKonstantin Belousov 	KASSERT((object->flags & OBJ_SWAP) != 0,
13678ecbf14bSDoug Moore 	    ("%s: object not swappable", __func__));
1368*b82d7897SDoug Moore 	pindex = ma[0]->pindex;
1369*b82d7897SDoug Moore 	if (!swp_pager_haspage_iter(blks, pindex, &rbehind, &rahead)) {
1370d6e13f3bSJeff Roberson 		VM_OBJECT_WUNLOCK(object);
1371*b82d7897SDoug Moore 		uma_zfree(swrbuf_zone, bp);
1372915d1b71SMark Johnston 		return (VM_PAGER_FAIL);
1373d6e13f3bSJeff Roberson 	}
1374915d1b71SMark Johnston 
1375*b82d7897SDoug Moore 	KASSERT(count - 1 <= rahead,
1376*b82d7897SDoug Moore 	    ("page count %d extends beyond swap block", count));
137798087a06SJeff Roberson 
137898087a06SJeff Roberson 	/*
137998087a06SJeff Roberson 	 * Do not transfer any pages other than those that are xbusied
138098087a06SJeff Roberson 	 * when running during a split or collapse operation.  This
138198087a06SJeff Roberson 	 * prevents clustering from re-creating pages which are being
138298087a06SJeff Roberson 	 * moved into another object.
138398087a06SJeff Roberson 	 */
138498087a06SJeff Roberson 	if ((object->flags & (OBJ_SPLIT | OBJ_DEAD)) != 0) {
1385*b82d7897SDoug Moore 		rahead = count - 1;
1386*b82d7897SDoug Moore 		rbehind = 0;
138798087a06SJeff Roberson 	}
1388*b82d7897SDoug Moore 	/* Clip readbehind/ahead ranges to exclude already resident pages. */
1389*b82d7897SDoug Moore 	rbehind = a_rbehind != NULL ? imin(*a_rbehind, rbehind) : 0;
1390*b82d7897SDoug Moore 	rahead = a_rahead != NULL ? imin(*a_rahead, rahead - count + 1) : 0;
1391*b82d7897SDoug Moore 	/* Allocate pages. */
1392*b82d7897SDoug Moore 	vm_object_prepare_buf_pages(object, bp->b_pages, count, &rbehind,
1393*b82d7897SDoug Moore 	    &rahead, ma);
1394*b82d7897SDoug Moore 	bp->b_npages = rbehind + count + rahead;
1395*b82d7897SDoug Moore 	for (int i = 0; i < bp->b_npages; i++)
1396*b82d7897SDoug Moore 		bp->b_pages[i]->oflags |= VPO_SWAPINPROG;
1397*b82d7897SDoug Moore 	bp->b_blkno = swp_pager_meta_lookup(blks, pindex - rbehind);
1398*b82d7897SDoug Moore 	KASSERT(bp->b_blkno != SWAPBLK_NONE,
1399915d1b71SMark Johnston 	    ("no swap blocking containing %p(%jx)", object, (uintmax_t)pindex));
1400915d1b71SMark Johnston 
1401*b82d7897SDoug Moore 	vm_object_pip_add(object, bp->b_npages);
1402915d1b71SMark Johnston 	VM_OBJECT_WUNLOCK(object);
1403cd853791SKonstantin Belousov 	MPASS((bp->b_flags & B_MAXPHYS) != 0);
1404*b82d7897SDoug Moore 
1405*b82d7897SDoug Moore 	/* Report back actual behind/ahead read. */
1406*b82d7897SDoug Moore 	if (a_rbehind != NULL)
1407*b82d7897SDoug Moore 		*a_rbehind = rbehind;
1408*b82d7897SDoug Moore 	if (a_rahead != NULL)
1409*b82d7897SDoug Moore 		*a_rahead = rahead;
1410915d1b71SMark Johnston 
1411915d1b71SMark Johnston 	bp->b_flags |= B_PAGING;
141221144e3bSPoul-Henning Kamp 	bp->b_iocmd = BIO_READ;
14131c7c3c6aSMatthew Dillon 	bp->b_iodone = swp_pager_async_iodone;
1414fdcc1cc0SJohn Baldwin 	bp->b_rcred = crhold(thread0.td_ucred);
1415fdcc1cc0SJohn Baldwin 	bp->b_wcred = crhold(thread0.td_ucred);
1416*b82d7897SDoug Moore 	bp->b_bufsize = bp->b_bcount = ptoa(bp->b_npages);
1417*b82d7897SDoug Moore 	bp->b_pgbefore = rbehind;
1418*b82d7897SDoug Moore 	bp->b_pgafter = rahead;
141926f9a767SRodney W. Grimes 
142083c9dea1SGleb Smirnoff 	VM_CNT_INC(v_swapin);
1421*b82d7897SDoug Moore 	VM_CNT_ADD(v_swappgsin, bp->b_npages);
14221c7c3c6aSMatthew Dillon 
14231c7c3c6aSMatthew Dillon 	/*
14241c7c3c6aSMatthew Dillon 	 * perform the I/O.  NOTE!!!  bp cannot be considered valid after
14251c7c3c6aSMatthew Dillon 	 * this point because we automatically release it on completion.
14261c7c3c6aSMatthew Dillon 	 * Instead, we look at the one page we are interested in which we
14271c7c3c6aSMatthew Dillon 	 * still hold a lock on even through the I/O completion.
14281c7c3c6aSMatthew Dillon 	 *
14293f060b60SMark Johnston 	 * The other pages in our ma[] array are also released on completion,
14301c7c3c6aSMatthew Dillon 	 * so we cannot assume they are valid anymore either.
14311c7c3c6aSMatthew Dillon 	 *
1432c37a77eeSPoul-Henning Kamp 	 * NOTE: b_blkno is destroyed by the call to swapdev_strategy
14331c7c3c6aSMatthew Dillon 	 */
1434b890cb2cSPeter Wemm 	BUF_KERNPROC(bp);
14354b03903aSPoul-Henning Kamp 	swp_pager_strategy(bp);
143626f9a767SRodney W. Grimes 
143726f9a767SRodney W. Grimes 	/*
1438915d1b71SMark Johnston 	 * Wait for the pages we want to complete.  VPO_SWAPINPROG is always
14391c7c3c6aSMatthew Dillon 	 * cleared on completion.  If an I/O error occurs, SWAPBLK_NONE
1440915d1b71SMark Johnston 	 * is set in the metadata for each page in the request.
144126f9a767SRodney W. Grimes 	 */
144289f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
1443d6e13f3bSJeff Roberson 	/* This could be implemented more efficiently with aflags */
14443f060b60SMark Johnston 	while ((ma[0]->oflags & VPO_SWAPINPROG) != 0) {
14453f060b60SMark Johnston 		ma[0]->oflags |= VPO_SWAPSLEEP;
144683c9dea1SGleb Smirnoff 		VM_CNT_INC(v_intrans);
1447cf27e0d1SJeff Roberson 		if (VM_OBJECT_SLEEP(object, &object->handle, PSWP,
1448c7aebda8SAttilio Rao 		    "swread", hz * 20)) {
14499bd86a98SBruce M Simpson 			printf(
1450c5690651SPoul-Henning Kamp "swap_pager: indefinite wait buffer: bufobj: %p, blkno: %jd, size: %ld\n",
1451c5690651SPoul-Henning Kamp 			    bp->b_bufobj, (intmax_t)bp->b_blkno, bp->b_bcount);
14521c7c3c6aSMatthew Dillon 		}
14531b119d9dSDavid Greenman 	}
1454d6e13f3bSJeff Roberson 	VM_OBJECT_WUNLOCK(object);
145526f9a767SRodney W. Grimes 
145626f9a767SRodney W. Grimes 	/*
1457b0cd2017SGleb Smirnoff 	 * If we had an unrecoverable read error pages will not be valid.
145826f9a767SRodney W. Grimes 	 */
1459*b82d7897SDoug Moore 	for (int i = 0; i < count; i++)
14603f060b60SMark Johnston 		if (ma[i]->valid != VM_PAGE_BITS_ALL)
14611c7c3c6aSMatthew Dillon 			return (VM_PAGER_ERROR);
1462b0cd2017SGleb Smirnoff 
14631c7c3c6aSMatthew Dillon 	return (VM_PAGER_OK);
14641c7c3c6aSMatthew Dillon 
14651c7c3c6aSMatthew Dillon 	/*
14661c7c3c6aSMatthew Dillon 	 * A final note: in a low swap situation, we cannot deallocate swap
14671c7c3c6aSMatthew Dillon 	 * and mark a page dirty here because the caller is likely to mark
14681c7c3c6aSMatthew Dillon 	 * the page clean when we return, causing the page to possibly revert
14691c7c3c6aSMatthew Dillon 	 * to all-zero's later.
14701c7c3c6aSMatthew Dillon 	 */
1471df8bae1dSRodney W. Grimes }
1472df8bae1dSRodney W. Grimes 
1473c90d075bSMark Johnston static int
swap_pager_getpages(vm_object_t object,vm_page_t * ma,int count,int * rbehind,int * rahead)1474c90d075bSMark Johnston swap_pager_getpages(vm_object_t object, vm_page_t *ma, int count,
1475c90d075bSMark Johnston     int *rbehind, int *rahead)
1476c90d075bSMark Johnston {
1477*b82d7897SDoug Moore 	struct buf *bp;
147839f6d1e7SDoug Moore 	struct pctrie_iter blks;
1479c90d075bSMark Johnston 
1480*b82d7897SDoug Moore 	bp = uma_zalloc(swrbuf_zone, M_WAITOK);
1481c90d075bSMark Johnston 	VM_OBJECT_WLOCK(object);
148239f6d1e7SDoug Moore 	swblk_iter_init_only(&blks, object);
148339f6d1e7SDoug Moore 	return (swap_pager_getpages_locked(&blks, object, ma, count, rbehind,
1484*b82d7897SDoug Moore 	    rahead, bp));
1485c90d075bSMark Johnston }
1486c90d075bSMark Johnston 
14871c7c3c6aSMatthew Dillon /*
148890effb23SGleb Smirnoff  * 	swap_pager_getpages_async():
148990effb23SGleb Smirnoff  *
149090effb23SGleb Smirnoff  *	Right now this is emulation of asynchronous operation on top of
149190effb23SGleb Smirnoff  *	swap_pager_getpages().
149290effb23SGleb Smirnoff  */
149390effb23SGleb Smirnoff static int
swap_pager_getpages_async(vm_object_t object,vm_page_t * ma,int count,int * rbehind,int * rahead,pgo_getpages_iodone_t iodone,void * arg)14943f060b60SMark Johnston swap_pager_getpages_async(vm_object_t object, vm_page_t *ma, int count,
1495b0cd2017SGleb Smirnoff     int *rbehind, int *rahead, pgo_getpages_iodone_t iodone, void *arg)
149690effb23SGleb Smirnoff {
149790effb23SGleb Smirnoff 	int r, error;
149890effb23SGleb Smirnoff 
14993f060b60SMark Johnston 	r = swap_pager_getpages(object, ma, count, rbehind, rahead);
150090effb23SGleb Smirnoff 	switch (r) {
150190effb23SGleb Smirnoff 	case VM_PAGER_OK:
150290effb23SGleb Smirnoff 		error = 0;
150390effb23SGleb Smirnoff 		break;
150490effb23SGleb Smirnoff 	case VM_PAGER_ERROR:
150590effb23SGleb Smirnoff 		error = EIO;
150690effb23SGleb Smirnoff 		break;
150790effb23SGleb Smirnoff 	case VM_PAGER_FAIL:
150890effb23SGleb Smirnoff 		error = EINVAL;
150990effb23SGleb Smirnoff 		break;
151090effb23SGleb Smirnoff 	default:
1511d9328101SGleb Smirnoff 		panic("unhandled swap_pager_getpages() error %d", r);
151290effb23SGleb Smirnoff 	}
15133f060b60SMark Johnston 	(iodone)(arg, ma, count, error);
151490effb23SGleb Smirnoff 
151590effb23SGleb Smirnoff 	return (r);
151690effb23SGleb Smirnoff }
151790effb23SGleb Smirnoff 
151890effb23SGleb Smirnoff /*
15191c7c3c6aSMatthew Dillon  *	swap_pager_putpages:
15201c7c3c6aSMatthew Dillon  *
15211c7c3c6aSMatthew Dillon  *	Assign swap (if necessary) and initiate I/O on the specified pages.
15221c7c3c6aSMatthew Dillon  *
1523ea3aecf5SPeter Wemm  *	In a low memory situation we may block in VOP_STRATEGY(), but the new
15241c7c3c6aSMatthew Dillon  *	vm_page reservation system coupled with properly written VFS devices
15251c7c3c6aSMatthew Dillon  *	should ensure that no low-memory deadlock occurs.  This is an area
15261c7c3c6aSMatthew Dillon  *	which needs work.
15271c7c3c6aSMatthew Dillon  *
15281c7c3c6aSMatthew Dillon  *	The parent has N vm_object_pip_add() references prior to
15291c7c3c6aSMatthew Dillon  *	calling us and will remove references for rtvals[] that are
15301c7c3c6aSMatthew Dillon  *	not set to VM_PAGER_PEND.  We need to remove the rest on I/O
15311c7c3c6aSMatthew Dillon  *	completion.
15321c7c3c6aSMatthew Dillon  *
15331c7c3c6aSMatthew Dillon  *	The parent has soft-busy'd the pages it passes us and will unbusy
153423612f0dSDoug Moore  *	those whose rtvals[] entry is not set to VM_PAGER_PEND on return.
15351c7c3c6aSMatthew Dillon  *	We need to unbusy the rest on I/O completion.
15361c7c3c6aSMatthew Dillon  */
1537d635a37fSWarner Losh static void
swap_pager_putpages(vm_object_t object,vm_page_t * ma,int count,int flags,int * rtvals)15383f060b60SMark Johnston swap_pager_putpages(vm_object_t object, vm_page_t *ma, int count,
1539e065e87cSKonstantin Belousov     int flags, int *rtvals)
1540df8bae1dSRodney W. Grimes {
1541d0b225d1SDoug Moore 	struct pctrie_iter blks;
1542a880104aSDoug Moore 	struct page_range range;
154323612f0dSDoug Moore 	struct buf *bp;
1544a880104aSDoug Moore 	daddr_t addr, blk;
154523612f0dSDoug Moore 	vm_page_t mreq;
154623612f0dSDoug Moore 	int i, j, n;
154723612f0dSDoug Moore 	bool async;
1548df8bae1dSRodney W. Grimes 
154923612f0dSDoug Moore 	KASSERT(count == 0 || ma[0]->object == object,
155023612f0dSDoug Moore 	    ("%s: object mismatch %p/%p",
155123612f0dSDoug Moore 	    __func__, object, ma[0]->object));
1552ee3dc7d7SAlan Cox 
155389f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
155423612f0dSDoug Moore 	async = curproc == pageproc && (flags & VM_PAGER_PUT_SYNC) == 0;
1555a880104aSDoug Moore 	swp_pager_init_freerange(&range);
155626f9a767SRodney W. Grimes 
15571c7c3c6aSMatthew Dillon 	/*
15581c7c3c6aSMatthew Dillon 	 * Assign swap blocks and issue I/O.  We reallocate swap on the fly.
15591c7c3c6aSMatthew Dillon 	 * The page is left dirty until the pageout operation completes
15601c7c3c6aSMatthew Dillon 	 * successfully.
15611c7c3c6aSMatthew Dillon 	 */
15621c7c3c6aSMatthew Dillon 	for (i = 0; i < count; i += n) {
156331c82722SDoug Moore 		/* Maximum I/O size is limited by maximum swap block size. */
156431c82722SDoug Moore 		n = min(count - i, nsw_cluster_max);
15651c7c3c6aSMatthew Dillon 
156623612f0dSDoug Moore 		if (async) {
1567756a5412SGleb Smirnoff 			mtx_lock(&swbuf_mtx);
1568756a5412SGleb Smirnoff 			while (nsw_wcount_async == 0)
1569756a5412SGleb Smirnoff 				msleep(&nsw_wcount_async, &swbuf_mtx, PVM,
1570756a5412SGleb Smirnoff 				    "swbufa", 0);
1571756a5412SGleb Smirnoff 			nsw_wcount_async--;
1572756a5412SGleb Smirnoff 			mtx_unlock(&swbuf_mtx);
1573327f4e83SMatthew Dillon 		}
1574725b4ff0SMark Johnston 
1575725b4ff0SMark Johnston 		/* Get a block of swap of size up to size n. */
157636b01270SDoug Moore 		blk = swp_pager_getswapspace(&n);
1577725b4ff0SMark Johnston 		if (blk == SWAPBLK_NONE) {
1578725b4ff0SMark Johnston 			mtx_lock(&swbuf_mtx);
1579725b4ff0SMark Johnston 			if (++nsw_wcount_async == 1)
1580725b4ff0SMark Johnston 				wakeup(&nsw_wcount_async);
1581725b4ff0SMark Johnston 			mtx_unlock(&swbuf_mtx);
1582725b4ff0SMark Johnston 			for (j = 0; j < n; ++j)
1583725b4ff0SMark Johnston 				rtvals[i + j] = VM_PAGER_FAIL;
1584725b4ff0SMark Johnston 			continue;
1585725b4ff0SMark Johnston 		}
158654291f7dSAlan Cox 		VM_OBJECT_WLOCK(object);
1587d0b225d1SDoug Moore 		swblk_iter_init_only(&blks, object);
1588725b4ff0SMark Johnston 		for (j = 0; j < n; ++j) {
1589725b4ff0SMark Johnston 			mreq = ma[i + j];
1590725b4ff0SMark Johnston 			vm_page_aflag_clear(mreq, PGA_SWAP_FREE);
1591d0b225d1SDoug Moore 			KASSERT(mreq->object == object,
1592d0b225d1SDoug Moore 			    ("%s: object mismatch %p/%p",
1593d0b225d1SDoug Moore 			    __func__, mreq->object, object));
1594d0b225d1SDoug Moore 			addr = swp_pager_meta_build(&blks, object,
1595d0b225d1SDoug Moore 			    mreq->pindex, blk + j, false);
1596725b4ff0SMark Johnston 			if (addr != SWAPBLK_NONE)
1597a880104aSDoug Moore 				swp_pager_update_freerange(&range, addr);
1598725b4ff0SMark Johnston 			MPASS(mreq->dirty == VM_PAGE_BITS_ALL);
1599725b4ff0SMark Johnston 			mreq->oflags |= VPO_SWAPINPROG;
1600725b4ff0SMark Johnston 		}
1601725b4ff0SMark Johnston 		VM_OBJECT_WUNLOCK(object);
1602725b4ff0SMark Johnston 
1603756a5412SGleb Smirnoff 		bp = uma_zalloc(swwbuf_zone, M_WAITOK);
1604cd853791SKonstantin Belousov 		MPASS((bp->b_flags & B_MAXPHYS) != 0);
160523612f0dSDoug Moore 		if (async)
1606cd853791SKonstantin Belousov 			bp->b_flags |= B_ASYNC;
16075e04322aSPoul-Henning Kamp 		bp->b_flags |= B_PAGING;
1608912e4ae9SPoul-Henning Kamp 		bp->b_iocmd = BIO_WRITE;
160926f9a767SRodney W. Grimes 
1610fdcc1cc0SJohn Baldwin 		bp->b_rcred = crhold(thread0.td_ucred);
1611fdcc1cc0SJohn Baldwin 		bp->b_wcred = crhold(thread0.td_ucred);
16121c7c3c6aSMatthew Dillon 		bp->b_bcount = PAGE_SIZE * n;
16131c7c3c6aSMatthew Dillon 		bp->b_bufsize = PAGE_SIZE * n;
16141c7c3c6aSMatthew Dillon 		bp->b_blkno = blk;
1615725b4ff0SMark Johnston 		for (j = 0; j < n; j++)
1616725b4ff0SMark Johnston 			bp->b_pages[j] = ma[i + j];
16171c7c3c6aSMatthew Dillon 		bp->b_npages = n;
1618725b4ff0SMark Johnston 
1619a5296b05SJulian Elischer 		/*
1620a5296b05SJulian Elischer 		 * Must set dirty range for NFS to work.
1621a5296b05SJulian Elischer 		 */
1622a5296b05SJulian Elischer 		bp->b_dirtyoff = 0;
1623a5296b05SJulian Elischer 		bp->b_dirtyend = bp->b_bcount;
16241c7c3c6aSMatthew Dillon 
162583c9dea1SGleb Smirnoff 		VM_CNT_INC(v_swapout);
162683c9dea1SGleb Smirnoff 		VM_CNT_ADD(v_swappgsout, bp->b_npages);
162726f9a767SRodney W. Grimes 
162826f9a767SRodney W. Grimes 		/*
162977923df2SAlan Cox 		 * We unconditionally set rtvals[] to VM_PAGER_PEND so that we
163077923df2SAlan Cox 		 * can call the async completion routine at the end of a
163177923df2SAlan Cox 		 * synchronous I/O operation.  Otherwise, our caller would
163277923df2SAlan Cox 		 * perform duplicate unbusy and wakeup operations on the page
163377923df2SAlan Cox 		 * and object, respectively.
163477923df2SAlan Cox 		 */
163577923df2SAlan Cox 		for (j = 0; j < n; j++)
163677923df2SAlan Cox 			rtvals[i + j] = VM_PAGER_PEND;
163777923df2SAlan Cox 
163877923df2SAlan Cox 		/*
16391c7c3c6aSMatthew Dillon 		 * asynchronous
16401c7c3c6aSMatthew Dillon 		 *
164123612f0dSDoug Moore 		 * NOTE: b_blkno is destroyed by the call to swapdev_strategy.
164226f9a767SRodney W. Grimes 		 */
164323612f0dSDoug Moore 		if (async) {
16441c7c3c6aSMatthew Dillon 			bp->b_iodone = swp_pager_async_iodone;
164567812eacSKirk McKusick 			BUF_KERNPROC(bp);
16464b03903aSPoul-Henning Kamp 			swp_pager_strategy(bp);
16471c7c3c6aSMatthew Dillon 			continue;
164826f9a767SRodney W. Grimes 		}
1649e47ed70bSJohn Dyson 
165026f9a767SRodney W. Grimes 		/*
16511c7c3c6aSMatthew Dillon 		 * synchronous
16521c7c3c6aSMatthew Dillon 		 *
165323612f0dSDoug Moore 		 * NOTE: b_blkno is destroyed by the call to swapdev_strategy.
16541c7c3c6aSMatthew Dillon 		 */
16552c840b1fSAlan Cox 		bp->b_iodone = bdone;
16564b03903aSPoul-Henning Kamp 		swp_pager_strategy(bp);
16571c7c3c6aSMatthew Dillon 
16581c7c3c6aSMatthew Dillon 		/*
165977923df2SAlan Cox 		 * Wait for the sync I/O to complete.
166026f9a767SRodney W. Grimes 		 */
16612c840b1fSAlan Cox 		bwait(bp, PVM, "swwrt");
166277923df2SAlan Cox 
16631c7c3c6aSMatthew Dillon 		/*
16641c7c3c6aSMatthew Dillon 		 * Now that we are through with the bp, we can call the
16651c7c3c6aSMatthew Dillon 		 * normal async completion, which frees everything up.
16661c7c3c6aSMatthew Dillon 		 */
16671c7c3c6aSMatthew Dillon 		swp_pager_async_iodone(bp);
16681c7c3c6aSMatthew Dillon 	}
1669a880104aSDoug Moore 	swp_pager_freeswapspace(&range);
167023612f0dSDoug Moore 	VM_OBJECT_WLOCK(object);
16711c7c3c6aSMatthew Dillon }
16721c7c3c6aSMatthew Dillon 
16731c7c3c6aSMatthew Dillon /*
16741c7c3c6aSMatthew Dillon  *	swp_pager_async_iodone:
16751c7c3c6aSMatthew Dillon  *
16761c7c3c6aSMatthew Dillon  *	Completion routine for asynchronous reads and writes from/to swap.
16771c7c3c6aSMatthew Dillon  *	Also called manually by synchronous code to finish up a bp.
16781c7c3c6aSMatthew Dillon  *
167915523cf7SKonstantin Belousov  *	This routine may not sleep.
16801c7c3c6aSMatthew Dillon  */
16811c7c3c6aSMatthew Dillon static void
swp_pager_async_iodone(struct buf * bp)16822f249180SPoul-Henning Kamp swp_pager_async_iodone(struct buf *bp)
16831c7c3c6aSMatthew Dillon {
16841c7c3c6aSMatthew Dillon 	int i;
16851c7c3c6aSMatthew Dillon 	vm_object_t object = NULL;
16861c7c3c6aSMatthew Dillon 
16871c7c3c6aSMatthew Dillon 	/*
16880b208315SEdward Tomasz Napierala 	 * Report error - unless we ran out of memory, in which case
16890b208315SEdward Tomasz Napierala 	 * we've already logged it in swapgeom_strategy().
16901c7c3c6aSMatthew Dillon 	 */
16910b208315SEdward Tomasz Napierala 	if (bp->b_ioflags & BIO_ERROR && bp->b_error != ENOMEM) {
16921c7c3c6aSMatthew Dillon 		printf(
16931c7c3c6aSMatthew Dillon 		    "swap_pager: I/O error - %s failed; blkno %ld,"
16941c7c3c6aSMatthew Dillon 			"size %ld, error %d\n",
169521144e3bSPoul-Henning Kamp 		    ((bp->b_iocmd == BIO_READ) ? "pagein" : "pageout"),
16961c7c3c6aSMatthew Dillon 		    (long)bp->b_blkno,
16971c7c3c6aSMatthew Dillon 		    (long)bp->b_bcount,
16981c7c3c6aSMatthew Dillon 		    bp->b_error
16991c7c3c6aSMatthew Dillon 		);
17001c7c3c6aSMatthew Dillon 	}
17011c7c3c6aSMatthew Dillon 
17021c7c3c6aSMatthew Dillon 	/*
170326f9a767SRodney W. Grimes 	 * remove the mapping for kernel virtual
170426f9a767SRodney W. Grimes 	 */
1705fade8dd7SJeff Roberson 	if (buf_mapped(bp))
17061c7c3c6aSMatthew Dillon 		pmap_qremove((vm_offset_t)bp->b_data, bp->b_npages);
1707fade8dd7SJeff Roberson 	else
1708fade8dd7SJeff Roberson 		bp->b_data = bp->b_kvabase;
170926f9a767SRodney W. Grimes 
171033a609ecSAlan Cox 	if (bp->b_npages) {
171133a609ecSAlan Cox 		object = bp->b_pages[0]->object;
171289f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
171333a609ecSAlan Cox 	}
17142965a453SKip Macy 
171526f9a767SRodney W. Grimes 	/*
17161c7c3c6aSMatthew Dillon 	 * cleanup pages.  If an error occurs writing to swap, we are in
17171c7c3c6aSMatthew Dillon 	 * very serious trouble.  If it happens to be a disk error, though,
17181c7c3c6aSMatthew Dillon 	 * we may be able to recover by reassigning the swap later on.  So
17191c7c3c6aSMatthew Dillon 	 * in this case we remove the m->swapblk assignment for the page
17201c7c3c6aSMatthew Dillon 	 * but do not free it in the rlist.  The errornous block(s) are thus
17211c7c3c6aSMatthew Dillon 	 * never reallocated as swap.  Redirty the page and continue.
172226f9a767SRodney W. Grimes 	 */
17231c7c3c6aSMatthew Dillon 	for (i = 0; i < bp->b_npages; ++i) {
17241c7c3c6aSMatthew Dillon 		vm_page_t m = bp->b_pages[i];
1725e47ed70bSJohn Dyson 
17265786be7cSAlan Cox 		m->oflags &= ~VPO_SWAPINPROG;
1727c7aebda8SAttilio Rao 		if (m->oflags & VPO_SWAPSLEEP) {
1728c7aebda8SAttilio Rao 			m->oflags &= ~VPO_SWAPSLEEP;
1729cf27e0d1SJeff Roberson 			wakeup(&object->handle);
1730c7aebda8SAttilio Rao 		}
1731e47ed70bSJohn Dyson 
1732a8081778SJeff Roberson 		/* We always have space after I/O, successful or not. */
1733a8081778SJeff Roberson 		vm_page_aflag_set(m, PGA_SWAP_SPACE);
1734a8081778SJeff Roberson 
1735c244d2deSPoul-Henning Kamp 		if (bp->b_ioflags & BIO_ERROR) {
1736ffc82b0aSJohn Dyson 			/*
17371c7c3c6aSMatthew Dillon 			 * If an error occurs I'd love to throw the swapblk
17381c7c3c6aSMatthew Dillon 			 * away without freeing it back to swapspace, so it
17391c7c3c6aSMatthew Dillon 			 * can never be used again.  But I can't from an
17401c7c3c6aSMatthew Dillon 			 * interrupt.
1741ffc82b0aSJohn Dyson 			 */
174221144e3bSPoul-Henning Kamp 			if (bp->b_iocmd == BIO_READ) {
17431c7c3c6aSMatthew Dillon 				/*
17441c7c3c6aSMatthew Dillon 				 * NOTE: for reads, m->dirty will probably
1745956f3135SPhilippe Charnier 				 * be overridden by the original caller of
17461c7c3c6aSMatthew Dillon 				 * getpages so don't play cute tricks here.
17471c7c3c6aSMatthew Dillon 				 */
17480012f373SJeff Roberson 				vm_page_invalid(m);
174946966507SMark Johnston 				if (i < bp->b_pgbefore ||
175046966507SMark Johnston 				    i >= bp->b_npages - bp->b_pgafter)
175146966507SMark Johnston 					vm_page_free_invalid(m);
17521c7c3c6aSMatthew Dillon 			} else {
17531c7c3c6aSMatthew Dillon 				/*
17541c7c3c6aSMatthew Dillon 				 * If a write error occurs, reactivate page
17551c7c3c6aSMatthew Dillon 				 * so it doesn't clog the inactive list,
17561c7c3c6aSMatthew Dillon 				 * then finish the I/O.
17571c7c3c6aSMatthew Dillon 				 */
175841e5a226SAlan Cox 				MPASS(m->dirty == VM_PAGE_BITS_ALL);
17599f5632e6SMark Johnston 
1760a8081778SJeff Roberson 				/* PQ_UNSWAPPABLE? */
17611c7c3c6aSMatthew Dillon 				vm_page_activate(m);
1762c7aebda8SAttilio Rao 				vm_page_sunbusy(m);
17631c7c3c6aSMatthew Dillon 			}
176421144e3bSPoul-Henning Kamp 		} else if (bp->b_iocmd == BIO_READ) {
17651c7c3c6aSMatthew Dillon 			/*
17661c7c3c6aSMatthew Dillon 			 * NOTE: for reads, m->dirty will probably be
1767956f3135SPhilippe Charnier 			 * overridden by the original caller of getpages so
17681c7c3c6aSMatthew Dillon 			 * we cannot set them in order to free the underlying
17691c7c3c6aSMatthew Dillon 			 * swap in a low-swap situation.  I don't think we'd
17701c7c3c6aSMatthew Dillon 			 * want to do that anyway, but it was an optimization
17711c7c3c6aSMatthew Dillon 			 * that existed in the old swapper for a time before
17721c7c3c6aSMatthew Dillon 			 * it got ripped out due to precisely this problem.
17731c7c3c6aSMatthew Dillon 			 */
1774016a3c93SAlan Cox 			KASSERT(!pmap_page_is_mapped(m),
1775016a3c93SAlan Cox 			    ("swp_pager_async_iodone: page %p is mapped", m));
1776016a3c93SAlan Cox 			KASSERT(m->dirty == 0,
1777016a3c93SAlan Cox 			    ("swp_pager_async_iodone: page %p is dirty", m));
1778915d1b71SMark Johnston 
17790012f373SJeff Roberson 			vm_page_valid(m);
1780915d1b71SMark Johnston 			if (i < bp->b_pgbefore ||
1781915d1b71SMark Johnston 			    i >= bp->b_npages - bp->b_pgafter)
1782915d1b71SMark Johnston 				vm_page_readahead_finish(m);
17831c7c3c6aSMatthew Dillon 		} else {
17841c7c3c6aSMatthew Dillon 			/*
1785016a3c93SAlan Cox 			 * For write success, clear the dirty
17861c7c3c6aSMatthew Dillon 			 * status, then finish the I/O ( which decrements the
17871c7c3c6aSMatthew Dillon 			 * busy count and possibly wakes waiter's up ).
1788ebcddc72SAlan Cox 			 * A page is only written to swap after a period of
1789ebcddc72SAlan Cox 			 * inactivity.  Therefore, we do not expect it to be
1790ebcddc72SAlan Cox 			 * reused.
17911c7c3c6aSMatthew Dillon 			 */
17926031c68dSAlan Cox 			KASSERT(!pmap_page_is_write_mapped(m),
1793016a3c93SAlan Cox 			    ("swp_pager_async_iodone: page %p is not write"
1794016a3c93SAlan Cox 			    " protected", m));
1795c52e7044SAlan Cox 			vm_page_undirty(m);
1796ebcddc72SAlan Cox 			vm_page_deactivate_noreuse(m);
1797ebcddc72SAlan Cox 			vm_page_sunbusy(m);
17983c4a2440SAlan Cox 		}
17993c4a2440SAlan Cox 	}
180026f9a767SRodney W. Grimes 
18011c7c3c6aSMatthew Dillon 	/*
18021c7c3c6aSMatthew Dillon 	 * adjust pip.  NOTE: the original parent may still have its own
18031c7c3c6aSMatthew Dillon 	 * pip refs on the object.
18041c7c3c6aSMatthew Dillon 	 */
18050d420ad3SAlan Cox 	if (object != NULL) {
18061c7c3c6aSMatthew Dillon 		vm_object_pip_wakeupn(object, bp->b_npages);
180789f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
18080d420ad3SAlan Cox 	}
180926f9a767SRodney W. Grimes 
18101c7c3c6aSMatthew Dillon 	/*
1811100650deSOlivier Houchard 	 * swapdev_strategy() manually sets b_vp and b_bufobj before calling
1812100650deSOlivier Houchard 	 * bstrategy(). Set them back to NULL now we're done with it, or we'll
1813100650deSOlivier Houchard 	 * trigger a KASSERT in relpbuf().
1814100650deSOlivier Houchard 	 */
1815100650deSOlivier Houchard 	if (bp->b_vp) {
1816100650deSOlivier Houchard 		    bp->b_vp = NULL;
1817100650deSOlivier Houchard 		    bp->b_bufobj = NULL;
1818100650deSOlivier Houchard 	}
1819100650deSOlivier Houchard 	/*
18201c7c3c6aSMatthew Dillon 	 * release the physical I/O buffer
18211c7c3c6aSMatthew Dillon 	 */
1822756a5412SGleb Smirnoff 	if (bp->b_flags & B_ASYNC) {
1823756a5412SGleb Smirnoff 		mtx_lock(&swbuf_mtx);
1824756a5412SGleb Smirnoff 		if (++nsw_wcount_async == 1)
1825756a5412SGleb Smirnoff 			wakeup(&nsw_wcount_async);
1826756a5412SGleb Smirnoff 		mtx_unlock(&swbuf_mtx);
1827756a5412SGleb Smirnoff 	}
1828756a5412SGleb Smirnoff 	uma_zfree((bp->b_iocmd == BIO_READ) ? swrbuf_zone : swwbuf_zone, bp);
182926f9a767SRodney W. Grimes }
18301c7c3c6aSMatthew Dillon 
1831b1fd102eSMark Johnston int
swap_pager_nswapdev(void)1832b1fd102eSMark Johnston swap_pager_nswapdev(void)
1833b1fd102eSMark Johnston {
1834b1fd102eSMark Johnston 
1835b1fd102eSMark Johnston 	return (nswapdev);
1836b1fd102eSMark Johnston }
1837b1fd102eSMark Johnston 
18387c022327SDoug Moore static void
swp_pager_force_dirty(struct page_range * range,vm_page_t m,daddr_t * blk)1839995730a6SDoug Moore swp_pager_force_dirty(struct page_range *range, vm_page_t m, daddr_t *blk)
18407c022327SDoug Moore {
18417c022327SDoug Moore 	vm_page_dirty(m);
1842995730a6SDoug Moore 	swap_pager_unswapped_acct(m);
1843995730a6SDoug Moore 	swp_pager_update_freerange(range, *blk);
1844995730a6SDoug Moore 	*blk = SWAPBLK_NONE;
18457c022327SDoug Moore 	vm_page_launder(m);
184692da00bbSMatthew Dillon }
184792da00bbSMatthew Dillon 
1848ecfbddf0SKonstantin Belousov u_long
swap_pager_swapped_pages(vm_object_t object)1849ecfbddf0SKonstantin Belousov swap_pager_swapped_pages(vm_object_t object)
1850ecfbddf0SKonstantin Belousov {
185152b35140SDoug Moore 	struct pctrie_iter blks;
1852ecfbddf0SKonstantin Belousov 	struct swblk *sb;
1853ecfbddf0SKonstantin Belousov 	u_long res;
1854ecfbddf0SKonstantin Belousov 	int i;
1855ecfbddf0SKonstantin Belousov 
1856ecfbddf0SKonstantin Belousov 	VM_OBJECT_ASSERT_LOCKED(object);
1857cb6757c0SMark Johnston 
185894264705SDoug Moore 	if (swblk_is_empty(object))
1859ecfbddf0SKonstantin Belousov 		return (0);
1860ecfbddf0SKonstantin Belousov 
186194264705SDoug Moore 	res = 0;
18626af02087SDoug Moore 	for (sb = swblk_iter_init(&blks, object, 0); sb != NULL;
186352b35140SDoug Moore 	    sb = swblk_iter_next(&blks)) {
1864ecfbddf0SKonstantin Belousov 		for (i = 0; i < SWAP_META_PAGES; i++) {
1865ecfbddf0SKonstantin Belousov 			if (sb->d[i] != SWAPBLK_NONE)
1866ecfbddf0SKonstantin Belousov 				res++;
1867ecfbddf0SKonstantin Belousov 		}
1868ecfbddf0SKonstantin Belousov 	}
1869ecfbddf0SKonstantin Belousov 	return (res);
1870ecfbddf0SKonstantin Belousov }
1871ecfbddf0SKonstantin Belousov 
187292da00bbSMatthew Dillon /*
18737c022327SDoug Moore  *	swap_pager_swapoff_object:
18747c022327SDoug Moore  *
18757c022327SDoug Moore  *	Page in all of the pages that have been paged out for an object
187656948d17SDoug Moore  *	to a swap device.
18777c022327SDoug Moore  */
18787c022327SDoug Moore static void
swap_pager_swapoff_object(struct swdevt * sp,vm_object_t object,struct buf ** bp)1879*b82d7897SDoug Moore swap_pager_swapoff_object(struct swdevt *sp, vm_object_t object,
1880*b82d7897SDoug Moore     struct buf **bp)
18817c022327SDoug Moore {
188252b35140SDoug Moore 	struct pctrie_iter blks, pages;
1883995730a6SDoug Moore 	struct page_range range;
18847c022327SDoug Moore 	struct swblk *sb;
1885c90d075bSMark Johnston 	vm_page_t m;
1886995730a6SDoug Moore 	int i, rahead, rv;
1887995730a6SDoug Moore 	bool sb_empty;
18887c022327SDoug Moore 
1889995730a6SDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(object);
18904b8365d7SKonstantin Belousov 	KASSERT((object->flags & OBJ_SWAP) != 0,
18918ecbf14bSDoug Moore 	    ("%s: Object not swappable", __func__));
189211078340SDoug Moore 	KASSERT((object->flags & OBJ_DEAD) == 0,
189311078340SDoug Moore 	    ("%s: Object already dead", __func__));
189452b35140SDoug Moore 	KASSERT((sp->sw_flags & SW_CLOSING) != 0,
189552b35140SDoug Moore 	    ("%s: Device not blocking further allocations", __func__));
1896c90d075bSMark Johnston 
189776c60597SDoug Moore 	vm_page_iter_init(&pages, object);
1898995730a6SDoug Moore 	swp_pager_init_freerange(&range);
18996af02087SDoug Moore 	sb = swblk_iter_init(&blks, object, 0);
190052b35140SDoug Moore 	while (sb != NULL) {
1901995730a6SDoug Moore 		sb_empty = true;
190252b35140SDoug Moore 		for (i = 0; i < SWAP_META_PAGES; i++) {
1903995730a6SDoug Moore 			/* Skip an invalid block. */
190452b35140SDoug Moore 			if (sb->d[i] == SWAPBLK_NONE)
190552b35140SDoug Moore 				continue;
190652b35140SDoug Moore 			/* Skip a block not of this device. */
190752b35140SDoug Moore 			if (!swp_pager_isondev(sb->d[i], sp)) {
1908995730a6SDoug Moore 				sb_empty = false;
19097c022327SDoug Moore 				continue;
1910995730a6SDoug Moore 			}
191156948d17SDoug Moore 
191256948d17SDoug Moore 			/*
191352b35140SDoug Moore 			 * Look for a page corresponding to this block. If the
191452b35140SDoug Moore 			 * found page has pending operations, sleep and restart
191552b35140SDoug Moore 			 * the scan.
191656948d17SDoug Moore 			 */
1917991dbf9fSDoug Moore 			m = vm_radix_iter_lookup(&pages, blks.index + i);
1918995730a6SDoug Moore 			if (m != NULL && (m->oflags & VPO_SWAPINPROG) != 0) {
1919995730a6SDoug Moore 				m->oflags |= VPO_SWAPSLEEP;
192052b35140SDoug Moore 				VM_OBJECT_SLEEP(object, &object->handle, PSWP,
192152b35140SDoug Moore 				    "swpoff", 0);
192252b35140SDoug Moore 				break;
1923995730a6SDoug Moore 			}
1924995730a6SDoug Moore 
1925995730a6SDoug Moore 			/*
192652b35140SDoug Moore 			 * If the found page is valid, mark it dirty and free
192752b35140SDoug Moore 			 * the swap block.
1928995730a6SDoug Moore 			 */
1929995730a6SDoug Moore 			if (m != NULL && vm_page_all_valid(m)) {
1930995730a6SDoug Moore 				swp_pager_force_dirty(&range, m, &sb->d[i]);
1931995730a6SDoug Moore 				continue;
1932995730a6SDoug Moore 			}
1933995730a6SDoug Moore 			/* Is there a page we can acquire or allocate? */
193452b35140SDoug Moore 			if (m != NULL) {
193552b35140SDoug Moore 				if (!vm_page_busy_acquire(m, VM_ALLOC_WAITFAIL))
193652b35140SDoug Moore 					break;
19376b33d9dcSDoug Moore 			} else {
19386b33d9dcSDoug Moore 				m = vm_radix_iter_lookup_le(&pages,
19396b33d9dcSDoug Moore 				    blks.index + i);
19406b33d9dcSDoug Moore 				m = vm_page_alloc_after(object, blks.index + i,
19416b33d9dcSDoug Moore 				    VM_ALLOC_NORMAL | VM_ALLOC_WAITFAIL, m);
19426b33d9dcSDoug Moore 				if (m == NULL)
194352b35140SDoug Moore 					break;
19446b33d9dcSDoug Moore 			}
194556948d17SDoug Moore 
194652b35140SDoug Moore 			/* Get the page from swap, and restart the scan. */
1947c90d075bSMark Johnston 			vm_object_pip_add(object, 1);
1948c90d075bSMark Johnston 			rahead = SWAP_META_PAGES;
194939f6d1e7SDoug Moore 			rv = swap_pager_getpages_locked(&blks, object, &m, 1,
1950*b82d7897SDoug Moore 			    NULL, &rahead, *bp);
1951c90d075bSMark Johnston 			if (rv != VM_PAGER_OK)
195252b35140SDoug Moore 				panic("%s: read from swap failed: %d",
195352b35140SDoug Moore 				    __func__, rv);
1954*b82d7897SDoug Moore 			*bp = uma_zalloc(swrbuf_zone, M_WAITOK);
1955c90d075bSMark Johnston 			VM_OBJECT_WLOCK(object);
1956e61568aeSMark Johnston 			vm_object_pip_wakeupn(object, 1);
1957995730a6SDoug Moore 			KASSERT(vm_page_all_valid(m),
1958995730a6SDoug Moore 			    ("%s: Page %p not all valid", __func__, m));
1959d11d407aSMark Johnston 			vm_page_deactivate_noreuse(m);
1960c90d075bSMark Johnston 			vm_page_xunbusy(m);
196152b35140SDoug Moore 			break;
196252b35140SDoug Moore 		}
196352b35140SDoug Moore 		if (i < SWAP_META_PAGES) {
196452b35140SDoug Moore 			/*
196511078340SDoug Moore 			 * The object lock has been released and regained.
196611078340SDoug Moore 			 * Perhaps the object is now dead.
196711078340SDoug Moore 			 */
196811078340SDoug Moore 			if ((object->flags & OBJ_DEAD) != 0) {
196911078340SDoug Moore 				/*
197011078340SDoug Moore 				 * Make sure that pending writes finish before
197111078340SDoug Moore 				 * returning.
197211078340SDoug Moore 				 */
197311078340SDoug Moore 				vm_object_pip_wait(object, "swpoff");
197411078340SDoug Moore 				swp_pager_meta_free_all(object);
197511078340SDoug Moore 				break;
197611078340SDoug Moore 			}
197711078340SDoug Moore 
197811078340SDoug Moore 			/*
197911078340SDoug Moore 			 * The swapblk could have been freed, so reset the pages
198052b35140SDoug Moore 			 * iterator and search again for the first swblk at or
198152b35140SDoug Moore 			 * after blks.index.
198252b35140SDoug Moore 			 */
198352b35140SDoug Moore 			pctrie_iter_reset(&pages);
19846af02087SDoug Moore 			sb = swblk_iter_init(&blks, object, blks.index);
198552b35140SDoug Moore 			continue;
198652b35140SDoug Moore 		}
198752b35140SDoug Moore 		if (sb_empty) {
198852b35140SDoug Moore 			swblk_iter_remove(&blks);
198952b35140SDoug Moore 			uma_zfree(swblk_zone, sb);
199052b35140SDoug Moore 		}
199152b35140SDoug Moore 
199252b35140SDoug Moore 		/*
199352b35140SDoug Moore 		 * It is safe to advance to the next block.  No allocations
199452b35140SDoug Moore 		 * before blk.index have happened, even with the lock released,
199552b35140SDoug Moore 		 * because allocations on this device are blocked.
199652b35140SDoug Moore 		 */
199752b35140SDoug Moore 		sb = swblk_iter_next(&blks);
199856948d17SDoug Moore 	}
1999995730a6SDoug Moore 	swp_pager_freeswapspace(&range);
20007c022327SDoug Moore }
20017c022327SDoug Moore 
20027c022327SDoug Moore /*
200392da00bbSMatthew Dillon  *	swap_pager_swapoff:
200492da00bbSMatthew Dillon  *
200592da00bbSMatthew Dillon  *	Page in all of the pages that have been paged out to the
200692da00bbSMatthew Dillon  *	given device.  The corresponding blocks in the bitmap must be
200792da00bbSMatthew Dillon  *	marked as allocated and the device must be flagged SW_CLOSING.
200892da00bbSMatthew Dillon  *	There may be no processes swapped out to the device.
200992da00bbSMatthew Dillon  *
201092da00bbSMatthew Dillon  *	This routine may block.
201192da00bbSMatthew Dillon  */
2012e9c0cc15SPoul-Henning Kamp static void
swap_pager_swapoff(struct swdevt * sp)2013b3fed13eSDavid Schultz swap_pager_swapoff(struct swdevt *sp)
201492da00bbSMatthew Dillon {
2015f425ab8eSKonstantin Belousov 	vm_object_t object;
2016*b82d7897SDoug Moore 	struct buf *bp;
20177c022327SDoug Moore 	int retries;
201892da00bbSMatthew Dillon 
201904533e1eSKonstantin Belousov 	sx_assert(&swdev_syscall_lock, SA_XLOCKED);
202092da00bbSMatthew Dillon 
20218bc61209SDavid Schultz 	retries = 0;
202292da00bbSMatthew Dillon full_rescan:
2023*b82d7897SDoug Moore 	bp = uma_zalloc(swrbuf_zone, M_WAITOK);
2024f425ab8eSKonstantin Belousov 	mtx_lock(&vm_object_list_mtx);
2025f425ab8eSKonstantin Belousov 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
20264b8365d7SKonstantin Belousov 		if ((object->flags & OBJ_SWAP) == 0)
202798150664SKonstantin Belousov 			continue;
2028f425ab8eSKonstantin Belousov 		mtx_unlock(&vm_object_list_mtx);
202998150664SKonstantin Belousov 		/* Depends on type-stability. */
203098150664SKonstantin Belousov 		VM_OBJECT_WLOCK(object);
2031f425ab8eSKonstantin Belousov 
2032f425ab8eSKonstantin Belousov 		/*
2033f425ab8eSKonstantin Belousov 		 * Dead objects are eventually terminated on their own.
2034f425ab8eSKonstantin Belousov 		 */
2035f425ab8eSKonstantin Belousov 		if ((object->flags & OBJ_DEAD) != 0)
2036f425ab8eSKonstantin Belousov 			goto next_obj;
2037f425ab8eSKonstantin Belousov 
2038f425ab8eSKonstantin Belousov 		/*
2039f425ab8eSKonstantin Belousov 		 * Sync with fences placed after pctrie
2040f425ab8eSKonstantin Belousov 		 * initialization.  We must not access pctrie below
2041f425ab8eSKonstantin Belousov 		 * unless we checked that our object is swap and not
2042f425ab8eSKonstantin Belousov 		 * dead.
2043f425ab8eSKonstantin Belousov 		 */
2044f425ab8eSKonstantin Belousov 		atomic_thread_fence_acq();
20454b8365d7SKonstantin Belousov 		if ((object->flags & OBJ_SWAP) == 0)
2046f425ab8eSKonstantin Belousov 			goto next_obj;
2047f425ab8eSKonstantin Belousov 
2048*b82d7897SDoug Moore 		swap_pager_swapoff_object(sp, object, &bp);
2049f425ab8eSKonstantin Belousov next_obj:
2050f425ab8eSKonstantin Belousov 		VM_OBJECT_WUNLOCK(object);
2051f425ab8eSKonstantin Belousov 		mtx_lock(&vm_object_list_mtx);
205292da00bbSMatthew Dillon 	}
2053f425ab8eSKonstantin Belousov 	mtx_unlock(&vm_object_list_mtx);
2054*b82d7897SDoug Moore 	uma_zfree(swrbuf_zone, bp);
2055f425ab8eSKonstantin Belousov 
20568bc61209SDavid Schultz 	if (sp->sw_used) {
205792da00bbSMatthew Dillon 		/*
20588bc61209SDavid Schultz 		 * Objects may be locked or paging to the device being
20598bc61209SDavid Schultz 		 * removed, so we will miss their pages and need to
20608bc61209SDavid Schultz 		 * make another pass.  We have marked this device as
20618bc61209SDavid Schultz 		 * SW_CLOSING, so the activity should finish soon.
206292da00bbSMatthew Dillon 		 */
20638bc61209SDavid Schultz 		retries++;
20648bc61209SDavid Schultz 		if (retries > 100) {
20658bc61209SDavid Schultz 			panic("swapoff: failed to locate %d swap blocks",
20668bc61209SDavid Schultz 			    sp->sw_used);
20678bc61209SDavid Schultz 		}
20684d70511aSJohn Baldwin 		pause("swpoff", hz / 20);
206992da00bbSMatthew Dillon 		goto full_rescan;
207092da00bbSMatthew Dillon 	}
2071b1fd102eSMark Johnston 	EVENTHANDLER_INVOKE(swapoff, sp);
207292da00bbSMatthew Dillon }
207392da00bbSMatthew Dillon 
20741c7c3c6aSMatthew Dillon /************************************************************************
20751c7c3c6aSMatthew Dillon  *				SWAP META DATA 				*
20761c7c3c6aSMatthew Dillon  ************************************************************************
20771c7c3c6aSMatthew Dillon  *
20781c7c3c6aSMatthew Dillon  *	These routines manipulate the swap metadata stored in the
2079cec9f109SDavid E. O'Brien  *	OBJT_SWAP object.
20801c7c3c6aSMatthew Dillon  *
20814dcc5c2dSMatthew Dillon  *	Swap metadata is implemented with a global hash and not directly
20824dcc5c2dSMatthew Dillon  *	linked into the object.  Instead the object simply contains
20834dcc5c2dSMatthew Dillon  *	appropriate tracking counters.
20841c7c3c6aSMatthew Dillon  */
20851c7c3c6aSMatthew Dillon 
20861c7c3c6aSMatthew Dillon /*
2087230869e0SAlan Cox  * SWP_PAGER_SWBLK_EMPTY() - is a range of blocks free?
2088230869e0SAlan Cox  */
2089230869e0SAlan Cox static bool
swp_pager_swblk_empty(struct swblk * sb,int start,int limit)2090230869e0SAlan Cox swp_pager_swblk_empty(struct swblk *sb, int start, int limit)
2091230869e0SAlan Cox {
2092230869e0SAlan Cox 	int i;
2093230869e0SAlan Cox 
2094230869e0SAlan Cox 	MPASS(0 <= start && start <= limit && limit <= SWAP_META_PAGES);
2095230869e0SAlan Cox 	for (i = start; i < limit; i++) {
2096230869e0SAlan Cox 		if (sb->d[i] != SWAPBLK_NONE)
2097230869e0SAlan Cox 			return (false);
2098230869e0SAlan Cox 	}
2099230869e0SAlan Cox 	return (true);
2100230869e0SAlan Cox }
2101230869e0SAlan Cox 
2102230869e0SAlan Cox /*
2103abdab7b6SDoug Moore  * SWP_PAGER_FREE_EMPTY_SWBLK() - frees if a block is free
2104abdab7b6SDoug Moore  *
2105abdab7b6SDoug Moore  *  Nothing is done if the block is still in use.
2106abdab7b6SDoug Moore  */
2107abdab7b6SDoug Moore static void
swp_pager_free_empty_swblk(vm_object_t object,struct swblk * sb)2108abdab7b6SDoug Moore swp_pager_free_empty_swblk(vm_object_t object, struct swblk *sb)
2109abdab7b6SDoug Moore {
2110abdab7b6SDoug Moore 
2111abdab7b6SDoug Moore 	if (swp_pager_swblk_empty(sb, 0, SWAP_META_PAGES)) {
211294264705SDoug Moore 		swblk_lookup_remove(object, sb);
2113abdab7b6SDoug Moore 		uma_zfree(swblk_zone, sb);
2114abdab7b6SDoug Moore 	}
2115abdab7b6SDoug Moore }
2116abdab7b6SDoug Moore 
2117abdab7b6SDoug Moore /*
21181c7c3c6aSMatthew Dillon  * SWP_PAGER_META_BUILD() -	add swap block to swap meta data for object
21191c7c3c6aSMatthew Dillon  *
212075694e65SDoug Moore  *	Try to add the specified swapblk to the object's swap metadata.  If
212175694e65SDoug Moore  *	nowait_noreplace is set, add the specified swapblk only if there is no
212275694e65SDoug Moore  *	previously assigned swapblk at pindex.  If the swapblk is invalid, and
212375694e65SDoug Moore  *	replaces a valid swapblk, empty swap metadata is freed.  If memory
212475694e65SDoug Moore  *	allocation fails, and nowait_noreplace is set, return the specified
212575694e65SDoug Moore  *	swapblk immediately to indicate failure; otherwise, wait and retry until
212675694e65SDoug Moore  *	memory allocation succeeds.  Return the previously assigned swapblk, if
212775694e65SDoug Moore  *	any.
21281c7c3c6aSMatthew Dillon  */
212978f1deefSAlan Cox static daddr_t
swp_pager_meta_build(struct pctrie_iter * blks,vm_object_t object,vm_pindex_t pindex,daddr_t swapblk,bool nowait_noreplace)2130d0b225d1SDoug Moore swp_pager_meta_build(struct pctrie_iter *blks, vm_object_t object,
2131d0b225d1SDoug Moore     vm_pindex_t pindex, daddr_t swapblk, bool nowait_noreplace)
21322f249180SPoul-Henning Kamp {
2133f425ab8eSKonstantin Belousov 	static volatile int swblk_zone_exhausted, swpctrie_zone_exhausted;
2134eed99cb8SKonstantin Belousov 	struct swblk *sb, *sb1;
2135d0b225d1SDoug Moore 	vm_pindex_t modpi;
213678f1deefSAlan Cox 	daddr_t prev_swapblk;
2137f425ab8eSKonstantin Belousov 	int error, i;
21381c7c3c6aSMatthew Dillon 
213989f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
2140f425ab8eSKonstantin Belousov 
2141d0b225d1SDoug Moore 	sb = swblk_iter_lookup(blks, pindex);
2142f425ab8eSKonstantin Belousov 	if (sb == NULL) {
21431c7c3c6aSMatthew Dillon 		if (swapblk == SWAPBLK_NONE)
214478f1deefSAlan Cox 			return (SWAPBLK_NONE);
2145f425ab8eSKonstantin Belousov 		for (;;) {
2146f425ab8eSKonstantin Belousov 			sb = uma_zalloc(swblk_zone, M_NOWAIT | (curproc ==
2147f425ab8eSKonstantin Belousov 			    pageproc ? M_USE_RESERVE : 0));
2148f425ab8eSKonstantin Belousov 			if (sb != NULL) {
2149d0b225d1SDoug Moore 				sb->p = rounddown(pindex, SWAP_META_PAGES);
2150f425ab8eSKonstantin Belousov 				for (i = 0; i < SWAP_META_PAGES; i++)
2151f425ab8eSKonstantin Belousov 					sb->d[i] = SWAPBLK_NONE;
2152f425ab8eSKonstantin Belousov 				if (atomic_cmpset_int(&swblk_zone_exhausted,
2153f425ab8eSKonstantin Belousov 				    1, 0))
2154f425ab8eSKonstantin Belousov 					printf("swblk zone ok\n");
2155f425ab8eSKonstantin Belousov 				break;
2156f425ab8eSKonstantin Belousov 			}
215775694e65SDoug Moore 			if (nowait_noreplace)
215875694e65SDoug Moore 				return (swapblk);
215989f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(object);
2160f425ab8eSKonstantin Belousov 			if (uma_zone_exhausted(swblk_zone)) {
2161f425ab8eSKonstantin Belousov 				if (atomic_cmpset_int(&swblk_zone_exhausted,
2162f425ab8eSKonstantin Belousov 				    0, 1))
2163f425ab8eSKonstantin Belousov 					printf("swap blk zone exhausted, "
21643ff863f1SDag-Erling Smørgrav 					    "increase kern.maxswzone\n");
21652025d69bSKonstantin Belousov 				vm_pageout_oom(VM_OOM_SWAPZ);
2166f425ab8eSKonstantin Belousov 				pause("swzonxb", 10);
21672025d69bSKonstantin Belousov 			} else
21688d6fbbb8SJeff Roberson 				uma_zwait(swblk_zone);
216989f6b863SAttilio Rao 			VM_OBJECT_WLOCK(object);
2170d0b225d1SDoug Moore 			sb = swblk_iter_reinit(blks, object, pindex);
2171eed99cb8SKonstantin Belousov 			if (sb != NULL)
2172eed99cb8SKonstantin Belousov 				/*
2173eed99cb8SKonstantin Belousov 				 * Somebody swapped out a nearby page,
2174d0b225d1SDoug Moore 				 * allocating swblk at the pindex index,
2175eed99cb8SKonstantin Belousov 				 * while we dropped the object lock.
2176eed99cb8SKonstantin Belousov 				 */
2177eed99cb8SKonstantin Belousov 				goto allocated;
21784dcc5c2dSMatthew Dillon 		}
2179f425ab8eSKonstantin Belousov 		for (;;) {
2180d0b225d1SDoug Moore 			error = swblk_iter_insert(blks, sb);
2181f425ab8eSKonstantin Belousov 			if (error == 0) {
2182f425ab8eSKonstantin Belousov 				if (atomic_cmpset_int(&swpctrie_zone_exhausted,
2183f425ab8eSKonstantin Belousov 				    1, 0))
2184f425ab8eSKonstantin Belousov 					printf("swpctrie zone ok\n");
2185f425ab8eSKonstantin Belousov 				break;
21861c7c3c6aSMatthew Dillon 			}
218775694e65SDoug Moore 			if (nowait_noreplace) {
218875694e65SDoug Moore 				uma_zfree(swblk_zone, sb);
218975694e65SDoug Moore 				return (swapblk);
219075694e65SDoug Moore 			}
2191f425ab8eSKonstantin Belousov 			VM_OBJECT_WUNLOCK(object);
2192f425ab8eSKonstantin Belousov 			if (uma_zone_exhausted(swpctrie_zone)) {
2193f425ab8eSKonstantin Belousov 				if (atomic_cmpset_int(&swpctrie_zone_exhausted,
2194f425ab8eSKonstantin Belousov 				    0, 1))
2195f425ab8eSKonstantin Belousov 					printf("swap pctrie zone exhausted, "
2196f425ab8eSKonstantin Belousov 					    "increase kern.maxswzone\n");
2197f425ab8eSKonstantin Belousov 				vm_pageout_oom(VM_OOM_SWAPZ);
2198f425ab8eSKonstantin Belousov 				pause("swzonxp", 10);
2199f425ab8eSKonstantin Belousov 			} else
22008d6fbbb8SJeff Roberson 				uma_zwait(swpctrie_zone);
2201f425ab8eSKonstantin Belousov 			VM_OBJECT_WLOCK(object);
2202d0b225d1SDoug Moore 			sb1 = swblk_iter_reinit(blks, object, pindex);
2203eed99cb8SKonstantin Belousov 			if (sb1 != NULL) {
2204eed99cb8SKonstantin Belousov 				uma_zfree(swblk_zone, sb);
2205eed99cb8SKonstantin Belousov 				sb = sb1;
2206eed99cb8SKonstantin Belousov 				goto allocated;
22071c7c3c6aSMatthew Dillon 			}
2208f425ab8eSKonstantin Belousov 		}
2209eed99cb8SKonstantin Belousov 	}
2210eed99cb8SKonstantin Belousov allocated:
2211d0b225d1SDoug Moore 	MPASS(sb->p == rounddown(pindex, SWAP_META_PAGES));
22121c7c3c6aSMatthew Dillon 
2213f425ab8eSKonstantin Belousov 	modpi = pindex % SWAP_META_PAGES;
221478f1deefSAlan Cox 	/* Return prior contents of metadata. */
221578f1deefSAlan Cox 	prev_swapblk = sb->d[modpi];
221675694e65SDoug Moore 	if (!nowait_noreplace || prev_swapblk == SWAPBLK_NONE) {
2217f425ab8eSKonstantin Belousov 		/* Enter block into metadata. */
2218f425ab8eSKonstantin Belousov 		sb->d[modpi] = swapblk;
221985d88d87SKonstantin Belousov 
222085d88d87SKonstantin Belousov 		/*
222185d88d87SKonstantin Belousov 		 * Free the swblk if we end up with the empty page run.
222285d88d87SKonstantin Belousov 		 */
2223d0b225d1SDoug Moore 		if (swapblk == SWAPBLK_NONE &&
2224d0b225d1SDoug Moore 		    swp_pager_swblk_empty(sb, 0, SWAP_META_PAGES)) {
2225d0b225d1SDoug Moore 			swblk_iter_remove(blks);
2226d0b225d1SDoug Moore 			uma_zfree(swblk_zone, sb);
2227d0b225d1SDoug Moore 		}
222875694e65SDoug Moore 	}
222978f1deefSAlan Cox 	return (prev_swapblk);
223085d88d87SKonstantin Belousov }
22311c7c3c6aSMatthew Dillon 
22321c7c3c6aSMatthew Dillon /*
223394264705SDoug Moore  * SWP_PAGER_META_TRANSFER() - transfer a range of blocks in the srcobject's
223494264705SDoug Moore  * swap metadata into dstobject.
2235467057fcSDoug Moore  *
2236bae51702SDoug Moore  *	Blocks in src that correspond to holes in dst are transferred.  Blocks
2237bae51702SDoug Moore  *	in src that correspond to blocks in dst are freed.
2238467057fcSDoug Moore  */
2239467057fcSDoug Moore static void
swp_pager_meta_transfer(vm_object_t srcobject,vm_object_t dstobject,vm_pindex_t pindex,vm_pindex_t count)2240467057fcSDoug Moore swp_pager_meta_transfer(vm_object_t srcobject, vm_object_t dstobject,
224194264705SDoug Moore     vm_pindex_t pindex, vm_pindex_t count)
2242467057fcSDoug Moore {
2243d0b225d1SDoug Moore 	struct pctrie_iter dstblks, srcblks;
2244a880104aSDoug Moore 	struct page_range range;
2245467057fcSDoug Moore 	struct swblk *sb;
22464ccad545SDoug Moore 	daddr_t blk, d[SWAP_META_PAGES];
224752b35140SDoug Moore 	vm_pindex_t last;
22484ccad545SDoug Moore 	int d_mask, i, limit, start;
22494ccad545SDoug Moore 	_Static_assert(8 * sizeof(d_mask) >= SWAP_META_PAGES,
22504ccad545SDoug Moore 	    "d_mask not big enough");
2251467057fcSDoug Moore 
2252467057fcSDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(srcobject);
225394264705SDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(dstobject);
2254baa1ccceSKonstantin Belousov 
225594264705SDoug Moore 	if (count == 0 || swblk_is_empty(srcobject))
225694264705SDoug Moore 		return;
2257467057fcSDoug Moore 
2258a880104aSDoug Moore 	swp_pager_init_freerange(&range);
22594ccad545SDoug Moore 	d_mask = 0;
2260467057fcSDoug Moore 	last = pindex + count;
2261d0b225d1SDoug Moore 	swblk_iter_init_only(&dstblks, dstobject);
2262d0b225d1SDoug Moore 	for (sb = swblk_iter_limit_init(&srcblks, srcobject, pindex, last),
226352b35140SDoug Moore 	    start = swblk_start(sb, pindex);
2264d0b225d1SDoug Moore 	    sb != NULL; sb = swblk_iter_next(&srcblks), start = 0) {
2265d0b225d1SDoug Moore 		limit = MIN(last - srcblks.index, SWAP_META_PAGES);
2266467057fcSDoug Moore 		for (i = start; i < limit; i++) {
226794264705SDoug Moore 			if (sb->d[i] == SWAPBLK_NONE)
2268467057fcSDoug Moore 				continue;
2269d0b225d1SDoug Moore 			blk = swp_pager_meta_build(&dstblks, dstobject,
2270d0b225d1SDoug Moore 			    srcblks.index + i - pindex, sb->d[i], true);
227194264705SDoug Moore 			if (blk == sb->d[i]) {
227275694e65SDoug Moore 				/*
22734ccad545SDoug Moore 				 * Failed memory allocation stopped transfer;
22744ccad545SDoug Moore 				 * save this block for transfer with lock
22754ccad545SDoug Moore 				 * released.
227675694e65SDoug Moore 				 */
22774ccad545SDoug Moore 				d[i] = blk;
22784ccad545SDoug Moore 				d_mask |= 1 << i;
2279bae51702SDoug Moore 			} else if (blk != SWAPBLK_NONE) {
2280bae51702SDoug Moore 				/* Dst has a block at pindex, so free block. */
228194264705SDoug Moore 				swp_pager_update_freerange(&range, sb->d[i]);
2282bae51702SDoug Moore 			}
2283467057fcSDoug Moore 			sb->d[i] = SWAPBLK_NONE;
2284467057fcSDoug Moore 		}
2285467057fcSDoug Moore 		if (swp_pager_swblk_empty(sb, 0, start) &&
2286467057fcSDoug Moore 		    swp_pager_swblk_empty(sb, limit, SWAP_META_PAGES)) {
2287d0b225d1SDoug Moore 			swblk_iter_remove(&srcblks);
2288467057fcSDoug Moore 			uma_zfree(swblk_zone, sb);
2289467057fcSDoug Moore 		}
22904ccad545SDoug Moore 		if (d_mask != 0) {
22914ccad545SDoug Moore 			/* Finish block transfer, with the lock released. */
22924ccad545SDoug Moore 			VM_OBJECT_WUNLOCK(srcobject);
22934ccad545SDoug Moore 			do {
22944ccad545SDoug Moore 				i = ffs(d_mask) - 1;
2295d0b225d1SDoug Moore 				swp_pager_meta_build(&dstblks, dstobject,
2296d0b225d1SDoug Moore 				    srcblks.index + i - pindex, d[i], false);
22974ccad545SDoug Moore 				d_mask &= ~(1 << i);
22984ccad545SDoug Moore 			} while (d_mask != 0);
22994ccad545SDoug Moore 			VM_OBJECT_WLOCK(srcobject);
230052b35140SDoug Moore 
230152b35140SDoug Moore 			/*
230252b35140SDoug Moore 			 * While the lock was not held, the iterator path could
230352b35140SDoug Moore 			 * have become stale, so discard it.
230452b35140SDoug Moore 			 */
2305d0b225d1SDoug Moore 			pctrie_iter_reset(&srcblks);
23064ccad545SDoug Moore 		}
2307467057fcSDoug Moore 	}
2308a880104aSDoug Moore 	swp_pager_freeswapspace(&range);
2309467057fcSDoug Moore }
2310467057fcSDoug Moore 
2311467057fcSDoug Moore /*
23121c7c3c6aSMatthew Dillon  * SWP_PAGER_META_FREE() - free a range of blocks in the object's swap metadata
23131c7c3c6aSMatthew Dillon  *
2314f1aaef47SDoug Moore  *	Return freed swap blocks to the swap bitmap, and free emptied swblk
2315f1aaef47SDoug Moore  *	metadata.  With 'freed' set, provide a count of freed blocks that were
2316f1aaef47SDoug Moore  *	not associated with valid resident pages.
23171c7c3c6aSMatthew Dillon  */
23181c7c3c6aSMatthew Dillon static void
swp_pager_meta_free(vm_object_t object,vm_pindex_t pindex,vm_pindex_t count,vm_size_t * freed)2319baa1ccceSKonstantin Belousov swp_pager_meta_free(vm_object_t object, vm_pindex_t pindex, vm_pindex_t count,
2320baa1ccceSKonstantin Belousov     vm_size_t *freed)
23211c7c3c6aSMatthew Dillon {
232252b35140SDoug Moore 	struct pctrie_iter blks, pages;
232394264705SDoug Moore 	struct page_range range;
232494264705SDoug Moore 	struct swblk *sb;
232594264705SDoug Moore 	vm_page_t m;
232694264705SDoug Moore 	vm_pindex_t last;
232794264705SDoug Moore 	vm_size_t fc;
232894264705SDoug Moore 	int i, limit, start;
232994264705SDoug Moore 
233094264705SDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(object);
233194264705SDoug Moore 
233294264705SDoug Moore 	fc = 0;
233394264705SDoug Moore 	if (count == 0 || swblk_is_empty(object))
233494264705SDoug Moore 		goto out;
233594264705SDoug Moore 
233694264705SDoug Moore 	swp_pager_init_freerange(&range);
233776c60597SDoug Moore 	vm_page_iter_init(&pages, object);
233894264705SDoug Moore 	last = pindex + count;
23396af02087SDoug Moore 	for (sb = swblk_iter_limit_init(&blks, object, pindex, last),
234052b35140SDoug Moore 	    start = swblk_start(sb, pindex);
234152b35140SDoug Moore 	    sb != NULL; sb = swblk_iter_next(&blks), start = 0) {
234252b35140SDoug Moore 		limit = MIN(last - blks.index, SWAP_META_PAGES);
234394264705SDoug Moore 		for (i = start; i < limit; i++) {
234494264705SDoug Moore 			if (sb->d[i] == SWAPBLK_NONE)
234594264705SDoug Moore 				continue;
234694264705SDoug Moore 			swp_pager_update_freerange(&range, sb->d[i]);
234794264705SDoug Moore 			if (freed != NULL) {
2348991dbf9fSDoug Moore 				m = vm_radix_iter_lookup(&pages, blks.index + i);
234994264705SDoug Moore 				if (m == NULL || vm_page_none_valid(m))
235094264705SDoug Moore 					fc++;
235194264705SDoug Moore 			}
235294264705SDoug Moore 			sb->d[i] = SWAPBLK_NONE;
235394264705SDoug Moore 		}
235494264705SDoug Moore 		if (swp_pager_swblk_empty(sb, 0, start) &&
235594264705SDoug Moore 		    swp_pager_swblk_empty(sb, limit, SWAP_META_PAGES)) {
235652b35140SDoug Moore 			swblk_iter_remove(&blks);
235794264705SDoug Moore 			uma_zfree(swblk_zone, sb);
235894264705SDoug Moore 		}
235994264705SDoug Moore 	}
236094264705SDoug Moore 	swp_pager_freeswapspace(&range);
236194264705SDoug Moore out:
236294264705SDoug Moore 	if (freed != NULL)
236394264705SDoug Moore 		*freed = fc;
23641c7c3c6aSMatthew Dillon }
23651c7c3c6aSMatthew Dillon 
2366a880104aSDoug Moore static void
swp_pager_meta_free_block(struct swblk * sb,void * rangev)23672a21cfe6SDoug Moore swp_pager_meta_free_block(struct swblk *sb, void *rangev)
2368a880104aSDoug Moore {
2369d2acf0a4SDoug Moore 	struct page_range *range = rangev;
2370d2acf0a4SDoug Moore 
2371a880104aSDoug Moore 	for (int i = 0; i < SWAP_META_PAGES; i++) {
2372a880104aSDoug Moore 		if (sb->d[i] != SWAPBLK_NONE)
2373a880104aSDoug Moore 			swp_pager_update_freerange(range, sb->d[i]);
2374a880104aSDoug Moore 	}
2375a880104aSDoug Moore 	uma_zfree(swblk_zone, sb);
2376a880104aSDoug Moore }
2377a880104aSDoug Moore 
23781c7c3c6aSMatthew Dillon /*
23791c7c3c6aSMatthew Dillon  * SWP_PAGER_META_FREE_ALL() - destroy all swap metadata associated with object
23801c7c3c6aSMatthew Dillon  *
23811c7c3c6aSMatthew Dillon  *	This routine locates and destroys all swap metadata associated with
23821c7c3c6aSMatthew Dillon  *	an object.
23831c7c3c6aSMatthew Dillon  */
23841c7c3c6aSMatthew Dillon static void
swp_pager_meta_free_all(vm_object_t object)23851c7c3c6aSMatthew Dillon swp_pager_meta_free_all(vm_object_t object)
23861c7c3c6aSMatthew Dillon {
2387a880104aSDoug Moore 	struct page_range range;
23881c7c3c6aSMatthew Dillon 
238989f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
2390cb6757c0SMark Johnston 
2391a880104aSDoug Moore 	swp_pager_init_freerange(&range);
2392d2acf0a4SDoug Moore 	SWAP_PCTRIE_RECLAIM_CALLBACK(&object->un_pager.swp.swp_blks,
2393d2acf0a4SDoug Moore 	    swp_pager_meta_free_block, &range);
2394a880104aSDoug Moore 	swp_pager_freeswapspace(&range);
23951c7c3c6aSMatthew Dillon }
23961c7c3c6aSMatthew Dillon 
23971c7c3c6aSMatthew Dillon /*
23984abca9bbSAlan Cox  * SWP_PAGER_METACTL() -  misc control of swap meta data.
23991c7c3c6aSMatthew Dillon  *
24004abca9bbSAlan Cox  *	This routine is capable of looking up, or removing swapblk
24014abca9bbSAlan Cox  *	assignments in the swap meta data.  It returns the swapblk being
24024abca9bbSAlan Cox  *	looked-up, popped, or SWAPBLK_NONE if the block was invalid.
24031c7c3c6aSMatthew Dillon  *
24041c7c3c6aSMatthew Dillon  *	When acting on a busy resident page and paging is in progress, we
24051c7c3c6aSMatthew Dillon  *	have to wait until paging is complete but otherwise can act on the
24061c7c3c6aSMatthew Dillon  *	busy page.
24071c7c3c6aSMatthew Dillon  */
24081c7c3c6aSMatthew Dillon static daddr_t
swp_pager_meta_lookup(struct pctrie_iter * blks,vm_pindex_t pindex)240939f6d1e7SDoug Moore swp_pager_meta_lookup(struct pctrie_iter *blks, vm_pindex_t pindex)
24102f249180SPoul-Henning Kamp {
2411f425ab8eSKonstantin Belousov 	struct swblk *sb;
24124dcc5c2dSMatthew Dillon 
241339f6d1e7SDoug Moore 	sb = swblk_iter_lookup(blks, pindex);
2414f425ab8eSKonstantin Belousov 	if (sb == NULL)
2415f425ab8eSKonstantin Belousov 		return (SWAPBLK_NONE);
24168ecbf14bSDoug Moore 	return (sb->d[pindex % SWAP_META_PAGES]);
24171c7c3c6aSMatthew Dillon }
24181c7c3c6aSMatthew Dillon 
2419e9c0cc15SPoul-Henning Kamp /*
242094264705SDoug Moore  * Returns the least page index which is greater than or equal to the parameter
242194264705SDoug Moore  * pindex and for which there is a swap block allocated.  Returns OBJ_MAX_SIZE
242294264705SDoug Moore  * if are no allocated swap blocks for the object after the requested pindex.
242377d6fd97SKonstantin Belousov  */
242434951b0bSDoug Moore static vm_pindex_t
swap_pager_iter_find_least(struct pctrie_iter * blks,vm_pindex_t pindex)242534951b0bSDoug Moore swap_pager_iter_find_least(struct pctrie_iter *blks, vm_pindex_t pindex)
242677d6fd97SKonstantin Belousov {
2427f425ab8eSKonstantin Belousov 	struct swblk *sb;
2428f425ab8eSKonstantin Belousov 	int i;
242977d6fd97SKonstantin Belousov 
243034951b0bSDoug Moore 	if ((sb = swblk_iter_lookup_ge(blks, pindex)) == NULL)
243194264705SDoug Moore 		return (OBJ_MAX_SIZE);
243234951b0bSDoug Moore 	if (blks->index < pindex) {
243328af3eb6SDoug Moore 		for (i = pindex % SWAP_META_PAGES; i < SWAP_META_PAGES; i++) {
2434f425ab8eSKonstantin Belousov 			if (sb->d[i] != SWAPBLK_NONE)
243534951b0bSDoug Moore 				return (blks->index + i);
243677d6fd97SKonstantin Belousov 		}
243734951b0bSDoug Moore 		if ((sb = swblk_iter_next(blks)) == NULL)
243894264705SDoug Moore 			return (OBJ_MAX_SIZE);
243928af3eb6SDoug Moore 	}
2440f425ab8eSKonstantin Belousov 	for (i = 0; i < SWAP_META_PAGES; i++) {
2441f425ab8eSKonstantin Belousov 		if (sb->d[i] != SWAPBLK_NONE)
244234951b0bSDoug Moore 			return (blks->index + i);
244377d6fd97SKonstantin Belousov 	}
2444f425ab8eSKonstantin Belousov 
2445f425ab8eSKonstantin Belousov 	/*
2446f425ab8eSKonstantin Belousov 	 * We get here if a swblk is present in the trie but it
2447f425ab8eSKonstantin Belousov 	 * doesn't map any blocks.
2448f425ab8eSKonstantin Belousov 	 */
244928af3eb6SDoug Moore 	MPASS(0);
245094264705SDoug Moore 	return (OBJ_MAX_SIZE);
245177d6fd97SKonstantin Belousov }
245277d6fd97SKonstantin Belousov 
245377d6fd97SKonstantin Belousov /*
2454db08b0b0SDoug Moore  * Find the first index >= pindex that has either a valid page or a swap
2455db08b0b0SDoug Moore  * block.
245634951b0bSDoug Moore  */
245734951b0bSDoug Moore vm_pindex_t
swap_pager_seek_data(vm_object_t object,vm_pindex_t pindex)2458db08b0b0SDoug Moore swap_pager_seek_data(vm_object_t object, vm_pindex_t pindex)
245934951b0bSDoug Moore {
2460db08b0b0SDoug Moore 	struct pctrie_iter blks, pages;
2461db08b0b0SDoug Moore 	vm_page_t m;
2462db08b0b0SDoug Moore 	vm_pindex_t swap_index;
246334951b0bSDoug Moore 
246402e85d1cSDoug Moore 	VM_OBJECT_ASSERT_RLOCKED(object);
2465db08b0b0SDoug Moore 	vm_page_iter_init(&pages, object);
2466991dbf9fSDoug Moore 	m = vm_radix_iter_lookup_ge(&pages, pindex);
246740c1672eSDoug Moore 	if (m != NULL && pages.index == pindex && vm_page_any_valid(m))
2468db08b0b0SDoug Moore 		return (pages.index);
246934951b0bSDoug Moore 	swblk_iter_init_only(&blks, object);
2470db08b0b0SDoug Moore 	swap_index = swap_pager_iter_find_least(&blks, pindex);
2471db08b0b0SDoug Moore 	if (swap_index == pindex)
2472db08b0b0SDoug Moore 		return (swap_index);
2473db08b0b0SDoug Moore 
247440c1672eSDoug Moore 	/*
247540c1672eSDoug Moore 	 * Find the first resident page after m, before swap_index.
247640c1672eSDoug Moore 	 */
247740c1672eSDoug Moore 	while (m != NULL && pages.index < swap_index) {
2478db08b0b0SDoug Moore 		if (vm_page_any_valid(m))
2479db08b0b0SDoug Moore 			return (pages.index);
248040c1672eSDoug Moore 		m = vm_radix_iter_step(&pages);
2481db08b0b0SDoug Moore 	}
248240c1672eSDoug Moore 	if (swap_index == OBJ_MAX_SIZE)
248340c1672eSDoug Moore 		swap_index = object->size;
2484db08b0b0SDoug Moore 	return (swap_index);
2485db08b0b0SDoug Moore }
2486db08b0b0SDoug Moore 
2487db08b0b0SDoug Moore /*
2488db08b0b0SDoug Moore  * Find the first index >= pindex that has neither a valid page nor a swap
2489db08b0b0SDoug Moore  * block.
2490db08b0b0SDoug Moore  */
2491db08b0b0SDoug Moore vm_pindex_t
swap_pager_seek_hole(vm_object_t object,vm_pindex_t pindex)2492db08b0b0SDoug Moore swap_pager_seek_hole(vm_object_t object, vm_pindex_t pindex)
2493db08b0b0SDoug Moore {
2494db08b0b0SDoug Moore 	struct pctrie_iter blks, pages;
2495db08b0b0SDoug Moore 	struct swblk *sb;
2496db08b0b0SDoug Moore 	vm_page_t m;
2497db08b0b0SDoug Moore 
2498faa9356fSDoug Moore 	VM_OBJECT_ASSERT_RLOCKED(object);
2499db08b0b0SDoug Moore 	vm_page_iter_init(&pages, object);
2500db08b0b0SDoug Moore 	swblk_iter_init_only(&blks, object);
2501991dbf9fSDoug Moore 	while (((m = vm_radix_iter_lookup(&pages, pindex)) != NULL &&
2502db08b0b0SDoug Moore 	    vm_page_any_valid(m)) ||
2503db08b0b0SDoug Moore 	    ((sb = swblk_iter_lookup(&blks, pindex)) != NULL &&
2504db08b0b0SDoug Moore 	    sb->d[pindex % SWAP_META_PAGES] != SWAPBLK_NONE))
2505db08b0b0SDoug Moore 		pindex++;
2506db08b0b0SDoug Moore 	return (pindex);
250734951b0bSDoug Moore }
250834951b0bSDoug Moore 
250934951b0bSDoug Moore /*
251034951b0bSDoug Moore  * Is every page in the backing object or swap shadowed in the parent, and
251134951b0bSDoug Moore  * unbusy and valid in swap?
251234951b0bSDoug Moore  */
251334951b0bSDoug Moore bool
swap_pager_scan_all_shadowed(vm_object_t object)251434951b0bSDoug Moore swap_pager_scan_all_shadowed(vm_object_t object)
251534951b0bSDoug Moore {
251639f6d1e7SDoug Moore 	struct pctrie_iter backing_blks, backing_pages, blks, pages;
251734951b0bSDoug Moore 	vm_object_t backing_object;
251834951b0bSDoug Moore 	vm_page_t p, pp;
251934951b0bSDoug Moore 	vm_pindex_t backing_offset_index, new_pindex, pi, pi_ubound, ps, pv;
252034951b0bSDoug Moore 
252134951b0bSDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(object);
252234951b0bSDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(object->backing_object);
252334951b0bSDoug Moore 
252434951b0bSDoug Moore 	backing_object = object->backing_object;
252534951b0bSDoug Moore 
252634951b0bSDoug Moore 	if ((backing_object->flags & OBJ_ANON) == 0)
252734951b0bSDoug Moore 		return (false);
252834951b0bSDoug Moore 
252934951b0bSDoug Moore 	KASSERT((object->flags & OBJ_ANON) != 0,
253034951b0bSDoug Moore 	    ("Shadow object is not anonymous"));
253134951b0bSDoug Moore 	backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
253234951b0bSDoug Moore 	pi_ubound = MIN(backing_object->size,
253334951b0bSDoug Moore 	    backing_offset_index + object->size);
253434951b0bSDoug Moore 	vm_page_iter_init(&pages, object);
253534951b0bSDoug Moore 	vm_page_iter_init(&backing_pages, backing_object);
253639f6d1e7SDoug Moore 	swblk_iter_init_only(&blks, object);
253734951b0bSDoug Moore 	swblk_iter_init_only(&backing_blks, backing_object);
253834951b0bSDoug Moore 
253934951b0bSDoug Moore 	/*
254034951b0bSDoug Moore 	 * Only check pages inside the parent object's range and inside the
254134951b0bSDoug Moore 	 * parent object's mapping of the backing object.
254234951b0bSDoug Moore 	 */
254334951b0bSDoug Moore 	pv = ps = pi = backing_offset_index - 1;
254434951b0bSDoug Moore 	for (;;) {
254534951b0bSDoug Moore 		if (pi == pv) {
2546991dbf9fSDoug Moore 			p = vm_radix_iter_lookup_ge(&backing_pages, pv + 1);
254734951b0bSDoug Moore 			pv = p != NULL ? p->pindex : backing_object->size;
254834951b0bSDoug Moore 		}
254934951b0bSDoug Moore 		if (pi == ps)
255034951b0bSDoug Moore 			ps = swap_pager_iter_find_least(&backing_blks, ps + 1);
255134951b0bSDoug Moore 		pi = MIN(pv, ps);
255234951b0bSDoug Moore 		if (pi >= pi_ubound)
255334951b0bSDoug Moore 			break;
255434951b0bSDoug Moore 
255534951b0bSDoug Moore 		if (pi == pv) {
255634951b0bSDoug Moore 			/*
255734951b0bSDoug Moore 			 * If the backing object page is busy a grandparent or
255834951b0bSDoug Moore 			 * older page may still be undergoing CoW.  It is not
255934951b0bSDoug Moore 			 * safe to collapse the backing object until it is
256034951b0bSDoug Moore 			 * quiesced.
256134951b0bSDoug Moore 			 */
256234951b0bSDoug Moore 			if (vm_page_tryxbusy(p) == 0)
256334951b0bSDoug Moore 				return (false);
256434951b0bSDoug Moore 
256534951b0bSDoug Moore 			/*
256634951b0bSDoug Moore 			 * We raced with the fault handler that left newly
256734951b0bSDoug Moore 			 * allocated invalid page on the object queue and
256834951b0bSDoug Moore 			 * retried.
256934951b0bSDoug Moore 			 */
257034951b0bSDoug Moore 			if (!vm_page_all_valid(p))
257134951b0bSDoug Moore 				break;
257234951b0bSDoug Moore 
257334951b0bSDoug Moore 			/*
257434951b0bSDoug Moore 			 * Busy of p disallows fault handler to validate parent
257534951b0bSDoug Moore 			 * page (pp, below).
257634951b0bSDoug Moore 			 */
257734951b0bSDoug Moore 		}
257834951b0bSDoug Moore 
257934951b0bSDoug Moore 		/*
258034951b0bSDoug Moore 		 * See if the parent has the page or if the parent's object
258134951b0bSDoug Moore 		 * pager has the page.  If the parent has the page but the page
258234951b0bSDoug Moore 		 * is not valid, the parent's object pager must have the page.
258334951b0bSDoug Moore 		 *
258434951b0bSDoug Moore 		 * If this fails, the parent does not completely shadow the
258534951b0bSDoug Moore 		 * object and we might as well give up now.
258634951b0bSDoug Moore 		 */
258734951b0bSDoug Moore 		new_pindex = pi - backing_offset_index;
2588991dbf9fSDoug Moore 		pp = vm_radix_iter_lookup(&pages, new_pindex);
258934951b0bSDoug Moore 
259034951b0bSDoug Moore 		/*
259134951b0bSDoug Moore 		 * The valid check here is stable due to object lock being
259234951b0bSDoug Moore 		 * required to clear valid and initiate paging.
259334951b0bSDoug Moore 		 */
259434951b0bSDoug Moore 		if ((pp == NULL || vm_page_none_valid(pp)) &&
259539f6d1e7SDoug Moore 		    !swp_pager_haspage_iter(&blks, new_pindex, NULL,
259639f6d1e7SDoug Moore 		    NULL))
259734951b0bSDoug Moore 			break;
259834951b0bSDoug Moore 		if (pi == pv)
259934951b0bSDoug Moore 			vm_page_xunbusy(p);
260034951b0bSDoug Moore 	}
260134951b0bSDoug Moore 	if (pi < pi_ubound) {
260234951b0bSDoug Moore 		if (pi == pv)
260334951b0bSDoug Moore 			vm_page_xunbusy(p);
260434951b0bSDoug Moore 		return (false);
260534951b0bSDoug Moore 	}
260634951b0bSDoug Moore 	return (true);
260734951b0bSDoug Moore }
260834951b0bSDoug Moore 
260934951b0bSDoug Moore /*
2610e9c0cc15SPoul-Henning Kamp  * System call swapon(name) enables swapping on device name,
2611e9c0cc15SPoul-Henning Kamp  * which must be in the swdevsw.  Return EBUSY
2612e9c0cc15SPoul-Henning Kamp  * if already swapping on this device.
2613e9c0cc15SPoul-Henning Kamp  */
2614e9c0cc15SPoul-Henning Kamp #ifndef _SYS_SYSPROTO_H_
2615e9c0cc15SPoul-Henning Kamp struct swapon_args {
2616e9c0cc15SPoul-Henning Kamp 	char *name;
2617e9c0cc15SPoul-Henning Kamp };
2618e9c0cc15SPoul-Henning Kamp #endif
2619e9c0cc15SPoul-Henning Kamp 
2620e9c0cc15SPoul-Henning Kamp int
sys_swapon(struct thread * td,struct swapon_args * uap)26218451d0ddSKip Macy sys_swapon(struct thread *td, struct swapon_args *uap)
2622e9c0cc15SPoul-Henning Kamp {
2623e9c0cc15SPoul-Henning Kamp 	struct vattr attr;
2624e9c0cc15SPoul-Henning Kamp 	struct vnode *vp;
2625e9c0cc15SPoul-Henning Kamp 	struct nameidata nd;
2626e9c0cc15SPoul-Henning Kamp 	int error;
2627e9c0cc15SPoul-Henning Kamp 
2628acd3428bSRobert Watson 	error = priv_check(td, PRIV_SWAPON);
2629e9c0cc15SPoul-Henning Kamp 	if (error)
2630acd3428bSRobert Watson 		return (error);
2631e9c0cc15SPoul-Henning Kamp 
263204533e1eSKonstantin Belousov 	sx_xlock(&swdev_syscall_lock);
2633e9c0cc15SPoul-Henning Kamp 
2634e9c0cc15SPoul-Henning Kamp 	/*
2635e9c0cc15SPoul-Henning Kamp 	 * Swap metadata may not fit in the KVM if we have physical
2636e9c0cc15SPoul-Henning Kamp 	 * memory of >1GB.
2637e9c0cc15SPoul-Henning Kamp 	 */
2638f425ab8eSKonstantin Belousov 	if (swblk_zone == NULL) {
2639e9c0cc15SPoul-Henning Kamp 		error = ENOMEM;
2640e9c0cc15SPoul-Henning Kamp 		goto done;
2641e9c0cc15SPoul-Henning Kamp 	}
2642e9c0cc15SPoul-Henning Kamp 
26436ddf41faSKonstantin Belousov 	NDINIT(&nd, LOOKUP, ISOPEN | FOLLOW | LOCKLEAF | AUDITVNODE1,
26447e1d3eefSMateusz Guzik 	    UIO_USERSPACE, uap->name);
2645e9c0cc15SPoul-Henning Kamp 	error = namei(&nd);
2646e9c0cc15SPoul-Henning Kamp 	if (error)
2647e9c0cc15SPoul-Henning Kamp 		goto done;
2648e9c0cc15SPoul-Henning Kamp 
2649bb92cd7bSMateusz Guzik 	NDFREE_PNBUF(&nd);
2650e9c0cc15SPoul-Henning Kamp 	vp = nd.ni_vp;
2651e9c0cc15SPoul-Henning Kamp 
26527ad2a82dSMateusz Guzik 	if (vn_isdisk_error(vp, &error)) {
265388ad2d7bSKonstantin Belousov 		error = swapongeom(vp);
265420da9c2eSPoul-Henning Kamp 	} else if (vp->v_type == VREG &&
2655e9c0cc15SPoul-Henning Kamp 	    (vp->v_mount->mnt_vfc->vfc_flags & VFCF_NETWORK) != 0 &&
26560359a12eSAttilio Rao 	    (error = VOP_GETATTR(vp, &attr, td->td_ucred)) == 0) {
2657e9c0cc15SPoul-Henning Kamp 		/*
2658e9c0cc15SPoul-Henning Kamp 		 * Allow direct swapping to NFS regular files in the same
2659e9c0cc15SPoul-Henning Kamp 		 * way that nfs_mountroot() sets up diskless swapping.
2660e9c0cc15SPoul-Henning Kamp 		 */
266159efee01SPoul-Henning Kamp 		error = swaponvp(td, vp, attr.va_size / DEV_BSIZE);
2662e9c0cc15SPoul-Henning Kamp 	}
2663e9c0cc15SPoul-Henning Kamp 
26646ddf41faSKonstantin Belousov 	if (error != 0)
26656ddf41faSKonstantin Belousov 		vput(vp);
26666ddf41faSKonstantin Belousov 	else
26676ddf41faSKonstantin Belousov 		VOP_UNLOCK(vp);
2668e9c0cc15SPoul-Henning Kamp done:
266904533e1eSKonstantin Belousov 	sx_xunlock(&swdev_syscall_lock);
2670e9c0cc15SPoul-Henning Kamp 	return (error);
2671e9c0cc15SPoul-Henning Kamp }
2672e9c0cc15SPoul-Henning Kamp 
26733ff863f1SDag-Erling Smørgrav /*
26743ff863f1SDag-Erling Smørgrav  * Check that the total amount of swap currently configured does not
26753ff863f1SDag-Erling Smørgrav  * exceed half the theoretical maximum.  If it does, print a warning
267635872e79SKonstantin Belousov  * message.
26773ff863f1SDag-Erling Smørgrav  */
267835872e79SKonstantin Belousov static void
swapon_check_swzone(void)267935872e79SKonstantin Belousov swapon_check_swzone(void)
26803ff863f1SDag-Erling Smørgrav {
26813ff863f1SDag-Erling Smørgrav 
26823ff863f1SDag-Erling Smørgrav 	/* recommend using no more than half that amount */
2683303fa05aSKonstantin Belousov 	if (swap_total > swap_maxpages / 2) {
26843ff863f1SDag-Erling Smørgrav 		printf("warning: total configured swap (%lu pages) "
26853ff863f1SDag-Erling Smørgrav 		    "exceeds maximum recommended amount (%lu pages).\n",
2686303fa05aSKonstantin Belousov 		    swap_total, swap_maxpages / 2);
26873ff863f1SDag-Erling Smørgrav 		printf("warning: increase kern.maxswzone "
26883ff863f1SDag-Erling Smørgrav 		    "or reduce amount of swap.\n");
26893ff863f1SDag-Erling Smørgrav 	}
26903ff863f1SDag-Erling Smørgrav }
26913ff863f1SDag-Erling Smørgrav 
269259efee01SPoul-Henning Kamp static void
swaponsomething(struct vnode * vp,void * id,u_long nblks,sw_strategy_t * strategy,sw_close_t * close,dev_t dev,int flags)26932cc718a1SKonstantin Belousov swaponsomething(struct vnode *vp, void *id, u_long nblks,
26942cc718a1SKonstantin Belousov     sw_strategy_t *strategy, sw_close_t *close, dev_t dev, int flags)
2695e9c0cc15SPoul-Henning Kamp {
26962d9974c1SAlan Cox 	struct swdevt *sp, *tsp;
269734e2051fSMark Johnston 	daddr_t dvbase;
2698e9c0cc15SPoul-Henning Kamp 
2699e9c0cc15SPoul-Henning Kamp 	/*
2700e9c0cc15SPoul-Henning Kamp 	 * nblks is in DEV_BSIZE'd chunks, convert to PAGE_SIZE'd chunks.
2701e9c0cc15SPoul-Henning Kamp 	 * First chop nblks off to page-align it, then convert.
2702e9c0cc15SPoul-Henning Kamp 	 *
2703e9c0cc15SPoul-Henning Kamp 	 * sw->sw_nblks is in page-sized chunks now too.
2704e9c0cc15SPoul-Henning Kamp 	 */
2705e9c0cc15SPoul-Henning Kamp 	nblks &= ~(ctodb(1) - 1);
2706e9c0cc15SPoul-Henning Kamp 	nblks = dbtoc(nblks);
2707e9c0cc15SPoul-Henning Kamp 
27088f60c087SPoul-Henning Kamp 	sp = malloc(sizeof *sp, M_VMPGDATA, M_WAITOK | M_ZERO);
270900fd73d2SDoug Moore 	sp->sw_blist = blist_create(nblks, M_WAITOK);
2710dee34ca4SPoul-Henning Kamp 	sp->sw_vp = vp;
2711dee34ca4SPoul-Henning Kamp 	sp->sw_id = id;
2712f3732fd1SPoul-Henning Kamp 	sp->sw_dev = dev;
2713e9c0cc15SPoul-Henning Kamp 	sp->sw_nblks = nblks;
2714e9c0cc15SPoul-Henning Kamp 	sp->sw_used = 0;
271559efee01SPoul-Henning Kamp 	sp->sw_strategy = strategy;
2716dee34ca4SPoul-Henning Kamp 	sp->sw_close = close;
27172cc718a1SKonstantin Belousov 	sp->sw_flags = flags;
2718e9c0cc15SPoul-Henning Kamp 
2719e9c0cc15SPoul-Henning Kamp 	/*
2720504f5e29SDoug Moore 	 * Do not free the first blocks in order to avoid overwriting
27218f60c087SPoul-Henning Kamp 	 * any bsd label at the front of the partition
2722e9c0cc15SPoul-Henning Kamp 	 */
2723504f5e29SDoug Moore 	blist_free(sp->sw_blist, howmany(BBSIZE, PAGE_SIZE),
2724504f5e29SDoug Moore 	    nblks - howmany(BBSIZE, PAGE_SIZE));
2725e9c0cc15SPoul-Henning Kamp 
27262d9974c1SAlan Cox 	dvbase = 0;
272720da9c2eSPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
27282d9974c1SAlan Cox 	TAILQ_FOREACH(tsp, &swtailq, sw_list) {
27292d9974c1SAlan Cox 		if (tsp->sw_end >= dvbase) {
27302d9974c1SAlan Cox 			/*
27312d9974c1SAlan Cox 			 * We put one uncovered page between the devices
27322d9974c1SAlan Cox 			 * in order to definitively prevent any cross-device
27332d9974c1SAlan Cox 			 * I/O requests
27342d9974c1SAlan Cox 			 */
27352d9974c1SAlan Cox 			dvbase = tsp->sw_end + 1;
27362d9974c1SAlan Cox 		}
27372d9974c1SAlan Cox 	}
27382d9974c1SAlan Cox 	sp->sw_first = dvbase;
27392d9974c1SAlan Cox 	sp->sw_end = dvbase + nblks;
27408f60c087SPoul-Henning Kamp 	TAILQ_INSERT_TAIL(&swtailq, sp, sw_list);
27418f60c087SPoul-Henning Kamp 	nswapdev++;
2742504f5e29SDoug Moore 	swap_pager_avail += nblks - howmany(BBSIZE, PAGE_SIZE);
2743e8bb589dSMatt Macy 	swap_total += nblks;
274435872e79SKonstantin Belousov 	swapon_check_swzone();
2745d05bc129SAlan Cox 	swp_sizecheck();
2746d05bc129SAlan Cox 	mtx_unlock(&sw_dev_mtx);
2747b1fd102eSMark Johnston 	EVENTHANDLER_INVOKE(swapon, sp);
274859efee01SPoul-Henning Kamp }
2749e9c0cc15SPoul-Henning Kamp 
2750e9c0cc15SPoul-Henning Kamp /*
2751e9c0cc15SPoul-Henning Kamp  * SYSCALL: swapoff(devname)
2752e9c0cc15SPoul-Henning Kamp  *
2753e9c0cc15SPoul-Henning Kamp  * Disable swapping on the given device.
2754dee34ca4SPoul-Henning Kamp  *
2755dee34ca4SPoul-Henning Kamp  * XXX: Badly designed system call: it should use a device index
2756dee34ca4SPoul-Henning Kamp  * rather than filename as specification.  We keep sw_vp around
2757dee34ca4SPoul-Henning Kamp  * only to make this work.
2758e9c0cc15SPoul-Henning Kamp  */
275953465702SKonstantin Belousov static int
kern_swapoff(struct thread * td,const char * name,enum uio_seg name_seg,u_int flags)276053465702SKonstantin Belousov kern_swapoff(struct thread *td, const char *name, enum uio_seg name_seg,
276153465702SKonstantin Belousov     u_int flags)
2762e9c0cc15SPoul-Henning Kamp {
2763e9c0cc15SPoul-Henning Kamp 	struct vnode *vp;
2764e9c0cc15SPoul-Henning Kamp 	struct nameidata nd;
2765e9c0cc15SPoul-Henning Kamp 	struct swdevt *sp;
276653465702SKonstantin Belousov 	int error;
2767e9c0cc15SPoul-Henning Kamp 
2768acd3428bSRobert Watson 	error = priv_check(td, PRIV_SWAPOFF);
2769a4e4132fSKonstantin Belousov 	if (error != 0)
2770a4e4132fSKonstantin Belousov 		return (error);
277153465702SKonstantin Belousov 	if ((flags & ~(SWAPOFF_FORCE)) != 0)
2772a4e4132fSKonstantin Belousov 		return (EINVAL);
2773a4e4132fSKonstantin Belousov 
277404533e1eSKonstantin Belousov 	sx_xlock(&swdev_syscall_lock);
2775e9c0cc15SPoul-Henning Kamp 
277653465702SKonstantin Belousov 	NDINIT(&nd, LOOKUP, FOLLOW | AUDITVNODE1, name_seg, name);
2777e9c0cc15SPoul-Henning Kamp 	error = namei(&nd);
2778e9c0cc15SPoul-Henning Kamp 	if (error)
2779e9c0cc15SPoul-Henning Kamp 		goto done;
2780bb92cd7bSMateusz Guzik 	NDFREE_PNBUF(&nd);
2781e9c0cc15SPoul-Henning Kamp 	vp = nd.ni_vp;
2782e9c0cc15SPoul-Henning Kamp 
278320da9c2eSPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
27848f60c087SPoul-Henning Kamp 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
2785dee34ca4SPoul-Henning Kamp 		if (sp->sw_vp == vp)
27860909f38aSPawel Jakub Dawidek 			break;
2787e9c0cc15SPoul-Henning Kamp 	}
278820da9c2eSPoul-Henning Kamp 	mtx_unlock(&sw_dev_mtx);
27890909f38aSPawel Jakub Dawidek 	if (sp == NULL) {
2790e9c0cc15SPoul-Henning Kamp 		error = EINVAL;
2791e9c0cc15SPoul-Henning Kamp 		goto done;
27920909f38aSPawel Jakub Dawidek 	}
279353465702SKonstantin Belousov 	error = swapoff_one(sp, td->td_ucred, flags);
27940909f38aSPawel Jakub Dawidek done:
279504533e1eSKonstantin Belousov 	sx_xunlock(&swdev_syscall_lock);
27960909f38aSPawel Jakub Dawidek 	return (error);
27970909f38aSPawel Jakub Dawidek }
27980909f38aSPawel Jakub Dawidek 
279953465702SKonstantin Belousov 
280053465702SKonstantin Belousov #ifdef COMPAT_FREEBSD13
280153465702SKonstantin Belousov int
freebsd13_swapoff(struct thread * td,struct freebsd13_swapoff_args * uap)280253465702SKonstantin Belousov freebsd13_swapoff(struct thread *td, struct freebsd13_swapoff_args *uap)
280353465702SKonstantin Belousov {
280453465702SKonstantin Belousov 	return (kern_swapoff(td, uap->name, UIO_USERSPACE, 0));
280553465702SKonstantin Belousov }
280653465702SKonstantin Belousov #endif
280753465702SKonstantin Belousov 
280853465702SKonstantin Belousov int
sys_swapoff(struct thread * td,struct swapoff_args * uap)280953465702SKonstantin Belousov sys_swapoff(struct thread *td, struct swapoff_args *uap)
281053465702SKonstantin Belousov {
281153465702SKonstantin Belousov 	return (kern_swapoff(td, uap->name, UIO_USERSPACE, uap->flags));
281253465702SKonstantin Belousov }
281353465702SKonstantin Belousov 
28140909f38aSPawel Jakub Dawidek static int
swapoff_one(struct swdevt * sp,struct ucred * cred,u_int flags)2815e8dc2ba2SKonstantin Belousov swapoff_one(struct swdevt *sp, struct ucred *cred, u_int flags)
28160909f38aSPawel Jakub Dawidek {
281703bdd65fSAlan Cox 	u_long nblks;
2818e9c0cc15SPoul-Henning Kamp #ifdef MAC
28190909f38aSPawel Jakub Dawidek 	int error;
2820e9c0cc15SPoul-Henning Kamp #endif
2821e9c0cc15SPoul-Henning Kamp 
282204533e1eSKonstantin Belousov 	sx_assert(&swdev_syscall_lock, SA_XLOCKED);
28230909f38aSPawel Jakub Dawidek #ifdef MAC
2824cb05b60aSAttilio Rao 	(void) vn_lock(sp->sw_vp, LK_EXCLUSIVE | LK_RETRY);
282535918c55SChristian S.J. Peron 	error = mac_system_check_swapoff(cred, sp->sw_vp);
2826b249ce48SMateusz Guzik 	(void) VOP_UNLOCK(sp->sw_vp);
28270909f38aSPawel Jakub Dawidek 	if (error != 0)
28280909f38aSPawel Jakub Dawidek 		return (error);
28290909f38aSPawel Jakub Dawidek #endif
2830e9c0cc15SPoul-Henning Kamp 	nblks = sp->sw_nblks;
2831e9c0cc15SPoul-Henning Kamp 
2832e9c0cc15SPoul-Henning Kamp 	/*
2833e9c0cc15SPoul-Henning Kamp 	 * We can turn off this swap device safely only if the
2834e9c0cc15SPoul-Henning Kamp 	 * available virtual memory in the system will fit the amount
2835e9c0cc15SPoul-Henning Kamp 	 * of data we will have to page back in, plus an epsilon so
2836e9c0cc15SPoul-Henning Kamp 	 * the system doesn't become critically low on swap space.
28370190c38bSKonstantin Belousov 	 * The vm_free_count() part does not account e.g. for clean
28380190c38bSKonstantin Belousov 	 * pages that can be immediately reclaimed without paging, so
28390190c38bSKonstantin Belousov 	 * this is a very rough estimation.
28400190c38bSKonstantin Belousov 	 *
28410190c38bSKonstantin Belousov 	 * On the other hand, not turning swap off on swapoff_all()
28420190c38bSKonstantin Belousov 	 * means that we can lose swap data when filesystems go away,
28430190c38bSKonstantin Belousov 	 * which is arguably worse.
2844e9c0cc15SPoul-Henning Kamp 	 */
2845e8dc2ba2SKonstantin Belousov 	if ((flags & SWAPOFF_FORCE) == 0 &&
28460190c38bSKonstantin Belousov 	    vm_free_count() + swap_pager_avail < nblks + nswap_lowat)
28470909f38aSPawel Jakub Dawidek 		return (ENOMEM);
2848e9c0cc15SPoul-Henning Kamp 
2849e9c0cc15SPoul-Henning Kamp 	/*
2850e9c0cc15SPoul-Henning Kamp 	 * Prevent further allocations on this device.
2851e9c0cc15SPoul-Henning Kamp 	 */
28522928cef7SAlan Cox 	mtx_lock(&sw_dev_mtx);
2853e9c0cc15SPoul-Henning Kamp 	sp->sw_flags |= SW_CLOSING;
285403bdd65fSAlan Cox 	swap_pager_avail -= blist_fill(sp->sw_blist, 0, nblks);
2855e8bb589dSMatt Macy 	swap_total -= nblks;
28562928cef7SAlan Cox 	mtx_unlock(&sw_dev_mtx);
2857e9c0cc15SPoul-Henning Kamp 
2858e9c0cc15SPoul-Henning Kamp 	/*
2859e9c0cc15SPoul-Henning Kamp 	 * Page in the contents of the device and close it.
2860e9c0cc15SPoul-Henning Kamp 	 */
2861b3fed13eSDavid Schultz 	swap_pager_swapoff(sp);
2862e9c0cc15SPoul-Henning Kamp 
286335918c55SChristian S.J. Peron 	sp->sw_close(curthread, sp);
286420da9c2eSPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
28659e3e3fe5SWarner Losh 	sp->sw_id = NULL;
28668f60c087SPoul-Henning Kamp 	TAILQ_REMOVE(&swtailq, sp, sw_list);
28670676a140SAlan Cox 	nswapdev--;
28687dea2c2eSAlan Cox 	if (nswapdev == 0) {
28697dea2c2eSAlan Cox 		swap_pager_full = 2;
28707dea2c2eSAlan Cox 		swap_pager_almost_full = 1;
28717dea2c2eSAlan Cox 	}
28728f60c087SPoul-Henning Kamp 	if (swdevhd == sp)
28738f60c087SPoul-Henning Kamp 		swdevhd = NULL;
2874d05bc129SAlan Cox 	mtx_unlock(&sw_dev_mtx);
28758f60c087SPoul-Henning Kamp 	blist_destroy(sp->sw_blist);
28768f60c087SPoul-Henning Kamp 	free(sp, M_VMPGDATA);
28770909f38aSPawel Jakub Dawidek 	return (0);
28780909f38aSPawel Jakub Dawidek }
2879e9c0cc15SPoul-Henning Kamp 
28800909f38aSPawel Jakub Dawidek void
swapoff_all(void)28810909f38aSPawel Jakub Dawidek swapoff_all(void)
28820909f38aSPawel Jakub Dawidek {
28830909f38aSPawel Jakub Dawidek 	struct swdevt *sp, *spt;
28840909f38aSPawel Jakub Dawidek 	const char *devname;
28850909f38aSPawel Jakub Dawidek 	int error;
28860909f38aSPawel Jakub Dawidek 
288704533e1eSKonstantin Belousov 	sx_xlock(&swdev_syscall_lock);
28880909f38aSPawel Jakub Dawidek 
28890909f38aSPawel Jakub Dawidek 	mtx_lock(&sw_dev_mtx);
28900909f38aSPawel Jakub Dawidek 	TAILQ_FOREACH_SAFE(sp, &swtailq, sw_list, spt) {
28910909f38aSPawel Jakub Dawidek 		mtx_unlock(&sw_dev_mtx);
28927ad2a82dSMateusz Guzik 		if (vn_isdisk(sp->sw_vp))
28937870adb6SEd Schouten 			devname = devtoname(sp->sw_vp->v_rdev);
28940909f38aSPawel Jakub Dawidek 		else
28950909f38aSPawel Jakub Dawidek 			devname = "[file]";
2896e8dc2ba2SKonstantin Belousov 		error = swapoff_one(sp, thread0.td_ucred, SWAPOFF_FORCE);
28970909f38aSPawel Jakub Dawidek 		if (error != 0) {
28980909f38aSPawel Jakub Dawidek 			printf("Cannot remove swap device %s (error=%d), "
28990909f38aSPawel Jakub Dawidek 			    "skipping.\n", devname, error);
29000909f38aSPawel Jakub Dawidek 		} else if (bootverbose) {
29010909f38aSPawel Jakub Dawidek 			printf("Swap device %s removed.\n", devname);
29020909f38aSPawel Jakub Dawidek 		}
29030909f38aSPawel Jakub Dawidek 		mtx_lock(&sw_dev_mtx);
29040909f38aSPawel Jakub Dawidek 	}
29050909f38aSPawel Jakub Dawidek 	mtx_unlock(&sw_dev_mtx);
29060909f38aSPawel Jakub Dawidek 
290704533e1eSKonstantin Belousov 	sx_xunlock(&swdev_syscall_lock);
2908e9c0cc15SPoul-Henning Kamp }
2909e9c0cc15SPoul-Henning Kamp 
2910567104a1SPoul-Henning Kamp void
swap_pager_status(int * total,int * used)2911567104a1SPoul-Henning Kamp swap_pager_status(int *total, int *used)
2912567104a1SPoul-Henning Kamp {
2913567104a1SPoul-Henning Kamp 
29147ce3a312SMateusz Guzik 	*total = swap_total;
29157ce3a312SMateusz Guzik 	*used = swap_total - swap_pager_avail -
29167ce3a312SMateusz Guzik 	    nswapdev * howmany(BBSIZE, PAGE_SIZE);
2917567104a1SPoul-Henning Kamp }
2918567104a1SPoul-Henning Kamp 
2919dda4f960SKonstantin Belousov int
swap_dev_info(int name,struct xswdev * xs,char * devname,size_t len)2920dda4f960SKonstantin Belousov swap_dev_info(int name, struct xswdev *xs, char *devname, size_t len)
2921dda4f960SKonstantin Belousov {
2922dda4f960SKonstantin Belousov 	struct swdevt *sp;
29237870adb6SEd Schouten 	const char *tmp_devname;
2924dda4f960SKonstantin Belousov 	int error, n;
2925dda4f960SKonstantin Belousov 
2926dda4f960SKonstantin Belousov 	n = 0;
2927dda4f960SKonstantin Belousov 	error = ENOENT;
2928dda4f960SKonstantin Belousov 	mtx_lock(&sw_dev_mtx);
2929dda4f960SKonstantin Belousov 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
2930dda4f960SKonstantin Belousov 		if (n != name) {
2931dda4f960SKonstantin Belousov 			n++;
2932dda4f960SKonstantin Belousov 			continue;
2933dda4f960SKonstantin Belousov 		}
2934dda4f960SKonstantin Belousov 		xs->xsw_version = XSWDEV_VERSION;
2935dda4f960SKonstantin Belousov 		xs->xsw_dev = sp->sw_dev;
2936dda4f960SKonstantin Belousov 		xs->xsw_flags = sp->sw_flags;
2937dda4f960SKonstantin Belousov 		xs->xsw_nblks = sp->sw_nblks;
2938dda4f960SKonstantin Belousov 		xs->xsw_used = sp->sw_used;
2939dda4f960SKonstantin Belousov 		if (devname != NULL) {
29407ad2a82dSMateusz Guzik 			if (vn_isdisk(sp->sw_vp))
29417870adb6SEd Schouten 				tmp_devname = devtoname(sp->sw_vp->v_rdev);
2942dda4f960SKonstantin Belousov 			else
2943dda4f960SKonstantin Belousov 				tmp_devname = "[file]";
2944dda4f960SKonstantin Belousov 			strncpy(devname, tmp_devname, len);
2945dda4f960SKonstantin Belousov 		}
2946dda4f960SKonstantin Belousov 		error = 0;
2947dda4f960SKonstantin Belousov 		break;
2948dda4f960SKonstantin Belousov 	}
2949dda4f960SKonstantin Belousov 	mtx_unlock(&sw_dev_mtx);
2950dda4f960SKonstantin Belousov 	return (error);
2951dda4f960SKonstantin Belousov }
2952dda4f960SKonstantin Belousov 
295369921123SKonstantin Belousov #if defined(COMPAT_FREEBSD11)
295469921123SKonstantin Belousov #define XSWDEV_VERSION_11	1
295569921123SKonstantin Belousov struct xswdev11 {
295669921123SKonstantin Belousov 	u_int	xsw_version;
295769921123SKonstantin Belousov 	uint32_t xsw_dev;
295869921123SKonstantin Belousov 	int	xsw_flags;
295969921123SKonstantin Belousov 	int	xsw_nblks;
296069921123SKonstantin Belousov 	int     xsw_used;
296169921123SKonstantin Belousov };
296269921123SKonstantin Belousov #endif
296369921123SKonstantin Belousov 
2964f6d281e8SKonstantin Belousov #if defined(__amd64__) && defined(COMPAT_FREEBSD32)
2965f6d281e8SKonstantin Belousov struct xswdev32 {
2966f6d281e8SKonstantin Belousov 	u_int	xsw_version;
2967f6d281e8SKonstantin Belousov 	u_int	xsw_dev1, xsw_dev2;
2968f6d281e8SKonstantin Belousov 	int	xsw_flags;
2969f6d281e8SKonstantin Belousov 	int	xsw_nblks;
2970f6d281e8SKonstantin Belousov 	int     xsw_used;
2971f6d281e8SKonstantin Belousov };
2972f6d281e8SKonstantin Belousov #endif
2973f6d281e8SKonstantin Belousov 
2974e9c0cc15SPoul-Henning Kamp static int
sysctl_vm_swap_info(SYSCTL_HANDLER_ARGS)2975e9c0cc15SPoul-Henning Kamp sysctl_vm_swap_info(SYSCTL_HANDLER_ARGS)
2976e9c0cc15SPoul-Henning Kamp {
2977e9c0cc15SPoul-Henning Kamp 	struct xswdev xs;
2978f6d281e8SKonstantin Belousov #if defined(__amd64__) && defined(COMPAT_FREEBSD32)
2979f6d281e8SKonstantin Belousov 	struct xswdev32 xs32;
2980f6d281e8SKonstantin Belousov #endif
298169921123SKonstantin Belousov #if defined(COMPAT_FREEBSD11)
298269921123SKonstantin Belousov 	struct xswdev11 xs11;
298369921123SKonstantin Belousov #endif
2984dda4f960SKonstantin Belousov 	int error;
2985e9c0cc15SPoul-Henning Kamp 
2986e9c0cc15SPoul-Henning Kamp 	if (arg2 != 1)			/* name length */
2987e9c0cc15SPoul-Henning Kamp 		return (EINVAL);
298806d1fd9fSMark Johnston 
298906d1fd9fSMark Johnston 	memset(&xs, 0, sizeof(xs));
2990dda4f960SKonstantin Belousov 	error = swap_dev_info(*(int *)arg1, &xs, NULL, 0);
2991dda4f960SKonstantin Belousov 	if (error != 0)
2992dda4f960SKonstantin Belousov 		return (error);
2993f6d281e8SKonstantin Belousov #if defined(__amd64__) && defined(COMPAT_FREEBSD32)
2994f6d281e8SKonstantin Belousov 	if (req->oldlen == sizeof(xs32)) {
299506d1fd9fSMark Johnston 		memset(&xs32, 0, sizeof(xs32));
2996f6d281e8SKonstantin Belousov 		xs32.xsw_version = XSWDEV_VERSION;
2997f6d281e8SKonstantin Belousov 		xs32.xsw_dev1 = xs.xsw_dev;
2998f6d281e8SKonstantin Belousov 		xs32.xsw_dev2 = xs.xsw_dev >> 32;
2999f6d281e8SKonstantin Belousov 		xs32.xsw_flags = xs.xsw_flags;
3000f6d281e8SKonstantin Belousov 		xs32.xsw_nblks = xs.xsw_nblks;
3001f6d281e8SKonstantin Belousov 		xs32.xsw_used = xs.xsw_used;
3002f6d281e8SKonstantin Belousov 		error = SYSCTL_OUT(req, &xs32, sizeof(xs32));
3003f6d281e8SKonstantin Belousov 		return (error);
3004f6d281e8SKonstantin Belousov 	}
3005f6d281e8SKonstantin Belousov #endif
300669921123SKonstantin Belousov #if defined(COMPAT_FREEBSD11)
300769921123SKonstantin Belousov 	if (req->oldlen == sizeof(xs11)) {
300806d1fd9fSMark Johnston 		memset(&xs11, 0, sizeof(xs11));
300969921123SKonstantin Belousov 		xs11.xsw_version = XSWDEV_VERSION_11;
301069921123SKonstantin Belousov 		xs11.xsw_dev = xs.xsw_dev; /* truncation */
301169921123SKonstantin Belousov 		xs11.xsw_flags = xs.xsw_flags;
301269921123SKonstantin Belousov 		xs11.xsw_nblks = xs.xsw_nblks;
301369921123SKonstantin Belousov 		xs11.xsw_used = xs.xsw_used;
301469921123SKonstantin Belousov 		error = SYSCTL_OUT(req, &xs11, sizeof(xs11));
3015f6d281e8SKonstantin Belousov 		return (error);
3016f6d281e8SKonstantin Belousov 	}
301769921123SKonstantin Belousov #endif
3018e9c0cc15SPoul-Henning Kamp 	error = SYSCTL_OUT(req, &xs, sizeof(xs));
3019e9c0cc15SPoul-Henning Kamp 	return (error);
3020e9c0cc15SPoul-Henning Kamp }
3021e9c0cc15SPoul-Henning Kamp 
30228f60c087SPoul-Henning Kamp SYSCTL_INT(_vm, OID_AUTO, nswapdev, CTLFLAG_RD, &nswapdev, 0,
3023e9c0cc15SPoul-Henning Kamp     "Number of swap devices");
30244c36e917SKonstantin Belousov SYSCTL_NODE(_vm, OID_AUTO, swap_info, CTLFLAG_RD | CTLFLAG_MPSAFE,
30254c36e917SKonstantin Belousov     sysctl_vm_swap_info,
3026e9c0cc15SPoul-Henning Kamp     "Swap statistics by device");
3027ec38b344SPoul-Henning Kamp 
3028ec38b344SPoul-Henning Kamp /*
3029f425ab8eSKonstantin Belousov  * Count the approximate swap usage in pages for a vmspace.  The
3030f425ab8eSKonstantin Belousov  * shadowed or not yet copied on write swap blocks are not accounted.
3031ec38b344SPoul-Henning Kamp  * The map must be locked.
3032ec38b344SPoul-Henning Kamp  */
30332860553aSRebecca Cran long
vmspace_swap_count(struct vmspace * vmspace)3034ec38b344SPoul-Henning Kamp vmspace_swap_count(struct vmspace *vmspace)
3035ec38b344SPoul-Henning Kamp {
303652b35140SDoug Moore 	struct pctrie_iter blks;
303765d8409cSRebecca Cran 	vm_map_t map;
3038ec38b344SPoul-Henning Kamp 	vm_map_entry_t cur;
303965d8409cSRebecca Cran 	vm_object_t object;
3040f425ab8eSKonstantin Belousov 	struct swblk *sb;
3041f425ab8eSKonstantin Belousov 	vm_pindex_t e, pi;
3042f425ab8eSKonstantin Belousov 	long count;
304352b35140SDoug Moore 	int i, limit, start;
304465d8409cSRebecca Cran 
304565d8409cSRebecca Cran 	map = &vmspace->vm_map;
304665d8409cSRebecca Cran 	count = 0;
3047ec38b344SPoul-Henning Kamp 
30482288078cSDoug Moore 	VM_MAP_ENTRY_FOREACH(cur, map) {
3049f425ab8eSKonstantin Belousov 		if ((cur->eflags & MAP_ENTRY_IS_SUB_MAP) != 0)
3050f425ab8eSKonstantin Belousov 			continue;
3051f425ab8eSKonstantin Belousov 		object = cur->object.vm_object;
30524b8365d7SKonstantin Belousov 		if (object == NULL || (object->flags & OBJ_SWAP) == 0)
3053f425ab8eSKonstantin Belousov 			continue;
3054f425ab8eSKonstantin Belousov 		VM_OBJECT_RLOCK(object);
30554b8365d7SKonstantin Belousov 		if ((object->flags & OBJ_SWAP) == 0)
3056f425ab8eSKonstantin Belousov 			goto unlock;
3057f425ab8eSKonstantin Belousov 		pi = OFF_TO_IDX(cur->offset);
3058f425ab8eSKonstantin Belousov 		e = pi + OFF_TO_IDX(cur->end - cur->start);
30596af02087SDoug Moore 		for (sb = swblk_iter_limit_init(&blks, object, pi, e),
306052b35140SDoug Moore 		    start = swblk_start(sb, pi);
306152b35140SDoug Moore 		    sb != NULL; sb = swblk_iter_next(&blks), start = 0) {
306252b35140SDoug Moore 			limit = MIN(e - blks.index, SWAP_META_PAGES);
306352b35140SDoug Moore 			for (i = start; i < limit; i++) {
306452b35140SDoug Moore 				if (sb->d[i] != SWAPBLK_NONE)
3065f425ab8eSKonstantin Belousov 					count++;
3066ec38b344SPoul-Henning Kamp 			}
3067ec38b344SPoul-Henning Kamp 		}
3068f425ab8eSKonstantin Belousov unlock:
3069f425ab8eSKonstantin Belousov 		VM_OBJECT_RUNLOCK(object);
3070ec38b344SPoul-Henning Kamp 	}
3071ec38b344SPoul-Henning Kamp 	return (count);
3072ec38b344SPoul-Henning Kamp }
3073dee34ca4SPoul-Henning Kamp 
3074dee34ca4SPoul-Henning Kamp /*
3075dee34ca4SPoul-Henning Kamp  * GEOM backend
3076dee34ca4SPoul-Henning Kamp  *
3077dee34ca4SPoul-Henning Kamp  * Swapping onto disk devices.
3078dee34ca4SPoul-Henning Kamp  *
3079dee34ca4SPoul-Henning Kamp  */
3080dee34ca4SPoul-Henning Kamp 
30815721c9c7SPoul-Henning Kamp static g_orphan_t swapgeom_orphan;
30825721c9c7SPoul-Henning Kamp 
3083dee34ca4SPoul-Henning Kamp static struct g_class g_swap_class = {
3084dee34ca4SPoul-Henning Kamp 	.name = "SWAP",
30855721c9c7SPoul-Henning Kamp 	.version = G_VERSION,
30865721c9c7SPoul-Henning Kamp 	.orphan = swapgeom_orphan,
3087dee34ca4SPoul-Henning Kamp };
3088dee34ca4SPoul-Henning Kamp 
3089dee34ca4SPoul-Henning Kamp DECLARE_GEOM_CLASS(g_swap_class, g_class);
3090dee34ca4SPoul-Henning Kamp 
3091dee34ca4SPoul-Henning Kamp static void
swapgeom_close_ev(void * arg,int flags)30923398491bSAlexander Motin swapgeom_close_ev(void *arg, int flags)
30933398491bSAlexander Motin {
30943398491bSAlexander Motin 	struct g_consumer *cp;
30953398491bSAlexander Motin 
30963398491bSAlexander Motin 	cp = arg;
30973398491bSAlexander Motin 	g_access(cp, -1, -1, 0);
30983398491bSAlexander Motin 	g_detach(cp);
30993398491bSAlexander Motin 	g_destroy_consumer(cp);
31003398491bSAlexander Motin }
31013398491bSAlexander Motin 
31029e3e3fe5SWarner Losh /*
31039e3e3fe5SWarner Losh  * Add a reference to the g_consumer for an inflight transaction.
31049e3e3fe5SWarner Losh  */
31059e3e3fe5SWarner Losh static void
swapgeom_acquire(struct g_consumer * cp)31069e3e3fe5SWarner Losh swapgeom_acquire(struct g_consumer *cp)
31079e3e3fe5SWarner Losh {
31089e3e3fe5SWarner Losh 
31099e3e3fe5SWarner Losh 	mtx_assert(&sw_dev_mtx, MA_OWNED);
31109e3e3fe5SWarner Losh 	cp->index++;
31119e3e3fe5SWarner Losh }
31129e3e3fe5SWarner Losh 
31139e3e3fe5SWarner Losh /*
31140c657d22SKonstantin Belousov  * Remove a reference from the g_consumer.  Post a close event if all
31150c657d22SKonstantin Belousov  * references go away, since the function might be called from the
31160c657d22SKonstantin Belousov  * biodone context.
31179e3e3fe5SWarner Losh  */
31189e3e3fe5SWarner Losh static void
swapgeom_release(struct g_consumer * cp,struct swdevt * sp)31199e3e3fe5SWarner Losh swapgeom_release(struct g_consumer *cp, struct swdevt *sp)
31209e3e3fe5SWarner Losh {
31219e3e3fe5SWarner Losh 
31229e3e3fe5SWarner Losh 	mtx_assert(&sw_dev_mtx, MA_OWNED);
31239e3e3fe5SWarner Losh 	cp->index--;
31249e3e3fe5SWarner Losh 	if (cp->index == 0) {
31259e3e3fe5SWarner Losh 		if (g_post_event(swapgeom_close_ev, cp, M_NOWAIT, NULL) == 0)
31269e3e3fe5SWarner Losh 			sp->sw_id = NULL;
31279e3e3fe5SWarner Losh 	}
31289e3e3fe5SWarner Losh }
31299e3e3fe5SWarner Losh 
31303398491bSAlexander Motin static void
swapgeom_done(struct bio * bp2)3131dee34ca4SPoul-Henning Kamp swapgeom_done(struct bio *bp2)
3132dee34ca4SPoul-Henning Kamp {
31333398491bSAlexander Motin 	struct swdevt *sp;
3134dee34ca4SPoul-Henning Kamp 	struct buf *bp;
31353398491bSAlexander Motin 	struct g_consumer *cp;
3136dee34ca4SPoul-Henning Kamp 
3137dee34ca4SPoul-Henning Kamp 	bp = bp2->bio_caller2;
31383398491bSAlexander Motin 	cp = bp2->bio_from;
3139c5d3d25eSPoul-Henning Kamp 	bp->b_ioflags = bp2->bio_flags;
3140dee34ca4SPoul-Henning Kamp 	if (bp2->bio_error)
3141dee34ca4SPoul-Henning Kamp 		bp->b_ioflags |= BIO_ERROR;
3142c5d3d25eSPoul-Henning Kamp 	bp->b_resid = bp->b_bcount - bp2->bio_completed;
3143c5d3d25eSPoul-Henning Kamp 	bp->b_error = bp2->bio_error;
3144756a5412SGleb Smirnoff 	bp->b_caller1 = NULL;
3145dee34ca4SPoul-Henning Kamp 	bufdone(bp);
31463398491bSAlexander Motin 	sp = bp2->bio_caller1;
31479e3e3fe5SWarner Losh 	mtx_lock(&sw_dev_mtx);
31489e3e3fe5SWarner Losh 	swapgeom_release(cp, sp);
31493398491bSAlexander Motin 	mtx_unlock(&sw_dev_mtx);
3150dee34ca4SPoul-Henning Kamp 	g_destroy_bio(bp2);
3151dee34ca4SPoul-Henning Kamp }
3152dee34ca4SPoul-Henning Kamp 
3153dee34ca4SPoul-Henning Kamp static void
swapgeom_strategy(struct buf * bp,struct swdevt * sp)3154dee34ca4SPoul-Henning Kamp swapgeom_strategy(struct buf *bp, struct swdevt *sp)
3155dee34ca4SPoul-Henning Kamp {
3156dee34ca4SPoul-Henning Kamp 	struct bio *bio;
3157dee34ca4SPoul-Henning Kamp 	struct g_consumer *cp;
3158dee34ca4SPoul-Henning Kamp 
31593398491bSAlexander Motin 	mtx_lock(&sw_dev_mtx);
3160dee34ca4SPoul-Henning Kamp 	cp = sp->sw_id;
3161dee34ca4SPoul-Henning Kamp 	if (cp == NULL) {
31623398491bSAlexander Motin 		mtx_unlock(&sw_dev_mtx);
3163dee34ca4SPoul-Henning Kamp 		bp->b_error = ENXIO;
3164dee34ca4SPoul-Henning Kamp 		bp->b_ioflags |= BIO_ERROR;
3165dee34ca4SPoul-Henning Kamp 		bufdone(bp);
3166dee34ca4SPoul-Henning Kamp 		return;
3167dee34ca4SPoul-Henning Kamp 	}
31689e3e3fe5SWarner Losh 	swapgeom_acquire(cp);
31693398491bSAlexander Motin 	mtx_unlock(&sw_dev_mtx);
317011041003SKonstantin Belousov 	if (bp->b_iocmd == BIO_WRITE)
317111041003SKonstantin Belousov 		bio = g_new_bio();
317211041003SKonstantin Belousov 	else
31734f8205e5SPoul-Henning Kamp 		bio = g_alloc_bio();
31744f8205e5SPoul-Henning Kamp 	if (bio == NULL) {
31759e3e3fe5SWarner Losh 		mtx_lock(&sw_dev_mtx);
31769e3e3fe5SWarner Losh 		swapgeom_release(cp, sp);
31779e3e3fe5SWarner Losh 		mtx_unlock(&sw_dev_mtx);
31783e5b6861SPoul-Henning Kamp 		bp->b_error = ENOMEM;
31793e5b6861SPoul-Henning Kamp 		bp->b_ioflags |= BIO_ERROR;
31800b208315SEdward Tomasz Napierala 		printf("swap_pager: cannot allocate bio\n");
31813e5b6861SPoul-Henning Kamp 		bufdone(bp);
31823e5b6861SPoul-Henning Kamp 		return;
31833e5b6861SPoul-Henning Kamp 	}
318411041003SKonstantin Belousov 
3185756a5412SGleb Smirnoff 	bp->b_caller1 = bio;
31863398491bSAlexander Motin 	bio->bio_caller1 = sp;
3187dee34ca4SPoul-Henning Kamp 	bio->bio_caller2 = bp;
3188c5d3d25eSPoul-Henning Kamp 	bio->bio_cmd = bp->b_iocmd;
3189dee34ca4SPoul-Henning Kamp 	bio->bio_offset = (bp->b_blkno - sp->sw_first) * PAGE_SIZE;
3190dee34ca4SPoul-Henning Kamp 	bio->bio_length = bp->b_bcount;
3191dee34ca4SPoul-Henning Kamp 	bio->bio_done = swapgeom_done;
3192c6213befSGleb Smirnoff 	bio->bio_flags |= BIO_SWAP;
3193fade8dd7SJeff Roberson 	if (!buf_mapped(bp)) {
31942cc718a1SKonstantin Belousov 		bio->bio_ma = bp->b_pages;
31952cc718a1SKonstantin Belousov 		bio->bio_data = unmapped_buf;
31962cc718a1SKonstantin Belousov 		bio->bio_ma_offset = (vm_offset_t)bp->b_offset & PAGE_MASK;
31972cc718a1SKonstantin Belousov 		bio->bio_ma_n = bp->b_npages;
31982cc718a1SKonstantin Belousov 		bio->bio_flags |= BIO_UNMAPPED;
31992cc718a1SKonstantin Belousov 	} else {
32002cc718a1SKonstantin Belousov 		bio->bio_data = bp->b_data;
32012cc718a1SKonstantin Belousov 		bio->bio_ma = NULL;
32022cc718a1SKonstantin Belousov 	}
3203dee34ca4SPoul-Henning Kamp 	g_io_request(bio, cp);
3204dee34ca4SPoul-Henning Kamp 	return;
3205dee34ca4SPoul-Henning Kamp }
3206dee34ca4SPoul-Henning Kamp 
3207dee34ca4SPoul-Henning Kamp static void
swapgeom_orphan(struct g_consumer * cp)3208dee34ca4SPoul-Henning Kamp swapgeom_orphan(struct g_consumer *cp)
3209dee34ca4SPoul-Henning Kamp {
3210dee34ca4SPoul-Henning Kamp 	struct swdevt *sp;
32113398491bSAlexander Motin 	int destroy;
3212dee34ca4SPoul-Henning Kamp 
3213dee34ca4SPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
32143398491bSAlexander Motin 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
32153398491bSAlexander Motin 		if (sp->sw_id == cp) {
32168f12d83aSAlexander Motin 			sp->sw_flags |= SW_CLOSING;
32173398491bSAlexander Motin 			break;
3218dee34ca4SPoul-Henning Kamp 		}
32193398491bSAlexander Motin 	}
32209e3e3fe5SWarner Losh 	/*
32219e3e3fe5SWarner Losh 	 * Drop reference we were created with. Do directly since we're in a
32229e3e3fe5SWarner Losh 	 * special context where we don't have to queue the call to
32239e3e3fe5SWarner Losh 	 * swapgeom_close_ev().
32249e3e3fe5SWarner Losh 	 */
32259e3e3fe5SWarner Losh 	cp->index--;
32263398491bSAlexander Motin 	destroy = ((sp != NULL) && (cp->index == 0));
32273398491bSAlexander Motin 	if (destroy)
32283398491bSAlexander Motin 		sp->sw_id = NULL;
32293398491bSAlexander Motin 	mtx_unlock(&sw_dev_mtx);
32303398491bSAlexander Motin 	if (destroy)
32313398491bSAlexander Motin 		swapgeom_close_ev(cp, 0);
3232dee34ca4SPoul-Henning Kamp }
3233dee34ca4SPoul-Henning Kamp 
3234dee34ca4SPoul-Henning Kamp static void
swapgeom_close(struct thread * td,struct swdevt * sw)3235dee34ca4SPoul-Henning Kamp swapgeom_close(struct thread *td, struct swdevt *sw)
3236dee34ca4SPoul-Henning Kamp {
32373398491bSAlexander Motin 	struct g_consumer *cp;
3238dee34ca4SPoul-Henning Kamp 
32393398491bSAlexander Motin 	mtx_lock(&sw_dev_mtx);
32403398491bSAlexander Motin 	cp = sw->sw_id;
32413398491bSAlexander Motin 	sw->sw_id = NULL;
32423398491bSAlexander Motin 	mtx_unlock(&sw_dev_mtx);
32430c657d22SKonstantin Belousov 
32440c657d22SKonstantin Belousov 	/*
32450c657d22SKonstantin Belousov 	 * swapgeom_close() may be called from the biodone context,
32460c657d22SKonstantin Belousov 	 * where we cannot perform topology changes.  Delegate the
32470c657d22SKonstantin Belousov 	 * work to the events thread.
32480c657d22SKonstantin Belousov 	 */
32493398491bSAlexander Motin 	if (cp != NULL)
32503398491bSAlexander Motin 		g_waitfor_event(swapgeom_close_ev, cp, M_WAITOK, NULL);
3251dee34ca4SPoul-Henning Kamp }
3252dee34ca4SPoul-Henning Kamp 
325388ad2d7bSKonstantin Belousov static int
swapongeom_locked(struct cdev * dev,struct vnode * vp)325488ad2d7bSKonstantin Belousov swapongeom_locked(struct cdev *dev, struct vnode *vp)
3255dee34ca4SPoul-Henning Kamp {
3256dee34ca4SPoul-Henning Kamp 	struct g_provider *pp;
3257dee34ca4SPoul-Henning Kamp 	struct g_consumer *cp;
3258dee34ca4SPoul-Henning Kamp 	static struct g_geom *gp;
3259dee34ca4SPoul-Henning Kamp 	struct swdevt *sp;
3260dee34ca4SPoul-Henning Kamp 	u_long nblks;
3261dee34ca4SPoul-Henning Kamp 	int error;
3262dee34ca4SPoul-Henning Kamp 
326388ad2d7bSKonstantin Belousov 	pp = g_dev_getprovider(dev);
326488ad2d7bSKonstantin Belousov 	if (pp == NULL)
326588ad2d7bSKonstantin Belousov 		return (ENODEV);
3266dee34ca4SPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
3267dee34ca4SPoul-Henning Kamp 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
3268dee34ca4SPoul-Henning Kamp 		cp = sp->sw_id;
3269dee34ca4SPoul-Henning Kamp 		if (cp != NULL && cp->provider == pp) {
3270dee34ca4SPoul-Henning Kamp 			mtx_unlock(&sw_dev_mtx);
327188ad2d7bSKonstantin Belousov 			return (EBUSY);
3272dee34ca4SPoul-Henning Kamp 		}
3273dee34ca4SPoul-Henning Kamp 	}
3274dee34ca4SPoul-Henning Kamp 	mtx_unlock(&sw_dev_mtx);
32755721c9c7SPoul-Henning Kamp 	if (gp == NULL)
327602c62349SJaakko Heinonen 		gp = g_new_geomf(&g_swap_class, "swap");
3277dee34ca4SPoul-Henning Kamp 	cp = g_new_consumer(gp);
32789e3e3fe5SWarner Losh 	cp->index = 1;	/* Number of active I/Os, plus one for being active. */
32799e3e3fe5SWarner Losh 	cp->flags |=  G_CF_DIRECT_SEND | G_CF_DIRECT_RECEIVE;
3280dee34ca4SPoul-Henning Kamp 	g_attach(cp, pp);
3281afeb65e6SPoul-Henning Kamp 	/*
3282afeb65e6SPoul-Henning Kamp 	 * XXX: Every time you think you can improve the margin for
3283afeb65e6SPoul-Henning Kamp 	 * footshooting, somebody depends on the ability to do so:
3284afeb65e6SPoul-Henning Kamp 	 * savecore(8) wants to write to our swapdev so we cannot
3285afeb65e6SPoul-Henning Kamp 	 * set an exclusive count :-(
3286afeb65e6SPoul-Henning Kamp 	 */
3287d2bae332SPoul-Henning Kamp 	error = g_access(cp, 1, 1, 0);
328888ad2d7bSKonstantin Belousov 	if (error != 0) {
3289dee34ca4SPoul-Henning Kamp 		g_detach(cp);
3290dee34ca4SPoul-Henning Kamp 		g_destroy_consumer(cp);
329188ad2d7bSKonstantin Belousov 		return (error);
3292dee34ca4SPoul-Henning Kamp 	}
3293dee34ca4SPoul-Henning Kamp 	nblks = pp->mediasize / DEV_BSIZE;
329488ad2d7bSKonstantin Belousov 	swaponsomething(vp, cp, nblks, swapgeom_strategy,
329588ad2d7bSKonstantin Belousov 	    swapgeom_close, dev2udev(dev),
32962cc718a1SKonstantin Belousov 	    (pp->flags & G_PF_ACCEPT_UNMAPPED) != 0 ? SW_UNMAPPED : 0);
329788ad2d7bSKonstantin Belousov 	return (0);
3298dee34ca4SPoul-Henning Kamp }
3299dee34ca4SPoul-Henning Kamp 
3300dee34ca4SPoul-Henning Kamp static int
swapongeom(struct vnode * vp)330188ad2d7bSKonstantin Belousov swapongeom(struct vnode *vp)
3302dee34ca4SPoul-Henning Kamp {
3303dee34ca4SPoul-Henning Kamp 	int error;
3304dee34ca4SPoul-Henning Kamp 
33056ddf41faSKonstantin Belousov 	ASSERT_VOP_ELOCKED(vp, "swapongeom");
3306abd80ddbSMateusz Guzik 	if (vp->v_type != VCHR || VN_IS_DOOMED(vp)) {
330788ad2d7bSKonstantin Belousov 		error = ENOENT;
330888ad2d7bSKonstantin Belousov 	} else {
330988ad2d7bSKonstantin Belousov 		g_topology_lock();
331088ad2d7bSKonstantin Belousov 		error = swapongeom_locked(vp->v_rdev, vp);
331188ad2d7bSKonstantin Belousov 		g_topology_unlock();
331288ad2d7bSKonstantin Belousov 	}
3313dee34ca4SPoul-Henning Kamp 	return (error);
3314dee34ca4SPoul-Henning Kamp }
3315dee34ca4SPoul-Henning Kamp 
3316dee34ca4SPoul-Henning Kamp /*
3317dee34ca4SPoul-Henning Kamp  * VNODE backend
3318dee34ca4SPoul-Henning Kamp  *
3319dee34ca4SPoul-Henning Kamp  * This is used mainly for network filesystem (read: probably only tested
3320dee34ca4SPoul-Henning Kamp  * with NFS) swapfiles.
3321dee34ca4SPoul-Henning Kamp  *
3322dee34ca4SPoul-Henning Kamp  */
3323dee34ca4SPoul-Henning Kamp 
3324dee34ca4SPoul-Henning Kamp static void
swapdev_strategy(struct buf * bp,struct swdevt * sp)3325dee34ca4SPoul-Henning Kamp swapdev_strategy(struct buf *bp, struct swdevt *sp)
3326dee34ca4SPoul-Henning Kamp {
3327494eb176SPoul-Henning Kamp 	struct vnode *vp2;
3328dee34ca4SPoul-Henning Kamp 
3329dee34ca4SPoul-Henning Kamp 	bp->b_blkno = ctodb(bp->b_blkno - sp->sw_first);
3330dee34ca4SPoul-Henning Kamp 
3331dee34ca4SPoul-Henning Kamp 	vp2 = sp->sw_id;
3332dee34ca4SPoul-Henning Kamp 	vhold(vp2);
3333dee34ca4SPoul-Henning Kamp 	if (bp->b_iocmd == BIO_WRITE) {
3334b19740f4SKonstantin Belousov 		vn_lock(vp2, LK_EXCLUSIVE | LK_RETRY);
33353cfc7651SOlivier Houchard 		if (bp->b_bufobj)
3336494eb176SPoul-Henning Kamp 			bufobj_wdrop(bp->b_bufobj);
3337a76d8f4eSPoul-Henning Kamp 		bufobj_wref(&vp2->v_bufobj);
3338b19740f4SKonstantin Belousov 	} else {
3339b19740f4SKonstantin Belousov 		vn_lock(vp2, LK_SHARED | LK_RETRY);
3340dee34ca4SPoul-Henning Kamp 	}
33413cfc7651SOlivier Houchard 	if (bp->b_bufobj != &vp2->v_bufobj)
33423cfc7651SOlivier Houchard 		bp->b_bufobj = &vp2->v_bufobj;
3343dee34ca4SPoul-Henning Kamp 	bp->b_vp = vp2;
33442c18019fSPoul-Henning Kamp 	bp->b_iooffset = dbtob(bp->b_blkno);
3345b792bebeSPoul-Henning Kamp 	bstrategy(bp);
3346b19740f4SKonstantin Belousov 	VOP_UNLOCK(vp2);
3347dee34ca4SPoul-Henning Kamp }
3348dee34ca4SPoul-Henning Kamp 
3349dee34ca4SPoul-Henning Kamp static void
swapdev_close(struct thread * td,struct swdevt * sp)3350dee34ca4SPoul-Henning Kamp swapdev_close(struct thread *td, struct swdevt *sp)
3351dee34ca4SPoul-Henning Kamp {
3352a6d04f34SKonstantin Belousov 	struct vnode *vp;
3353dee34ca4SPoul-Henning Kamp 
3354a6d04f34SKonstantin Belousov 	vp = sp->sw_vp;
3355a6d04f34SKonstantin Belousov 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3356a6d04f34SKonstantin Belousov 	VOP_CLOSE(vp, FREAD | FWRITE, td->td_ucred, td);
3357a6d04f34SKonstantin Belousov 	vput(vp);
3358dee34ca4SPoul-Henning Kamp }
3359dee34ca4SPoul-Henning Kamp 
3360dee34ca4SPoul-Henning Kamp static int
swaponvp(struct thread * td,struct vnode * vp,u_long nblks)3361dee34ca4SPoul-Henning Kamp swaponvp(struct thread *td, struct vnode *vp, u_long nblks)
3362dee34ca4SPoul-Henning Kamp {
3363dee34ca4SPoul-Henning Kamp 	struct swdevt *sp;
3364dee34ca4SPoul-Henning Kamp 	int error;
3365dee34ca4SPoul-Henning Kamp 
33666ddf41faSKonstantin Belousov 	ASSERT_VOP_ELOCKED(vp, "swaponvp");
3367dee34ca4SPoul-Henning Kamp 	if (nblks == 0)
3368dee34ca4SPoul-Henning Kamp 		return (ENXIO);
3369dee34ca4SPoul-Henning Kamp 	mtx_lock(&sw_dev_mtx);
3370dee34ca4SPoul-Henning Kamp 	TAILQ_FOREACH(sp, &swtailq, sw_list) {
3371dee34ca4SPoul-Henning Kamp 		if (sp->sw_id == vp) {
3372dee34ca4SPoul-Henning Kamp 			mtx_unlock(&sw_dev_mtx);
3373dee34ca4SPoul-Henning Kamp 			return (EBUSY);
3374dee34ca4SPoul-Henning Kamp 		}
3375dee34ca4SPoul-Henning Kamp 	}
3376dee34ca4SPoul-Henning Kamp 	mtx_unlock(&sw_dev_mtx);
3377dee34ca4SPoul-Henning Kamp 
3378dee34ca4SPoul-Henning Kamp #ifdef MAC
337930d239bcSRobert Watson 	error = mac_system_check_swapon(td->td_ucred, vp);
3380dee34ca4SPoul-Henning Kamp 	if (error == 0)
3381dee34ca4SPoul-Henning Kamp #endif
33829e223287SKonstantin Belousov 		error = VOP_OPEN(vp, FREAD | FWRITE, td->td_ucred, td, NULL);
33836ddf41faSKonstantin Belousov 	if (error != 0)
3384dee34ca4SPoul-Henning Kamp 		return (error);
3385dee34ca4SPoul-Henning Kamp 
3386dee34ca4SPoul-Henning Kamp 	swaponsomething(vp, vp, nblks, swapdev_strategy, swapdev_close,
33872cc718a1SKonstantin Belousov 	    NODEV, 0);
3388dee34ca4SPoul-Henning Kamp 	return (0);
3389dee34ca4SPoul-Henning Kamp }
339089c241d1SGleb Smirnoff 
339189c241d1SGleb Smirnoff static int
sysctl_swap_async_max(SYSCTL_HANDLER_ARGS)339289c241d1SGleb Smirnoff sysctl_swap_async_max(SYSCTL_HANDLER_ARGS)
339389c241d1SGleb Smirnoff {
339489c241d1SGleb Smirnoff 	int error, new, n;
339589c241d1SGleb Smirnoff 
339689c241d1SGleb Smirnoff 	new = nsw_wcount_async_max;
339789c241d1SGleb Smirnoff 	error = sysctl_handle_int(oidp, &new, 0, req);
339889c241d1SGleb Smirnoff 	if (error != 0 || req->newptr == NULL)
339989c241d1SGleb Smirnoff 		return (error);
340089c241d1SGleb Smirnoff 
340189c241d1SGleb Smirnoff 	if (new > nswbuf / 2 || new < 1)
340289c241d1SGleb Smirnoff 		return (EINVAL);
340389c241d1SGleb Smirnoff 
3404756a5412SGleb Smirnoff 	mtx_lock(&swbuf_mtx);
340589c241d1SGleb Smirnoff 	while (nsw_wcount_async_max != new) {
340689c241d1SGleb Smirnoff 		/*
340789c241d1SGleb Smirnoff 		 * Adjust difference.  If the current async count is too low,
340889c241d1SGleb Smirnoff 		 * we will need to sqeeze our update slowly in.  Sleep with a
340989c241d1SGleb Smirnoff 		 * higher priority than getpbuf() to finish faster.
341089c241d1SGleb Smirnoff 		 */
341189c241d1SGleb Smirnoff 		n = new - nsw_wcount_async_max;
341289c241d1SGleb Smirnoff 		if (nsw_wcount_async + n >= 0) {
341389c241d1SGleb Smirnoff 			nsw_wcount_async += n;
341489c241d1SGleb Smirnoff 			nsw_wcount_async_max += n;
341589c241d1SGleb Smirnoff 			wakeup(&nsw_wcount_async);
341689c241d1SGleb Smirnoff 		} else {
341789c241d1SGleb Smirnoff 			nsw_wcount_async_max -= nsw_wcount_async;
341889c241d1SGleb Smirnoff 			nsw_wcount_async = 0;
3419756a5412SGleb Smirnoff 			msleep(&nsw_wcount_async, &swbuf_mtx, PSWP,
342089c241d1SGleb Smirnoff 			    "swpsysctl", 0);
342189c241d1SGleb Smirnoff 		}
342289c241d1SGleb Smirnoff 	}
3423756a5412SGleb Smirnoff 	mtx_unlock(&swbuf_mtx);
342489c241d1SGleb Smirnoff 
342589c241d1SGleb Smirnoff 	return (0);
342689c241d1SGleb Smirnoff }
3427fe7bcbafSKyle Evans 
3428fe7bcbafSKyle Evans static void
swap_pager_update_writecount(vm_object_t object,vm_offset_t start,vm_offset_t end)3429fe7bcbafSKyle Evans swap_pager_update_writecount(vm_object_t object, vm_offset_t start,
3430fe7bcbafSKyle Evans     vm_offset_t end)
3431fe7bcbafSKyle Evans {
3432fe7bcbafSKyle Evans 
3433fe7bcbafSKyle Evans 	VM_OBJECT_WLOCK(object);
343463967687SJeff Roberson 	KASSERT((object->flags & OBJ_ANON) == 0,
3435fe7bcbafSKyle Evans 	    ("Splittable object with writecount"));
3436fe7bcbafSKyle Evans 	object->un_pager.swp.writemappings += (vm_ooffset_t)end - start;
3437fe7bcbafSKyle Evans 	VM_OBJECT_WUNLOCK(object);
3438fe7bcbafSKyle Evans }
3439fe7bcbafSKyle Evans 
3440fe7bcbafSKyle Evans static void
swap_pager_release_writecount(vm_object_t object,vm_offset_t start,vm_offset_t end)3441fe7bcbafSKyle Evans swap_pager_release_writecount(vm_object_t object, vm_offset_t start,
3442fe7bcbafSKyle Evans     vm_offset_t end)
3443fe7bcbafSKyle Evans {
3444fe7bcbafSKyle Evans 
3445fe7bcbafSKyle Evans 	VM_OBJECT_WLOCK(object);
344663967687SJeff Roberson 	KASSERT((object->flags & OBJ_ANON) == 0,
3447fe7bcbafSKyle Evans 	    ("Splittable object with writecount"));
34486ada4e8aSKonstantin Belousov 	KASSERT(object->un_pager.swp.writemappings >= (vm_ooffset_t)end - start,
34496ada4e8aSKonstantin Belousov 	    ("swap obj %p writecount %jx dec %jx", object,
34506ada4e8aSKonstantin Belousov 	    (uintmax_t)object->un_pager.swp.writemappings,
34516ada4e8aSKonstantin Belousov 	    (uintmax_t)((vm_ooffset_t)end - start)));
3452fe7bcbafSKyle Evans 	object->un_pager.swp.writemappings -= (vm_ooffset_t)end - start;
3453fe7bcbafSKyle Evans 	VM_OBJECT_WUNLOCK(object);
3454fe7bcbafSKyle Evans }
3455