From owner-cvs-src@FreeBSD.ORG Thu Aug 7 21:16:19 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 89BAE37B401; Thu, 7 Aug 2003 21:16:19 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7461643FB1; Thu, 7 Aug 2003 21:16:17 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id OAA03052; Fri, 8 Aug 2003 14:16:14 +1000 Date: Fri, 8 Aug 2003 14:16:13 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: John Baldwin In-Reply-To: <200308071504.h77F4Rug087597@repoman.freebsd.org> Message-ID: <20030808141010.F8428@gamplex.bde.org> References: <200308071504.h77F4Rug087597@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/i386/libi386 biospnp.c src/sys/dev/aac aacvar.h src/sys/dev/acpica acpi_pcib_acpi.c src/sys/dev/dgb dgreg.h src/sys/dev/digi digi.c digi.h digireg.h src/sys/de X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list 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 04:16:20 -0000 On Thu, 7 Aug 2003, John Baldwin wrote: > jhb 2003/08/07 08:04:27 PDT > > FreeBSD src repository > > Modified files: > sys/boot/i386/libi386 biospnp.c > sys/dev/aac aacvar.h > [... lots more] > Log: > Consistently use the BSD u_int and u_short instead of the SYSV uint and > ushort. In most of these files, there was a mixture of both styles and > this change just makes them self-consistent. > > Requested by: bde (kern_ktrace.c) Thanks. Many of the shorts should be uint16_t if a small time-inefficient type is actually required, or just plain int or u_int otherwise, but changing them would require a more detailed analysis. Bruce