diff options
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r-- | sys/kern/vfs_bio.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 636340a..e9f27d5 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.54 1995/07/25 05:03:06 davidg Exp $ + * $Id: vfs_bio.c,v 1.55 1995/07/25 05:41:57 davidg Exp $ */ /* @@ -52,8 +52,6 @@ #include <miscfs/specfs/specdev.h> struct buf *buf; /* buffer header pool */ -int nbuf; /* number of buffer headers calculated - * elsewhere */ struct swqueue bswlist; void vm_hold_free_pages(struct buf * bp, vm_offset_t from, vm_offset_t to); @@ -92,6 +90,9 @@ int bufspace, maxbufspace; */ int minbuf; +struct bufhashhdr bufhashtbl[BUFHSZ], invalhash; +struct bqueues bufqueues[BUFFER_QUEUES]; + /* * Initialize buffer headers and related structures. */ |