diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-03-10 20:29:51 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-03-10 20:29:51 +0000 |
| commit | 914e6eb70dd0591aa0046397f4bdce5430d5f57e (patch) | |
| tree | 96bed7482e804fc8de36195fde11849dcfd96fe3 | |
| parent | dbd90d413ff4d30c32245a7ee5a453f257cfa255 (diff) | |
Notes
| -rw-r--r-- | sys/kern/vfs_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index e447ecb342c0..9a36a62c2ad5 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.8 1995/03/09 20:23:45 phk Exp $ + * $Id: vfs_cache.c,v 1.9 1995/03/10 20:26:29 davidg Exp $ */ #include <sys/param.h> @@ -203,7 +203,7 @@ cache_enter(dvp, vp, cnp) return; } - if (numcache < numvnodes || numvnodes < desiredvnodes) { + if (numcache < numvnodes) { /* Add one more entry */ ncp = (struct namecache *) malloc((u_long)sizeof *ncp, M_CACHE, M_WAITOK); |
