From owner-svn-src-all@FreeBSD.ORG Wed Jun 10 14:09:06 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C38831065670; Wed, 10 Jun 2009 14:09: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 96C468FC13; Wed, 10 Jun 2009 14:09: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 n5AE96NJ015917; Wed, 10 Jun 2009 14:09:06 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5AE96gV015912; Wed, 10 Jun 2009 14:09:06 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200906101409.n5AE96gV015912@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 10 Jun 2009 14:09:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r193923 - in head/sys: fs/cd9660 fs/fifofs fs/msdosfs gnu/fs/xfs/FreeBSD kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 14:09:07 -0000 Author: kib Date: Wed Jun 10 14:09:05 2009 New Revision: 193923 URL: http://svn.freebsd.org/changeset/base/193923 Log: s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args definition. Discussed with: bde MFC after: 2 weeks Modified: head/sys/fs/cd9660/cd9660_vnops.c head/sys/fs/fifofs/fifo_vnops.c head/sys/fs/msdosfs/msdosfs_vnops.c head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c head/sys/kern/uipc_mqueue.c Modified: head/sys/fs/cd9660/cd9660_vnops.c ============================================================================== --- head/sys/fs/cd9660/cd9660_vnops.c Wed Jun 10 14:02:22 2009 (r193922) +++ head/sys/fs/cd9660/cd9660_vnops.c Wed Jun 10 14:09:05 2009 (r193923) @@ -165,7 +165,7 @@ cd9660_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap; { struct vnode *vp = ap->a_vp; Modified: head/sys/fs/fifofs/fifo_vnops.c ============================================================================== --- head/sys/fs/fifofs/fifo_vnops.c Wed Jun 10 14:02:22 2009 (r193922) +++ head/sys/fs/fifofs/fifo_vnops.c Wed Jun 10 14:09:05 2009 (r193923) @@ -167,7 +167,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: head/sys/fs/msdosfs/msdosfs_vnops.c ============================================================================== --- head/sys/fs/msdosfs/msdosfs_vnops.c Wed Jun 10 14:02:22 2009 (r193922) +++ head/sys/fs/msdosfs/msdosfs_vnops.c Wed Jun 10 14:09:05 2009 (r193923) @@ -214,7 +214,7 @@ msdosfs_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap; { struct denode *dep = VTODE(ap->a_vp); Modified: head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c ============================================================================== --- head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jun 10 14:02:22 2009 (r193922) +++ head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jun 10 14:09:05 2009 (r193923) @@ -198,7 +198,7 @@ _xfs_open( int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; } */ *ap) { int error; Modified: head/sys/kern/uipc_mqueue.c ============================================================================== --- head/sys/kern/uipc_mqueue.c Wed Jun 10 14:02:22 2009 (r193922) +++ head/sys/kern/uipc_mqueue.c Wed Jun 10 14:09:05 2009 (r193923) @@ -1092,7 +1092,7 @@ struct vop_open_args { int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fdidx; + int a_fp; }; #endif