make some preliminary changes so that this compiles for UVM

This commit is contained in:
fair 1998-05-20 18:35:49 +00:00
parent 93d96b3415
commit 17371233fa
1 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.111 1998/03/08 19:09:58 gwr Exp $ */
/* $NetBSD: machdep.c,v 1.112 1998/05/20 18:35:49 fair Exp $ */
/*
* Copyright (c) 1994, 1995 Gordon W. Ross
@ -84,6 +84,10 @@
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#if defined(UVM)
#include <uvm/uvm.h> /* XXX: not _extern ... need vm_map_create */
#endif
#include <sys/sysctl.h>
#include <dev/cons.h>
@ -236,7 +240,9 @@ allocsys(v)
if (nswbuf > 256)
nswbuf = 256; /* sanity */
}
#if !defined(UVM)
valloc(swbuf, struct buf, nswbuf);
#endif
valloc(buf, struct buf, nbuf);
return v;
}
@ -358,7 +364,11 @@ cpu_startup()
callout[i-1].c_next = &callout[i];
callout[i-1].c_next = NULL;
#if defined(UVM)
size = ptoa(uvmexp.free);
#else
size = ptoa(cnt.v_free_count);
#endif
printf("avail mem = %dK (0x%lx)\n", (size >> 10), size);
printf("using %d buffers containing %d bytes of memory\n",
nbuf, bufpages * CLBYTES);