From owner-svn-src-head@FreeBSD.ORG Wed Jun 10 14:24:32 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86FF51065674; Wed, 10 Jun 2009 14:24:32 +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 5A72F8FC13; Wed, 10 Jun 2009 14:24:32 +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 n5AEOWwd016289; Wed, 10 Jun 2009 14:24:32 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5AEOWoN016285; Wed, 10 Jun 2009 14:24:32 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <200906101424.n5AEOWoN016285@svn.freebsd.org> From: Konstantin Belousov Date: Wed, 10 Jun 2009 14:24:32 +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: r193924 - in head/sys: fs/cd9660 fs/msdosfs gnu/fs/xfs/FreeBSD kern X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 14:24:33 -0000 Author: kib Date: Wed Jun 10 14:24:31 2009 New Revision: 193924 URL: http://svn.freebsd.org/changeset/base/193924 Log: Fix r193923 by noting that type of a_fp is struct file *, not int. It was assumed that r193923 was trivial change that cannot be done wrong. MFC after: 2 weeks Modified: head/sys/fs/cd9660/cd9660_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:09:05 2009 (r193923) +++ head/sys/fs/cd9660/cd9660_vnops.c Wed Jun 10 14:24:31 2009 (r193924) @@ -165,7 +165,7 @@ cd9660_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fp; + 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:09:05 2009 (r193923) +++ head/sys/fs/msdosfs/msdosfs_vnops.c Wed Jun 10 14:24:31 2009 (r193924) @@ -214,7 +214,7 @@ msdosfs_open(ap) int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fp; + struct file *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:09:05 2009 (r193923) +++ head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c Wed Jun 10 14:24:31 2009 (r193924) @@ -198,7 +198,7 @@ _xfs_open( int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fp; + struct file *a_fp; } */ *ap) { int error; Modified: head/sys/kern/uipc_mqueue.c ============================================================================== --- head/sys/kern/uipc_mqueue.c Wed Jun 10 14:09:05 2009 (r193923) +++ head/sys/kern/uipc_mqueue.c Wed Jun 10 14:24:31 2009 (r193924) @@ -1092,7 +1092,7 @@ struct vop_open_args { int a_mode; struct ucred *a_cred; struct thread *a_td; - int a_fp; + struct file *a_fp; }; #endif