summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-09-07 16:56:34 +0000
committerbde <bde@FreeBSD.org>1997-09-07 16:56:34 +0000
commitbe65adf8887110675bdd0068ac58188f34cad94c (patch)
tree13b21871dc281edfe7cf0001636746a905671cb7 /sys/kern
parentac6fcae00659510a52714511943684fcb2816467 (diff)
downloadFreeBSD-src-be65adf8887110675bdd0068ac58188f34cad94c.zip
FreeBSD-src-be65adf8887110675bdd0068ac58188f34cad94c.tar.gz
Some staticized variables were still declared to be extern.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_bio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index fc991ad..a387804 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -18,7 +18,7 @@
* 5. Modifications may be freely made to this file if the above conditions
* are met.
*
- * $Id: vfs_bio.c,v 1.123 1997/08/21 01:35:37 dyson Exp $
+ * $Id: vfs_bio.c,v 1.124 1997/08/26 04:36:16 dyson Exp $
*/
/*
@@ -140,8 +140,8 @@ SYSCTL_INT(_vfs, OID_AUTO, maxmallocbufspace, CTLFLAG_RW,
SYSCTL_INT(_vfs, OID_AUTO, bufmallocspace, CTLFLAG_RD,
&bufmallocspace, 0, "");
-static struct bufhashhdr bufhashtbl[BUFHSZ], invalhash;
-static struct bqueues bufqueues[BUFFER_QUEUES];
+static LIST_HEAD(bufhashhdr, buf) bufhashtbl[BUFHSZ], invalhash;
+static TAILQ_HEAD(bqueues, buf) bufqueues[BUFFER_QUEUES];
extern int vm_swap_size;
OpenPOWER on IntegriCloud