Author: kib
Date: Wed Jun 24 09:54:05 2009
New Revision: 194817
URL: http://svn.freebsd.org/changeset/base/194817

Log:
  MFC r193923:
  s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args
  definition.
  
  MFC r193924:
  Fix r193923 by noting that type of a_fp is struct file *, not int.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/fs/cd9660/cd9660_vnops.c
  stable/7/sys/fs/fifofs/fifo_vnops.c
  stable/7/sys/fs/msdosfs/msdosfs_vnops.c
  stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c
  stable/7/sys/kern/uipc_mqueue.c

Modified: stable/7/sys/fs/cd9660/cd9660_vnops.c
==============================================================================
--- stable/7/sys/fs/cd9660/cd9660_vnops.c       Wed Jun 24 09:45:10 2009        
(r194816)
+++ stable/7/sys/fs/cd9660/cd9660_vnops.c       Wed Jun 24 09:54:05 2009        
(r194817)
@@ -166,7 +166,7 @@ cd9660_open(ap)
                int a_mode;
                struct ucred *a_cred;
                struct thread *a_td;
-               int a_fdidx;
+               struct file *a_fp;
        } */ *ap;
 {
        struct vnode *vp = ap->a_vp;

Modified: stable/7/sys/fs/fifofs/fifo_vnops.c
==============================================================================
--- stable/7/sys/fs/fifofs/fifo_vnops.c Wed Jun 24 09:45:10 2009        
(r194816)
+++ stable/7/sys/fs/fifofs/fifo_vnops.c Wed Jun 24 09:54:05 2009        
(r194817)
@@ -166,7 +166,7 @@ fifo_open(ap)
                int  a_mode;
                struct ucred *a_cred;
                struct thread *a_td;
-               int a_fdidx;
+               struct file *a_fp;
        } */ *ap;
 {
        struct vnode *vp = ap->a_vp;

Modified: stable/7/sys/fs/msdosfs/msdosfs_vnops.c
==============================================================================
--- stable/7/sys/fs/msdosfs/msdosfs_vnops.c     Wed Jun 24 09:45:10 2009        
(r194816)
+++ stable/7/sys/fs/msdosfs/msdosfs_vnops.c     Wed Jun 24 09:54:05 2009        
(r194817)
@@ -215,7 +215,7 @@ msdosfs_open(ap)
                int a_mode;
                struct ucred *a_cred;
                struct thread *a_td;
-               int a_fdidx;
+               struct file *a_fp;
        } */ *ap;
 {
        struct denode *dep = VTODE(ap->a_vp);

Modified: stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c
==============================================================================
--- stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jun 24 09:45:10 2009        
(r194816)
+++ stable/7/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jun 24 09:54:05 2009        
(r194817)
@@ -198,7 +198,7 @@ _xfs_open(
                int  a_mode;
                struct ucred *a_cred;
                struct thread *a_td;
-               int  a_fdidx;
+               struct file *a_fp;
        } */ *ap)
 {
        int error;

Modified: stable/7/sys/kern/uipc_mqueue.c
==============================================================================
--- stable/7/sys/kern/uipc_mqueue.c     Wed Jun 24 09:45:10 2009        
(r194816)
+++ stable/7/sys/kern/uipc_mqueue.c     Wed Jun 24 09:54:05 2009        
(r194817)
@@ -1058,7 +1058,7 @@ struct vop_open_args {
        int a_mode;
        struct ucred *a_cred;
        struct thread *a_td;
-       int a_fdidx;
+       struct file *a_fp;
 };
 #endif
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to