From owner-svn-src-all@FreeBSD.ORG Fri Jan 23 13:27:52 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 ADDCF10656FD; Fri, 23 Jan 2009 13:27:52 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 749308FC12; Fri, 23 Jan 2009 13:27:52 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (pool-98-109-39-197.nwrknj.fios.verizon.net [98.109.39.197]) by cyrus.watson.org (Postfix) with ESMTPSA id 22A6746B09; Fri, 23 Jan 2009 08:27:52 -0500 (EST) Received: from localhost (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.14.3/8.14.3) with ESMTP id n0NDRIUS050730; Fri, 23 Jan 2009 08:27:46 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: "Bjoern A. Zeeb" Date: Fri, 23 Jan 2009 08:23:50 -0500 User-Agent: KMail/1.9.7 References: <200812102056.mBAKuJ97042379@svn.freebsd.org> <200812111532.17651.jhb@freebsd.org> <20090122233042.P45399@maildrop.int.zabbadoz.net> In-Reply-To: <20090122233042.P45399@maildrop.int.zabbadoz.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200901230823.51326.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 23 Jan 2009 08:27:46 -0500 (EST) X-Virus-Scanned: ClamAV 0.94.2/8895/Fri Jan 23 04:13:42 2009 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, James Gritton Subject: Re: svn commit: r185878 - in head/sys: compat/freebsd32 kern modules/aio 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: Fri, 23 Jan 2009 13:27:55 -0000 On Thursday 22 January 2009 6:31:20 pm Bjoern A. Zeeb wrote: > On Thu, 11 Dec 2008, John Baldwin wrote: > > > On Thursday 11 December 2008 01:46:21 pm James Gritton wrote: > >> freebsd32_aio_waitcomplete() has a small error: > >> > >> @@ -2824,7 +2824,7 @@ > >> freebsd32_aio_waitcomplete(struct thread *td, > >> struct freebsd32_aio_waitcomplete_args *uap) > >> { > >> - struct timespec ts32; > >> + struct timespec32 ts32; > >> struct timespec ts, *tsp; > >> int error; > >> > >> - Jamie > > > > Oof. :( I think my aiotest thing doesn't call aio_waitcomplete() so I missed > > this. :( > > I think this has never been fixed in HEAD? Goof, just fixed. I believe I fixed this at Y! but forgot to fix it here. :( -- John Baldwin