uvm_pdaemon.c revision 1.117 1 1.117 ad /* $NetBSD: uvm_pdaemon.c,v 1.117 2019/12/21 14:50:34 ad Exp $ */
2 1.1 mrg
3 1.34 chs /*
4 1.1 mrg * Copyright (c) 1997 Charles D. Cranor and Washington University.
5 1.34 chs * Copyright (c) 1991, 1993, The Regents of the University of California.
6 1.1 mrg *
7 1.1 mrg * All rights reserved.
8 1.1 mrg *
9 1.1 mrg * This code is derived from software contributed to Berkeley by
10 1.1 mrg * The Mach Operating System project at Carnegie-Mellon University.
11 1.1 mrg *
12 1.1 mrg * Redistribution and use in source and binary forms, with or without
13 1.1 mrg * modification, are permitted provided that the following conditions
14 1.1 mrg * are met:
15 1.1 mrg * 1. Redistributions of source code must retain the above copyright
16 1.1 mrg * notice, this list of conditions and the following disclaimer.
17 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 mrg * notice, this list of conditions and the following disclaimer in the
19 1.1 mrg * documentation and/or other materials provided with the distribution.
20 1.102 chuck * 3. Neither the name of the University nor the names of its contributors
21 1.1 mrg * may be used to endorse or promote products derived from this software
22 1.1 mrg * without specific prior written permission.
23 1.1 mrg *
24 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.1 mrg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 mrg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 mrg * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.1 mrg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 mrg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 mrg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 mrg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 mrg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 mrg * SUCH DAMAGE.
35 1.1 mrg *
36 1.1 mrg * @(#)vm_pageout.c 8.5 (Berkeley) 2/14/94
37 1.4 mrg * from: Id: uvm_pdaemon.c,v 1.1.2.32 1998/02/06 05:26:30 chs Exp
38 1.1 mrg *
39 1.1 mrg *
40 1.1 mrg * Copyright (c) 1987, 1990 Carnegie-Mellon University.
41 1.1 mrg * All rights reserved.
42 1.34 chs *
43 1.1 mrg * Permission to use, copy, modify and distribute this software and
44 1.1 mrg * its documentation is hereby granted, provided that both the copyright
45 1.1 mrg * notice and this permission notice appear in all copies of the
46 1.1 mrg * software, derivative works or modified versions, and any portions
47 1.1 mrg * thereof, and that both notices appear in supporting documentation.
48 1.34 chs *
49 1.34 chs * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
50 1.34 chs * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
51 1.1 mrg * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
52 1.34 chs *
53 1.1 mrg * Carnegie Mellon requests users of this software to return to
54 1.1 mrg *
55 1.1 mrg * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
56 1.1 mrg * School of Computer Science
57 1.1 mrg * Carnegie Mellon University
58 1.1 mrg * Pittsburgh PA 15213-3890
59 1.1 mrg *
60 1.1 mrg * any improvements or extensions that they make and grant Carnegie the
61 1.1 mrg * rights to redistribute these changes.
62 1.1 mrg */
63 1.1 mrg
64 1.1 mrg /*
65 1.1 mrg * uvm_pdaemon.c: the page daemon
66 1.1 mrg */
67 1.42 lukem
68 1.42 lukem #include <sys/cdefs.h>
69 1.117 ad __KERNEL_RCSID(0, "$NetBSD: uvm_pdaemon.c,v 1.117 2019/12/21 14:50:34 ad Exp $");
70 1.42 lukem
71 1.42 lukem #include "opt_uvmhist.h"
72 1.69 yamt #include "opt_readahead.h"
73 1.1 mrg
74 1.1 mrg #include <sys/param.h>
75 1.1 mrg #include <sys/proc.h>
76 1.1 mrg #include <sys/systm.h>
77 1.1 mrg #include <sys/kernel.h>
78 1.9 pk #include <sys/pool.h>
79 1.24 chs #include <sys/buf.h>
80 1.94 ad #include <sys/module.h>
81 1.96 ad #include <sys/atomic.h>
82 1.110 chs #include <sys/kthread.h>
83 1.1 mrg
84 1.1 mrg #include <uvm/uvm.h>
85 1.77 yamt #include <uvm/uvm_pdpolicy.h>
86 1.1 mrg
87 1.107 matt #ifdef UVMHIST
88 1.107 matt UVMHIST_DEFINE(pdhist);
89 1.107 matt #endif
90 1.107 matt
91 1.1 mrg /*
92 1.45 wiz * UVMPD_NUMDIRTYREACTS is how many dirty pages the pagedaemon will reactivate
93 1.14 chs * in a pass thru the inactive list when swap is full. the value should be
94 1.14 chs * "small"... if it's too large we'll cycle the active pages thru the inactive
95 1.14 chs * queue too quickly to for them to be referenced and avoid being freed.
96 1.14 chs */
97 1.14 chs
98 1.89 ad #define UVMPD_NUMDIRTYREACTS 16
99 1.14 chs
100 1.113 ad #define UVMPD_NUMTRYLOCKOWNER 128
101 1.14 chs
102 1.14 chs /*
103 1.1 mrg * local prototypes
104 1.1 mrg */
105 1.1 mrg
106 1.65 thorpej static void uvmpd_scan(void);
107 1.77 yamt static void uvmpd_scan_queue(void);
108 1.65 thorpej static void uvmpd_tune(void);
109 1.110 chs static void uvmpd_pool_drain_thread(void *);
110 1.110 chs static void uvmpd_pool_drain_wakeup(void);
111 1.1 mrg
112 1.101 pooka static unsigned int uvm_pagedaemon_waiters;
113 1.89 ad
114 1.110 chs /* State for the pool drainer thread */
115 1.117 ad static kmutex_t uvmpd_lock __cacheline_aligned;
116 1.110 chs static kcondvar_t uvmpd_pool_drain_cv;
117 1.110 chs static bool uvmpd_pool_drain_run = false;
118 1.110 chs
119 1.1 mrg /*
120 1.61 chs * XXX hack to avoid hangs when large processes fork.
121 1.61 chs */
122 1.96 ad u_int uvm_extrapages;
123 1.61 chs
124 1.61 chs /*
125 1.1 mrg * uvm_wait: wait (sleep) for the page daemon to free some pages
126 1.1 mrg *
127 1.1 mrg * => should be called with all locks released
128 1.1 mrg * => should _not_ be called by the page daemon (to avoid deadlock)
129 1.1 mrg */
130 1.1 mrg
131 1.19 thorpej void
132 1.65 thorpej uvm_wait(const char *wmsg)
133 1.8 mrg {
134 1.8 mrg int timo = 0;
135 1.89 ad
136 1.111 chs if (uvm.pagedaemon_lwp == NULL)
137 1.111 chs panic("out of memory before the pagedaemon thread exists");
138 1.111 chs
139 1.117 ad mutex_spin_enter(&uvmpd_lock);
140 1.1 mrg
141 1.8 mrg /*
142 1.8 mrg * check for page daemon going to sleep (waiting for itself)
143 1.8 mrg */
144 1.1 mrg
145 1.86 ad if (curlwp == uvm.pagedaemon_lwp && uvmexp.paging == 0) {
146 1.8 mrg /*
147 1.8 mrg * now we have a problem: the pagedaemon wants to go to
148 1.8 mrg * sleep until it frees more memory. but how can it
149 1.8 mrg * free more memory if it is asleep? that is a deadlock.
150 1.8 mrg * we have two options:
151 1.8 mrg * [1] panic now
152 1.8 mrg * [2] put a timeout on the sleep, thus causing the
153 1.8 mrg * pagedaemon to only pause (rather than sleep forever)
154 1.8 mrg *
155 1.8 mrg * note that option [2] will only help us if we get lucky
156 1.8 mrg * and some other process on the system breaks the deadlock
157 1.8 mrg * by exiting or freeing memory (thus allowing the pagedaemon
158 1.8 mrg * to continue). for now we panic if DEBUG is defined,
159 1.8 mrg * otherwise we hope for the best with option [2] (better
160 1.8 mrg * yet, this should never happen in the first place!).
161 1.8 mrg */
162 1.1 mrg
163 1.8 mrg printf("pagedaemon: deadlock detected!\n");
164 1.8 mrg timo = hz >> 3; /* set timeout */
165 1.1 mrg #if defined(DEBUG)
166 1.8 mrg /* DEBUG: panic so we can debug it */
167 1.8 mrg panic("pagedaemon deadlock");
168 1.1 mrg #endif
169 1.8 mrg }
170 1.1 mrg
171 1.89 ad uvm_pagedaemon_waiters++;
172 1.17 thorpej wakeup(&uvm.pagedaemon); /* wake the daemon! */
173 1.117 ad UVM_UNLOCK_AND_WAIT(&uvmexp.free, &uvmpd_lock, false, wmsg, timo);
174 1.1 mrg }
175 1.1 mrg
176 1.77 yamt /*
177 1.77 yamt * uvm_kick_pdaemon: perform checks to determine if we need to
178 1.77 yamt * give the pagedaemon a nudge, and do so if necessary.
179 1.77 yamt */
180 1.77 yamt
181 1.77 yamt void
182 1.77 yamt uvm_kick_pdaemon(void)
183 1.77 yamt {
184 1.117 ad int fpages = uvm_free();
185 1.77 yamt
186 1.117 ad if (fpages + uvmexp.paging < uvmexp.freemin ||
187 1.117 ad (fpages + uvmexp.paging < uvmexp.freetarg &&
188 1.105 para uvmpdpol_needsscan_p()) ||
189 1.105 para uvm_km_va_starved_p()) {
190 1.117 ad mutex_spin_enter(&uvmpd_lock);
191 1.77 yamt wakeup(&uvm.pagedaemon);
192 1.117 ad mutex_spin_exit(&uvmpd_lock);
193 1.77 yamt }
194 1.77 yamt }
195 1.1 mrg
196 1.1 mrg /*
197 1.1 mrg * uvmpd_tune: tune paging parameters
198 1.1 mrg *
199 1.1 mrg * => called when ever memory is added (or removed?) to the system
200 1.1 mrg */
201 1.1 mrg
202 1.65 thorpej static void
203 1.37 chs uvmpd_tune(void)
204 1.8 mrg {
205 1.95 ad int val;
206 1.95 ad
207 1.8 mrg UVMHIST_FUNC("uvmpd_tune"); UVMHIST_CALLED(pdhist);
208 1.1 mrg
209 1.93 ad /*
210 1.93 ad * try to keep 0.5% of available RAM free, but limit to between
211 1.93 ad * 128k and 1024k per-CPU. XXX: what are these values good for?
212 1.93 ad */
213 1.95 ad val = uvmexp.npages / 200;
214 1.95 ad val = MAX(val, (128*1024) >> PAGE_SHIFT);
215 1.95 ad val = MIN(val, (1024*1024) >> PAGE_SHIFT);
216 1.95 ad val *= ncpu;
217 1.23 bjh21
218 1.23 bjh21 /* Make sure there's always a user page free. */
219 1.95 ad if (val < uvmexp.reserve_kernel + 1)
220 1.95 ad val = uvmexp.reserve_kernel + 1;
221 1.95 ad uvmexp.freemin = val;
222 1.95 ad
223 1.96 ad /* Calculate free target. */
224 1.95 ad val = (uvmexp.freemin * 4) / 3;
225 1.95 ad if (val <= uvmexp.freemin)
226 1.95 ad val = uvmexp.freemin + 1;
227 1.96 ad uvmexp.freetarg = val + atomic_swap_uint(&uvm_extrapages, 0);
228 1.61 chs
229 1.8 mrg uvmexp.wiredmax = uvmexp.npages / 3;
230 1.109 pgoyette UVMHIST_LOG(pdhist, "<- done, freemin=%jd, freetarg=%jd, wiredmax=%jd",
231 1.1 mrg uvmexp.freemin, uvmexp.freetarg, uvmexp.wiredmax, 0);
232 1.1 mrg }
233 1.1 mrg
234 1.1 mrg /*
235 1.1 mrg * uvm_pageout: the main loop for the pagedaemon
236 1.1 mrg */
237 1.1 mrg
238 1.8 mrg void
239 1.80 yamt uvm_pageout(void *arg)
240 1.8 mrg {
241 1.110 chs int npages = 0;
242 1.61 chs int extrapages = 0;
243 1.117 ad int fpages;
244 1.98 haad
245 1.8 mrg UVMHIST_FUNC("uvm_pageout"); UVMHIST_CALLED(pdhist);
246 1.24 chs
247 1.8 mrg UVMHIST_LOG(pdhist,"<starting uvm pagedaemon>", 0, 0, 0, 0);
248 1.8 mrg
249 1.117 ad mutex_init(&uvmpd_lock, MUTEX_DEFAULT, IPL_VM);
250 1.117 ad mutex_init(&uvmpd_lock, MUTEX_DEFAULT, IPL_VM);
251 1.110 chs cv_init(&uvmpd_pool_drain_cv, "pooldrain");
252 1.110 chs
253 1.110 chs /* Create the pool drainer kernel thread. */
254 1.110 chs if (kthread_create(PRI_VM, KTHREAD_MPSAFE, NULL,
255 1.110 chs uvmpd_pool_drain_thread, NULL, NULL, "pooldrain"))
256 1.110 chs panic("fork pooldrain");
257 1.110 chs
258 1.8 mrg /*
259 1.8 mrg * ensure correct priority and set paging parameters...
260 1.8 mrg */
261 1.8 mrg
262 1.86 ad uvm.pagedaemon_lwp = curlwp;
263 1.8 mrg npages = uvmexp.npages;
264 1.8 mrg uvmpd_tune();
265 1.8 mrg
266 1.8 mrg /*
267 1.8 mrg * main loop
268 1.8 mrg */
269 1.24 chs
270 1.24 chs for (;;) {
271 1.105 para bool needsscan, needsfree, kmem_va_starved;
272 1.105 para
273 1.105 para kmem_va_starved = uvm_km_va_starved_p();
274 1.24 chs
275 1.117 ad mutex_spin_enter(&uvmpd_lock);
276 1.105 para if ((uvm_pagedaemon_waiters == 0 || uvmexp.paging > 0) &&
277 1.105 para !kmem_va_starved) {
278 1.89 ad UVMHIST_LOG(pdhist," <<SLEEPING>>",0,0,0,0);
279 1.89 ad UVM_UNLOCK_AND_WAIT(&uvm.pagedaemon,
280 1.117 ad &uvmpd_lock, false, "pgdaemon", 0);
281 1.89 ad uvmexp.pdwoke++;
282 1.89 ad UVMHIST_LOG(pdhist," <<WOKE UP>>",0,0,0,0);
283 1.89 ad } else {
284 1.117 ad mutex_spin_exit(&uvmpd_lock);
285 1.89 ad }
286 1.24 chs
287 1.8 mrg /*
288 1.113 ad * now recompute inactive count
289 1.8 mrg */
290 1.8 mrg
291 1.61 chs if (npages != uvmexp.npages || extrapages != uvm_extrapages) {
292 1.24 chs npages = uvmexp.npages;
293 1.61 chs extrapages = uvm_extrapages;
294 1.24 chs uvmpd_tune();
295 1.24 chs }
296 1.24 chs
297 1.77 yamt uvmpdpol_tune();
298 1.24 chs
299 1.60 enami /*
300 1.60 enami * Estimate a hint. Note that bufmem are returned to
301 1.60 enami * system only when entire pool page is empty.
302 1.60 enami */
303 1.117 ad fpages = uvm_free();
304 1.109 pgoyette UVMHIST_LOG(pdhist," free/ftarg=%jd/%jd",
305 1.117 ad fpages, uvmexp.freetarg, 0,0);
306 1.8 mrg
307 1.117 ad needsfree = fpages + uvmexp.paging < uvmexp.freetarg;
308 1.93 ad needsscan = needsfree || uvmpdpol_needsscan_p();
309 1.89 ad
310 1.8 mrg /*
311 1.24 chs * scan if needed
312 1.8 mrg */
313 1.97 ad if (needsscan) {
314 1.24 chs uvmpd_scan();
315 1.97 ad }
316 1.8 mrg
317 1.8 mrg /*
318 1.24 chs * if there's any free memory to be had,
319 1.24 chs * wake up any waiters.
320 1.8 mrg */
321 1.117 ad if (uvm_free() > uvmexp.reserve_kernel || uvmexp.paging == 0) {
322 1.117 ad mutex_spin_enter(&uvmpd_lock);
323 1.24 chs wakeup(&uvmexp.free);
324 1.89 ad uvm_pagedaemon_waiters = 0;
325 1.117 ad mutex_spin_exit(&uvmpd_lock);
326 1.8 mrg }
327 1.1 mrg
328 1.8 mrg /*
329 1.113 ad * scan done. if we don't need free memory, we're done.
330 1.93 ad */
331 1.93 ad
332 1.105 para if (!needsfree && !kmem_va_starved)
333 1.93 ad continue;
334 1.93 ad
335 1.93 ad /*
336 1.110 chs * kick the pool drainer thread.
337 1.38 chs */
338 1.57 jdolecek
339 1.110 chs uvmpd_pool_drain_wakeup();
340 1.24 chs }
341 1.24 chs /*NOTREACHED*/
342 1.24 chs }
343 1.24 chs
344 1.8 mrg
345 1.24 chs /*
346 1.81 yamt * uvm_aiodone_worker: a workqueue callback for the aiodone daemon.
347 1.24 chs */
348 1.8 mrg
349 1.24 chs void
350 1.81 yamt uvm_aiodone_worker(struct work *wk, void *dummy)
351 1.24 chs {
352 1.81 yamt struct buf *bp = (void *)wk;
353 1.9 pk
354 1.81 yamt KASSERT(&bp->b_work == wk);
355 1.8 mrg
356 1.81 yamt /*
357 1.81 yamt * process an i/o that's done.
358 1.81 yamt */
359 1.8 mrg
360 1.81 yamt (*bp->b_iodone)(bp);
361 1.89 ad }
362 1.89 ad
363 1.89 ad void
364 1.89 ad uvm_pageout_start(int npages)
365 1.89 ad {
366 1.89 ad
367 1.113 ad atomic_add_int(&uvmexp.paging, npages);
368 1.89 ad }
369 1.89 ad
370 1.89 ad void
371 1.89 ad uvm_pageout_done(int npages)
372 1.89 ad {
373 1.89 ad
374 1.89 ad KASSERT(uvmexp.paging >= npages);
375 1.113 ad atomic_add_int(&uvmexp.paging, -npages);
376 1.89 ad
377 1.89 ad /*
378 1.89 ad * wake up either of pagedaemon or LWPs waiting for it.
379 1.89 ad */
380 1.89 ad
381 1.117 ad mutex_spin_enter(&uvmpd_lock);
382 1.117 ad if (uvm_free() <= uvmexp.reserve_kernel) {
383 1.81 yamt wakeup(&uvm.pagedaemon);
384 1.117 ad } else if (uvm_pagedaemon_waiters != 0) {
385 1.81 yamt wakeup(&uvmexp.free);
386 1.89 ad uvm_pagedaemon_waiters = 0;
387 1.8 mrg }
388 1.117 ad mutex_spin_exit(&uvmpd_lock);
389 1.1 mrg }
390 1.1 mrg
391 1.76 yamt /*
392 1.76 yamt * uvmpd_trylockowner: trylock the page's owner.
393 1.76 yamt *
394 1.113 ad * => called with page interlock held.
395 1.76 yamt * => resolve orphaned O->A loaned page.
396 1.89 ad * => return the locked mutex on success. otherwise, return NULL.
397 1.76 yamt */
398 1.76 yamt
399 1.89 ad kmutex_t *
400 1.76 yamt uvmpd_trylockowner(struct vm_page *pg)
401 1.76 yamt {
402 1.76 yamt struct uvm_object *uobj = pg->uobject;
403 1.113 ad struct vm_anon *anon = pg->uanon;
404 1.113 ad int tries, count;
405 1.113 ad bool running;
406 1.89 ad kmutex_t *slock;
407 1.89 ad
408 1.113 ad KASSERT(mutex_owned(&pg->interlock));
409 1.76 yamt
410 1.76 yamt if (uobj != NULL) {
411 1.103 rmind slock = uobj->vmobjlock;
412 1.113 ad KASSERTMSG(slock != NULL, "pg %p uobj %p, NULL lock", pg, uobj);
413 1.113 ad } else if (anon != NULL) {
414 1.113 ad slock = anon->an_lock;
415 1.113 ad KASSERTMSG(slock != NULL, "pg %p anon %p, NULL lock", pg, anon);
416 1.76 yamt } else {
417 1.113 ad /* Page may be in state of flux - ignore. */
418 1.113 ad mutex_exit(&pg->interlock);
419 1.113 ad return NULL;
420 1.76 yamt }
421 1.76 yamt
422 1.113 ad /*
423 1.113 ad * Now try to lock the objects. We'll try hard, but don't really
424 1.113 ad * plan on spending more than a millisecond or so here.
425 1.113 ad */
426 1.113 ad tries = (curlwp == uvm.pagedaemon_lwp ? UVMPD_NUMTRYLOCKOWNER : 1);
427 1.113 ad for (;;) {
428 1.113 ad if (mutex_tryenter(slock)) {
429 1.113 ad if (uobj == NULL) {
430 1.113 ad /*
431 1.113 ad * set PG_ANON if it isn't set already.
432 1.113 ad */
433 1.113 ad if ((pg->flags & PG_ANON) == 0) {
434 1.113 ad KASSERT(pg->loan_count > 0);
435 1.113 ad pg->loan_count--;
436 1.113 ad pg->flags |= PG_ANON;
437 1.113 ad /* anon now owns it */
438 1.113 ad }
439 1.113 ad }
440 1.113 ad mutex_exit(&pg->interlock);
441 1.113 ad return slock;
442 1.113 ad }
443 1.113 ad running = mutex_owner_running(slock);
444 1.113 ad if (!running || --tries <= 0) {
445 1.113 ad break;
446 1.113 ad }
447 1.113 ad count = SPINLOCK_BACKOFF_MAX;
448 1.113 ad SPINLOCK_BACKOFF(count);
449 1.76 yamt }
450 1.76 yamt
451 1.113 ad /*
452 1.113 ad * We didn't get the lock; chances are the very next page on the
453 1.113 ad * queue also has the same lock, so if the lock owner is not running
454 1.113 ad * take a breather and allow them to make progress. There could be
455 1.113 ad * only 1 CPU in the system, or the pagedaemon could have preempted
456 1.113 ad * the owner in kernel, or any number of other things could be going
457 1.113 ad * on.
458 1.113 ad */
459 1.113 ad mutex_exit(&pg->interlock);
460 1.113 ad if (curlwp == uvm.pagedaemon_lwp) {
461 1.113 ad if (!running) {
462 1.113 ad (void)kpause("pdpglock", false, 1, NULL);
463 1.76 yamt }
464 1.113 ad uvmexp.pdbusy++;
465 1.76 yamt }
466 1.113 ad return NULL;
467 1.76 yamt }
468 1.76 yamt
469 1.73 yamt #if defined(VMSWAP)
470 1.73 yamt struct swapcluster {
471 1.73 yamt int swc_slot;
472 1.73 yamt int swc_nallocated;
473 1.73 yamt int swc_nused;
474 1.75 yamt struct vm_page *swc_pages[howmany(MAXPHYS, MIN_PAGE_SIZE)];
475 1.73 yamt };
476 1.73 yamt
477 1.73 yamt static void
478 1.73 yamt swapcluster_init(struct swapcluster *swc)
479 1.73 yamt {
480 1.73 yamt
481 1.73 yamt swc->swc_slot = 0;
482 1.89 ad swc->swc_nused = 0;
483 1.73 yamt }
484 1.73 yamt
485 1.73 yamt static int
486 1.73 yamt swapcluster_allocslots(struct swapcluster *swc)
487 1.73 yamt {
488 1.73 yamt int slot;
489 1.73 yamt int npages;
490 1.73 yamt
491 1.73 yamt if (swc->swc_slot != 0) {
492 1.73 yamt return 0;
493 1.73 yamt }
494 1.73 yamt
495 1.73 yamt /* Even with strange MAXPHYS, the shift
496 1.73 yamt implicitly rounds down to a page. */
497 1.73 yamt npages = MAXPHYS >> PAGE_SHIFT;
498 1.84 thorpej slot = uvm_swap_alloc(&npages, true);
499 1.73 yamt if (slot == 0) {
500 1.73 yamt return ENOMEM;
501 1.73 yamt }
502 1.73 yamt swc->swc_slot = slot;
503 1.73 yamt swc->swc_nallocated = npages;
504 1.73 yamt swc->swc_nused = 0;
505 1.73 yamt
506 1.73 yamt return 0;
507 1.73 yamt }
508 1.73 yamt
509 1.73 yamt static int
510 1.73 yamt swapcluster_add(struct swapcluster *swc, struct vm_page *pg)
511 1.73 yamt {
512 1.73 yamt int slot;
513 1.73 yamt struct uvm_object *uobj;
514 1.73 yamt
515 1.73 yamt KASSERT(swc->swc_slot != 0);
516 1.73 yamt KASSERT(swc->swc_nused < swc->swc_nallocated);
517 1.113 ad KASSERT((pg->flags & PG_SWAPBACKED) != 0);
518 1.73 yamt
519 1.73 yamt slot = swc->swc_slot + swc->swc_nused;
520 1.73 yamt uobj = pg->uobject;
521 1.73 yamt if (uobj == NULL) {
522 1.103 rmind KASSERT(mutex_owned(pg->uanon->an_lock));
523 1.73 yamt pg->uanon->an_swslot = slot;
524 1.73 yamt } else {
525 1.73 yamt int result;
526 1.73 yamt
527 1.103 rmind KASSERT(mutex_owned(uobj->vmobjlock));
528 1.73 yamt result = uao_set_swslot(uobj, pg->offset >> PAGE_SHIFT, slot);
529 1.73 yamt if (result == -1) {
530 1.73 yamt return ENOMEM;
531 1.73 yamt }
532 1.73 yamt }
533 1.73 yamt swc->swc_pages[swc->swc_nused] = pg;
534 1.73 yamt swc->swc_nused++;
535 1.73 yamt
536 1.73 yamt return 0;
537 1.73 yamt }
538 1.73 yamt
539 1.73 yamt static void
540 1.83 thorpej swapcluster_flush(struct swapcluster *swc, bool now)
541 1.73 yamt {
542 1.73 yamt int slot;
543 1.73 yamt int nused;
544 1.73 yamt int nallocated;
545 1.108 martin int error __diagused;
546 1.73 yamt
547 1.73 yamt if (swc->swc_slot == 0) {
548 1.73 yamt return;
549 1.73 yamt }
550 1.73 yamt KASSERT(swc->swc_nused <= swc->swc_nallocated);
551 1.73 yamt
552 1.73 yamt slot = swc->swc_slot;
553 1.73 yamt nused = swc->swc_nused;
554 1.73 yamt nallocated = swc->swc_nallocated;
555 1.73 yamt
556 1.73 yamt /*
557 1.73 yamt * if this is the final pageout we could have a few
558 1.73 yamt * unused swap blocks. if so, free them now.
559 1.73 yamt */
560 1.73 yamt
561 1.73 yamt if (nused < nallocated) {
562 1.73 yamt if (!now) {
563 1.73 yamt return;
564 1.73 yamt }
565 1.73 yamt uvm_swap_free(slot + nused, nallocated - nused);
566 1.73 yamt }
567 1.73 yamt
568 1.73 yamt /*
569 1.73 yamt * now start the pageout.
570 1.73 yamt */
571 1.73 yamt
572 1.91 yamt if (nused > 0) {
573 1.91 yamt uvmexp.pdpageouts++;
574 1.91 yamt uvm_pageout_start(nused);
575 1.91 yamt error = uvm_swap_put(slot, swc->swc_pages, nused, 0);
576 1.92 yamt KASSERT(error == 0 || error == ENOMEM);
577 1.91 yamt }
578 1.73 yamt
579 1.73 yamt /*
580 1.73 yamt * zero swslot to indicate that we are
581 1.73 yamt * no longer building a swap-backed cluster.
582 1.73 yamt */
583 1.73 yamt
584 1.73 yamt swc->swc_slot = 0;
585 1.89 ad swc->swc_nused = 0;
586 1.89 ad }
587 1.89 ad
588 1.89 ad static int
589 1.89 ad swapcluster_nused(struct swapcluster *swc)
590 1.89 ad {
591 1.89 ad
592 1.89 ad return swc->swc_nused;
593 1.73 yamt }
594 1.77 yamt
595 1.77 yamt /*
596 1.77 yamt * uvmpd_dropswap: free any swap allocated to this page.
597 1.77 yamt *
598 1.77 yamt * => called with owner locked.
599 1.84 thorpej * => return true if a page had an associated slot.
600 1.77 yamt */
601 1.77 yamt
602 1.83 thorpej static bool
603 1.77 yamt uvmpd_dropswap(struct vm_page *pg)
604 1.77 yamt {
605 1.84 thorpej bool result = false;
606 1.77 yamt struct vm_anon *anon = pg->uanon;
607 1.77 yamt
608 1.113 ad if ((pg->flags & PG_ANON) && anon->an_swslot) {
609 1.77 yamt uvm_swap_free(anon->an_swslot, 1);
610 1.77 yamt anon->an_swslot = 0;
611 1.77 yamt pg->flags &= ~PG_CLEAN;
612 1.84 thorpej result = true;
613 1.113 ad } else if (pg->flags & PG_AOBJ) {
614 1.77 yamt int slot = uao_set_swslot(pg->uobject,
615 1.77 yamt pg->offset >> PAGE_SHIFT, 0);
616 1.77 yamt if (slot) {
617 1.77 yamt uvm_swap_free(slot, 1);
618 1.77 yamt pg->flags &= ~PG_CLEAN;
619 1.84 thorpej result = true;
620 1.77 yamt }
621 1.77 yamt }
622 1.77 yamt
623 1.77 yamt return result;
624 1.77 yamt }
625 1.77 yamt
626 1.77 yamt /*
627 1.77 yamt * uvmpd_trydropswap: try to free any swap allocated to this page.
628 1.77 yamt *
629 1.84 thorpej * => return true if a slot is successfully freed.
630 1.113 ad * => page interlock must be held, and will be dropped.
631 1.77 yamt */
632 1.77 yamt
633 1.83 thorpej bool
634 1.77 yamt uvmpd_trydropswap(struct vm_page *pg)
635 1.77 yamt {
636 1.89 ad kmutex_t *slock;
637 1.83 thorpej bool result;
638 1.77 yamt
639 1.77 yamt if ((pg->flags & PG_BUSY) != 0) {
640 1.113 ad mutex_exit(&pg->interlock);
641 1.84 thorpej return false;
642 1.77 yamt }
643 1.77 yamt
644 1.77 yamt /*
645 1.77 yamt * lock the page's owner.
646 1.113 ad * this will drop pg->interlock.
647 1.77 yamt */
648 1.77 yamt
649 1.77 yamt slock = uvmpd_trylockowner(pg);
650 1.77 yamt if (slock == NULL) {
651 1.84 thorpej return false;
652 1.77 yamt }
653 1.77 yamt
654 1.77 yamt /*
655 1.77 yamt * skip this page if it's busy.
656 1.77 yamt */
657 1.77 yamt
658 1.77 yamt if ((pg->flags & PG_BUSY) != 0) {
659 1.89 ad mutex_exit(slock);
660 1.84 thorpej return false;
661 1.77 yamt }
662 1.77 yamt
663 1.77 yamt result = uvmpd_dropswap(pg);
664 1.77 yamt
665 1.89 ad mutex_exit(slock);
666 1.77 yamt
667 1.77 yamt return result;
668 1.77 yamt }
669 1.77 yamt
670 1.73 yamt #endif /* defined(VMSWAP) */
671 1.73 yamt
672 1.1 mrg /*
673 1.77 yamt * uvmpd_scan_queue: scan an replace candidate list for pages
674 1.77 yamt * to clean or free.
675 1.1 mrg *
676 1.1 mrg * => we work on meeting our free target by converting inactive pages
677 1.1 mrg * into free pages.
678 1.1 mrg * => we handle the building of swap-backed clusters
679 1.1 mrg */
680 1.1 mrg
681 1.65 thorpej static void
682 1.77 yamt uvmpd_scan_queue(void)
683 1.8 mrg {
684 1.77 yamt struct vm_page *p;
685 1.8 mrg struct uvm_object *uobj;
686 1.37 chs struct vm_anon *anon;
687 1.68 yamt #if defined(VMSWAP)
688 1.73 yamt struct swapcluster swc;
689 1.68 yamt #endif /* defined(VMSWAP) */
690 1.77 yamt int dirtyreacts;
691 1.89 ad kmutex_t *slock;
692 1.77 yamt UVMHIST_FUNC("uvmpd_scan_queue"); UVMHIST_CALLED(pdhist);
693 1.1 mrg
694 1.8 mrg /*
695 1.8 mrg * swslot is non-zero if we are building a swap cluster. we want
696 1.24 chs * to stay in the loop while we have a page to scan or we have
697 1.8 mrg * a swap-cluster to build.
698 1.8 mrg */
699 1.24 chs
700 1.73 yamt #if defined(VMSWAP)
701 1.73 yamt swapcluster_init(&swc);
702 1.73 yamt #endif /* defined(VMSWAP) */
703 1.77 yamt
704 1.14 chs dirtyreacts = 0;
705 1.77 yamt uvmpdpol_scaninit();
706 1.43 chs
707 1.77 yamt while (/* CONSTCOND */ 1) {
708 1.24 chs
709 1.73 yamt /*
710 1.73 yamt * see if we've met the free target.
711 1.73 yamt */
712 1.73 yamt
713 1.117 ad if (uvm_free() + uvmexp.paging
714 1.89 ad #if defined(VMSWAP)
715 1.89 ad + swapcluster_nused(&swc)
716 1.89 ad #endif /* defined(VMSWAP) */
717 1.89 ad >= uvmexp.freetarg << 2 ||
718 1.73 yamt dirtyreacts == UVMPD_NUMDIRTYREACTS) {
719 1.73 yamt UVMHIST_LOG(pdhist," met free target: "
720 1.73 yamt "exit loop", 0, 0, 0, 0);
721 1.73 yamt break;
722 1.73 yamt }
723 1.24 chs
724 1.73 yamt /*
725 1.113 ad * first we have the pdpolicy select a victim page
726 1.113 ad * and attempt to lock the object that the page
727 1.73 yamt * belongs to. if our attempt fails we skip on to
728 1.73 yamt * the next page (no harm done). it is important to
729 1.73 yamt * "try" locking the object as we are locking in the
730 1.73 yamt * wrong order (pageq -> object) and we don't want to
731 1.73 yamt * deadlock.
732 1.73 yamt *
733 1.73 yamt * the only time we expect to see an ownerless page
734 1.113 ad * (i.e. a page with no uobject and !PG_ANON) is if an
735 1.73 yamt * anon has loaned a page from a uvm_object and the
736 1.73 yamt * uvm_object has dropped the ownership. in that
737 1.73 yamt * case, the anon can "take over" the loaned page
738 1.73 yamt * and make it its own.
739 1.73 yamt */
740 1.30 chs
741 1.113 ad p = uvmpdpol_selectvictim(&slock);
742 1.113 ad if (p == NULL) {
743 1.113 ad break;
744 1.76 yamt }
745 1.113 ad KASSERT(uvmpdpol_pageisqueued_p(p));
746 1.113 ad KASSERT(uvm_page_locked_p(p));
747 1.113 ad KASSERT(p->wire_count == 0);
748 1.113 ad
749 1.113 ad /*
750 1.113 ad * we are below target and have a new page to consider.
751 1.113 ad */
752 1.113 ad
753 1.113 ad anon = p->uanon;
754 1.113 ad uobj = p->uobject;
755 1.113 ad
756 1.76 yamt if (p->flags & PG_BUSY) {
757 1.89 ad mutex_exit(slock);
758 1.76 yamt uvmexp.pdbusy++;
759 1.76 yamt continue;
760 1.76 yamt }
761 1.76 yamt
762 1.73 yamt /* does the page belong to an object? */
763 1.73 yamt if (uobj != NULL) {
764 1.73 yamt uvmexp.pdobscan++;
765 1.73 yamt } else {
766 1.73 yamt #if defined(VMSWAP)
767 1.73 yamt KASSERT(anon != NULL);
768 1.73 yamt uvmexp.pdanscan++;
769 1.68 yamt #else /* defined(VMSWAP) */
770 1.73 yamt panic("%s: anon", __func__);
771 1.68 yamt #endif /* defined(VMSWAP) */
772 1.73 yamt }
773 1.8 mrg
774 1.37 chs
775 1.73 yamt /*
776 1.113 ad * we now have the object locked.
777 1.73 yamt * if the page is not swap-backed, call the object's
778 1.73 yamt * pager to flush and free the page.
779 1.73 yamt */
780 1.37 chs
781 1.69 yamt #if defined(READAHEAD_STATS)
782 1.113 ad if ((p->flags & PG_READAHEAD) != 0) {
783 1.113 ad p->flags &= ~PG_READAHEAD;
784 1.73 yamt uvm_ra_miss.ev_count++;
785 1.73 yamt }
786 1.69 yamt #endif /* defined(READAHEAD_STATS) */
787 1.69 yamt
788 1.113 ad if ((p->flags & PG_SWAPBACKED) == 0) {
789 1.82 alc KASSERT(uobj != NULL);
790 1.73 yamt (void) (uobj->pgops->pgo_put)(uobj, p->offset,
791 1.73 yamt p->offset + PAGE_SIZE, PGO_CLEANIT|PGO_FREE);
792 1.73 yamt continue;
793 1.73 yamt }
794 1.37 chs
795 1.73 yamt /*
796 1.73 yamt * the page is swap-backed. remove all the permissions
797 1.73 yamt * from the page so we can sync the modified info
798 1.73 yamt * without any race conditions. if the page is clean
799 1.73 yamt * we can free it now and continue.
800 1.73 yamt */
801 1.8 mrg
802 1.73 yamt pmap_page_protect(p, VM_PROT_NONE);
803 1.73 yamt if ((p->flags & PG_CLEAN) && pmap_clear_modify(p)) {
804 1.73 yamt p->flags &= ~(PG_CLEAN);
805 1.73 yamt }
806 1.73 yamt if (p->flags & PG_CLEAN) {
807 1.73 yamt int slot;
808 1.73 yamt int pageidx;
809 1.73 yamt
810 1.73 yamt pageidx = p->offset >> PAGE_SHIFT;
811 1.73 yamt uvm_pagefree(p);
812 1.113 ad atomic_inc_uint(&uvmexp.pdfreed);
813 1.8 mrg
814 1.8 mrg /*
815 1.73 yamt * for anons, we need to remove the page
816 1.73 yamt * from the anon ourselves. for aobjs,
817 1.73 yamt * pagefree did that for us.
818 1.8 mrg */
819 1.24 chs
820 1.73 yamt if (anon) {
821 1.73 yamt KASSERT(anon->an_swslot != 0);
822 1.73 yamt anon->an_page = NULL;
823 1.73 yamt slot = anon->an_swslot;
824 1.73 yamt } else {
825 1.73 yamt slot = uao_find_swslot(uobj, pageidx);
826 1.8 mrg }
827 1.73 yamt if (slot > 0) {
828 1.73 yamt /* this page is now only in swap. */
829 1.73 yamt KASSERT(uvmexp.swpgonly < uvmexp.swpginuse);
830 1.112 ad atomic_inc_uint(&uvmexp.swpgonly);
831 1.37 chs }
832 1.112 ad mutex_exit(slock);
833 1.73 yamt continue;
834 1.73 yamt }
835 1.37 chs
836 1.77 yamt #if defined(VMSWAP)
837 1.73 yamt /*
838 1.73 yamt * this page is dirty, skip it if we'll have met our
839 1.73 yamt * free target when all the current pageouts complete.
840 1.73 yamt */
841 1.24 chs
842 1.117 ad if (uvm_free() + uvmexp.paging > uvmexp.freetarg << 2) {
843 1.89 ad mutex_exit(slock);
844 1.73 yamt continue;
845 1.73 yamt }
846 1.14 chs
847 1.73 yamt /*
848 1.73 yamt * free any swap space allocated to the page since
849 1.73 yamt * we'll have to write it again with its new data.
850 1.73 yamt */
851 1.24 chs
852 1.77 yamt uvmpd_dropswap(p);
853 1.14 chs
854 1.73 yamt /*
855 1.97 ad * start new swap pageout cluster (if necessary).
856 1.97 ad *
857 1.97 ad * if swap is full reactivate this page so that
858 1.97 ad * we eventually cycle all pages through the
859 1.97 ad * inactive queue.
860 1.73 yamt */
861 1.68 yamt
862 1.97 ad if (swapcluster_allocslots(&swc)) {
863 1.73 yamt dirtyreacts++;
864 1.73 yamt uvm_pageactivate(p);
865 1.89 ad mutex_exit(slock);
866 1.73 yamt continue;
867 1.8 mrg }
868 1.8 mrg
869 1.8 mrg /*
870 1.73 yamt * at this point, we're definitely going reuse this
871 1.73 yamt * page. mark the page busy and delayed-free.
872 1.73 yamt * we should remove the page from the page queues
873 1.73 yamt * so we don't ever look at it again.
874 1.73 yamt * adjust counters and such.
875 1.8 mrg */
876 1.8 mrg
877 1.73 yamt p->flags |= PG_BUSY;
878 1.77 yamt UVM_PAGE_OWN(p, "scan_queue");
879 1.113 ad p->flags |= PG_PAGEOUT;
880 1.113 ad uvmexp.pgswapout++;
881 1.73 yamt
882 1.73 yamt uvm_pagedequeue(p);
883 1.73 yamt
884 1.8 mrg /*
885 1.73 yamt * add the new page to the cluster.
886 1.8 mrg */
887 1.8 mrg
888 1.73 yamt if (swapcluster_add(&swc, p)) {
889 1.73 yamt p->flags &= ~(PG_BUSY|PG_PAGEOUT);
890 1.73 yamt UVM_PAGE_OWN(p, NULL);
891 1.77 yamt dirtyreacts++;
892 1.73 yamt uvm_pageactivate(p);
893 1.89 ad mutex_exit(slock);
894 1.73 yamt continue;
895 1.73 yamt }
896 1.89 ad mutex_exit(slock);
897 1.73 yamt
898 1.115 ad swapcluster_flush(&swc, false);
899 1.115 ad
900 1.8 mrg /*
901 1.115 ad * the pageout is in progress. bump counters and set up
902 1.31 chs * for the next loop.
903 1.8 mrg */
904 1.8 mrg
905 1.115 ad atomic_inc_uint(&uvmexp.pdpending);
906 1.77 yamt
907 1.77 yamt #else /* defined(VMSWAP) */
908 1.77 yamt uvm_pageactivate(p);
909 1.89 ad mutex_exit(slock);
910 1.77 yamt #endif /* defined(VMSWAP) */
911 1.73 yamt }
912 1.73 yamt
913 1.73 yamt #if defined(VMSWAP)
914 1.84 thorpej swapcluster_flush(&swc, true);
915 1.68 yamt #endif /* defined(VMSWAP) */
916 1.1 mrg }
917 1.1 mrg
918 1.1 mrg /*
919 1.1 mrg * uvmpd_scan: scan the page queues and attempt to meet our targets.
920 1.1 mrg */
921 1.1 mrg
922 1.65 thorpej static void
923 1.37 chs uvmpd_scan(void)
924 1.1 mrg {
925 1.117 ad int swap_shortage, pages_freed, fpages;
926 1.8 mrg UVMHIST_FUNC("uvmpd_scan"); UVMHIST_CALLED(pdhist);
927 1.1 mrg
928 1.37 chs uvmexp.pdrevs++;
929 1.1 mrg
930 1.8 mrg /*
931 1.93 ad * work on meeting our targets. first we work on our free target
932 1.93 ad * by converting inactive pages into free pages. then we work on
933 1.93 ad * meeting our inactive target by converting active pages to
934 1.93 ad * inactive ones.
935 1.8 mrg */
936 1.8 mrg
937 1.8 mrg UVMHIST_LOG(pdhist, " starting 'free' loop",0,0,0,0);
938 1.8 mrg
939 1.14 chs pages_freed = uvmexp.pdfreed;
940 1.77 yamt uvmpd_scan_queue();
941 1.14 chs pages_freed = uvmexp.pdfreed - pages_freed;
942 1.8 mrg
943 1.8 mrg /*
944 1.14 chs * detect if we're not going to be able to page anything out
945 1.14 chs * until we free some swap resources from active pages.
946 1.14 chs */
947 1.24 chs
948 1.14 chs swap_shortage = 0;
949 1.117 ad fpages = uvm_free();
950 1.117 ad if (fpages < uvmexp.freetarg &&
951 1.52 pk uvmexp.swpginuse >= uvmexp.swpgavail &&
952 1.52 pk !uvm_swapisfull() &&
953 1.14 chs pages_freed == 0) {
954 1.117 ad swap_shortage = uvmexp.freetarg - fpages;
955 1.14 chs }
956 1.24 chs
957 1.77 yamt uvmpdpol_balancequeue(swap_shortage);
958 1.93 ad
959 1.93 ad /*
960 1.94 ad * if still below the minimum target, try unloading kernel
961 1.94 ad * modules.
962 1.94 ad */
963 1.93 ad
964 1.117 ad if (uvm_free() < uvmexp.freemin) {
965 1.94 ad module_thread_kick();
966 1.93 ad }
967 1.1 mrg }
968 1.62 yamt
969 1.62 yamt /*
970 1.62 yamt * uvm_reclaimable: decide whether to wait for pagedaemon.
971 1.62 yamt *
972 1.84 thorpej * => return true if it seems to be worth to do uvm_wait.
973 1.62 yamt *
974 1.62 yamt * XXX should be tunable.
975 1.62 yamt * XXX should consider pools, etc?
976 1.62 yamt */
977 1.62 yamt
978 1.83 thorpej bool
979 1.62 yamt uvm_reclaimable(void)
980 1.62 yamt {
981 1.62 yamt int filepages;
982 1.77 yamt int active, inactive;
983 1.62 yamt
984 1.62 yamt /*
985 1.62 yamt * if swap is not full, no problem.
986 1.62 yamt */
987 1.62 yamt
988 1.62 yamt if (!uvm_swapisfull()) {
989 1.84 thorpej return true;
990 1.62 yamt }
991 1.62 yamt
992 1.62 yamt /*
993 1.62 yamt * file-backed pages can be reclaimed even when swap is full.
994 1.62 yamt * if we have more than 1/16 of pageable memory or 5MB, try to reclaim.
995 1.62 yamt *
996 1.62 yamt * XXX assume the worst case, ie. all wired pages are file-backed.
997 1.63 yamt *
998 1.63 yamt * XXX should consider about other reclaimable memory.
999 1.63 yamt * XXX ie. pools, traditional buffer cache.
1000 1.62 yamt */
1001 1.62 yamt
1002 1.116 ad cpu_count_sync_all();
1003 1.116 ad filepages = (int)cpu_count_get(CPU_COUNT_FILEPAGES) +
1004 1.116 ad (int)cpu_count_get(CPU_COUNT_EXECPAGES) - uvmexp.wired;
1005 1.77 yamt uvm_estimatepageable(&active, &inactive);
1006 1.77 yamt if (filepages >= MIN((active + inactive) >> 4,
1007 1.62 yamt 5 * 1024 * 1024 >> PAGE_SHIFT)) {
1008 1.84 thorpej return true;
1009 1.62 yamt }
1010 1.62 yamt
1011 1.62 yamt /*
1012 1.62 yamt * kill the process, fail allocation, etc..
1013 1.62 yamt */
1014 1.62 yamt
1015 1.84 thorpej return false;
1016 1.62 yamt }
1017 1.77 yamt
1018 1.77 yamt void
1019 1.77 yamt uvm_estimatepageable(int *active, int *inactive)
1020 1.77 yamt {
1021 1.77 yamt
1022 1.77 yamt uvmpdpol_estimatepageable(active, inactive);
1023 1.77 yamt }
1024 1.98 haad
1025 1.110 chs
1026 1.110 chs /*
1027 1.110 chs * Use a separate thread for draining pools.
1028 1.110 chs * This work can't done from the main pagedaemon thread because
1029 1.110 chs * some pool allocators need to take vm_map locks.
1030 1.110 chs */
1031 1.110 chs
1032 1.110 chs static void
1033 1.110 chs uvmpd_pool_drain_thread(void *arg)
1034 1.110 chs {
1035 1.110 chs int bufcnt;
1036 1.110 chs
1037 1.110 chs for (;;) {
1038 1.117 ad mutex_enter(&uvmpd_lock);
1039 1.110 chs if (!uvmpd_pool_drain_run) {
1040 1.117 ad cv_wait(&uvmpd_pool_drain_cv, &uvmpd_lock);
1041 1.110 chs }
1042 1.110 chs uvmpd_pool_drain_run = false;
1043 1.117 ad mutex_exit(&uvmpd_lock);
1044 1.110 chs
1045 1.110 chs /*
1046 1.110 chs * kill unused metadata buffers.
1047 1.110 chs */
1048 1.117 ad bufcnt = uvmexp.freetarg - uvm_free();
1049 1.110 chs if (bufcnt < 0)
1050 1.110 chs bufcnt = 0;
1051 1.110 chs
1052 1.110 chs mutex_enter(&bufcache_lock);
1053 1.110 chs buf_drain(bufcnt << PAGE_SHIFT);
1054 1.110 chs mutex_exit(&bufcache_lock);
1055 1.110 chs
1056 1.110 chs /*
1057 1.110 chs * drain a pool.
1058 1.110 chs */
1059 1.110 chs pool_drain(NULL);
1060 1.110 chs }
1061 1.110 chs /*NOTREACHED*/
1062 1.110 chs }
1063 1.110 chs
1064 1.110 chs static void
1065 1.110 chs uvmpd_pool_drain_wakeup(void)
1066 1.110 chs {
1067 1.110 chs
1068 1.117 ad mutex_enter(&uvmpd_lock);
1069 1.110 chs uvmpd_pool_drain_run = true;
1070 1.110 chs cv_signal(&uvmpd_pool_drain_cv);
1071 1.117 ad mutex_exit(&uvmpd_lock);
1072 1.110 chs }
1073