From owner-cvs-src@FreeBSD.ORG Sun Sep 7 00:43:12 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 2B2DA16A4BF; Sun, 7 Sep 2003 00:43:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D22D43FF9; Sun, 7 Sep 2003 00:43:11 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h877hB0U020873; Sun, 7 Sep 2003 00:43:11 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h877hAu6020872; Sun, 7 Sep 2003 00:43:10 -0700 (PDT) Message-Id: <200309070743.h877hAu6020872@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 7 Sep 2003 00:43:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/coda cnode.h coda.h coda_namecache.c coda_namecache.h coda_subr.c coda_subr.h coda_venus.c coda_venus.h coda_vfsops.c coda_vfsops.h coda_vnops.c src/sys/conf NOTES options src/sys/modules Makefile src/sys/modules/coda Makefile ... 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: Sun, 07 Sep 2003 07:43:12 -0000 tjr 2003/09/07 00:43:10 PDT FreeBSD src repository Modified files: sys/coda cnode.h coda.h coda_namecache.c coda_namecache.h coda_subr.c coda_subr.h coda_venus.c coda_venus.h coda_vfsops.c coda_vfsops.h coda_vnops.c sys/conf NOTES options sys/modules Makefile sys/modules/coda Makefile Added files: sys/modules/coda5 Makefile Log: Add support for the Coda 6.x venus<->kernel interface. This extends FIDs to be 128-bits wide and adds support for realms. Add a new CODA_COMPAT_5 option, which requests support for the old Coda 5.x interface instead of the new one. Create a new coda5.ko module that supports the 5.x interface, and make the existing coda.ko module use the new 6.x interface. These modules cannot both be loaded at the same time. Obtained from: Jan Harkes & the coda-6.0.2 distribution, NetBSD (drochner) (CODA_COMPAT_5 option). Revision Changes Path 1.13 +2 -2 src/sys/coda/cnode.h 1.10 +181 -117 src/sys/coda/coda.h 1.20 +21 -25 src/sys/coda/coda_namecache.c 1.9 +4 -4 src/sys/coda/coda_namecache.h 1.24 +44 -45 src/sys/coda/coda_subr.c 1.8 +1 -1 src/sys/coda/coda_subr.h 1.18 +57 -46 src/sys/coda/coda_venus.c 1.5 +23 -23 src/sys/coda/coda_venus.h 1.46 +10 -19 src/sys/coda/coda_vfsops.c 1.8 +1 -1 src/sys/coda/coda_vfsops.h 1.51 +44 -59 src/sys/coda/coda_vnops.c 1.1173 +3 -0 src/sys/conf/NOTES 1.413 +1 -0 src/sys/conf/options 1.348 +1 -0 src/sys/modules/Makefile 1.13 +6 -2 src/sys/modules/coda/Makefile 1.1 +19 -0 src/sys/modules/coda5/Makefile (new) From owner-cvs-src@FreeBSD.ORG Sun Sep 7 00:52:57 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 5D12216A4BF; Sun, 7 Sep 2003 00:52:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D769543FE5; Sun, 7 Sep 2003 00:52:56 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h877qu0U026772; Sun, 7 Sep 2003 00:52:56 -0700 (PDT) (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h877quDb026771; Sun, 7 Sep 2003 00:52:56 -0700 (PDT) Message-Id: <200309070752.h877quDb026771@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 7 Sep 2003 00:52:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/ipfw change_rules.sh 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: Sun, 07 Sep 2003 07:52:57 -0000 jmg 2003/09/07 00:52:56 PDT FreeBSD src repository Modified files: share/examples/ipfw change_rules.sh Log: make sure we really don't have a tty when installing rules. This prevents a flush command from asking a question (you can't see): If there is no tty associated with the process, this is implied. MFC after: 1 day Revision Changes Path 1.6 +3 -3 src/share/examples/ipfw/change_rules.sh From owner-cvs-src@FreeBSD.ORG Sun Sep 7 02:13:27 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 AEB7916A4BF; Sun, 7 Sep 2003 02:13:27 -0700 (PDT) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA2A644013; Sun, 7 Sep 2003 02:13:25 -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 TAA20538; Sun, 7 Sep 2003 19:13:23 +1000 Date: Sun, 7 Sep 2003 19:13:22 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Jens Schweikhardt In-Reply-To: <200309041828.h84ISga9035283@repoman.freebsd.org> Message-ID: <20030907191013.U3442@gamplex.bde.org> References: <200309041828.h84ISga9035283@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/bin/sh arith.h arith.y arith_lex.l shell.h 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: Sun, 07 Sep 2003 09:13:27 -0000 On Thu, 4 Sep 2003, Jens Schweikhardt wrote: > schweikh 2003/09/04 11:28:42 PDT > > FreeBSD src repository > > Modified files: > bin/sh arith.h arith.y arith_lex.l shell.h > Log: > Style cleanup, mostly > > Requested by: bde > > Revision Changes Path > 1.8 +2 -2 src/bin/sh/arith.h > 1.16 +188 -151 src/bin/sh/arith.y > 1.20 +50 -47 src/bin/sh/arith_lex.l > 1.16 +6 -7 src/bin/sh/shell.h Thanks. I don't know of any style rules for lex and yacc sources other than very general ones, but it looks reasonable now. Bruce From owner-cvs-src@FreeBSD.ORG Sun Sep 7 02:13:45 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 EE70416A4C0; Sun, 7 Sep 2003 02:13:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5442944001; Sun, 7 Sep 2003 02:13:45 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h879Dj0U031468; Sun, 7 Sep 2003 02:13:45 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h879Djwe031467; Sun, 7 Sep 2003 02:13:45 -0700 (PDT) Message-Id: <200309070913.h879Djwe031467@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 7 Sep 2003 02:13:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/killall killall.c 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: Sun, 07 Sep 2003 09:13:46 -0000 tjr 2003/09/07 02:13:45 PDT FreeBSD src repository Modified files: usr.bin/killall killall.c Log: Use KERN_PROC_PROC instead of KERN_PROC_ALL when enumerating processes so that we kill each process once, not once for every thread it owns. This avoids "No such process" warnings when killing threaded processes. Revision Changes Path 1.23 +4 -7 src/usr.bin/killall/killall.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 03:14:56 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 EB53B16A4BF; Sun, 7 Sep 2003 03:14:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B5844008; Sun, 7 Sep 2003 03:14:56 -0700 (PDT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87AEu0U034827; Sun, 7 Sep 2003 03:14:56 -0700 (PDT) (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87AEuP8034826; Sun, 7 Sep 2003 03:14:56 -0700 (PDT) Message-Id: <200309071014.h87AEuP8034826@repoman.freebsd.org> From: Jens Schweikhardt Date: Sun, 7 Sep 2003 03:14:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh arith.y 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: Sun, 07 Sep 2003 10:14:57 -0000 schweikh 2003/09/07 03:14:56 PDT FreeBSD src repository Modified files: bin/sh arith.y Log: Fix testing of arith_assign() value for $((a=15)). Submitted by: Enache Adrian Revision Changes Path 1.17 +1 -1 src/bin/sh/arith.y From owner-cvs-src@FreeBSD.ORG Sun Sep 7 03:46:24 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 D2BD416A4BF; Sun, 7 Sep 2003 03:46:24 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D40743FF2; Sun, 7 Sep 2003 03:46:20 -0700 (PDT) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h87AkEEV011807 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 7 Sep 2003 13:46:15 +0300 (EEST) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h87AkE1X011802; Sun, 7 Sep 2003 13:46:14 +0300 (EEST) (envelope-from ru) Date: Sun, 7 Sep 2003 13:46:14 +0300 From: Ruslan Ermilov To: Warner Losh Message-ID: <20030907104614.GC10526@sunbay.com> References: <200309070216.h872GBh2098385@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Bu8it7iiRSEf40bY" Content-Disposition: inline In-Reply-To: <200309070216.h872GBh2098385@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make cond.c 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: Sun, 07 Sep 2003 10:46:25 -0000 --Bu8it7iiRSEf40bY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 06, 2003 at 07:16:10PM -0700, Warner Losh wrote: > imp 2003/09/06 19:16:10 PDT >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/make cond.c=20 > Log: > Keep up with minor changes to NetBSD. Consider a variable empty when > not define. > =20 > Obtained From: NetBSD (rev 1.18; sjg) > =20 > Revision Changes Path > 1.27 +1 -1 src/usr.bin/make/cond.c >=20 Does it mean that ``.if empty(FOO)'' will not cause an error now when FOO is not defined? If so, what is the motivation for this change? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --Bu8it7iiRSEf40bY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE/Wwx2Ukv4P6juNwoRAl0rAKCALo4adqUxXXhT1Y+AFH5RBaSj5ACfW3SD Noh90QwJSDElsYIWzwFS+b8= =N1ht -----END PGP SIGNATURE----- --Bu8it7iiRSEf40bY-- From owner-cvs-src@FreeBSD.ORG Sun Sep 7 04:14:54 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 9F2EC16A4C1; Sun, 7 Sep 2003 04:14:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3712643FE9; Sun, 7 Sep 2003 04:14:53 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87BEr0U037794; Sun, 7 Sep 2003 04:14:53 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87BEqt7037793; Sun, 7 Sep 2003 04:14:52 -0700 (PDT) Message-Id: <200309071114.h87BEqt7037793@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 7 Sep 2003 04:14:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_umtx.c 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: Sun, 07 Sep 2003 11:14:54 -0000 tjr 2003/09/07 04:14:52 PDT FreeBSD src repository Modified files: sys/kern kern_umtx.c Log: Return EINVAL if the contested bit is not set on the umtx passed to _umtx_unlock() instead of firing a KASSERT. Revision Changes Path 1.13 +2 -1 src/sys/kern/kern_umtx.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 04:31:18 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 250E416A4BF; Sun, 7 Sep 2003 04:31:18 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81E1243F75; Sun, 7 Sep 2003 04:31:15 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9/8.12.3) with ESMTP id h87BVETX090240; Sun, 7 Sep 2003 05:31:14 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 07 Sep 2003 05:30:10 -0600 (MDT) Message-Id: <20030907.053010.130739333.imp@bsdimp.com> To: ru@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20030907104614.GC10526@sunbay.com> References: <200309070216.h872GBh2098385@repoman.freebsd.org> <20030907104614.GC10526@sunbay.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make cond.c 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: Sun, 07 Sep 2003 11:31:18 -0000 In message: <20030907104614.GC10526@sunbay.com> Ruslan Ermilov writes: : On Sat, Sep 06, 2003 at 07:16:10PM -0700, Warner Losh wrote: : > imp 2003/09/06 19:16:10 PDT : > : > FreeBSD src repository : > : > Modified files: : > usr.bin/make cond.c : > Log: : > Keep up with minor changes to NetBSD. Consider a variable empty when : > not define. : > : > Obtained From: NetBSD (rev 1.18; sjg) : > : > Revision Changes Path : > 1.27 +1 -1 src/usr.bin/make/cond.c : > : Does it mean that ``.if empty(FOO)'' will not cause an error : now when FOO is not defined? If so, what is the motivation : for this change? The NetBSD folks needed it for something, I'm not sure what. Since it was easy, didn't brea anything and cross BSD make divergence has been a problem in the past, I went ahead and added it. Warner From owner-cvs-src@FreeBSD.ORG Sun Sep 7 05:46:04 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 47E2916A4BF; Sun, 7 Sep 2003 05:46:04 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 327B443FE5; Sun, 7 Sep 2003 05:46:00 -0700 (PDT) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h87CjYEV023352 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 7 Sep 2003 15:45:35 +0300 (EEST) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h87CjXw3023351; Sun, 7 Sep 2003 15:45:33 +0300 (EEST) (envelope-from ru) Date: Sun, 7 Sep 2003 15:45:33 +0300 From: Ruslan Ermilov To: "M. Warner Losh" Message-ID: <20030907124533.GA21121@sunbay.com> References: <200309070216.h872GBh2098385@repoman.freebsd.org> <20030907104614.GC10526@sunbay.com> <20030907.053010.130739333.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <20030907.053010.130739333.imp@bsdimp.com> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make cond.c 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: Sun, 07 Sep 2003 12:46:04 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Sep 07, 2003 at 05:30:10AM -0600, M. Warner Losh wrote: > In message: <20030907104614.GC10526@sunbay.com> > Ruslan Ermilov writes: > : On Sat, Sep 06, 2003 at 07:16:10PM -0700, Warner Losh wrote: > : > imp 2003/09/06 19:16:10 PDT > : >=20 > : > FreeBSD src repository > : >=20 > : > Modified files: > : > usr.bin/make cond.c=20 > : > Log: > : > Keep up with minor changes to NetBSD. Consider a variable empty wh= en > : > not define. > : > =20 > : > Obtained From: NetBSD (rev 1.18; sjg) > : > =20 > : > Revision Changes Path > : > 1.27 +1 -1 src/usr.bin/make/cond.c > : >=20 > : Does it mean that ``.if empty(FOO)'' will not cause an error > : now when FOO is not defined? If so, what is the motivation > : for this change? >=20 > The NetBSD folks needed it for something, I'm not sure what. Since it > was easy, didn't brea anything and cross BSD make divergence has been > a problem in the past, I went ahead and added it. >=20 This change is in NetBSD for only 29 hours, the reasoning is not well understood, and our make(1)'s are so much different that I don't really think this particular one makes them really closer. It also seems counter-intuitive to me -- undefined variable doesn't have _any_ value, so we cannot say if it's empty or not. Like in SQL there's a special "IS NULL" operator to test if a value is null, I want we continue to treat undefined make variables specially, with the existing defined() function, unless there is a good reason not to. Sorry, but the above explanation does not sound like this. Could you please dig up what is the real reasoning behind the change? If the only reason is to ease writing constructs like .if defined(FOO) && !empty(FOO) ... which are common, then I'm strongly against it, FWIW. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE/WyhtUkv4P6juNwoRAvFXAJsGI0npfrDK/oNqovkJuqBVhDa6iACeMeF0 tcVg0NtXK1jC7GjpCVys6pk= =PJPZ -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- From owner-cvs-src@FreeBSD.ORG Sun Sep 7 05:52:18 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 EB2C316A4BF; Sun, 7 Sep 2003 05:52:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 753FA43F3F; Sun, 7 Sep 2003 05:52:18 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87CqI0U047886; Sun, 7 Sep 2003 05:52:18 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87CqHDE047885; Sun, 7 Sep 2003 05:52:17 -0700 (PDT) Message-Id: <200309071252.h87CqHDE047885@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Sep 2003 05:52:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/test Makefile 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: Sun, 07 Sep 2003 12:52:19 -0000 ru 2003/09/07 05:52:17 PDT FreeBSD src repository Modified files: bin/test Makefile Log: Don't escape names in MLINKS: this won't work with bsd.man.mk,v 1.53. Revision Changes Path 1.10 +1 -1 src/bin/test/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 05:59:23 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 500E416A4BF; Sun, 7 Sep 2003 05:59:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCD2743FCB; Sun, 7 Sep 2003 05:59:22 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87CxM0U048142; Sun, 7 Sep 2003 05:59:22 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87CxMgF048141; Sun, 7 Sep 2003 05:59:22 -0700 (PDT) Message-Id: <200309071259.h87CxMgF048141@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Sep 2003 05:59:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.man.mk 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: Sun, 07 Sep 2003 12:59:23 -0000 ru 2003/09/07 05:59:22 PDT FreeBSD src repository Modified files: share/mk bsd.man.mk Log: Implement sed(1) commands using the make(1)'s RE variable modifier. (This almost eliminates the need of a sed(1) during installworld.) Revision Changes Path 1.53 +3 -3 src/share/mk/bsd.man.mk From owner-cvs-src@FreeBSD.ORG Sun Sep 7 06:03:15 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 045E616A4BF; Sun, 7 Sep 2003 06:03:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 931C143FF9; Sun, 7 Sep 2003 06:03:14 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87D3E0U049230; Sun, 7 Sep 2003 06:03:14 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87D3Da1049229; Sun, 7 Sep 2003 06:03:13 -0700 (PDT) Message-Id: <200309071303.h87D3Da1049229@repoman.freebsd.org> From: Bruce Evans Date: Sun, 7 Sep 2003 06:03:13 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_misc.c 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: Sun, 07 Sep 2003 13:03:15 -0000 bde 2003/09/07 06:03:13 PDT FreeBSD src repository Modified files: sys/compat/linux linux_misc.c Log: Restored a non-egregious cast so that this file compiles on i386's with 64-bit longs again. This was fixed in rev.1.42 but the fix rotted non-fatally in rev.1.105 and fatally in rev.1.137. Many more non-egregrious casts are strictly required for conversions from semi-opaque types to pointers, but we avoid most of them by using types that are almost certain to be compatible with uintptr_t for representing pointers (e.g., vm_offset_t). Here we don't really want the u_longs, but we have them because a.out.h and its support code doesn't use typedefs (it uses unsigned in V7 and unsigned long in FreeBSD) and is too obsolete to fix now. Revision Changes Path 1.148 +1 -1 src/sys/compat/linux/linux_misc.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 06:09:48 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 7CC8216A4BF; Sun, 7 Sep 2003 06:09:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07E1A44001; Sun, 7 Sep 2003 06:09:48 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87D9l0U049587; Sun, 7 Sep 2003 06:09:47 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87D9l6U049586; Sun, 7 Sep 2003 06:09:47 -0700 (PDT) Message-Id: <200309071309.h87D9l6U049586@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Sep 2003 06:09:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/cvs/lib Makefile 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: Sun, 07 Sep 2003 13:09:48 -0000 ru 2003/09/07 06:09:47 PDT FreeBSD src repository Modified files: gnu/usr.bin/cvs/lib Makefile Log: Only evaluate CVS version once, when necessary. Eliminates the need in sed(1) during install. Revision Changes Path 1.23 +3 -4 src/gnu/usr.bin/cvs/lib/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 06:17:32 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 F057F16A4BF; Sun, 7 Sep 2003 06:17:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AD5543FE5; Sun, 7 Sep 2003 06:17:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87DHW0U049920; Sun, 7 Sep 2003 06:17:32 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87DHWWH049919; Sun, 7 Sep 2003 06:17:32 -0700 (PDT) Message-Id: <200309071317.h87DHWWH049919@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Sep 2003 06:17:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/cvs/cvsbug Makefile 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: Sun, 07 Sep 2003 13:17:33 -0000 ru 2003/09/07 06:17:32 PDT FreeBSD src repository Modified files: gnu/usr.bin/cvs/cvsbug Makefile Log: Only evaluate CVS version once, when necessary. Eliminates the need in sed(1) during install. Revision Changes Path 1.19 +3 -3 src/gnu/usr.bin/cvs/cvsbug/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 06:23:46 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 B9C0716A4BF; Sun, 7 Sep 2003 06:23:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4305343FE3; Sun, 7 Sep 2003 06:23:46 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87DNk0U050109; Sun, 7 Sep 2003 06:23:46 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87DNjhD050108; Sun, 7 Sep 2003 06:23:45 -0700 (PDT) Message-Id: <200309071323.h87DNjhD050108@repoman.freebsd.org> From: Bruce Evans Date: Sun, 7 Sep 2003 06:23:45 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/linux imgact_linux.c 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: Sun, 07 Sep 2003 13:23:46 -0000 bde 2003/09/07 06:23:45 PDT FreeBSD src repository Modified files: sys/i386/linux imgact_linux.c Log: Restored non-egregious casts so that this file compiles on i386's with 64-bit longs again. Revision Changes Path 1.50 +4 -3 src/sys/i386/linux/imgact_linux.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 06:38:08 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 AA54216A4BF; Sun, 7 Sep 2003 06:38:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D5A43FA3; Sun, 7 Sep 2003 06:38:08 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Dc70U050631; Sun, 7 Sep 2003 06:38:07 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87Dc7OS050622; Sun, 7 Sep 2003 06:38:07 -0700 (PDT) Message-Id: <200309071338.h87Dc7OS050622@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Sep 2003 06:38:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/send-pr Makefile 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: Sun, 07 Sep 2003 13:38:08 -0000 ru 2003/09/07 06:38:07 PDT FreeBSD src repository Modified files: gnu/usr.bin/send-pr Makefile Log: Eliminate the need in uname(1) during install. Revision Changes Path 1.18 +2 -2 src/gnu/usr.bin/send-pr/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 06:43:02 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 8E47F16A4BF; Sun, 7 Sep 2003 06:43:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17D9143FE9; Sun, 7 Sep 2003 06:43:02 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Dh10U050853; Sun, 7 Sep 2003 06:43:01 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87Dh1pB050852; Sun, 7 Sep 2003 06:43:01 -0700 (PDT) Message-Id: <200309071343.h87Dh1pB050852@repoman.freebsd.org> From: Bruce Evans Date: Sun, 7 Sep 2003 06:43:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 db_interface.c 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: Sun, 07 Sep 2003 13:43:02 -0000 bde 2003/09/07 06:43:01 PDT FreeBSD src repository Modified files: sys/i386/i386 db_interface.c Log: Moved stop/start code for other CPUs to near the beginning/end of kdb_trap(). Stopping the other CPUs acts like locking them out, but it wasn't done early enough or held long enough to prevent concurrent accesses to shared data. In particular, the saved regs could be clobbered. Revision Changes Path 1.75 +41 -41 src/sys/i386/i386/db_interface.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 07:11:04 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 0ECEA16A4BF; Sun, 7 Sep 2003 07:11:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A49F43FCB; Sun, 7 Sep 2003 07:11:03 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87EB30U052997; Sun, 7 Sep 2003 07:11:03 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87EB27R052996; Sun, 7 Sep 2003 07:11:02 -0700 (PDT) Message-Id: <200309071411.h87EB27R052996@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 07:11:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mksnap_ffs mksnap_ffs.8 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: Sun, 07 Sep 2003 14:11:04 -0000 charnier 2003/09/07 07:11:02 PDT FreeBSD src repository Modified files: sbin/mksnap_ffs mksnap_ffs.8 Log: Replace a reference to non existant mount_ffs(8) by a reference to mount(8). Revision Changes Path 1.3 +1 -1 src/sbin/mksnap_ffs/mksnap_ffs.8 From owner-cvs-src@FreeBSD.ORG Sun Sep 7 07:15:43 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 1C39016A4BF; Sun, 7 Sep 2003 07:15:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96B4743FA3; Sun, 7 Sep 2003 07:15:42 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87EFg0U053247; Sun, 7 Sep 2003 07:15:42 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87EFfLh053246; Sun, 7 Sep 2003 07:15:41 -0700 (PDT) Message-Id: <200309071415.h87EFfLh053246@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Sep 2003 07:15:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 src/share/mk bsd.lib.mk 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: Sun, 07 Sep 2003 14:15:43 -0000 ru 2003/09/07 07:15:40 PDT FreeBSD src repository Modified files: . Makefile.inc1 share/mk bsd.lib.mk Log: - No need to create libfoo.so -> libfoo.so.X symlinks in /lib, as it was decided that our toolchain will revert to looking for libraries in /usr/lib only. - Make /usr/lib/libfoo.so -> /lib/libfoo.so.X symlinks absolute so that they still work if /usr is symlinked. - Remove stale /usr/lib/libfoo.so.X libraries during install. Discussed with: gordon, obrien, peter Revision Changes Path 1.390 +1 -0 src/Makefile.inc1 1.154 +8 -3 src/share/mk/bsd.lib.mk From owner-cvs-src@FreeBSD.ORG Sun Sep 7 07:17: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 943ED16A4BF; Sun, 7 Sep 2003 07:17:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F38943FF9; Sun, 7 Sep 2003 07:17:18 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87EHI0U053340; Sun, 7 Sep 2003 07:17:18 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87EHH7I053339; Sun, 7 Sep 2003 07:17:17 -0700 (PDT) Message-Id: <200309071417.h87EHH7I053339@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 07:17:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/rcorder rcorder.c 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: Sun, 07 Sep 2003 14:17:19 -0000 charnier 2003/09/07 07:17:17 PDT FreeBSD src repository Modified files: sbin/rcorder rcorder.c Log: de-__P(). Revision Changes Path 1.2 +27 -22 src/sbin/rcorder/rcorder.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 07:23:09 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 B4DE116A4BF; Sun, 7 Sep 2003 07:23:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 487B743FAF; Sun, 7 Sep 2003 07:23:09 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87EN80U053575; Sun, 7 Sep 2003 07:23:09 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87EN8uf053574; Sun, 7 Sep 2003 07:23:08 -0700 (PDT) Message-Id: <200309071423.h87EN8uf053574@repoman.freebsd.org> From: Bruce Evans Date: Sun, 7 Sep 2003 07:23:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 machdep.c src/sys/i386/isa clock.c 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: Sun, 07 Sep 2003 14:23:09 -0000 bde 2003/09/07 07:23:08 PDT FreeBSD src repository Modified files: sys/i386/i386 machdep.c sys/i386/isa clock.c Log: clock.c: Quick fix for calling DELAY() for ddb input in some (atkbd-based) console drivers. ddb must not use any normal locks, but DELAY() normally calls getit() which needs clock_lock. One problem with using normal locks in ddb is that deadlock is possible, but deadlock on clock_lock is unlikely becaluse clock_lock is bogusly recursive, apparently just to hide the problem of ddb using it. The i8254 clock hardware has mostly write-only registers so it is important for it to use a lock that gives exclusive access. (atkbd hardware is also unfriendly to reentrant software but that problem is more local and already solved.) I mostly saw the symptoms of the bug caused by unlocking in getit() running cpu_unpend(). cpu_unpend() should not be called while in ddb and Debugger() calls for failing assertions about this caused a breakpoint within ddb. ddb must also not call getit() because ddb may be being used to step through clock initialization code that has stopped or otherwise mangled the clock. If the clock is stopped, then getit() always returns the same value and DELAY() takes forever if it trusts getit(). The quick fix is implement DELAY(n) as (n * timer_freq / 1000000) inb(0x84)'s if ddb is active. machdep.c: Don't permit recursion on clock_lock. Revision Changes Path 1.570 +1 -1 src/sys/i386/i386/machdep.c 1.204 +18 -2 src/sys/i386/isa/clock.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 07:33:09 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 2999316A4BF; Sun, 7 Sep 2003 07:33:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A78B943FCB; Sun, 7 Sep 2003 07:33:08 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87EX80U054014; Sun, 7 Sep 2003 07:33:08 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87EX77I054013; Sun, 7 Sep 2003 07:33:07 -0700 (PDT) Message-Id: <200309071433.h87EX77I054013@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 07:33:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/colldef colldef.1 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: Sun, 07 Sep 2003 14:33:09 -0000 charnier 2003/09/07 07:33:07 PDT FreeBSD src repository Modified files: usr.bin/colldef colldef.1 Log: The .Fn function. Dot terminate sentences. Use .Bd/.Ed instead of .Ar to emphasize examples of source definition file. Revision Changes Path 1.19 +35 -25 src/usr.bin/colldef/colldef.1 From owner-cvs-src@FreeBSD.ORG Sun Sep 7 07:40:25 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 0043D16A4BF; Sun, 7 Sep 2003 07:40:25 -0700 (PDT) Received: from hermes.aueb.gr (hermes.aueb.gr [195.251.255.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id A891143FD7; Sun, 7 Sep 2003 07:40:23 -0700 (PDT) (envelope-from dds@aueb.gr) Received: from aueb.gr (faculty07.right.dialup.aueb.gr [195.251.255.251]) by hermes.aueb.gr (8.12.9/8.12.9) with ESMTP id h87EeI6T010821; Sun, 7 Sep 2003 17:40:20 +0300 Message-ID: <3F5B42F4.D854AA26@aueb.gr> Date: Sun, 07 Sep 2003 17:38:44 +0300 From: Diomidis Spinellis Organization: Athens University of Ecomomics and Business X-Mailer: Mozilla 4.78 [en] (Windows NT 5.0; U) X-Accept-Language: en,el,de MIME-Version: 1.0 To: Bruce Evans References: <200309041828.h84ISga9035283@repoman.freebsd.org> <20030907191013.U3442@gamplex.bde.org> Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Jens Schweikhardt Subject: Re: cvs commit: src/bin/sh arith.h arith.y arith_lex.l shell.h 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: Sun, 07 Sep 2003 14:40:25 -0000 Bruce Evans wrote: > Thanks. I don't know of any style rules for lex and yacc sources other > than very general ones, but it looks reasonable now. Amazingly, style rules for yacc appear in the original Steve Johnson's paper "Yacc: yet Another Compiler-Compiler", contributed by Brian Kernighan, no less. The paper was part of the 7th edition Unix Programmer's Manual, Volume 2, Supplementary Documents (PSD), which is available in PDF format at . "Input Style It is difficult to provide rules with substantial actions and still have a readable specification file. The following style hints owe much to Brian Kernighan. a. Use all capital letters for token names, all lower case letters for nonterminal names. This rule comes under the heading of ``knowing who to blame when things go wrong.'' b. Put grammar rules and actions on separate lines. This allows either to be changed without an automatic need to change the other. c. Put all rules with the same left hand side together. Put the left hand side in only once, and let all following rules begin with a vertical bar. d. Put a semicolon only after the last rule with a given left hand side, and put the semicolon on a separate line. This allows new rules to be easily added. e. Indent rule bodies by two tab stops, and action bodies by three tab stops. " Diomidis - dds@ From owner-cvs-src@FreeBSD.ORG Sun Sep 7 08:26:45 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 512E016A4BF; Sun, 7 Sep 2003 08:26:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C680A43F75; Sun, 7 Sep 2003 08:26:44 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87FQi0U056850; Sun, 7 Sep 2003 08:26:44 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87FQiTw056849; Sun, 7 Sep 2003 08:26:44 -0700 (PDT) Message-Id: <200309071526.h87FQiTw056849@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 08:26:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/rpcinfo rpcinfo.c 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: Sun, 07 Sep 2003 15:26:45 -0000 charnier 2003/09/07 08:26:44 PDT FreeBSD src repository Modified files: usr.bin/rpcinfo rpcinfo.c Log: Add FBSDID. Use errx() instead of fprintf()/exit(). Call exit() at the end of usage() and make the code aware of that. Revision Changes Path 1.16 +44 -92 src/usr.bin/rpcinfo/rpcinfo.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 08:30:44 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 716C116A4BF; Sun, 7 Sep 2003 08:30:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D0D443FB1; Sun, 7 Sep 2003 08:30:43 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87FUh0U057100; Sun, 7 Sep 2003 08:30:43 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87FUhjD057099; Sun, 7 Sep 2003 08:30:43 -0700 (PDT) Message-Id: <200309071530.h87FUhjD057099@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 08:30:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/rsh rsh.c 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: Sun, 07 Sep 2003 15:30:44 -0000 charnier 2003/09/07 08:30:42 PDT FreeBSD src repository Modified files: usr.bin/rsh rsh.c Log: Remove duplicate #include. Do not \n terminate errx() arg. Revision Changes Path 1.32 +3 -2 src/usr.bin/rsh/rsh.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 08:43:52 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 2857B16A4BF; Sun, 7 Sep 2003 08:43:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A428544005; Sun, 7 Sep 2003 08:43:50 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Fho0U057566; Sun, 7 Sep 2003 08:43:50 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87FhoHJ057565; Sun, 7 Sep 2003 08:43:50 -0700 (PDT) Message-Id: <200309071543.h87FhoHJ057565@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 08:43:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/script script.1 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: Sun, 07 Sep 2003 15:43:52 -0000 charnier 2003/09/07 08:43:50 PDT FreeBSD src repository Modified files: usr.bin/script script.1 Log: Introduce arguments the standard way. In .Ar command ..., ... is not an argument, command is. Revision Changes Path 1.17 +4 -4 src/usr.bin/script/script.1 From owner-cvs-src@FreeBSD.ORG Sun Sep 7 08:50:44 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 EC4AA16A4BF; Sun, 7 Sep 2003 08:50:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C5E243FB1; Sun, 7 Sep 2003 08:50:44 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Foi0U063342; Sun, 7 Sep 2003 08:50:44 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87FohB4063341; Sun, 7 Sep 2003 08:50:43 -0700 (PDT) Message-Id: <200309071550.h87FohB4063341@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 08:50:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/truss main.c setup.c 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: Sun, 07 Sep 2003 15:50:45 -0000 charnier 2003/09/07 08:50:43 PDT FreeBSD src repository Modified files: usr.bin/truss main.c setup.c Log: Add FBSDID. Do not \n terminate warnx() argument. fprint() -> warnx(). Revision Changes Path 1.34 +3 -5 src/usr.bin/truss/main.c 1.18 +3 -6 src/usr.bin/truss/setup.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 09:28:05 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 AE28116A4BF; Sun, 7 Sep 2003 09:28:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDFD243FBF; Sun, 7 Sep 2003 09:28:04 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87GS40U065617; Sun, 7 Sep 2003 09:28:04 -0700 (PDT) (envelope-from cg@repoman.freebsd.org) Received: (from cg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87GS4pd065616; Sun, 7 Sep 2003 09:28:04 -0700 (PDT) Message-Id: <200309071628.h87GS4pd065616@repoman.freebsd.org> From: Cameron Grant Date: Sun, 7 Sep 2003 09:28:04 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sndbuf_dma.c src/sys/dev/sound/pci aureal.c aureal.h emu10k1.c es137x.c maestro.c neomagic-coeff.h neomagic.c... 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: Sun, 07 Sep 2003 16:28:05 -0000 cg 2003/09/07 09:28:04 PDT FreeBSD src repository Modified files: sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sndbuf_dma.c sys/dev/sound/pci aureal.c aureal.h emu10k1.c es137x.c maestro.c neomagic-coeff.h neomagic.c neomagic.h solo.c t4dwave.c t4dwave.h sys/dev/sound/pcm ac97.c ac97.h buffer.c buffer.h channel.c channel.h dsp.c dsp.h fake.c feeder.c feeder.h feeder_fmt.c mixer.c mixer.h sndstat.c sound.c sound.h vchan.c vchan.h Log: update my email address. Revision Changes Path 1.29 +1 -1 src/sys/dev/sound/isa/ad1816.c 1.27 +1 -1 src/sys/dev/sound/isa/ess.c 1.86 +1 -1 src/sys/dev/sound/isa/mss.c 1.80 +1 -1 src/sys/dev/sound/isa/sb16.c 1.73 +1 -1 src/sys/dev/sound/isa/sb8.c 1.2 +1 -1 src/sys/dev/sound/isa/sndbuf_dma.c 1.26 +1 -1 src/sys/dev/sound/pci/aureal.c 1.3 +1 -1 src/sys/dev/sound/pci/aureal.h 1.41 +1 -1 src/sys/dev/sound/pci/emu10k1.c 1.48 +1 -1 src/sys/dev/sound/pci/es137x.c 1.21 +1 -1 src/sys/dev/sound/pci/maestro.c 1.2 +1 -1 src/sys/dev/sound/pci/neomagic-coeff.h 1.30 +1 -1 src/sys/dev/sound/pci/neomagic.c 1.3 +2 -2 src/sys/dev/sound/pci/neomagic.h 1.29 +1 -1 src/sys/dev/sound/pci/solo.c 1.40 +1 -1 src/sys/dev/sound/pci/t4dwave.c 1.6 +2 -2 src/sys/dev/sound/pci/t4dwave.h 1.47 +1 -1 src/sys/dev/sound/pcm/ac97.c 1.15 +1 -1 src/sys/dev/sound/pcm/ac97.h 1.20 +2 -2 src/sys/dev/sound/pcm/buffer.c 1.7 +1 -1 src/sys/dev/sound/pcm/buffer.h 1.90 +1 -1 src/sys/dev/sound/pcm/channel.c 1.28 +1 -1 src/sys/dev/sound/pcm/channel.h 1.66 +1 -1 src/sys/dev/sound/pcm/dsp.c 1.7 +2 -2 src/sys/dev/sound/pcm/dsp.h 1.13 +1 -1 src/sys/dev/sound/pcm/fake.c 1.32 +1 -1 src/sys/dev/sound/pcm/feeder.c 1.11 +1 -1 src/sys/dev/sound/pcm/feeder.h 1.13 +1 -1 src/sys/dev/sound/pcm/feeder_fmt.c 1.32 +1 -1 src/sys/dev/sound/pcm/mixer.c 1.12 +2 -2 src/sys/dev/sound/pcm/mixer.h 1.14 +1 -1 src/sys/dev/sound/pcm/sndstat.c 1.85 +1 -1 src/sys/dev/sound/pcm/sound.c 1.52 +1 -1 src/sys/dev/sound/pcm/sound.h 1.13 +1 -1 src/sys/dev/sound/pcm/vchan.c 1.3 +2 -2 src/sys/dev/sound/pcm/vchan.h From owner-cvs-src@FreeBSD.ORG Sun Sep 7 09:31:33 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 6F9E816A4BF; Sun, 7 Sep 2003 09:31:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E21943FDF; Sun, 7 Sep 2003 09:31:32 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87GVW0U065913; Sun, 7 Sep 2003 09:31:32 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87GVW4h065912; Sun, 7 Sep 2003 09:31:32 -0700 (PDT) Message-Id: <200309071631.h87GVW4h065912@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 09:31:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/w w.c 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: Sun, 07 Sep 2003 16:31:33 -0000 charnier 2003/09/07 09:31:32 PDT FreeBSD src repository Modified files: usr.bin/w w.c Log: Do not print the result of strftime() in case of failure, the content is indeterminate in such a case. The correct value for 2nd argument is sizeof(buf). Do not NUL-terminate the result string, strftime() will do it for us. Revision Changes Path 1.57 +3 -5 src/usr.bin/w/w.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 09:34:04 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 B994B16A4BF; Sun, 7 Sep 2003 09:34:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1449643FBD; Sun, 7 Sep 2003 09:34:03 -0700 (PDT) (envelope-from hmp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87GY30U065981; Sun, 7 Sep 2003 09:34:03 -0700 (PDT) (envelope-from hmp@repoman.freebsd.org) Received: (from hmp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87GY3Ys065980; Sun, 7 Sep 2003 09:34:03 -0700 (PDT) Message-Id: <200309071634.h87GY3Ys065980@repoman.freebsd.org> From: Hiten Pandya Date: Sun, 7 Sep 2003 09:34:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 uart.4 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: Sun, 07 Sep 2003 16:34:04 -0000 hmp 2003/09/07 09:34:03 PDT FreeBSD src repository (doc committer) Modified files: share/man/man4 uart.4 Log: Change an `is' to a `was' in the AUTHORS section. Recommended by: jmallett Revision Changes Path 1.3 +1 -1 src/share/man/man4/uart.4 From owner-cvs-src@FreeBSD.ORG Sun Sep 7 09:43:54 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 170C916A4BF; Sun, 7 Sep 2003 09:43:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94B9D43FAF; Sun, 7 Sep 2003 09:43:53 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Ghr0U066381; Sun, 7 Sep 2003 09:43:53 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87Ghrg4066380; Sun, 7 Sep 2003 09:43:53 -0700 (PDT) Message-Id: <200309071643.h87Ghrg4066380@repoman.freebsd.org> From: Philippe Charnier Date: Sun, 7 Sep 2003 09:43:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/chown chown.c 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: Sun, 07 Sep 2003 16:43:54 -0000 charnier 2003/09/07 09:43:53 PDT FreeBSD src repository Modified files: usr.sbin/chown chown.c Log: Use uid_t. Revision Changes Path 1.28 +4 -3 src/usr.sbin/chown/chown.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 10:17:48 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 B4EB716A4BF; Sun, 7 Sep 2003 10:17:48 -0700 (PDT) Received: from herring.nlsystems.com (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id B07BD44011; Sun, 7 Sep 2003 10:17:45 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from [10.0.0.2] (herring.nlsystems.com [10.0.0.2]) by herring.nlsystems.com (8.12.9/8.12.8) with ESMTP id h8791930006504; Sun, 7 Sep 2003 10:01:09 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Marcel Moolenaar In-Reply-To: <200309062313.h86NDmYO082293@repoman.freebsd.org> References: <200309062313.h86NDmYO082293@repoman.freebsd.org> Content-Type: text/plain Message-Id: <1062925269.2445.0.camel@herring.nlsystems.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 07 Sep 2003 10:01:09 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-4.9 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_XIMIAN version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/uart uart.h uart_bus.h uart_bus_acpi.c uart_core.c uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_sparc64.c ... 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: Sun, 07 Sep 2003 17:17:48 -0000 On Sun, 2003-09-07 at 00:13, Marcel Moolenaar wrote: > marcel 2003/09/06 16:13:47 PDT > > The uart(4) driver is an universal driver for various UART hardware. Nice! From owner-cvs-src@FreeBSD.ORG Sun Sep 7 11:47:15 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 87AC216A4BF; Sun, 7 Sep 2003 11:47:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FB3E44005; Sun, 7 Sep 2003 11:47:15 -0700 (PDT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87IlE0U072464; Sun, 7 Sep 2003 11:47:14 -0700 (PDT) (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87IlE72072463; Sun, 7 Sep 2003 11:47:14 -0700 (PDT) Message-Id: <200309071847.h87IlE72072463@repoman.freebsd.org> From: Doug Barton Date: Sun, 7 Sep 2003 11:47:14 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src UPDATING 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: Sun, 07 Sep 2003 18:47:15 -0000 dougb 2003/09/07 11:47:14 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) . UPDATING Log: Inform users how to deal with sendmail.cf problems caused by the mergemaster/sendmail chicken and egg problem. Approved by: re (murray) Revision Changes Path 1.73.2.87 +6 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sun Sep 7 11:47:55 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 28B7C16A4BF; Sun, 7 Sep 2003 11:47:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9C2F43F3F; Sun, 7 Sep 2003 11:47:54 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Ils0U072496; Sun, 7 Sep 2003 11:47:54 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87IlsEK072495; Sun, 7 Sep 2003 11:47:54 -0700 (PDT) Message-Id: <200309071847.h87IlsEK072495@repoman.freebsd.org> From: Alan Cox Date: Sun, 7 Sep 2003 11:47:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_mmap.c 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: Sun, 07 Sep 2003 18:47:55 -0000 alc 2003/09/07 11:47:54 PDT FreeBSD src repository Modified files: sys/vm vm_mmap.c Log: Revise the locking in mincore(2). Revision Changes Path 1.165 +5 -5 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 11:55:44 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 6F0BC16A4BF; Sun, 7 Sep 2003 11:55:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA36B43F85; Sun, 7 Sep 2003 11:55:43 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Ith0U072899; Sun, 7 Sep 2003 11:55:43 -0700 (PDT) (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87IthRl072898; Sun, 7 Sep 2003 11:55:43 -0700 (PDT) Message-Id: <200309071855.h87IthRl072898@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 7 Sep 2003 11:55:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/examples/ipfw change_rules.sh 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: Sun, 07 Sep 2003 18:55:44 -0000 jmg 2003/09/07 11:55:43 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) share/examples/ipfw change_rules.sh Log: MFC: rev1.6 This makes sure no tty is given to ipfw Approved by: re@ Revision Changes Path 1.2.2.5 +3 -3 src/share/examples/ipfw/change_rules.sh From owner-cvs-src@FreeBSD.ORG Sun Sep 7 12:19:51 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 052B916A4BF; Sun, 7 Sep 2003 12:19:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58AB743F85; Sun, 7 Sep 2003 12:19:50 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87JJo0U074605; Sun, 7 Sep 2003 12:19:50 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87JJo2b074604; Sun, 7 Sep 2003 12:19:50 -0700 (PDT) Message-Id: <200309071919.h87JJo2b074604@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 7 Sep 2003 12:19:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES 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: Sun, 07 Sep 2003 19:19:51 -0000 marcel 2003/09/07 12:19:50 PDT FreeBSD src repository Modified files: sys/conf NOTES Log: Improved English, proper spacing and capitalization for the serial drivers. The shared 0x10 flag has been reworded to be more precise and complete. Submitted by: bde Edited by: marcel Revision Changes Path 1.1174 +27 -25 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sun Sep 7 13:02:39 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 CA16F16A4BF; Sun, 7 Sep 2003 13:02:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5078143FF3; Sun, 7 Sep 2003 13:02:39 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87K2d0U081650; Sun, 7 Sep 2003 13:02:39 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87K2dAf081649; Sun, 7 Sep 2003 13:02:39 -0700 (PDT) Message-Id: <200309072002.h87K2dAf081649@repoman.freebsd.org> From: Alan Cox Date: Sun, 7 Sep 2003 13:02:39 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/ia64/ia64 pmap.c 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: Sun, 07 Sep 2003 20:02:40 -0000 alc 2003/09/07 13:02:38 PDT FreeBSD src repository Modified files: sys/alpha/alpha pmap.c sys/ia64/ia64 pmap.c Log: MFamd64/i386 Add necessary page locking to pmap_mincore(). Revision Changes Path 1.136 +19 -12 src/sys/alpha/alpha/pmap.c 1.119 +19 -12 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 13:19:33 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 9DE5F16A4BF; Sun, 7 Sep 2003 13:19:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23E0443F93; Sun, 7 Sep 2003 13:19:33 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87KJW0U083120; Sun, 7 Sep 2003 13:19:32 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87KJWgB083119; Sun, 7 Sep 2003 13:19:32 -0700 (PDT) Message-Id: <200309072019.h87KJWgB083119@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Sep 2003 13:19:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/binutils/gdb Makefile 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: Sun, 07 Sep 2003 20:19:33 -0000 obrien 2003/09/07 13:19:32 PDT FreeBSD src repository Modified files: gnu/usr.bin/binutils/gdb Makefile Log: style.Makefile(5) Revision Changes Path 1.66 +18 -29 src/gnu/usr.bin/binutils/gdb/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 13:21:14 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 EC5EA16A4BF; Sun, 7 Sep 2003 13:21:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7642143FEC; Sun, 7 Sep 2003 13:21:14 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87KLE0U083263; Sun, 7 Sep 2003 13:21:14 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87KLEVD083262; Sun, 7 Sep 2003 13:21:14 -0700 (PDT) Message-Id: <200309072021.h87KLEVD083262@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Sep 2003 13:21:14 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/binutils/gdb Makefile 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: Sun, 07 Sep 2003 20:21:15 -0000 obrien 2003/09/07 13:21:14 PDT FreeBSD src repository Modified files: gnu/usr.bin/binutils/gdb Makefile Log: s/x86-64/amd64/ Revision Changes Path 1.67 +1 -1 src/gnu/usr.bin/binutils/gdb/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 13:38:24 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 AE79716A4BF; Sun, 7 Sep 2003 13:38:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33F4E43FDF; Sun, 7 Sep 2003 13:38:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87KcO0U083818; Sun, 7 Sep 2003 13:38:24 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87KcNOq083817; Sun, 7 Sep 2003 13:38:23 -0700 (PDT) Message-Id: <200309072038.h87KcNOq083817@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Sep 2003 13:38:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/binutils/gdb Makefile 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: Sun, 07 Sep 2003 20:38:24 -0000 obrien 2003/09/07 13:38:23 PDT FreeBSD src repository Modified files: gnu/usr.bin/binutils/gdb Makefile Log: Enable '--interpreter=mi' support. Submitted by: Rui Lopes Revision Changes Path 1.68 +3 -1 src/gnu/usr.bin/binutils/gdb/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 13:40:40 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 13F1216A4BF; Sun, 7 Sep 2003 13:40:40 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E05A43FF3; Sun, 7 Sep 2003 13:40:39 -0700 (PDT) (envelope-from obrien@dragon.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 h87KecnW039923; Sun, 7 Sep 2003 13:40:38 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h87KecvN039922; Sun, 7 Sep 2003 13:40:38 -0700 (PDT) (envelope-from obrien) Date: Sun, 7 Sep 2003 13:40:38 -0700 From: "David O'Brien" To: Ruslan Ermilov Message-ID: <20030907204038.GA39899@dragon.nuxi.com> References: <200309071415.h87EFfLh053246@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309071415.h87EFfLh053246@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 Makefile.inc1 src/share/mk bsd.lib.mk 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: Sun, 07 Sep 2003 20:40:40 -0000 On Sun, Sep 07, 2003 at 07:15:41AM -0700, Ruslan Ermilov wrote: > Modified files: > . Makefile.inc1 > share/mk bsd.lib.mk > Log: > - No need to create libfoo.so -> libfoo.so.X symlinks in /lib, > as it was decided that our toolchain will revert to looking > for libraries in /usr/lib only. > - Make /usr/lib/libfoo.so -> /lib/libfoo.so.X symlinks absolute > so that they still work if /usr is symlinked. > - Remove stale /usr/lib/libfoo.so.X libraries during install. Thanks! From owner-cvs-src@FreeBSD.ORG Sun Sep 7 14:28:16 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 0B6F216A4BF; Sun, 7 Sep 2003 14:28:16 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFFB443FE1; Sun, 7 Sep 2003 14:28:13 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9/8.12.3) with ESMTP id h87LSDTX094010; Sun, 7 Sep 2003 15:28:13 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Sun, 07 Sep 2003 15:27:03 -0600 (MDT) Message-Id: <20030907.152703.84145645.imp@bsdimp.com> To: ru@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20030907124533.GA21121@sunbay.com> References: <20030907104614.GC10526@sunbay.com> <20030907.053010.130739333.imp@bsdimp.com> <20030907124533.GA21121@sunbay.com> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make cond.c 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: Sun, 07 Sep 2003 21:28:16 -0000 In message: <20030907124533.GA21121@sunbay.com> Ruslan Ermilov writes: : On Sun, Sep 07, 2003 at 05:30:10AM -0600, M. Warner Losh wrote: : > In message: <20030907104614.GC10526@sunbay.com> : > Ruslan Ermilov writes: : > : On Sat, Sep 06, 2003 at 07:16:10PM -0700, Warner Losh wrote: : > : > imp 2003/09/06 19:16:10 PDT : > : > : > : > FreeBSD src repository : > : > : > : > Modified files: : > : > usr.bin/make cond.c : > : > Log: : > : > Keep up with minor changes to NetBSD. Consider a variable empty when : > : > not define. : > : > : > : > Obtained From: NetBSD (rev 1.18; sjg) : > : > : > : > Revision Changes Path : > : > 1.27 +1 -1 src/usr.bin/make/cond.c : > : > : > : Does it mean that ``.if empty(FOO)'' will not cause an error : > : now when FOO is not defined? If so, what is the motivation : > : for this change? : > : > The NetBSD folks needed it for something, I'm not sure what. Since it : > was easy, didn't brea anything and cross BSD make divergence has been : > a problem in the past, I went ahead and added it. : > : This change is in NetBSD for only 29 hours, the reasoning is : not well understood, and our make(1)'s are so much different : that I don't really think this particular one makes them : really closer. It keeps them from getting further apart. That NetBSD does it the same way and it doesn't break anything that's working today is sufficient. Who cares why they want to do it that way? It is arbitrary what you do in this case anyway. However, read further. : It also seems counter-intuitive to me -- : undefined variable doesn't have _any_ value, so we cannot : say if it's empty or not. Yes, you can. $(FOO) evaluates to "" when FOO is not defined. Therefore it is empty, just as if it were defined to be "". It looks like about 70 places in the tree would be simpler. There's only five place where empty is used bare, and in all of those cases it is known that the variable is defined... It looks to me like the .mk an Makefile files in our tree could be a lot simpler if we keep it. Finally, the change doesn't make make any larger or longer to compile. It could make the .mk files smaller, but I doubt that anybody could measure a difference > .1%, but given that most of the empty usages are in .mk files, some in loops, I could be wrong. Warner From owner-cvs-src@FreeBSD.ORG Sun Sep 7 14:39:23 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 3FCCB16A4BF; Sun, 7 Sep 2003 14:39:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDF6C43FBD; Sun, 7 Sep 2003 14:39:22 -0700 (PDT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87LdM0U087123; Sun, 7 Sep 2003 14:39:22 -0700 (PDT) (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87LdMvh087122; Sun, 7 Sep 2003 14:39:22 -0700 (PDT) Message-Id: <200309072139.h87LdMvh087122@repoman.freebsd.org> From: Pierre Beyssac Date: Sun, 7 Sep 2003 14:39:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/puc pucdata.c 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: Sun, 07 Sep 2003 21:39:23 -0000 pb 2003/09/07 14:39:22 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/puc pucdata.c Log: Fix incorrect structure initialization introduced in 1.2.2.14. PR: kern/56467 Submitted by: nabe@nabechan.org Approved by: re Pointy-hat-to: pb Revision Changes Path 1.2.2.15 +0 -1 src/sys/dev/puc/pucdata.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 14:40:44 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 646EF16A4C0; Sun, 7 Sep 2003 14:40:44 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C67143FE3; Sun, 7 Sep 2003 14:40:43 -0700 (PDT) (envelope-from murray@builder.freebsdmall.com) Received: (from root@localhost) by builder.freebsdmall.com (8.12.9/8.11.6) id h87Legnr023892; Sun, 7 Sep 2003 14:40:42 -0700 (PDT) (envelope-from murray) Date: Sun, 7 Sep 2003 14:40:42 -0700 From: Murray Stokely To: Dmitry Morozovsky Message-ID: <20030907144042.C19636@freebsdmall.com> References: <200309051455.h85EtBoU029983@repoman.freebsd.org> <1062777913.12268.8.camel@builder02.qubesoft.com> <20030905.102120.98329950.imp@bsdimp.com> <20030906115534.X9355@woozle.rinet.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030906115534.X9355@woozle.rinet.ru>; from marck@rinet.ru on Sat, Sep 06, 2003 at 12:03:08PM +0400 X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: src-committers@freebsd.org cc: dfr@nlsystems.com cc: "M. Warner Losh" cc: peter@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/i386/isa isa_compat.c isa_device.h 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: Sun, 07 Sep 2003 21:40:44 -0000 On Sat, Sep 06, 2003 at 12:03:08PM +0400, Dmitry Morozovsky wrote: > I suppose Cronyx serial adapters drivers will be converted appropriate. AFAIK > now-in-the-tree cronyx drivers are bogus, and up-to-date can be downloaded at > ftp://ftp.cronyx.ru/pub/cronyx/adapters/ or http://www.cronyx.ru/software/ > I don't know the status of merging process, though. vak@cronyx.ru may be the > person to contact. Roman Kurakin (rik@cronyx.ru) has been posting updates to these drivers to the PR database for at least 3 years (along with sppp infrastructure changes). In his new patch stes, the cp driver module that does the low level communication with the hardware, cpddk.c, is provided in an obfuscated form. - Murray From owner-cvs-src@FreeBSD.ORG Sun Sep 7 14:51:04 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 A2D5016A4BF; Sun, 7 Sep 2003 14:51:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2831543FE1; Sun, 7 Sep 2003 14:51:04 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87Lp30U087641; Sun, 7 Sep 2003 14:51:03 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87Lp38Y087640; Sun, 7 Sep 2003 14:51:03 -0700 (PDT) Message-Id: <200309072151.h87Lp38Y087640@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 7 Sep 2003 14:51:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/uart uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_pc98.c uart_cpu_sparc64.c uart_dev_sab82532.c uart_dev_z8530.c 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: Sun, 07 Sep 2003 21:51:04 -0000 marcel 2003/09/07 14:51:03 PDT FreeBSD src repository Modified files: sys/dev/uart uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_pc98.c uart_cpu_sparc64.c uart_dev_sab82532.c uart_dev_z8530.c Log: Remove the assumption that a bus_space_handle_t is an I/O address from the SAB82532 and the Z8530 hardware drivers by introducing uart_cpu_busaddr(). The assumption is not true on pc98 where bus_space_handle_t is a pointer to a structure. The uart_cpu_busaddr() function will return the bus address corresponding the tag and handle given to it by the BAS. WARNING: the intend of the function is STRICTLY to allow hardware drivers to determine which logical channel they control and is NOT to be used for actual I/O. It is therefore EXPLICITLY allowed that uart_cpu_busaddr() returns only the lower 8 bits of the address and garbage in all other bits. No mistakes... Revision Changes Path 1.3 +3 -2 src/sys/dev/uart/uart_cpu.h 1.2 +14 -7 src/sys/dev/uart/uart_cpu_alpha.c 1.2 +14 -7 src/sys/dev/uart/uart_cpu_amd64.c 1.2 +14 -7 src/sys/dev/uart/uart_cpu_i386.c 1.2 +14 -7 src/sys/dev/uart/uart_cpu_ia64.c 1.2 +14 -7 src/sys/dev/uart/uart_cpu_pc98.c 1.2 +14 -7 src/sys/dev/uart/uart_cpu_sparc64.c 1.2 +2 -2 src/sys/dev/uart/uart_dev_sab82532.c 1.2 +2 -2 src/sys/dev/uart/uart_dev_z8530.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 16:09:09 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 566BA16A4BF; Sun, 7 Sep 2003 16:09:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E510743FDD; Sun, 7 Sep 2003 16:09:08 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h87N980U092240; Sun, 7 Sep 2003 16:09:08 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h87N98si092239; Sun, 7 Sep 2003 16:09:08 -0700 (PDT) Message-Id: <200309072309.h87N98si092239@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 7 Sep 2003 16:09:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/acpica madt.c 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: Sun, 07 Sep 2003 23:09:09 -0000 marcel 2003/09/07 16:09:08 PDT FreeBSD src repository Modified files: sys/ia64/acpica madt.c Log: Untangle the code in this file to improve understandability. Both ia64_count_cpus() and ia64_probe_sapics() called a single function to do the the actual work. The difference in behaviour was handled in that function and was further complicated by adding bootverbose related code. As such, even the simplest of changes was hard to comprehend. Untangling has been done by increasing code duplication and using a more naive style of coding. FWIW, the object file is slightly smaller than before, so things aren't as bad as it may seem. Triggered by: a simple fix on the P4 branch that never got merged. Revision Changes Path 1.15 +160 -164 src/sys/ia64/acpica/madt.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 19:11:27 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 6C8FD16A4BF; Sun, 7 Sep 2003 19:11:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7D9B43FE3; Sun, 7 Sep 2003 19:11:25 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h882BP0U010352; Sun, 7 Sep 2003 19:11:25 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h882BPqd010351; Sun, 7 Sep 2003 19:11:25 -0700 (PDT) Message-Id: <200309080211.h882BPqd010351@repoman.freebsd.org> From: Bill Paul Date: Sun, 7 Sep 2003 19:11:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall devices.c src/sys/modules Makefile src/sys/modules/re Makefile src/sys/conf files src/sys/i386/conf GENERIC src/sys/pc98/conf GENERIC src/sys/sparc64/conf GENERIC src/sys/ia64/conf GENERIC ... 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: Mon, 08 Sep 2003 02:11:27 -0000 wpaul 2003/09/07 19:11:25 PDT FreeBSD src repository Modified files: usr.sbin/sysinstall devices.c sys/modules Makefile sys/conf files sys/i386/conf GENERIC sys/pc98/conf GENERIC sys/sparc64/conf GENERIC sys/ia64/conf GENERIC sys/amd64/conf GENERIC sys/pci if_rl.c if_rlreg.h sys/dev/mii rlphy.c share/man/man4 Makefile rl.4 Added files: sys/modules/re Makefile sys/dev/re if_re.c Log: Take the support for the 8139C+/8169/8169S/8110S chips out of the rl(4) driver and put it in a new re(4) driver. The re(4) driver shares the if_rlreg.h file with rl(4) but is a separate module. (Ultimately I may change this. For now, it's convenient.) rl(4) has been modified so that it will never attach to an 8139C+ chip, leaving it to re(4) instead. Only re(4) has the PCI IDs to match the 8169/8169S/8110S gigE chips. if_re.c contains the same basic code that was originally bolted onto if_rl.c, with the following updates: - Added support for jumbo frames. Currently, there seems to be a limit of approximately 6200 bytes for jumbo frames on transmit. (This was determined via experimentation.) The 8169S/8110S chips apparently are limited to 7.5K frames on transmit. This may require some more work, though the framework to handle jumbo frames on RX is in place: the re_rxeof() routine will gather up frames than span multiple 2K clusters into a single mbuf list. - Fixed bug in re_txeof(): if we reap some of the TX buffers, but there are still some pending, re-arm the timer before exiting re_txeof() so that another timeout interrupt will be generated, just in case re_start() doesn't do it for us. - Handle the 'link state changed' interrupt - Fix a detach bug. If re(4) is loaded as a module, and you do tcpdump -i re0, then you do 'kldunload if_re,' the system will panic after a few seconds. This happens because ether_ifdetach() ends up calling the BPF detach code, which notices the interface is in promiscuous mode and tries to switch promisc mode off while detaching the BPF listner. This ultimately results in a call to re_ioctl() (due to SIOCSIFFLAGS), which in turn calls re_init() to handle the IFF_PROMISC flag change. Unfortunately, calling re_init() here turns the chip back on and restarts the 1-second timeout loop that drives re_tick(). By the time the timeout fires, if_re.ko has been unloaded, which results in a call to invalid code and blows up the system. To fix this, I cleared the IFF_UP flag before calling ether_ifdetach(), which stops the ioctl routine from trying to reset the chip. - Modified comments in re_rxeof() relating to the difference in RX descriptor status bit layout between the 8139C+ and the gigE chips. The layout is different because the frame length field was expanded from 12 bits to 13, and they got rid of one of the status bits to make room. - Add diagnostic code (re_diag()) to test for the case where a user has installed a broken 32-bit 8169 PCI NIC in a 64-bit slot. Some NICs have the REQ64# and ACK64# lines connected even though the board is 32-bit only (in this case, they should be pulled high). This fools the chip into doing 64-bit DMA transfers even though there is no 64-bit data path. To detect this, re_diag() puts the chip into digital loopback mode and sets the receiver to promiscuous mode, then initiates a single 64-byte packet transmission. The frame is echoed back to the host, and if the frame contents are intact, we know DMA is working correctly, otherwise we complain loudly on the console and abort the device attach. (At the moment, I don't know of any way to work around the problem other than physically modifying the board, so until/unless I can think of a software workaround, this will have do to.) - Created re(4) man page - Modified rlphy.c to allow re(4) to attach as well as rl(4). Note that this code works for the sample 8169/Marvell 88E1000 NIC that I have, but probably won't work for the 8169S/8110S chips. RealTek has sent me some sample NICs, but they haven't arrived yet. I will probably need to add an rlgphy driver to handle the on-board PHY in the 8169S/8110S (it needs special DSP initialization). Revision Changes Path 1.222 +1 -0 src/share/man/man4/Makefile 1.28 +4 -15 src/share/man/man4/rl.4 1.392 +1 -0 src/sys/amd64/conf/GENERIC 1.821 +1 -0 src/sys/conf/files 1.18 +3 -2 src/sys/dev/mii/rlphy.c 1.1 +2430 -0 src/sys/dev/re/if_re.c (new) 1.388 +1 -0 src/sys/i386/conf/GENERIC 1.57 +1 -0 src/sys/ia64/conf/GENERIC 1.349 +1 -0 src/sys/modules/Makefile 1.1 +9 -0 src/sys/modules/re/Makefile (new) 1.237 +1 -0 src/sys/pc98/conf/GENERIC 1.116 +127 -1241 src/sys/pci/if_rl.c 1.35 +27 -7 src/sys/pci/if_rlreg.h 1.60 +1 -0 src/sys/sparc64/conf/GENERIC 1.151 +2 -0 src/usr.sbin/sysinstall/devices.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 19:45:04 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 8E56816A4BF; Sun, 7 Sep 2003 19:45:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4ACC43FE3; Sun, 7 Sep 2003 19:45:03 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h882j30U012383; Sun, 7 Sep 2003 19:45:03 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h882j3YH012382; Sun, 7 Sep 2003 19:45:03 -0700 (PDT) Message-Id: <200309080245.h882j3YH012382@repoman.freebsd.org> From: Alan Cox Date: Sun, 7 Sep 2003 19:45:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c src/sys/sparc64/sparc64 pmap.c src/sys/vm pmap.h 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: Mon, 08 Sep 2003 02:45:04 -0000 alc 2003/09/07 19:45:03 PDT FreeBSD src repository Modified files: sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c sys/sparc64/sparc64 pmap.c sys/vm pmap.h Log: Introduce a new pmap function, pmap_extract_and_hold(). This function atomically extracts and holds the physical page that is associated with the given pmap and virtual address. Such a function is needed to make the memory mapping optimizations used by, for example, pipes and raw disk I/O MP-safe. Reviewed by: tegge Revision Changes Path 1.137 +23 -0 src/sys/alpha/alpha/pmap.c 1.435 +24 -0 src/sys/amd64/amd64/pmap.c 1.431 +24 -0 src/sys/i386/i386/pmap.c 1.120 +24 -0 src/sys/ia64/ia64/pmap.c 1.122 +22 -0 src/sys/sparc64/sparc64/pmap.c 1.62 +1 -0 src/sys/vm/pmap.h From owner-cvs-src@FreeBSD.ORG Sun Sep 7 20:24:30 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 D541116A4BF; Sun, 7 Sep 2003 20:24:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5ADF043FBD; Sun, 7 Sep 2003 20:24:30 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h883OU0U014817; Sun, 7 Sep 2003 20:24:30 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h883OUVq014816; Sun, 7 Sep 2003 20:24:30 -0700 (PDT) Message-Id: <200309080324.h883OUVq014816@repoman.freebsd.org> From: Bill Paul Date: Sun, 7 Sep 2003 20:24:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc devd.conf src/sys/modules/re Makefile 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: Mon, 08 Sep 2003 03:24:31 -0000 wpaul 2003/09/07 20:24:30 PDT FreeBSD src repository Modified files: etc devd.conf sys/modules/re Makefile Log: Fix PATH: directive in sys/modules/re/Makefile, and add the re(4) driver to devd.conf. Pointed out by: Larry Rosenman Revision Changes Path 1.7 +1 -1 src/etc/devd.conf 1.2 +1 -1 src/sys/modules/re/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 7 21:28:21 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 9383A16A4BF; Sun, 7 Sep 2003 21:28:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C15643FE0; Sun, 7 Sep 2003 21:28:21 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h884SK0U023396; Sun, 7 Sep 2003 21:28:20 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h884SKeQ023395; Sun, 7 Sep 2003 21:28:20 -0700 (PDT) Message-Id: <200309080428.h884SKeQ023395@repoman.freebsd.org> From: Bill Paul Date: Sun, 7 Sep 2003 21:28:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_rl.c 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: Mon, 08 Sep 2003 04:28:21 -0000 wpaul 2003/09/07 21:28:20 PDT FreeBSD src repository Modified files: sys/pci if_rl.c Log: Fix path of pci #includes that I botched. Also pointed out by: Larry Rosenman Revision Changes Path 1.117 +2 -2 src/sys/pci/if_rl.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 21:58:34 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 5C86916A4BF; Sun, 7 Sep 2003 21:58:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00EE444008; Sun, 7 Sep 2003 21:58:33 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h884wW0U024625; Sun, 7 Sep 2003 21:58:32 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h884wWbP024624; Sun, 7 Sep 2003 21:58:32 -0700 (PDT) Message-Id: <200309080458.h884wWbP024624@repoman.freebsd.org> From: Alan Cox Date: Sun, 7 Sep 2003 21:58:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sys_pipe.c 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: Mon, 08 Sep 2003 04:58:34 -0000 alc 2003/09/07 21:58:32 PDT FreeBSD src repository Modified files: sys/kern sys_pipe.c Log: Use pmap_extract_and_hold() in pipe_build_write_buffer(). Consequently, pipe_build_write_buffer() no longer requires Giant on entry. Reviewed by: tegge Revision Changes Path 1.150 +11 -35 src/sys/kern/sys_pipe.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 22:32:04 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 7AF9816A4BF; Sun, 7 Sep 2003 22:32:04 -0700 (PDT) Received: from ns2.gnf.org (ns2.gnf.org [63.196.132.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id F226F43FE9; Sun, 7 Sep 2003 22:32:02 -0700 (PDT) (envelope-from gtetlow@gnf.org) Received: from EXCHCLUSTER01.lj.gnf.org (exch02.lj.gnf.org [172.25.10.20]) by ns2.gnf.org (8.12.8p1/8.12.8) with ESMTP id h885Vwoq009765; Sun, 7 Sep 2003 22:31:58 -0700 (PDT) (envelope-from gtetlow@gnf.org) Received: from roark.gnf.org ([172.25.24.15]) by EXCHCLUSTER01.lj.gnf.org with Microsoft SMTPSVC(5.0.2195.5329); Sun, 7 Sep 2003 22:32:02 -0700 Received: from roark.gnf.org (localhost [127.0.0.1]) by roark.gnf.org (8.12.9/8.12.9) with ESMTP id h885W2aH037141; Sun, 7 Sep 2003 22:32:02 -0700 (PDT) (envelope-from gtetlow@gnf.org) Received: (from gtetlow@localhost) by roark.gnf.org (8.12.9/8.12.9/Submit) id h885W2Nk037140; Sun, 7 Sep 2003 22:32:02 -0700 (PDT) (envelope-from gtetlow) Date: Sun, 7 Sep 2003 22:32:02 -0700 From: Gordon Tetlow To: Philippe Charnier Message-ID: <20030908053202.GI695@roark.gnf.org> References: <200309071417.h87EHH7I053339@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6Sff4RjgYPrYSI8i" Content-Disposition: inline In-Reply-To: <200309071417.h87EHH7I053339@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-OriginalArrivalTime: 08 Sep 2003 05:32:02.0701 (UTC) FILETIME=[884BABD0:01C375CA] cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/rcorder rcorder.c 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: Mon, 08 Sep 2003 05:32:04 -0000 --6Sff4RjgYPrYSI8i Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Sep 07, 2003 at 07:17:17AM -0700, Philippe Charnier wrote: > charnier 2003/09/07 07:17:17 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sbin/rcorder rcorder.c=20 > Log: > de-__P(). > =20 > Revision Changes Path > 1.2 +27 -22 src/sbin/rcorder/rcorder.c Argh! This was on the vendor branch! Did you pass this by obrien@ first? -gordon --6Sff4RjgYPrYSI8i Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE/XBRSRu2t9DV9ZfsRAt1cAKCcSZz6Ljoao/DaQL1KLQrkdx7G9gCeJG2A fTcJU1aWqPNvD3ocojZTlQ4= =AxPt -----END PGP SIGNATURE----- --6Sff4RjgYPrYSI8i-- From owner-cvs-src@FreeBSD.ORG Sun Sep 7 23:22:55 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 CC04116A4BF; Sun, 7 Sep 2003 23:22:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 769AD43FD7; Sun, 7 Sep 2003 23:22:54 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h886Ms0U029630; Sun, 7 Sep 2003 23:22:54 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h886MsJm029629; Sun, 7 Sep 2003 23:22:54 -0700 (PDT) Message-Id: <200309080622.h886MsJm029629@repoman.freebsd.org> From: Nate Lawson Date: Sun, 7 Sep 2003 23:22:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_wakeup.c 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: Mon, 08 Sep 2003 06:22:55 -0000 njl 2003/09/07 23:22:54 PDT FreeBSD src repository Modified files: sys/i386/acpica acpi_wakeup.c Log: Don't disable interrupts a second time. Remove an extraneous interrupt enable (that happens elsewhere). Clarify the interrupt disabling point by using ACPI_DISABLE_IRQS(). Tested by: Kevin Oberman Revision Changes Path 1.26 +1 -4 src/sys/i386/acpica/acpi_wakeup.c From owner-cvs-src@FreeBSD.ORG Sun Sep 7 23:28:51 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 16D1316A4BF; Sun, 7 Sep 2003 23:28:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90AD743FF3; Sun, 7 Sep 2003 23:28:50 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h886So0U029913; Sun, 7 Sep 2003 23:28:50 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h886SoNv029912; Sun, 7 Sep 2003 23:28:50 -0700 (PDT) Message-Id: <200309080628.h886SoNv029912@repoman.freebsd.org> From: Søren Schmidt Date: Sun, 7 Sep 2003 23:28:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pst pst-raid.c 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: Mon, 08 Sep 2003 06:28:51 -0000 sos 2003/09/07 23:28:50 PDT FreeBSD src repository Modified files: sys/dev/pst pst-raid.c Log: Dont re-arm the timeout twice on a timeout error. The problem with the first timeout still exsists though, but not it doesn't enter a groundbound spin loop :) Found by: Aaron Smith Revision Changes Path 1.12 +0 -5 src/sys/dev/pst/pst-raid.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 00:46:42 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 CDBB216A4BF; Mon, 8 Sep 2003 00:46:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56DF843FDF; Mon, 8 Sep 2003 00:46:42 -0700 (PDT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h887kg0U034375; Mon, 8 Sep 2003 00:46:42 -0700 (PDT) (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h887kgLj034374; Mon, 8 Sep 2003 00:46:42 -0700 (PDT) Message-Id: <200309080746.h887kgLj034374@repoman.freebsd.org> From: Doug Barton Date: Mon, 8 Sep 2003 00:46:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile 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: Mon, 08 Sep 2003 07:46:42 -0000 dougb 2003/09/08 00:46:41 PDT FreeBSD src repository Modified files: share/man/man4 Makefile Log: Looks like the re.4 man page didn't make it in the last commit, so unhook it to get the build back in action. Revision Changes Path 1.223 +0 -1 src/share/man/man4/Makefile From owner-cvs-src@FreeBSD.ORG Mon Sep 8 01:01:36 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 86F1716A4D5; Mon, 8 Sep 2003 01:01:36 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D26D643FD7; Mon, 8 Sep 2003 01:01:35 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B48982ED41F; Mon, 8 Sep 2003 01:01:35 -0700 (PDT) Date: Mon, 8 Sep 2003 01:01:35 -0700 From: Alfred Perlstein To: Alan Cox Message-ID: <20030908080135.GA50190@elvis.mu.org> References: <200309080458.h884wWbP024624@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309080458.h884wWbP024624@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_pipe.c 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: Mon, 08 Sep 2003 08:01:36 -0000 * Alan Cox [030907 21:58] wrote: > alc 2003/09/07 21:58:32 PDT > > FreeBSD src repository > > Modified files: > sys/kern sys_pipe.c > Log: > Use pmap_extract_and_hold() in pipe_build_write_buffer(). Consequently, > pipe_build_write_buffer() no longer requires Giant on entry. > > Reviewed by: tegge Hey, you forgot to mention that with your change, pipes no longer appear to need Giant at all. Thanks for the great work. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Mon Sep 8 01:23:30 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 8455716A4BF; Mon, 8 Sep 2003 01:23:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0919843FEC; Mon, 8 Sep 2003 01:23:30 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h888NT0U042302; Mon, 8 Sep 2003 01:23:29 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h888NTtI042301; Mon, 8 Sep 2003 01:23:29 -0700 (PDT) Message-Id: <200309080823.h888NTtI042301@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Sep 2003 01:23:29 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make for.c 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: Mon, 08 Sep 2003 08:23:30 -0000 ru 2003/09/08 01:23:29 PDT FreeBSD src repository Modified files: usr.bin/make for.c Log: Command line variables take precedence over global variables. Make this true in the .for loops too. The following fragment, FOO= foo bar all: .for f in ${FOO} @echo ${f} .endfor when run as "make FOO=xxx" should print "xxx". (OpenBSD had this bug fixed for some time.) Revision Changes Path 1.20 +1 -1 src/usr.bin/make/for.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 01:30:45 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 028D416A4BF; Mon, 8 Sep 2003 01:30:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BEA043FEC; Mon, 8 Sep 2003 01:30:44 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h888Uh0U042681; Mon, 8 Sep 2003 01:30:43 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h888Uhf5042680; Mon, 8 Sep 2003 01:30:43 -0700 (PDT) Message-Id: <200309080830.h888Uhf5042680@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 8 Sep 2003 01:30:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys ata.h src/sys/dev/ata ata-all.c 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: Mon, 08 Sep 2003 08:30:45 -0000 sos 2003/09/08 01:30:43 PDT FreeBSD src repository Modified files: sys/sys ata.h sys/dev/ata ata-all.c Log: Update the PIO mode gathering code. Reported by: bde Revision Changes Path 1.189 +9 -7 src/sys/dev/ata/ata-all.c 1.21 +1 -1 src/sys/sys/ata.h From owner-cvs-src@FreeBSD.ORG Mon Sep 8 01:32:26 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 7CF4A16A4BF; Mon, 8 Sep 2003 01:32:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0613043FE3; Mon, 8 Sep 2003 01:32:26 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h888WP0U042746; Mon, 8 Sep 2003 01:32:25 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h888WPG5042745; Mon, 8 Sep 2003 01:32:25 -0700 (PDT) Message-Id: <200309080832.h888WPG5042745@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 8 Sep 2003 01:32:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-lowlevel.c 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: Mon, 08 Sep 2003 08:32:26 -0000 sos 2003/09/08 01:32:25 PDT FreeBSD src repository Modified files: sys/dev/ata ata-lowlevel.c Log: Handle shared channels better. Try to avoid the spurios interrupts better. Revision Changes Path 1.9 +18 -11 src/sys/dev/ata/ata-lowlevel.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 01:36:47 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 46E1116A4BF; Mon, 8 Sep 2003 01:36:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEC5B43FEC; Mon, 8 Sep 2003 01:36:46 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h888ak0U042983; Mon, 8 Sep 2003 01:36:46 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h888akaG042982; Mon, 8 Sep 2003 01:36:46 -0700 (PDT) Message-Id: <200309080836.h888akaG042982@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 8 Sep 2003 01:36:46 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-lowlevel.c 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: Mon, 08 Sep 2003 08:36:47 -0000 sos 2003/09/08 01:36:46 PDT FreeBSD src repository Modified files: sys/dev/ata ata-lowlevel.c Log: #ifdef out the vague ATA disk detection code causing fake ATA disks to be found on some systems. Hopefully this doesn't loose any real ATA disks... Revision Changes Path 1.10 +2 -0 src/sys/dev/ata/ata-lowlevel.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 01:56:48 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 E09A416A4BF; Mon, 8 Sep 2003 01:56:48 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80DD643FAF; Mon, 8 Sep 2003 01:56:38 -0700 (PDT) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h888uREV050915 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 8 Sep 2003 11:56:28 +0300 (EEST) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9/8.12.8/Submit) id h888uPe1050897; Mon, 8 Sep 2003 11:56:25 +0300 (EEST) (envelope-from ru) Date: Mon, 8 Sep 2003 11:56:25 +0300 From: Ruslan Ermilov To: Gordon Tetlow Message-ID: <20030908085625.GB49439@sunbay.com> References: <200309071417.h87EHH7I053339@repoman.freebsd.org> <20030908053202.GI695@roark.gnf.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GRPZ8SYKNexpdSJ7" Content-Disposition: inline In-Reply-To: <20030908053202.GI695@roark.gnf.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/rcorder rcorder.c 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: Mon, 08 Sep 2003 08:56:49 -0000 --GRPZ8SYKNexpdSJ7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Sep 07, 2003 at 10:32:02PM -0700, Gordon Tetlow wrote: > On Sun, Sep 07, 2003 at 07:17:17AM -0700, Philippe Charnier wrote: > > charnier 2003/09/07 07:17:17 PDT > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sbin/rcorder rcorder.c=20 > > Log: > > de-__P(). > > =20 > > Revision Changes Path > > 1.2 +27 -22 src/sbin/rcorder/rcorder.c >=20 > Argh! This was on the vendor branch! Did you pass this by obrien@ first? >=20 We should really be keeping contributed sources under src/contrib/, with a few historical exceptions. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --GRPZ8SYKNexpdSJ7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE/XEQ5Ukv4P6juNwoRAnSVAJ0U5pRSYUiPRXNDZ/wfV/RhkVAMlACfYQ6F rud5+8lHs2m3fsttVboVK6c= =Ep4+ -----END PGP SIGNATURE----- --GRPZ8SYKNexpdSJ7-- From owner-cvs-src@FreeBSD.ORG Mon Sep 8 02:11:22 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 19C2716A4BF; Mon, 8 Sep 2003 02:11:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F13443FFB; Mon, 8 Sep 2003 02:11:21 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h889BL0U045626; Mon, 8 Sep 2003 02:11:21 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h889BLFA045625; Mon, 8 Sep 2003 02:11:21 -0700 (PDT) Message-Id: <200309080911.h889BLFA045625@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Sep 2003 02:11:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/pc98/boot2 boot.c disk.c io.c probe_keyboard.c sys.c table.c src/sys/boot/pc98/libpc98 biosdisk.c biosmem.c comconsole.c gatea20.c i386_module.c time.c vidconsole.c src/sys/boot/pc98/loader conf.c main.c 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: Mon, 08 Sep 2003 09:11:22 -0000 obrien 2003/09/08 02:11:21 PDT FreeBSD src repository Modified files: sys/boot/pc98/boot2 boot.c disk.c io.c probe_keyboard.c sys.c table.c sys/boot/pc98/libpc98 biosdisk.c biosmem.c comconsole.c gatea20.c i386_module.c time.c vidconsole.c sys/boot/pc98/loader conf.c main.c Log: Use __FBSDID(). Also some minor style cleanups. Revision Changes Path 1.11 +3 -3 src/sys/boot/pc98/boot2/boot.c 1.10 +3 -2 src/sys/boot/pc98/boot2/disk.c 1.5 +3 -1 src/sys/boot/pc98/boot2/io.c 1.3 +3 -2 src/sys/boot/pc98/boot2/probe_keyboard.c 1.5 +3 -1 src/sys/boot/pc98/boot2/sys.c 1.4 +3 -2 src/sys/boot/pc98/boot2/table.c 1.25 +3 -2 src/sys/boot/pc98/libpc98/biosdisk.c 1.6 +3 -2 src/sys/boot/pc98/libpc98/biosmem.c 1.4 +3 -2 src/sys/boot/pc98/libpc98/comconsole.c 1.4 +4 -2 src/sys/boot/pc98/libpc98/gatea20.c 1.2 +3 -2 src/sys/boot/pc98/libpc98/i386_module.c 1.5 +3 -2 src/sys/boot/pc98/libpc98/time.c 1.11 +4 -3 src/sys/boot/pc98/libpc98/vidconsole.c 1.2 +3 -2 src/sys/boot/pc98/loader/conf.c 1.16 +3 -2 src/sys/boot/pc98/loader/main.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 02:11:33 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 0D4A916A4BF; Mon, 8 Sep 2003 02:11:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F53F43F3F; Mon, 8 Sep 2003 02:11:32 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h889BW0U045683; Mon, 8 Sep 2003 02:11:32 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h889BWuV045682; Mon, 8 Sep 2003 02:11:32 -0700 (PDT) Message-Id: <200309080911.h889BWuV045682@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Sep 2003 02:11:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/ia64/libski acpi_stub.c bootinfo.c devicename.c efi_stub.c elf_freebsd.c module.c sal_stub.c skifs.c ssc.c time.c 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: Mon, 08 Sep 2003 09:11:33 -0000 obrien 2003/09/08 02:11:32 PDT FreeBSD src repository Modified files: sys/boot/ia64/libski acpi_stub.c bootinfo.c devicename.c efi_stub.c elf_freebsd.c module.c sal_stub.c skifs.c ssc.c time.c Log: Use __FBSDID(). Also some minor style cleanups. Revision Changes Path 1.2 +3 -2 src/sys/boot/ia64/libski/acpi_stub.c 1.9 +3 -2 src/sys/boot/ia64/libski/bootinfo.c 1.2 +3 -2 src/sys/boot/ia64/libski/devicename.c 1.2 +3 -2 src/sys/boot/ia64/libski/efi_stub.c 1.9 +3 -2 src/sys/boot/ia64/libski/elf_freebsd.c 1.3 +0 -1 src/sys/boot/ia64/libski/module.c 1.2 +3 -2 src/sys/boot/ia64/libski/sal_stub.c 1.2 +3 -2 src/sys/boot/ia64/libski/skifs.c 1.4 +3 -2 src/sys/boot/ia64/libski/ssc.c 1.4 +0 -1 src/sys/boot/ia64/libski/time.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 02:54:06 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 58A4216A4C2; Mon, 8 Sep 2003 02:54:06 -0700 (PDT) Received: from vic.inty.net (vic.inty.net [212.50.178.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id E623B43FE5; Mon, 8 Sep 2003 02:54:02 -0700 (PDT) (envelope-from paul@freebsd-services.com) x-previous-hop: 212.50.178.178 Received: from inty.hq.inty.net (inty-untrusted-aztec-west.inty.net [212.50.178.178]) by vic.inty.net (8.12.9/8.12.9) with ESMTP id h889rtpL054035; Mon, 8 Sep 2003 10:53:57 +0100 (BST) Received: from [10.0.1.111] ([10.0.1.111]) by inty.hq.inty.net (8.12.1/8.12.1) with ESMTP id h889rsTB079354; Mon, 8 Sep 2003 10:53:54 +0100 (BST) From: Paul Richards To: "M. Warner Losh" In-Reply-To: <20030905.111712.18578127.imp@bsdimp.com> References: <1062777913.12268.8.camel@builder02.qubesoft.com> <20030905095818.P71522@root.org> <20030905.111712.18578127.imp@bsdimp.com> Content-Type: text/plain Message-Id: <1063014840.92149.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Mon, 08 Sep 2003 10:54:00 +0100 Content-Transfer-Encoding: 7bit X-Sender-IP: 10.0.1.111 X-INT-DeliveryDone: h889rsTB079354 cc: src-committers@FreeBSD.org cc: dfr@nlsystems.com cc: peter@FreeBSD.org cc: nate@root.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/isa isa_compat.c isa_device.h 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: Mon, 08 Sep 2003 09:54:06 -0000 On Fri, 2003-09-05 at 18:17, M. Warner Losh wrote: > In message: <20030905095818.P71522@root.org> > Nate Lawson writes: > : > ./i386/isa/if_le.c:#ifndef COMPAT_OLDISA > : > : We need this for VMware, right? I thought it was Lance. > > I thought it used the pci version, since the ISA version is insanely > stupid. Yeah, vmware uses lnc. The difference between le and lnc is not that one is ISA and one is PCI, the lnc driver also supports ISA cards. The le driver was written to support DEC cards based on 2 chipsets, just one of which is lance based (I forget the other one). It should really have the lance stuff ripped out, and then get newbussed to support the other chipset. I might do that sometime since I have the cards, but I'm busy until the end of Oct. Paul. From owner-cvs-src@FreeBSD.ORG Mon Sep 8 04:55:16 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 BCD2616A4BF; Mon, 8 Sep 2003 04:55:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39DFE43FEC; Mon, 8 Sep 2003 04:55:00 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88Bt00U060440; Mon, 8 Sep 2003 04:55:00 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88BsxZP060439; Mon, 8 Sep 2003 04:54:59 -0700 (PDT) Message-Id: <200309081154.h88BsxZP060439@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 8 Sep 2003 04:54:59 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys param.h 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: Mon, 08 Sep 2003 11:55:16 -0000 tjr 2003/09/08 04:54:59 PDT FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for Coda 6.x venus<->kernel API support. Revision Changes Path 1.166 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Mon Sep 8 06:36:28 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 0212816A4BF; Mon, 8 Sep 2003 06:36:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D50E43F93; Mon, 8 Sep 2003 06:36:27 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88DaR0U066193; Mon, 8 Sep 2003 06:36:27 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88DaQc9066192; Mon, 8 Sep 2003 06:36:26 -0700 (PDT) Message-Id: <200309081336.h88DaQc9066192@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 8 Sep 2003 06:36:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-raid.c 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: Mon, 08 Sep 2003 13:36:28 -0000 sos 2003/09/08 06:36:26 PDT FreeBSD src repository Modified files: sys/dev/ata ata-raid.c Log: Limit the size of the rebuild requests to be within safety. Revision Changes Path 1.69 +6 -3 src/sys/dev/ata/ata-raid.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 06:55:07 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 25F8716A4BF; Mon, 8 Sep 2003 06:55:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B16E43FAF; Mon, 8 Sep 2003 06:55:06 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88Dt60U066867; Mon, 8 Sep 2003 06:55:06 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88Dt6ZF066866; Mon, 8 Sep 2003 06:55:06 -0700 (PDT) Message-Id: <200309081355.h88Dt6ZF066866@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 8 Sep 2003 06:55:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-chipset.c ata-pci.h 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: Mon, 08 Sep 2003 13:55:07 -0000 sos 2003/09/08 06:55:06 PDT FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-pci.h Log: Add another ID for the SiI3112a SATA chip as used on the Adaptec 1210SA. RAID support is still in the works, so for now just normal ATA ops. Sponsored by: Matt Douhan(www.fruitsalad.org) Revision Changes Path 1.39 +12 -7 src/sys/dev/ata/ata-chipset.c 1.16 +1 -0 src/sys/dev/ata/ata-pci.h From owner-cvs-src@FreeBSD.ORG Mon Sep 8 07:53:03 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 8227A16A4BF; Mon, 8 Sep 2003 07:53:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBBBD43F3F; Mon, 8 Sep 2003 07:53:02 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88Er20U069869; Mon, 8 Sep 2003 07:53:02 -0700 (PDT) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88Er29F069868; Mon, 8 Sep 2003 07:53:02 -0700 (PDT) Message-Id: <200309081453.h88Er29F069868@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 8 Sep 2003 07:53:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/early-adopter article.sgml src/release/doc/en_US.ISO8859-1/errata article.sgml src/release/doc/en_US.ISO8859-1/readme article.sgml 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: Mon, 08 Sep 2003 14:53:03 -0000 simon 2003/09/08 07:53:02 PDT FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/early-adopter article.sgml release/doc/en_US.ISO8859-1/errata article.sgml release/doc/en_US.ISO8859-1/readme article.sgml Log: - Use trademark entities. - Add trademark attributions. - Don't join trademarks with other words, e.g. using hyphens. Revision Changes Path 1.16 +16 -5 src/release/doc/en_US.ISO8859-1/early-adopter/article.sgml 1.48 +14 -5 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.27 +16 -6 src/release/doc/en_US.ISO8859-1/readme/article.sgml From owner-cvs-src@FreeBSD.ORG Mon Sep 8 08:18:33 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 C295516A4BF for ; Mon, 8 Sep 2003 08:18:33 -0700 (PDT) Received: from heathers.stdio.com (heathers.stdio.com [199.89.192.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id C048C43FF5 for ; Mon, 8 Sep 2003 08:18:32 -0700 (PDT) (envelope-from kyle@openworldinc.com) Received: from localhost (kyle@localhost) by heathers.stdio.com (8.11.6/8.11.6) with ESMTP id h88FINi10829; Mon, 8 Sep 2003 11:18:23 -0400 (EDT) (envelope-from kyle@openworldinc.com) Date: Mon, 8 Sep 2003 11:18:23 -0400 (EDT) From: Kyle McPeek X-X-Sender: kyle@heathers.stdio.com To: Soren Schmidt In-Reply-To: <200309061308.h86D8Xwq023001@spider.deepcore.dk> Message-ID: <20030908105852.A80960-100000@heathers.stdio.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE cc: cvs-src@freebsd.org Subject: Serverworks CSB6... 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: Mon, 08 Sep 2003 15:18:33 -0000 Any chance of getting kern/54549 fixed before that? IDE on a Dell 600sc has been broken in Current since late May. kyle. On Sat, 6 Sep 2003, Soren Schmidt wrote: > Please keep in mund that this is only a stopgap solution until the > ATA driver from -current gets backported... > > -S=F8ren > _______________________________________________ > cvs-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-all > To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" > From owner-cvs-src@FreeBSD.ORG Mon Sep 8 09:23:23 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 0F86916A4BF; Mon, 8 Sep 2003 09:23:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 682FE43F3F; Mon, 8 Sep 2003 09:23:22 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88GNM0U080348; Mon, 8 Sep 2003 09:23:22 -0700 (PDT) (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88GNMcj080347; Mon, 8 Sep 2003 09:23:22 -0700 (PDT) Message-Id: <200309081623.h88GNMcj080347@repoman.freebsd.org> From: Ian Dowse Date: Mon, 8 Sep 2003 09:23:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mount.2 src/sys/kern vfs_mount.c 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: Mon, 08 Sep 2003 16:23:23 -0000 iedowse 2003/09/08 09:23:22 PDT FreeBSD src repository Modified files: lib/libc/sys mount.2 sys/kern vfs_mount.c Log: In the !MNT_BYFSID case, return EINVAL from unmount(2) when the specified directory is not found in the mount list. Before the MNT_BYFSID changes, unmount(2) used to return ENOENT for a nonexistent path and EINVAL for a non-mountpoint, but we can no longer distinguish between these cases. Of the two error codes, EINVAL was more likely to occur in practice, and it was the only one of the two that was documented. Update the manual page to match the current behaviour. Suggested by: tjr Reviewed by: tjr Revision Changes Path 1.37 +12 -7 src/lib/libc/sys/mount.2 1.110 +9 -2 src/sys/kern/vfs_mount.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 09:45:35 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 C14F716A4BF; Mon, 8 Sep 2003 09:45:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86FC043FDF; Mon, 8 Sep 2003 09:45:34 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88GjX0U081698; Mon, 8 Sep 2003 09:45:33 -0700 (PDT) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88GjXc8081697; Mon, 8 Sep 2003 09:45:33 -0700 (PDT) Message-Id: <200309081645.h88GjXc8081697@repoman.freebsd.org> From: Paul Saab Date: Mon, 8 Sep 2003 09:45:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c 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: Mon, 08 Sep 2003 16:45:35 -0000 ps 2003/09/08 09:45:33 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c Log: Quiet down boot verbose and allow commands to be submitted to a target which does not have a volume attached. This will stop cam from retrying a bunch of time at boot for devices which do not exsist. Revision Changes Path 1.29 +1 -2 src/sys/dev/ciss/ciss.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 09:54:09 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 836E816A4BF for ; Mon, 8 Sep 2003 09:54:09 -0700 (PDT) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D22843F75 for ; Mon, 8 Sep 2003 09:54:08 -0700 (PDT) (envelope-from sos@spider.deepcore.dk) Received: from spider.deepcore.dk (localhost [127.0.0.1]) by spider.deepcore.dk (8.12.9/8.12.9) with ESMTP id h88Gs5Io046511; Mon, 8 Sep 2003 18:54:05 +0200 (CEST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.9/8.12.9/Submit) id h88Gs5nI046510; Mon, 8 Sep 2003 18:54:05 +0200 (CEST) From: Soren Schmidt Message-Id: <200309081654.h88Gs5nI046510@spider.deepcore.dk> In-Reply-To: <20030908105852.A80960-100000@heathers.stdio.com> To: Kyle McPeek Date: Mon, 8 Sep 2003 18:54:05 +0200 (CEST) X-Mailer: ELM [version 2.4ME+ PL99f (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 X-mail-scanned: by DeepCore Virus & Spam killer v1.3 cc: cvs-src@freebsd.org Subject: Re: Serverworks CSB6... 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: Mon, 08 Sep 2003 16:54:09 -0000 It seems Kyle McPeek wrote: >Any chance of getting kern/54549 fixed before that? Uhm, before what ? >IDE on a Dell 600sc has been broken in Current since late May. I need a little more info than whats in the pr, could you get the output of a verbose boot ? -Søren From owner-cvs-src@FreeBSD.ORG Mon Sep 8 10:22:49 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 F153716A4C1 for ; Mon, 8 Sep 2003 10:22:48 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id ADBA343FFB for ; Mon, 8 Sep 2003 10:22:47 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 85475 invoked by uid 1000); 8 Sep 2003 17:22:48 -0000 Date: Mon, 8 Sep 2003 10:22:48 -0700 (PDT) From: Nate Lawson To: cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org In-Reply-To: <20030908062258.47F6916A5B7@hub.freebsd.org> Message-ID: <20030908102126.G85288@root.org> References: <20030908062258.47F6916A5B7@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/i386/acpica acpi_wakeup.c 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: Mon, 08 Sep 2003 17:22:49 -0000 On Sun, 7 Sep 2003, Nate Lawson wrote: > Modified files: > sys/i386/acpica acpi_wakeup.c > Log: > Don't disable interrupts a second time. Remove an extraneous interrupt > enable (that happens elsewhere). Clarify the interrupt disabling point > by using ACPI_DISABLE_IRQS(). > > Tested by: Kevin Oberman > > Revision Changes Path > 1.26 +1 -4 src/sys/i386/acpica/acpi_wakeup.c This should fix the problem where ATAng hangs on resume with the drive light stuck on but I'm unable to verify this as ATAng has other problems for me. -Nate From owner-cvs-src@FreeBSD.ORG Mon Sep 8 10:35:08 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 7CF2116A4BF; Mon, 8 Sep 2003 10:35:08 -0700 (PDT) Received: from chiark.greenend.org.uk (chiark.greenend.org.uk [193.201.200.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7887843FE1; Mon, 8 Sep 2003 10:35:07 -0700 (PDT) (envelope-from fanf@chiark.greenend.org.uk) Received: by chiark.greenend.org.uk (Debian Exim 3.35 #1) with local id 19wPuX-0001CR-00; Mon, 08 Sep 2003 18:34:45 +0100 Date: Mon, 8 Sep 2003 18:34:45 +0100 From: Tony Finch To: Diomidis Spinellis Message-ID: <20030908173445.GP23273@chiark.greenend.org.uk> References: <200309041828.h84ISga9035283@repoman.freebsd.org> <20030907191013.U3442@gamplex.bde.org> <3F5B42F4.D854AA26@aueb.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F5B42F4.D854AA26@aueb.gr> User-Agent: Mutt/1.3.28i Sender: Tony Finch cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Bruce Evans cc: Jens Schweikhardt Subject: Re: cvs commit: src/bin/sh arith.h arith.y arith_lex.l shell.h 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: Mon, 08 Sep 2003 17:35:08 -0000 On Sun, Sep 07, 2003 at 05:38:44PM +0300, Diomidis Spinellis wrote: > > Amazingly, style rules for yacc appear in the original Steve Johnson's > paper "Yacc: yet Another Compiler-Compiler", contributed by Brian > Kernighan, no less. The paper was part of the 7th edition Unix > Programmer's Manual, Volume 2, Supplementary Documents (PSD), which is > available in PDF format at > . It's also in /usr/share/doc/psd/15.yacc in -CURRENT. Thanks to SCO (Caldera as was) for releasing "ancient Unix" under a BSDish licence. Tony. -- f.a.n.finch http://dotat.at/ BERWICK ON TWEED TO WHITBY: VARIABLE 1 TO 3 BECOMING WEST 3 OR 4 TONIGHT. MAINLY FAIR. MODERATE OR GOOD. SLIGHT. From owner-cvs-src@FreeBSD.ORG Mon Sep 8 10:46:34 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 6027916A4BF; Mon, 8 Sep 2003 10:46:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B822743FBD; Mon, 8 Sep 2003 10:46:33 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88HkX0U084939; Mon, 8 Sep 2003 10:46:33 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88HkX5Q084938; Mon, 8 Sep 2003 10:46:33 -0700 (PDT) Message-Id: <200309081746.h88HkX5Q084938@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Sep 2003 10:46:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/groff/src/devices/grotty grotty.man src/contrib/groff/tmac eqnrc troffrc tty-char.tmac tty.tmac src/gnu/usr.bin/groff/tmac Makefile koi8-r.tmac 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: Mon, 08 Sep 2003 17:46:34 -0000 ru 2003/09/08 10:46:33 PDT FreeBSD src repository Modified files: contrib/groff/src/devices/grotty grotty.man contrib/groff/tmac eqnrc troffrc tty-char.tmac tty.tmac gnu/usr.bin/groff/font/devkoi8-r R.proto gnu/usr.bin/groff/tmac Makefile Added files: gnu/usr.bin/groff/tmac koi8-r.tmac Log: Unbreak Russian KOI8-R support. Revision Changes Path 1.8 +3 -3 src/contrib/groff/src/devices/grotty/grotty.man 1.6 +2 -2 src/contrib/groff/tmac/eqnrc 1.16 +7 -9 src/contrib/groff/tmac/troffrc 1.2 +215 -186 src/contrib/groff/tmac/tty-char.tmac 1.2 +78 -39 src/contrib/groff/tmac/tty.tmac 1.6 +175 -157 src/gnu/usr.bin/groff/font/devkoi8-r/R.proto 1.42 +1 -1 src/gnu/usr.bin/groff/tmac/Makefile 1.1 +133 -0 src/gnu/usr.bin/groff/tmac/koi8-r.tmac (new) From owner-cvs-src@FreeBSD.ORG Mon Sep 8 11:28:42 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 F222816A4BF; Mon, 8 Sep 2003 11:28:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79BB043FE5; Mon, 8 Sep 2003 11:28:41 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88ISf0U087368; Mon, 8 Sep 2003 11:28:41 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88ISfc9087367; Mon, 8 Sep 2003 11:28:41 -0700 (PDT) Message-Id: <200309081828.h88ISfc9087367@repoman.freebsd.org> From: Peter Wemm Date: Mon, 8 Sep 2003 11:28:41 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include signal.h 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: Mon, 08 Sep 2003 18:28:42 -0000 peter 2003/09/08 11:28:41 PDT FreeBSD src repository Modified files: sys/amd64/include signal.h Log: Hmm. Two copies of the mcontext... Revision Changes Path 1.22 +1 -1 src/sys/amd64/include/signal.h From owner-cvs-src@FreeBSD.ORG Mon Sep 8 11:31:49 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 79AD516A4BF; Mon, 8 Sep 2003 11:31:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF1AC43FBF; Mon, 8 Sep 2003 11:31:48 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88IVm0U087566; Mon, 8 Sep 2003 11:31:48 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88IVm6L087565; Mon, 8 Sep 2003 11:31:48 -0700 (PDT) Message-Id: <200309081831.h88IVm6L087565@repoman.freebsd.org> From: Peter Wemm Date: Mon, 8 Sep 2003 11:31:48 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/include signal.h 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: Mon, 08 Sep 2003 18:31:49 -0000 peter 2003/09/08 11:31:48 PDT FreeBSD src repository Modified files: sys/amd64/include signal.h Log: Argh. This file was completely out of sync with mcontext/trapframe. Revision Changes Path 1.23 +12 -11 src/sys/amd64/include/signal.h From owner-cvs-src@FreeBSD.ORG Mon Sep 8 11:32:34 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 A41EC16A4BF; Mon, 8 Sep 2003 11:32:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B83743FE5; Mon, 8 Sep 2003 11:32:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88IWY0U087613; Mon, 8 Sep 2003 11:32:34 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88IWXgm087612; Mon, 8 Sep 2003 11:32:33 -0700 (PDT) Message-Id: <200309081832.h88IWXgm087612@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 8 Sep 2003 11:32:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/crypto/sha2 sha2.c 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: Mon, 08 Sep 2003 18:32:34 -0000 phk 2003/09/08 11:32:33 PDT FreeBSD src repository Modified files: sys/crypto/sha2 sha2.c Log: Correctly bzero the entire context, not just the first sizeof(void *) bytes. Found by: Juergen Buchmueller Revision Changes Path 1.7 +6 -6 src/sys/crypto/sha2/sha2.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 11:35:27 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 E640B16A4BF; Mon, 8 Sep 2003 11:35:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C71143FBD; Mon, 8 Sep 2003 11:35:27 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88IZR0U087774; Mon, 8 Sep 2003 11:35:27 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88IZQVP087773; Mon, 8 Sep 2003 11:35:26 -0700 (PDT) Message-Id: <200309081835.h88IZQVP087773@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 8 Sep 2003 11:35:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/bde g_bde_crypt.c 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: Mon, 08 Sep 2003 18:35:28 -0000 phk 2003/09/08 11:35:26 PDT FreeBSD src repository Modified files: sys/geom/bde g_bde_crypt.c Log: Correct bzero length so we clear the entire key structure. Revision Changes Path 1.18 +1 -1 src/sys/geom/bde/g_bde_crypt.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 11:58:48 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 7FC0216A4BF; Mon, 8 Sep 2003 11:58:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07A5E43FF7; Mon, 8 Sep 2003 11:58:48 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88Iwl0U088731; Mon, 8 Sep 2003 11:58:47 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88IwlVL088730; Mon, 8 Sep 2003 11:58:47 -0700 (PDT) Message-Id: <200309081858.h88IwlVL088730@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Sep 2003 11:58:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/fetch fetch.1 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: Mon, 08 Sep 2003 18:58:48 -0000 ru 2003/09/08 11:58:47 PDT FreeBSD src repository Modified files: usr.bin/fetch fetch.1 Log: Finish the reversion of rev. 1.52. Revision Changes Path 1.54 +2 -3 src/usr.bin/fetch/fetch.1 From owner-cvs-src@FreeBSD.ORG Mon Sep 8 12:57:24 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 0531616A4BF; Mon, 8 Sep 2003 12:57:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD43843FE3; Mon, 8 Sep 2003 12:57:22 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88JvM0U098930; Mon, 8 Sep 2003 12:57:22 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88JvMWv098929; Mon, 8 Sep 2003 12:57:22 -0700 (PDT) Message-Id: <200309081957.h88JvMWv098929@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Sep 2003 12:57:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/ps ps.1 src/bin/sh sh.1 src/lib/libalias libalias.3 src/lib/libc/compat-43 sigvec.2 src/lib/libc/db/man btree.3 dbm.3 dbopen.3 hash.3 recno.3 src/lib/libc/gen confstr.3 ctermid.3 dlinfo.3 fts.3 getcwd.3 getfsent.3 getgrent.3 ... 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: Mon, 08 Sep 2003 19:57:24 -0000 ru 2003/09/08 12:57:22 PDT FreeBSD src repository Modified files: bin/ps ps.1 bin/sh sh.1 lib/libalias libalias.3 lib/libc/compat-43 sigvec.2 lib/libc/db/man btree.3 dbm.3 dbopen.3 hash.3 recno.3 lib/libc/gen confstr.3 ctermid.3 dlinfo.3 fts.3 getcwd.3 getfsent.3 getgrent.3 gethostname.3 getpwent.3 glob.3 msgctl.3 signal.3 sysconf.3 sysctl.3 tcsetattr.3 uname.3 wordexp.3 lib/libc/i386/sys i386_get_ldt.2 lib/libc/locale ctype.3 nl_langinfo.3 rune.3 lib/libc/net addr2ascii.3 ethers.3 getaddrinfo.3 getifaddrs.3 getnameinfo.3 if_indextoname.3 resolver.3 lib/libc/regex regex.3 lib/libc/rpc rpc.3 rpc_svc_calls.3 rpc_svc_create.3 lib/libc/stdio funopen.3 tmpnam.3 lib/libc/stdlib hcreate.3 rand.3 lib/libc/stdtime ctime.3 lib/libc/string bcmp.3 bcopy.3 bzero.3 ffs.3 index.3 strcasecmp.3 lib/libc/sys chmod.2 getlogin.2 intro.2 kqueue.2 ktrace.2 mincore.2 poll.2 ptrace.2 reboot.2 select.2 sigaction.2 sigprocmask.2 stat.2 lib/libc_r/man pthread_once.3 lib/libcalendar calendar.3 lib/libcam cam_cdbparse.3 lib/libcompat/4.1 ftime.3 lib/libcompat/4.4 cuserid.3 lib/libdevinfo devinfo.3 lib/libdevstat devstat.3 lib/libedit editline.3 lib/libfetch fetch.3 lib/libpthread/man pthread_once.3 lib/libradius libradius.3 lib/libtacplus libtacplus.3 lib/libusbhid usbhid.3 libexec/talkd talkd.8 sbin/bsdlabel bsdlabel.8 sbin/disklabel disklabel.8 sbin/newfs newfs.8 sbin/ping ping.8 sbin/sysctl sysctl.8 sbin/vinum vinum.8 share/examples/mdoc example.3 share/man/man3 stdarg.3 timeradd.3 share/man/man4 agp.4 bpf.4 cd.4 ch.4 da.4 fdc.4 ifmib.4 inet.4 inet6.4 ktr.4 mem.4 mtio.4 ng_source.4 pci.4 pcm.4 pt.4 ses.4 tap.4 targ.4 tcp.4 termios.4 ti.4 tty.4 tun.4 unix.4 usb.4 share/man/man4/man4.i386 perfmon.4 share/man/man5 a.out.5 core.5 elf.5 fs.5 group.5 link.5 stab.5 style.Makefile.5 utmp.5 share/man/man7 stdint.7 share/man/man9 BUS_SETUP_INTR.9 SYSCALL_MODULE.9 ifnet.9 ithread.9 ktr.9 lock.9 make_dev.9 malloc.9 pfil.9 rtentry.9 sbuf.9 style.9 swi.9 usr.bin/file file.1 usr.bin/getconf getconf.1 usr.sbin/pw pw.conf.5 usr.sbin/syslogd syslogd.8 Log: mdoc(7): Use the new feature of the .In macro. Revision Changes Path 1.65 +1 -1 src/bin/ps/ps.1 1.88 +1 -1 src/bin/sh/sh.1 1.48 +2 -2 src/lib/libalias/libalias.3 1.23 +2 -2 src/lib/libc/compat-43/sigvec.2 1.7 +1 -1 src/lib/libc/db/man/btree.3 1.8 +1 -1 src/lib/libc/db/man/dbm.3 1.9 +2 -2 src/lib/libc/db/man/dbopen.3 1.8 +1 -1 src/lib/libc/db/man/hash.3 1.7 +3 -3 src/lib/libc/db/man/recno.3 1.13 +1 -1 src/lib/libc/gen/confstr.3 1.11 +1 -1 src/lib/libc/gen/ctermid.3 1.7 +2 -2 src/lib/libc/gen/dlinfo.3 1.19 +1 -1 src/lib/libc/gen/fts.3 1.16 +2 -2 src/lib/libc/gen/getcwd.3 1.15 +1 -1 src/lib/libc/gen/getfsent.3 1.23 +1 -1 src/lib/libc/gen/getgrent.3 1.15 +1 -1 src/lib/libc/gen/gethostname.3 1.25 +1 -1 src/lib/libc/gen/getpwent.3 1.24 +1 -1 src/lib/libc/gen/glob.3 1.19 +3 -3 src/lib/libc/gen/msgctl.3 1.33 +1 -1 src/lib/libc/gen/signal.3 1.18 +1 -1 src/lib/libc/gen/sysconf.3 1.59 +10 -10 src/lib/libc/gen/sysctl.3 1.13 +2 -2 src/lib/libc/gen/tcsetattr.3 1.12 +1 -1 src/lib/libc/gen/uname.3 1.6 +1 -1 src/lib/libc/gen/wordexp.3 1.20 +1 -1 src/lib/libc/i386/sys/i386_get_ldt.2 1.13 +1 -1 src/lib/libc/locale/ctype.3 1.5 +1 -1 src/lib/libc/locale/nl_langinfo.3 1.23 +1 -1 src/lib/libc/locale/rune.3 1.14 +3 -3 src/lib/libc/net/addr2ascii.3 1.22 +1 -1 src/lib/libc/net/ethers.3 1.21 +2 -2 src/lib/libc/net/getaddrinfo.3 1.7 +8 -8 src/lib/libc/net/getifaddrs.3 1.14 +3 -3 src/lib/libc/net/getnameinfo.3 1.10 +1 -1 src/lib/libc/net/if_indextoname.3 1.24 +1 -1 src/lib/libc/net/resolver.3 1.13 +1 -1 src/lib/libc/regex/regex.3 1.22 +2 -2 src/lib/libc/rpc/rpc.3 1.8 +1 -1 src/lib/libc/rpc/rpc_svc_calls.3 1.7 +1 -1 src/lib/libc/rpc/rpc_svc_create.3 1.13 +2 -2 src/lib/libc/stdio/funopen.3 1.15 +2 -2 src/lib/libc/stdio/tmpnam.3 1.4 +1 -1 src/lib/libc/stdlib/hcreate.3 1.14 +1 -1 src/lib/libc/stdlib/rand.3 1.21 +1 -1 src/lib/libc/stdtime/ctime.3 1.10 +2 -2 src/lib/libc/string/bcmp.3 1.9 +2 -2 src/lib/libc/string/bcopy.3 1.9 +2 -2 src/lib/libc/string/bzero.3 1.7 +2 -2 src/lib/libc/string/ffs.3 1.11 +2 -2 src/lib/libc/string/index.3 1.11 +2 -2 src/lib/libc/string/strcasecmp.3 1.30 +1 -1 src/lib/libc/sys/chmod.2 1.26 +1 -1 src/lib/libc/sys/getlogin.2 1.39 +3 -3 src/lib/libc/sys/intro.2 1.34 +1 -1 src/lib/libc/sys/kqueue.2 1.20 +1 -1 src/lib/libc/sys/ktrace.2 1.24 +1 -1 src/lib/libc/sys/mincore.2 1.11 +1 -1 src/lib/libc/sys/poll.2 1.33 +6 -6 src/lib/libc/sys/ptrace.2 1.18 +1 -1 src/lib/libc/sys/reboot.2 1.25 +1 -1 src/lib/libc/sys/select.2 1.49 +1 -1 src/lib/libc/sys/sigaction.2 1.21 +1 -1 src/lib/libc/sys/sigprocmask.2 1.34 +2 -2 src/lib/libc/sys/stat.2 1.15 +1 -1 src/lib/libc_r/man/pthread_once.3 1.12 +2 -2 src/lib/libcalendar/calendar.3 1.19 +1 -1 src/lib/libcam/cam_cdbparse.3 1.12 +2 -2 src/lib/libcompat/4.1/ftime.3 1.18 +1 -1 src/lib/libcompat/4.4/cuserid.3 1.9 +1 -1 src/lib/libdevinfo/devinfo.3 1.24 +1 -1 src/lib/libdevstat/devstat.3 1.21 +1 -1 src/lib/libedit/editline.3 1.55 +4 -4 src/lib/libfetch/fetch.3 1.15 +1 -1 src/lib/libpthread/man/pthread_once.3 1.16 +1 -1 src/lib/libradius/libradius.3 1.12 +4 -4 src/lib/libtacplus/libtacplus.3 1.15 +1 -1 src/lib/libusbhid/usbhid.3 1.7 +1 -1 src/libexec/talkd/talkd.8 1.55 +1 -1 src/sbin/bsdlabel/bsdlabel.8 1.53 +1 -1 src/sbin/disklabel/disklabel.8 1.62 +1 -1 src/sbin/newfs/newfs.8 1.50 +1 -1 src/sbin/ping/ping.8 1.51 +8 -8 src/sbin/sysctl/sysctl.8 1.64 +2 -2 src/sbin/vinum/vinum.8 1.23 +2 -2 src/share/examples/mdoc/example.3 1.13 +2 -2 src/share/man/man3/stdarg.3 1.3 +1 -1 src/share/man/man3/timeradd.3 1.6 +2 -2 src/share/man/man4/agp.4 1.39 +7 -7 src/share/man/man4/bpf.4 1.34 +2 -2 src/share/man/man4/cd.4 1.31 +1 -1 src/share/man/man4/ch.4 1.43 +1 -1 src/share/man/man4/da.4 1.33 +1 -1 src/share/man/man4/fdc.4 1.19 +5 -5 src/share/man/man4/ifmib.4 1.24 +1 -1 src/share/man/man4/inet.4 1.18 +1 -1 src/share/man/man4/inet6.4 1.9 +1 -1 src/share/man/man4/ktr.4 1.14 +3 -3 src/share/man/man4/man4.i386/perfmon.4 1.16 +1 -1 src/share/man/man4/mem.4 1.21 +1 -1 src/share/man/man4/mtio.4 1.5 +1 -1 src/share/man/man4/ng_source.4 1.14 +1 -1 src/share/man/man4/pci.4 1.31 +1 -1 src/share/man/man4/pcm.4 1.14 +1 -1 src/share/man/man4/pt.4 1.10 +3 -3 src/share/man/man4/ses.4 1.15 +1 -1 src/share/man/man4/tap.4 1.5 +2 -2 src/share/man/man4/targ.4 1.38 +1 -1 src/share/man/man4/tcp.4 1.28 +3 -3 src/share/man/man4/termios.4 1.26 +1 -1 src/share/man/man4/ti.4 1.20 +3 -3 src/share/man/man4/tty.4 1.19 +2 -2 src/share/man/man4/tun.4 1.8 +3 -3 src/share/man/man4/unix.4 1.29 +2 -4 src/share/man/man4/usb.4 1.16 +2 -2 src/share/man/man5/a.out.5 1.17 +3 -3 src/share/man/man5/core.5 1.24 +1 -1 src/share/man/man5/elf.5 1.20 +4 -4 src/share/man/man5/fs.5 1.27 +1 -1 src/share/man/man5/group.5 1.26 +1 -1 src/share/man/man5/link.5 1.10 +3 -3 src/share/man/man5/stab.5 1.7 +3 -3 src/share/man/man5/style.Makefile.5 1.21 +1 -1 src/share/man/man5/utmp.5 1.5 +4 -4 src/share/man/man7/stdint.7 1.14 +1 -1 src/share/man/man9/BUS_SETUP_INTR.9 1.5 +1 -1 src/share/man/man9/SYSCALL_MODULE.9 1.32 +10 -10 src/share/man/man9/ifnet.9 1.9 +1 -1 src/share/man/man9/ithread.9 1.7 +1 -1 src/share/man/man9/ktr.9 1.11 +1 -1 src/share/man/man9/lock.9 1.14 +1 -1 src/share/man/man9/make_dev.9 1.36 +3 -3 src/share/man/man9/malloc.9 1.11 +1 -1 src/share/man/man9/pfil.9 1.18 +1 -1 src/share/man/man9/rtentry.9 1.20 +1 -1 src/share/man/man9/sbuf.9 1.102 +5 -5 src/share/man/man9/style.9 1.12 +1 -1 src/share/man/man9/swi.9 1.32 +3 -3 src/usr.bin/file/file.1 1.12 +1 -1 src/usr.bin/getconf/getconf.1 1.15 +1 -1 src/usr.sbin/pw/pw.conf.5 1.50 +1 -1 src/usr.sbin/syslogd/syslogd.8 From owner-cvs-src@FreeBSD.ORG Mon Sep 8 13:00:56 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 2FDC316A4BF; Mon, 8 Sep 2003 13:00:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABDC043FB1; Mon, 8 Sep 2003 13:00:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h88K0t0U099150; Mon, 8 Sep 2003 13:00:55 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h88K0t8n099149; Mon, 8 Sep 2003 13:00:55 -0700 (PDT) Message-Id: <200309082000.h88K0t8n099149@repoman.freebsd.org> From: Peter Wemm Date: Mon, 8 Sep 2003 13:00:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/conf GENERIC 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: Mon, 08 Sep 2003 20:00:56 -0000 peter 2003/09/08 13:00:55 PDT FreeBSD src repository Modified files: sys/amd64/conf GENERIC Log: Turn aac back on now that its been cleaned up for 64 bit compilation Revision Changes Path 1.393 +2 -2 src/sys/amd64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Sep 8 17:24:33 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 47B1A16A4BF; Mon, 8 Sep 2003 17:24:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE72643F93; Mon, 8 Sep 2003 17:24:32 -0700 (PDT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h890OW0U018920; Mon, 8 Sep 2003 17:24:32 -0700 (PDT) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h890OWQa018919; Mon, 8 Sep 2003 17:24:32 -0700 (PDT) Message-Id: <200309090024.h890OWQa018919@repoman.freebsd.org> From: Eric Anholt Date: Mon, 8 Sep 2003 17:24:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/drm drmP.h drm_context.h drm_memory.h radeon.h radeon_cp.c radeon_drm.h radeon_drv.c radeon_drv.h radeon_mem.c radeon_state.c sis.h sis_drm.h sis_drv.c sis_drv.h sis_ds.c sis_ds.h sis_mm.c 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: Tue, 09 Sep 2003 00:24:33 -0000 anholt 2003/09/08 17:24:32 PDT FreeBSD src repository Modified files: sys/dev/drm drmP.h drm_context.h drm_memory.h radeon.h radeon_cp.c radeon_drm.h radeon_drv.c radeon_drv.h radeon_mem.c radeon_state.c Added files: sys/dev/drm sis.h sis_drm.h sis_drv.c sis_drv.h sis_ds.c sis_ds.h sis_mm.c Log: Merge from DRI CVS. Includes newly ported SiS 300/305/540/630/730 driver and updates to allow system memory to be used for textures on PCI Radeons. Sponsored by: LinuxFund Revision Changes Path 1.6 +1 -0 src/sys/dev/drm/drmP.h 1.6 +8 -0 src/sys/dev/drm/drm_context.h 1.10 +5 -0 src/sys/dev/drm/drm_memory.h 1.5 +4 -4 src/sys/dev/drm/radeon.h 1.8 +31 -34 src/sys/dev/drm/radeon_cp.c 1.6 +10 -10 src/sys/dev/drm/radeon_drm.h 1.8 +4 -4 src/sys/dev/drm/radeon_drv.c 1.7 +6 -6 src/sys/dev/drm/radeon_drv.h 1.4 +4 -4 src/sys/dev/drm/radeon_mem.c 1.8 +9 -9 src/sys/dev/drm/radeon_state.c 1.1 +79 -0 src/sys/dev/drm/sis.h (new) 1.4 +36 -0 src/sys/dev/drm/sis_drm.h (new) 1.1 +60 -0 src/sys/dev/drm/sis_drv.c (new) 1.1 +48 -0 src/sys/dev/drm/sis_drv.h (new) 1.1 +387 -0 src/sys/dev/drm/sis_ds.c (new) 1.1 +165 -0 src/sys/dev/drm/sis_ds.h (new) 1.1 +404 -0 src/sys/dev/drm/sis_mm.c (new) From owner-cvs-src@FreeBSD.ORG Mon Sep 8 17:29:03 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 B601616A4BF; Mon, 8 Sep 2003 17:29:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 334C343FEA; Mon, 8 Sep 2003 17:29:03 -0700 (PDT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h890T20U019243; Mon, 8 Sep 2003 17:29:02 -0700 (PDT) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h890T2bg019242; Mon, 8 Sep 2003 17:29:02 -0700 (PDT) Message-Id: <200309090029.h890T2bg019242@repoman.freebsd.org> From: Eric Anholt Date: Mon, 8 Sep 2003 17:29:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/i386/conf NOTES src/sys/modules/drm Makefile src/sys/modules/drm/sis Makefile 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: Tue, 09 Sep 2003 00:29:03 -0000 anholt 2003/09/08 17:29:02 PDT FreeBSD src repository Modified files: sys/conf files sys/i386/conf NOTES sys/modules/drm Makefile Added files: sys/modules/drm/sis Makefile Log: Hook the SiS DRM up to the build Sponsored by: LinuxFund Revision Changes Path 1.822 +3 -0 src/sys/conf/files 1.1093 +3 -1 src/sys/i386/conf/NOTES 1.3 +1 -1 src/sys/modules/drm/Makefile 1.1 +9 -0 src/sys/modules/drm/sis/Makefile (new) From owner-cvs-src@FreeBSD.ORG Mon Sep 8 19:21:54 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 819A516A4C0; Mon, 8 Sep 2003 19:21:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A60743FE1; Mon, 8 Sep 2003 19:21:54 -0700 (PDT) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h892Lr0U024849; Mon, 8 Sep 2003 19:21:53 -0700 (PDT) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h892Lr7Z024848; Mon, 8 Sep 2003 19:21:53 -0700 (PDT) Message-Id: <200309090221.h892Lr7Z024848@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 8 Sep 2003 19:21:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/newsyslog newsyslog.c 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: Tue, 09 Sep 2003 02:21:54 -0000 gad 2003/09/08 19:21:53 PDT FreeBSD src repository Modified files: usr.sbin/newsyslog newsyslog.c Log: Cosmetic change to move parse8601 right next to parseDWM. No code is changed. (that will come in later updates). MFC after: 23 days Revision Changes Path 1.73 +86 -86 src/usr.sbin/newsyslog/newsyslog.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 19:45:54 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 D9CE916A4BF; Mon, 8 Sep 2003 19:45:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F71A43FF5; Mon, 8 Sep 2003 19:45:54 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h892js0U025782; Mon, 8 Sep 2003 19:45:54 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h892js6B025781; Mon, 8 Sep 2003 19:45:54 -0700 (PDT) Message-Id: <200309090245.h892js6B025781@repoman.freebsd.org> From: Bill Paul Date: Mon, 8 Sep 2003 19:45:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 re.4 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: Tue, 09 Sep 2003 02:45:55 -0000 wpaul 2003/09/08 19:45:53 PDT FreeBSD src repository Added files: share/man/man4 re.4 Log: Add the re.4 man page, which I forgot to do last night. Revision Changes Path 1.1 +200 -0 src/share/man/man4/re.4 (new) From owner-cvs-src@FreeBSD.ORG Mon Sep 8 19:50:26 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 7CF9D16A4BF; Mon, 8 Sep 2003 19:50:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 010A943FE9; Mon, 8 Sep 2003 19:50:26 -0700 (PDT) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h892oP0U025942; Mon, 8 Sep 2003 19:50:25 -0700 (PDT) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h892oPkR025940; Mon, 8 Sep 2003 19:50:25 -0700 (PDT) Message-Id: <200309090250.h892oPkR025940@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 8 Sep 2003 19:50:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/newsyslog newsyslog.c 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: Tue, 09 Sep 2003 02:50:26 -0000 gad 2003/09/08 19:50:25 PDT FreeBSD src repository Modified files: usr.sbin/newsyslog newsyslog.c Log: Change parse8601 and parseDWM so they return an alternate error value for invalid times, and have the caller print the error message. MFC after: 23 days Revision Changes Path 1.74 +29 -14 src/usr.sbin/newsyslog/newsyslog.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 19:55:33 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 E781F16A4BF; Mon, 8 Sep 2003 19:55:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E23A43FD7; Mon, 8 Sep 2003 19:55:33 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h892tX0U026149; Mon, 8 Sep 2003 19:55:33 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h892tWYD026148; Mon, 8 Sep 2003 19:55:32 -0700 (PDT) Message-Id: <200309090255.h892tWYD026148@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Sep 2003 19:55:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/sys syslimits.h 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: Tue, 09 Sep 2003 02:55:34 -0000 obrien 2003/09/08 19:55:32 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/sys syslimits.h Log: MFC: rev 1.15: add the POSIX sanctioned "LOGIN_NAME_MAX" Approved by: murray Revision Changes Path 1.9.2.1 +1 -0 src/sys/sys/syslimits.h From owner-cvs-src@FreeBSD.ORG Mon Sep 8 19:58:24 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 3B5EE16A4BF; Mon, 8 Sep 2003 19:58:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B566943FA3; Mon, 8 Sep 2003 19:58:23 -0700 (PDT) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h892wN0U026259; Mon, 8 Sep 2003 19:58:23 -0700 (PDT) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h892wNlG026258; Mon, 8 Sep 2003 19:58:23 -0700 (PDT) Message-Id: <200309090258.h892wNlG026258@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 8 Sep 2003 19:58:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/newsyslog newsyslog.c 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: Tue, 09 Sep 2003 02:58:24 -0000 gad 2003/09/08 19:58:23 PDT FreeBSD src repository Modified files: usr.sbin/newsyslog newsyslog.c Log: Fix typo in the previous commit. Was checking wrong variable... MFC after: 23 days Revision Changes Path 1.75 +1 -1 src/usr.sbin/newsyslog/newsyslog.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 20:04:51 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 E65CE16A4BF; Mon, 8 Sep 2003 20:04:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26D7343FBF; Mon, 8 Sep 2003 20:04:51 -0700 (PDT) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h8934o0U027380; Mon, 8 Sep 2003 20:04:50 -0700 (PDT) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h8934ovW027379; Mon, 8 Sep 2003 20:04:50 -0700 (PDT) Message-Id: <200309090304.h8934ovW027379@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 8 Sep 2003 20:04:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/newsyslog newsyslog.c 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: Tue, 09 Sep 2003 03:04:52 -0000 gad 2003/09/08 20:04:50 PDT FreeBSD src repository Modified files: usr.sbin/newsyslog newsyslog.c Log: Use strtol() instead of strtoul() in parse8601, so we can detect negative values. Mainly done to sync this routine with OpenBSD. Obtained from: OpenBSD MFC after: 23 days Revision Changes Path 1.76 +17 -17 src/usr.sbin/newsyslog/newsyslog.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 20:59:47 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 1D15B16A4C0; Mon, 8 Sep 2003 20:59:47 -0700 (PDT) Received: from lists.frmug.org (frmug-gw.frmug.org [193.56.58.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A61B43FE1; Mon, 8 Sep 2003 20:59:45 -0700 (PDT) (envelope-from charnier@xp11.frmug.org) Received: by lists.frmug.org (Postfix/TLS, from userid 66) id BD207221E7; Tue, 9 Sep 2003 05:59:43 +0200 (CEST) Received: from xp11.frmug.org (localhost [127.0.0.1])h893wQjt022577; Tue, 9 Sep 2003 05:58:26 +0200 (CEST) (envelope-from charnier@xp11.frmug.org) Message-Id: <200309090358.h893wQjt022577@xp11.frmug.org> To: Gordon Tetlow In-Reply-To: Your message of "Sun, 07 Sep 2003 22:32:02 PDT." <20030908053202.GI695@roark.gnf.org> Date: Tue, 09 Sep 2003 05:58:26 +0200 From: "Philippe Charnier" cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/rcorder rcorder.c 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: Tue, 09 Sep 2003 03:59:47 -0000 Salut, Gordon Tetlow wrote: >> charnier 2003/09/07 07:17:17 PDT >>=20 >> FreeBSD src repository >>=20 >> Modified files: >> sbin/rcorder rcorder.c=20 >> Log: >> de-__P(). >> =20 >> Revision Changes Path >> 1.2 +27 -22 src/sbin/rcorder/rcorder.c > >Argh! This was on the vendor branch! Did you pass this by obrien@ first? > Oh Sorry, I didn't check that HEAD was on the vendor branch. I should have made a first commit to incorporate 1.1.1.1 -> 1.1.1.2 from the vendor branch to the main trunk before committing my own change on top of it. My patch is revision 1.2 and contains both 1.1.1.1 -> 1.1.1.2 and my changes. I checked # grep rcorder /usr/src/MAINTAINERS ------ ------ Philippe Charnier charnier@{xp11.frmug.org,free.fr,FreeBSD.org} ``a PC not running FreeBSD is like a venusian with no tentacles'' ------------------------------------------------------------------------ From owner-cvs-src@FreeBSD.ORG Mon Sep 8 21:09:26 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 5A30F16A4BF; Mon, 8 Sep 2003 21:09:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B30643F85; Mon, 8 Sep 2003 21:09:25 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h8949P0U036096; Mon, 8 Sep 2003 21:09:25 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h8949P6x036095; Mon, 8 Sep 2003 21:09:25 -0700 (PDT) Message-Id: <200309090409.h8949P6x036095@repoman.freebsd.org> From: Nate Lawson Date: Mon, 8 Sep 2003 21:09:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c 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: Tue, 09 Sep 2003 04:09:26 -0000 njl 2003/09/08 21:09:25 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Disallow attempts to suspend to S0. It was only enabled for testing. Print a more informative message if a sleep state is not supported by BIOS. Add comments. Revision Changes Path 1.99 +11 -10 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Mon Sep 8 22:23:07 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 C224916A4BF; Mon, 8 Sep 2003 22:23:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46B3C43FCB; Mon, 8 Sep 2003 22:23:07 -0700 (PDT) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h895N70U039716; Mon, 8 Sep 2003 22:23:07 -0700 (PDT) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h895N6ai039715; Mon, 8 Sep 2003 22:23:06 -0700 (PDT) Message-Id: <200309090523.h895N6ai039715@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 8 Sep 2003 22:23:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/newsyslog newsyslog.c 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: Tue, 09 Sep 2003 05:23:07 -0000 gad 2003/09/08 22:23:06 PDT FreeBSD src repository Modified files: usr.sbin/newsyslog newsyslog.c Log: Add a '-D ' command line arg, which can be used to set debugging options. Initial option is '-D TN=