summaryrefslogtreecommitdiffstats
path: root/sys/kern/vfs_cache.c
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-03-10 20:26:29 +0000
committerdg <dg@FreeBSD.org>1995-03-10 20:26:29 +0000
commit0edff5994e2925cf3e4133c77a61273e5f1c4627 (patch)
treeeeca45071faff6cc08943e269edc829ac0928dc6 /sys/kern/vfs_cache.c
parent7ca6fdcf9e9ded71fdcba7390234e571b121f5b2 (diff)
downloadFreeBSD-src-0edff5994e2925cf3e4133c77a61273e5f1c4627.zip
FreeBSD-src-0edff5994e2925cf3e4133c77a61273e5f1c4627.tar.gz
Don't thrash the name cache while trying to fill up the object cache.
(Make a new cache entry until desiredvnodes is reached).
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 e8ebe87..e447ecb 100644
--- a/sys/kern/vfs_cache.c
+++ b/sys/kern/vfs_cache.c
@@ -33,7 +33,7 @@
* SUCH DAMAGE.
*
* @(#)vfs_cache.c 8.3 (Berkeley) 8/22/94
- * $Id: vfs_cache.c,v 1.7 1995/03/08 01:40:44 phk Exp $
+ * $Id: vfs_cache.c,v 1.8 1995/03/09 20:23:45 phk Exp $
*/
#include <sys/param.h>
@@ -203,7 +203,7 @@ cache_enter(dvp, vp, cnp)
return;
}
- if (numcache < numvnodes) {
+ if (numcache < numvnodes || numvnodes < desiredvnodes) {
/* Add one more entry */
ncp = (struct namecache *)
malloc((u_long)sizeof *ncp, M_CACHE, M_WAITOK);
OpenPOWER on IntegriCloud