Remove some variables that are set but never used.

This commit is contained in:
simonb 2001-11-06 06:28:22 +00:00
parent b26f63f404
commit 819bb532e6
2 changed files with 3 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_pager.c,v 1.51 2001/10/15 00:37:51 chs Exp $ */
/* $NetBSD: uvm_pager.c,v 1.52 2001/11/06 06:28:22 simonb Exp $ */
/*
*
@ -296,7 +296,7 @@ uvm_aio_aiodone(bp)
struct uvm_object *uobj;
struct simplelock *slock;
int s, i, error, swslot;
boolean_t write, swap, pageout, async;
boolean_t write, swap, pageout;
UVMHIST_FUNC("uvm_aio_aiodone"); UVMHIST_CALLED(ubchist);
UVMHIST_LOG(ubchist, "bp %p", bp, 0,0,0);
@ -318,7 +318,6 @@ uvm_aio_aiodone(bp)
swslot = 0;
slock = NULL;
pageout = (pgs[0]->flags & PG_PAGEOUT) != 0;
async = (bp->b_flags & B_ASYNC) != 0;
if (!swap) {
uobj = pgs[0]->uobject;
slock = &uobj->vmobjlock;

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_pdaemon.c,v 1.39 2001/09/30 02:57:34 chs Exp $ */
/* $NetBSD: uvm_pdaemon.c,v 1.40 2001/11/06 06:28:22 simonb Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -355,7 +355,6 @@ boolean_t
uvmpd_scan_inactive(pglst)
struct pglist *pglst;
{
boolean_t retval = FALSE; /* assume we haven't hit target */
int error;
struct vm_page *p, *nextpg;
struct uvm_object *uobj;
@ -390,7 +389,6 @@ uvmpd_scan_inactive(pglst)
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 */
@ -713,7 +711,6 @@ uvmpd_scan(void)
struct vm_page *p, *nextpg;
struct uvm_object *uobj;
struct vm_anon *anon;
boolean_t got_it;
UVMHIST_FUNC("uvmpd_scan"); UVMHIST_CALLED(pdhist);
uvmexp.pdrevs++;
@ -752,7 +749,6 @@ uvmpd_scan(void)
* low bit of uvmexp.pdrevs (which we bump by one each call).
*/
got_it = FALSE;
pages_freed = uvmexp.pdfreed;
(void) uvmpd_scan_inactive(&uvm.page_inactive);
pages_freed = uvmexp.pdfreed - pages_freed;