diff options
author | phk <phk@FreeBSD.org> | 1997-09-26 08:08:58 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-09-26 08:08:58 +0000 |
commit | 3783a8767ec4fcca473f8cc20650c729ee15e291 (patch) | |
tree | 256547237863f7093c823adb427e5961091fd814 /sys/kern/vfs_subr.c | |
parent | f5b2fcb0c6f815432425d9ea40997a1fbf5e5ad0 (diff) | |
download | FreeBSD-src-3783a8767ec4fcca473f8cc20650c729ee15e291.zip FreeBSD-src-3783a8767ec4fcca473f8cc20650c729ee15e291.tar.gz |
I lost a bit of my change in the last commit, this is more like it.
Noticed by: bde
Diffstat (limited to 'sys/kern/vfs_subr.c')
-rw-r--r-- | sys/kern/vfs_subr.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 5325542..b217747 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.105 1997/09/24 07:46:53 phk Exp $ + * $Id: vfs_subr.c,v 1.106 1997/09/25 16:17:57 phk Exp $ */ /* @@ -354,7 +354,10 @@ getnewvnode(tag, mp, vops, vpp) if (wantfreevnodes && freevnodes < wantfreevnodes) { vp = NULL; - } else if (freevnodes <= desiredvnodes) { + } else if (!wantfreevnodes && freevnodes <= desiredvnodes) { + /* + * XXX: this is only here to be backwards compatible + */ vp = NULL; } else { TAILQ_FOREACH(vp, &vnode_free_list, v_freelist) { |