Date: Wed, 24 Jun 2009 09:54:05 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r194817 - in stable/7/sys: . contrib/pf fs/cd9660 fs/fifofs fs/msdosfs gnu/fs/xfs/FreeBSD kern Message-ID: <200906240954.n5O9s5u3008322@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906240954.n5O9s5u3008322>