diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 1998-02-09 06:11:36 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 1998-02-09 06:11:36 +0000 |
| commit | 303b270b0a55fd0dc287afb82267317ca7826a7b (patch) | |
| tree | 82f7f30caed0917853b890f61d2857d27c2e02e3 /sys/gnu | |
| parent | 645c4be38a40ae297fc27d00d66da5599fe60eb6 (diff) | |
Notes
Diffstat (limited to 'sys/gnu')
| -rw-r--r-- | sys/gnu/ext2fs/ext2_ihash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/gnu/ext2fs/ext2_ihash.c b/sys/gnu/ext2fs/ext2_ihash.c index 56be3fdff135..a51ff4e16db2 100644 --- a/sys/gnu/ext2fs/ext2_ihash.c +++ b/sys/gnu/ext2fs/ext2_ihash.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.7 (Berkeley) 5/17/95 - * $Id: ufs_ihash.c,v 1.14 1998/02/04 22:33:35 eivind Exp $ + * $Id: ufs_ihash.c,v 1.15 1998/02/06 12:14:17 eivind Exp $ */ #include <sys/param.h> @@ -49,10 +49,10 @@ static MALLOC_DEFINE(M_UFSIHASH, "UFS ihash", "UFS Inode hash tables"); /* * Structures associated with inode cacheing. */ -LIST_HEAD(ihashhead, inode) *ihashtbl; -u_long ihash; /* size of hash table - 1 */ +static LIST_HEAD(ihashhead, inode) *ihashtbl; +static u_long ihash; /* size of hash table - 1 */ #define INOHASH(device, inum) (&ihashtbl[((device) + (inum)) & ihash]) -struct simplelock ufs_ihash_slock; +static struct simplelock ufs_ihash_slock; /* * Initialize inode hash table. |
