Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Feb 1998 15:52:57 +0900 (JST)
From:      Michael Hancock <michaelh@cet.co.jp>
To:        freebsd-current@FreeBSD.ORG, freebsd-fs@FreeBSD.ORG
Subject:   VFS_VRELE: a couple more that I missed ...
Message-ID:  <Pine.SV4.3.95.980228155106.11240C-100000@parkplace.cet.co.jp>

next in thread | raw e-mail | index | archive | help
Index: fdesc_vfsops.c
===================================================================
RCS file: /usr/cvs/src/sys/miscfs/fdesc/fdesc_vfsops.c,v
retrieving revision 1.13
diff -u -r1.13 fdesc_vfsops.c
--- fdesc_vfsops.c	1997/10/12 20:24:39	1.13
+++ fdesc_vfsops.c	1998/02/28 05:30:37
@@ -71,6 +71,7 @@
 				struct ucred *cred, struct proc *p));
 static int	fdesc_vget __P((struct mount *mp, ino_t ino,
 				struct vnode **vpp));
+static int	fdesc_vrele __P((struct mount *mp, struct vnode *vp));
 static int	fdesc_vptofh __P((struct vnode *vp, struct fid *fhp));
   
 /*
@@ -253,6 +254,8 @@
 	    size_t, struct proc *)))eopnotsupp)
 #define fdesc_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \
 	    eopnotsupp)
+#define fdesc_vrele ((int (*) __P((struct mount *, struct vnode *))) \
+	    eopnotsupp)
 #define fdesc_vptofh ((int (*) __P((struct vnode *, struct fid *)))eopnotsupp)
 
 static struct vfsops fdesc_vfsops = {
@@ -264,6 +267,7 @@
 	fdesc_statfs,
 	fdesc_sync,
 	fdesc_vget,
+	fdesc_vrele,
 	fdesc_fhtovp,
 	fdesc_vptofh,
 	fdesc_init,
Index: portal_vfsops.c
===================================================================
RCS file: /usr/cvs/src/sys/miscfs/portal/portal_vfsops.c,v
retrieving revision 1.19
diff -u -r1.19 portal_vfsops.c
--- portal_vfsops.c	1998/01/01 08:28:11	1.19
+++ portal_vfsops.c	1998/02/28 05:42:03
@@ -273,6 +273,8 @@
 	    size_t, struct proc *)))eopnotsupp)
 #define portal_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \
 	    eopnotsupp)
+#define portal_vrele ((int (*) __P((struct mount *, struct vnode *))) \
+	    eopnotsupp)
 #define portal_vptofh ((int (*) __P((struct vnode *, struct fid *)))eopnotsupp)
 
 static struct vfsops portal_vfsops = {
@@ -284,6 +286,7 @@
 	portal_statfs,
 	portal_sync,
 	portal_vget,
+	portal_vrele,
 	portal_fhtovp,
 	portal_vptofh,
 	portal_init,


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.SV4.3.95.980228155106.11240C-100000>