From 1a0a9cf4f5008de06188ddc5eefe1b6e156a792b Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 3 Dec 1995 14:38:57 +0000 Subject: null_node_find() and umap_node_find() were sometimes called without a `struct mount *' arg. I don't know what the effects of this were. --- sys/fs/nullfs/null_subr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/fs/nullfs/null_subr.c') diff --git a/sys/fs/nullfs/null_subr.c b/sys/fs/nullfs/null_subr.c index 8d18ffd..dc18d19 100644 --- a/sys/fs/nullfs/null_subr.c +++ b/sys/fs/nullfs/null_subr.c @@ -35,7 +35,7 @@ * * @(#)null_subr.c 8.4 (Berkeley) 1/21/94 * - * $Id: null_subr.c,v 1.2 1994/05/25 09:08:00 rgrimes Exp $ + * $Id: null_subr.c,v 1.3 1994/10/02 17:48:14 phk Exp $ */ #include @@ -168,7 +168,7 @@ null_node_alloc(mp, lowervp, vpp) * check to see if someone else has beaten us to it. * (We could have slept in MALLOC.) */ - othervp = null_node_find(lowervp); + othervp = null_node_find(mp, lowervp); if (othervp) { FREE(xp, M_TEMP); vp->v_type = VBAD; /* node is discarded */ -- cgit v1.1