1 /*-
2 * SPDX-License-Identifier: (BSD-4-Clause AND MIT-CMU)
3 *
4 * Copyright (c) 1991 Regents of the University of California.
5 * All rights reserved.
6 * Copyright (c) 1994 John S. Dyson
7 * All rights reserved.
8 * Copyright (c) 1994 David Greenman
9 * All rights reserved.
10 * Copyright (c) 2005 Yahoo! Technologies Norway AS
11 * All rights reserved.
12 *
13 * This code is derived from software contributed to Berkeley by
14 * The Mach Operating System project at Carnegie-Mellon University.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 3. All advertising materials mentioning features or use of this software
25 * must display the following acknowledgement:
26 * This product includes software developed by the University of
27 * California, Berkeley and its contributors.
28 * 4. Neither the name of the University nor the names of its contributors
29 * may be used to endorse or promote products derived from this software
30 * without specific prior written permission.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * SUCH DAMAGE.
43 *
44 * from: @(#)vm_pageout.c 7.4 (Berkeley) 5/7/91
45 *
46 *
47 * Copyright (c) 1987, 1990 Carnegie-Mellon University.
48 * All rights reserved.
49 *
50 * Authors: Avadis Tevanian, Jr., Michael Wayne Young
51 *
52 * Permission to use, copy, modify and distribute this software and
53 * its documentation is hereby granted, provided that both the copyright
54 * notice and this permission notice appear in all copies of the
55 * software, derivative works or modified versions, and any portions
56 * thereof, and that both notices appear in supporting documentation.
57 *
58 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
59 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
60 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
61 *
62 * Carnegie Mellon requests users of this software to return to
63 *
64 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
65 * School of Computer Science
66 * Carnegie Mellon University
67 * Pittsburgh PA 15213-3890
68 *
69 * any improvements or extensions that they make and grant Carnegie the
70 * rights to redistribute these changes.
71 */
72
73 /*
74 * The proverbial page-out daemon.
75 */
76
77 #include <sys/cdefs.h>
78 #include "opt_vm.h"
79
80 #include <sys/param.h>
81 #include <sys/systm.h>
82 #include <sys/kernel.h>
83 #include <sys/blockcount.h>
84 #include <sys/eventhandler.h>
85 #include <sys/lock.h>
86 #include <sys/mutex.h>
87 #include <sys/proc.h>
88 #include <sys/kthread.h>
89 #include <sys/ktr.h>
90 #include <sys/mount.h>
91 #include <sys/racct.h>
92 #include <sys/resourcevar.h>
93 #include <sys/sched.h>
94 #include <sys/sdt.h>
95 #include <sys/signalvar.h>
96 #include <sys/smp.h>
97 #include <sys/time.h>
98 #include <sys/vnode.h>
99 #include <sys/vmmeter.h>
100 #include <sys/rwlock.h>
101 #include <sys/sx.h>
102 #include <sys/sysctl.h>
103
104 #include <vm/vm.h>
105 #include <vm/vm_param.h>
106 #include <vm/vm_object.h>
107 #include <vm/vm_page.h>
108 #include <vm/vm_map.h>
109 #include <vm/vm_pageout.h>
110 #include <vm/vm_pager.h>
111 #include <vm/vm_phys.h>
112 #include <vm/vm_pagequeue.h>
113 #include <vm/swap_pager.h>
114 #include <vm/vm_extern.h>
115 #include <vm/uma.h>
116
117 /*
118 * System initialization
119 */
120
121 /* the kernel process "vm_pageout"*/
122 static void vm_pageout(void);
123 static void vm_pageout_init(void);
124 static int vm_pageout_clean(vm_page_t m, int *numpagedout);
125 static int vm_pageout_cluster(vm_page_t m);
126 static void vm_pageout_mightbe_oom(struct vm_domain *vmd, int page_shortage,
127 int starting_page_shortage);
128
129 SYSINIT(pagedaemon_init, SI_SUB_KTHREAD_PAGE, SI_ORDER_FIRST, vm_pageout_init,
130 NULL);
131
132 struct proc *pageproc;
133
134 static struct kproc_desc page_kp = {
135 "pagedaemon",
136 vm_pageout,
137 &pageproc
138 };
139 SYSINIT(pagedaemon, SI_SUB_KTHREAD_PAGE, SI_ORDER_SECOND, kproc_start,
140 &page_kp);
141
142 SDT_PROVIDER_DEFINE(vm);
143 SDT_PROBE_DEFINE(vm, , , vm__lowmem_scan);
144
145 /* Pagedaemon activity rates, in subdivisions of one second. */
146 #define VM_LAUNDER_RATE 10
147 #define VM_INACT_SCAN_RATE 10
148
149 static int swapdev_enabled;
150 int vm_pageout_page_count = 32;
151
152 static int vm_panic_on_oom = 0;
153 SYSCTL_INT(_vm, OID_AUTO, panic_on_oom,
154 CTLFLAG_RWTUN, &vm_panic_on_oom, 0,
155 "Panic on the given number of out-of-memory errors instead of "
156 "killing the largest process");
157
158 static int vm_pageout_update_period;
159 SYSCTL_INT(_vm, OID_AUTO, pageout_update_period,
160 CTLFLAG_RWTUN, &vm_pageout_update_period, 0,
161 "Maximum active LRU update period");
162
163 static int pageout_cpus_per_thread = 16;
164 SYSCTL_INT(_vm, OID_AUTO, pageout_cpus_per_thread, CTLFLAG_RDTUN,
165 &pageout_cpus_per_thread, 0,
166 "Number of CPUs per pagedaemon worker thread");
167
168 static int lowmem_period = 10;
169 SYSCTL_INT(_vm, OID_AUTO, lowmem_period, CTLFLAG_RWTUN, &lowmem_period, 0,
170 "Low memory callback period");
171
172 static int disable_swap_pageouts;
173 SYSCTL_INT(_vm, OID_AUTO, disable_swapspace_pageouts,
174 CTLFLAG_RWTUN, &disable_swap_pageouts, 0,
175 "Disallow swapout of dirty pages");
176
177 static int pageout_lock_miss;
178 SYSCTL_INT(_vm, OID_AUTO, pageout_lock_miss,
179 CTLFLAG_RD, &pageout_lock_miss, 0,
180 "vget() lock misses during pageout");
181
182 static int vm_pageout_oom_seq = 12;
183 SYSCTL_INT(_vm, OID_AUTO, pageout_oom_seq,
184 CTLFLAG_RWTUN, &vm_pageout_oom_seq, 0,
185 "back-to-back calls to oom detector to start OOM");
186
187 static int act_scan_laundry_weight = 3;
188
189 static int
sysctl_act_scan_laundry_weight(SYSCTL_HANDLER_ARGS)190 sysctl_act_scan_laundry_weight(SYSCTL_HANDLER_ARGS)
191 {
192 int error, newval;
193
194 newval = act_scan_laundry_weight;
195 error = sysctl_handle_int(oidp, &newval, 0, req);
196 if (error || req->newptr == NULL)
197 return (error);
198 if (newval < 1)
199 return (EINVAL);
200 act_scan_laundry_weight = newval;
201 return (0);
202 }
203 SYSCTL_PROC(_vm, OID_AUTO, act_scan_laundry_weight, CTLFLAG_RWTUN | CTLTYPE_INT,
204 &act_scan_laundry_weight, 0, sysctl_act_scan_laundry_weight, "I",
205 "weight given to clean vs. dirty pages in active queue scans");
206
207 static u_int vm_background_launder_rate = 4096;
208 SYSCTL_UINT(_vm, OID_AUTO, background_launder_rate, CTLFLAG_RWTUN,
209 &vm_background_launder_rate, 0,
210 "background laundering rate, in kilobytes per second");
211
212 static u_int vm_background_launder_max = 20 * 1024;
213 SYSCTL_UINT(_vm, OID_AUTO, background_launder_max, CTLFLAG_RWTUN,
214 &vm_background_launder_max, 0,
215 "background laundering cap, in kilobytes");
216
217 u_long vm_page_max_user_wired;
218 SYSCTL_ULONG(_vm, OID_AUTO, max_user_wired, CTLFLAG_RW,
219 &vm_page_max_user_wired, 0,
220 "system-wide limit to user-wired page count");
221
222 static u_int isqrt(u_int num);
223 static int vm_pageout_launder(struct vm_domain *vmd, int launder,
224 bool in_shortfall);
225 static void vm_pageout_laundry_worker(void *arg);
226
227 struct scan_state {
228 struct vm_batchqueue bq;
229 struct vm_pagequeue *pq;
230 vm_page_t marker;
231 int maxscan;
232 int scanned;
233 };
234
235 static void
vm_pageout_init_scan(struct scan_state * ss,struct vm_pagequeue * pq,vm_page_t marker,vm_page_t after,int maxscan)236 vm_pageout_init_scan(struct scan_state *ss, struct vm_pagequeue *pq,
237 vm_page_t marker, vm_page_t after, int maxscan)
238 {
239
240 vm_pagequeue_assert_locked(pq);
241 KASSERT((marker->a.flags & PGA_ENQUEUED) == 0,
242 ("marker %p already enqueued", marker));
243
244 if (after == NULL)
245 TAILQ_INSERT_HEAD(&pq->pq_pl, marker, plinks.q);
246 else
247 TAILQ_INSERT_AFTER(&pq->pq_pl, after, marker, plinks.q);
248 vm_page_aflag_set(marker, PGA_ENQUEUED);
249
250 vm_batchqueue_init(&ss->bq);
251 ss->pq = pq;
252 ss->marker = marker;
253 ss->maxscan = maxscan;
254 ss->scanned = 0;
255 vm_pagequeue_unlock(pq);
256 }
257
258 static void
vm_pageout_end_scan(struct scan_state * ss)259 vm_pageout_end_scan(struct scan_state *ss)
260 {
261 struct vm_pagequeue *pq;
262
263 pq = ss->pq;
264 vm_pagequeue_assert_locked(pq);
265 KASSERT((ss->marker->a.flags & PGA_ENQUEUED) != 0,
266 ("marker %p not enqueued", ss->marker));
267
268 TAILQ_REMOVE(&pq->pq_pl, ss->marker, plinks.q);
269 vm_page_aflag_clear(ss->marker, PGA_ENQUEUED);
270 pq->pq_pdpages += ss->scanned;
271 }
272
273 /*
274 * Add a small number of queued pages to a batch queue for later processing
275 * without the corresponding queue lock held. The caller must have enqueued a
276 * marker page at the desired start point for the scan. Pages will be
277 * physically dequeued if the caller so requests. Otherwise, the returned
278 * batch may contain marker pages, and it is up to the caller to handle them.
279 *
280 * When processing the batch queue, vm_pageout_defer() must be used to
281 * determine whether the page has been logically dequeued since the batch was
282 * collected.
283 */
284 static __always_inline void
vm_pageout_collect_batch(struct scan_state * ss,const bool dequeue)285 vm_pageout_collect_batch(struct scan_state *ss, const bool dequeue)
286 {
287 struct vm_pagequeue *pq;
288 vm_page_t m, marker, n;
289
290 marker = ss->marker;
291 pq = ss->pq;
292
293 KASSERT((marker->a.flags & PGA_ENQUEUED) != 0,
294 ("marker %p not enqueued", ss->marker));
295
296 vm_pagequeue_lock(pq);
297 for (m = TAILQ_NEXT(marker, plinks.q); m != NULL &&
298 ss->scanned < ss->maxscan && ss->bq.bq_cnt < VM_BATCHQUEUE_SIZE;
299 m = n, ss->scanned++) {
300 n = TAILQ_NEXT(m, plinks.q);
301 if ((m->flags & PG_MARKER) == 0) {
302 KASSERT((m->a.flags & PGA_ENQUEUED) != 0,
303 ("page %p not enqueued", m));
304 KASSERT((m->flags & PG_FICTITIOUS) == 0,
305 ("Fictitious page %p cannot be in page queue", m));
306 KASSERT((m->oflags & VPO_UNMANAGED) == 0,
307 ("Unmanaged page %p cannot be in page queue", m));
308 } else if (dequeue)
309 continue;
310
311 (void)vm_batchqueue_insert(&ss->bq, m);
312 if (dequeue) {
313 TAILQ_REMOVE(&pq->pq_pl, m, plinks.q);
314 vm_page_aflag_clear(m, PGA_ENQUEUED);
315 }
316 }
317 TAILQ_REMOVE(&pq->pq_pl, marker, plinks.q);
318 if (__predict_true(m != NULL))
319 TAILQ_INSERT_BEFORE(m, marker, plinks.q);
320 else
321 TAILQ_INSERT_TAIL(&pq->pq_pl, marker, plinks.q);
322 if (dequeue)
323 vm_pagequeue_cnt_add(pq, -ss->bq.bq_cnt);
324 vm_pagequeue_unlock(pq);
325 }
326
327 /*
328 * Return the next page to be scanned, or NULL if the scan is complete.
329 */
330 static __always_inline vm_page_t
vm_pageout_next(struct scan_state * ss,const bool dequeue)331 vm_pageout_next(struct scan_state *ss, const bool dequeue)
332 {
333
334 if (ss->bq.bq_cnt == 0)
335 vm_pageout_collect_batch(ss, dequeue);
336 return (vm_batchqueue_pop(&ss->bq));
337 }
338
339 /*
340 * Determine whether processing of a page should be deferred and ensure that any
341 * outstanding queue operations are processed.
342 */
343 static __always_inline bool
vm_pageout_defer(vm_page_t m,const uint8_t queue,const bool enqueued)344 vm_pageout_defer(vm_page_t m, const uint8_t queue, const bool enqueued)
345 {
346 vm_page_astate_t as;
347
348 as = vm_page_astate_load(m);
349 if (__predict_false(as.queue != queue ||
350 ((as.flags & PGA_ENQUEUED) != 0) != enqueued))
351 return (true);
352 if ((as.flags & PGA_QUEUE_OP_MASK) != 0) {
353 vm_page_pqbatch_submit(m, queue);
354 return (true);
355 }
356 return (false);
357 }
358
359 /*
360 * Scan for pages at adjacent offsets within the given page's object that are
361 * eligible for laundering, form a cluster of these pages and the given page,
362 * and launder that cluster.
363 */
364 static int
vm_pageout_cluster(vm_page_t m)365 vm_pageout_cluster(vm_page_t m)
366 {
367 vm_object_t object;
368 vm_page_t mc[2 * vm_pageout_page_count], p, pb, ps;
369 vm_pindex_t pindex;
370 int ib, is, page_base, pageout_count;
371
372 object = m->object;
373 VM_OBJECT_ASSERT_WLOCKED(object);
374 pindex = m->pindex;
375
376 vm_page_assert_xbusied(m);
377
378 mc[vm_pageout_page_count] = pb = ps = m;
379 pageout_count = 1;
380 page_base = vm_pageout_page_count;
381 ib = 1;
382 is = 1;
383
384 /*
385 * We can cluster only if the page is not clean, busy, or held, and
386 * the page is in the laundry queue.
387 *
388 * During heavy mmap/modification loads the pageout
389 * daemon can really fragment the underlying file
390 * due to flushing pages out of order and not trying to
391 * align the clusters (which leaves sporadic out-of-order
392 * holes). To solve this problem we do the reverse scan
393 * first and attempt to align our cluster, then do a
394 * forward scan if room remains.
395 */
396 more:
397 while (ib != 0 && pageout_count < vm_pageout_page_count) {
398 if (ib > pindex) {
399 ib = 0;
400 break;
401 }
402 if ((p = vm_page_prev(pb)) == NULL ||
403 vm_page_tryxbusy(p) == 0) {
404 ib = 0;
405 break;
406 }
407 if (vm_page_wired(p)) {
408 ib = 0;
409 vm_page_xunbusy(p);
410 break;
411 }
412 vm_page_test_dirty(p);
413 if (p->dirty == 0) {
414 ib = 0;
415 vm_page_xunbusy(p);
416 break;
417 }
418 if (!vm_page_in_laundry(p) || !vm_page_try_remove_write(p)) {
419 vm_page_xunbusy(p);
420 ib = 0;
421 break;
422 }
423 mc[--page_base] = pb = p;
424 ++pageout_count;
425 ++ib;
426
427 /*
428 * We are at an alignment boundary. Stop here, and switch
429 * directions. Do not clear ib.
430 */
431 if ((pindex - (ib - 1)) % vm_pageout_page_count == 0)
432 break;
433 }
434 while (pageout_count < vm_pageout_page_count &&
435 pindex + is < object->size) {
436 if ((p = vm_page_next(ps)) == NULL ||
437 vm_page_tryxbusy(p) == 0)
438 break;
439 if (vm_page_wired(p)) {
440 vm_page_xunbusy(p);
441 break;
442 }
443 vm_page_test_dirty(p);
444 if (p->dirty == 0) {
445 vm_page_xunbusy(p);
446 break;
447 }
448 if (!vm_page_in_laundry(p) || !vm_page_try_remove_write(p)) {
449 vm_page_xunbusy(p);
450 break;
451 }
452 mc[page_base + pageout_count] = ps = p;
453 ++pageout_count;
454 ++is;
455 }
456
457 /*
458 * If we exhausted our forward scan, continue with the reverse scan
459 * when possible, even past an alignment boundary. This catches
460 * boundary conditions.
461 */
462 if (ib != 0 && pageout_count < vm_pageout_page_count)
463 goto more;
464
465 return (vm_pageout_flush(&mc[page_base], pageout_count,
466 VM_PAGER_PUT_NOREUSE, 0, NULL, NULL));
467 }
468
469 /*
470 * vm_pageout_flush() - launder the given pages
471 *
472 * The given pages are laundered. Note that we setup for the start of
473 * I/O ( i.e. busy the page ), mark it read-only, and bump the object
474 * reference count all in here rather then in the parent. If we want
475 * the parent to do more sophisticated things we may have to change
476 * the ordering.
477 *
478 * Returned runlen is the count of pages between mreq and first
479 * page after mreq with status VM_PAGER_AGAIN.
480 * *eio is set to TRUE if pager returned VM_PAGER_ERROR or VM_PAGER_FAIL
481 * for any page in runlen set.
482 */
483 int
vm_pageout_flush(vm_page_t * mc,int count,int flags,int mreq,int * prunlen,boolean_t * eio)484 vm_pageout_flush(vm_page_t *mc, int count, int flags, int mreq, int *prunlen,
485 boolean_t *eio)
486 {
487 vm_object_t object = mc[0]->object;
488 int pageout_status[count];
489 int numpagedout = 0;
490 int i, runlen;
491
492 VM_OBJECT_ASSERT_WLOCKED(object);
493
494 /*
495 * Initiate I/O. Mark the pages shared busy and verify that they're
496 * valid and read-only.
497 *
498 * We do not have to fixup the clean/dirty bits here... we can
499 * allow the pager to do it after the I/O completes.
500 *
501 * NOTE! mc[i]->dirty may be partial or fragmented due to an
502 * edge case with file fragments.
503 */
504 for (i = 0; i < count; i++) {
505 KASSERT(vm_page_all_valid(mc[i]),
506 ("vm_pageout_flush: partially invalid page %p index %d/%d",
507 mc[i], i, count));
508 KASSERT((mc[i]->a.flags & PGA_WRITEABLE) == 0,
509 ("vm_pageout_flush: writeable page %p", mc[i]));
510 vm_page_busy_downgrade(mc[i]);
511 }
512 vm_object_pip_add(object, count);
513
514 vm_pager_put_pages(object, mc, count, flags, pageout_status);
515
516 runlen = count - mreq;
517 if (eio != NULL)
518 *eio = FALSE;
519 for (i = 0; i < count; i++) {
520 vm_page_t mt = mc[i];
521
522 KASSERT(pageout_status[i] == VM_PAGER_PEND ||
523 !pmap_page_is_write_mapped(mt),
524 ("vm_pageout_flush: page %p is not write protected", mt));
525 switch (pageout_status[i]) {
526 case VM_PAGER_OK:
527 /*
528 * The page may have moved since laundering started, in
529 * which case it should be left alone.
530 */
531 if (vm_page_in_laundry(mt))
532 vm_page_deactivate_noreuse(mt);
533 /* FALLTHROUGH */
534 case VM_PAGER_PEND:
535 numpagedout++;
536 break;
537 case VM_PAGER_BAD:
538 /*
539 * The page is outside the object's range. We pretend
540 * that the page out worked and clean the page, so the
541 * changes will be lost if the page is reclaimed by
542 * the page daemon.
543 */
544 vm_page_undirty(mt);
545 if (vm_page_in_laundry(mt))
546 vm_page_deactivate_noreuse(mt);
547 break;
548 case VM_PAGER_ERROR:
549 case VM_PAGER_FAIL:
550 /*
551 * If the page couldn't be paged out to swap because the
552 * pager wasn't able to find space, place the page in
553 * the PQ_UNSWAPPABLE holding queue. This is an
554 * optimization that prevents the page daemon from
555 * wasting CPU cycles on pages that cannot be reclaimed
556 * because no swap device is configured.
557 *
558 * Otherwise, reactivate the page so that it doesn't
559 * clog the laundry and inactive queues. (We will try
560 * paging it out again later.)
561 */
562 if ((object->flags & OBJ_SWAP) != 0 &&
563 pageout_status[i] == VM_PAGER_FAIL) {
564 vm_page_unswappable(mt);
565 numpagedout++;
566 } else
567 vm_page_activate(mt);
568 if (eio != NULL && i >= mreq && i - mreq < runlen)
569 *eio = TRUE;
570 break;
571 case VM_PAGER_AGAIN:
572 if (i >= mreq && i - mreq < runlen)
573 runlen = i - mreq;
574 break;
575 }
576
577 /*
578 * If the operation is still going, leave the page busy to
579 * block all other accesses. Also, leave the paging in
580 * progress indicator set so that we don't attempt an object
581 * collapse.
582 */
583 if (pageout_status[i] != VM_PAGER_PEND) {
584 vm_object_pip_wakeup(object);
585 vm_page_sunbusy(mt);
586 }
587 }
588 if (prunlen != NULL)
589 *prunlen = runlen;
590 return (numpagedout);
591 }
592
593 static void
vm_pageout_swapon(void * arg __unused,struct swdevt * sp __unused)594 vm_pageout_swapon(void *arg __unused, struct swdevt *sp __unused)
595 {
596
597 atomic_store_rel_int(&swapdev_enabled, 1);
598 }
599
600 static void
vm_pageout_swapoff(void * arg __unused,struct swdevt * sp __unused)601 vm_pageout_swapoff(void *arg __unused, struct swdevt *sp __unused)
602 {
603
604 if (swap_pager_nswapdev() == 1)
605 atomic_store_rel_int(&swapdev_enabled, 0);
606 }
607
608 /*
609 * Attempt to acquire all of the necessary locks to launder a page and
610 * then call through the clustering layer to PUTPAGES. Wait a short
611 * time for a vnode lock.
612 *
613 * Requires the page and object lock on entry, releases both before return.
614 * Returns 0 on success and an errno otherwise.
615 */
616 static int
vm_pageout_clean(vm_page_t m,int * numpagedout)617 vm_pageout_clean(vm_page_t m, int *numpagedout)
618 {
619 struct vnode *vp;
620 struct mount *mp;
621 vm_object_t object;
622 vm_pindex_t pindex;
623 int error;
624
625 object = m->object;
626 VM_OBJECT_ASSERT_WLOCKED(object);
627 error = 0;
628 vp = NULL;
629 mp = NULL;
630
631 /*
632 * The object is already known NOT to be dead. It
633 * is possible for the vget() to block the whole
634 * pageout daemon, but the new low-memory handling
635 * code should prevent it.
636 *
637 * We can't wait forever for the vnode lock, we might
638 * deadlock due to a vn_read() getting stuck in
639 * vm_wait while holding this vnode. We skip the
640 * vnode if we can't get it in a reasonable amount
641 * of time.
642 */
643 if (object->type == OBJT_VNODE) {
644 vm_page_xunbusy(m);
645 vp = object->handle;
646 if (vp->v_type == VREG &&
647 vn_start_write(vp, &mp, V_NOWAIT) != 0) {
648 mp = NULL;
649 error = EDEADLK;
650 goto unlock_all;
651 }
652 KASSERT(mp != NULL,
653 ("vp %p with NULL v_mount", vp));
654 vm_object_reference_locked(object);
655 pindex = m->pindex;
656 VM_OBJECT_WUNLOCK(object);
657 if (vget(vp, vn_lktype_write(NULL, vp) | LK_TIMELOCK) != 0) {
658 vp = NULL;
659 error = EDEADLK;
660 goto unlock_mp;
661 }
662 VM_OBJECT_WLOCK(object);
663
664 /*
665 * Ensure that the object and vnode were not disassociated
666 * while locks were dropped.
667 */
668 if (vp->v_object != object) {
669 error = ENOENT;
670 goto unlock_all;
671 }
672
673 /*
674 * While the object was unlocked, the page may have been:
675 * (1) moved to a different queue,
676 * (2) reallocated to a different object,
677 * (3) reallocated to a different offset, or
678 * (4) cleaned.
679 */
680 if (!vm_page_in_laundry(m) || m->object != object ||
681 m->pindex != pindex || m->dirty == 0) {
682 error = ENXIO;
683 goto unlock_all;
684 }
685
686 /*
687 * The page may have been busied while the object lock was
688 * released.
689 */
690 if (vm_page_tryxbusy(m) == 0) {
691 error = EBUSY;
692 goto unlock_all;
693 }
694 }
695
696 /*
697 * Remove all writeable mappings, failing if the page is wired.
698 */
699 if (!vm_page_try_remove_write(m)) {
700 vm_page_xunbusy(m);
701 error = EBUSY;
702 goto unlock_all;
703 }
704
705 /*
706 * If a page is dirty, then it is either being washed
707 * (but not yet cleaned) or it is still in the
708 * laundry. If it is still in the laundry, then we
709 * start the cleaning operation.
710 */
711 if ((*numpagedout = vm_pageout_cluster(m)) == 0)
712 error = EIO;
713
714 unlock_all:
715 VM_OBJECT_WUNLOCK(object);
716
717 unlock_mp:
718 if (mp != NULL) {
719 if (vp != NULL)
720 vput(vp);
721 vm_object_deallocate(object);
722 vn_finished_write(mp);
723 }
724
725 return (error);
726 }
727
728 /*
729 * Attempt to launder the specified number of pages.
730 *
731 * Returns the number of pages successfully laundered.
732 */
733 static int
vm_pageout_launder(struct vm_domain * vmd,int launder,bool in_shortfall)734 vm_pageout_launder(struct vm_domain *vmd, int launder, bool in_shortfall)
735 {
736 struct scan_state ss;
737 struct vm_pagequeue *pq;
738 vm_object_t object;
739 vm_page_t m, marker;
740 vm_page_astate_t new, old;
741 int act_delta, error, numpagedout, queue, refs, starting_target;
742 int vnodes_skipped;
743 bool pageout_ok;
744
745 object = NULL;
746 starting_target = launder;
747 vnodes_skipped = 0;
748
749 /*
750 * Scan the laundry queues for pages eligible to be laundered. We stop
751 * once the target number of dirty pages have been laundered, or once
752 * we've reached the end of the queue. A single iteration of this loop
753 * may cause more than one page to be laundered because of clustering.
754 *
755 * As an optimization, we avoid laundering from PQ_UNSWAPPABLE when no
756 * swap devices are configured.
757 */
758 if (atomic_load_acq_int(&swapdev_enabled))
759 queue = PQ_UNSWAPPABLE;
760 else
761 queue = PQ_LAUNDRY;
762
763 scan:
764 marker = &vmd->vmd_markers[queue];
765 pq = &vmd->vmd_pagequeues[queue];
766 vm_pagequeue_lock(pq);
767 vm_pageout_init_scan(&ss, pq, marker, NULL, pq->pq_cnt);
768 while (launder > 0 && (m = vm_pageout_next(&ss, false)) != NULL) {
769 if (__predict_false((m->flags & PG_MARKER) != 0))
770 continue;
771
772 /*
773 * Don't touch a page that was removed from the queue after the
774 * page queue lock was released. Otherwise, ensure that any
775 * pending queue operations, such as dequeues for wired pages,
776 * are handled.
777 */
778 if (vm_pageout_defer(m, queue, true))
779 continue;
780
781 /*
782 * Lock the page's object.
783 */
784 if (object == NULL || object != m->object) {
785 if (object != NULL)
786 VM_OBJECT_WUNLOCK(object);
787 object = atomic_load_ptr(&m->object);
788 if (__predict_false(object == NULL))
789 /* The page is being freed by another thread. */
790 continue;
791
792 /* Depends on type-stability. */
793 VM_OBJECT_WLOCK(object);
794 if (__predict_false(m->object != object)) {
795 VM_OBJECT_WUNLOCK(object);
796 object = NULL;
797 continue;
798 }
799 }
800
801 if (vm_page_tryxbusy(m) == 0)
802 continue;
803
804 /*
805 * Check for wirings now that we hold the object lock and have
806 * exclusively busied the page. If the page is mapped, it may
807 * still be wired by pmap lookups. The call to
808 * vm_page_try_remove_all() below atomically checks for such
809 * wirings and removes mappings. If the page is unmapped, the
810 * wire count is guaranteed not to increase after this check.
811 */
812 if (__predict_false(vm_page_wired(m)))
813 goto skip_page;
814
815 /*
816 * Invalid pages can be easily freed. They cannot be
817 * mapped; vm_page_free() asserts this.
818 */
819 if (vm_page_none_valid(m))
820 goto free_page;
821
822 refs = object->ref_count != 0 ? pmap_ts_referenced(m) : 0;
823
824 for (old = vm_page_astate_load(m);;) {
825 /*
826 * Check to see if the page has been removed from the
827 * queue since the first such check. Leave it alone if
828 * so, discarding any references collected by
829 * pmap_ts_referenced().
830 */
831 if (__predict_false(_vm_page_queue(old) == PQ_NONE))
832 goto skip_page;
833
834 new = old;
835 act_delta = refs;
836 if ((old.flags & PGA_REFERENCED) != 0) {
837 new.flags &= ~PGA_REFERENCED;
838 act_delta++;
839 }
840 if (act_delta == 0) {
841 ;
842 } else if (object->ref_count != 0) {
843 /*
844 * Increase the activation count if the page was
845 * referenced while in the laundry queue. This
846 * makes it less likely that the page will be
847 * returned prematurely to the laundry queue.
848 */
849 new.act_count += ACT_ADVANCE +
850 act_delta;
851 if (new.act_count > ACT_MAX)
852 new.act_count = ACT_MAX;
853
854 new.flags &= ~PGA_QUEUE_OP_MASK;
855 new.flags |= PGA_REQUEUE;
856 new.queue = PQ_ACTIVE;
857 if (!vm_page_pqstate_commit(m, &old, new))
858 continue;
859
860 /*
861 * If this was a background laundering, count
862 * activated pages towards our target. The
863 * purpose of background laundering is to ensure
864 * that pages are eventually cycled through the
865 * laundry queue, and an activation is a valid
866 * way out.
867 */
868 if (!in_shortfall)
869 launder--;
870 VM_CNT_INC(v_reactivated);
871 goto skip_page;
872 } else if ((object->flags & OBJ_DEAD) == 0) {
873 new.flags |= PGA_REQUEUE;
874 if (!vm_page_pqstate_commit(m, &old, new))
875 continue;
876 goto skip_page;
877 }
878 break;
879 }
880
881 /*
882 * If the page appears to be clean at the machine-independent
883 * layer, then remove all of its mappings from the pmap in
884 * anticipation of freeing it. If, however, any of the page's
885 * mappings allow write access, then the page may still be
886 * modified until the last of those mappings are removed.
887 */
888 if (object->ref_count != 0) {
889 vm_page_test_dirty(m);
890 if (m->dirty == 0 && !vm_page_try_remove_all(m))
891 goto skip_page;
892 }
893
894 /*
895 * Clean pages are freed, and dirty pages are paged out unless
896 * they belong to a dead object. Requeueing dirty pages from
897 * dead objects is pointless, as they are being paged out and
898 * freed by the thread that destroyed the object.
899 */
900 if (m->dirty == 0) {
901 free_page:
902 /*
903 * Now we are guaranteed that no other threads are
904 * manipulating the page, check for a last-second
905 * reference.
906 */
907 if (vm_pageout_defer(m, queue, true))
908 goto skip_page;
909 vm_page_free(m);
910 VM_CNT_INC(v_dfree);
911 } else if ((object->flags & OBJ_DEAD) == 0) {
912 if ((object->flags & OBJ_SWAP) != 0)
913 pageout_ok = disable_swap_pageouts == 0;
914 else
915 pageout_ok = true;
916 if (!pageout_ok) {
917 vm_page_launder(m);
918 goto skip_page;
919 }
920
921 /*
922 * Form a cluster with adjacent, dirty pages from the
923 * same object, and page out that entire cluster.
924 *
925 * The adjacent, dirty pages must also be in the
926 * laundry. However, their mappings are not checked
927 * for new references. Consequently, a recently
928 * referenced page may be paged out. However, that
929 * page will not be prematurely reclaimed. After page
930 * out, the page will be placed in the inactive queue,
931 * where any new references will be detected and the
932 * page reactivated.
933 */
934 error = vm_pageout_clean(m, &numpagedout);
935 if (error == 0) {
936 launder -= numpagedout;
937 ss.scanned += numpagedout;
938 } else if (error == EDEADLK) {
939 pageout_lock_miss++;
940 vnodes_skipped++;
941 }
942 object = NULL;
943 } else {
944 skip_page:
945 vm_page_xunbusy(m);
946 }
947 }
948 if (object != NULL) {
949 VM_OBJECT_WUNLOCK(object);
950 object = NULL;
951 }
952 vm_pagequeue_lock(pq);
953 vm_pageout_end_scan(&ss);
954 vm_pagequeue_unlock(pq);
955
956 if (launder > 0 && queue == PQ_UNSWAPPABLE) {
957 queue = PQ_LAUNDRY;
958 goto scan;
959 }
960
961 /*
962 * Wakeup the sync daemon if we skipped a vnode in a writeable object
963 * and we didn't launder enough pages.
964 */
965 if (vnodes_skipped > 0 && launder > 0)
966 (void)speedup_syncer();
967
968 return (starting_target - launder);
969 }
970
971 /*
972 * Compute the integer square root.
973 */
974 static u_int
isqrt(u_int num)975 isqrt(u_int num)
976 {
977 u_int bit, root, tmp;
978
979 bit = num != 0 ? (1u << ((fls(num) - 1) & ~1)) : 0;
980 root = 0;
981 while (bit != 0) {
982 tmp = root + bit;
983 root >>= 1;
984 if (num >= tmp) {
985 num -= tmp;
986 root += bit;
987 }
988 bit >>= 2;
989 }
990 return (root);
991 }
992
993 /*
994 * Perform the work of the laundry thread: periodically wake up and determine
995 * whether any pages need to be laundered. If so, determine the number of pages
996 * that need to be laundered, and launder them.
997 */
998 static void
vm_pageout_laundry_worker(void * arg)999 vm_pageout_laundry_worker(void *arg)
1000 {
1001 struct vm_domain *vmd;
1002 struct vm_pagequeue *pq;
1003 uint64_t nclean, ndirty, nfreed;
1004 int domain, last_target, launder, shortfall, shortfall_cycle, target;
1005 bool in_shortfall;
1006
1007 domain = (uintptr_t)arg;
1008 vmd = VM_DOMAIN(domain);
1009 pq = &vmd->vmd_pagequeues[PQ_LAUNDRY];
1010 KASSERT(vmd->vmd_segs != 0, ("domain without segments"));
1011
1012 shortfall = 0;
1013 in_shortfall = false;
1014 shortfall_cycle = 0;
1015 last_target = target = 0;
1016 nfreed = 0;
1017
1018 /*
1019 * Calls to these handlers are serialized by the swap syscall lock.
1020 */
1021 (void)EVENTHANDLER_REGISTER(swapon, vm_pageout_swapon, vmd,
1022 EVENTHANDLER_PRI_ANY);
1023 (void)EVENTHANDLER_REGISTER(swapoff, vm_pageout_swapoff, vmd,
1024 EVENTHANDLER_PRI_ANY);
1025
1026 /*
1027 * The pageout laundry worker is never done, so loop forever.
1028 */
1029 for (;;) {
1030 KASSERT(target >= 0, ("negative target %d", target));
1031 KASSERT(shortfall_cycle >= 0,
1032 ("negative cycle %d", shortfall_cycle));
1033 launder = 0;
1034
1035 /*
1036 * First determine whether we need to launder pages to meet a
1037 * shortage of free pages.
1038 */
1039 if (shortfall > 0) {
1040 in_shortfall = true;
1041 shortfall_cycle = VM_LAUNDER_RATE / VM_INACT_SCAN_RATE;
1042 target = shortfall;
1043 } else if (!in_shortfall)
1044 goto trybackground;
1045 else if (shortfall_cycle == 0 || vm_laundry_target(vmd) <= 0) {
1046 /*
1047 * We recently entered shortfall and began laundering
1048 * pages. If we have completed that laundering run
1049 * (and we are no longer in shortfall) or we have met
1050 * our laundry target through other activity, then we
1051 * can stop laundering pages.
1052 */
1053 in_shortfall = false;
1054 target = 0;
1055 goto trybackground;
1056 }
1057 launder = target / shortfall_cycle--;
1058 goto dolaundry;
1059
1060 /*
1061 * There's no immediate need to launder any pages; see if we
1062 * meet the conditions to perform background laundering:
1063 *
1064 * 1. The ratio of dirty to clean inactive pages exceeds the
1065 * background laundering threshold, or
1066 * 2. we haven't yet reached the target of the current
1067 * background laundering run.
1068 *
1069 * The background laundering threshold is not a constant.
1070 * Instead, it is a slowly growing function of the number of
1071 * clean pages freed by the page daemon since the last
1072 * background laundering. Thus, as the ratio of dirty to
1073 * clean inactive pages grows, the amount of memory pressure
1074 * required to trigger laundering decreases. We ensure
1075 * that the threshold is non-zero after an inactive queue
1076 * scan, even if that scan failed to free a single clean page.
1077 */
1078 trybackground:
1079 nclean = vmd->vmd_free_count +
1080 vmd->vmd_pagequeues[PQ_INACTIVE].pq_cnt;
1081 ndirty = vmd->vmd_pagequeues[PQ_LAUNDRY].pq_cnt;
1082 if (target == 0 && ndirty * isqrt(howmany(nfreed + 1,
1083 vmd->vmd_free_target - vmd->vmd_free_min)) >= nclean) {
1084 target = vmd->vmd_background_launder_target;
1085 }
1086
1087 /*
1088 * We have a non-zero background laundering target. If we've
1089 * laundered up to our maximum without observing a page daemon
1090 * request, just stop. This is a safety belt that ensures we
1091 * don't launder an excessive amount if memory pressure is low
1092 * and the ratio of dirty to clean pages is large. Otherwise,
1093 * proceed at the background laundering rate.
1094 */
1095 if (target > 0) {
1096 if (nfreed > 0) {
1097 nfreed = 0;
1098 last_target = target;
1099 } else if (last_target - target >=
1100 vm_background_launder_max * PAGE_SIZE / 1024) {
1101 target = 0;
1102 }
1103 launder = vm_background_launder_rate * PAGE_SIZE / 1024;
1104 launder /= VM_LAUNDER_RATE;
1105 if (launder > target)
1106 launder = target;
1107 }
1108
1109 dolaundry:
1110 if (launder > 0) {
1111 /*
1112 * Because of I/O clustering, the number of laundered
1113 * pages could exceed "target" by the maximum size of
1114 * a cluster minus one.
1115 */
1116 target -= min(vm_pageout_launder(vmd, launder,
1117 in_shortfall), target);
1118 pause("laundp", hz / VM_LAUNDER_RATE);
1119 }
1120
1121 /*
1122 * If we're not currently laundering pages and the page daemon
1123 * hasn't posted a new request, sleep until the page daemon
1124 * kicks us.
1125 */
1126 vm_pagequeue_lock(pq);
1127 if (target == 0 && vmd->vmd_laundry_request == VM_LAUNDRY_IDLE)
1128 (void)mtx_sleep(&vmd->vmd_laundry_request,
1129 vm_pagequeue_lockptr(pq), PVM, "launds", 0);
1130
1131 /*
1132 * If the pagedaemon has indicated that it's in shortfall, start
1133 * a shortfall laundering unless we're already in the middle of
1134 * one. This may preempt a background laundering.
1135 */
1136 if (vmd->vmd_laundry_request == VM_LAUNDRY_SHORTFALL &&
1137 (!in_shortfall || shortfall_cycle == 0)) {
1138 shortfall = vm_laundry_target(vmd) +
1139 vmd->vmd_pageout_deficit;
1140 target = 0;
1141 } else
1142 shortfall = 0;
1143
1144 if (target == 0)
1145 vmd->vmd_laundry_request = VM_LAUNDRY_IDLE;
1146 nfreed += vmd->vmd_clean_pages_freed;
1147 vmd->vmd_clean_pages_freed = 0;
1148 vm_pagequeue_unlock(pq);
1149 }
1150 }
1151
1152 /*
1153 * Compute the number of pages we want to try to move from the
1154 * active queue to either the inactive or laundry queue.
1155 *
1156 * When scanning active pages during a shortage, we make clean pages
1157 * count more heavily towards the page shortage than dirty pages.
1158 * This is because dirty pages must be laundered before they can be
1159 * reused and thus have less utility when attempting to quickly
1160 * alleviate a free page shortage. However, this weighting also
1161 * causes the scan to deactivate dirty pages more aggressively,
1162 * improving the effectiveness of clustering.
1163 */
1164 static int
vm_pageout_active_target(struct vm_domain * vmd)1165 vm_pageout_active_target(struct vm_domain *vmd)
1166 {
1167 int shortage;
1168
1169 shortage = vmd->vmd_inactive_target + vm_paging_target(vmd) -
1170 (vmd->vmd_pagequeues[PQ_INACTIVE].pq_cnt +
1171 vmd->vmd_pagequeues[PQ_LAUNDRY].pq_cnt / act_scan_laundry_weight);
1172 shortage *= act_scan_laundry_weight;
1173 return (shortage);
1174 }
1175
1176 /*
1177 * Scan the active queue. If there is no shortage of inactive pages, scan a
1178 * small portion of the queue in order to maintain quasi-LRU.
1179 */
1180 static void
vm_pageout_scan_active(struct vm_domain * vmd,int page_shortage)1181 vm_pageout_scan_active(struct vm_domain *vmd, int page_shortage)
1182 {
1183 struct scan_state ss;
1184 vm_object_t object;
1185 vm_page_t m, marker;
1186 struct vm_pagequeue *pq;
1187 vm_page_astate_t old, new;
1188 long min_scan;
1189 int act_delta, max_scan, ps_delta, refs, scan_tick;
1190 uint8_t nqueue;
1191
1192 marker = &vmd->vmd_markers[PQ_ACTIVE];
1193 pq = &vmd->vmd_pagequeues[PQ_ACTIVE];
1194 vm_pagequeue_lock(pq);
1195
1196 /*
1197 * If we're just idle polling attempt to visit every
1198 * active page within 'update_period' seconds.
1199 */
1200 scan_tick = ticks;
1201 if (vm_pageout_update_period != 0) {
1202 min_scan = pq->pq_cnt;
1203 min_scan *= scan_tick - vmd->vmd_last_active_scan;
1204 min_scan /= hz * vm_pageout_update_period;
1205 } else
1206 min_scan = 0;
1207 if (min_scan > 0 || (page_shortage > 0 && pq->pq_cnt > 0))
1208 vmd->vmd_last_active_scan = scan_tick;
1209
1210 /*
1211 * Scan the active queue for pages that can be deactivated. Update
1212 * the per-page activity counter and use it to identify deactivation
1213 * candidates. Held pages may be deactivated.
1214 *
1215 * To avoid requeuing each page that remains in the active queue, we
1216 * implement the CLOCK algorithm. To keep the implementation of the
1217 * enqueue operation consistent for all page queues, we use two hands,
1218 * represented by marker pages. Scans begin at the first hand, which
1219 * precedes the second hand in the queue. When the two hands meet,
1220 * they are moved back to the head and tail of the queue, respectively,
1221 * and scanning resumes.
1222 */
1223 max_scan = page_shortage > 0 ? pq->pq_cnt : min_scan;
1224 act_scan:
1225 vm_pageout_init_scan(&ss, pq, marker, &vmd->vmd_clock[0], max_scan);
1226 while ((m = vm_pageout_next(&ss, false)) != NULL) {
1227 if (__predict_false(m == &vmd->vmd_clock[1])) {
1228 vm_pagequeue_lock(pq);
1229 TAILQ_REMOVE(&pq->pq_pl, &vmd->vmd_clock[0], plinks.q);
1230 TAILQ_REMOVE(&pq->pq_pl, &vmd->vmd_clock[1], plinks.q);
1231 TAILQ_INSERT_HEAD(&pq->pq_pl, &vmd->vmd_clock[0],
1232 plinks.q);
1233 TAILQ_INSERT_TAIL(&pq->pq_pl, &vmd->vmd_clock[1],
1234 plinks.q);
1235 max_scan -= ss.scanned;
1236 vm_pageout_end_scan(&ss);
1237 goto act_scan;
1238 }
1239 if (__predict_false((m->flags & PG_MARKER) != 0))
1240 continue;
1241
1242 /*
1243 * Don't touch a page that was removed from the queue after the
1244 * page queue lock was released. Otherwise, ensure that any
1245 * pending queue operations, such as dequeues for wired pages,
1246 * are handled.
1247 */
1248 if (vm_pageout_defer(m, PQ_ACTIVE, true))
1249 continue;
1250
1251 /*
1252 * A page's object pointer may be set to NULL before
1253 * the object lock is acquired.
1254 */
1255 object = atomic_load_ptr(&m->object);
1256 if (__predict_false(object == NULL))
1257 /*
1258 * The page has been removed from its object.
1259 */
1260 continue;
1261
1262 /* Deferred free of swap space. */
1263 if ((m->a.flags & PGA_SWAP_FREE) != 0 &&
1264 VM_OBJECT_TRYWLOCK(object)) {
1265 if (m->object == object)
1266 vm_pager_page_unswapped(m);
1267 VM_OBJECT_WUNLOCK(object);
1268 }
1269
1270 /*
1271 * Check to see "how much" the page has been used.
1272 *
1273 * Test PGA_REFERENCED after calling pmap_ts_referenced() so
1274 * that a reference from a concurrently destroyed mapping is
1275 * observed here and now.
1276 *
1277 * Perform an unsynchronized object ref count check. While
1278 * the page lock ensures that the page is not reallocated to
1279 * another object, in particular, one with unmanaged mappings
1280 * that cannot support pmap_ts_referenced(), two races are,
1281 * nonetheless, possible:
1282 * 1) The count was transitioning to zero, but we saw a non-
1283 * zero value. pmap_ts_referenced() will return zero
1284 * because the page is not mapped.
1285 * 2) The count was transitioning to one, but we saw zero.
1286 * This race delays the detection of a new reference. At
1287 * worst, we will deactivate and reactivate the page.
1288 */
1289 refs = object->ref_count != 0 ? pmap_ts_referenced(m) : 0;
1290
1291 old = vm_page_astate_load(m);
1292 do {
1293 /*
1294 * Check to see if the page has been removed from the
1295 * queue since the first such check. Leave it alone if
1296 * so, discarding any references collected by
1297 * pmap_ts_referenced().
1298 */
1299 if (__predict_false(_vm_page_queue(old) == PQ_NONE)) {
1300 ps_delta = 0;
1301 break;
1302 }
1303
1304 /*
1305 * Advance or decay the act_count based on recent usage.
1306 */
1307 new = old;
1308 act_delta = refs;
1309 if ((old.flags & PGA_REFERENCED) != 0) {
1310 new.flags &= ~PGA_REFERENCED;
1311 act_delta++;
1312 }
1313 if (act_delta != 0) {
1314 new.act_count += ACT_ADVANCE + act_delta;
1315 if (new.act_count > ACT_MAX)
1316 new.act_count = ACT_MAX;
1317 } else {
1318 new.act_count -= min(new.act_count,
1319 ACT_DECLINE);
1320 }
1321
1322 if (new.act_count > 0) {
1323 /*
1324 * Adjust the activation count and keep the page
1325 * in the active queue. The count might be left
1326 * unchanged if it is saturated. The page may
1327 * have been moved to a different queue since we
1328 * started the scan, in which case we move it
1329 * back.
1330 */
1331 ps_delta = 0;
1332 if (old.queue != PQ_ACTIVE) {
1333 new.flags &= ~PGA_QUEUE_OP_MASK;
1334 new.flags |= PGA_REQUEUE;
1335 new.queue = PQ_ACTIVE;
1336 }
1337 } else {
1338 /*
1339 * When not short for inactive pages, let dirty
1340 * pages go through the inactive queue before
1341 * moving to the laundry queue. This gives them
1342 * some extra time to be reactivated,
1343 * potentially avoiding an expensive pageout.
1344 * However, during a page shortage, the inactive
1345 * queue is necessarily small, and so dirty
1346 * pages would only spend a trivial amount of
1347 * time in the inactive queue. Therefore, we
1348 * might as well place them directly in the
1349 * laundry queue to reduce queuing overhead.
1350 *
1351 * Calling vm_page_test_dirty() here would
1352 * require acquisition of the object's write
1353 * lock. However, during a page shortage,
1354 * directing dirty pages into the laundry queue
1355 * is only an optimization and not a
1356 * requirement. Therefore, we simply rely on
1357 * the opportunistic updates to the page's dirty
1358 * field by the pmap.
1359 */
1360 if (page_shortage <= 0) {
1361 nqueue = PQ_INACTIVE;
1362 ps_delta = 0;
1363 } else if (m->dirty == 0) {
1364 nqueue = PQ_INACTIVE;
1365 ps_delta = act_scan_laundry_weight;
1366 } else {
1367 nqueue = PQ_LAUNDRY;
1368 ps_delta = 1;
1369 }
1370
1371 new.flags &= ~PGA_QUEUE_OP_MASK;
1372 new.flags |= PGA_REQUEUE;
1373 new.queue = nqueue;
1374 }
1375 } while (!vm_page_pqstate_commit(m, &old, new));
1376
1377 page_shortage -= ps_delta;
1378 }
1379 vm_pagequeue_lock(pq);
1380 TAILQ_REMOVE(&pq->pq_pl, &vmd->vmd_clock[0], plinks.q);
1381 TAILQ_INSERT_AFTER(&pq->pq_pl, marker, &vmd->vmd_clock[0], plinks.q);
1382 vm_pageout_end_scan(&ss);
1383 vm_pagequeue_unlock(pq);
1384 }
1385
1386 static int
vm_pageout_reinsert_inactive_page(struct vm_pagequeue * pq,vm_page_t marker,vm_page_t m)1387 vm_pageout_reinsert_inactive_page(struct vm_pagequeue *pq, vm_page_t marker,
1388 vm_page_t m)
1389 {
1390 vm_page_astate_t as;
1391
1392 vm_pagequeue_assert_locked(pq);
1393
1394 as = vm_page_astate_load(m);
1395 if (as.queue != PQ_INACTIVE || (as.flags & PGA_ENQUEUED) != 0)
1396 return (0);
1397 vm_page_aflag_set(m, PGA_ENQUEUED);
1398 TAILQ_INSERT_BEFORE(marker, m, plinks.q);
1399 return (1);
1400 }
1401
1402 /*
1403 * Re-add stuck pages to the inactive queue. We will examine them again
1404 * during the next scan. If the queue state of a page has changed since
1405 * it was physically removed from the page queue in
1406 * vm_pageout_collect_batch(), don't do anything with that page.
1407 */
1408 static void
vm_pageout_reinsert_inactive(struct scan_state * ss,struct vm_batchqueue * bq,vm_page_t m)1409 vm_pageout_reinsert_inactive(struct scan_state *ss, struct vm_batchqueue *bq,
1410 vm_page_t m)
1411 {
1412 struct vm_pagequeue *pq;
1413 vm_page_t marker;
1414 int delta;
1415
1416 delta = 0;
1417 marker = ss->marker;
1418 pq = ss->pq;
1419
1420 if (m != NULL) {
1421 if (vm_batchqueue_insert(bq, m) != 0)
1422 return;
1423 vm_pagequeue_lock(pq);
1424 delta += vm_pageout_reinsert_inactive_page(pq, marker, m);
1425 } else
1426 vm_pagequeue_lock(pq);
1427 while ((m = vm_batchqueue_pop(bq)) != NULL)
1428 delta += vm_pageout_reinsert_inactive_page(pq, marker, m);
1429 vm_pagequeue_cnt_add(pq, delta);
1430 vm_pagequeue_unlock(pq);
1431 vm_batchqueue_init(bq);
1432 }
1433
1434 static void
vm_pageout_scan_inactive(struct vm_domain * vmd,int page_shortage)1435 vm_pageout_scan_inactive(struct vm_domain *vmd, int page_shortage)
1436 {
1437 struct timeval start, end;
1438 struct scan_state ss;
1439 struct vm_batchqueue rq;
1440 struct vm_page marker_page;
1441 vm_page_t m, marker;
1442 struct vm_pagequeue *pq;
1443 vm_object_t object;
1444 vm_page_astate_t old, new;
1445 int act_delta, addl_page_shortage, starting_page_shortage, refs;
1446
1447 object = NULL;
1448 vm_batchqueue_init(&rq);
1449 getmicrouptime(&start);
1450
1451 /*
1452 * The addl_page_shortage is an estimate of the number of temporarily
1453 * stuck pages in the inactive queue. In other words, the
1454 * number of pages from the inactive count that should be
1455 * discounted in setting the target for the active queue scan.
1456 */
1457 addl_page_shortage = 0;
1458
1459 /*
1460 * Start scanning the inactive queue for pages that we can free. The
1461 * scan will stop when we reach the target or we have scanned the
1462 * entire queue. (Note that m->a.act_count is not used to make
1463 * decisions for the inactive queue, only for the active queue.)
1464 */
1465 starting_page_shortage = page_shortage;
1466 marker = &marker_page;
1467 vm_page_init_marker(marker, PQ_INACTIVE, 0);
1468 pq = &vmd->vmd_pagequeues[PQ_INACTIVE];
1469 vm_pagequeue_lock(pq);
1470 vm_pageout_init_scan(&ss, pq, marker, NULL, pq->pq_cnt);
1471 while (page_shortage > 0 && (m = vm_pageout_next(&ss, true)) != NULL) {
1472 KASSERT((m->flags & PG_MARKER) == 0,
1473 ("marker page %p was dequeued", m));
1474
1475 /*
1476 * Don't touch a page that was removed from the queue after the
1477 * page queue lock was released. Otherwise, ensure that any
1478 * pending queue operations, such as dequeues for wired pages,
1479 * are handled.
1480 */
1481 if (vm_pageout_defer(m, PQ_INACTIVE, false))
1482 continue;
1483
1484 /*
1485 * Lock the page's object.
1486 */
1487 if (object == NULL || object != m->object) {
1488 if (object != NULL)
1489 VM_OBJECT_WUNLOCK(object);
1490 object = atomic_load_ptr(&m->object);
1491 if (__predict_false(object == NULL))
1492 /* The page is being freed by another thread. */
1493 continue;
1494
1495 /* Depends on type-stability. */
1496 VM_OBJECT_WLOCK(object);
1497 if (__predict_false(m->object != object)) {
1498 VM_OBJECT_WUNLOCK(object);
1499 object = NULL;
1500 goto reinsert;
1501 }
1502 }
1503
1504 if (vm_page_tryxbusy(m) == 0) {
1505 /*
1506 * Don't mess with busy pages. Leave them at
1507 * the front of the queue. Most likely, they
1508 * are being paged out and will leave the
1509 * queue shortly after the scan finishes. So,
1510 * they ought to be discounted from the
1511 * inactive count.
1512 */
1513 addl_page_shortage++;
1514 goto reinsert;
1515 }
1516
1517 /* Deferred free of swap space. */
1518 if ((m->a.flags & PGA_SWAP_FREE) != 0)
1519 vm_pager_page_unswapped(m);
1520
1521 /*
1522 * Check for wirings now that we hold the object lock and have
1523 * exclusively busied the page. If the page is mapped, it may
1524 * still be wired by pmap lookups. The call to
1525 * vm_page_try_remove_all() below atomically checks for such
1526 * wirings and removes mappings. If the page is unmapped, the
1527 * wire count is guaranteed not to increase after this check.
1528 */
1529 if (__predict_false(vm_page_wired(m)))
1530 goto skip_page;
1531
1532 /*
1533 * Invalid pages can be easily freed. They cannot be
1534 * mapped, vm_page_free() asserts this.
1535 */
1536 if (vm_page_none_valid(m))
1537 goto free_page;
1538
1539 refs = object->ref_count != 0 ? pmap_ts_referenced(m) : 0;
1540
1541 for (old = vm_page_astate_load(m);;) {
1542 /*
1543 * Check to see if the page has been removed from the
1544 * queue since the first such check. Leave it alone if
1545 * so, discarding any references collected by
1546 * pmap_ts_referenced().
1547 */
1548 if (__predict_false(_vm_page_queue(old) == PQ_NONE))
1549 goto skip_page;
1550
1551 new = old;
1552 act_delta = refs;
1553 if ((old.flags & PGA_REFERENCED) != 0) {
1554 new.flags &= ~PGA_REFERENCED;
1555 act_delta++;
1556 }
1557 if (act_delta == 0) {
1558 ;
1559 } else if (object->ref_count != 0) {
1560 /*
1561 * Increase the activation count if the
1562 * page was referenced while in the
1563 * inactive queue. This makes it less
1564 * likely that the page will be returned
1565 * prematurely to the inactive queue.
1566 */
1567 new.act_count += ACT_ADVANCE +
1568 act_delta;
1569 if (new.act_count > ACT_MAX)
1570 new.act_count = ACT_MAX;
1571
1572 new.flags &= ~PGA_QUEUE_OP_MASK;
1573 new.flags |= PGA_REQUEUE;
1574 new.queue = PQ_ACTIVE;
1575 if (!vm_page_pqstate_commit(m, &old, new))
1576 continue;
1577
1578 VM_CNT_INC(v_reactivated);
1579 goto skip_page;
1580 } else if ((object->flags & OBJ_DEAD) == 0) {
1581 new.queue = PQ_INACTIVE;
1582 new.flags |= PGA_REQUEUE;
1583 if (!vm_page_pqstate_commit(m, &old, new))
1584 continue;
1585 goto skip_page;
1586 }
1587 break;
1588 }
1589
1590 /*
1591 * If the page appears to be clean at the machine-independent
1592 * layer, then remove all of its mappings from the pmap in
1593 * anticipation of freeing it. If, however, any of the page's
1594 * mappings allow write access, then the page may still be
1595 * modified until the last of those mappings are removed.
1596 */
1597 if (object->ref_count != 0) {
1598 vm_page_test_dirty(m);
1599 if (m->dirty == 0 && !vm_page_try_remove_all(m))
1600 goto skip_page;
1601 }
1602
1603 /*
1604 * Clean pages can be freed, but dirty pages must be sent back
1605 * to the laundry, unless they belong to a dead object.
1606 * Requeueing dirty pages from dead objects is pointless, as
1607 * they are being paged out and freed by the thread that
1608 * destroyed the object.
1609 */
1610 if (m->dirty == 0) {
1611 free_page:
1612 /*
1613 * Now we are guaranteed that no other threads are
1614 * manipulating the page, check for a last-second
1615 * reference that would save it from doom.
1616 */
1617 if (vm_pageout_defer(m, PQ_INACTIVE, false))
1618 goto skip_page;
1619
1620 /*
1621 * Because we dequeued the page and have already checked
1622 * for pending dequeue and enqueue requests, we can
1623 * safely disassociate the page from the inactive queue
1624 * without holding the queue lock.
1625 */
1626 m->a.queue = PQ_NONE;
1627 vm_page_free(m);
1628 page_shortage--;
1629 continue;
1630 }
1631 if ((object->flags & OBJ_DEAD) == 0)
1632 vm_page_launder(m);
1633 skip_page:
1634 vm_page_xunbusy(m);
1635 continue;
1636 reinsert:
1637 vm_pageout_reinsert_inactive(&ss, &rq, m);
1638 }
1639 if (object != NULL)
1640 VM_OBJECT_WUNLOCK(object);
1641 vm_pageout_reinsert_inactive(&ss, &rq, NULL);
1642 vm_pageout_reinsert_inactive(&ss, &ss.bq, NULL);
1643 vm_pagequeue_lock(pq);
1644 vm_pageout_end_scan(&ss);
1645 vm_pagequeue_unlock(pq);
1646
1647 /*
1648 * Record the remaining shortage and the progress and rate it was made.
1649 */
1650 atomic_add_int(&vmd->vmd_addl_shortage, addl_page_shortage);
1651 getmicrouptime(&end);
1652 timevalsub(&end, &start);
1653 atomic_add_int(&vmd->vmd_inactive_us,
1654 end.tv_sec * 1000000 + end.tv_usec);
1655 atomic_add_int(&vmd->vmd_inactive_freed,
1656 starting_page_shortage - page_shortage);
1657 }
1658
1659 /*
1660 * Dispatch a number of inactive threads according to load and collect the
1661 * results to present a coherent view of paging activity on this domain.
1662 */
1663 static int
vm_pageout_inactive_dispatch(struct vm_domain * vmd,int shortage)1664 vm_pageout_inactive_dispatch(struct vm_domain *vmd, int shortage)
1665 {
1666 u_int freed, pps, slop, threads, us;
1667
1668 vmd->vmd_inactive_shortage = shortage;
1669 slop = 0;
1670
1671 /*
1672 * If we have more work than we can do in a quarter of our interval, we
1673 * fire off multiple threads to process it.
1674 */
1675 if ((threads = vmd->vmd_inactive_threads) > 1 &&
1676 vmd->vmd_helper_threads_enabled &&
1677 vmd->vmd_inactive_pps != 0 &&
1678 shortage > vmd->vmd_inactive_pps / VM_INACT_SCAN_RATE / 4) {
1679 vmd->vmd_inactive_shortage /= threads;
1680 slop = shortage % threads;
1681 vm_domain_pageout_lock(vmd);
1682 blockcount_acquire(&vmd->vmd_inactive_starting, threads - 1);
1683 blockcount_acquire(&vmd->vmd_inactive_running, threads - 1);
1684 wakeup(&vmd->vmd_inactive_shortage);
1685 vm_domain_pageout_unlock(vmd);
1686 }
1687
1688 /* Run the local thread scan. */
1689 vm_pageout_scan_inactive(vmd, vmd->vmd_inactive_shortage + slop);
1690
1691 /*
1692 * Block until helper threads report results and then accumulate
1693 * totals.
1694 */
1695 blockcount_wait(&vmd->vmd_inactive_running, NULL, "vmpoid", PVM);
1696 freed = atomic_readandclear_int(&vmd->vmd_inactive_freed);
1697 VM_CNT_ADD(v_dfree, freed);
1698
1699 /*
1700 * Calculate the per-thread paging rate with an exponential decay of
1701 * prior results. Careful to avoid integer rounding errors with large
1702 * us values.
1703 */
1704 us = max(atomic_readandclear_int(&vmd->vmd_inactive_us), 1);
1705 if (us > 1000000)
1706 /* Keep rounding to tenths */
1707 pps = (freed * 10) / ((us * 10) / 1000000);
1708 else
1709 pps = (1000000 / us) * freed;
1710 vmd->vmd_inactive_pps = (vmd->vmd_inactive_pps / 2) + (pps / 2);
1711
1712 return (shortage - freed);
1713 }
1714
1715 /*
1716 * Attempt to reclaim the requested number of pages from the inactive queue.
1717 * Returns true if the shortage was addressed.
1718 */
1719 static int
vm_pageout_inactive(struct vm_domain * vmd,int shortage,int * addl_shortage)1720 vm_pageout_inactive(struct vm_domain *vmd, int shortage, int *addl_shortage)
1721 {
1722 struct vm_pagequeue *pq;
1723 u_int addl_page_shortage, deficit, page_shortage;
1724 u_int starting_page_shortage;
1725
1726 /*
1727 * vmd_pageout_deficit counts the number of pages requested in
1728 * allocations that failed because of a free page shortage. We assume
1729 * that the allocations will be reattempted and thus include the deficit
1730 * in our scan target.
1731 */
1732 deficit = atomic_readandclear_int(&vmd->vmd_pageout_deficit);
1733 starting_page_shortage = shortage + deficit;
1734
1735 /*
1736 * Run the inactive scan on as many threads as is necessary.
1737 */
1738 page_shortage = vm_pageout_inactive_dispatch(vmd, starting_page_shortage);
1739 addl_page_shortage = atomic_readandclear_int(&vmd->vmd_addl_shortage);
1740
1741 /*
1742 * Wake up the laundry thread so that it can perform any needed
1743 * laundering. If we didn't meet our target, we're in shortfall and
1744 * need to launder more aggressively. If PQ_LAUNDRY is empty and no
1745 * swap devices are configured, the laundry thread has no work to do, so
1746 * don't bother waking it up.
1747 *
1748 * The laundry thread uses the number of inactive queue scans elapsed
1749 * since the last laundering to determine whether to launder again, so
1750 * keep count.
1751 */
1752 if (starting_page_shortage > 0) {
1753 pq = &vmd->vmd_pagequeues[PQ_LAUNDRY];
1754 vm_pagequeue_lock(pq);
1755 if (vmd->vmd_laundry_request == VM_LAUNDRY_IDLE &&
1756 (pq->pq_cnt > 0 || atomic_load_acq_int(&swapdev_enabled))) {
1757 if (page_shortage > 0) {
1758 vmd->vmd_laundry_request = VM_LAUNDRY_SHORTFALL;
1759 VM_CNT_INC(v_pdshortfalls);
1760 } else if (vmd->vmd_laundry_request !=
1761 VM_LAUNDRY_SHORTFALL)
1762 vmd->vmd_laundry_request =
1763 VM_LAUNDRY_BACKGROUND;
1764 wakeup(&vmd->vmd_laundry_request);
1765 }
1766 vmd->vmd_clean_pages_freed +=
1767 starting_page_shortage - page_shortage;
1768 vm_pagequeue_unlock(pq);
1769 }
1770
1771 /*
1772 * Wakeup the swapout daemon if we didn't free the targeted number of
1773 * pages.
1774 */
1775 if (page_shortage > 0)
1776 vm_swapout_run();
1777
1778 /*
1779 * If the inactive queue scan fails repeatedly to meet its
1780 * target, kill the largest process.
1781 */
1782 vm_pageout_mightbe_oom(vmd, page_shortage, starting_page_shortage);
1783
1784 /*
1785 * Reclaim pages by swapping out idle processes, if configured to do so.
1786 */
1787 vm_swapout_run_idle();
1788
1789 /*
1790 * See the description of addl_page_shortage above.
1791 */
1792 *addl_shortage = addl_page_shortage + deficit;
1793
1794 return (page_shortage <= 0);
1795 }
1796
1797 static int vm_pageout_oom_vote;
1798
1799 /*
1800 * The pagedaemon threads randlomly select one to perform the
1801 * OOM. Trying to kill processes before all pagedaemons
1802 * failed to reach free target is premature.
1803 */
1804 static void
vm_pageout_mightbe_oom(struct vm_domain * vmd,int page_shortage,int starting_page_shortage)1805 vm_pageout_mightbe_oom(struct vm_domain *vmd, int page_shortage,
1806 int starting_page_shortage)
1807 {
1808 int old_vote;
1809
1810 if (starting_page_shortage <= 0 || starting_page_shortage !=
1811 page_shortage)
1812 vmd->vmd_oom_seq = 0;
1813 else
1814 vmd->vmd_oom_seq++;
1815 if (vmd->vmd_oom_seq < vm_pageout_oom_seq) {
1816 if (vmd->vmd_oom) {
1817 vmd->vmd_oom = false;
1818 atomic_subtract_int(&vm_pageout_oom_vote, 1);
1819 }
1820 return;
1821 }
1822
1823 /*
1824 * Do not follow the call sequence until OOM condition is
1825 * cleared.
1826 */
1827 vmd->vmd_oom_seq = 0;
1828
1829 if (vmd->vmd_oom)
1830 return;
1831
1832 vmd->vmd_oom = true;
1833 old_vote = atomic_fetchadd_int(&vm_pageout_oom_vote, 1);
1834 if (old_vote != vm_ndomains - 1)
1835 return;
1836
1837 /*
1838 * The current pagedaemon thread is the last in the quorum to
1839 * start OOM. Initiate the selection and signaling of the
1840 * victim.
1841 */
1842 vm_pageout_oom(VM_OOM_MEM);
1843
1844 /*
1845 * After one round of OOM terror, recall our vote. On the
1846 * next pass, current pagedaemon would vote again if the low
1847 * memory condition is still there, due to vmd_oom being
1848 * false.
1849 */
1850 vmd->vmd_oom = false;
1851 atomic_subtract_int(&vm_pageout_oom_vote, 1);
1852 }
1853
1854 /*
1855 * The OOM killer is the page daemon's action of last resort when
1856 * memory allocation requests have been stalled for a prolonged period
1857 * of time because it cannot reclaim memory. This function computes
1858 * the approximate number of physical pages that could be reclaimed if
1859 * the specified address space is destroyed.
1860 *
1861 * Private, anonymous memory owned by the address space is the
1862 * principal resource that we expect to recover after an OOM kill.
1863 * Since the physical pages mapped by the address space's COW entries
1864 * are typically shared pages, they are unlikely to be released and so
1865 * they are not counted.
1866 *
1867 * To get to the point where the page daemon runs the OOM killer, its
1868 * efforts to write-back vnode-backed pages may have stalled. This
1869 * could be caused by a memory allocation deadlock in the write path
1870 * that might be resolved by an OOM kill. Therefore, physical pages
1871 * belonging to vnode-backed objects are counted, because they might
1872 * be freed without being written out first if the address space holds
1873 * the last reference to an unlinked vnode.
1874 *
1875 * Similarly, physical pages belonging to OBJT_PHYS objects are
1876 * counted because the address space might hold the last reference to
1877 * the object.
1878 */
1879 static long
vm_pageout_oom_pagecount(struct vmspace * vmspace)1880 vm_pageout_oom_pagecount(struct vmspace *vmspace)
1881 {
1882 vm_map_t map;
1883 vm_map_entry_t entry;
1884 vm_object_t obj;
1885 long res;
1886
1887 map = &vmspace->vm_map;
1888 KASSERT(!map->system_map, ("system map"));
1889 sx_assert(&map->lock, SA_LOCKED);
1890 res = 0;
1891 VM_MAP_ENTRY_FOREACH(entry, map) {
1892 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0)
1893 continue;
1894 obj = entry->object.vm_object;
1895 if (obj == NULL)
1896 continue;
1897 if ((entry->eflags & MAP_ENTRY_NEEDS_COPY) != 0 &&
1898 obj->ref_count != 1)
1899 continue;
1900 if (obj->type == OBJT_PHYS || obj->type == OBJT_VNODE ||
1901 (obj->flags & OBJ_SWAP) != 0)
1902 res += obj->resident_page_count;
1903 }
1904 return (res);
1905 }
1906
1907 static int vm_oom_ratelim_last;
1908 static int vm_oom_pf_secs = 10;
1909 SYSCTL_INT(_vm, OID_AUTO, oom_pf_secs, CTLFLAG_RWTUN, &vm_oom_pf_secs, 0,
1910 "");
1911 static struct mtx vm_oom_ratelim_mtx;
1912
1913 void
vm_pageout_oom(int shortage)1914 vm_pageout_oom(int shortage)
1915 {
1916 const char *reason;
1917 struct proc *p, *bigproc;
1918 vm_offset_t size, bigsize;
1919 struct thread *td;
1920 struct vmspace *vm;
1921 int now;
1922 bool breakout;
1923
1924 /*
1925 * For OOM requests originating from vm_fault(), there is a high
1926 * chance that a single large process faults simultaneously in
1927 * several threads. Also, on an active system running many
1928 * processes of middle-size, like buildworld, all of them
1929 * could fault almost simultaneously as well.
1930 *
1931 * To avoid killing too many processes, rate-limit OOMs
1932 * initiated by vm_fault() time-outs on the waits for free
1933 * pages.
1934 */
1935 mtx_lock(&vm_oom_ratelim_mtx);
1936 now = ticks;
1937 if (shortage == VM_OOM_MEM_PF &&
1938 (u_int)(now - vm_oom_ratelim_last) < hz * vm_oom_pf_secs) {
1939 mtx_unlock(&vm_oom_ratelim_mtx);
1940 return;
1941 }
1942 vm_oom_ratelim_last = now;
1943 mtx_unlock(&vm_oom_ratelim_mtx);
1944
1945 /*
1946 * We keep the process bigproc locked once we find it to keep anyone
1947 * from messing with it; however, there is a possibility of
1948 * deadlock if process B is bigproc and one of its child processes
1949 * attempts to propagate a signal to B while we are waiting for A's
1950 * lock while walking this list. To avoid this, we don't block on
1951 * the process lock but just skip a process if it is already locked.
1952 */
1953 bigproc = NULL;
1954 bigsize = 0;
1955 sx_slock(&allproc_lock);
1956 FOREACH_PROC_IN_SYSTEM(p) {
1957 PROC_LOCK(p);
1958
1959 /*
1960 * If this is a system, protected or killed process, skip it.
1961 */
1962 if (p->p_state != PRS_NORMAL || (p->p_flag & (P_INEXEC |
1963 P_PROTECTED | P_SYSTEM | P_WEXIT)) != 0 ||
1964 p->p_pid == 1 || P_KILLED(p) ||
1965 (p->p_pid < 48 && swap_pager_avail != 0)) {
1966 PROC_UNLOCK(p);
1967 continue;
1968 }
1969 /*
1970 * If the process is in a non-running type state,
1971 * don't touch it. Check all the threads individually.
1972 */
1973 breakout = false;
1974 FOREACH_THREAD_IN_PROC(p, td) {
1975 thread_lock(td);
1976 if (!TD_ON_RUNQ(td) &&
1977 !TD_IS_RUNNING(td) &&
1978 !TD_IS_SLEEPING(td) &&
1979 !TD_IS_SUSPENDED(td) &&
1980 !TD_IS_SWAPPED(td)) {
1981 thread_unlock(td);
1982 breakout = true;
1983 break;
1984 }
1985 thread_unlock(td);
1986 }
1987 if (breakout) {
1988 PROC_UNLOCK(p);
1989 continue;
1990 }
1991 /*
1992 * get the process size
1993 */
1994 vm = vmspace_acquire_ref(p);
1995 if (vm == NULL) {
1996 PROC_UNLOCK(p);
1997 continue;
1998 }
1999 _PHOLD_LITE(p);
2000 PROC_UNLOCK(p);
2001 sx_sunlock(&allproc_lock);
2002 if (!vm_map_trylock_read(&vm->vm_map)) {
2003 vmspace_free(vm);
2004 sx_slock(&allproc_lock);
2005 PRELE(p);
2006 continue;
2007 }
2008 size = vmspace_swap_count(vm);
2009 if (shortage == VM_OOM_MEM || shortage == VM_OOM_MEM_PF)
2010 size += vm_pageout_oom_pagecount(vm);
2011 vm_map_unlock_read(&vm->vm_map);
2012 vmspace_free(vm);
2013 sx_slock(&allproc_lock);
2014
2015 /*
2016 * If this process is bigger than the biggest one,
2017 * remember it.
2018 */
2019 if (size > bigsize) {
2020 if (bigproc != NULL)
2021 PRELE(bigproc);
2022 bigproc = p;
2023 bigsize = size;
2024 } else {
2025 PRELE(p);
2026 }
2027 }
2028 sx_sunlock(&allproc_lock);
2029
2030 if (bigproc != NULL) {
2031 switch (shortage) {
2032 case VM_OOM_MEM:
2033 reason = "failed to reclaim memory";
2034 break;
2035 case VM_OOM_MEM_PF:
2036 reason = "a thread waited too long to allocate a page";
2037 break;
2038 case VM_OOM_SWAPZ:
2039 reason = "out of swap space";
2040 break;
2041 default:
2042 panic("unknown OOM reason %d", shortage);
2043 }
2044 if (vm_panic_on_oom != 0 && --vm_panic_on_oom == 0)
2045 panic("%s", reason);
2046 PROC_LOCK(bigproc);
2047 killproc(bigproc, reason);
2048 sched_nice(bigproc, PRIO_MIN);
2049 _PRELE(bigproc);
2050 PROC_UNLOCK(bigproc);
2051 }
2052 }
2053
2054 /*
2055 * Signal a free page shortage to subsystems that have registered an event
2056 * handler. Reclaim memory from UMA in the event of a severe shortage.
2057 * Return true if the free page count should be re-evaluated.
2058 */
2059 static bool
vm_pageout_lowmem(void)2060 vm_pageout_lowmem(void)
2061 {
2062 static int lowmem_ticks = 0;
2063 int last;
2064 bool ret;
2065
2066 ret = false;
2067
2068 last = atomic_load_int(&lowmem_ticks);
2069 while ((u_int)(ticks - last) / hz >= lowmem_period) {
2070 if (atomic_fcmpset_int(&lowmem_ticks, &last, ticks) == 0)
2071 continue;
2072
2073 /*
2074 * Decrease registered cache sizes.
2075 */
2076 SDT_PROBE0(vm, , , vm__lowmem_scan);
2077 EVENTHANDLER_INVOKE(vm_lowmem, VM_LOW_PAGES);
2078
2079 /*
2080 * We do this explicitly after the caches have been
2081 * drained above.
2082 */
2083 uma_reclaim(UMA_RECLAIM_TRIM);
2084 ret = true;
2085 break;
2086 }
2087
2088 /*
2089 * Kick off an asynchronous reclaim of cached memory if one of the
2090 * page daemons is failing to keep up with demand. Use the "severe"
2091 * threshold instead of "min" to ensure that we do not blow away the
2092 * caches if a subset of the NUMA domains are depleted by kernel memory
2093 * allocations; the domainset iterators automatically skip domains
2094 * below the "min" threshold on the first pass.
2095 *
2096 * UMA reclaim worker has its own rate-limiting mechanism, so don't
2097 * worry about kicking it too often.
2098 */
2099 if (vm_page_count_severe())
2100 uma_reclaim_wakeup();
2101
2102 return (ret);
2103 }
2104
2105 static void
vm_pageout_worker(void * arg)2106 vm_pageout_worker(void *arg)
2107 {
2108 struct vm_domain *vmd;
2109 u_int ofree;
2110 int addl_shortage, domain, shortage;
2111 bool target_met;
2112
2113 domain = (uintptr_t)arg;
2114 vmd = VM_DOMAIN(domain);
2115 shortage = 0;
2116 target_met = true;
2117
2118 /*
2119 * XXXKIB It could be useful to bind pageout daemon threads to
2120 * the cores belonging to the domain, from which vm_page_array
2121 * is allocated.
2122 */
2123
2124 KASSERT(vmd->vmd_segs != 0, ("domain without segments"));
2125 vmd->vmd_last_active_scan = ticks;
2126
2127 /*
2128 * The pageout daemon worker is never done, so loop forever.
2129 */
2130 while (TRUE) {
2131 vm_domain_pageout_lock(vmd);
2132
2133 /*
2134 * We need to clear wanted before we check the limits. This
2135 * prevents races with wakers who will check wanted after they
2136 * reach the limit.
2137 */
2138 atomic_store_int(&vmd->vmd_pageout_wanted, 0);
2139
2140 /*
2141 * Might the page daemon need to run again?
2142 */
2143 if (vm_paging_needed(vmd, vmd->vmd_free_count)) {
2144 /*
2145 * Yes. If the scan failed to produce enough free
2146 * pages, sleep uninterruptibly for some time in the
2147 * hope that the laundry thread will clean some pages.
2148 */
2149 vm_domain_pageout_unlock(vmd);
2150 if (!target_met)
2151 pause("pwait", hz / VM_INACT_SCAN_RATE);
2152 } else {
2153 /*
2154 * No, sleep until the next wakeup or until pages
2155 * need to have their reference stats updated.
2156 */
2157 if (mtx_sleep(&vmd->vmd_pageout_wanted,
2158 vm_domain_pageout_lockptr(vmd), PDROP | PVM,
2159 "psleep", hz / VM_INACT_SCAN_RATE) == 0)
2160 VM_CNT_INC(v_pdwakeups);
2161 }
2162
2163 /* Prevent spurious wakeups by ensuring that wanted is set. */
2164 atomic_store_int(&vmd->vmd_pageout_wanted, 1);
2165
2166 /*
2167 * Use the controller to calculate how many pages to free in
2168 * this interval, and scan the inactive queue. If the lowmem
2169 * handlers appear to have freed up some pages, subtract the
2170 * difference from the inactive queue scan target.
2171 */
2172 shortage = pidctrl_daemon(&vmd->vmd_pid, vmd->vmd_free_count);
2173 if (shortage > 0) {
2174 ofree = vmd->vmd_free_count;
2175 if (vm_pageout_lowmem() && vmd->vmd_free_count > ofree)
2176 shortage -= min(vmd->vmd_free_count - ofree,
2177 (u_int)shortage);
2178 target_met = vm_pageout_inactive(vmd, shortage,
2179 &addl_shortage);
2180 } else
2181 addl_shortage = 0;
2182
2183 /*
2184 * Scan the active queue. A positive value for shortage
2185 * indicates that we must aggressively deactivate pages to avoid
2186 * a shortfall.
2187 */
2188 shortage = vm_pageout_active_target(vmd) + addl_shortage;
2189 vm_pageout_scan_active(vmd, shortage);
2190 }
2191 }
2192
2193 /*
2194 * vm_pageout_helper runs additional pageout daemons in times of high paging
2195 * activity.
2196 */
2197 static void
vm_pageout_helper(void * arg)2198 vm_pageout_helper(void *arg)
2199 {
2200 struct vm_domain *vmd;
2201 int domain;
2202
2203 domain = (uintptr_t)arg;
2204 vmd = VM_DOMAIN(domain);
2205
2206 vm_domain_pageout_lock(vmd);
2207 for (;;) {
2208 msleep(&vmd->vmd_inactive_shortage,
2209 vm_domain_pageout_lockptr(vmd), PVM, "psleep", 0);
2210 blockcount_release(&vmd->vmd_inactive_starting, 1);
2211
2212 vm_domain_pageout_unlock(vmd);
2213 vm_pageout_scan_inactive(vmd, vmd->vmd_inactive_shortage);
2214 vm_domain_pageout_lock(vmd);
2215
2216 /*
2217 * Release the running count while the pageout lock is held to
2218 * prevent wakeup races.
2219 */
2220 blockcount_release(&vmd->vmd_inactive_running, 1);
2221 }
2222 }
2223
2224 static int
get_pageout_threads_per_domain(const struct vm_domain * vmd)2225 get_pageout_threads_per_domain(const struct vm_domain *vmd)
2226 {
2227 unsigned total_pageout_threads, eligible_cpus, domain_cpus;
2228
2229 if (VM_DOMAIN_EMPTY(vmd->vmd_domain))
2230 return (0);
2231
2232 /*
2233 * Semi-arbitrarily constrain pagedaemon threads to less than half the
2234 * total number of CPUs in the system as an upper limit.
2235 */
2236 if (pageout_cpus_per_thread < 2)
2237 pageout_cpus_per_thread = 2;
2238 else if (pageout_cpus_per_thread > mp_ncpus)
2239 pageout_cpus_per_thread = mp_ncpus;
2240
2241 total_pageout_threads = howmany(mp_ncpus, pageout_cpus_per_thread);
2242 domain_cpus = CPU_COUNT(&cpuset_domain[vmd->vmd_domain]);
2243
2244 /* Pagedaemons are not run in empty domains. */
2245 eligible_cpus = mp_ncpus;
2246 for (unsigned i = 0; i < vm_ndomains; i++)
2247 if (VM_DOMAIN_EMPTY(i))
2248 eligible_cpus -= CPU_COUNT(&cpuset_domain[i]);
2249
2250 /*
2251 * Assign a portion of the total pageout threads to this domain
2252 * corresponding to the fraction of pagedaemon-eligible CPUs in the
2253 * domain. In asymmetric NUMA systems, domains with more CPUs may be
2254 * allocated more threads than domains with fewer CPUs.
2255 */
2256 return (howmany(total_pageout_threads * domain_cpus, eligible_cpus));
2257 }
2258
2259 /*
2260 * Initialize basic pageout daemon settings. See the comment above the
2261 * definition of vm_domain for some explanation of how these thresholds are
2262 * used.
2263 */
2264 static void
vm_pageout_init_domain(int domain)2265 vm_pageout_init_domain(int domain)
2266 {
2267 struct vm_domain *vmd;
2268 struct sysctl_oid *oid;
2269
2270 vmd = VM_DOMAIN(domain);
2271 vmd->vmd_interrupt_free_min = 2;
2272
2273 /*
2274 * v_free_reserved needs to include enough for the largest
2275 * swap pager structures plus enough for any pv_entry structs
2276 * when paging.
2277 */
2278 vmd->vmd_pageout_free_min = 2 * MAXBSIZE / PAGE_SIZE +
2279 vmd->vmd_interrupt_free_min;
2280 vmd->vmd_free_reserved = vm_pageout_page_count +
2281 vmd->vmd_pageout_free_min + vmd->vmd_page_count / 768;
2282 vmd->vmd_free_min = vmd->vmd_page_count / 200;
2283 vmd->vmd_free_severe = vmd->vmd_free_min / 2;
2284 vmd->vmd_free_target = 4 * vmd->vmd_free_min + vmd->vmd_free_reserved;
2285 vmd->vmd_free_min += vmd->vmd_free_reserved;
2286 vmd->vmd_free_severe += vmd->vmd_free_reserved;
2287 vmd->vmd_inactive_target = (3 * vmd->vmd_free_target) / 2;
2288 if (vmd->vmd_inactive_target > vmd->vmd_free_count / 3)
2289 vmd->vmd_inactive_target = vmd->vmd_free_count / 3;
2290
2291 /*
2292 * Set the default wakeup threshold to be 10% below the paging
2293 * target. This keeps the steady state out of shortfall.
2294 */
2295 vmd->vmd_pageout_wakeup_thresh = (vmd->vmd_free_target / 10) * 9;
2296
2297 /*
2298 * Target amount of memory to move out of the laundry queue during a
2299 * background laundering. This is proportional to the amount of system
2300 * memory.
2301 */
2302 vmd->vmd_background_launder_target = (vmd->vmd_free_target -
2303 vmd->vmd_free_min) / 10;
2304
2305 /* Initialize the pageout daemon pid controller. */
2306 pidctrl_init(&vmd->vmd_pid, hz / VM_INACT_SCAN_RATE,
2307 vmd->vmd_free_target, PIDCTRL_BOUND,
2308 PIDCTRL_KPD, PIDCTRL_KID, PIDCTRL_KDD);
2309 oid = SYSCTL_ADD_NODE(NULL, SYSCTL_CHILDREN(vmd->vmd_oid), OID_AUTO,
2310 "pidctrl", CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, "");
2311 pidctrl_init_sysctl(&vmd->vmd_pid, SYSCTL_CHILDREN(oid));
2312
2313 vmd->vmd_inactive_threads = get_pageout_threads_per_domain(vmd);
2314 SYSCTL_ADD_BOOL(NULL, SYSCTL_CHILDREN(vmd->vmd_oid), OID_AUTO,
2315 "pageout_helper_threads_enabled", CTLFLAG_RWTUN,
2316 &vmd->vmd_helper_threads_enabled, 0,
2317 "Enable multi-threaded inactive queue scanning");
2318 }
2319
2320 static void
vm_pageout_init(void)2321 vm_pageout_init(void)
2322 {
2323 u_long freecount;
2324 int i;
2325
2326 /*
2327 * Initialize some paging parameters.
2328 */
2329 if (vm_cnt.v_page_count < 2000)
2330 vm_pageout_page_count = 8;
2331
2332 freecount = 0;
2333 for (i = 0; i < vm_ndomains; i++) {
2334 struct vm_domain *vmd;
2335
2336 vm_pageout_init_domain(i);
2337 vmd = VM_DOMAIN(i);
2338 vm_cnt.v_free_reserved += vmd->vmd_free_reserved;
2339 vm_cnt.v_free_target += vmd->vmd_free_target;
2340 vm_cnt.v_free_min += vmd->vmd_free_min;
2341 vm_cnt.v_inactive_target += vmd->vmd_inactive_target;
2342 vm_cnt.v_pageout_free_min += vmd->vmd_pageout_free_min;
2343 vm_cnt.v_interrupt_free_min += vmd->vmd_interrupt_free_min;
2344 vm_cnt.v_free_severe += vmd->vmd_free_severe;
2345 freecount += vmd->vmd_free_count;
2346 }
2347
2348 /*
2349 * Set interval in seconds for active scan. We want to visit each
2350 * page at least once every ten minutes. This is to prevent worst
2351 * case paging behaviors with stale active LRU.
2352 */
2353 if (vm_pageout_update_period == 0)
2354 vm_pageout_update_period = 600;
2355
2356 /*
2357 * Set the maximum number of user-wired virtual pages. Historically the
2358 * main source of such pages was mlock(2) and mlockall(2). Hypervisors
2359 * may also request user-wired memory.
2360 */
2361 if (vm_page_max_user_wired == 0)
2362 vm_page_max_user_wired = 4 * freecount / 5;
2363 }
2364
2365 /*
2366 * vm_pageout is the high level pageout daemon.
2367 */
2368 static void
vm_pageout(void)2369 vm_pageout(void)
2370 {
2371 struct proc *p;
2372 struct thread *td;
2373 int error, first, i, j, pageout_threads;
2374
2375 p = curproc;
2376 td = curthread;
2377
2378 mtx_init(&vm_oom_ratelim_mtx, "vmoomr", NULL, MTX_DEF);
2379 swap_pager_swap_init();
2380 for (first = -1, i = 0; i < vm_ndomains; i++) {
2381 if (VM_DOMAIN_EMPTY(i)) {
2382 if (bootverbose)
2383 printf("domain %d empty; skipping pageout\n",
2384 i);
2385 continue;
2386 }
2387 if (first == -1)
2388 first = i;
2389 else {
2390 error = kthread_add(vm_pageout_worker,
2391 (void *)(uintptr_t)i, p, NULL, 0, 0, "dom%d", i);
2392 if (error != 0)
2393 panic("starting pageout for domain %d: %d\n",
2394 i, error);
2395 }
2396 pageout_threads = VM_DOMAIN(i)->vmd_inactive_threads;
2397 for (j = 0; j < pageout_threads - 1; j++) {
2398 error = kthread_add(vm_pageout_helper,
2399 (void *)(uintptr_t)i, p, NULL, 0, 0,
2400 "dom%d helper%d", i, j);
2401 if (error != 0)
2402 panic("starting pageout helper %d for domain "
2403 "%d: %d\n", j, i, error);
2404 }
2405 error = kthread_add(vm_pageout_laundry_worker,
2406 (void *)(uintptr_t)i, p, NULL, 0, 0, "laundry: dom%d", i);
2407 if (error != 0)
2408 panic("starting laundry for domain %d: %d", i, error);
2409 }
2410 error = kthread_add(uma_reclaim_worker, NULL, p, NULL, 0, 0, "uma");
2411 if (error != 0)
2412 panic("starting uma_reclaim helper, error %d\n", error);
2413
2414 snprintf(td->td_name, sizeof(td->td_name), "dom%d", first);
2415 vm_pageout_worker((void *)(uintptr_t)first);
2416 }
2417
2418 /*
2419 * Perform an advisory wakeup of the page daemon.
2420 */
2421 void
pagedaemon_wakeup(int domain)2422 pagedaemon_wakeup(int domain)
2423 {
2424 struct vm_domain *vmd;
2425
2426 vmd = VM_DOMAIN(domain);
2427 vm_domain_pageout_assert_unlocked(vmd);
2428 if (curproc == pageproc)
2429 return;
2430
2431 if (atomic_fetchadd_int(&vmd->vmd_pageout_wanted, 1) == 0) {
2432 vm_domain_pageout_lock(vmd);
2433 atomic_store_int(&vmd->vmd_pageout_wanted, 1);
2434 wakeup(&vmd->vmd_pageout_wanted);
2435 vm_domain_pageout_unlock(vmd);
2436 }
2437 }
2438