Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/vax/vax Remove references to nswbuf. It is entirel...



details:   https://anonhg.NetBSD.org/src/rev/5ade1cb3383c
branches:  trunk
changeset: 542573:5ade1cb3383c
user:      erh <erh%NetBSD.org@localhost>
date:      Sat Feb 01 21:05:08 2003 +0000

description:
Remove references to nswbuf.  It is entirely unused.

diffstat:

 sys/arch/vax/vax/pmap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r fd99142f022e -r 5ade1cb3383c sys/arch/vax/vax/pmap.c
--- a/sys/arch/vax/vax/pmap.c   Sat Feb 01 21:02:03 2003 +0000
+++ b/sys/arch/vax/vax/pmap.c   Sat Feb 01 21:05:08 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.120 2003/01/31 05:24:31 thorpej Exp $          */
+/*     $NetBSD: pmap.c,v 1.121 2003/02/01 21:05:08 erh Exp $      */
 /*
  * Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -179,11 +179,11 @@
        kvmsize += (physmem * sizeof(struct vm_anon));
 
        /* allocated buffer space etc... This is a hack */
-       n = nbuf; s = nswbuf; bp = bufpages; bc = bufcache;
+       n = nbuf; bp = bufpages; bc = bufcache;
        kvmsize += (u_int)allocsys(NULL, NULL);
        /* Buffer space */
        kvmsize += (MAXBSIZE * nbuf);
-       nbuf = n; nswbuf = s; bufpages = bp; bufcache = bc;
+       nbuf = n; bufpages = bp; bufcache = bc;
 
        /* UBC submap space */
        kvmsize += (UBC_NWINS << UBC_WINSHIFT);



Home | Main Index | Thread Index | Old Index