From owner-cvs-src@FreeBSD.ORG Fri Aug 8 14:29:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C20E37B401; Fri, 8 Aug 2003 14:29:10 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6368E43FB1; Fri, 8 Aug 2003 14:29:09 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h78LT8QX048020; Fri, 8 Aug 2003 14:29:09 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h78LT8Sj048019; Fri, 8 Aug 2003 14:29:08 -0700 (PDT) Date: Fri, 8 Aug 2003 14:29:08 -0700 From: "David O'Brien" To: Nate Lawson Message-ID: <20030808212908.GA47995@dragon.nuxi.com> References: <200308071638.h77GcWpH097592@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200308071638.h77GcWpH097592@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.1-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica/compiler - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Aug 2003 21:29:10 -0000 On Thu, Aug 07, 2003 at 09:38:32AM -0700, Nate Lawson wrote: > njl 2003/08/07 09:38:32 PDT > > FreeBSD src repository > > src/sys/contrib/dev/acpica/compiler - Imported sources > Update of /home/ncvs/src/sys/contrib/dev/acpica/compiler > In directory repoman.freebsd.org:/tmp/cvs-serv97535 > > Log Message: > Import compiler/ files from acpica 0619 > > Status: > > Vendor Tag: INTEL > Release Tags: r20030619 Please see about commiting this fix somehow. This import broke the AMD64 build because ACPI_SIZE != unsigned int everywhere. Index: osunixxf.c =================================================================== RCS file: /home/ncvs/src/sys/contrib/dev/acpica/osunixxf.c,v retrieving revision 1.1.1.2 diff -u -r1.1.1.2 osunixxf.c --- osunixxf.c 7 Aug 2003 18:19:12 -0000 1.1.1.2 +++ osunixxf.c 8 Aug 2003 21:27:12 -0000 @@ -452,7 +452,7 @@ ACPI_STATUS AcpiOsMapMemory ( ACPI_PHYSICAL_ADDRESS where, - UINT32 length, + ACPI_SIZE length, void **there) { *there = (void *) (UINT32) where;