diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-08-24 15:51:41 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-08-24 15:51:41 +0000 |
commit | 400def2e166809f3b3a933d1e57319875bdb4a91 (patch) | |
tree | e0b045e3b24edd919bd2668b4d0a6b03393221fa | |
parent | 25600ca65e5e9761816d32c32bced3d0b9be6ded (diff) |
garbage collect the nchash variable that used to store the
size of cache hashtable that has now been removed.
-rw-r--r-- | sys/kern/vfs_cache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index 9d681a1f7ac..fa93355dd14 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_cache.c,v 1.31 2009/08/12 16:42:24 beck Exp $ */ +/* $OpenBSD: vfs_cache.c,v 1.32 2009/08/24 15:51:40 thib Exp $ */ /* $NetBSD: vfs_cache.c,v 1.13 1996/02/04 02:18:09 christos Exp $ */ /* @@ -68,7 +68,6 @@ /* * Structures associated with name caching. */ -u_long nchash; /* size of hash table - 1 */ long numcache; /* total number of cache entries allocated */ long numneg; /* number of negative cache entries */ |