diff options
author | phk <phk@FreeBSD.org> | 2005-03-15 20:00:03 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-03-15 20:00:03 +0000 |
commit | d043926750bb71ad425d59da99871a7e3dc660ff (patch) | |
tree | 0df7ee974522d53324dfa9c6197c29fa4c9ee7c8 /sys/fs/udf/udf_vfsops.c | |
parent | 9251389b0e2e8cb1b090c6e3a47fc1619a1aef4c (diff) | |
download | FreeBSD-src-d043926750bb71ad425d59da99871a7e3dc660ff.zip FreeBSD-src-d043926750bb71ad425d59da99871a7e3dc660ff.tar.gz |
Improve the vfs_hash() API: vput() the unneeded vnode centrally to
avoid replicating the vput in all the filesystems.
Diffstat (limited to 'sys/fs/udf/udf_vfsops.c')
-rw-r--r-- | sys/fs/udf/udf_vfsops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/fs/udf/udf_vfsops.c b/sys/fs/udf/udf_vfsops.c index 60eaa7b..0fa8a69 100644 --- a/sys/fs/udf/udf_vfsops.c +++ b/sys/fs/udf/udf_vfsops.c @@ -604,10 +604,8 @@ udf_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) vp->v_data = unode; error = vfs_hash_insert(vp, ino, flags, curthread, vpp); - if (error || *vpp != NULL) { - vput(vp); + if (error || *vpp != NULL) return (error); - } /* * Copy in the file entry. Per the spec, the size can only be 1 block. |