diff options
author | msmith <msmith@FreeBSD.org> | 2002-01-08 11:15:57 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2002-01-08 11:15:57 +0000 |
commit | bc66986ff8529164d52b467ff009f304ed666e77 (patch) | |
tree | 43e65e243b126d9873ce3ce8dd1e690375fbbe4a /sys/fs/pseudofs/pseudofs_vncache.c | |
parent | a7132b44c48e0bc6ba09205a6235e49553ce110f (diff) | |
download | FreeBSD-src-bc66986ff8529164d52b467ff009f304ed666e77.zip FreeBSD-src-bc66986ff8529164d52b467ff009f304ed666e77.tar.gz |
Staticise pfs_vncache, it's not used anywhere else.
Reviewed by: des
Diffstat (limited to 'sys/fs/pseudofs/pseudofs_vncache.c')
-rw-r--r-- | sys/fs/pseudofs/pseudofs_vncache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/pseudofs/pseudofs_vncache.c b/sys/fs/pseudofs/pseudofs_vncache.c index 313889f..00822f1 100644 --- a/sys/fs/pseudofs/pseudofs_vncache.c +++ b/sys/fs/pseudofs/pseudofs_vncache.c @@ -44,7 +44,7 @@ static MALLOC_DEFINE(M_PFSVNCACHE, "pfs_vncache", "pseudofs vnode cache"); static struct mtx pfs_vncache_mutex; -struct pfs_vdata *pfs_vncache; +static struct pfs_vdata *pfs_vncache; static void pfs_exit(struct proc *p); SYSCTL_NODE(_vfs_pfs, OID_AUTO, vncache, CTLFLAG_RW, 0, |