summaryrefslogtreecommitdiff
path: root/sys/miscfs/umapfs/umap_vfsops.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-05-06 05:29:41 +0000
committerMike Smith <msmith@FreeBSD.org>1998-05-06 05:29:41 +0000
commit79cc756d8b01ed6a729baa0e22fa602fe34f737d (patch)
tree72591e2042fd1a48dde8a7211764ace14d4ac2ef /sys/miscfs/umapfs/umap_vfsops.c
parent8fddb21ee27a8678b04fef7168368e925b98caa3 (diff)
Notes
Diffstat (limited to 'sys/miscfs/umapfs/umap_vfsops.c')
-rw-r--r--sys/miscfs/umapfs/umap_vfsops.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c
index 8c1b705c8160..31d674229cd4 100644
--- a/sys/miscfs/umapfs/umap_vfsops.c
+++ b/sys/miscfs/umapfs/umap_vfsops.c
@@ -35,7 +35,7 @@
*
* @(#)umap_vfsops.c 8.8 (Berkeley) 5/14/95
*
- * $Id: umap_vfsops.c,v 1.20 1998/02/07 01:34:32 kato Exp $
+ * $Id: umap_vfsops.c,v 1.21 1998/03/01 22:46:24 msmith Exp $
*/
/*
@@ -72,7 +72,6 @@ static int umapfs_unmount __P((struct mount *mp, int mntflags,
struct proc *p));
static int umapfs_vget __P((struct mount *mp, ino_t ino,
struct vnode **vpp));
-static int umapfs_vrele __P((struct mount *mp, struct vnode *vp));
static int umapfs_vptofh __P((struct vnode *vp, struct fid *fhp));
/*
@@ -394,20 +393,6 @@ umapfs_vget(mp, ino, vpp)
return (VFS_VGET(MOUNTTOUMAPMOUNT(mp)->umapm_vfs, ino, vpp));
}
-/*
- * Complement to all vpp returning ops.
- * XXX - initially only to get rid of WILLRELE.
- */
-/* ARGSUSED */
-static int
-umapfs_vrele(mp, vp)
- struct mount *mp;
- struct vnode *vp;
-{
- vrele(vp);
- return (0);
-}
-
static int
umapfs_fhtovp(mp, fidp, nam, vpp, exflagsp, credanonp)
struct mount *mp;
@@ -438,7 +423,6 @@ static struct vfsops umap_vfsops = {
umapfs_statfs,
umapfs_sync,
umapfs_vget,
- umapfs_vrele,
umapfs_fhtovp,
umapfs_vptofh,
umapfs_init,