Some staticized variables were still declared to be extern.

This commit is contained in:
Bruce Evans 1997-09-07 16:56:34 +00:00
parent 2931901b1d
commit 2d85d0df17
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=29211
3 changed files with 5 additions and 11 deletions

View file

@ -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;

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)buf.h 8.9 (Berkeley) 3/30/95
* $Id: buf.h,v 1.38 1997/02/22 09:44:49 peter Exp $
* $Id: buf.h,v 1.39 1997/06/15 17:56:53 dyson Exp $
*/
#ifndef _SYS_BUF_H_
@ -165,9 +165,6 @@ struct buf {
*/
#define BUFFER_QUEUES 6 /* number of free buffer queues */
extern LIST_HEAD(bufhashhdr, buf) bufhashtbl[BUFHSZ], invalhash;
extern TAILQ_HEAD(bqueues, buf) bufqueues[BUFFER_QUEUES];
#define QUEUE_NONE 0 /* on no queue */
#define QUEUE_LOCKED 1 /* locked buffers */
#define QUEUE_LRU 2 /* useful buffers */

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)buf.h 8.9 (Berkeley) 3/30/95
* $Id: buf.h,v 1.38 1997/02/22 09:44:49 peter Exp $
* $Id: buf.h,v 1.39 1997/06/15 17:56:53 dyson Exp $
*/
#ifndef _SYS_BUF_H_
@ -165,9 +165,6 @@ struct buf {
*/
#define BUFFER_QUEUES 6 /* number of free buffer queues */
extern LIST_HEAD(bufhashhdr, buf) bufhashtbl[BUFHSZ], invalhash;
extern TAILQ_HEAD(bqueues, buf) bufqueues[BUFFER_QUEUES];
#define QUEUE_NONE 0 /* on no queue */
#define QUEUE_LOCKED 1 /* locked buffers */
#define QUEUE_LRU 2 /* useful buffers */