aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/procfs
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/fs/procfs
parent8fddb21ee27a8678b04fef7168368e925b98caa3 (diff)
Notes
Diffstat (limited to 'sys/fs/procfs')
-rw-r--r--sys/fs/procfs/procfs_vfsops.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c
index fddc277f6d86b..f75de093c165d 100644
--- a/sys/fs/procfs/procfs_vfsops.c
+++ b/sys/fs/procfs/procfs_vfsops.c
@@ -36,7 +36,7 @@
*
* @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95
*
- * $Id: procfs_vfsops.c,v 1.19 1997/12/30 08:46:44 bde Exp $
+ * $Id: procfs_vfsops.c,v 1.20 1998/03/01 22:46:22 msmith Exp $
*/
/*
@@ -193,8 +193,6 @@ procfs_init(vfsp)
size_t, struct proc *)))eopnotsupp)
#define procfs_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \
eopnotsupp)
-#define procfs_vrele ((int (*) __P((struct mount *, struct vnode *))) \
- eopnotsupp)
#define procfs_vptofh ((int (*) __P((struct vnode *, struct fid *)))einval)
static struct vfsops procfs_vfsops = {
@@ -206,7 +204,6 @@ static struct vfsops procfs_vfsops = {
procfs_statfs,
procfs_sync,
procfs_vget,
- procfs_vrele,
procfs_fhtovp,
procfs_vptofh,
procfs_init,