2001-03-11 01:46:45 +03:00
|
|
|
/* $NetBSD: uvm_pdaemon.c,v 1.31 2001/03/10 22:46:50 chs Exp $ */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Charles D. Cranor,
|
|
|
|
* Washington University, the University of California, Berkeley and
|
|
|
|
* its contributors.
|
|
|
|
* 4. 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
|
1998-02-07 14:07:38 +03:00
|
|
|
* from: Id: uvm_pdaemon.c,v 1.1.2.32 1998/02/06 05:26:30 chs Exp
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
1998-02-10 17:08:44 +03:00
|
|
|
#include "opt_uvmhist.h"
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* uvm_pdaemon.c: the page daemon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
1998-07-24 00:36:09 +04:00
|
|
|
#include <sys/pool.h>
|
2000-11-27 11:39:39 +03:00
|
|
|
#include <sys/buf.h>
|
2001-03-09 04:02:10 +03:00
|
|
|
#include <sys/vnode.h>
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
#include <uvm/uvm.h>
|
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
/*
|
|
|
|
* UVMPD_NUMDIRTYREACTS is how many dirty pages the pagedeamon 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
|
|
|
|
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* local prototypes
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void uvmpd_scan __P((void));
|
|
|
|
static boolean_t uvmpd_scan_inactive __P((struct pglist *));
|
|
|
|
static void uvmpd_tune __P((void));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
|
1999-11-05 00:51:42 +03:00
|
|
|
void
|
|
|
|
uvm_wait(wmsg)
|
|
|
|
const char *wmsg;
|
1998-03-09 03:58:55 +03:00
|
|
|
{
|
|
|
|
int timo = 0;
|
|
|
|
int s = splbio();
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* check for page daemon going to sleep (waiting for itself)
|
|
|
|
*/
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (curproc == uvm.pagedaemon_proc) {
|
|
|
|
/*
|
|
|
|
* 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 = hz >> 3; /* set timeout */
|
1998-02-05 09:25:08 +03:00
|
|
|
#if defined(DEBUG)
|
1998-03-09 03:58:55 +03:00
|
|
|
/* DEBUG: panic so we can debug it */
|
|
|
|
panic("pagedaemon deadlock");
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
simple_lock(&uvm.pagedaemon_lock);
|
1999-07-23 02:58:38 +04:00
|
|
|
wakeup(&uvm.pagedaemon); /* wake the daemon! */
|
1998-03-09 03:58:55 +03:00
|
|
|
UVM_UNLOCK_AND_WAIT(&uvmexp.free, &uvm.pagedaemon_lock, FALSE, wmsg,
|
|
|
|
timo);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
splx(s);
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvmpd_tune: tune paging parameters
|
|
|
|
*
|
|
|
|
* => called when ever memory is added (or removed?) to the system
|
|
|
|
* => caller must call with page queues locked
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
static void
|
|
|
|
uvmpd_tune()
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
UVMHIST_FUNC("uvmpd_tune"); UVMHIST_CALLED(pdhist);
|
|
|
|
|
|
|
|
uvmexp.freemin = uvmexp.npages / 20;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* between 16k and 256k */
|
|
|
|
/* XXX: what are these values good for? */
|
1998-10-19 03:49:59 +04:00
|
|
|
uvmexp.freemin = max(uvmexp.freemin, (16*1024) >> PAGE_SHIFT);
|
|
|
|
uvmexp.freemin = min(uvmexp.freemin, (256*1024) >> PAGE_SHIFT);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2000-08-20 14:24:14 +04:00
|
|
|
/* Make sure there's always a user page free. */
|
|
|
|
if (uvmexp.freemin < uvmexp.reserve_kernel + 1)
|
|
|
|
uvmexp.freemin = uvmexp.reserve_kernel + 1;
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
uvmexp.freetarg = (uvmexp.freemin * 4) / 3;
|
|
|
|
if (uvmexp.freetarg <= uvmexp.freemin)
|
|
|
|
uvmexp.freetarg = uvmexp.freemin + 1;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* uvmexp.inactarg: computed in main daemon loop */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
uvmexp.wiredmax = uvmexp.npages / 3;
|
|
|
|
UVMHIST_LOG(pdhist, "<- done, freemin=%d, freetarg=%d, wiredmax=%d",
|
1998-02-05 09:25:08 +03:00
|
|
|
uvmexp.freemin, uvmexp.freetarg, uvmexp.wiredmax, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_pageout: the main loop for the pagedaemon
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
2000-08-13 02:41:53 +04:00
|
|
|
uvm_pageout(void *arg)
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1998-03-09 03:58:55 +03:00
|
|
|
int npages = 0;
|
|
|
|
UVMHIST_FUNC("uvm_pageout"); UVMHIST_CALLED(pdhist);
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
UVMHIST_LOG(pdhist,"<starting uvm pagedaemon>", 0, 0, 0, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ensure correct priority and set paging parameters...
|
|
|
|
*/
|
|
|
|
|
|
|
|
uvm.pagedaemon_proc = curproc;
|
|
|
|
(void) spl0();
|
|
|
|
uvm_lock_pageq();
|
|
|
|
npages = uvmexp.npages;
|
|
|
|
uvmpd_tune();
|
|
|
|
uvm_unlock_pageq();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* main loop
|
|
|
|
*/
|
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
for (;;) {
|
1998-03-09 03:58:55 +03:00
|
|
|
simple_lock(&uvm.pagedaemon_lock);
|
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
UVMHIST_LOG(pdhist," <<SLEEPING>>",0,0,0,0);
|
|
|
|
UVM_UNLOCK_AND_WAIT(&uvm.pagedaemon,
|
|
|
|
&uvm.pagedaemon_lock, FALSE, "pgdaemon", 0);
|
|
|
|
uvmexp.pdwoke++;
|
|
|
|
UVMHIST_LOG(pdhist," <<WOKE UP>>",0,0,0,0);
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
/* drain pool resources */
|
1998-07-24 00:36:09 +04:00
|
|
|
pool_drain(0);
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* now lock page queues and recompute inactive count
|
|
|
|
*/
|
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
uvm_lock_pageq();
|
1998-03-09 03:58:55 +03:00
|
|
|
if (npages != uvmexp.npages) { /* check for new pages? */
|
|
|
|
npages = uvmexp.npages;
|
|
|
|
uvmpd_tune();
|
|
|
|
}
|
|
|
|
|
|
|
|
uvmexp.inactarg = (uvmexp.active + uvmexp.inactive) / 3;
|
2000-11-27 11:39:39 +03:00
|
|
|
if (uvmexp.inactarg <= uvmexp.freetarg) {
|
1998-03-09 03:58:55 +03:00
|
|
|
uvmexp.inactarg = uvmexp.freetarg + 1;
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
UVMHIST_LOG(pdhist," free/ftarg=%d/%d, inact/itarg=%d/%d",
|
|
|
|
uvmexp.free, uvmexp.freetarg, uvmexp.inactive,
|
|
|
|
uvmexp.inactarg);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scan if needed
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
if (uvmexp.free + uvmexp.paging < uvmexp.freetarg ||
|
2001-03-09 04:02:10 +03:00
|
|
|
uvmexp.inactive < uvmexp.inactarg) {
|
1998-03-09 03:58:55 +03:00
|
|
|
uvmpd_scan();
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if there's any free memory to be had,
|
|
|
|
* wake up any waiters.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (uvmexp.free > uvmexp.reserve_kernel ||
|
|
|
|
uvmexp.paging == 0) {
|
|
|
|
wakeup(&uvmexp.free);
|
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* scan done. unlock page queues (the only lock we are holding)
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
uvm_unlock_pageq();
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_aiodone_daemon: main loop for the aiodone daemon.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
uvm_aiodone_daemon(void *arg)
|
|
|
|
{
|
|
|
|
int s, free;
|
|
|
|
struct buf *bp, *nbp;
|
|
|
|
UVMHIST_FUNC("uvm_aiodoned"); UVMHIST_CALLED(pdhist);
|
|
|
|
|
|
|
|
for (;;) {
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* carefully attempt to go to sleep (without losing "wakeups"!).
|
|
|
|
* we need splbio because we want to make sure the aio_done list
|
|
|
|
* is totally empty before we go to sleep.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
s = splbio();
|
|
|
|
simple_lock(&uvm.aiodoned_lock);
|
|
|
|
if (TAILQ_FIRST(&uvm.aio_done) == NULL) {
|
|
|
|
UVMHIST_LOG(pdhist," <<SLEEPING>>",0,0,0,0);
|
|
|
|
UVM_UNLOCK_AND_WAIT(&uvm.aiodoned,
|
|
|
|
&uvm.aiodoned_lock, FALSE, "aiodoned", 0);
|
|
|
|
UVMHIST_LOG(pdhist," <<WOKE UP>>",0,0,0,0);
|
|
|
|
|
|
|
|
/* relock aiodoned_lock, still at splbio */
|
|
|
|
simple_lock(&uvm.aiodoned_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check for done aio structures
|
|
|
|
*/
|
|
|
|
|
|
|
|
bp = TAILQ_FIRST(&uvm.aio_done);
|
|
|
|
if (bp) {
|
|
|
|
TAILQ_INIT(&uvm.aio_done);
|
|
|
|
}
|
|
|
|
|
|
|
|
simple_unlock(&uvm.aiodoned_lock);
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* process each i/o that's done.
|
|
|
|
*/
|
|
|
|
|
|
|
|
free = uvmexp.free;
|
|
|
|
while (bp != NULL) {
|
|
|
|
if (bp->b_flags & B_PDAEMON) {
|
|
|
|
uvmexp.paging -= bp->b_bufsize >> PAGE_SHIFT;
|
|
|
|
}
|
|
|
|
nbp = TAILQ_NEXT(bp, b_freelist);
|
|
|
|
(*bp->b_iodone)(bp);
|
|
|
|
bp = nbp;
|
|
|
|
}
|
|
|
|
if (free <= uvmexp.reserve_kernel) {
|
|
|
|
s = uvm_lock_fpageq();
|
|
|
|
wakeup(&uvm.pagedaemon);
|
|
|
|
uvm_unlock_fpageq(s);
|
|
|
|
} else {
|
|
|
|
simple_lock(&uvm.pagedaemon_lock);
|
1999-07-23 02:58:38 +04:00
|
|
|
wakeup(&uvmexp.free);
|
2000-11-27 11:39:39 +03:00
|
|
|
simple_unlock(&uvm.pagedaemon_lock);
|
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* uvmpd_scan_inactive: scan an inactive list for pages to clean or free.
|
1998-02-05 09:25:08 +03:00
|
|
|
*
|
|
|
|
* => 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
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
static boolean_t
|
|
|
|
uvmpd_scan_inactive(pglst)
|
|
|
|
struct pglist *pglst;
|
|
|
|
{
|
|
|
|
boolean_t retval = FALSE; /* assume we haven't hit target */
|
|
|
|
int s, free, result;
|
|
|
|
struct vm_page *p, *nextpg;
|
|
|
|
struct uvm_object *uobj;
|
1998-10-19 03:49:59 +04:00
|
|
|
struct vm_page *pps[MAXBSIZE >> PAGE_SHIFT], **ppsp;
|
1998-03-09 03:58:55 +03:00
|
|
|
int npages;
|
1998-10-19 03:49:59 +04:00
|
|
|
struct vm_page *swpps[MAXBSIZE >> PAGE_SHIFT]; /* XXX: see below */
|
1998-03-09 03:58:55 +03:00
|
|
|
int swnpages, swcpages; /* XXX: see below */
|
1999-03-26 20:33:30 +03:00
|
|
|
int swslot;
|
1998-03-09 03:58:55 +03:00
|
|
|
struct vm_anon *anon;
|
2001-03-09 04:02:10 +03:00
|
|
|
boolean_t swap_backed;
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t start;
|
2001-03-09 04:02:10 +03:00
|
|
|
int dirtyreacts, t;
|
1998-03-09 03:58:55 +03:00
|
|
|
UVMHIST_FUNC("uvmpd_scan_inactive"); UVMHIST_CALLED(pdhist);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* note: we currently keep swap-backed pages on a seperate inactive
|
|
|
|
* list from object-backed pages. however, merging the two lists
|
|
|
|
* back together again hasn't been ruled out. thus, we keep our
|
|
|
|
* swap cluster in "swpps" rather than in pps (allows us to mix
|
|
|
|
* clustering types in the event of a mixed inactive queue).
|
|
|
|
*/
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* swslot is non-zero if we are building a swap cluster. we want
|
2000-11-27 11:39:39 +03:00
|
|
|
* to stay in the loop while we have a page to scan or we have
|
1998-03-09 03:58:55 +03:00
|
|
|
* a swap-cluster to build.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
swslot = 0;
|
|
|
|
swnpages = swcpages = 0;
|
|
|
|
free = 0;
|
1999-03-26 20:33:30 +03:00
|
|
|
dirtyreacts = 0;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
for (p = TAILQ_FIRST(pglst); p != NULL || swslot != 0; p = nextpg) {
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* note that p can be NULL iff we have traversed the whole
|
|
|
|
* list and need to do one final swap-backed clustered pageout.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
uobj = NULL;
|
|
|
|
anon = NULL;
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (p) {
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* update our copy of "free" and see if we've met
|
|
|
|
* our target
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-05-24 23:10:57 +04:00
|
|
|
s = uvm_lock_fpageq();
|
1998-03-09 03:58:55 +03:00
|
|
|
free = uvmexp.free;
|
1999-05-24 23:10:57 +04:00
|
|
|
uvm_unlock_fpageq(s);
|
1998-03-09 03:58:55 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
if (free + uvmexp.paging >= uvmexp.freetarg << 2 ||
|
2001-03-09 04:02:10 +03:00
|
|
|
dirtyreacts == UVMPD_NUMDIRTYREACTS) {
|
|
|
|
UVMHIST_LOG(pdhist," met free target: "
|
|
|
|
"exit loop", 0, 0, 0, 0);
|
|
|
|
retval = TRUE;
|
|
|
|
|
|
|
|
if (swslot == 0) {
|
|
|
|
/* exit now if no swap-i/o pending */
|
|
|
|
break;
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
2001-03-09 04:02:10 +03:00
|
|
|
|
|
|
|
/* set p to null to signal final swap i/o */
|
|
|
|
p = NULL;
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p) { /* if (we have a new page to consider) */
|
2001-03-09 04:02:10 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* we are below target and have a new page to consider.
|
|
|
|
*/
|
|
|
|
uvmexp.pdscans++;
|
2000-11-27 11:39:39 +03:00
|
|
|
nextpg = TAILQ_NEXT(p, pageq);
|
1998-03-09 03:58:55 +03:00
|
|
|
|
2001-01-25 03:10:03 +03:00
|
|
|
/*
|
|
|
|
* move referenced pages back to active queue and
|
2001-03-09 04:02:10 +03:00
|
|
|
* skip to next page.
|
2001-01-25 03:10:03 +03:00
|
|
|
*/
|
2001-03-09 04:02:10 +03:00
|
|
|
|
2001-01-25 03:10:03 +03:00
|
|
|
if (pmap_is_referenced(p)) {
|
|
|
|
uvm_pageactivate(p);
|
|
|
|
uvmexp.pdreact++;
|
|
|
|
continue;
|
|
|
|
}
|
2001-03-09 04:02:10 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* enforce the minimum thresholds on different
|
|
|
|
* types of memory usage. if reusing the current
|
|
|
|
* page would reduce that type of usage below its
|
|
|
|
* minimum, reactivate the page instead and move
|
|
|
|
* on to the next page.
|
|
|
|
*/
|
|
|
|
|
|
|
|
t = uvmexp.active + uvmexp.inactive + uvmexp.free;
|
|
|
|
if (p->uanon &&
|
|
|
|
uvmexp.anonpages <= (t * uvmexp.anonmin) >> 8) {
|
|
|
|
uvm_pageactivate(p);
|
|
|
|
uvmexp.pdreanon++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (p->uobject && UVM_OBJ_IS_VTEXT(p->uobject) &&
|
|
|
|
uvmexp.vtextpages <= (t * uvmexp.vtextmin) >> 8) {
|
|
|
|
uvm_pageactivate(p);
|
|
|
|
uvmexp.pdrevtext++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (p->uobject && UVM_OBJ_IS_VNODE(p->uobject) &&
|
|
|
|
!UVM_OBJ_IS_VTEXT(p->uobject) &&
|
|
|
|
uvmexp.vnodepages <= (t * uvmexp.vnodemin) >> 8) {
|
|
|
|
uvm_pageactivate(p);
|
|
|
|
uvmexp.pdrevnode++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* 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
|
2000-11-27 11:39:39 +03:00
|
|
|
* deadlock.
|
1998-03-09 03:58:55 +03:00
|
|
|
*
|
2000-11-27 11:39:39 +03:00
|
|
|
* the only time we expect to see an ownerless page
|
1998-03-09 03:58:55 +03:00
|
|
|
* (i.e. a page with no uobject and !PQ_ANON) is if an
|
|
|
|
* anon has loaned a page from a uvm_object and the
|
|
|
|
* uvm_object has dropped the ownership. in that
|
|
|
|
* case, the anon can "take over" the loaned page
|
|
|
|
* and make it its own.
|
|
|
|
*/
|
2001-03-09 04:02:10 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* is page part of an anon or ownerless ? */
|
|
|
|
if ((p->pqflags & PQ_ANON) || p->uobject == NULL) {
|
|
|
|
anon = p->uanon;
|
2000-11-27 11:39:39 +03:00
|
|
|
KASSERT(anon != NULL);
|
2001-03-09 04:02:10 +03:00
|
|
|
if (!simple_lock_try(&anon->an_lock)) {
|
1998-03-09 03:58:55 +03:00
|
|
|
/* lock failed, skip this page */
|
|
|
|
continue;
|
2001-03-09 04:02:10 +03:00
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* if the page is ownerless, claim it in the
|
|
|
|
* name of "anon"!
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if ((p->pqflags & PQ_ANON) == 0) {
|
2000-11-27 11:39:39 +03:00
|
|
|
KASSERT(p->loan_count > 0);
|
1998-03-09 03:58:55 +03:00
|
|
|
p->loan_count--;
|
2000-11-27 11:39:39 +03:00
|
|
|
p->pqflags |= PQ_ANON;
|
|
|
|
/* anon now owns it */
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
if (p->flags & PG_BUSY) {
|
|
|
|
simple_unlock(&anon->an_lock);
|
|
|
|
uvmexp.pdbusy++;
|
|
|
|
/* someone else owns page, skip it */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uvmexp.pdanscan++;
|
|
|
|
} else {
|
|
|
|
uobj = p->uobject;
|
2000-11-27 11:39:39 +03:00
|
|
|
KASSERT(uobj != NULL);
|
2001-03-09 04:02:10 +03:00
|
|
|
if (!simple_lock_try(&uobj->vmobjlock)) {
|
1998-03-09 03:58:55 +03:00
|
|
|
/* lock failed, skip this page */
|
2000-11-27 11:39:39 +03:00
|
|
|
continue;
|
2001-03-09 04:02:10 +03:00
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
if (p->flags & PG_BUSY) {
|
|
|
|
simple_unlock(&uobj->vmobjlock);
|
|
|
|
uvmexp.pdbusy++;
|
|
|
|
/* someone else owns page, skip it */
|
2000-11-27 11:39:39 +03:00
|
|
|
continue;
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
uvmexp.pdobscan++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we now have the object and the page queues locked.
|
Page scanner improvements, behavior is actually a bit more like
Mach VM's now. Specific changes:
- Pages now need not have all of their mappings removed before being
put on the inactive list. They only need to have the "referenced"
attribute cleared. This makes putting pages onto the inactive list
much more efficient. In order to eliminate redundant clearings of
"refrenced", callers of uvm_pagedeactivate() must now do this
themselves.
- When checking the "modified" attribute for a page (for clearing
PG_CLEAN), make sure to only do it if PG_CLEAN is currently set on
the page (saves a potentially expensive pmap operation).
- When scanning the inactive list, if a page is referenced, reactivate
it (this part was actually added in uvm_pdaemon.c,v 1.27). This
now works properly now that pages on the inactive list are allowed to
have mappings.
- When scanning the inactive list and considering a page for freeing,
remove all mappings, and then check the "modified" attribute if the
page is marked PG_CLEAN.
- When scanning the active list, if the page was referenced since its
last sweep by the scanner, don't deactivate it. (This part was
actually added in uvm_pdaemon.c,v 1.28.)
These changes greatly improve interactive performance during
moderate to high memory and I/O load.
2001-01-29 02:30:42 +03:00
|
|
|
* the page is not busy. remove all the permissions
|
|
|
|
* from the page so we can sync the modified info
|
|
|
|
* without any race conditions. if the page is clean
|
|
|
|
* we can free it now and continue.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
|
|
|
|
Page scanner improvements, behavior is actually a bit more like
Mach VM's now. Specific changes:
- Pages now need not have all of their mappings removed before being
put on the inactive list. They only need to have the "referenced"
attribute cleared. This makes putting pages onto the inactive list
much more efficient. In order to eliminate redundant clearings of
"refrenced", callers of uvm_pagedeactivate() must now do this
themselves.
- When checking the "modified" attribute for a page (for clearing
PG_CLEAN), make sure to only do it if PG_CLEAN is currently set on
the page (saves a potentially expensive pmap operation).
- When scanning the inactive list, if a page is referenced, reactivate
it (this part was actually added in uvm_pdaemon.c,v 1.27). This
now works properly now that pages on the inactive list are allowed to
have mappings.
- When scanning the inactive list and considering a page for freeing,
remove all mappings, and then check the "modified" attribute if the
page is marked PG_CLEAN.
- When scanning the active list, if the page was referenced since its
last sweep by the scanner, don't deactivate it. (This part was
actually added in uvm_pdaemon.c,v 1.28.)
These changes greatly improve interactive performance during
moderate to high memory and I/O load.
2001-01-29 02:30:42 +03:00
|
|
|
pmap_page_protect(p, VM_PROT_NONE);
|
2001-03-09 04:02:10 +03:00
|
|
|
if ((p->flags & PG_CLEAN) != 0 && pmap_is_modified(p)) {
|
Page scanner improvements, behavior is actually a bit more like
Mach VM's now. Specific changes:
- Pages now need not have all of their mappings removed before being
put on the inactive list. They only need to have the "referenced"
attribute cleared. This makes putting pages onto the inactive list
much more efficient. In order to eliminate redundant clearings of
"refrenced", callers of uvm_pagedeactivate() must now do this
themselves.
- When checking the "modified" attribute for a page (for clearing
PG_CLEAN), make sure to only do it if PG_CLEAN is currently set on
the page (saves a potentially expensive pmap operation).
- When scanning the inactive list, if a page is referenced, reactivate
it (this part was actually added in uvm_pdaemon.c,v 1.27). This
now works properly now that pages on the inactive list are allowed to
have mappings.
- When scanning the inactive list and considering a page for freeing,
remove all mappings, and then check the "modified" attribute if the
page is marked PG_CLEAN.
- When scanning the active list, if the page was referenced since its
last sweep by the scanner, don't deactivate it. (This part was
actually added in uvm_pdaemon.c,v 1.28.)
These changes greatly improve interactive performance during
moderate to high memory and I/O load.
2001-01-29 02:30:42 +03:00
|
|
|
p->flags &= ~PG_CLEAN;
|
2001-03-09 04:02:10 +03:00
|
|
|
}
|
Page scanner improvements, behavior is actually a bit more like
Mach VM's now. Specific changes:
- Pages now need not have all of their mappings removed before being
put on the inactive list. They only need to have the "referenced"
attribute cleared. This makes putting pages onto the inactive list
much more efficient. In order to eliminate redundant clearings of
"refrenced", callers of uvm_pagedeactivate() must now do this
themselves.
- When checking the "modified" attribute for a page (for clearing
PG_CLEAN), make sure to only do it if PG_CLEAN is currently set on
the page (saves a potentially expensive pmap operation).
- When scanning the inactive list, if a page is referenced, reactivate
it (this part was actually added in uvm_pdaemon.c,v 1.27). This
now works properly now that pages on the inactive list are allowed to
have mappings.
- When scanning the inactive list and considering a page for freeing,
remove all mappings, and then check the "modified" attribute if the
page is marked PG_CLEAN.
- When scanning the active list, if the page was referenced since its
last sweep by the scanner, don't deactivate it. (This part was
actually added in uvm_pdaemon.c,v 1.28.)
These changes greatly improve interactive performance during
moderate to high memory and I/O load.
2001-01-29 02:30:42 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (p->flags & PG_CLEAN) {
|
1999-03-26 20:33:30 +03:00
|
|
|
if (p->pqflags & PQ_SWAPBACKED) {
|
|
|
|
/* this page now lives only in swap */
|
|
|
|
simple_lock(&uvm.swap_data_lock);
|
|
|
|
uvmexp.swpgonly++;
|
|
|
|
simple_unlock(&uvm.swap_data_lock);
|
|
|
|
}
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
uvm_pagefree(p);
|
|
|
|
uvmexp.pdfreed++;
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (anon) {
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* an anonymous page can only be clean
|
2000-11-27 11:39:39 +03:00
|
|
|
* if it has backing store assigned.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
KASSERT(anon->an_swslot != 0);
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* remove from object */
|
|
|
|
anon->u.an_page = NULL;
|
|
|
|
simple_unlock(&anon->an_lock);
|
|
|
|
} else {
|
|
|
|
/* pagefree has already removed the
|
|
|
|
* page from the object */
|
|
|
|
simple_unlock(&uobj->vmobjlock);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this page is dirty, skip it if we'll have met our
|
|
|
|
* free target when all the current pageouts complete.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2001-03-09 04:02:10 +03:00
|
|
|
if (free + uvmexp.paging > uvmexp.freetarg << 2) {
|
1999-03-26 20:33:30 +03:00
|
|
|
if (anon) {
|
|
|
|
simple_unlock(&anon->an_lock);
|
|
|
|
} else {
|
|
|
|
simple_unlock(&uobj->vmobjlock);
|
|
|
|
}
|
|
|
|
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.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
KASSERT(uvmexp.swpgonly <= uvmexp.swpages);
|
1999-03-26 20:33:30 +03:00
|
|
|
if ((p->pqflags & PQ_SWAPBACKED) &&
|
|
|
|
uvmexp.swpgonly == uvmexp.swpages) {
|
|
|
|
dirtyreacts++;
|
|
|
|
uvm_pageactivate(p);
|
1998-03-09 03:58:55 +03:00
|
|
|
if (anon) {
|
|
|
|
simple_unlock(&anon->an_lock);
|
|
|
|
} else {
|
|
|
|
simple_unlock(&uobj->vmobjlock);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
|
|
|
KASSERT(uvmexp.swpginuse <= uvmexp.swpages);
|
1999-03-26 20:33:30 +03:00
|
|
|
if ((p->pqflags & PQ_SWAPBACKED) &&
|
|
|
|
uvmexp.swpginuse == uvmexp.swpages) {
|
|
|
|
|
|
|
|
if ((p->pqflags & PQ_ANON) &&
|
|
|
|
p->uanon->an_swslot) {
|
|
|
|
uvm_swap_free(p->uanon->an_swslot, 1);
|
|
|
|
p->uanon->an_swslot = 0;
|
|
|
|
}
|
|
|
|
if (p->pqflags & PQ_AOBJ) {
|
|
|
|
uao_dropswap(p->uobject,
|
|
|
|
p->offset >> PAGE_SHIFT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* 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
|
2000-11-27 11:39:39 +03:00
|
|
|
* touch the page.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
2001-03-09 04:02:10 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
swap_backed = ((p->pqflags & PQ_SWAPBACKED) != 0);
|
|
|
|
p->flags |= PG_BUSY; /* now we own it */
|
|
|
|
UVM_PAGE_OWN(p, "scan_inactive");
|
|
|
|
uvmexp.pgswapout++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* for swap-backed pages we need to (re)allocate
|
|
|
|
* swap space.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swap_backed) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* free old swap slot (if any)
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (anon) {
|
|
|
|
if (anon->an_swslot) {
|
|
|
|
uvm_swap_free(anon->an_swslot,
|
|
|
|
1);
|
|
|
|
anon->an_swslot = 0;
|
|
|
|
}
|
|
|
|
} else {
|
1999-03-26 20:33:30 +03:00
|
|
|
uao_dropswap(uobj,
|
|
|
|
p->offset >> PAGE_SHIFT);
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* start new cluster (if necessary)
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
if (swslot == 0) {
|
1998-10-19 03:49:59 +04:00
|
|
|
swnpages = MAXBSIZE >> PAGE_SHIFT;
|
1998-03-09 03:58:55 +03:00
|
|
|
swslot = uvm_swap_alloc(&swnpages,
|
|
|
|
TRUE);
|
|
|
|
if (swslot == 0) {
|
|
|
|
/* no swap? give up! */
|
|
|
|
p->flags &= ~PG_BUSY;
|
|
|
|
UVM_PAGE_OWN(p, NULL);
|
|
|
|
if (anon)
|
|
|
|
simple_unlock(
|
|
|
|
&anon->an_lock);
|
|
|
|
else
|
|
|
|
simple_unlock(
|
|
|
|
&uobj->vmobjlock);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
swcpages = 0; /* cluster is empty */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* add block to cluster
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
swpps[swcpages] = p;
|
|
|
|
if (anon)
|
|
|
|
anon->an_swslot = swslot + swcpages;
|
|
|
|
else
|
|
|
|
uao_set_swslot(uobj,
|
1998-10-19 03:49:59 +04:00
|
|
|
p->offset >> PAGE_SHIFT,
|
1998-03-09 03:58:55 +03:00
|
|
|
swslot + swcpages);
|
|
|
|
swcpages++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* if p == NULL we must be doing a last swap i/o */
|
|
|
|
swap_backed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* now consider doing the pageout.
|
1998-03-09 03:58:55 +03:00
|
|
|
*
|
2000-11-27 11:39:39 +03:00
|
|
|
* for swap-backed pages, we do the pageout if we have either
|
|
|
|
* filled the cluster (in which case (swnpages == swcpages) or
|
1998-03-09 03:58:55 +03:00
|
|
|
* run out of pages (p == NULL).
|
|
|
|
*
|
|
|
|
* for object pages, we always do the pageout.
|
|
|
|
*/
|
|
|
|
|
2000-11-27 11:39:39 +03:00
|
|
|
if (swap_backed) {
|
1998-03-09 03:58:55 +03:00
|
|
|
if (p) { /* if we just added a page to cluster */
|
|
|
|
if (anon)
|
|
|
|
simple_unlock(&anon->an_lock);
|
|
|
|
else
|
|
|
|
simple_unlock(&uobj->vmobjlock);
|
|
|
|
|
|
|
|
/* cluster not full yet? */
|
|
|
|
if (swcpages < swnpages)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* starting I/O now... set up for it */
|
|
|
|
npages = swcpages;
|
|
|
|
ppsp = swpps;
|
|
|
|
/* for swap-backed pages only */
|
1998-08-13 06:10:37 +04:00
|
|
|
start = (vaddr_t) swslot;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/* if this is final pageout we could have a few
|
|
|
|
* extra swap blocks */
|
|
|
|
if (swcpages < swnpages) {
|
|
|
|
uvm_swap_free(swslot + swcpages,
|
|
|
|
(swnpages - swcpages));
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
} else {
|
|
|
|
/* normal object pageout */
|
|
|
|
ppsp = pps;
|
|
|
|
npages = sizeof(pps) / sizeof(struct vm_page *);
|
|
|
|
/* not looked at because PGO_ALLPAGES is set */
|
|
|
|
start = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* now do the pageout.
|
2000-11-27 11:39:39 +03:00
|
|
|
*
|
1998-03-09 03:58:55 +03:00
|
|
|
* for swap_backed pages we have already built the cluster.
|
|
|
|
* for !swap_backed pages, 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.
|
|
|
|
*
|
|
|
|
* note locking semantics of uvm_pager_put with PGO_PDFREECLUST:
|
|
|
|
* IN: locked: uobj (if !swap_backed), page queues
|
2001-03-11 01:46:45 +03:00
|
|
|
* OUT:!locked: pageqs, uobj
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* locked: uobj (if !swap_backed), page queues */
|
|
|
|
uvmexp.pdpageouts++;
|
2000-11-27 11:39:39 +03:00
|
|
|
result = uvm_pager_put(swap_backed ? NULL : uobj, p,
|
1998-03-09 03:58:55 +03:00
|
|
|
&ppsp, &npages, PGO_ALLPAGES|PGO_PDFREECLUST, start, 0);
|
2001-03-11 01:46:45 +03:00
|
|
|
/* unlocked: pageqs, uobj */
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* if we did i/o to swap, zero swslot to indicate that we are
|
|
|
|
* no longer building a swap-backed cluster.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (swap_backed)
|
|
|
|
swslot = 0; /* done with this cluster */
|
|
|
|
|
|
|
|
/*
|
2001-03-11 01:46:45 +03:00
|
|
|
* if the pageout failed, reactivate the page and continue.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
|
|
|
|
2001-03-11 01:46:45 +03:00
|
|
|
if (result == EIO && curproc == uvm.pagedaemon_proc) {
|
2000-11-27 11:39:39 +03:00
|
|
|
uvm_lock_pageq();
|
|
|
|
nextpg = TAILQ_NEXT(p, pageq);
|
|
|
|
uvm_pageactivate(p);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
2001-03-11 01:46:45 +03:00
|
|
|
* the pageout is in progress. bump counters and set up
|
|
|
|
* for the next loop.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
|
|
|
|
2001-03-11 01:46:45 +03:00
|
|
|
uvm_lock_pageq();
|
|
|
|
uvmexp.paging += npages;
|
|
|
|
uvmexp.pdpending++;
|
1998-03-09 03:58:55 +03:00
|
|
|
if (p) {
|
2001-03-11 01:46:45 +03:00
|
|
|
if (p->pqflags & PQ_INACTIVE)
|
2000-11-27 11:39:39 +03:00
|
|
|
nextpg = TAILQ_NEXT(p, pageq);
|
2001-03-11 01:46:45 +03:00
|
|
|
else
|
|
|
|
nextpg = TAILQ_FIRST(pglst);
|
2000-11-27 11:39:39 +03:00
|
|
|
} else {
|
1998-03-09 03:58:55 +03:00
|
|
|
nextpg = NULL;
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
}
|
1998-03-09 03:58:55 +03:00
|
|
|
return (retval);
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uvmpd_scan: scan the page queues and attempt to meet our targets.
|
|
|
|
*
|
|
|
|
* => called with pageq's locked
|
|
|
|
*/
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
void
|
|
|
|
uvmpd_scan()
|
1998-02-05 09:25:08 +03:00
|
|
|
{
|
1999-03-26 20:33:30 +03:00
|
|
|
int s, free, inactive_shortage, swap_shortage, pages_freed;
|
1998-03-09 03:58:55 +03:00
|
|
|
struct vm_page *p, *nextpg;
|
|
|
|
struct uvm_object *uobj;
|
|
|
|
boolean_t got_it;
|
|
|
|
UVMHIST_FUNC("uvmpd_scan"); UVMHIST_CALLED(pdhist);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
uvmexp.pdrevs++; /* counter */
|
2000-11-27 11:39:39 +03:00
|
|
|
uobj = NULL;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* get current "free" page count
|
|
|
|
*/
|
1999-05-24 23:10:57 +04:00
|
|
|
s = uvm_lock_fpageq();
|
1998-03-09 03:58:55 +03:00
|
|
|
free = uvmexp.free;
|
1999-05-24 23:10:57 +04:00
|
|
|
uvm_unlock_fpageq(s);
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
#ifndef __SWAP_BROKEN
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* swap out some processes if we are below our free target.
|
|
|
|
* we need to unlock the page queues for this.
|
|
|
|
*/
|
|
|
|
if (free < uvmexp.freetarg) {
|
|
|
|
uvmexp.pdswout++;
|
|
|
|
UVMHIST_LOG(pdhist," free %d < target %d: swapout", free,
|
|
|
|
uvmexp.freetarg, 0, 0);
|
|
|
|
uvm_unlock_pageq();
|
|
|
|
uvm_swapout_threads();
|
|
|
|
uvm_lock_pageq();
|
|
|
|
|
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
UVMHIST_LOG(pdhist, " starting 'free' loop",0,0,0,0);
|
|
|
|
|
|
|
|
/*
|
2000-11-27 11:39:39 +03:00
|
|
|
* alternate starting queue between swap and object based on the
|
|
|
|
* low bit of uvmexp.pdrevs (which we bump by one each call).
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
got_it = FALSE;
|
1999-03-26 20:33:30 +03:00
|
|
|
pages_freed = uvmexp.pdfreed;
|
1998-03-09 03:58:55 +03:00
|
|
|
if ((uvmexp.pdrevs & 1) != 0 && uvmexp.nswapdev != 0)
|
|
|
|
got_it = uvmpd_scan_inactive(&uvm.page_inactive_swp);
|
|
|
|
if (!got_it)
|
|
|
|
got_it = uvmpd_scan_inactive(&uvm.page_inactive_obj);
|
|
|
|
if (!got_it && (uvmexp.pdrevs & 1) == 0 && uvmexp.nswapdev != 0)
|
|
|
|
(void) uvmpd_scan_inactive(&uvm.page_inactive_swp);
|
1999-03-26 20:33:30 +03:00
|
|
|
pages_freed = uvmexp.pdfreed - pages_freed;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* we have done the scan to get free pages. now we work on meeting
|
|
|
|
* our inactive target.
|
|
|
|
*/
|
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
inactive_shortage = uvmexp.inactarg - uvmexp.inactive;
|
1998-03-09 03:58:55 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
/*
|
|
|
|
* detect if we're not going to be able to page anything out
|
|
|
|
* until we free some swap resources from active pages.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
swap_shortage = 0;
|
|
|
|
if (uvmexp.free < uvmexp.freetarg &&
|
|
|
|
uvmexp.swpginuse == uvmexp.swpages &&
|
|
|
|
uvmexp.swpgonly < uvmexp.swpages &&
|
|
|
|
pages_freed == 0) {
|
|
|
|
swap_shortage = uvmexp.freetarg - uvmexp.free;
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
UVMHIST_LOG(pdhist, " loop 2: inactive_shortage=%d swap_shortage=%d",
|
|
|
|
inactive_shortage, swap_shortage,0,0);
|
2000-11-27 11:39:39 +03:00
|
|
|
for (p = TAILQ_FIRST(&uvm.page_active);
|
1999-03-26 20:33:30 +03:00
|
|
|
p != NULL && (inactive_shortage > 0 || swap_shortage > 0);
|
|
|
|
p = nextpg) {
|
2000-11-27 11:39:39 +03:00
|
|
|
nextpg = TAILQ_NEXT(p, pageq);
|
1998-03-09 03:58:55 +03:00
|
|
|
if (p->flags & PG_BUSY)
|
|
|
|
continue; /* quick check before trying to lock */
|
|
|
|
|
|
|
|
/*
|
1999-03-26 20:33:30 +03:00
|
|
|
* lock the page's owner.
|
1998-03-09 03:58:55 +03:00
|
|
|
*/
|
|
|
|
/* is page anon owned or ownerless? */
|
|
|
|
if ((p->pqflags & PQ_ANON) || p->uobject == NULL) {
|
2000-11-27 11:39:39 +03:00
|
|
|
KASSERT(p->uanon != NULL);
|
1998-03-09 03:58:55 +03:00
|
|
|
if (!simple_lock_try(&p->uanon->an_lock))
|
|
|
|
continue;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* take over the page? */
|
|
|
|
if ((p->pqflags & PQ_ANON) == 0) {
|
2000-11-27 11:39:39 +03:00
|
|
|
KASSERT(p->loan_count > 0);
|
1998-03-09 03:58:55 +03:00
|
|
|
p->loan_count--;
|
|
|
|
p->pqflags |= PQ_ANON;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!simple_lock_try(&p->uobject->vmobjlock))
|
|
|
|
continue;
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
/*
|
|
|
|
* skip this page if it's busy.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
if ((p->flags & PG_BUSY) != 0) {
|
|
|
|
if (p->pqflags & PQ_ANON)
|
|
|
|
simple_unlock(&p->uanon->an_lock);
|
|
|
|
else
|
|
|
|
simple_unlock(&p->uobject->vmobjlock);
|
|
|
|
continue;
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
/*
|
|
|
|
* if there's a shortage of swap, free any swap allocated
|
|
|
|
* to this page so that other pages can be paged out.
|
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
if (swap_shortage > 0) {
|
|
|
|
if ((p->pqflags & PQ_ANON) && p->uanon->an_swslot) {
|
|
|
|
uvm_swap_free(p->uanon->an_swslot, 1);
|
|
|
|
p->uanon->an_swslot = 0;
|
|
|
|
p->flags &= ~PG_CLEAN;
|
|
|
|
swap_shortage--;
|
|
|
|
}
|
|
|
|
if (p->pqflags & PQ_AOBJ) {
|
|
|
|
int slot = uao_set_swslot(p->uobject,
|
|
|
|
p->offset >> PAGE_SHIFT, 0);
|
|
|
|
if (slot) {
|
|
|
|
uvm_swap_free(slot, 1);
|
|
|
|
p->flags &= ~PG_CLEAN;
|
|
|
|
swap_shortage--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-11-27 11:39:39 +03:00
|
|
|
|
1999-03-26 20:33:30 +03:00
|
|
|
/*
|
2001-01-25 03:24:48 +03:00
|
|
|
* If the page has not been referenced since the
|
|
|
|
* last scan, deactivate the page if there is a
|
|
|
|
* shortage of inactive pages.
|
1999-03-26 20:33:30 +03:00
|
|
|
*/
|
2000-11-27 11:39:39 +03:00
|
|
|
|
2001-01-25 03:24:48 +03:00
|
|
|
if (inactive_shortage > 0 &&
|
|
|
|
pmap_clear_reference(p) == FALSE) {
|
1998-03-09 03:58:55 +03:00
|
|
|
/* no need to check wire_count as pg is "active" */
|
|
|
|
uvm_pagedeactivate(p);
|
|
|
|
uvmexp.pddeact++;
|
1999-03-26 20:33:30 +03:00
|
|
|
inactive_shortage--;
|
1998-03-09 03:58:55 +03:00
|
|
|
}
|
|
|
|
if (p->pqflags & PQ_ANON)
|
|
|
|
simple_unlock(&p->uanon->an_lock);
|
|
|
|
else
|
|
|
|
simple_unlock(&p->uobject->vmobjlock);
|
|
|
|
}
|
1998-02-05 09:25:08 +03:00
|
|
|
}
|