aboutsummaryrefslogtreecommitdiff
path: root/sys/isofs
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/isofs
parent8fddb21ee27a8678b04fef7168368e925b98caa3 (diff)
Notes
Diffstat (limited to 'sys/isofs')
-rw-r--r--sys/isofs/cd9660/cd9660_vfsops.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c
index eab93af1201ac..b5e991541147d 100644
--- a/sys/isofs/cd9660/cd9660_vfsops.c
+++ b/sys/isofs/cd9660/cd9660_vfsops.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
- * $Id: cd9660_vfsops.c,v 1.37 1998/04/20 03:57:27 julian Exp $
+ * $Id: cd9660_vfsops.c,v 1.38 1998/04/20 23:18:46 julian Exp $
*/
#include <sys/param.h>
@@ -73,7 +73,6 @@ static int cd9660_statfs __P((struct mount *, struct statfs *, struct proc *));
static int cd9660_sync __P((struct mount *, int, struct ucred *,
struct proc *));
static int cd9660_vget __P((struct mount *, ino_t, struct vnode **));
-static int cd9660_vrele __P((struct mount *, struct vnode *));
static int cd9660_fhtovp __P((struct mount *, struct fid *, struct sockaddr *,
struct vnode **, int *, struct ucred **));
static int cd9660_vptofh __P((struct vnode *, struct fid *));
@@ -87,7 +86,6 @@ static struct vfsops cd9660_vfsops = {
cd9660_statfs,
cd9660_sync,
cd9660_vget,
- cd9660_vrele,
cd9660_fhtovp,
cd9660_vptofh,
cd9660_init
@@ -679,19 +677,6 @@ cd9660_vget(mp, ino, vpp)
(struct iso_directory_record *)0));
}
-/*
- * Complement to all vpp returning ops.
- * XXX - initially only to get rid of WILLRELE.
- */
-/* ARGSUSED */
-static int
-cd9660_vrele(mp, vp)
- struct mount *mp;
- struct vnode *vp;
-{
- return (EOPNOTSUPP);
-}
-
int
cd9660_vget_internal(mp, ino, vpp, relocated, isodir)
struct mount *mp;