summaryrefslogtreecommitdiffstats
path: root/sys/miscfs/nullfs
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1998-03-01 22:46:53 +0000
committermsmith <msmith@FreeBSD.org>1998-03-01 22:46:53 +0000
commit950d32131bcda63f4d849362c64123e28600ae2c (patch)
tree20dcb6f46f936b41e0a16f253d5a11772bfbfd92 /sys/miscfs/nullfs
parent611da89e2cf7f2301c19b2e6115e9668d92f3d69 (diff)
downloadFreeBSD-src-950d32131bcda63f4d849362c64123e28600ae2c.zip
FreeBSD-src-950d32131bcda63f4d849362c64123e28600ae2c.tar.gz
The intent is to get rid of WILLRELE in vnode_if.src by making
a complement to all ops that return a vpp, VFS_VRELE. This is initially only for file systems that implement the following ops that do a WILLRELE: vop_create, vop_whiteout, vop_mknod, vop_remove, vop_link, vop_rename, vop_mkdir, vop_rmdir, vop_symlink This is initial DNA that doesn't do anything yet. VFS_VRELE is implemented but not called. A default vfs_vrele was created for fs implementations that use the standard vnode management routines. VFS_VRELE implementations were made for the following file systems: Standard (vfs_vrele) ffs mfs nfs msdosfs devfs ext2fs Custom union umapfs Just EOPNOTSUPP fdesc procfs kernfs portal cd9660 These implementations may change as VOP changes are implemented. In the next phase, in the vop implementations calls to vrele and the vrele part of vput will be moved to the top layer vfs_vnops and made visible to all layers. vput will be replaced by unlock in these cases. Unlocking will still be done in the per fs layer but the refcount decrement will be triggered at the top because it doesn't hurt to hold a vnode reference a little longer. This will have minimal impact on the structure of the existing code. This will only be done for vnode arguments that are released by the various fs vop implementations. Wider use of VFS_VRELE will likely require restructuring of the code. Reviewed by: phk, dyson, terry et. al. Submitted by: Michael Hancock <michaelh@cet.co.jp>
Diffstat (limited to 'sys/miscfs/nullfs')
-rw-r--r--sys/miscfs/nullfs/null_vfsops.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/sys/miscfs/nullfs/null_vfsops.c b/sys/miscfs/nullfs/null_vfsops.c
index 30515a5..961c0f9 100644
--- a/sys/miscfs/nullfs/null_vfsops.c
+++ b/sys/miscfs/nullfs/null_vfsops.c
@@ -36,7 +36,7 @@
* @(#)null_vfsops.c 8.2 (Berkeley) 1/21/94
*
* @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92
- * $Id: null_vfsops.c,v 1.23 1998/02/04 22:32:47 eivind Exp $
+ * $Id: null_vfsops.c,v 1.24 1998/02/06 12:13:40 eivind Exp $
*/
/*
@@ -75,6 +75,7 @@ static int nullfs_unmount __P((struct mount *mp, int mntflags,
struct proc *p));
static int nullfs_vget __P((struct mount *mp, ino_t ino,
struct vnode **vpp));
+static int nullfs_vrele __P((struct mount *mp, struct vnode *vp));
static int nullfs_vptofh __P((struct vnode *vp, struct fid *fhp));
/*
@@ -388,6 +389,24 @@ nullfs_vget(mp, ino, vpp)
return VFS_VGET(MOUNTTONULLMOUNT(mp)->nullm_vfs, ino, vpp);
}
+/*
+ * Complement to all vpp returning ops.
+ * XXX - initially only to get rid of WILLRELE.
+ */
+/* ARGSUSED */
+static int
+nullfs_vrele(mp, vp)
+ struct mount *mp;
+ struct vnode *vp;
+{
+ int error = 0;
+
+ error = VFS_VRELE(MOUNTTONULLMOUNT(mp)->nullm_vfs,
+ NULLVPTOLOWERVP(vp));
+ vrele(vp);
+ return (error);
+}
+
static int
nullfs_fhtovp(mp, fidp, nam, vpp, exflagsp, credanonp)
struct mount *mp;
@@ -419,6 +438,7 @@ static struct vfsops null_vfsops = {
nullfs_statfs,
nullfs_sync,
nullfs_vget,
+ nullfs_vrele,
nullfs_fhtovp,
nullfs_vptofh,
nullfs_init,
OpenPOWER on IntegriCloud