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/miscfs/nullfs | |
| parent | 645c4be38a40ae297fc27d00d66da5599fe60eb6 (diff) | |
Notes
Diffstat (limited to 'sys/miscfs/nullfs')
| -rw-r--r-- | sys/miscfs/nullfs/null_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/nullfs/null_subr.c b/sys/miscfs/nullfs/null_subr.c index de644946ef1a..7244d0565352 100644 --- a/sys/miscfs/nullfs/null_subr.c +++ b/sys/miscfs/nullfs/null_subr.c @@ -35,7 +35,7 @@ * * @(#)null_subr.c 8.7 (Berkeley) 5/14/95 * - * $Id: null_subr.c,v 1.15 1998/02/04 22:32:46 eivind Exp $ + * $Id: null_subr.c,v 1.16 1998/02/06 12:13:36 eivind Exp $ */ #include "opt_debug_nullfs.h" @@ -61,8 +61,8 @@ #define NULL_NHASH(vp) \ (&null_node_hashtbl[(((u_long)vp)>>LOG2_SIZEVNODE) & null_node_hash]) -LIST_HEAD(null_node_hashhead, null_node) *null_node_hashtbl; -u_long null_node_hash; +static LIST_HEAD(null_node_hashhead, null_node) *null_node_hashtbl; +static u_long null_node_hash; static int null_node_alloc __P((struct mount *mp, struct vnode *lowervp, struct vnode **vpp)); |
