diff options
author | bp <bp@FreeBSD.org> | 2000-10-22 16:15:12 +0000 |
---|---|---|
committer | bp <bp@FreeBSD.org> | 2000-10-22 16:15:12 +0000 |
commit | bf8c7dab48dab0076c51a0a572113d62ab82fdf7 (patch) | |
tree | 66d71c693d1dc8c3ebfeebb748d65ee24707ae84 /sys/fs | |
parent | 37c9cff867708908c9def9fe80a76b0cac70d8a9 (diff) | |
download | FreeBSD-src-bf8c7dab48dab0076c51a0a572113d62ab82fdf7.zip FreeBSD-src-bf8c7dab48dab0076c51a0a572113d62ab82fdf7.tar.gz |
Rev 1.41 was committed from wrong diff, now do it right.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/nullfs/null_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c index 20c3459..6213a6b 100644 --- a/sys/fs/nullfs/null_vfsops.c +++ b/sys/fs/nullfs/null_vfsops.c @@ -150,7 +150,7 @@ nullfs_mount(mp, path, data, ndp, p) */ if (lowerrootvp == VTONULL(mp->mnt_vnodecovered)->null_lowervp) { NULLFSDEBUG("nullfs_mount: multi null mount?\n"); - VOP_UNLOCK(lowerrootvp, 0, p); + vput(lowerrootvp); return (EDEADLK); } |