Branch :
/* $OpenBSD: uvm_pdaemon.c,v 1.158 2026/05/25 20:29:27 kirill Exp $ */
/* $NetBSD: uvm_pdaemon.c,v 1.23 2000/08/20 10:24:14 bjh21 Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
* Copyright (c) 1991, 1993, The Regents of the University of California.
*
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* The Mach Operating System project at Carnegie-Mellon University.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)vm_pageout.c 8.5 (Berkeley) 2/14/94
* from: Id: uvm_pdaemon.c,v 1.1.2.32 1998/02/06 05:26:30 chs Exp
*
*
* Copyright (c) 1987, 1990 Carnegie-Mellon University.
* All rights reserved.
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
/*
* uvm_pdaemon.c: the page daemon
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/pool.h>
#include <sys/proc.h>
#include <sys/buf.h>
#include <sys/mount.h>
#include <sys/atomic.h>
#ifdef HIBERNATE
#include <sys/hibernate.h>
#endif
#include <uvm/uvm.h>
#include <uvm/uvm_swap.h>
#include "drm.h"
#if NDRM > 0
extern unsigned long drmbackoff(long);
#endif
/*
* UVMPD_NUMDIRTYREACTS is how many dirty pages the pagedaemon will reactivate
* in a pass thru the inactive list when swap is full. the value should be
* "small"... if it's too large we'll cycle the active pages thru the inactive
* queue too quickly to for them to be referenced and avoid being freed.
*/
#define UVMPD_NUMDIRTYREACTS 16
/*
* local prototypes
*/
struct rwlock *uvmpd_trylockowner(struct vm_page *);
void uvmpd_scan(struct uvm_constraint_range *, int, int);
int uvmpd_scan_inactive(struct uvm_constraint_range *, int);
void uvmpd_tune(void);
void uvmpd_drop(struct pglist *);
int uvmpd_dropswap(struct vm_page *);
/*
* uvm_wait: wait (sleep) for the page daemon to free some pages
*
* => should be called with all locks released
* => should _not_ be called by the page daemon (to avoid deadlock)
*/
volatile int uvm_wait_counter;
void
uvm_wait(const char *wmsg)
{
uint64_t timo = INFSLP;
#ifdef DIAGNOSTIC
if (curproc == &proc0)
panic("%s: cannot sleep for memory during boot", __func__);
#endif
/*
* check for page daemon going to sleep (waiting for itself)
*/
if (curproc == uvm.pagedaemon_proc) {
printf("uvm_wait emergency bufbackoff\n");
if (bufbackoff(NULL, 4) >= 4)
return;
/*
* now we have a problem: the pagedaemon wants to go to
* sleep until it frees more memory. but how can it
* free more memory if it is asleep? that is a deadlock.
* we have two options:
* [1] panic now
* [2] put a timeout on the sleep, thus causing the
* pagedaemon to only pause (rather than sleep forever)
*
* note that option [2] will only help us if we get lucky
* and some other process on the system breaks the deadlock
* by exiting or freeing memory (thus allowing the pagedaemon
* to continue). for now we panic if DEBUG is defined,
* otherwise we hope for the best with option [2] (better
* yet, this should never happen in the first place!).
*/
printf("pagedaemon: deadlock detected!\n");
timo = MSEC_TO_NSEC(125); /* set timeout */
#if defined(DEBUG)
/* DEBUG: panic so we can debug it */
panic("pagedaemon deadlock");
#endif
}
uvm_lock_fpageq();
atomic_inc_int(&uvm_wait_counter);
wakeup(&uvm.pagedaemon); /* wake the daemon! */
msleep_nsec(&uvmexp.free, &uvm.fpageqlock, PVM | PNORELOCK, wmsg, timo);
atomic_dec_int(&uvm_wait_counter);
}
/*
* uvmpd_tune: tune paging parameters
*/
void
uvmpd_tune(void)
{
int val;
val = uvmexp.npages / 30;
/* XXX: what are these values good for? */
val = max(val, (16*1024) >> PAGE_SHIFT);
/* Make sure there's always a user page free. */
if (val < uvmexp.reserve_kernel + 1)
val = uvmexp.reserve_kernel + 1;
uvmexp.freemin = val;
/* Calculate free target. */
val = (uvmexp.freemin * 4) / 3;
if (val <= uvmexp.freemin)
val = uvmexp.freemin + 1;
uvmexp.freetarg = val;
uvmexp.wiredmax = uvmexp.npages / 3;
}
/*
* Indicate to the page daemon that a nowait call failed and it should
* recover at least some memory in the most restricted region (assumed
* to be dma_constraint).
*/
struct uvm_pmalloc nowait_pma;
/*
* uvm_pageout: the main loop for the pagedaemon
*
* Sleeping pmemrange allocations may have multi-page alignment
* requirements which can't be satisfied by the simplistic freeing of
* pages. Our free list could be large enough that we don't need to
* free more, but too fragmented to satisfy a pending allocation. So
* we overshoot creation of inactive and free pages each time through
* the loop, which will eventually create some defragmention and
* satisfy the complex requirement.
*/
void
uvm_pageout(void *arg)
{
struct uvm_constraint_range constraint;
struct uvm_pmalloc *pma;
int shortage, inactive_shortage;
/* ensure correct priority and set paging parameters... */
uvm.pagedaemon_proc = curproc;
(void) spl0();
uvmpd_tune();
/*
* XXX realistically, this is what our nowait callers probably
* care about.
*/
nowait_pma.pm_constraint = dma_constraint;
nowait_pma.pm_size = (16 << PAGE_SHIFT); /* XXX */
nowait_pma.pm_flags = 0;
for (;;) {
long size = 0;
uvm_lock_fpageq();
if (TAILQ_EMPTY(&uvm.pmr_control.allocs) &&
uvm_wait_counter == 0) {
msleep_nsec(&uvm.pagedaemon, &uvm.fpageqlock, PVM,
"pgdaemon", INFSLP);
atomic_inc_int(&uvmexp.pdwoke);
}
if ((pma = TAILQ_FIRST(&uvm.pmr_control.allocs)) != NULL) {
size = pma->pm_size >> PAGE_SHIFT;
constraint = pma->pm_constraint;
} else {
constraint = no_constraint;
}
size = MAX(size, 128);
/* How many pages do we need to free during this round? */
shortage = uvmexp.freetarg - atomic_load_sint(&uvmexp.free) +
BUFPAGES_DEFICIT;
uvm_unlock_fpageq();
/*
* now lock page queues and recompute inactive count
*/
uvm_lock_pageq();
atomic_store_int(&uvmexp.inactarg,
(atomic_load_sint(&uvmexp.active) +
atomic_load_sint(&uvmexp.inactive)) / 3);
if (atomic_load_sint(&uvmexp.inactarg) <= uvmexp.freetarg) {
atomic_store_int(&uvmexp.inactarg, uvmexp.freetarg + 1);
}
inactive_shortage =
atomic_load_sint(&uvmexp.inactarg) -
atomic_load_sint(&uvmexp.inactive) - BUFPAGES_INACT;
uvm_unlock_pageq();
/* Reclaim pages from the buffer cache if possible. */
if (shortage > 0)
size += shortage;
shortage -= bufbackoff(&constraint, size * 2);
#if NDRM > 0
if (shortage > 0)
shortage -= drmbackoff(size * 2);
#endif
if (shortage > 0)
shortage -= uvm_pmr_cache_drain();
shortage = MAX(shortage, size);
inactive_shortage = MAX(inactive_shortage, shortage);
uvm_lock_pageq();
uvmpd_scan(&constraint, shortage, inactive_shortage);
/*
* if there's any free memory to be had,
* wake up any waiters.
*/
uvm_lock_fpageq();
if (atomic_load_sint(&uvmexp.free) > uvmexp.reserve_kernel ||
atomic_load_sint(&uvmexp.paging) == 0)
wakeup(&uvmexp.free);
uvm_unlock_fpageq();
/*
* scan done. unlock page queues (the only lock we are holding)
*/
uvm_unlock_pageq();
sched_pause(yield);
}
/*NOTREACHED*/
}
/*
* uvm_aiodone_daemon: main loop for the aiodone daemon.
*/
void
uvm_aiodone_daemon(void *arg)
{
int s, free;
struct buf *bp, *nbp;
uvm.aiodoned_proc = curproc;
KERNEL_UNLOCK();
for (;;) {
/*
* Check for done aio structures. If we've got structures to
* process, do so. Otherwise sleep while avoiding races.
*/
mtx_enter(&uvm.aiodoned_lock);
while ((bp = TAILQ_FIRST(&uvm.aio_done)) == NULL)
msleep_nsec(&uvm.aiodoned, &uvm.aiodoned_lock,
PVM, "aiodoned", INFSLP);
/* Take the list for ourselves. */
TAILQ_INIT(&uvm.aio_done);
mtx_leave(&uvm.aiodoned_lock);
/* process each i/o that's done. */
KERNEL_LOCK();
free = atomic_load_sint(&uvmexp.free);
while (bp != NULL) {
if (bp->b_flags & B_PDAEMON) {
atomic_sub_int(&uvmexp.paging,
bp->b_bufsize >> PAGE_SHIFT);
}
nbp = TAILQ_NEXT(bp, b_freelist);
s = splbio(); /* b_iodone must by called at splbio */
(*bp->b_iodone)(bp);
splx(s);
bp = nbp;
sched_pause(yield);
}
KERNEL_UNLOCK();
uvm_lock_fpageq();
wakeup(free <= uvmexp.reserve_kernel ? &uvm.pagedaemon :
&uvmexp.free);
uvm_unlock_fpageq();
}
}
/*
* uvmpd_trylockowner: trylock the page's owner.
*
* => return the locked rwlock on success. otherwise, return NULL.
*/
struct rwlock *
uvmpd_trylockowner(struct vm_page *pg)
{
struct uvm_object *uobj = pg->uobject;
struct rwlock *slock;
if (uobj != NULL) {
slock = uobj->vmobjlock;
} else {
struct vm_anon *anon = pg->uanon;
KASSERT(anon != NULL);
slock = anon->an_lock;
}
if (rw_enter(slock, RW_WRITE|RW_NOSLEEP)) {
return NULL;
}
return slock;
}
struct swapcluster {
int swc_slot;
int swc_nallocated;
int swc_nused;
struct vm_page *swc_pages[SWCLUSTPAGES];
};
void
swapcluster_init(struct swapcluster *swc)
{
swc->swc_slot = 0;
swc->swc_nused = 0;
}
int
swapcluster_allocslots(struct swapcluster *swc)
{
int slot, npages;
if (swc->swc_slot != 0)
return 0;
npages = SWCLUSTPAGES;
slot = uvm_swap_alloc(&npages, TRUE);
if (slot == 0)
return ENOMEM;
swc->swc_slot = slot;
swc->swc_nallocated = npages;
swc->swc_nused = 0;
return 0;
}
int
swapcluster_add(struct swapcluster *swc, struct vm_page *pg)
{
int slot;
struct uvm_object *uobj;
KASSERT(swc->swc_slot != 0);
KASSERT(swc->swc_nused < swc->swc_nallocated);
KASSERT((pg->pg_flags & PQ_SWAPBACKED) != 0);
slot = swc->swc_slot + swc->swc_nused;
uobj = pg->uobject;
if (uobj == NULL) {
KASSERT(rw_write_held(pg->uanon->an_lock));
pg->uanon->an_swslot = slot;
} else {
int result;
KASSERT(rw_write_held(uobj->vmobjlock));
result = uao_set_swslot(uobj, pg->offset >> PAGE_SHIFT, slot);
if (result == -1)
return ENOMEM;
}
swc->swc_pages[swc->swc_nused] = pg;
swc->swc_nused++;
return 0;
}
int
swapcluster_flush(struct swapcluster *swc)
{
int slot, nused, nallocated;
int result;
if (swc->swc_slot == 0)
return 0;
KASSERT(swc->swc_nused <= swc->swc_nallocated);
slot = swc->swc_slot;
nused = swc->swc_nused;
nallocated = swc->swc_nallocated;
if (nused < nallocated)
uvm_swap_free(slot + nused, nallocated - nused);
atomic_inc_int(&uvmexp.pdpageouts);
result = uvm_swap_put(slot, swc->swc_pages, nused, 0);
if (result != VM_PAGER_PEND) {
KASSERT(result == VM_PAGER_AGAIN);
uvm_swap_dropcluster(swc->swc_pages, nused, ENOMEM);
/* for transient failures, free all the swslots */
/* XXX daddr_t -> int */
uvm_swap_free(slot, nused);
}
/*
* zero swslot to indicate that we are
* no longer building a swap-backed cluster.
*/
swapcluster_init(swc);
return result;
}
static inline int
swapcluster_nused(struct swapcluster *swc)
{
return swc->swc_nused;
}
/*
* uvmpd_dropswap: free any swap allocated to this page.
*
* => called with owner locked.
* => return 1 if a page had an associated slot.
*/
int
uvmpd_dropswap(struct vm_page *pg)
{
struct vm_anon *anon = pg->uanon;
int slot, result = 0;
if ((pg->pg_flags & PQ_ANON) && anon->an_swslot) {
uvm_swap_free(anon->an_swslot, 1);
anon->an_swslot = 0;
result = 1;
} else if (pg->pg_flags & PQ_AOBJ) {
slot = uao_dropswap(pg->uobject, pg->offset >> PAGE_SHIFT);
if (slot)
result = 1;
}
return result;
}
/*
* Return 1 if the page `p' belongs to the memory range described by
* 'constraint', 0 otherwise.
*/
static inline int
uvmpd_match_constraint(struct vm_page *p,
struct uvm_constraint_range *constraint)
{
paddr_t paddr;
paddr = VM_PAGE_TO_PHYS(p);
if (paddr >= constraint->ucr_low && paddr < constraint->ucr_high)
return 1;
return 0;
}
struct vm_page *
uvmpd_iterator(struct pglist *pglst, struct vm_page *p, struct vm_page *iter)
{
struct vm_page *nextpg = NULL;
MUTEX_ASSERT_LOCKED(&uvm.pageqlock);
/* p is null to signal final swap i/o. */
if (p == NULL)
return NULL;
do {
nextpg = TAILQ_NEXT(iter, pageq);
} while (nextpg && (nextpg->pg_flags & PQ_ITER));
if (nextpg) {
TAILQ_REMOVE(pglst, iter, pageq);
TAILQ_INSERT_AFTER(pglst, nextpg, iter, pageq);
}
return nextpg;
}
/*
* uvmpd_scan_inactive: scan an inactive list for pages to clean or free.
*
* => called with page queues locked
* => we work on meeting our free target by converting inactive pages
* into free pages.
* => we handle the building of swap-backed clusters
* => we return TRUE if we are exiting because we met our target
*/
int
uvmpd_scan_inactive(struct uvm_constraint_range *constraint, int shortage)
{
struct pglist *pglst = &uvm.page_inactive;
int result, freed = 0;
struct vm_page *p, iter = { .pg_flags = PQ_ITER };
struct uvm_object *uobj;
struct vm_page *pps[SWCLUSTPAGES], **ppsp;
int npages;
struct swapcluster swc;
struct rwlock *slock;
struct vm_anon *anon;
boolean_t swap_backed;
int dirtyreacts;
/*
* swslot is non-zero if we are building a swap cluster. we want
* to stay in the loop while we have a page to scan or we have
* a swap-cluster to build.
*/
swapcluster_init(&swc);
dirtyreacts = 0;
p = NULL;
/*
* If a thread is waiting for us to release memory from a specific
* memory range start with the first page on the list that fits in
* it.
*/
TAILQ_FOREACH(p, pglst, pageq) {
if (uvmpd_match_constraint(p, constraint))
break;
}
if (p == NULL)
return 0;
/* Insert iterator. */
TAILQ_INSERT_AFTER(pglst, p, &iter, pageq);
for (; p != NULL; p = uvmpd_iterator(pglst, p, &iter)) {
/*
* see if we've met our target
*/
if (atomic_load_sint(&uvmexp.paging) + swapcluster_nused(&swc) >=
(shortage - freed) ||
dirtyreacts == UVMPD_NUMDIRTYREACTS) {
break;
}
/*
* we are below target and have a new page to consider.
*/
atomic_inc_int(&uvmexp.pdscans);
/*
* If we are not short on memory and only interested
* in releasing pages from a given memory range, do not
* bother with other pages.
*/
if (atomic_load_sint(&uvmexp.paging) >= (shortage - freed) &&
!uvmpd_match_constraint(p, constraint))
continue;
anon = p->uanon;
uobj = p->uobject;
/*
* first we attempt to lock the object that this page
* belongs to. if our attempt fails we skip on to
* the next page (no harm done). it is important to
* "try" locking the object as we are locking in the
* wrong order (pageq -> object) and we don't want to
* deadlock.
*/
slock = uvmpd_trylockowner(p);
if (slock == NULL) {
continue;
}
/*
* move referenced pages back to active queue
* and skip to next page.
*/
if (pmap_is_referenced(p)) {
uvm_unlock_pageq();
uvm_pageactivate(p);
rw_exit(slock);
uvm_lock_pageq();
atomic_inc_int(&uvmexp.pdreact);
continue;
}
if (p->pg_flags & PG_BUSY) {
rw_exit(slock);
atomic_inc_int(&uvmexp.pdbusy);
continue;
}
/* does the page belong to an object? */
if (uobj != NULL) {
atomic_inc_int(&uvmexp.pdobscan);
} else {
KASSERT(anon != NULL);
atomic_inc_int(&uvmexp.pdanscan);
}
/*
* we now have the page queues locked.
* the page is not busy. if the page is clean we
* can free it now and continue.
*/
if (p->pg_flags & PG_CLEAN) {
if (p->pg_flags & PQ_SWAPBACKED) {
/* this page now lives only in swap */
atomic_inc_int(&uvmexp.swpgonly);
}
/* zap all mappings with pmap_page_protect... */
pmap_page_protect(p, PROT_NONE);
/* dequeue first to prevent lock recursion */
if (p->pg_flags & (PQ_ACTIVE|PQ_INACTIVE))
uvm_pagedequeue(p);
uvm_pagefree(p);
freed++;
if (anon) {
/*
* an anonymous page can only be clean
* if it has backing store assigned.
*/
KASSERT(anon->an_swslot != 0);
/* remove from object */
anon->an_page = NULL;
}
rw_exit(slock);
continue;
}
/*
* this page is dirty, skip it if we'll have met our
* free target when all the current pageouts complete.
*/
if (atomic_load_sint(&uvmexp.paging) > (shortage - freed)) {
rw_exit(slock);
continue;
}
/*
* If no swap encrypt buffers left, leave the page on the
* inactive list for future processing
*/
if (seb_free == 0) {
rw_exit(slock);
atomic_inc_int(&uvmexp.swpskip);
continue;
}
/*
* this page is dirty, but we can't page it out
* since all pages in swap are only in swap.
* reactivate it so that we eventually cycle
* all pages thru the inactive queue.
*/
if ((p->pg_flags & PQ_SWAPBACKED) && uvm_swapisfull()) {
dirtyreacts++;
uvm_unlock_pageq();
uvm_pageactivate(p);
rw_exit(slock);
uvm_lock_pageq();
continue;
}
/*
* if the page is swap-backed and dirty and swap space
* is full, free any swap allocated to the page
* so that other pages can be paged out.
*/
if ((p->pg_flags & PQ_SWAPBACKED) && uvm_swapisfilled())
uvmpd_dropswap(p);
/*
* the page we are looking at is dirty. we must
* clean it before it can be freed. to do this we
* first mark the page busy so that no one else will
* touch the page. we write protect all the mappings
* of the page so that no one touches it while it is
* in I/O.
*/
swap_backed = ((p->pg_flags & PQ_SWAPBACKED) != 0);
atomic_setbits_int(&p->pg_flags, PG_BUSY);
UVM_PAGE_OWN(p, "scan_inactive");
pmap_page_protect(p, PROT_READ);
atomic_inc_int(&uvmexp.pgswapout);
/*
* for swap-backed pages we need to (re)allocate
* swap space.
*/
if (swap_backed) {
/* free old swap slot (if any) */
uvmpd_dropswap(p);
/* start new cluster (if necessary) */
if (swapcluster_allocslots(&swc)) {
atomic_clearbits_int(&p->pg_flags, PG_BUSY);
UVM_PAGE_OWN(p, NULL);
dirtyreacts++;
uvm_unlock_pageq();
uvm_pageactivate(p);
rw_exit(slock);
uvm_lock_pageq();
continue;
}
/* add block to cluster */
if (swapcluster_add(&swc, p)) {
atomic_clearbits_int(&p->pg_flags, PG_BUSY);
UVM_PAGE_OWN(p, NULL);
dirtyreacts++;
uvm_unlock_pageq();
uvm_pageactivate(p);
rw_exit(slock);
uvm_lock_pageq();
continue;
}
rw_exit(slock);
/* cluster not full yet? */
if (swc.swc_nused < swc.swc_nallocated)
continue;
}
/*
* now consider doing the pageout.
*
* for swap-backed pages, we do the pageout if we have either
* filled the cluster or run out of pages.
*
* for object pages, we always do the pageout.
*/
atomic_inc_int(&uvmexp.pdpageouts);
if (swap_backed) {
uvm_unlock_pageq();
/* starting I/O now... set up for it */
npages = swc.swc_nused;
result = swapcluster_flush(&swc);
} else {
/* normal object pageout */
ppsp = pps;
npages = nitems(pps);
/*
* uvm_pager_put() will call the object's "make put
* cluster" function to build a cluster on our behalf.
* we pass the PGO_PDFREECLUST flag to uvm_pager_put()
* to instruct it to free the cluster pages for us on
* a successful I/O (it always does this for un-
* successful I/O requests). this allows us to do
* clustered pageout without having to deal with
* cluster pages at this level.
*/
result = uvm_pager_put(uobj, p, &ppsp, &npages,
PGO_ALLPAGES|PGO_PDFREECLUST, 0, 0);
rw_exit(slock);
}
uvm_lock_pageq();
if (result == VM_PAGER_PEND) {
atomic_add_int(&uvmexp.paging, npages);
atomic_inc_int(&uvmexp.pdpending);
}
}
TAILQ_REMOVE(pglst, &iter, pageq);
/* final swap-backed clustered pageout */
if (swc.swc_slot > 0) {
uvm_unlock_pageq();
npages = swc.swc_nused;
result = swapcluster_flush(&swc);
uvm_lock_pageq();
if (result == VM_PAGER_PEND) {
atomic_add_int(&uvmexp.paging, npages);
atomic_inc_int(&uvmexp.pdpending);
}
}
return freed;
}
/*
* uvmpd_scan: scan the page queues and attempt to meet our targets.
*
* => called with pageq's locked
*/
void
uvmpd_scan(struct uvm_constraint_range *constraint, int shortage, int inactive_shortage)
{
int swap_shortage, pages_freed;
struct pglist *pglst = &uvm.page_active;
struct vm_page *p, iter = { .pg_flags = PQ_ITER };
struct rwlock *slock;
MUTEX_ASSERT_LOCKED(&uvm.pageqlock);
atomic_inc_int(&uvmexp.pdrevs); /* counter */
/*
* now we want to work on meeting our targets. first we work on our
* free target by converting inactive pages into free pages. then
* we work on meeting our inactive target by converting active pages
* to inactive ones.
*/
pages_freed = uvmpd_scan_inactive(constraint, shortage);
atomic_add_int(&uvmexp.pdfreed, pages_freed);
shortage -= pages_freed;
/*
* we have done the scan to get free pages. now we work on meeting
* our inactive target.
*
* detect if we're not going to be able to page anything out
* until we free some swap resources from active pages.
*/
swap_shortage = 0;
if ((shortage > 0) && uvm_swapisfilled() && !uvm_swapisfull() &&
pages_freed == 0) {
swap_shortage = shortage;
}
if ((p = TAILQ_FIRST(pglst)) == NULL)
return;
/* Insert iterator. */
TAILQ_INSERT_AFTER(pglst, p, &iter, pageq);
for (; p != NULL && (inactive_shortage > 0 || swap_shortage > 0);
p = uvmpd_iterator(pglst, p, &iter)) {
if (p->pg_flags & PG_BUSY) {
continue;
}
/*
* If we couldn't release enough pages from a given memory
* range try to deactivate them first...
*
* ...unless we are low on swap slots, in such case we are
* probably OOM and want to release swap resources as quickly
* as possible.
*/
if (inactive_shortage > 0 && swap_shortage == 0 &&
!uvmpd_match_constraint(p, constraint))
continue;
/*
* lock the page's owner.
*/
slock = uvmpd_trylockowner(p);
if (slock == NULL) {
continue;
}
/*
* skip this page if it's busy.
*/
if ((p->pg_flags & PG_BUSY) != 0) {
rw_exit(slock);
continue;
}
/*
* if there's a shortage of swap, free any swap allocated
* to this page so that other pages can be paged out.
*/
if (swap_shortage > 0) {
if (uvmpd_dropswap(p)) {
atomic_clearbits_int(&p->pg_flags, PG_CLEAN);
swap_shortage--;
}
}
/*
* deactivate this page if there's a shortage of
* inactive pages.
*/
if (inactive_shortage > 0) {
uvm_unlock_pageq();
uvm_pagedeactivate(p);
uvm_lock_pageq();
atomic_inc_int(&uvmexp.pddeact);
inactive_shortage--;
}
/*
* we're done with this page.
*/
rw_exit(slock);
}
TAILQ_REMOVE(pglst, &iter, pageq);
}
#ifdef HIBERNATE
/*
* uvmpd_drop: drop clean pages from list
*/
void
uvmpd_drop(struct pglist *pglst)
{
struct vm_page *p, *nextpg;
for (p = TAILQ_FIRST(pglst); p != NULL; p = nextpg) {
nextpg = TAILQ_NEXT(p, pageq);
if (p->pg_flags & PQ_ANON || p->uobject == NULL)
continue;
if (p->pg_flags & PG_BUSY)
continue;
if (p->pg_flags & PG_CLEAN) {
struct uvm_object * uobj = p->uobject;
rw_enter(uobj->vmobjlock, RW_WRITE);
/*
* we now have the page queues locked.
* the page is not busy. if the page is clean we
* can free it now and continue.
*/
if (p->pg_flags & PG_CLEAN) {
if (p->pg_flags & PQ_SWAPBACKED) {
/* this page now lives only in swap */
atomic_inc_int(&uvmexp.swpgonly);
}
/* zap all mappings with pmap_page_protect... */
pmap_page_protect(p, PROT_NONE);
uvm_pagefree(p);
}
rw_exit(uobj->vmobjlock);
}
}
}
void
uvmpd_hibernate(void)
{
uvmpd_drop(&uvm.page_inactive);
uvmpd_drop(&uvm.page_active);
}
#endif