From owner-svn-src-stable-7@FreeBSD.ORG Wed Jun 24 09:54:06 2009 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 549B1106566C; Wed, 24 Jun 2009 09:54:06 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 267D28FC12; Wed, 24 Jun 2009 09:54:06 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5O9s6eD008328; Wed, 24 Jun 2009 09:54:06 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5O9s5u3008322; Wed, 24 Jun 2009 09:54:05 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200906240954.n5O9s5u3008322@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 24 Jun 2009 09:54:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194817 - in stable/7/sys: . contrib/pf fs/cd9660 fs/fifofs fs/msdosfs gnu/fs/xfs/FreeBSD kern X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2009 09:54:07 -0000 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