Update top and systat for vfs.bufcache now being a long rather than an int.

This commit is contained in:
John Baldwin 2009-03-10 15:25:19 +00:00
parent c5f79858ff
commit a0b9e7e332
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189626
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ static struct Info {
struct nchstats nchstats;
long nchcount;
long *intrcnt;
int bufspace;
long bufspace;
int desiredvnodes;
long numvnodes;
long freevnodes;

View File

@ -433,7 +433,7 @@ get_system_info(struct system_info *si)
static unsigned int swap_delay = 0;
static int swapavail = 0;
static int swapfree = 0;
static int bufspace = 0;
static long bufspace = 0;
static int nspgsin, nspgsout;
GETSYSCTL("vfs.bufspace", bufspace);