summaryrefslogtreecommitdiffstats
path: root/sys/ufs/ffs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2005-03-15 20:00:03 +0000
committerphk <phk@FreeBSD.org>2005-03-15 20:00:03 +0000
commitd043926750bb71ad425d59da99871a7e3dc660ff (patch)
tree0df7ee974522d53324dfa9c6197c29fa4c9ee7c8 /sys/ufs/ffs
parent9251389b0e2e8cb1b090c6e3a47fc1619a1aef4c (diff)
downloadFreeBSD-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/ufs/ffs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index 950f14e..686bba9 100644
--- a/sys/ufs/ffs/ffs_vfsops.c
+++ b/sys/ufs/ffs/ffs_vfsops.c
@@ -1226,10 +1226,8 @@ ffs_vget(mp, ino, flags, vpp)
#endif
error = vfs_hash_insert(vp, ino, flags, curthread, vpp);
- if (error || *vpp != NULL) {
- vput(vp);
+ if (error || *vpp != NULL)
return (error);
- }
/* Read in the disk contents for the inode, copy into the inode. */
error = bread(ump->um_devvp, fsbtodb(fs, ino_to_fsba(fs, ino)),
OpenPOWER on IntegriCloud