summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_cache.c
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2015-01-28 20:16:05 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2015-01-28 20:16:05 +0000
commit098d80b53c0c59d1f8acbeef29a25913a170e850 (patch)
treeda77d80374b4f5345676940b614874943819344f /sys/kern/vfs_cache.c
parent940343c8a758cdb80d25a3f5633043299c238e5e (diff)
revert back to initial vnodes again so we can be sure nfs likes it
Diffstat (limited to 'sys/kern/vfs_cache.c')
-rw-r--r--sys/kern/vfs_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c
index 33dcc7f6f43..99f07b5e4d7 100644
--- a/sys/kern/vfs_cache.c
+++ b/sys/kern/vfs_cache.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_cache.c,v 1.45 2015/01/16 21:16:14 tedu Exp $ */
+/* $OpenBSD: vfs_cache.c,v 1.46 2015/01/28 20:16:04 tedu Exp $ */
/* $NetBSD: vfs_cache.c,v 1.13 1996/02/04 02:18:09 christos Exp $ */
/*
@@ -349,7 +349,7 @@ cache_enter(struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
/*
* allocate, or recycle (free and allocate) an ncp.
*/
- if (numcache >= maxvnodes) {
+ if (numcache >= initialvnodes) {
if ((ncp = TAILQ_FIRST(&nclruhead)) != NULL)
cache_zap(ncp);
else if ((ncp = TAILQ_FIRST(&nclruneghead)) != NULL)