From owner-cvs-all Sun Jun 11 0: 4:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FCA137B569; Sun, 11 Jun 2000 00:04:44 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA76110; Sun, 11 Jun 2000 00:04:43 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Message-Id: <200006110704.AAA76110@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 11 Jun 2000 00:04:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV src/sys/i386/isa rp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tanimura 2000/06/11 00:04:43 PDT Modified files: (Branch: RELENG_4) etc MAKEDEV sys/i386/isa rp.c Log: MFC: Fix minor numbers, locking, the return value of rpattach() and baud_table. Revision Changes Path 1.243.2.7 +13 -13 src/etc/MAKEDEV 1.33.2.1 +12 -10 src/sys/i386/isa/rp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 0:15:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B216E37BF29; Sun, 11 Jun 2000 00:15:28 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA81644; Sun, 11 Jun 2000 00:15:28 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Message-Id: <200006110715.AAA81644@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 11 Jun 2000 00:15:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/etc.i386 MAKEDEV src/sys/i386/isa rp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tanimura 2000/06/11 00:15:28 PDT Modified files: (Branch: RELENG_3) etc/etc.i386 MAKEDEV sys/i386/isa rp.c Log: MFC: Fix minor numbers, locking, the return value of rpattach() and baud_table. Revision Changes Path 1.183.2.17 +5 -5 src/etc/etc.i386/Attic/MAKEDEV 1.18.2.1 +13 -9 src/sys/i386/isa/rp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 0:19:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7499937B9D2; Sun, 11 Jun 2000 00:19:21 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA82776; Sun, 11 Jun 2000 00:19:21 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006110719.AAA82776@freefall.freebsd.org> From: Bruce Evans Date: Sun, 11 Jun 2000 00:19:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/11 00:19:21 PDT Modified files: sys/kern subr_bus.c Log: Fixed allocation of unit numbers. Allocate the amount of space actually required (rounded up a little) instead of twice the previous amount (or a fixed amount for the first allocation). The bug caused memory corruption when a new unit number for a devclass was more than about twice the previous maximum one (or more than 3 for the first one), so it corrupted memory (which happened to be the atkbdc port resource list) in the reporter's configuration with sio unit numbers { 0, 25, 1, 2, ... }. Reviewed by: dfr Reported by: Leonid Lukiyanets Revision Changes Path 1.67 +2 -3 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 0:40:31 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id F202B37BA7C; Sun, 11 Jun 2000 00:40:24 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (203-165-77-40.sugnm1.kt.home.ne.jp [203.165.77.40]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id QAA26263; Sun, 11 Jun 2000 16:40:22 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id QAA28300; Sun, 11 Jun 2000 16:39:51 +0900 (JST) Date: Sun, 11 Jun 2000 16:39:48 +0900 Message-ID: <86bt18is3f.wl@localhost.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: imura@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/linux-lesstif-ns Makefile ports/www/linux-lesstif-ns/files md5 In-Reply-To: In your message of "Sat, 10 Jun 2000 23:01:50 -0700 (PDT)" <200006110601.XAA53486@freefall.freebsd.org> References: <200006110601.XAA53486@freefall.freebsd.org> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Sat, 10 Jun 2000 23:01:50 -0700 (PDT), R. Imura wrote: > imura 2000/06/10 23:01:50 PDT > > Modified files: > www/linux-lesstif-ns Makefile > www/linux-lesstif-ns/files md5 > Log: > Update to version 0.91.0. > > Drag'n Drop now works(but not bookmark window yet). Yay! It works perfectly as I expected! Thanks for the update! -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 0:43:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B64A37C896; Sun, 11 Jun 2000 00:43:46 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA92558; Sun, 11 Jun 2000 00:43:46 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006110743.AAA92558@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 11 Jun 2000 00:43:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/fetchmail Makefile ports/mail/fetchmail/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/11 00:43:45 PDT Modified files: mail/fetchmail Makefile mail/fetchmail/files md5 Log: Update to version 5.4.1. PR: ports/19181 Submitted by: Maintainer Revision Changes Path 1.99 +2 -2 ports/mail/fetchmail/Makefile 1.82 +1 -1 ports/mail/fetchmail/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 0:48:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DB6F37B9FA; Sun, 11 Jun 2000 00:48:09 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA94011; Sun, 11 Jun 2000 00:48:09 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006110748.AAA94011@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 11 Jun 2000 00:48:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/qmail Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/11 00:48:09 PDT Modified files: mail/qmail Makefile Log: Output PREFIX safe pkg/MESSAGE. PR: ports/19188 Submitted by: Maintainer Revision Changes Path 1.18 +2 -2 ports/mail/qmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 0:51:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D506E37C84D; Sun, 11 Jun 2000 00:51:46 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA95000; Sun, 11 Jun 2000 00:51:46 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006110751.AAA95000@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 11 Jun 2000 00:51:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/downloader Makefile ports/ftp/downloader/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/11 00:51:46 PDT Modified files: ftp/downloader Makefile ftp/downloader/files md5 Log: Update to 1.17. (just PORTVERSION & md5 changes) PR: ports/19194 Submitted by: lioux@uol.com.br Revision Changes Path 1.15 +2 -2 ports/ftp/downloader/Makefile 1.10 +1 -1 ports/ftp/downloader/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 1: 5:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 59E3037C08E; Sun, 11 Jun 2000 01:05:35 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA98705; Sun, 11 Jun 2000 01:05:35 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006110805.BAA98705@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 11 Jun 2000 01:05:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/cyrus-sasl Makefile ports/security/cyrus-sasl/files md5 ports/security/cyrus-sasl/patches patch-ab patch-af ports/security/cyrus-sasl/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/11 01:05:34 PDT Modified files: security/cyrus-sasl Makefile security/cyrus-sasl/files md5 security/cyrus-sasl/patches patch-ab security/cyrus-sasl/pkg PLIST Removed files: security/cyrus-sasl/patches patch-af Log: Update to 1.5.21. Fix detection of kerberos4. (Now support for kerberos4 is always build if /usr/lib/libkrb.a exists) Make use of PLIST_SUB. PR: ports/19187 Submitted by: Maintainer Revision Changes Path 1.8 +61 -27 ports/security/cyrus-sasl/Makefile 1.3 +1 -1 ports/security/cyrus-sasl/files/md5 1.6 +24 -11 ports/security/cyrus-sasl/patches/patch-ab 1.5 +36 -13 ports/security/cyrus-sasl/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 1:17:53 2000 Delivered-To: cvs-all@freebsd.org Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by hub.freebsd.org (Postfix) with ESMTP id 3F80D37B752; Sun, 11 Jun 2000 01:17:43 -0700 (PDT) (envelope-from ust@cert.siemens.de) X-Envelope-Sender-Is: ust@cert.siemens.de (at relayer david.siemens.de) Received: from mail2.siemens.de (mail2.siemens.de [139.25.208.11]) by david.siemens.de (8.10.1/8.10.1) with ESMTP id e5B8HfR20858; Sun, 11 Jun 2000 10:17:42 +0200 (MET DST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail2.siemens.de (8.10.1/8.10.1) with ESMTP id e5B8HfI29162; Sun, 11 Jun 2000 10:17:41 +0200 (MET DST) Received: from alaska.cert.siemens.de (reims.mchp.siemens.de [139.23.202.134]) by mars.cert.siemens.de (8.10.2/8.10.2/Siemens CERT [ $Revision: 1.8 ]) with ESMTP id e5B8Hfm18990; Sun, 11 Jun 2000 10:17:41 +0200 (CEST) Received: (from ust@localhost) by alaska.cert.siemens.de (8.10.2/8.10.2/alaska [ $Revision: 1.4 ]) id e5B8Hf423313; Sun, 11 Jun 2000 08:17:41 GMT Date: Sun, 11 Jun 2000 10:17:41 +0200 From: Udo Schweigert To: Kris Kennaway Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/crypto/openssh session.c Message-ID: <20000611101741.A23252@alaska.cert.siemens.de> Mail-Followup-To: Kris Kennaway , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200006102238.AAA09849@internat.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006102238.AAA09849@internat.freebsd.org>; from kris@FreeBSD.ORG on Sun, Jun 11, 2000 at 12:38:13AM +0200 X-Operating-System: FreeBSD 4.0-STABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jun 11, 2000 at 00:38:13 +0200, Kris Kennaway wrote: > kris 2000/06/11 00:38:13 SAST > > FreeBSD International Crypto Repository > > Modified files: (Branch: RELENG_4) > crypto/openssh session.c > Log: > MFC: Security botch > > Revision Changes Path > 1.4.2.2 +5 -1 src/crypto/openssh/session.c > This broke sshd. A patch like the one attached fixed it for me. Regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 ZT IK 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : ust@cert.siemens.de PGP-2/5 fingerprint | D8 A5 DF 34 EC 87 E8 C6 E2 26 C4 D0 EE 80 36 B2 --- session.c.orig Sun Jun 11 09:14:28 2000 +++ session.c Sun Jun 11 10:11:47 2000 @@ -858,13 +858,15 @@ struct stat st; char *argv[10]; +#ifdef LOGIN_CAP + login_cap_t *lc; +#endif /* LOGIN_CAP */ + /* login(1) is only called if we execute the login shell */ if (options.use_login && command != NULL) options.use_login = 0; #ifdef LOGIN_CAP - login_cap_t *lc; - lc = login_getpwclass(pw); if (lc == NULL) lc = login_getclassbyname(NULL, pw); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 2:50:42 2000 Delivered-To: cvs-all@freebsd.org Received: from shadowmere.student.utwente.nl (wit401305.student.utwente.nl [130.89.236.145]) by hub.freebsd.org (Postfix) with ESMTP id 4BD3737B913; Sun, 11 Jun 2000 02:50:39 -0700 (PDT) (envelope-from daeron@wit401305.student.utwente.nl) Received: by shadowmere.student.utwente.nl (Postfix, from userid 1000) id 0C3A71F5E; Sun, 11 Jun 2000 11:50:38 +0200 (CEST) Date: Sun, 11 Jun 2000 11:50:37 +0200 From: Pascal Hofstee To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/libPropList Makefile ports/devel/libPropList/patches patch-ab patch-ac Message-ID: <20000611115037.A10414@shadowmere.student.utwente.nl> Reply-To: daeron@shadowmere.student.utwente.nl References: <200006070839.BAA53753@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006070839.BAA53753@freefall.freebsd.org>; from sobomax@FreeBSD.org on Wed, Jun 07, 2000 at 01:39:53AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jun 07, 2000 at 01:39:53AM -0700, Maxim Sobolev wrote: > sobomax 2000/06/07 01:39:53 PDT > > Modified files: > devel/libPropList Makefile > Added files: > devel/libPropList/patches patch-ab patch-ac > Log: > Use mkstemp() instean of insecure tmpname(). > > Revision Changes Path > 1.13 +2 -1 ports/devel/libPropList/Makefile Hi, I just figured out that with this patch applied I e.g. can't change themes any longer on WindowMaker ... after i reverted back to the unpatched libPropList ... it worked again. -- Pascal Hofstee < daeron @ shadowmere . student . utwente . nl > Managers know it must be good because the programmers hate it so much. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 4:54:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ECA5437B832; Sun, 11 Jun 2000 04:54:53 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA23280; Sun, 11 Jun 2000 04:54:53 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006111154.EAA23280@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 11 Jun 2000 04:54:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_dc.c if_dcreg.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/11 04:54:53 PDT Modified files: sys/pci if_dc.c if_dcreg.h Log: Add support for the Accton EN1217. PR: 18735 Submitted by: Adoal Xu Revision Changes Path 1.15 +6 -2 src/sys/pci/if_dc.c 1.6 +11 -1 src/sys/pci/if_dcreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 5: 4:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 850BD37BF97; Sun, 11 Jun 2000 05:04:09 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA24130; Sun, 11 Jun 2000 05:04:09 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006111204.FAA24130@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 11 Jun 2000 05:04:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts HARDWARE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/11 05:04:09 PDT Modified files: release/texts HARDWARE.TXT Log: Add Adico and Accton NICs to the list. Move NDC a bit lower so that it is alphabetical. Inspired by PR: 18735 Submitted by: Adoal Xu Revision Changes Path 1.45 +3 -1 src/release/texts/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 5:22:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AD0F37BF97; Sun, 11 Jun 2000 05:22:07 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26395; Sun, 11 Jun 2000 05:22:07 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006111222.FAA26395@freefall.freebsd.org> From: Brian Somers Date: Sun, 11 Jun 2000 05:22:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp fsm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/11 05:22:06 PDT Modified files: usr.sbin/ppp fsm.c Log: Don't oan about padding characters Revision Changes Path 1.54 +1 -3 src/usr.sbin/ppp/fsm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 5:22:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 48FE837B832; Sun, 11 Jun 2000 05:22:31 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26474; Sun, 11 Jun 2000 05:22:31 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006111222.FAA26474@freefall.freebsd.org> From: Brian Somers Date: Sun, 11 Jun 2000 05:22:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp fsm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/11 05:22:30 PDT Modified files: (Branch: RELENG_4) usr.sbin/ppp fsm.c Log: MFC: Don't oan about padding characters Revision Changes Path 1.52.2.2 +1 -3 src/usr.sbin/ppp/fsm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 5:23: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2F0D37BFE3; Sun, 11 Jun 2000 05:23:00 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA26566; Sun, 11 Jun 2000 05:23:00 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006111223.FAA26566@freefall.freebsd.org> From: Brian Somers Date: Sun, 11 Jun 2000 05:23:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp fsm.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/11 05:23:00 PDT Modified files: (Branch: RELENG_3) usr.sbin/ppp fsm.c Log: MF4: Don't oan about padding characters Revision Changes Path 1.37.2.10 +1 -3 src/usr.sbin/ppp/fsm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 6:22: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 43B5937B768; Sun, 11 Jun 2000 06:22:00 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA33288; Sun, 11 Jun 2000 06:22:00 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006111322.GAA33288@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 11 Jun 2000 06:22:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/esecanna-module-vje30 Makefile ports/japanese/esecanna-module-vje30/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/11 06:22:00 PDT Modified files: japanese/esecanna-module-vje30 Makefile japanese/esecanna-module-vje30/files md5 Log: Update to 0.14.5. Revision Changes Path 1.10 +2 -2 ports/japanese/esecanna-module-vje30/Makefile 1.5 +1 -1 ports/japanese/esecanna-module-vje30/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 6:51:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26BE637B768; Sun, 11 Jun 2000 06:51:30 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99916; Sun, 11 Jun 2000 06:51:30 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006111351.GAA99916@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 11 Jun 2000 06:51:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts HARDWARE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/11 06:51:30 PDT Modified files: release/texts HARDWARE.TXT Log: Try and get this list a bit more consistent in style. Also, clarify a comment with proper comma placement. Also tried to get the supported soundcard section more fleshed out. This needs more work. Revision Changes Path 1.46 +161 -169 src/release/texts/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 7:58:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C200E37BBD9; Sun, 11 Jun 2000 07:58:32 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA07151; Sun, 11 Jun 2000 07:58:32 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006111458.HAA07151@freefall.freebsd.org> From: Brian Somers Date: Sun, 11 Jun 2000 07:58:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/11 07:58:32 PDT Modified files: usr.sbin/ppp ppp.8 Log: Hard sentence breaks and trailing space tidy-ups Obtained from: OpenBSD Revision Changes Path 1.222 +855 -528 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 8:13:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF53837B8EE; Sun, 11 Jun 2000 08:13:50 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA10350; Sun, 11 Jun 2000 08:13:50 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111513.IAA10350@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 08:13:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/ortep3 Makefile ports/biology/ortep3/files md5 patch-aa patch-ab ports/biology/ortep3/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 08:13:50 PDT Modified files: biology/ortep3 Makefile biology/ortep3/files md5 patch-aa patch-ab biology/ortep3/pkg DESCR Log: Update to version 1.0.3 PR: 19094 Submitted by: maintainer While I'm hear, clean up the port, e.g.: * Don't create/delete PATCHDIR while building this port * put the distfile, which is unversioned, to my local-distfiles space. * remove/reorder some actions, such as stripping twice. Reviewed by: will Revision Changes Path 1.5 +18 -19 ports/biology/ortep3/Makefile 1.2 +2 -1 ports/biology/ortep3/files/md5 1.2 +2 -2 ports/biology/ortep3/files/patch-aa 1.2 +2 -2 ports/biology/ortep3/files/patch-ab 1.4 +2 -3 ports/biology/ortep3/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 8:43:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5AD237BEF4; Sun, 11 Jun 2000 08:43:36 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA14237; Sun, 11 Jun 2000 08:43:36 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200006111543.IAA14237@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sun, 11 Jun 2000 08:43:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net res_init.c res_send.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/06/11 08:43:36 PDT Modified files: lib/libc/net res_init.c res_send.c Log: DNS IPv6 transport support. It is nessesary for IPv6 only life. Obtained from: KAME Revision Changes Path 1.20 +42 -21 src/lib/libc/net/res_init.c 1.33 +70 -37 src/lib/libc/net/res_send.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 9: 8:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4634437B6CA; Sun, 11 Jun 2000 09:08:29 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA17958; Sun, 11 Jun 2000 09:08:29 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111608.JAA17958@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 09:08:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/lftp Makefile ports/ftp/lftp/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 09:08:29 PDT Modified files: ftp/lftp Makefile ftp/lftp/files md5 Log: Update to version 2.2.3 PR: 19196 Submitted by: maintainer Reviewed by: will Revision Changes Path 1.30 +2 -2 ports/ftp/lftp/Makefile 1.19 +1 -1 ports/ftp/lftp/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 9:11:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67C2A37B6CA; Sun, 11 Jun 2000 09:11:04 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA18381; Sun, 11 Jun 2000 09:11:04 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111611.JAA18381@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 09:11:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/txt2html Makefile ports/textproc/txt2html/files md5 ports/textproc/txt2html/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 09:11:04 PDT Modified files: textproc/txt2html Makefile textproc/txt2html/files md5 textproc/txt2html/pkg PLIST Log: Update to version 1.28 PR: 19169 Submitted by: maintainer Reviewed by: will Revision Changes Path 1.6 +3 -4 ports/textproc/txt2html/Makefile 1.3 +1 -1 ports/textproc/txt2html/files/md5 1.2 +1 -0 ports/textproc/txt2html/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 9:12:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C516D37B7B6; Sun, 11 Jun 2000 09:12:13 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA18559; Sun, 11 Jun 2000 09:12:13 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111612.JAA18559@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 09:12:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/txt2html/pkg MESSAGE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 09:12:13 PDT Added files: textproc/txt2html/pkg MESSAGE Log: Add note about required action by installer, in order to get this port work. Reviewed by: will To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 9:39:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7329337B67C; Sun, 11 Jun 2000 09:39:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA22796; Sun, 11 Jun 2000 09:39:25 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006111639.JAA22796@freefall.freebsd.org> From: Ade Lovett Date: Sun, 11 Jun 2000 09:39:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/gedit Makefile ports/editors/gedit/files md5 ports/editors/gedit/patches patch-an patch-ao patch-ac patch-ab patch-ad patch-ae patch-af patch-ag patch-ak patch-al patch-am ports/editors/gedit/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/11 09:39:25 PDT Modified files: editors/gedit Makefile editors/gedit/files md5 editors/gedit/patches patch-ac editors/gedit/pkg PLIST Added files: editors/gedit/patches patch-an patch-ao Removed files: editors/gedit/patches patch-ab patch-ad patch-ae patch-af patch-ag patch-ak patch-al patch-am Log: Update to 0.7.9 Revision Changes Path 1.20 +2 -2 ports/editors/gedit/Makefile 1.7 +1 -1 ports/editors/gedit/files/md5 1.2 +5 -5 ports/editors/gedit/patches/patch-ac 1.6 +23 -9 ports/editors/gedit/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 9:40:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A593437B67C; Sun, 11 Jun 2000 09:40:07 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Received: (from jlemon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA22956; Sun, 11 Jun 2000 09:40:07 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Message-Id: <200006111640.JAA22956@freefall.freebsd.org> From: Jonathan Lemon Date: Sun, 11 Jun 2000 09:40:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys mbuf.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jlemon 2000/06/11 09:40:07 PDT Modified files: (Branch: RELENG_4) sys/sys mbuf.h Log: MFC: r1.50, KASSERT() debugging support. Revision Changes Path 1.44.2.4 +3 -1 src/sys/sys/mbuf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 9:41:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD53237B845; Sun, 11 Jun 2000 09:41:52 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Received: (from jlemon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA23159; Sun, 11 Jun 2000 09:41:52 -0700 (PDT) (envelope-from jlemon@FreeBSD.org) Message-Id: <200006111641.JAA23159@freefall.freebsd.org> From: Jonathan Lemon Date: Sun, 11 Jun 2000 09:41:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys mbuf.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jlemon 2000/06/11 09:41:52 PDT Modified files: (Branch: RELENG_3) sys/sys mbuf.h Log: MFC: r1.50, r1.48, KASSERT() debugging and M_PREPEND null checking. Revision Changes Path 1.31.2.6 +3 -6 src/sys/sys/mbuf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 10: 2:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C89C037C7DD; Sun, 11 Jun 2000 10:02:46 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: (from sos@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA25445; Sun, 11 Jun 2000 10:02:47 -0700 (PDT) (envelope-from sos@FreeBSD.org) Message-Id: <200006111702.KAA25445@freefall.freebsd.org> From: Søren Schmidt Date: Sun, 11 Jun 2000 10:02:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c atapi-cd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sos 2000/06/11 10:02:46 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-dma.c atapi-cd.h Log: MFC: Update with latest fixes from -current, brings -stable functionality up to and including following -current revisions: ata-all.c $FreeBSD: src/sys/dev/ata/ata-all.c,v 1.57 2000/05/28 07:51:23 ata-all.h $FreeBSD: src/sys/dev/ata/ata-all.h,v 1.27 2000/04/09 15:08:26 ata-disk.c $FreeBSD: src/sys/dev/ata/ata-disk.c,v 1.69 2000/05/23 19:05:56 ata-dma.c $FreeBSD: src/sys/dev/ata/ata-dma.c,v 1.38 2000/05/23 19:05:56 atapi-cd.h $FreeBSD: src/sys/dev/ata/atapi-cd.h,v 1.18 2000/05/28 07:50:19 Revision Changes Path 1.50.2.4 +5 -5 src/sys/dev/ata/ata-all.c 1.26.2.1 +4 -1 src/sys/dev/ata/ata-all.h 1.60.2.3 +36 -24 src/sys/dev/ata/ata-disk.c 1.35.2.2 +9 -5 src/sys/dev/ata/ata-dma.c 1.15.2.2 +2 -2 src/sys/dev/ata/atapi-cd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 10: 7:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1237337BF6C; Sun, 11 Jun 2000 10:07:23 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA26840; Sun, 11 Jun 2000 10:07:23 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006111707.KAA26840@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 11 Jun 2000 10:07:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/skkfep Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/11 10:07:23 PDT Modified files: japanese/skkfep Makefile Log: Fix RUN_DEPENDS. PR: ports/19199 Submitted by: tomoShige Tashiro Revision Changes Path 1.4 +2 -2 ports/japanese/skkfep/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 10:20:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F4E537C90F; Sun, 11 Jun 2000 10:20:38 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA28141; Sun, 11 Jun 2000 10:20:38 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200006111720.KAA28141@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Sun, 11 Jun 2000 10:20:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/qix Makefile ports/sysutils/cd-write Makefile ports/audio/xcd Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/06/11 10:20:38 PDT Modified files: games/qix Makefile sysutils/cd-write Makefile audio/xcd Makefile Log: Move distfile to local-distfiles directory on ftp.FreeBSD.org Revision Changes Path 1.2 +2 -2 ports/games/qix/Makefile 1.22 +2 -2 ports/sysutils/cd-write/Makefile 1.27 +2 -2 ports/audio/xcd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 10:30:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB6FD37B7B2; Sun, 11 Jun 2000 10:30:28 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA28950; Sun, 11 Jun 2000 10:30:28 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200006111730.KAA28950@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Sun, 11 Jun 2000 10:30:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/mshell Makefile ports/emulators/hfs Makefile ports/emulators/tkhfs Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/06/11 10:30:28 PDT Modified files: misc/mshell Makefile emulators/hfs Makefile emulators/tkhfs Makefile Log: Move distfile to local-distfiles directory on ftp.FreeBSD.org Revision Changes Path 1.16 +2 -2 ports/misc/mshell/Makefile 1.12 +2 -2 ports/emulators/hfs/Makefile 1.21 +2 -2 ports/emulators/tkhfs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 11:19:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6874937B5DF; Sun, 11 Jun 2000 11:19:14 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA34327; Sun, 11 Jun 2000 11:19:14 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200006111819.LAA34327@freefall.freebsd.org> From: Nick Hibma Date: Sun, 11 Jun 2000 11:19:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc usb_hid_usages Makefile src/lib/libusb Makefile data.c descr.c libusb.h parse.c usage.c usb.3 usbvar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/06/11 11:19:14 PDT Modified files: share/misc Makefile Added files: share/misc usb_hid_usages lib/libusb Makefile data.c descr.c libusb.h parse.c usage.c usb.3 usbvar.h Log: The USB library from NetBSD by Lennart Augustsson . Revision Changes Path 1.18 +3 -2 src/share/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 11:39:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1374C37B9A0; Sun, 11 Jun 2000 11:39:45 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: (from luigi@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36559; Sun, 11 Jun 2000 11:39:45 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Message-Id: <200006111839.LAA36559@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 11 Jun 2000 11:39:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw.c src/sys/netinet ip_dummynet.c ip_dummynet.h ip_fw.c ip_fw.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG luigi 2000/06/11 11:39:45 PDT Modified files: (Branch: RELENG_4) sbin/ipfw ipfw.8 ipfw.c sys/netinet ip_dummynet.c ip_dummynet.h ip_fw.c ip_fw.h Log: MFC: Bring WF2Q+ support in dummynet. Read the ipfw(8) manpage for documentation. Except for recompiling ipfw, old ipfw configurations involving dummynet pipes work unmodified. Revision Changes Path 1.63.2.1 +114 -15 src/sbin/ipfw/ipfw.8 1.80.2.1 +328 -115 src/sbin/ipfw/ipfw.c 1.24.2.2 +1137 -318 src/sys/netinet/ip_dummynet.c 1.10.2.1 +150 -27 src/sys/netinet/ip_dummynet.h 1.131.2.4 +20 -3 src/sys/netinet/ip_fw.c 1.47.2.1 +3 -2 src/sys/netinet/ip_fw.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 11:51: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E33537CA7F; Sun, 11 Jun 2000 11:50:57 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA38025; Sun, 11 Jun 2000 11:50:57 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111850.LAA38025@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 11:50:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO_8859-1/books/handbook chapters.ent mailing-lists.ent Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 11:50:57 PDT Added files: de_DE.ISO_8859-1/books/handbook chapters.ent mailing-lists.ent Log: Add basic framework for the German translation of the handwork. Reviewed by: asmodai To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 11:51: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DC6637B9A0; Sun, 11 Jun 2000 11:50:51 -0700 (PDT) (envelope-from mph@FreeBSD.org) Received: (from mph@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA37993; Sun, 11 Jun 2000 11:50:51 -0700 (PDT) (envelope-from mph@FreeBSD.org) Message-Id: <200006111850.LAA37993@freefall.freebsd.org> From: Matthew Hunt Date: Sun, 11 Jun 2000 11:50:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/bidwatcher Makefile ports/misc/bidwatcher/files md5 ports/misc/bidwatcher/pkg DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mph 2000/06/11 11:50:51 PDT Modified files: misc/bidwatcher Makefile misc/bidwatcher/files md5 misc/bidwatcher/pkg DESCR PLIST Log: Change MAINTAINER to myself (approved by: will). Upgrade to 1.1.6. Install documentation to ${PREFIX}/share/doc/bidwatcher. Update pkg/DESCR with relevant URL. Revision Changes Path 1.12 +9 -7 ports/misc/bidwatcher/Makefile 1.9 +1 -1 ports/misc/bidwatcher/files/md5 1.3 +1 -1 ports/misc/bidwatcher/pkg/DESCR 1.4 +20 -4 ports/misc/bidwatcher/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 12: 7: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F45937B7A5; Sun, 11 Jun 2000 12:06:59 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA40888; Sun, 11 Jun 2000 12:06:59 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200006111906.MAA40888@freefall.freebsd.org> From: Chris Piazza Date: Sun, 11 Jun 2000 12:06:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/xsidplay Makefile ports/audio/xsidplay/files md5 ports/audio/xsidplay/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/06/11 12:06:59 PDT Modified files: audio Makefile Added files: audio/xsidplay Makefile audio/xsidplay/files md5 audio/xsidplay/pkg COMMENT DESCR PLIST Log: Add xsidplay. A graphical frontend to libsidplay. This port doesn't currently build with gcc >= 2.8.1 PR: 15147 Submitted by: Anders Nordby Revision Changes Path 1.142 +2 -1 ports/audio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 12: 7:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2293837BBA6; Sun, 11 Jun 2000 12:07:49 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA41079; Sun, 11 Jun 2000 12:07:48 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200006111907.MAA41079@freefall.freebsd.org> From: Chris Piazza Date: Sun, 11 Jun 2000 12:07:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/06/11 12:07:48 PDT Modified files: . modules Log: Add xsidplay Revision Changes Path 1.1252 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 12: 9:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 479C237B7A5; Sun, 11 Jun 2000 12:09:48 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA41375; Sun, 11 Jun 2000 12:09:48 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200006111909.MAA41375@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 11 Jun 2000 12:09:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/musycc musycc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/06/11 12:09:48 PDT Added files: sys/dev/musycc musycc.c Log: The very feeble beginnings of a driver for the LanMedia LMC1504 card. New-Bus wizards are encouraged to look at this, I think it poses a challenge for the current newbus design. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 12:26: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B30337B7F8; Sun, 11 Jun 2000 12:26:02 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA43427; Sun, 11 Jun 2000 12:26:01 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111926.MAA43427@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 12:26:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xtide Makefile ports/astro/xtide/patches patch-makefile ports/astro/xtide/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 12:26:01 PDT Modified files: astro/xtide Makefile astro/xtide/pkg PLIST Added files: astro/xtide/patches patch-makefile Log: Don't install xttpd any more, which cleans up the port. PR: 18362 Submitted by: maintainer Reported by: steve Don't use -O2. PR: 18910 Submitted by: me Reviewed by: cpiazza Revision Changes Path 1.13 +2 -5 ports/astro/xtide/Makefile 1.4 +0 -1 ports/astro/xtide/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 12:52: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D28B537B77B; Sun, 11 Jun 2000 12:51:59 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA45940; Sun, 11 Jun 2000 12:51:59 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006111951.MAA45940@freefall.freebsd.org> From: Alexander Langer Date: Sun, 11 Jun 2000 12:51:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/mopac Makefile ports/biology/deft Makefile ports/biology/deft/files Makefile.deft Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/11 12:51:59 PDT Modified files: biology/mopac Makefile biology/deft Makefile biology/deft/files Makefile.deft Log: fc is ftn77 now, adjust accordingly. PR: 19160, 19161 Submitted by: Glenn Johnson Reviewed by: will Revision Changes Path 1.9 +4 -3 ports/biology/mopac/Makefile 1.5 +2 -2 ports/biology/deft/Makefile 1.6 +2 -2 ports/biology/deft/files/Makefile.deft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 13:39:34 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.cdrom.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id CDB3637B7F8; Sun, 11 Jun 2000 13:39:27 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id NAA15090; Sun, 11 Jun 2000 13:43:28 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200006112043.NAA15090@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/musycc musycc.c In-reply-to: Your message of "Sun, 11 Jun 2000 12:09:48 PDT." <200006111909.MAA41375@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 11 Jun 2000 13:43:28 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > phk 2000/06/11 12:09:48 PDT > > Added files: > sys/dev/musycc musycc.c > Log: > The very feeble beginnings of a driver for the LanMedia LMC1504 card. > > New-Bus wizards are encouraged to look at this, I think it poses a > challenge for the current newbus design. Can you be a little more explicit about the nature of the problem? It looks pretty straightforward from here... Making some assumptions - function 0 and function 1 both describe resources that a single driver instance requires in order to operate correctly. The attach for function 0 should allocate and fill in the softc, and flag it as partially complete. The attach for function 1 should use devclass_get_softc to find the softc that was assigned for function 0, perform resource allocation etc. using it, and then return an error (so that no device instance is actually created for the second function). Alternatively, you could just fail the probe for function != 0 and dig out the PCI resources yourself, but that would be a lot harder. An alternate approach would be to create a parent instance and then one child instance for each of the functions; I haven't thought this entirely through though, it could get pretty messy. It's also possible I'm missing your point here. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 14:41:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0ED3C37B944; Sun, 11 Jun 2000 14:41:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA56549; Sun, 11 Jun 2000 14:41:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200006112141.OAA56549@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 11 Jun 2000 14:41:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh session.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/06/11 14:41:25 PDT Modified files: crypto/openssh session.c Log: Fix syntax error in previous commit. Submitted by: Udo Schweigert Revision Changes Path 1.6 +4 -3 src/crypto/openssh/session.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 14:42:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 324EF37B5EB; Sun, 11 Jun 2000 14:42:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: (from kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA56663; Sun, 11 Jun 2000 14:42:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Message-Id: <200006112142.OAA56663@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 11 Jun 2000 14:42:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh session.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/06/11 14:42:21 PDT Modified files: (Branch: RELENG_4) crypto/openssh session.c Log: MFC: Fix syntax error Revision Changes Path 1.4.2.3 +4 -3 src/crypto/openssh/session.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 14:45:21 2000 Delivered-To: cvs-all@freebsd.org Received: from internat.freebsd.org (internat.freebsd.org [146.64.8.4]) by hub.freebsd.org (Postfix) with ESMTP id 5A3C137B944; Sun, 11 Jun 2000 14:45:14 -0700 (PDT) (envelope-from kris@internat.freebsd.org) Received: (from kris@localhost) by internat.freebsd.org (8.9.3/8.9.3) id XAA22532; Sun, 11 Jun 2000 23:45:05 +0200 (SAST) (envelope-from kris) Message-Id: <200006112145.XAA22532@internat.freebsd.org> From: Kris Kennaway Date: Sun, 11 Jun 2000 23:45:03 +0200 (SAST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh session.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/06/11 23:45:03 SAST FreeBSD International Crypto Repository Modified files: crypto/openssh session.c Log: MFF: Fix syntax error in previous commit Submitted by: Udo Schweigert Revision Changes Path 1.6 +4 -3 src/crypto/openssh/session.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 14:46:25 2000 Delivered-To: cvs-all@freebsd.org Received: from internat.freebsd.org (internat.freebsd.org [146.64.8.4]) by hub.freebsd.org (Postfix) with ESMTP id 2100737B944; Sun, 11 Jun 2000 14:46:16 -0700 (PDT) (envelope-from kris@internat.freebsd.org) Received: (from kris@localhost) by internat.freebsd.org (8.9.3/8.9.3) id XAA22595; Sun, 11 Jun 2000 23:46:12 +0200 (SAST) (envelope-from kris) Message-Id: <200006112146.XAA22595@internat.freebsd.org> From: Kris Kennaway Date: Sun, 11 Jun 2000 23:46:08 +0200 (SAST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh session.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kris 2000/06/11 23:46:08 SAST FreeBSD International Crypto Repository Modified files: (Branch: RELENG_4) crypto/openssh session.c Log: MFF: Syntax error Revision Changes Path 1.4.2.3 +4 -3 src/crypto/openssh/session.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 14:54:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E790B37CA31; Sun, 11 Jun 2000 14:53:38 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA57548; Sun, 11 Jun 2000 14:53:39 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006112153.OAA57548@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 11 Jun 2000 14:53:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts HARDWARE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/11 14:53:39 PDT Modified files: release/texts HARDWARE.TXT Log: Reformat and update sound section a bit. Still need to add more soundcards. Revision Changes Path 1.47 +21 -16 src/release/texts/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 15: 2: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 9A55F37B5ED; Sun, 11 Jun 2000 15:01:21 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id AAA02479; Mon, 12 Jun 2000 00:01:19 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Mike Smith Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/musycc musycc.c In-reply-to: Your message of "Sun, 11 Jun 2000 13:43:28 PDT." <200006112043.NAA15090@mass.cdrom.com> Date: Mon, 12 Jun 2000 00:01:19 +0200 Message-ID: <2477.960760879@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200006112043.NAA15090@mass.cdrom.com>, Mike Smith writes: >> phk 2000/06/11 12:09:48 PDT >> >> Added files: >> sys/dev/musycc musycc.c >> Log: >> The very feeble beginnings of a driver for the LanMedia LMC1504 card. >> >> New-Bus wizards are encouraged to look at this, I think it poses a >> challenge for the current newbus design. > >Can you be a little more explicit about the nature of the problem? It >looks pretty straightforward from here... > >Making some assumptions - function 0 and function 1 both describe >resources that a single driver instance requires in order to operate >correctly. Right with the added twist that identification doesn't complete until I have had a chance to poke at function 1. In other words, I can't really claim function 0 when I see it, because I don't know if it is part of the card I'm looking for or another card and I will not know until I get to probe function 1. The card looks like this: ############### func0 # / \ # / \ # | \ PCI ==# | | # Framer0 Framer1 [...] # | | # | | ### func1 ======= "ebus"=======-- ID-prom Your suggestions all sound like equally hackish ways to do it as what I have done in my code, and maybe we don't want to support this kind of hardware in any more respectable way than with some kind of hack ? For another problem of this class, look at the Znyx314 detection in if_de -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 21: 3:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66BE537B95D; Sun, 11 Jun 2000 21:03:40 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA07412; Sun, 11 Jun 2000 21:03:40 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200006120403.VAA07412@freefall.freebsd.org> From: Kevin Lo Date: Sun, 11 Jun 2000 21:03:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/dialup-firewall article.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/06/11 21:03:40 PDT Modified files: en_US.ISO_8859-1/articles/dialup-firewall article.sgml Log: committed, thanks. PR:19131 Approved by:kevlo Revision Changes Path 1.2 +2 -2 doc/en_US.ISO_8859-1/articles/dialup-firewall/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 21:12:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AFEA37B995; Sun, 11 Jun 2000 21:12:07 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA13953; Sun, 11 Jun 2000 21:12:07 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006120412.VAA13953@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 11 Jun 2000 21:12:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc LITERATURE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/11 21:12:07 PDT Removed files: contrib/gcc LITERATURE Log: The GCC developers obsoleted this file -- moving its contents to readings.html on their website (http://gcc.gnu.org). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 22:11: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A68B37B93F; Sun, 11 Jun 2000 22:10:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA43908; Sun, 11 Jun 2000 22:10:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006120510.WAA43908@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 11 Jun 2000 22:10:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc PROJECTS README.g77 cccp.1 cccp.c cexp.y config.sub cpp.in cppalloc.c fixcpp fixinc-nt.sed fixinc.dgux fixinc.irix fixinc.ptx fixinc.sco fixinc.svr4 fixinc.winnt fixinc.wrap fixincludes just-fixinc pcp.h sched.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/11 22:10:53 PDT Removed files: contrib/gcc PROJECTS README.g77 cccp.1 cccp.c cexp.y config.sub cpp.in cppalloc.c fixcpp fixinc-nt.sed fixinc.dgux fixinc.irix fixinc.ptx fixinc.sco fixinc.svr4 fixinc.winnt fixinc.wrap fixincludes just-fixinc pcp.h sched.c Log: Remove files no longer part of GCC starting with 2.96. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 22:32:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A87EC37B995; Sun, 11 Jun 2000 22:32:07 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA54943; Sun, 11 Jun 2000 22:32:07 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006120532.WAA54943@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 11 Jun 2000 22:32:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/11 22:32:06 PDT src/contrib/gcc - Imported sources Update of /home/ncvs/src/contrib/gcc In directory freefall.freebsd.org:/c/tmp/cvs-serv53467 Log Message: As in GCC 2.95 these files from libiberty are absolutely required and are imported directly into src/contrib/gcc due to their starting life there, and to try to prevent needing to import all of libiberty (in yet *another* place): ansidecl.h choose-temp.c cplus-dem.c demangle.h getopt.c getopt.h getopt1.c getpwd.c libiberty.h obstack.c obstack.h partition.h pexecute.c splay-tree.h splay-tree.c Status: Vendor Tag: FSF Release Tags: gcc_cvs_20000603 C src/contrib/gcc/choose-temp.c U src/contrib/gcc/cplus-dem.c U src/contrib/gcc/demangle.h U src/contrib/gcc/getopt.c U src/contrib/gcc/getopt.h U src/contrib/gcc/getopt1.c U src/contrib/gcc/getpwd.c U src/contrib/gcc/obstack.c U src/contrib/gcc/obstack.h C src/contrib/gcc/pexecute.c 2 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/contrib/gcc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 23:18:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E346F37B524; Sun, 11 Jun 2000 23:18:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA69304; Sun, 11 Jun 2000 23:18:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006120618.XAA69304@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 11 Jun 2000 23:18:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc pexecute.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/11 23:18:20 PDT Modified files: contrib/gcc pexecute.c Log: Merge rev 1.2 [_exit() over exit()] into gcc_cvs_20000603. Revision Changes Path 1.4 +51 -4 src/contrib/gcc/pexecute.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Jun 11 23:24:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DBD537BAF8; Sun, 11 Jun 2000 23:24:55 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA70858; Sun, 11 Jun 2000 23:24:55 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006120624.XAA70858@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 11 Jun 2000 23:24:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc choose-temp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/11 23:24:55 PDT Modified files: contrib/gcc choose-temp.c Log: Merge rev 1.2 (use /tmp 1st, and then /var/tmp) into gcc_cvs_20000603. Revision Changes Path 1.4 +8 -8 src/contrib/gcc/choose-temp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 0:43:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F07E37B524; Mon, 12 Jun 2000 00:43:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA88547; Mon, 12 Jun 2000 00:43:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006120743.AAA88547@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 00:43:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/macutils Makefile ports/archivers/macutils/files md5 ports/archivers/macutils/patches patch-aa ports/archivers/macutils/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 00:43:07 PDT Modified files: archivers/macutils Makefile archivers/macutils/files md5 archivers/macutils/patches patch-aa archivers/macutils/pkg PLIST Log: Several cleanups: - Use MASTER_SITE_SUNSITE to MASTER_SITES; - Support CFLAGS/MAKE properly; - Sort pkg/PLIST; - Use archivers as a primary category (forgotten by will after repo-copy). PR: 19164 Submitted by: KATO Tsuguru Revision Changes Path 1.9 +11 -13 ports/archivers/macutils/Makefile 1.3 +1 -1 ports/archivers/macutils/files/md5 1.3 +72 -7 ports/archivers/macutils/patches/patch-aa 1.3 +3 -3 ports/archivers/macutils/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 0:54:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0170E37C14B; Mon, 12 Jun 2000 00:54:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA90088; Mon, 12 Jun 2000 00:54:07 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006120754.AAA90088@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 00:54:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/linux-gtk Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 00:54:07 PDT Modified files: x11-toolkits/linux-gtk Makefile Log: Update MASTER_SITES to make distfile fetchable. PR: 19202 Submitted by: Daniel Harris Revision Changes Path 1.2 +3 -2 ports/x11-toolkits/linux-gtk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 1:42:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CF39D37C017; Mon, 12 Jun 2000 01:42:18 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA97818; Mon, 12 Jun 2000 01:42:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006120842.BAA97818@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 12 Jun 2000 01:42:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/afterstep-i18n Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/12 01:42:18 PDT Modified files: x11-wm/afterstep-i18n Makefile Log: Change MASTER_SITES to point local-distfiles/kuriyama on ftp.FreeBSD.org. Revision Changes Path 1.13 +2 -2 ports/x11-wm/afterstep-i18n/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2: 6:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B41937B6FC; Mon, 12 Jun 2000 02:06:41 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01438; Mon, 12 Jun 2000 02:06:41 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006120906.CAA01438@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 02:06:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/nurbs++/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 02:06:40 PDT Modified files: graphics/nurbs++/pkg DESCR Log: Add WWW to DESCR. PR: 19201 Submitted by: Mario Sergio Fujikawa Ferreira Revision Changes Path 1.2 +2 -0 ports/graphics/nurbs++/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2: 7: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 33D9337CBCF; Mon, 12 Jun 2000 02:07:05 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01538; Mon, 12 Jun 2000 02:07:05 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006120907.CAA01538@freefall.freebsd.org> From: Brian Somers Date: Mon, 12 Jun 2000 02:07:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/12 02:07:04 PDT Modified files: (Branch: RELENG_4) usr.sbin/ppp ppp.8 Log: MFC: Hard sentence breaks and trailing space tidy-ups Revision Changes Path 1.209.2.5 +855 -528 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2: 7:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B88D37B7F1; Mon, 12 Jun 2000 02:07:42 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01649; Mon, 12 Jun 2000 02:07:42 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006120907.CAA01649@freefall.freebsd.org> From: Brian Somers Date: Mon, 12 Jun 2000 02:07:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/12 02:07:42 PDT Modified files: (Branch: RELENG_3) usr.sbin/ppp ppp.8 Log: MF4: Hard sentence breaks and trailing space tidy-ups Revision Changes Path 1.142.2.21 +855 -528 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2: 8:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 82F4537B663; Mon, 12 Jun 2000 02:08:41 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01720; Mon, 12 Jun 2000 02:08:41 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006120908.CAA01720@freefall.freebsd.org> From: Brian Somers Date: Mon, 12 Jun 2000 02:08:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/i386/fdisk fdisk.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/12 02:08:41 PDT Modified files: sbin/i386/fdisk fdisk.c Log: 0x39 == plan9 Obtained from: OpenBSD Revision Changes Path 1.39 +2 -1 src/sbin/i386/fdisk/fdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2: 9:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A81337B88F; Mon, 12 Jun 2000 02:09:38 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01797; Mon, 12 Jun 2000 02:09:38 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006120909.CAA01797@freefall.freebsd.org> From: Brian Somers Date: Mon, 12 Jun 2000 02:09:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa sbc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/12 02:09:38 PDT Modified files: sys/dev/sound/isa sbc.c Log: Add (another) PnP entry for the ESS ES1869 (Compaq OEM) Submitted by: mdharnois@home.com PR: 19206 Revision Changes Path 1.23 +2 -1 src/sys/dev/sound/isa/sbc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2:41:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B4ADB37BF5E; Mon, 12 Jun 2000 02:41:15 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA04327; Mon, 12 Jun 2000 02:41:15 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006120941.CAA04327@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 02:41:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 02:41:15 PDT Modified files: . modules Log: javavmwrapper --> ports/java/javavmwrapper Revision Changes Path 1.1253 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2:43: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BDB5A37C2A2; Mon, 12 Jun 2000 02:42:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA04524; Mon, 12 Jun 2000 02:42:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006120942.CAA04524@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 02:42:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/javavmwrapper - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 02:42:51 PDT ports/java/javavmwrapper - Imported sources Update of /home/ncvs/ports/java/javavmwrapper In directory freefall.freebsd.org:/d/home/sobomax/MyPorts/javavmwrapper Log Message: Initial import of javavmwrapper - a simple shell script which would allow Java-based ports to use any of the Java Virtual Machines installed on the system. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/java/javavmwrapper/Makefile N ports/java/javavmwrapper/pkg/COMMENT N ports/java/javavmwrapper/pkg/DESCR N ports/java/javavmwrapper/pkg/PLIST N ports/java/javavmwrapper/src/javavmwrapper.sh No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2:43: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 672EB37C9C7; Mon, 12 Jun 2000 02:43:01 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA04553; Mon, 12 Jun 2000 02:43:01 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006120943.CAA04553@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Jun 2000 02:43:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/12 02:43:01 PDT Modified files: sbin/ipfw ipfw.8 Log: Fixed style bugs of rev 1.66. Revision Changes Path 1.68 +82 -36 src/sbin/ipfw/ipfw.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2:47:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E6B337C2A2; Mon, 12 Jun 2000 02:47:21 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA04953; Mon, 12 Jun 2000 02:47:21 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006120947.CAA04953@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Jun 2000 02:47:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/12 02:47:20 PDT Modified files: (Branch: RELENG_4) sbin/ipfw ipfw.8 Log: MFC: (rev 1.68) -mdoc fixes. Revision Changes Path 1.63.2.2 +82 -36 src/sbin/ipfw/ipfw.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 2:49:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A95937C2A2; Mon, 12 Jun 2000 02:49:34 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA05213; Mon, 12 Jun 2000 02:49:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006120949.CAA05213@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 02:49:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 02:49:33 PDT Modified files: java Makefile Log: Activate javavmwrapper. Revision Changes Path 1.13 +2 -1 ports/java/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 3: 0:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D75A37BF91; Mon, 12 Jun 2000 03:00:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA06483; Mon, 12 Jun 2000 03:00:36 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121000.DAA06483@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 03:00:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bison Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 03:00:36 PDT Modified files: devel/bison Makefile Log: Use installed libintl instead of the port's own version. Revision Changes Path 1.12 +6 -1 ports/devel/bison/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 3:12:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7D4637B735; Mon, 12 Jun 2000 03:12:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA08533; Mon, 12 Jun 2000 03:12:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121012.DAA08533@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 03:12:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bison Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 03:12:45 PDT Modified files: devel/bison Makefile Log: Explicitly add -lintl into LDFLAGS, because stupid configure script doesn't bother to do it. Revision Changes Path 1.13 +2 -2 ports/devel/bison/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 3:20:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EF7537B7A7; Mon, 12 Jun 2000 03:20:19 -0700 (PDT) (envelope-from jmb@FreeBSD.org) Received: (from jmb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA10259; Mon, 12 Jun 2000 03:20:19 -0700 (PDT) (envelope-from jmb@FreeBSD.org) Message-Id: <200006121020.DAA10259@freefall.freebsd.org> From: "Jonathan M. Bresler" Date: Mon, 12 Jun 2000 03:20:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/specfs spec_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmb 2000/06/12 03:20:19 PDT Modified files: sys/miscfs/specfs spec_vnops.c Log: before this commit, specfs reported disk partitions using decimal major and minor numbers. "ls -l" reports disk partitions using decimal major numbers and hex minor numbers. make specfs use decimal major numbers and hex minor numbers, just like "ls -l" Revision Changes Path 1.138 +2 -2 src/sys/miscfs/specfs/spec_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 3:28:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E09937B8B5; Mon, 12 Jun 2000 03:28:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA10905; Mon, 12 Jun 2000 03:28:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121028.DAA10905@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 03:28:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/sidplay/patches patch-aa patch-ab patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 03:28:27 PDT Removed files: audio/sidplay/patches patch-aa patch-ab patch-ac Log: Remove stale patches. Forgotten by: will To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 3:36:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F41C437B881; Mon, 12 Jun 2000 03:36:53 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA12839; Mon, 12 Jun 2000 03:36:53 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006121036.DAA12839@freefall.freebsd.org> From: Ollivier Robert Date: Mon, 12 Jun 2000 03:36:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find find.1 find.h function.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/12 03:36:53 PDT Modified files: usr.bin/find find.1 find.h function.c Log: The find -perm option currently supports an exact match, or if the mode is preceded by a '-', it checks for a match in at least the bits specified on the command line. It is often desirable to find things with any execute or setuid or setgid bits set. PR: bin/10169 Submitted by: Monte Mitzelfelt Revision Changes Path 1.24 +4 -2 src/usr.bin/find/find.1 1.7 +2 -1 src/usr.bin/find/find.h 1.23 +6 -1 src/usr.bin/find/function.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 3:41:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 58F3537BC7E; Mon, 12 Jun 2000 03:41:04 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA14179; Mon, 12 Jun 2000 03:41:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121041.DAA14179@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 03:41:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xlhtml Makefile ports/textproc/xlhtml/files md5 ports/textproc/xlhtml/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 03:41:03 PDT Modified files: textproc/xlhtml Makefile textproc/xlhtml/files md5 textproc/xlhtml/pkg DESCR Log: Update to 0.2.7.1. New MASTER_SITE and WWW. Revision Changes Path 1.4 +3 -3 ports/textproc/xlhtml/Makefile 1.2 +1 -1 ports/textproc/xlhtml/files/md5 1.2 +1 -1 ports/textproc/xlhtml/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4: 4:26 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 899C237BC7E; Mon, 12 Jun 2000 04:04:15 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id OAA12933; Mon, 12 Jun 2000 14:02:54 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id OAA18372; Mon, 12 Jun 2000 14:03:44 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3944C38C.5E3AEE7D@FreeBSD.org> Date: Mon, 12 Jun 2000 14:03:40 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/sidplay Makefile ports/audio/sidplay/filesmd5 ports/audio/sidplay/pkg PLIST References: <200006021456.HAA59536@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Will Andrews wrote: > will 2000/06/02 07:56:51 PDT > > Modified files: > audio/sidplay Makefile > audio/sidplay/files md5 > audio/sidplay/pkg PLIST > Log: > Update to 1.36.38. We can now have sidplay shared libs! In fact we need to do repo-copy of sidplay into libsidplay, because actual programs to play sid files has been separated from the libraries and now distributed as different distfile ( http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/sidplay-base-1_0_4.tgz ). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:12:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 82AA637BA91; Mon, 12 Jun 2000 04:12:20 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA27201; Mon, 12 Jun 2000 04:12:20 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121112.EAA27201@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 04:12:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/brandelf brandelf.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 04:12:20 PDT Modified files: usr.bin/brandelf brandelf.1 Log: Document SVR4 branding is supported. PR: 19131 Submitted by: Mike Barcroft Revision Changes Path 1.12 +4 -3 src/usr.bin/brandelf/brandelf.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:12:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C645637CA7D; Mon, 12 Jun 2000 04:12:41 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA27374; Mon, 12 Jun 2000 04:12:41 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006121112.EAA27374@freefall.freebsd.org> From: Ollivier Robert Date: Mon, 12 Jun 2000 04:12:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find Makefile extern.h find.1 find.c find.h function.c ls.c main.c misc.c operator.c option.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/12 04:12:41 PDT Modified files: usr.bin/find Makefile extern.h find.1 find.c find.h function.c ls.c main.c misc.c operator.c option.c Log: This patch adds the -mindepth and -maxdepth options to find(1), which behave as in GNU find (and of course as described in the manual page diff included). I think these options would be useful for some people. Some missing $FreeBSD$ tags are also added. The patch was slightly modified (send-pr mangling of TABS). PR: bin/18941 Submitted by: Ben Smithurst Revision Changes Path 1.9 +2 -1 src/usr.bin/find/Makefile 1.10 +4 -1 src/usr.bin/find/extern.h 1.25 +7 -1 src/usr.bin/find/find.1 1.8 +14 -0 src/usr.bin/find/find.c 1.8 +2 -2 src/usr.bin/find/find.h 1.24 +67 -5 src/usr.bin/find/function.c 1.6 +5 -0 src/usr.bin/find/ls.c 1.10 +6 -0 src/usr.bin/find/main.c 1.3 +5 -0 src/usr.bin/find/misc.c 1.6 +5 -0 src/usr.bin/find/operator.c 1.10 +3 -1 src/usr.bin/find/option.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:18:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C7BB37BBD5; Mon, 12 Jun 2000 04:18:14 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA29104; Mon, 12 Jun 2000 04:18:14 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121118.EAA29104@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 04:18:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en support.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 04:18:13 PDT Modified files: en support.sgml Log: Add anchor for IRC. PR: 19207 Submitted by: Daniel Harris Revision Changes Path 1.197 +5 -2 www/en/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:37: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 81A7337B541; Mon, 12 Jun 2000 04:37:05 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA34717; Mon, 12 Jun 2000 04:37:06 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121137.EAA34717@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 04:37:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 04:37:05 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: Update the NT loader directions. PR: 19174 Submitted by: Mark Ovens Revision Changes Path 1.59 +24 -5 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:41:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 421EC37B90F; Mon, 12 Jun 2000 04:41:08 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA36022; Mon, 12 Jun 2000 04:41:08 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121141.EAA36022@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 04:41:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/search site.map Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 04:41:07 PDT Modified files: en/search site.map Log: Correct URL in site map for supported hardware. PR: 19182 Submitted by: Daniel Harris Revision Changes Path 1.11 +2 -2 www/en/search/site.map To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:54:34 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id B6D8037B75D; Mon, 12 Jun 2000 04:54:22 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id OAA14925; Mon, 12 Jun 2000 14:53:03 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id OAA18658; Mon, 12 Jun 2000 14:54:24 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3944CF6C.E6907855@FreeBSD.org> Date: Mon, 12 Jun 2000 14:54:20 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: daeron@wit401305.student.utwente.nl Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/libPropList Makefile ports/devel/libPropList/patches patch-ab patch-ac References: <200006070839.BAA53753@freefall.freebsd.org> <20000611115037.A10414@shadowmere.student.utwente.nl> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Pascal Hofstee wrote: > On Wed, Jun 07, 2000 at 01:39:53AM -0700, Maxim Sobolev wrote: > > sobomax 2000/06/07 01:39:53 PDT > > > > Modified files: > > devel/libPropList Makefile > > Added files: > > devel/libPropList/patches patch-ab patch-ac > > Log: > > Use mkstemp() instean of insecure tmpname(). > > > > Revision Changes Path > > 1.13 +2 -1 ports/devel/libPropList/Makefile > > Hi, > > I just figured out that with this patch applied I e.g. can't change themes > any longer on WindowMaker ... after i reverted back to the unpatched > libPropList ... it worked again. Huh, strange. Are your /tmp is writeable? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 4:56:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 014A437B634; Mon, 12 Jun 2000 04:56:36 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA40806; Mon, 12 Jun 2000 04:56:35 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121156.EAA40806@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 04:56:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/commercial includes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 04:56:31 PDT Modified files: en/commercial includes.sgml Log: Fix missing apostrophe. PR: 19075 Submitted by: Daniel Harris Revision Changes Path 1.5 +2 -2 www/en/commercial/includes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5: 1:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C2B4C37BA21; Mon, 12 Jun 2000 05:01:11 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA42540; Mon, 12 Jun 2000 05:01:11 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121201.FAA42540@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 05:01:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/alpha alpha.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 05:01:11 PDT Modified files: en/alpha alpha.sgml Log: Remove link to ~jb's page. Change DIGITAL to Compaq. Fix name of AlphaLinux. PR: 19072 Submitted by: Daniel Harris Revision Changes Path 1.7 +4 -6 www/en/alpha/alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:13:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E86337BA21; Mon, 12 Jun 2000 05:13:21 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA46862; Mon, 12 Jun 2000 05:13:21 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121213.FAA46862@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:13:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp edsel.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:13:21 PDT Removed files: contrib/gcc/cp edsel.c Log: Remove this gcc 2.7.2 file. We haven't used it for a very long time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:18:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D56C937BACB; Mon, 12 Jun 2000 05:18:07 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48193; Mon, 12 Jun 2000 05:18:07 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121218.FAA48193@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:18:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp g++FAQ.texi Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:18:07 PDT Removed files: contrib/gcc/cp g++FAQ.texi Log: Delete this EGCS 1.1.2 file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:22:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 941DB37BB32; Mon, 12 Jun 2000 05:22:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA49437; Mon, 12 Jun 2000 05:22:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121222.FAA49437@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:22:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp sig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:22:34 PDT Removed files: contrib/gcc/cp sig.c Log: This file is no longer used starting with GCC 2.96. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:23: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EE7237CC28; Mon, 12 Jun 2000 05:22:56 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA49581; Mon, 12 Jun 2000 05:22:56 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121222.FAA49581@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:22:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp g++.c gc.c gpcompare.texi reno.texi templates.texi tree.def Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:22:56 PDT Removed files: contrib/gcc/cp g++.c gc.c gpcompare.texi reno.texi templates.texi tree.def Log: Remove these gcc 2.7.2 files. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:27: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AD79B37BACB; Mon, 12 Jun 2000 05:26:57 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA50868; Mon, 12 Jun 2000 05:26:57 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121226.FAA50868@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:26:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/ginclude va-alpha.h va-arc.h va-c4x.h va-clipper.h va-h8300.h va-i860.h va-i960.h va-m32r.h va-m88k.h va-mips.h va-mn10200.h va-mn10300.h va-pa.h va-ppc.h va-pyr.h va-sh.h va-sparc.h va-spur.h va-v850.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:26:57 PDT Removed files: contrib/gcc/ginclude va-alpha.h va-arc.h va-c4x.h va-clipper.h va-h8300.h va-i860.h va-i960.h va-m32r.h va-m88k.h va-mips.h va-mn10200.h va-mn10300.h va-pa.h va-ppc.h va-pyr.h va-sh.h va-sparc.h va-spur.h va-v850.h Log: These files are no longer used starting with GCC 2.96. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:33:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F0F6937BBEF; Mon, 12 Jun 2000 05:33:45 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA52845; Mon, 12 Jun 2000 05:33:45 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121233.FAA52845@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:33:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/objc NXConstStr.h NXConstStr.m Object.h Object.m Protocol.h Protocol.m README.threads THREADS THREADS.MACH archive.c class.c encoding.c encoding.h hash.c hash.h init.c libobjc.def libobjc_entry.c linking.m makefile.dos misc.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:33:45 PDT Removed files: contrib/gcc/objc NXConstStr.h NXConstStr.m Object.h Object.m Protocol.h Protocol.m README.threads THREADS THREADS.MACH archive.c class.c encoding.c encoding.h hash.c hash.h init.c libobjc.def libobjc_entry.c linking.m makefile.dos misc.c nil_method.c objc-api.h objc-list.h objc.h objects.c runtime.h sarray.c sarray.h selector.c sendmsg.c thr-dce.c thr-decosf1.c thr-irix.c thr-mach.c thr-os2.c thr-posix.c thr-pthreads.c thr-single.c thr-solaris.c thr-vxworks.c thr-win32.c thr.c thr.h typedstream.h Log: Remove these files. They are no longer used starting with GCC 2.95. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:35:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D5C4337BBEF; Mon, 12 Jun 2000 05:35:55 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53555; Mon, 12 Jun 2000 05:35:55 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121235.FAA53555@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:35:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config x-netbsd Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:35:55 PDT Removed files: contrib/gcc/config x-netbsd Log: Remove this file. It is no longer used starting with EGCS 1.1.2. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:36:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D533037BBEF; Mon, 12 Jun 2000 05:36:28 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53714; Mon, 12 Jun 2000 05:36:28 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121236.FAA53714@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:36:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config xm-netbsd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:36:28 PDT Removed files: contrib/gcc/config xm-netbsd.h Log: Remove this file. It is no longer used as of GCC 2.95. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:37:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F39E37BFCF; Mon, 12 Jun 2000 05:37:04 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA53881; Mon, 12 Jun 2000 05:37:04 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121237.FAA53881@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:37:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config xm-siglist.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:37:04 PDT Removed files: contrib/gcc/config xm-siglist.h Log: Remove this file. It is no longer used starging with GCC 2.96. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:38:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0988F37BAB0; Mon, 12 Jun 2000 05:38:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA54356; Mon, 12 Jun 2000 05:38:47 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121238.FAA54356@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:38:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/alpha gdb-osf12.h gdb-osf2.h gdb.h osf2.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:38:47 PDT Removed files: contrib/gcc/config/alpha gdb-osf12.h gdb-osf2.h gdb.h osf2.h Log: Remove these gcc 2.7.2 files. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:39:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 72F3437B773; Mon, 12 Jun 2000 05:39:47 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA54616; Mon, 12 Jun 2000 05:39:47 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121239.FAA54616@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:39:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/sparc xm-netbsd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:39:47 PDT Removed files: contrib/gcc/config/sparc xm-netbsd.h Log: Remove this EGCS 1.1.2 file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:40:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8397437C94E; Mon, 12 Jun 2000 05:40:51 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA54904; Mon, 12 Jun 2000 05:40:51 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121240.FAA54904@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:40:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/mips xm-netbsd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:40:51 PDT Removed files: contrib/gcc/config/mips xm-netbsd.h Log: Remove this EGCS 1.1.2 file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:41:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 43C9637C2D7; Mon, 12 Jun 2000 05:41:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA55197; Mon, 12 Jun 2000 05:41:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121241.FAA55197@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 05:41:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/mips xm-news.h xm-sysv4.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 05:41:44 PDT Removed files: contrib/gcc/config/mips xm-news.h xm-sysv4.h Log: Remove these files. They are no longer used starting with GCC 2.96. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:43:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4788A37C1CC; Mon, 12 Jun 2000 05:43:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA55741; Mon, 12 Jun 2000 05:43:44 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121243.FAA55741@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 05:43:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/javavmwrapper/src javavmwrapper.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 05:43:43 PDT Modified files: java/javavmwrapper/src javavmwrapper.sh Log: Handle comments in all places. Revision Changes Path 1.2 +5 -4 ports/java/javavmwrapper/src/javavmwrapper.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:48:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8099537CB77; Mon, 12 Jun 2000 05:48:31 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA56895; Mon, 12 Jun 2000 05:48:31 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121248.FAA56895@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 05:48:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 05:48:31 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add some people who've contributed to the project. Change David Filo's address to unknown, the address listed was routed to /dev/null anyways according to Paul Saab. Revision Changes Path 1.224 +24 -2 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 5:55:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 99C5537BDC8; Mon, 12 Jun 2000 05:55:46 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA59044; Mon, 12 Jun 2000 05:55:46 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121255.FAA59044@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 05:55:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk Makefile ports/java/jdk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 05:55:46 PDT Modified files: java/jdk Makefile java/jdk/pkg PLIST Log: Add support for javavmwrapper. Revision Changes Path 1.32 +6 -1 ports/java/jdk/Makefile 1.10 +2 -0 ports/java/jdk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6: 5:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FF8837BA98; Mon, 12 Jun 2000 06:05:27 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA62613; Mon, 12 Jun 2000 06:05:27 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121305.GAA62613@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 06:05:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc locale.alias Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 06:05:27 PDT Modified files: (Branch: RELENG_3) etc locale.alias Log: MFC: Fix RU/SU. Fix ASCII bug. Revision Changes Path 1.5.2.1 +3 -2 src/etc/locale.alias To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:12:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B123337B657; Mon, 12 Jun 2000 06:12:19 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA64812; Mon, 12 Jun 2000 06:12:19 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121312.GAA64812@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 06:12:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc fbtab master.passwd termcap.small src/etc/namedb named.root Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 06:12:19 PDT Modified files: (Branch: RELENG_3) etc fbtab master.passwd termcap.small etc/namedb named.root Log: MFC: Add $FreeBSD$ Revision Changes Path 1.2.10.1 +2 -0 src/etc/fbtab 1.24.2.1 +2 -0 src/etc/master.passwd 1.15.4.1 +1 -0 src/etc/termcap.small 1.8.2.1 +1 -0 src/etc/namedb/named.root To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:13:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA07C37C189; Mon, 12 Jun 2000 06:13:41 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA65141; Mon, 12 Jun 2000 06:13:41 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121313.GAA65141@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 06:13:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/alpha alpha.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 06:13:41 PDT Modified files: en/alpha alpha.sgml Log: Of course, change the URL to point to Compaq as well. Submitted by: Daniel Harris Revision Changes Path 1.8 +3 -3 www/en/alpha/alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:19: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 771E037B75D; Mon, 12 Jun 2000 06:19:02 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA66609; Mon, 12 Jun 2000 06:19:02 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121319.GAA66609@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 06:19:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/adventure done.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 06:19:02 PDT Modified files: (Branch: RELENG_3) games/adventure done.c Log: MFC: Various fixes from Bill Fumerola to clean the source up. Revision Changes Path 1.2.4.1 +10 -4 src/games/adventure/done.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:24:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F311437BCA3; Mon, 12 Jun 2000 06:24:02 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA68182; Mon, 12 Jun 2000 06:24:02 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006121324.GAA68182@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 12 Jun 2000 06:24:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/adventure adventure.6 crc.c hdr.h init.c io.c main.c save.c setup.c subr.c vocab.c wizard.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/12 06:24:02 PDT Modified files: (Branch: RELENG_3) games/adventure adventure.6 crc.c hdr.h init.c io.c main.c save.c setup.c subr.c vocab.c wizard.c Log: MFC: Various fixes from Bill Fumerola to clean the source up. Revision Changes Path 1.1.1.1.10.1 +1 -0 src/games/adventure/adventure.6 1.1.1.1.10.1 +12 -6 src/games/adventure/crc.c 1.3.2.1 +60 -6 src/games/adventure/hdr.h 1.4.2.1 +72 -62 src/games/adventure/init.c 1.3.2.1 +93 -50 src/games/adventure/io.c 1.4.2.1 +44 -42 src/games/adventure/main.c 1.5.2.1 +70 -63 src/games/adventure/save.c 1.4.2.1 +10 -14 src/games/adventure/setup.c 1.2.4.1 +69 -28 src/games/adventure/subr.c 1.4.2.1 +25 -66 src/games/adventure/vocab.c 1.5.2.1 +35 -14 src/games/adventure/wizard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:26:28 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9708937B9A0; Mon, 12 Jun 2000 06:26:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id QAA18713; Mon, 12 Jun 2000 16:24:48 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id QAA22649; Mon, 12 Jun 2000 16:26:10 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3944E4ED.5C0BD09A@FreeBSD.org> Date: Mon, 12 Jun 2000 16:26:05 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: daeron@wit401305.student.utwente.nl, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/libPropList Makefile ports/devel/libPropList/patches patch-ab patch-ac References: <200006070839.BAA53753@freefall.freebsd.org> <20000611115037.A10414@shadowmere.student.utwente.nl> <3944CF6C.E6907855@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Maxim Sobolev wrote: > Pascal Hofstee wrote: > > > On Wed, Jun 07, 2000 at 01:39:53AM -0700, Maxim Sobolev wrote: > > > sobomax 2000/06/07 01:39:53 PDT > > > > > > Modified files: > > > devel/libPropList Makefile > > > Added files: > > > devel/libPropList/patches patch-ab patch-ac > > > Log: > > > Use mkstemp() instean of insecure tmpname(). > > > > > > Revision Changes Path > > > 1.13 +2 -1 ports/devel/libPropList/Makefile > > > > Hi, > > > > I just figured out that with this patch applied I e.g. can't change themes > > any longer on WindowMaker ... after i reverted back to the unpatched > > libPropList ... it worked again. Just verified - it works fine here. Try to look what could be wrong on your side. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:27: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8534D37B9A0; Mon, 12 Jun 2000 06:27:07 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA68979; Mon, 12 Jun 2000 06:27:07 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121327.GAA68979@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 06:27:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 06:27:07 PDT Modified files: . modules Log: jre --> ports/java/jre Revision Changes Path 1.1254 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:28:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71BE737C249; Mon, 12 Jun 2000 06:28:15 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69259; Mon, 12 Jun 2000 06:28:15 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121328.GAA69259@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 06:28:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jre - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 06:28:15 PDT ports/java/jre - Imported sources Update of /home/ncvs/ports/java/jre In directory freefall.freebsd.org:/d/home/sobomax/MyPorts/jre Log Message: Initial import of JRE - Sun's Java Run Time Enviponment. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/java/jre/Makefile N ports/java/jre/files/md5 N ports/java/jre/pkg/COMMENT N ports/java/jre/pkg/DESCR N ports/java/jre/pkg/MESSAGE N ports/java/jre/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:29:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C8D8B37BCA3; Mon, 12 Jun 2000 06:29:47 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA69711; Mon, 12 Jun 2000 06:29:47 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121329.GAA69711@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 06:29:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 06:29:47 PDT Modified files: java Makefile Log: Activate jre. Revision Changes Path 1.14 +2 -1 ports/java/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:32:47 2000 Delivered-To: cvs-all@freebsd.org Received: from shadowmere.student.utwente.nl (wit401305.student.utwente.nl [130.89.236.145]) by hub.freebsd.org (Postfix) with ESMTP id B1D8037CBC2; Mon, 12 Jun 2000 06:31:03 -0700 (PDT) (envelope-from daeron@wit401305.student.utwente.nl) Received: by shadowmere.student.utwente.nl (Postfix, from userid 1000) id BCA2F1FB6; Mon, 12 Jun 2000 15:31:01 +0200 (CEST) Date: Mon, 12 Jun 2000 15:31:01 +0200 From: Pascal Hofstee To: Maxim Sobolev Cc: daeron@wit401305.student.utwente.nl, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/libPropList Makefile ports/devel/libPropList/patches patch-ab patch-ac Message-ID: <20000612153101.A37033@shadowmere.student.utwente.nl> Reply-To: daeron@shadowmere.student.utwente.nl References: <200006070839.BAA53753@freefall.freebsd.org> <20000611115037.A10414@shadowmere.student.utwente.nl> <3944CF6C.E6907855@FreeBSD.org> <3944E4ED.5C0BD09A@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3944E4ED.5C0BD09A@FreeBSD.org>; from sobomax@FreeBSD.org on Mon, Jun 12, 2000 at 04:26:05PM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 12, 2000 at 04:26:05PM +0300, Maxim Sobolev wrote: > Maxim Sobolev wrote: > > Just verified - it works fine here. Try to look what could be wrong on your > side. [ls output]-------- drwxrwxrwt 4 root wheel 2048 Jun 12 15:29 tmp [df output]-------- mfs:261 7719 165 6937 2% /tmp -- Pascal Hofstee < daeron @ shadowmere . student . utwente . nl > Managers know it must be good because the programmers hate it so much. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:37:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A054A37B69E; Mon, 12 Jun 2000 06:37:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA82010; Mon, 12 Jun 2000 06:37:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121337.GAA82010@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 06:37:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/javavmwrapper/src javavmwrapper.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 06:37:28 PDT Modified files: java/javavmwrapper/src javavmwrapper.sh Log: Fix typo. Revision Changes Path 1.3 +2 -2 ports/java/javavmwrapper/src/javavmwrapper.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:41:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32BC737C217; Mon, 12 Jun 2000 06:41:22 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA97313; Mon, 12 Jun 2000 06:41:21 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121341.GAA97313@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 06:41:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/jext Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 06:41:18 PDT Modified files: editors/jext Makefile Log: Use JRE/javavmwrapper instead of JDK. Revision Changes Path 1.7 +4 -3 ports/editors/jext/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:53:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F407D37C196; Mon, 12 Jun 2000 06:53:04 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA39687; Mon, 12 Jun 2000 06:53:04 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121353.GAA39687@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 06:53:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VFS_SYNC.9 VOP_FSYNC.9 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 06:53:04 PDT Modified files: share/man/man9 VFS_SYNC.9 VOP_FSYNC.9 Log: Document possible values for the waitfor arg. PR: 18627, 18628 Reviewed by: asmodai Revision Changes Path 1.7 +10 -1 src/share/man/man9/VFS_SYNC.9 1.7 +11 -2 src/share/man/man9/VOP_FSYNC.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 6:54:53 2000 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-30.mail.demon.net (anchor-post-30.mail.demon.net [194.217.242.88]) by hub.freebsd.org (Postfix) with ESMTP id CC2CD37CBCD; Mon, 12 Jun 2000 06:54:32 -0700 (PDT) (envelope-from n_hibma@qubesoft.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by anchor-post-30.mail.demon.net with esmtp (Exim 2.12 #1) id 131UfM-000HXT-0U; Mon, 12 Jun 2000 14:54:17 +0100 Received: from henny.webweaving.org (henny.qubesoft.com [192.168.1.5]) by bluebottle.qubesoft.com (8.9.3/8.9.1) with ESMTP id OAA47569; Mon, 12 Jun 2000 14:53:40 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id OAA45208; Mon, 12 Jun 2000 14:49:48 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Mon, 12 Jun 2000 14:49:48 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Jeroen Ruigrok van der Werven Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/texts HARDWARE.TXT In-Reply-To: <200006111351.GAA99916@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG /me cheers! 'Ga doooooooooor! Ga doooooooor!' 'La la la-la-la la-la-la ...' and more Dutch culture. Nick > asmodai 2000/06/11 06:51:30 PDT > > Modified files: > release/texts HARDWARE.TXT > Log: > Try and get this list a bit more consistent in style. > Also, clarify a comment with proper comma placement. > > Also tried to get the supported soundcard section more fleshed out. This > needs more work. > > Revision Changes Path > 1.46 +161 -169 src/release/texts/HARDWARE.TXT > > > -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 7: 5:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DAEB137B95B; Mon, 12 Jun 2000 07:05:11 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA43086; Mon, 12 Jun 2000 07:05:11 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121405.HAA43086@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 07:05:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 bus_alloc_resource.9 bus_release_resource.9 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 07:05:11 PDT Modified files: (Branch: RELENG_4) share/man/man9 Makefile Added files: (Branch: RELENG_4) share/man/man9 bus_alloc_resource.9 bus_release_resource.9 Log: MFC: Add bus_alloc_resource.9 and bus_release_resource.9 Approved by: asmodai Revision Changes Path 1.60.2.4 +2 -1 src/share/man/man9/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 7:23:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 945A637B540; Mon, 12 Jun 2000 07:23:40 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA50371; Mon, 12 Jun 2000 07:23:40 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121423.HAA50371@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 07:23:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/install chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 07:23:40 PDT Modified files: en_US.ISO_8859-1/books/handbook/install chapter.sgml Log: Mark four ISDN cards to be only supported in FreeBSD 3.x. PR: 18385 Submitted by: hm Reviewed by: asmodai Revision Changes Path 1.43 +5 -5 doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 7:38:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D810237B5CE; Mon, 12 Jun 2000 07:38:16 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA55919; Mon, 12 Jun 2000 07:38:16 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121438.HAA55919@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 07:38:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 07:38:16 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: Fix minor errors and omissions in FAQ's Windows(tm) keys section. PR: 17364 Submitted by: Mark Ovens Reviewed by: asmodai Revision Changes Path 1.60 +9 -4 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 7:51:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DF7137B586; Mon, 12 Jun 2000 07:51:16 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA58634; Mon, 12 Jun 2000 07:51:15 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121451.HAA58634@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 07:51:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 07:51:15 PDT Modified files: en/news newsflash.sgml Log: Don't list 08-June-2000 twice. Revision Changes Path 1.178 +6 -7 www/en/news/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 8:22: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 242EC37B527; Mon, 12 Jun 2000 08:22:00 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Received: (from tanimura@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA63905; Mon, 12 Jun 2000 08:22:00 -0700 (PDT) (envelope-from tanimura@FreeBSD.org) Message-Id: <200006121522.IAA63905@freefall.freebsd.org> From: Seigo Tanimura Date: Mon, 12 Jun 2000 08:22:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/rp rp.c rpvar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tanimura 2000/06/12 08:22:00 PDT Modified files: sys/dev/rp rp.c rpvar.h Log: - Eliminate rpread(). Call generic ttyread(). (cf rev 1.33) - Comment out deftermios. Termioschars() will give the default value. Pointed out by: bde Revision Changes Path 1.36 +5 -27 src/sys/dev/rp/rp.c 1.4 +4 -1 src/sys/dev/rp/rpvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 8:28:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FA5A37B527; Mon, 12 Jun 2000 08:28:08 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA64923; Mon, 12 Jun 2000 08:28:08 -0700 (PDT) (envelope-from jake@FreeBSD.org) Message-Id: <200006121528.IAA64923@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 12 Jun 2000 08:28:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man3 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jake 2000/06/12 08:28:08 PDT Modified files: share/man/man3 Makefile Log: Add MLINKS for queue(3) FOREACH_REVERSE and HEAD_INITIALIZER macros. Forgotten by: jake, archie Revision Changes Path 1.17 +9 -2 src/share/man/man3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 8:42: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 407E937B683; Mon, 12 Jun 2000 08:41:58 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id JAA25888; Mon, 12 Jun 2000 09:41:57 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id JAA08953; Mon, 12 Jun 2000 09:41:56 -0600 (MDT) (envelope-from nate) Date: Mon, 12 Jun 2000 09:41:56 -0600 (MDT) Message-Id: <200006121541.JAA08953@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/java/javavmwrapper - Imported sources In-Reply-To: <200006120942.CAA04524@freefall.freebsd.org> References: <200006120942.CAA04524@freefall.freebsd.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > sobomax 2000/06/12 02:42:51 PDT > > ports/java/javavmwrapper - Imported sources > Update of /home/ncvs/ports/java/javavmwrapper > In directory freefall.freebsd.org:/d/home/sobomax/MyPorts/javavmwrapper > > Log Message: > Initial import of javavmwrapper - a simple shell script which would allow > Java-based ports to use any of the Java Virtual Machines installed on the > system. Cool.... Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 8:47: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 508D737B7DF; Mon, 12 Jun 2000 08:46:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id SAA25618; Mon, 12 Jun 2000 18:45:29 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id SAA23091; Mon, 12 Jun 2000 18:46:51 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <394505E6.6B1CE126@FreeBSD.org> Date: Mon, 12 Jun 2000 18:46:46 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Nate Williams Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/java/javavmwrapper - Imported sources References: <200006120942.CAA04524@freefall.freebsd.org> <200006121541.JAA08953@nomad.yogotech.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nate Williams wrote: > > sobomax 2000/06/12 02:42:51 PDT > > > > ports/java/javavmwrapper - Imported sources > > Update of /home/ncvs/ports/java/javavmwrapper > > In directory freefall.freebsd.org:/d/home/sobomax/MyPorts/javavmwrapper > > > > Log Message: > > Initial import of javavmwrapper - a simple shell script which would allow > > Java-based ports to use any of the Java Virtual Machines installed on the > > system. > > Cool.... Thanks! -Maxim P.S. Any grounded criticism/comments are welcome. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 8:47:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 464AC37BBE2; Mon, 12 Jun 2000 08:47:09 -0700 (PDT) (envelope-from gioria@FreeBSD.org) Received: (from gioria@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA68359; Mon, 12 Jun 2000 08:47:09 -0700 (PDT) (envelope-from gioria@FreeBSD.org) Message-Id: <200006121547.IAA68359@freefall.freebsd.org> From: Sebastien Gioria Date: Mon, 12 Jun 2000 08:47:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/fr_FR.ISO_8859-1/books/fdp-primer Makefile book.sgml chapters.ent doc/fr_FR.ISO_8859-1/books/fdp-primer/overview chapter.sgml doc/fr_FR.ISO_8859-1/books/fdp-primer/psgml-mode chapter.sgml doc/fr_FR.ISO_8859-1/books/fdp-primer/see-also chapter.sgml doc/fr_FR.ISO_8859-1/books/fdp-primer/sgml-markup chapter.sgml ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gioria 2000/06/12 08:47:09 PDT Added files: fr_FR.ISO_8859-1/books/fdp-primer Makefile book.sgml chapters.ent fr_FR.ISO_8859-1/books/fdp-primer/overview chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/psgml-mode chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/see-also chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/sgml-markup chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/sgml-primer chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/stylesheets chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/the-faq chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/the-handbook chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/the-website chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/tools chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/translations chapter.sgml fr_FR.ISO_8859-1/books/fdp-primer/writing-style chapter.sgml Log: Adding the FDP-primer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 8:56:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 87DB137B802; Mon, 12 Jun 2000 08:56:35 -0700 (PDT) (envelope-from gioria@FreeBSD.org) Received: (from gioria@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA69804; Mon, 12 Jun 2000 08:56:35 -0700 (PDT) (envelope-from gioria@FreeBSD.org) Message-Id: <200006121556.IAA69804@freefall.freebsd.org> From: Sebastien Gioria Date: Mon, 12 Jun 2000 08:56:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/fr_FR.ISO_8859-1/books Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gioria 2000/06/12 08:56:35 PDT Modified files: fr_FR.ISO_8859-1/books Makefile Log: Turn on FDP-Primer Revision Changes Path 1.2 +2 -1 doc/fr_FR.ISO_8859-1/books/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9: 2:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 24C2437B644; Mon, 12 Jun 2000 09:02:21 -0700 (PDT) (envelope-from gioria@FreeBSD.org) Received: (from gioria@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA70767; Mon, 12 Jun 2000 09:02:21 -0700 (PDT) (envelope-from gioria@FreeBSD.org) Message-Id: <200006121602.JAA70767@freefall.freebsd.org> From: Sebastien Gioria Date: Mon, 12 Jun 2000 09:02:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/fr_FR.ISO_8859-1/books/faq book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG gioria 2000/06/12 09:02:21 PDT Modified files: fr_FR.ISO_8859-1/books/faq book.sgml Log: Synchronize with french CVS tree Revision Changes Path 1.3 +2 -2 doc/fr_FR.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9:10:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B8D437B586; Mon, 12 Jun 2000 09:10:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA73124; Mon, 12 Jun 2000 09:10:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006121610.JAA73124@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 12 Jun 2000 09:10:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libPropList/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/12 09:10:52 PDT Modified files: devel/libPropList/patches patch-ab Log: Fix a bug in my own tmpnam() --> mkstemp() patch. Reported by: Pascal Hofstee Revision Changes Path 1.4 +16 -7 ports/devel/libPropList/patches/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9:40: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB91F37B76E; Mon, 12 Jun 2000 09:40:00 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76610; Mon, 12 Jun 2000 09:40:00 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006121640.JAA76610@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Mon, 12 Jun 2000 09:40:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/ficl ficl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/12 09:40:00 PDT Modified files: sys/boot/ficl ficl.c Log: Make comment reflect reality. Revision Changes Path 1.16 +2 -2 src/sys/boot/ficl/ficl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9:42: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 235D837B567; Mon, 12 Jun 2000 09:42:03 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA76894; Mon, 12 Jun 2000 09:42:03 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006121642.JAA76894@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Mon, 12 Jun 2000 09:42:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/ficl/softwords softcore.fr Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/12 09:42:02 PDT Modified files: sys/boot/ficl/softwords softcore.fr Log: Make abort" functional in interpret mode. This behavior is undefined by ANS Forth standard, but it's useful. Also, define the constant true in a more strict way. C might garantee 2-complement math, but Forth doesn't. Revision Changes Path 1.10 +25 -12 src/sys/boot/ficl/softwords/softcore.fr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9:45: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8726D37B567; Mon, 12 Jun 2000 09:45:01 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA77231; Mon, 12 Jun 2000 09:45:01 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006121645.JAA77231@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Mon, 12 Jun 2000 09:45:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/forth loader.4th Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/12 09:45:01 PDT Modified files: sys/boot/forth loader.4th Log: The word environment? returns a flag indicating whether the variable was found or not. Fix it's usage. Alas, it caused no problem before, besides leaving garbage in the stack, because refill, used by [if] [else] [then], was broken. Revision Changes Path 1.8 +23 -7 src/sys/boot/forth/loader.4th To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9:46:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B87C737B7E6; Mon, 12 Jun 2000 09:46:28 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA77470; Mon, 12 Jun 2000 09:46:28 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006121646.JAA77470@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Mon, 12 Jun 2000 09:46:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/ficl words.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/12 09:46:28 PDT Modified files: sys/boot/ficl words.c Log: Fix REFILL. It must throw RESTART instead of OUTOFTEXT so that execution can take place at the point where it stopped after the input buffer has been refilled. Add ANS Forth CORE EXT and FILE word SOURCE-ID. Revision Changes Path 1.30 +28 -3 src/sys/boot/ficl/words.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 9:56:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C5EB37B507; Mon, 12 Jun 2000 09:56:50 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA78953; Mon, 12 Jun 2000 09:56:50 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121656.JAA78953@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 09:56:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/cvsup stable-supfile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 09:56:50 PDT Modified files: (Branch: RELENG_4) share/examples/cvsup stable-supfile Log: RELENG_4 is FreeBSD-STABLE now, not RELENG_3. PR: 17677 Submitted by: Nathan Reviewed by: asmodai Revision Changes Path 1.19.2.1 +4 -4 src/share/examples/cvsup/stable-supfile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10: 5:45 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id F2A6837B5B3; Mon, 12 Jun 2000 10:05:37 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id A3F7C1C4D; Mon, 12 Jun 2000 13:05:36 -0400 (EDT) Date: Mon, 12 Jun 2000 13:05:36 -0400 From: Bill Fumerola To: Alexander Langer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/cvsup stable-supfile Message-ID: <20000612130536.I8523@jade.chc-chimes.com> References: <200006121656.JAA78953@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200006121656.JAA78953@freefall.freebsd.org>; from alex@FreeBSD.org on Mon, Jun 12, 2000 at 09:56:50AM -0700 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 12, 2000 at 09:56:50AM -0700, Alexander Langer wrote: > Modified files: (Branch: RELENG_4) > share/examples/cvsup stable-supfile > Log: > RELENG_4 is FreeBSD-STABLE now, not RELENG_3. then the 4.x-stable-supfiles need to go away. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10: 8:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71D2037B63F; Mon, 12 Jun 2000 10:07:58 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA81130; Mon, 12 Jun 2000 10:07:58 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006121707.KAA81130@freefall.freebsd.org> From: Matt Jacob Date: Mon, 12 Jun 2000 10:07:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/pci pcibus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/12 10:07:58 PDT Modified files: sys/alpha/pci pcibus.c Log: Sometimes there isn't an ISA bus configured. Revision Changes Path 1.23 +5 -1 src/sys/alpha/pci/pcibus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:10:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB62A37B5D4; Mon, 12 Jun 2000 10:10:36 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA81395; Mon, 12 Jun 2000 10:10:36 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121710.KAA81395@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 10:10:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/users chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 10:10:36 PDT Modified files: en_US.ISO_8859-1/books/handbook/users chapter.sgml Log: Fix typo: yppasswd --> passwd Submitted by: Ed Ryan Reviewed by: asmodai Revision Changes Path 1.3 +2 -2 doc/en_US.ISO_8859-1/books/handbook/users/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:12:12 2000 Delivered-To: cvs-all@freebsd.org Received: from server1.mich.com (server1.mich.com [198.108.16.2]) by hub.freebsd.org (Postfix) with ESMTP id E9C8C37B5D4; Mon, 12 Jun 2000 10:11:59 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm006-021.dialup.bignet.net [64.79.81.5]) by server1.mich.com (8.9.3/8.9.3) with ESMTP id NAA18191; Mon, 12 Jun 2000 13:11:47 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 1CFCF1951; Mon, 12 Jun 2000 13:10:40 -0400 (EDT) Date: Mon, 12 Jun 2000 13:10:40 -0400 From: Will Andrews To: Bill Fumerola Cc: Alexander Langer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/cvsup stable-supfile Message-ID: <20000612131040.C28506@argon.gryphonsoft.com> References: <200006121656.JAA78953@freefall.freebsd.org> <20000612130536.I8523@jade.chc-chimes.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000612130536.I8523@jade.chc-chimes.com>; from billf@chc-chimes.com on Mon, Jun 12, 2000 at 01:05:36PM -0400 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 12, 2000 at 01:05:36PM -0400, Bill Fumerola wrote: > then the 4.x-stable-supfiles need to go away. How about we get rid of it after 3.5-RELEASE is out the door? -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:16: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDC1337B5D4; Mon, 12 Jun 2000 10:15:55 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA81968; Mon, 12 Jun 2000 10:15:55 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121715.KAA81968@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 10:15:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/cvsup secure-stable-supfile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 10:15:55 PDT Modified files: (Branch: RELENG_4) share/examples/cvsup secure-stable-supfile Log: RELENG_4 is FreeBSD-STABLE now. Revision Changes Path 1.13.2.1 +4 -4 src/share/examples/cvsup/secure-stable-supfile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:17:39 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.surf1.de (mail.surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 0598137B63F; Mon, 12 Jun 2000 10:17:30 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from neutron.cichlids.com (p3E9D38C6.dip0.t-ipconnect.de [62.157.56.198]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id TAA29489; Mon, 12 Jun 2000 19:16:58 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 8BB04AC30; Mon, 12 Jun 2000 19:17:06 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 39C0914AAB; Mon, 12 Jun 2000 19:17:05 +0200 (CEST) Date: Mon, 12 Jun 2000 19:17:05 +0200 From: Alexander Langer To: Will Andrews Cc: Bill Fumerola , Alexander Langer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/cvsup stable-supfile Message-ID: <20000612191705.A9756@cichlids.cichlids.com> References: <200006121656.JAA78953@freefall.freebsd.org> <20000612130536.I8523@jade.chc-chimes.com> <20000612131040.C28506@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000612131040.C28506@argon.gryphonsoft.com>; from andrews@technologist.com on Mon, Jun 12, 2000 at 01:10:40PM -0400 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Will Andrews (andrews@technologist.com): > > then the 4.x-stable-supfiles need to go away. > How about we get rid of it after 3.5-RELEASE is out the door? I only touched RELENG_4, they are still in RELENG_3. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:18:49 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 47D2937B95B; Mon, 12 Jun 2000 10:18:41 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id CB8131C4D; Mon, 12 Jun 2000 13:18:40 -0400 (EDT) Date: Mon, 12 Jun 2000 13:18:40 -0400 From: Bill Fumerola To: Will Andrews Cc: Alexander Langer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/cvsup stable-supfile Message-ID: <20000612131840.J8523@jade.chc-chimes.com> References: <200006121656.JAA78953@freefall.freebsd.org> <20000612130536.I8523@jade.chc-chimes.com> <20000612131040.C28506@argon.gryphonsoft.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000612131040.C28506@argon.gryphonsoft.com>; from andrews@technologist.com on Mon, Jun 12, 2000 at 01:10:40PM -0400 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 12, 2000 at 01:10:40PM -0400, Will Andrews wrote: > > then the 4.x-stable-supfiles need to go away. > > How about we get rid of it after 3.5-RELEASE is out the door? This is in RELENG_4. They should have never even been in RELENG_4, stable-supfile should have been RELENG_4 from the moment of the branch. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:22:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C082737B8E0; Mon, 12 Jun 2000 10:22:44 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA82948; Mon, 12 Jun 2000 10:22:44 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006121722.KAA82948@freefall.freebsd.org> From: Alexander Langer Date: Mon, 12 Jun 2000 10:22:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/cvsup 4.x-secure-stable-supfile 4.x-stable-supfile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/12 10:22:44 PDT Removed files: (Branch: RELENG_4) share/examples/cvsup 4.x-secure-stable-supfile 4.x-stable-supfile Log: Remove the 4.x-cvsup from RELENG_4. They should have never been in this branch. Pointed out by: billf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:31:37 2000 Delivered-To: cvs-all@freebsd.org Received: from server1.mich.com (server1.mich.com [198.108.16.2]) by hub.freebsd.org (Postfix) with ESMTP id 79B1237B621; Mon, 12 Jun 2000 10:31:19 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm006-021.dialup.bignet.net [64.79.81.5]) by server1.mich.com (8.9.3/8.9.3) with ESMTP id NAA23742; Mon, 12 Jun 2000 13:31:06 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 895F01951; Mon, 12 Jun 2000 13:29:58 -0400 (EDT) Date: Mon, 12 Jun 2000 13:29:58 -0400 From: Will Andrews To: Alexander Langer Cc: Will Andrews , Bill Fumerola , Alexander Langer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/examples/cvsup stable-supfile Message-ID: <20000612132958.D28506@argon.gryphonsoft.com> References: <200006121656.JAA78953@freefall.freebsd.org> <20000612130536.I8523@jade.chc-chimes.com> <20000612131040.C28506@argon.gryphonsoft.com> <20000612191705.A9756@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000612191705.A9756@cichlids.cichlids.com>; from alex@big.endian.de on Mon, Jun 12, 2000 at 07:17:05PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 12, 2000 at 07:17:05PM +0200, Alexander Langer wrote: > I only touched RELENG_4, they are still in RELENG_3. Yes, you did TRT. I presume 4.x-stable-supfile is not in HEAD. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:34:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F48837BA89; Mon, 12 Jun 2000 10:34:03 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA84362; Mon, 12 Jun 2000 10:34:02 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Message-Id: <200006121734.KAA84362@freefall.freebsd.org> From: Bill Fenner Date: Mon, 12 Jun 2000 10:34:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/skkfep Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG fenner 2000/06/12 10:34:02 PDT Modified files: japanese/skkfep Makefile Log: Remove azuki@azkey.org as MAINTAINER; email has been bouncing for over 2 months. Revision Changes Path 1.5 +1 -3 ports/japanese/skkfep/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 10:35:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3636B37BA34; Mon, 12 Jun 2000 10:35:32 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA84534; Mon, 12 Jun 2000 10:35:31 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Message-Id: <200006121735.KAA84534@freefall.freebsd.org> From: Bill Fenner Date: Mon, 12 Jun 2000 10:35:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/dc20ctrl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG fenner 2000/06/12 10:35:31 PDT Modified files: graphics/dc20ctrl Makefile Log: Remove paterno@dsi.unifi.it as MAINTAINER; email has been bouncing for about 2 months. Revision Changes Path 1.6 +1 -3 ports/graphics/dc20ctrl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 11: 6:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 216E837BD4C; Mon, 12 Jun 2000 11:06:13 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Received: (from alfred@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA89213; Mon, 12 Jun 2000 11:06:12 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Message-Id: <200006121806.LAA89213@freefall.freebsd.org> From: Alfred Perlstein Date: Mon, 12 Jun 2000 11:06:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys filedesc.h src/sys/kern uipc_syscalls.c sys_generic.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alfred 2000/06/12 11:06:12 PDT Modified files: sys/sys filedesc.h sys/kern uipc_syscalls.c sys_generic.c Log: unstatic getfp() so that other subsystems can use it. make sendfile() use it. Approved by: dg Revision Changes Path 1.24 +3 -1 src/sys/sys/filedesc.h 1.69 +3 -4 src/sys/kern/uipc_syscalls.c 1.57 +2 -3 src/sys/kern/sys_generic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 11:30:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E4DA737BB13; Mon, 12 Jun 2000 11:30:21 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA93633; Mon, 12 Jun 2000 11:30:16 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200006121830.LAA93633@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 12 Jun 2000 11:30:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp ftp.1 src/usr.bin/telnet telnet.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/06/12 11:30:16 PDT Modified files: usr.bin/ftp ftp.1 usr.bin/telnet telnet.1 Log: Mention about -4 and -6 options. Revision Changes Path 1.16 +10 -2 src/usr.bin/ftp/ftp.1 1.16 +10 -2 src/usr.bin/telnet/telnet.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 11:44:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6494837B529; Mon, 12 Jun 2000 11:44:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA95515; Mon, 12 Jun 2000 11:44:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006121844.LAA95515@freefall.freebsd.org> From: Jim Mock Date: Mon, 12 Jun 2000 11:44:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/commercial includes.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/12 11:44:39 PDT Modified files: en/commercial includes.sgml Log: Fix the web build. The last commit added an apostrophe, which was freaking out the build process, so I reworded the first sentence to not need it. Revision Changes Path 1.6 +2 -2 www/en/commercial/includes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 11:49:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F004F37B573; Mon, 12 Jun 2000 11:49:38 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA96256; Mon, 12 Jun 2000 11:49:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006121849.LAA96256@freefall.freebsd.org> From: Jim Mock Date: Mon, 12 Jun 2000 11:49:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en docs.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/12 11:49:39 PDT Modified files: en docs.sgml Log: From the PR: Various fixes, nits, etc. Standardize: Remove ``This is'' type verbiage. Tweak FAQ blurb. Fix run-on sentence under additional resources. Add trailing slash to link to Wolfram Schneider's page. Hinrich Eilts' man page view seems to have vanished, remove dead link. A couple of was/were fixes. PR: 19186 Submitted by: Daniel Harris Revision Changes Path 1.83 +23 -30 www/en/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 12:12:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5176337BA27; Mon, 12 Jun 2000 12:12:50 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA00754; Mon, 12 Jun 2000 12:12:49 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006121912.MAA00754@freefall.freebsd.org> From: Jim Mock Date: Mon, 12 Jun 2000 12:12:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/xchat Makefile ports/irc/xchat/patches patch-aa ports/irc/xchat/pkg PLIST.gnome Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/12 12:12:49 PDT Modified files: irc/xchat Makefile irc/xchat/pkg PLIST.gnome Added files: irc/xchat/patches patch-aa Log: Fix up the GNOME dependencies and use devel/gettext instead of xchat's own local libintl. Submitted by: ade Revision Changes Path 1.58 +11 -7 ports/irc/xchat/Makefile 1.4 +1 -0 ports/irc/xchat/pkg/PLIST.gnome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 12:16:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E13237B826; Mon, 12 Jun 2000 12:16:53 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA01346; Mon, 12 Jun 2000 12:16:52 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006121916.MAA01346@freefall.freebsd.org> From: Jim Mock Date: Mon, 12 Jun 2000 12:16:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi Makefile ports/irc/irssi/files md5 ports/irc/irssi/patches patch-ad patch-ae patch-af ports/irc/irssi/pkg COMMENT DESCR PLIST PLIST.gnome Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/12 12:16:52 PDT Modified files: irc/irssi Makefile irc/irssi/files md5 irc/irssi/patches patch-ad patch-ae patch-af irc/irssi/pkg COMMENT DESCR PLIST Removed files: irc/irssi/pkg PLIST.gnome Log: Update to version 0.7.90. The author has removed all GTK/GNOME bits for the time being, but says ``they might come back later'', but for now this is a text-only client. Submitted by: ade Revision Changes Path 1.31 +10 -33 ports/irc/irssi/Makefile 1.22 +1 -1 ports/irc/irssi/files/md5 1.2 +12 -3 ports/irc/irssi/patches/patch-ad 1.3 +3 -3 ports/irc/irssi/patches/patch-ae 1.2 +2 -2 ports/irc/irssi/patches/patch-af 1.4 +1 -1 ports/irc/irssi/pkg/COMMENT 1.5 +2 -4 ports/irc/irssi/pkg/DESCR 1.10 +29 -22 ports/irc/irssi/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 12:40:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7AD0537B7A3; Mon, 12 Jun 2000 12:40:39 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA03594; Mon, 12 Jun 2000 12:40:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006121940.MAA03594@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 12:40:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 cygwin32.asm cygwin32.h go32-rtems.h sol2dbg.h t-cygwin32 x-cygwin32 xm-cygwin32.h xm-go32.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 12:40:34 PDT Removed files: contrib/gcc/config/i386 cygwin32.asm cygwin32.h go32-rtems.h sol2dbg.h t-cygwin32 x-cygwin32 xm-cygwin32.h xm-go32.h Log: Remove these EGCS 1.1.2 files. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 13:22:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B66DD37B765; Mon, 12 Jun 2000 13:22:08 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA08934; Mon, 12 Jun 2000 13:22:08 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006122022.NAA08934@freefall.freebsd.org> From: Peter Wemm Date: Mon, 12 Jun 2000 13:22:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/12 13:22:08 PDT Modified files: sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Log: Use objcopy to strip the gcc2_compiled. symbol from kernels. ld(1) doesn't seem to have the ability to delete an arbitary symbol. Revision Changes Path 1.60 +6 -4 src/sys/conf/Makefile.alpha 1.190 +6 -4 src/sys/conf/Makefile.i386 1.91 +6 -4 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 13:37:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35A6037B650; Mon, 12 Jun 2000 13:37:43 -0700 (PDT) (envelope-from wosch@FreeBSD.org) Received: (from wosch@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA10777; Mon, 12 Jun 2000 13:37:43 -0700 (PDT) (envelope-from wosch@FreeBSD.org) Message-Id: <200006122037.NAA10777@freefall.freebsd.org> From: Wolfram Schneider Date: Mon, 12 Jun 2000 13:37:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en index.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wosch 2000/06/12 13:37:43 PDT Modified files: en index.sgml Log: remove link to out of date /news/webchanges.html page. Revision Changes Path 1.86 +2 -2 www/en/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 13:38:41 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id 66C4437B650; Mon, 12 Jun 2000 13:38:38 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id NAA84839; Mon, 12 Jun 2000 13:38:38 -0700 (PDT) Message-ID: <20000612133837.27727@hydrogen.funkthat.com> Date: Mon, 12 Jun 2000 13:38:37 -0700 From: John-Mark Gurney To: Mike Smith Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/amr amr.c References: <200006101922.MAA35635@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <200006101922.MAA35635@freefall.freebsd.org>; from Mike Smith on Sat, Jun 10, 2000 at 12:22:39PM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Mike Smith scribbled this message on Jun 10: > The AMI MegaRAID's internal memory map conflicts with scatter/gather > map physical addresses below 0x2000 (accoding to AMI). If we > allocate our s/g tables and get an address below this point, leak the > memory and try again. wouldn't it be better to fix the memory allocator to allow special considerations like these instead of leaking memory? -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "I say all sorts of useless things." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 13:47: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E44437BAE1; Mon, 12 Jun 2000 13:47:03 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA11773; Mon, 12 Jun 2000 13:47:02 -0700 (PDT) (envelope-from murray@FreeBSD.org) Message-Id: <200006122047.NAA11773@freefall.freebsd.org> From: Murray Stokely Date: Mon, 12 Jun 2000 13:46:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/security chapter.sgml doc/en_US.ISO_8859-1/books/handbook/printing chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG murray 2000/06/12 13:46:51 PDT Modified files: en_US.ISO_8859-1/books/handbook/security chapter.sgml Log: Approved by: jkh Lots of small typos Revision Changes Path 1.32 +27 -25 doc/en_US.ISO_8859-1/books/handbook/security/chapter.sgml Modified files: en_US.ISO_8859-1/books/handbook/printing chapter.sgml Log: Approved by: jkh typos, and an innaccuracy about bi-directional parallel communication under FreeBSD Revision Changes Path 1.28 +20 -23 doc/en_US.ISO_8859-1/books/handbook/printing/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 13:53:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BDB1937B650; Mon, 12 Jun 2000 13:53:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA12632; Mon, 12 Jun 2000 13:53:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006122053.NAA12632@freefall.freebsd.org> From: Peter Wemm Date: Mon, 12 Jun 2000 13:53:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/12 13:53:40 PDT Modified files: sys/conf files Log: The buslogic driver doesn't have static unit limits (ie: no bt.h or arbitary NBT limits) Revision Changes Path 1.376 +2 -2 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 14: 5:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F4BB37B672; Mon, 12 Jun 2000 14:05:47 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA14873; Mon, 12 Jun 2000 14:05:47 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006122105.OAA14873@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 14:05:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 t-go32 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 14:05:46 PDT Removed files: contrib/gcc/config/i386 t-go32 Log: Remove this EGCS 1.1.2 file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 14: 6:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20B4037B650; Mon, 12 Jun 2000 14:06:27 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA14948; Mon, 12 Jun 2000 14:06:26 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006122106.OAA14948@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 14:06:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 go32.h xm-netbsd.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 14:06:26 PDT Removed files: contrib/gcc/config/i386 go32.h xm-netbsd.h Log: These files are no longer used starting with GCC 2.95. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 14:16: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.cdrom.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id BD04437BA34; Mon, 12 Jun 2000 14:15:57 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id OAA19132; Mon, 12 Jun 2000 14:19:56 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200006122119.OAA19132@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: John-Mark Gurney Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/amr amr.c In-reply-to: Your message of "Mon, 12 Jun 2000 13:38:37 PDT." <20000612133837.27727@hydrogen.funkthat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Jun 2000 14:19:56 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Mike Smith scribbled this message on Jun 10: > > The AMI MegaRAID's internal memory map conflicts with scatter/gather > > map physical addresses below 0x2000 (accoding to AMI). If we > > allocate our s/g tables and get an address below this point, leak the > > memory and try again. > > wouldn't it be better to fix the memory allocator to allow special > considerations like these instead of leaking memory? Yes. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 14:19:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C38E37BA36; Mon, 12 Jun 2000 14:19:41 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA16555; Mon, 12 Jun 2000 14:19:41 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006122119.OAA16555@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 14:19:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 i386iscgas.h next.c sysv4gdb.h t-iscscodbx x-freebsd Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 14:19:41 PDT Removed files: contrib/gcc/config/i386 i386iscgas.h next.c sysv4gdb.h t-iscscodbx x-freebsd Log: Remove these gcc 2.7.2 files. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 14:25: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2976F37BB04; Mon, 12 Jun 2000 14:25:04 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA17526; Mon, 12 Jun 2000 14:25:04 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006122125.OAA17526@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 14:25:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/libio/config sco4.mt Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 14:25:04 PDT Removed files: contrib/libio/config sco4.mt Log: This file is no longer used, starting with GCC 2.96. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 14:27:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4D5A37BB13; Mon, 12 Jun 2000 14:27:18 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA17733; Mon, 12 Jun 2000 14:27:18 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006122127.OAA17733@freefall.freebsd.org> From: Jim Mock Date: Mon, 12 Jun 2000 14:27:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/security chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/12 14:27:18 PDT Modified files: en_US.ISO_8859-1/books/handbook/security chapter.sgml Log: Fix some spelling errors and random typos. Submitted by: Ed Ryan on -doc Revision Changes Path 1.33 +7 -5 doc/en_US.ISO_8859-1/books/handbook/security/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 15: 1:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7BC237B5B7; Mon, 12 Jun 2000 15:01:26 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA22420; Mon, 12 Jun 2000 15:01:26 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006122201.PAA22420@freefall.freebsd.org> From: Satoshi Asami Date: Mon, 12 Jun 2000 15:01:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libcii/pkg PLIST ports/devel/libdlmalloc/pkg PLIST ports/devel/libgetline/pkg PLIST ports/devel/libmalloc/pkg PLIST ports/devel/avltree/pkg PLIST ports/japanese/perl5/pkg PLIST ports/japanese/libslang/pkg PLIST ports/news/cnews/pkg PLIST ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/12 15:01:26 PDT Modified files: devel/libcii/pkg PLIST devel/libdlmalloc/pkg PLIST devel/libgetline/pkg PLIST devel/libmalloc/pkg PLIST devel/avltree/pkg PLIST japanese/perl5/pkg PLIST japanese/libslang/pkg PLIST news/cnews/pkg PLIST x11-toolkits/v/pkg PLIST x11-toolkits/xforms/pkg PLIST Log: Remove @exec ranlib's. Since pkg_add doesn't change the timestamp, these are not necessary (even if the linker cares about the timestamp -- I'm not sure if it does). Revision Changes Path 1.2 +0 -1 ports/devel/libcii/pkg/PLIST 1.7 +0 -1 ports/devel/libdlmalloc/pkg/PLIST 1.3 +0 -1 ports/devel/libgetline/pkg/PLIST 1.9 +0 -2 ports/devel/libmalloc/pkg/PLIST 1.2 +0 -1 ports/devel/avltree/pkg/PLIST 1.8 +0 -1 ports/japanese/perl5/pkg/PLIST 1.5 +0 -1 ports/japanese/libslang/pkg/PLIST 1.15 +0 -1 ports/news/cnews/pkg/PLIST 1.4 +0 -2 ports/x11-toolkits/v/pkg/PLIST 1.16 +0 -1 ports/x11-toolkits/xforms/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16: 8:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B41237BC23; Mon, 12 Jun 2000 16:08:36 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA31504; Mon, 12 Jun 2000 16:08:36 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006122308.QAA31504@freefall.freebsd.org> From: Matt Jacob Date: Mon, 12 Jun 2000 16:08:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp_freebsd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/12 16:08:35 PDT Modified files: sys/dev/isp isp_freebsd.c Log: Fix breakage to target mode support. What we'd like to know is whether or not we have a listener upstream that really hasn't configured yet. If we do, then we can give a more sensible reply here. If not, then we can reject this out of hand. Choices for what to send were Not Ready, Unit Not Self-Configured Yet (0x2,0x3e,0x00) for the former and Illegal Request, Logical Unit Not Supported (0x5,0x25,0x00) for the latter. We used to decide whether there was at least one listener based upon whether the black hole driver was configured. However, recent config(8) changes have made this hard to do at this time. Actually, we didn't use the above quite yet, but were sure considering it. Revision Changes Path 1.37 +26 -15 src/sys/dev/isp/isp_freebsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16:36:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AADC37B5AB; Mon, 12 Jun 2000 16:36:24 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA33747; Mon, 12 Jun 2000 16:36:24 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006122336.QAA33747@freefall.freebsd.org> From: Will Andrews Date: Mon, 12 Jun 2000 16:36:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm Makefile ports/x11-wm/icepref Makefile ports/x11-wm/icepref/files md5 ports/x11-wm/icepref/patches patch-aa ports/x11-wm/icepref/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/12 16:36:24 PDT Modified files: x11-wm Makefile Added files: x11-wm/icepref Makefile x11-wm/icepref/files md5 x11-wm/icepref/patches patch-aa x11-wm/icepref/pkg COMMENT DESCR PLIST Log: Add icepref, a small graphical configuration utility for IceWM. PR: 19097 Submitted by: Michael Urban Revision Changes Path 1.39 +2 -1 ports/x11-wm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16:36:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 74B4437B5D9; Mon, 12 Jun 2000 16:36:38 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA33825; Mon, 12 Jun 2000 16:36:38 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006122336.QAA33825@freefall.freebsd.org> From: Will Andrews Date: Mon, 12 Jun 2000 16:36:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/12 16:36:38 PDT Modified files: . modules Log: icepref --> ports/x11-wm/icepref Revision Changes Path 1.1255 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16:39: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6581037B5AB; Mon, 12 Jun 2000 16:39:00 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA34236; Mon, 12 Jun 2000 16:39:00 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006122339.QAA34236@freefall.freebsd.org> From: Will Andrews Date: Mon, 12 Jun 2000 16:39:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/12 16:39:00 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Michael Urban for the x11-wm/icepref port. Revision Changes Path 1.225 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16:53: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EAEC37B5AB; Mon, 12 Jun 2000 16:52:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA35847; Mon, 12 Jun 2000 16:52:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200006122352.QAA35847@freefall.freebsd.org> From: John Baldwin Date: Mon, 12 Jun 2000 16:52:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen err.3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/06/12 16:52:59 PDT Modified files: (Branch: RELENG_4) lib/libc/gen err.3 Log: MFC: Clarify the description of some of the err() and warn() functions as well as some mdoc fixups. Revision Changes Path 1.11.2.2 +34 -13 src/lib/libc/gen/err.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16:57: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 045BA37B818; Mon, 12 Jun 2000 16:57:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA36276; Mon, 12 Jun 2000 16:57:01 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006122357.QAA36276@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 12 Jun 2000 16:57:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/lsof Makefile ports/sysutils/lsof/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/12 16:57:00 PDT Modified files: sysutils/lsof Makefile sysutils/lsof/files md5 Log: Vendor fix for building on the latest 5-CURRENT. Revision Changes Path 1.67 +3 -3 ports/sysutils/lsof/Makefile 1.51 +1 -1 ports/sysutils/lsof/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 16:57:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 333A137B818; Mon, 12 Jun 2000 16:57:36 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: (from murray@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA36354; Mon, 12 Jun 2000 16:57:36 -0700 (PDT) (envelope-from murray@FreeBSD.org) Message-Id: <200006122357.QAA36354@freefall.freebsd.org> From: Murray Stokely Date: Mon, 12 Jun 2000 16:57:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG murray 2000/06/12 16:57:36 PDT Modified files: en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml Log: Reviewed by: jkh Replaced one innaccuracy (ethernet -> TCP/IP) and one missing space typo. Revision Changes Path 1.27 +3 -3 doc/en_US.ISO_8859-1/books/handbook/kernelconfig/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 17:41:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8696A37B55B; Mon, 12 Jun 2000 17:41:39 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA43182; Mon, 12 Jun 2000 17:41:39 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006130041.RAA43182@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 12 Jun 2000 17:41:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libxpg4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/12 17:41:39 PDT Modified files: lib/libxpg4 Makefile Log: Bump major to preserve 3.x binaries compatibility Found by: "Akinori -Aki- MUSHA" Revision Changes Path 1.8 +4 -1 src/lib/libxpg4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 17:42:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FBA137BE78; Mon, 12 Jun 2000 17:42:41 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA43303; Mon, 12 Jun 2000 17:42:41 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006130042.RAA43303@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 12 Jun 2000 17:42:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libxpg4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/12 17:42:41 PDT Modified files: (Branch: RELENG_4) lib/libxpg4 Makefile Log: MFC: bump major for 3.x binaries Revision Changes Path 1.6.6.2 +4 -1 src/lib/libxpg4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 18: 1:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2572337B549; Mon, 12 Jun 2000 18:01:23 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA46182; Mon, 12 Jun 2000 18:01:23 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006130101.SAA46182@freefall.freebsd.org> From: Jim Mock Date: Mon, 12 Jun 2000 18:01:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/printing chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/12 18:01:23 PDT Modified files: en_US.ISO_8859-1/books/handbook/printing chapter.sgml Log: Fix a few typos. Submitted by: Ed Ryan Revision Changes Path 1.29 +3 -3 doc/en_US.ISO_8859-1/books/handbook/printing/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 19: 7:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ACE9A37B719; Mon, 12 Jun 2000 19:07:43 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA55843; Mon, 12 Jun 2000 19:07:44 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006130207.TAA55843@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 12 Jun 2000 19:07:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/p5-Jcode Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/12 19:07:43 PDT Modified files: japanese/p5-Jcode Makefile Log: Honor $CFLAGS. Submitted by: Christian Weisgerber Modified by: kuriyama Revision Changes Path 1.4 +2 -1 ports/japanese/p5-Jcode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 19:44:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3108837B7D6; Mon, 12 Jun 2000 19:44:15 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA60149; Mon, 12 Jun 2000 19:44:14 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006130244.TAA60149@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 12 Jun 2000 19:44:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/p5-Jcode Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/12 19:44:14 PDT Modified files: japanese/p5-Jcode Makefile Log: Revert previous commit. That cannot fix CFLAGS problem. Revision Changes Path 1.5 +1 -2 ports/japanese/p5-Jcode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 20: 5:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B49837B8C0; Mon, 12 Jun 2000 20:05:57 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Received: (from jwd@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA63192; Mon, 12 Jun 2000 20:05:56 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Message-Id: <200006130305.UAA63192@freefall.freebsd.org> From: "John W. De Boskey" Date: Mon, 12 Jun 2000 20:05:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts src-install.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jwd 2000/06/12 20:05:56 PDT Modified files: release/scripts src-install.sh Log: Add 'tools' to the list of tarballs to be extracted when 'all' is specified as the distribution. PR: 18927 Submitted by: Stephen J. Roznowski Revision Changes Path 1.7 +2 -2 src/release/scripts/src-install.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 20:19:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 39D5C37B7D6; Mon, 12 Jun 2000 20:19:41 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Received: (from jwd@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA64672; Mon, 12 Jun 2000 20:19:41 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Message-Id: <200006130319.UAA64672@freefall.freebsd.org> From: "John W. De Boskey" Date: Mon, 12 Jun 2000 20:19:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/df df.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jwd 2000/06/12 20:19:40 PDT Modified files: (Branch: RELENG_4) bin/df df.c Log: MFC: 1.24 to 4.x df -g support Revision Changes Path 1.23.2.1 +6 -2 src/bin/df/df.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 22:42: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 650B537BAC5; Mon, 12 Jun 2000 22:41:58 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA83107; Mon, 12 Jun 2000 22:41:57 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Message-Id: <200006130541.WAA83107@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 12 Jun 2000 22:41:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news newsflash.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkoshy 2000/06/12 22:41:57 PDT Modified files: en/news newsflash.sgml Log: Add newsflash entry about the upcoming FreeBSD 3.5 release date. Requested by: Wolfram Schneider Revision Changes Path 1.179 +7 -2 www/en/news/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 23: 9: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C28D537B838; Mon, 12 Jun 2000 23:08:58 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA86744; Mon, 12 Jun 2000 23:08:58 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006130608.XAA86744@freefall.freebsd.org> From: Warner Losh Date: Mon, 12 Jun 2000 23:08:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults pccard.conf Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/12 23:08:58 PDT Modified files: etc/defaults pccard.conf Log: Remove the "any" and "pio" stuff from PAO. We don't (yet) support that notation. Reported by: jkh on the train from Tokyo to Nagoya. Revision Changes Path 1.112 +12 -11 src/etc/defaults/pccard.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 23:57:56 2000 Delivered-To: cvs-all@freebsd.org Received: from gate.keisu.t.u-tokyo.ac.jp (gate.keisu.t.u-tokyo.ac.jp [133.11.68.1]) by hub.freebsd.org (Postfix) with ESMTP id 35C4D37B9E7; Mon, 12 Jun 2000 23:57:38 -0700 (PDT) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from sylph.sat.t.u-tokyo.ac.jp (sylph.sat.t.u-tokyo.ac.jp [10.6.1.20]) by gate.keisu.t.u-tokyo.ac.jp (Postfix) with ESMTP id 3743C3DEE; Tue, 13 Jun 2000 15:56:56 +0900 (JST) Received: from localhost (ett.sat.t.u-tokyo.ac.jp [10.6.1.30]) by sylph.sat.t.u-tokyo.ac.jp (Postfix) with ESMTP id 88B6A2DAA9; Tue, 13 Jun 2000 15:56:55 +0900 (JST) To: ps@FreeBSD.org, phk@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs bootp_subr.c In-Reply-To: <200006091931.MAA61929@freefall.freebsd.org> References: <200006091931.MAA61929@freefall.freebsd.org> X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX Date: Tue, 13 Jun 2000 15:56:54 +0900 From: Hidetoshi Shimokawa X-Dispatcher: imput version 20000113(IM136) Lines: 25 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG From: Paul Saab Subject: cvs commit: src/sys/nfs bootp_subr.c Date: Fri, 9 Jun 2000 12:31:57 -0700 (PDT) Message-ID: <200006091931.MAA61929@freefall.freebsd.org> ps> ps 2000/06/09 12:31:57 PDT ps> ps> Modified files: (Branch: RELENG_4) ps> sys/nfs bootp_subr.c ps> Log: ps> MFC: 1.21 Include a RFC 1533 "Maximum DHCP Message Size" option in ps> our request. ps> ps> Revision Changes Path ps> 1.20.2.1 +17 -5 src/sys/nfs/bootp_subr.c After this change, our diskless client cannot boot with bootpd. Though bootpd expects big-endian data, bootp_subr encodes it by little-endian. I didn't check the RFC, but bootp_subr.c seems wrong. /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: finger -l simokawa@sat.t.u-tokyo.ac.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Jun 12 23:58:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F93837B9F6; Mon, 12 Jun 2000 23:58:51 -0700 (PDT) (envelope-from reg@FreeBSD.org) Received: (from reg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA92410; Mon, 12 Jun 2000 23:58:50 -0700 (PDT) (envelope-from reg@FreeBSD.org) Message-Id: <200006130658.XAA92410@freefall.freebsd.org> From: Jeremy Lea Date: Mon, 12 Jun 2000 23:58:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gettext Makefile ports/devel/gettext/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG reg 2000/06/12 23:58:50 PDT Modified files: devel/gettext Makefile devel/gettext/pkg PLIST Log: Cleanup share/locale in PREFIX, LOCALBASE and X11BASE. Revision Changes Path 1.19 +2 -2 ports/devel/gettext/Makefile 1.16 +6 -0 ports/devel/gettext/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:11:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5658B37B9EB; Tue, 13 Jun 2000 00:11:53 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA95173; Tue, 13 Jun 2000 00:11:52 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130711.AAA95173@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:11:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet ip_input.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:11:49 PDT Modified files: (Branch: RELENG_4) sys/netinet ip_input.c Log: MFC: (rev 1.133) do not call icmp_error() if ipfirewall(4) denied packet. Revision Changes Path 1.130.2.4 +5 -1 src/sys/netinet/ip_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:12:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AE89F37B9E7; Tue, 13 Jun 2000 00:12:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA95417; Tue, 13 Jun 2000 00:12:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130712.AAA95417@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:12:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet ip_input.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:12:34 PDT Modified files: (Branch: RELENG_3) sys/netinet ip_input.c Log: MFC: (rev 1.133) do not call icmp_error() if ipfirewall(4) denied packet. Revision Changes Path 1.111.2.9 +5 -1 src/sys/netinet/ip_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:17:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 45F8837BCDC; Tue, 13 Jun 2000 00:17:30 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA96124; Tue, 13 Jun 2000 00:17:29 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130717.AAA96124@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:17:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/grep grep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:17:28 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/grep grep.c Log: MFC: (rev 1.21) restore backwards compatible -R option. Revision Changes Path 1.20.2.1 +2 -2 src/gnu/usr.bin/grep/grep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:33:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CB9E537B8D6; Tue, 13 Jun 2000 00:33:37 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA98173; Tue, 13 Jun 2000 00:33:38 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130733.AAA98173@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:33:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/texinfo/info Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:33:37 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/texinfo/info Makefile Log: MFC: (rev 1.11) add additional path for info to /usr/X11R6/info. Revision Changes Path 1.10.2.1 +2 -2 src/gnu/usr.bin/texinfo/info/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:38:17 2000 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id 3D35A37BD38; Tue, 13 Jun 2000 00:37:50 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from nlsys.demon.co.uk ([158.152.125.33] helo=herring.nlsystems.com) by anchor-post-31.mail.demon.net with esmtp (Exim 2.12 #1) id 131lGe-0006fN-0V; Tue, 13 Jun 2000 08:37:50 +0100 Received: from salmon.nlsystems.com (salmon.nlsystems.com [10.0.0.3]) by herring.nlsystems.com (8.9.3/8.8.8) with ESMTP id IAA27074; Tue, 13 Jun 2000 08:39:32 +0100 (BST) (envelope-from dfr@nlsystems.com) Date: Tue, 13 Jun 2000 08:42:40 +0100 (BST) From: Doug Rabson To: Alexander Langer Cc: Doug Rabson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp.c agp_ali.c agp_amd.c agp_if.m agp_intel.c agp_sis.c agp_via.c agppriv.h agpreg.h agpvar.h src/sys/sys agpio.h In-Reply-To: <20000610123720.A2120@cichlids.cichlids.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, 10 Jun 2000, Alexander Langer wrote: > Thus spake Doug Rabson (dfr@FreeBSD.org): > > > The programming api is a subset of the Linux api and is only intended to > > be enough for the X server to use. There is also an in-kernel api for the > > use of other kernel modules such as the 3D DRI. > > Is that similar to the kernel module NVidia provides for the XFree86 > 4.0 driver for their chips? > > If so, does it replace those? The DRI is similar in some ways to NVidia's kernel module. It arbitrates use of the 3D hardware and provides the infrastructure for sending data and commands to the hardware using DMA. There is a custom kernel module for each chipset that is supported by the DRI (currently 3Dfx, G400/G200, Rage128 and i810). Of these, I have ported the 3Dfx and G400/G200 driver to FreeBSD. There is no driver for NVidia cards yet so the DRI does not replace NVidia's own closed driver. -- Doug Rabson Mail: dfr@nlsystems.com Nonlinear Systems Ltd. Phone: +44 20 8442 9037 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:40:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ACDEC37B8F5; Tue, 13 Jun 2000 00:40:12 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA99078; Tue, 13 Jun 2000 00:40:12 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200006130740.AAA99078@freefall.freebsd.org> From: Kevin Lo Date: Tue, 13 Jun 2000 00:40:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/06/13 00:40:12 PDT Modified files: en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml Log: Add a section "The refuse file" in the CVSup of the handbook. PR: 19233 Submitted by: Eric Ogren Revision Changes Path 1.69 +67 -1 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:48:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 07FAD37BA76; Tue, 13 Jun 2000 00:48:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA00207; Tue, 13 Jun 2000 00:48:19 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006130748.AAA00207@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 13 Jun 2000 00:48:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/gnupg/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/13 00:48:19 PDT Modified files: security/gnupg/pkg PLIST Log: Fix @dirrm typo in PLIST. Found by: bento Reference: http://bento/errorlogs/errorlogs/a.3.20000612/extras.html Revision Changes Path 1.10 +1 -1 ports/security/gnupg/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:50: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A8FCF37BA19; Tue, 13 Jun 2000 00:49:53 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA00606; Tue, 13 Jun 2000 00:49:53 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006130749.AAA00606@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 13 Jun 2000 00:49:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/openjade/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/13 00:49:53 PDT Modified files: textproc/openjade/pkg PLIST Log: Remove empty directory (share/sgml). Reported by: bento Revision Changes Path 1.11 +1 -0 ports/textproc/openjade/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:51: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DBE9C37B8F5; Tue, 13 Jun 2000 00:50:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA00837; Tue, 13 Jun 2000 00:50:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130750.AAA00837@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:50:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.firewall Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:50:59 PDT Modified files: (Branch: RELENG_3) etc rc.firewall Log: MFC: - rev 1.25: Allow for incoming DNS UDP queries. - rev 1.27: Pass IP fragments with non-zero offset. Revision Changes Path 1.19.2.4 +9 -1 src/etc/rc.firewall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:56:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BE4F37BA19; Tue, 13 Jun 2000 00:56:52 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA01857; Tue, 13 Jun 2000 00:56:52 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130756.AAA01857@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:56:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist src/share/man/man7 hier.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:56:51 PDT Modified files: (Branch: RELENG_4) etc/mtree BSD.usr.dist share/man/man7 hier.7 Log: MFC: /usr/mdec has gone. Revision Changes Path 1.188.2.1 +1 -3 src/etc/mtree/BSD.usr.dist 1.29.2.1 +1 -5 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:58:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A03A37B8F5; Tue, 13 Jun 2000 00:58:19 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA02280; Tue, 13 Jun 2000 00:58:19 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200006130758.AAA02280@freefall.freebsd.org> From: Nick Hibma Date: Tue, 13 Jun 2000 00:58:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/06/13 00:58:19 PDT Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs Log: MFC: New IDs Revision Changes Path 1.11.2.6 +12 -1 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:58:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BBFDD37B8F5; Tue, 13 Jun 2000 00:58:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA02337; Tue, 13 Jun 2000 00:58:32 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130758.AAA02337@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 00:58:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist src/share/man/man7 hier.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 00:58:32 PDT Modified files: (Branch: RELENG_3) etc/mtree BSD.usr.dist share/man/man7 hier.7 Log: MFC: /usr/mdec has gone. Revision Changes Path 1.146.2.20 +1 -3 src/etc/mtree/BSD.usr.dist 1.16.2.7 +1 -5 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 0:58:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 391ED37B8F5; Tue, 13 Jun 2000 00:58:49 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA02456; Tue, 13 Jun 2000 00:58:49 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200006130758.AAA02456@freefall.freebsd.org> From: Nick Hibma Date: Tue, 13 Jun 2000 00:58:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/06/13 00:58:49 PDT Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs.h usbdevs_data.h Log: Regen. after MFC. Revision Changes Path 1.32.2.6 +12 -1 src/sys/dev/usb/usbdevs.h 1.32.2.6 +43 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:10:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AEA6637BD18; Tue, 13 Jun 2000 01:10:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA05117; Tue, 13 Jun 2000 01:10:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130810.BAA05117@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 01:10:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 01:10:35 PDT Modified files: (Branch: RELENG_4) include Makefile Log: MFC: (rev 1.110) Unbroke `make symlinks; make copies' sequence. Revision Changes Path 1.109.2.1 +5 -2 src/include/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:15:15 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id BD51B37BD1A; Tue, 13 Jun 2000 01:14:59 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id BAA35002; Tue, 13 Jun 2000 01:14:57 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id BAA45795; Tue, 13 Jun 2000 01:15:30 -0700 (PDT) (envelope-from obrien) Date: Tue, 13 Jun 2000 01:15:30 -0700 From: "David O'Brien" To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libxpg4 Makefile Message-ID: <20000613011530.A45723@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200006130041.RAA43182@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006130041.RAA43182@freefall.freebsd.org>; from ache@FreeBSD.org on Mon, Jun 12, 2000 at 05:41:39PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, Jun 12, 2000 at 05:41:39PM -0700, Andrey A. Chernov wrote: > Modified files: > lib/libxpg4 Makefile > Log: > Bump major to preserve 3.x binaries compatibility Didn't you tell me this was unnecessary when I asked before? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:27:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 646FE37BAED; Tue, 13 Jun 2000 01:27:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA07242; Tue, 13 Jun 2000 01:27:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130827.BAA07242@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 01:27:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/sawfish Makefile ports/x11-wm/sawfish/files md5 ports/x11-wm/sawfish/patches patch-ad ports/x11-wm/sawfish/pkg PLIST PLIST.nognome Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 01:27:33 PDT Modified files: x11-wm/sawfish Makefile x11-wm/sawfish/files md5 x11-wm/sawfish/patches patch-ad x11-wm/sawfish/pkg PLIST PLIST.nognome Log: Update to 0.28 version. Also add several missed @dirrm's into PLIST while I'm here. Revision Changes Path 1.18 +2 -2 ports/x11-wm/sawfish/Makefile 1.12 +1 -1 ports/x11-wm/sawfish/files/md5 1.4 +5 -5 ports/x11-wm/sawfish/patches/patch-ad 1.13 +14 -1 ports/x11-wm/sawfish/pkg/PLIST 1.9 +13 -1 ports/x11-wm/sawfish/pkg/PLIST.nognome To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:31: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 847A537BD62; Tue, 13 Jun 2000 01:30:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA07726; Tue, 13 Jun 2000 01:30:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130830.BAA07726@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 01:30:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 hier.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 01:30:59 PDT Modified files: (Branch: RELENG_4) share/man/man7 hier.7 Log: MFC: (rev 1.31) Document /usr/lib/aout. Revision Changes Path 1.29.2.2 +3 -1 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:33: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5E0A37BAEF; Tue, 13 Jun 2000 01:32:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA07973; Tue, 13 Jun 2000 01:32:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130832.BAA07973@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 01:32:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 hier.7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 01:32:59 PDT Modified files: (Branch: RELENG_3) share/man/man7 hier.7 Log: MFC: (rev 1.31) Document /usr/lib/aout. Revision Changes Path 1.16.2.8 +3 -1 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:42: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BA0E37BD39; Tue, 13 Jun 2000 01:42:06 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA08857; Tue, 13 Jun 2000 01:42:06 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130842.BAA08857@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 01:42:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 01:42:06 PDT Modified files: (Branch: RELENG_4) sys/conf options sys/i386/conf LINT Log: MFC: Remove a no-option MD5. Revision Changes Path 1.191.2.5 +1 -2 src/sys/conf/options 1.749.2.9 +1 -7 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:48:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 944A637BB47; Tue, 13 Jun 2000 01:48:07 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA09743; Tue, 13 Jun 2000 01:48:08 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130848.BAA09743@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 01:48:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options src/sys/i386/conf LINT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 01:48:07 PDT Modified files: (Branch: RELENG_3) sys/conf options sys/i386/conf LINT Log: MFC: Remove a no-option MD5. Revision Changes Path 1.121.2.25 +1 -2 src/sys/conf/options 1.539.2.56 +1 -7 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:50:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EDFB137BD44; Tue, 13 Jun 2000 01:50:19 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA10736; Tue, 13 Jun 2000 01:50:20 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130850.BAA10736@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 01:50:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 01:50:20 PDT Modified files: . modules Log: thinice --> ports/x11-toolkits/thinice Revision Changes Path 1.1256 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:51:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AC9C37BD61; Tue, 13 Jun 2000 01:51:08 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA11110; Tue, 13 Jun 2000 01:51:09 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130851.BAA11110@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 01:51:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/thinice - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 01:51:09 PDT ports/x11-toolkits/thinice - Imported sources Update of /home/ncvs/ports/x11-toolkits/thinice In directory freefall.freebsd.org:/d/home/sobomax/thinice Log Message: Initial import of the thinice - a yet another nice looking GTK+ theme engine from my collection. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/x11-toolkits/thinice/Makefile N ports/x11-toolkits/thinice/files/md5 N ports/x11-toolkits/thinice/pkg/COMMENT N ports/x11-toolkits/thinice/pkg/DESCR N ports/x11-toolkits/thinice/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:52:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2704537BD3B; Tue, 13 Jun 2000 01:52:19 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA11638; Tue, 13 Jun 2000 01:52:19 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130852.BAA11638@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 01:52:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 01:52:19 PDT Modified files: . modules Log: clean-theme-gtk --> ports/x11-toolkits/clean-theme-gtk Revision Changes Path 1.1257 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:53:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B5D137BD8D; Tue, 13 Jun 2000 01:53:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA11981; Tue, 13 Jun 2000 01:53:14 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130853.BAA11981@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 01:53:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/clean-theme-gtk - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 01:53:14 PDT ports/x11-toolkits/clean-theme-gtk - Imported sources Update of /home/ncvs/ports/x11-toolkits/clean-theme-gtk In directory freefall.freebsd.org:/d/home/sobomax/clean-theme-gtk Log Message: Initial import of the clean-theme-gtk - a yet another nice GTK+ theme engine from my collection. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/x11-toolkits/clean-theme-gtk/Makefile N ports/x11-toolkits/clean-theme-gtk/files/md5 N ports/x11-toolkits/clean-theme-gtk/pkg/COMMENT N ports/x11-toolkits/clean-theme-gtk/pkg/DESCR N ports/x11-toolkits/clean-theme-gtk/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 1:56:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BEE037BD81; Tue, 13 Jun 2000 01:56:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA13427; Tue, 13 Jun 2000 01:56:28 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130856.BAA13427@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 01:56:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 01:56:28 PDT Modified files: x11-toolkits Makefile Log: Activate thinice and clean-theme-gtk. Revision Changes Path 1.75 +3 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2: 0:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AADD537BD76; Tue, 13 Jun 2000 02:00:06 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA14675; Tue, 13 Jun 2000 02:00:06 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130900.CAA14675@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 02:00:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/login README Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 02:00:06 PDT Modified files: (Branch: RELENG_3) usr.bin/login README Log: MFC: (rev 1.3) remove option's description that has gone with PAM. Revision Changes Path 1.2.8.1 +1 -9 src/usr.bin/login/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2: 4:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2947837B55F; Tue, 13 Jun 2000 02:04:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA15186; Tue, 13 Jun 2000 02:04:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130904.CAA15186@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 02:04:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/procctl procctl.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 02:04:36 PDT Modified files: (Branch: RELENG_3) usr.sbin/procctl procctl.8 Log: MFC: cleanup manpage. Revision Changes Path 1.3.2.3 +8 -8 src/usr.sbin/procctl/procctl.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2: 6:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 734A737B55F; Tue, 13 Jun 2000 02:06:47 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: (from alc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA16611; Tue, 13 Jun 2000 02:06:47 -0700 (PDT) (envelope-from alc@FreeBSD.org) Message-Id: <200006130906.CAA16611@freefall.freebsd.org> From: Alan Cox Date: Tue, 13 Jun 2000 02:06:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha vm_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alc 2000/06/13 02:06:47 PDT Modified files: (Branch: RELENG_4) sys/alpha/alpha vm_machdep.c Log: MFC: [rev 1.31] Check "flags" in cpu_fork() before dereferencing "p2". Revision Changes Path 1.28.2.1 +3 -4 src/sys/alpha/alpha/vm_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:10:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2950737B55F; Tue, 13 Jun 2000 02:10:38 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA17156; Tue, 13 Jun 2000 02:10:37 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006130910.CAA17156@freefall.freebsd.org> From: KATO Takenori Date: Tue, 13 Jun 2000 02:10:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.i386 options.pc98 src/sys/i386/conf LINT src/sys/i386/i386 initcpu.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/13 02:10:37 PDT Modified files: sys/conf options.i386 options.pc98 sys/i386/conf LINT sys/i386/i386 initcpu.c Log: Added new options CPU_PPRO2CELERON and CPU_L2_LATENCY to support Socket 8 to 370 converters. When (1) CPU_PPRO2CELERON option is defined, (2) Intel CPU is found and (3) CPU ID is 0x66?, L2 cache is enabled through MSR 0x11e. The L2 cache latency value can be specified by CPU_L2_LATENCY option. Default value of L2 cache latency is 5. These options are useful if you use Socket 8 to Socket 370 converter (e.g. Power Leap's PL-Pro/II.) Most PentiumPro BIOSs don't enable L2 cache of Mendocino Celeron CPUs because they don't know Celeron CPUs. These options are needles if you use a Coppermine (FCPGA) Celeron or PentiumIII, becuase the L2 cache enable bit is hard wired and L2 cache is always enabled. Revision Changes Path 1.138 +3 -1 src/sys/conf/options.i386 1.109 +3 -1 src/sys/conf/options.pc98 1.782 +11 -1 src/sys/i386/conf/LINT 1.20 +53 -4 src/sys/i386/i386/initcpu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:13:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 338D837BB03; Tue, 13 Jun 2000 02:13:44 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA17600; Tue, 13 Jun 2000 02:13:44 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130913.CAA17600@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 02:13:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chkgrp Makefile chkgrp.8 chkgrp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 02:13:44 PDT Modified files: (Branch: RELENG_4) usr.sbin/chkgrp Makefile chkgrp.8 chkgrp.c Log: MFC: cosmetics. Revision Changes Path 1.2.2.1 +1 -2 src/usr.sbin/chkgrp/Makefile 1.7.2.1 +21 -12 src/usr.sbin/chkgrp/chkgrp.8 1.3.2.1 +2 -2 src/usr.sbin/chkgrp/chkgrp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:15: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5967637B55F; Tue, 13 Jun 2000 02:14:55 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA17731; Tue, 13 Jun 2000 02:14:55 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130914.CAA17731@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 02:14:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chkgrp Makefile chkgrp.8 chkgrp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 02:14:55 PDT Modified files: (Branch: RELENG_3) usr.sbin/chkgrp Makefile chkgrp.8 chkgrp.c Log: MFC: cosmetics. Revision Changes Path 1.1.2.2 +1 -2 src/usr.sbin/chkgrp/Makefile 1.4.2.3 +22 -12 src/usr.sbin/chkgrp/chkgrp.8 1.2.2.2 +2 -2 src/usr.sbin/chkgrp/chkgrp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:17:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9073A37B55F; Tue, 13 Jun 2000 02:17:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA18246; Tue, 13 Jun 2000 02:17:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006130917.CAA18246@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 02:17:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh-agent.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 02:17:35 PDT Modified files: (Branch: RELENG_4) crypto/openssh ssh-agent.c Log: MFC: (rev 1.5) make `ssh-agent -k' work for csh(1)-like shells. Revision Changes Path 1.2.2.2 +2 -2 src/crypto/openssh/ssh-agent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:23:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5710237BAF5; Tue, 13 Jun 2000 02:23:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA19267; Tue, 13 Jun 2000 02:23:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130923.CAA19267@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 02:23:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 02:23:27 PDT Modified files: . modules Log: gtkstep-pastel --> ports/x11-toolkits/gtkstep-pastel Revision Changes Path 1.1258 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:24:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 70D2E37BDBA; Tue, 13 Jun 2000 02:24:29 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA19406; Tue, 13 Jun 2000 02:24:29 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130924.CAA19406@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 02:24:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtkstep-pastel - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 02:24:29 PDT ports/x11-toolkits/gtkstep-pastel - Imported sources Update of /home/ncvs/ports/x11-toolkits/gtkstep-pastel In directory freefall.freebsd.org:/d/home/sobomax/gtkstep-pastel Log Message: Initial import of gtkstep-pastel - a nice gtkstep-based GTK+ theme engine. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/x11-toolkits/gtkstep-pastel/Makefile N ports/x11-toolkits/gtkstep-pastel/files/md5 N ports/x11-toolkits/gtkstep-pastel/pkg/COMMENT N ports/x11-toolkits/gtkstep-pastel/pkg/DESCR N ports/x11-toolkits/gtkstep-pastel/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:25:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A1DDC37BDAC; Tue, 13 Jun 2000 02:25:24 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA19538; Tue, 13 Jun 2000 02:25:24 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006130925.CAA19538@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 02:25:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 02:25:24 PDT Modified files: x11-toolkits Makefile Log: Activate gtkstep-pastel. Revision Changes Path 1.76 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:25:43 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.surf1.de (mail.surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id F36DA37C08B; Tue, 13 Jun 2000 02:25:30 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from neutron.cichlids.com (p3E9D38B7.dip0.t-ipconnect.de [62.157.56.183]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id LAA09187; Tue, 13 Jun 2000 11:25:20 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 6EED7AC30; Tue, 13 Jun 2000 11:25:32 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 9EA7814A69; Tue, 13 Jun 2000 11:25:27 +0200 (CEST) Date: Tue, 13 Jun 2000 11:25:27 +0200 From: Alexander Langer To: Doug Rabson Cc: Doug Rabson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp.c agp_ali.c agp_amd.c agp_if.m agp_intel.c agp_sis.c agp_via.c agppriv.h agpreg.h agpvar.h src/sys/sys agpio.h Message-ID: <20000613112527.B404@cichlids.cichlids.com> References: <20000610123720.A2120@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from dfr@nlsystems.com on Tue, Jun 13, 2000 at 08:42:40AM +0100 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Doug Rabson (dfr@nlsystems.com): > DRI (currently 3Dfx, G400/G200, Rage128 and i810). Of these, I have ported > the 3Dfx and G400/G200 driver to FreeBSD. There is no driver for NVidia > cards yet so the DRI does not replace NVidia's own closed driver. Oh, there is one from NVidia: http://www.nvidia.com/Products/OpenLinuxDwn.nsf/xfree86_40Downloadmain?OpenPage Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:32:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E80E37BAF5; Tue, 13 Jun 2000 02:32:10 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA20283; Tue, 13 Jun 2000 02:32:09 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006130932.CAA20283@freefall.freebsd.org> From: Paul Saab Date: Tue, 13 Jun 2000 02:32:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs bootp_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/13 02:32:09 PDT Modified files: sys/nfs bootp_subr.c Log: Correctly set the Maximum DHCP Message Size. bootpd now works again as well as ISC dhcpd. Revision Changes Path 1.22 +2 -2 src/sys/nfs/bootp_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:33:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1985237BB05; Tue, 13 Jun 2000 02:33:26 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA20458; Tue, 13 Jun 2000 02:33:25 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006130933.CAA20458@freefall.freebsd.org> From: Paul Saab Date: Tue, 13 Jun 2000 02:33:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs bootp_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/13 02:33:25 PDT Modified files: (Branch: RELENG_4) sys/nfs bootp_subr.c Log: MFC: Correctly set the Maximum DHCP Message Size. Revision Changes Path 1.20.2.2 +1 -1 src/sys/nfs/bootp_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:35:53 2000 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [207.154.226.10]) by hub.freebsd.org (Postfix) with ESMTP id 3412F37BDAF; Tue, 13 Jun 2000 02:35:49 -0700 (PDT) (envelope-from paul@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1000) id 70DEA2B21B; Tue, 13 Jun 2000 04:35:33 -0500 (CDT) Date: Tue, 13 Jun 2000 02:35:33 -0700 From: Paul Saab To: Hidetoshi Shimokawa Cc: ps@FreeBSD.org, phk@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfs bootp_subr.c Message-ID: <20000613023533.A26201@elvis.mu.org> References: <200006091931.MAA61929@freefall.freebsd.org> <20000613155654O.simokawa@sat.t.u-tokyo.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000613155654O.simokawa@sat.t.u-tokyo.ac.jp>; from simokawa@sat.t.u-tokyo.ac.jp on Tue, Jun 13, 2000 at 03:56:54PM +0900 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Can you cvsup and try now. I believe I just fixed this. paul Hidetoshi Shimokawa (simokawa@sat.t.u-tokyo.ac.jp) wrote: > From: Paul Saab > Subject: cvs commit: src/sys/nfs bootp_subr.c > Date: Fri, 9 Jun 2000 12:31:57 -0700 (PDT) > Message-ID: <200006091931.MAA61929@freefall.freebsd.org> > > ps> ps 2000/06/09 12:31:57 PDT > ps> > ps> Modified files: (Branch: RELENG_4) > ps> sys/nfs bootp_subr.c > ps> Log: > ps> MFC: 1.21 Include a RFC 1533 "Maximum DHCP Message Size" option in > ps> our request. > ps> > ps> Revision Changes Path > ps> 1.20.2.1 +17 -5 src/sys/nfs/bootp_subr.c > > After this change, our diskless client cannot boot with bootpd. > Though bootpd expects big-endian data, bootp_subr encodes it by little-endian. > > I didn't check the RFC, but bootp_subr.c seems wrong. > > /\ Hidetoshi Shimokawa > \/ simokawa@sat.t.u-tokyo.ac.jp > PGP public key: finger -l simokawa@sat.t.u-tokyo.ac.jp > -- Paul Saab Technical Yahoo paul@mu.org - ps@yahoo-inc.com - ps@freebsd.org Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:36:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC14537BDA3; Tue, 13 Jun 2000 02:36:13 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA20669; Tue, 13 Jun 2000 02:36:13 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006130936.CAA20669@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 02:36:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO_8859-1/books/handbook authors.ent Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 02:36:13 PDT Added files: de_DE.ISO_8859-1/books/handbook authors.ent Log: Add a modified authors.ent for the German translation, which will in future also list the German translators. Currently, the translator of the "backups" chapter is listed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:42:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E02C637BA5F; Tue, 13 Jun 2000 02:42:17 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA21317; Tue, 13 Jun 2000 02:42:17 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006130942.CAA21317@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 02:42:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO_8859-1/books/handbook/backups chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 02:42:17 PDT Added files: de_DE.ISO_8859-1/books/handbook/backups chapter.sgml Log: Add the German translation of the "Backups" chapter, based on the original version 1.23. Translated by: Bernd Warken Obtained from: FreeBSD German Documentation Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 2:48:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD49D37BB20; Tue, 13 Jun 2000 02:48:26 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA22021; Tue, 13 Jun 2000 02:48:26 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006130948.CAA22021@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 02:48:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO_8859-1/books/handbook Makefile book.sgml newsgroups.ent chapters.ent mailing-lists.ent Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 02:48:26 PDT Modified files: de_DE.ISO_8859-1/books/handbook chapters.ent mailing-lists.ent Added files: de_DE.ISO_8859-1/books/handbook Makefile book.sgml newsgroups.ent Log: Initial revision of a German Handbook with currently one chapter: Backups Obtained from: FreeBSD German Documentation Project Revision Changes Path 1.2 +3 -3 doc/de_DE.ISO_8859-1/books/handbook/chapters.ent 1.2 +8 -1 doc/de_DE.ISO_8859-1/books/handbook/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 3: 3:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E9F037B7D6; Tue, 13 Jun 2000 03:03:32 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA23528; Tue, 13 Jun 2000 03:03:32 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006131003.DAA23528@freefall.freebsd.org> From: Brian Somers Date: Tue, 13 Jun 2000 03:03:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/13 03:03:32 PDT Modified files: usr.sbin/ppp ppp.8 Log: A few more hard-sentence breaks. Revision Changes Path 1.223 +15 -12 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 3:44:56 2000 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id E22D437BB0D; Tue, 13 Jun 2000 03:44:36 -0700 (PDT) (envelope-from n_hibma@qubesoft.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by anchor-post-31.mail.demon.net with esmtp (Exim 2.12 #1) id 131oBO-000PMy-0V; Tue, 13 Jun 2000 11:44:35 +0100 Received: from henny.webweaving.org (henny.qubesoft.com [192.168.1.5]) by bluebottle.qubesoft.com (8.9.3/8.9.1) with ESMTP id LAA01873; Tue, 13 Jun 2000 11:44:59 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Received: from localhost (localhost [127.0.0.1]) by henny.webweaving.org (8.9.3/8.9.3) with ESMTP id LAA10286; Tue, 13 Jun 2000 11:39:39 +0100 (BST) (envelope-from n_hibma@qubesoft.com) Date: Tue, 13 Jun 2000 11:39:39 +0100 (BST) From: Nick Hibma X-Sender: n_hibma@localhost Reply-To: Nick Hibma To: Poul-Henning Kamp , Doug Rabson Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org, Mike Smith Subject: PCI attach ordering In-Reply-To: <2477.960760879@critter.freebsd.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Right with the added twist that identification doesn't complete > until I have had a chance to poke at function 1. In other words, > I can't really claim function 0 when I see it, because I don't > know if it is part of the card I'm looking for or another card > and I will not know until I get to probe function 1. Are you saying that when you see the id 0x847x109e, you don't know whether you are looking at the multifunction card or not (I assume below that that is not the case and that the ID is sufficient). > > The card looks like this: > > > ############### func0 > # / \ > # / \ > # | \ > PCI ==# | | > # Framer0 Framer1 [...] > # | | > # | | > ### func1 ======= "ebus"=======-- ID-prom > 1) You need to claim both functions and they both represent different devices, so they should be attached to by different drivers (call them musycc-nc and musycc-eb). Assuming that there is no such thing as a card with only one of the functions your driver attaches to, you then can relate the two drivers by their unit numbering (hardwiring the device would be a bit more cumbersome). The botch you have now, musycc0 being card A function 0, musycc1 being card A function 1, musycc2 being card B function 0, etc. is really not a good idea. 2) Speaking to dfr this morning, he mentioned device_set_softc. I don't particularly like this idea as it will be abused when porting drivers from NetBSD. If you use the approach above you will not need to keep any state as you can grab the softc for either of the device with device_get_softc(device_get_device(musycc_nc_devclass, unit)); device_get_softc(device_get_device(musycc_eb_devclass, unit)); Or store the device_t and softc pointers in the other devices softc. 3) The solution you would like to see I suspect would be to connect a pci device/card (pcid, pcic is taken) driver to every pci device. pci.c would then contain a pcid driver that attaches to the pcib for every pci device/card and adds a child with a pci interface for every function that the pci card has. pcib obviously present a different interface to the pcid driver than the pci interface it does now. You could register a musyccf driver in that devclass (pcid) and when the device you want comes along return a higher priority probe for that device. Your driver not loaded, two musycc boards: pcib0 -> pcif0 -> (function 0) fxp0 -> pcif1 -> (function 0) chip0 -> (function 1) chip1 -> pcif2 -> (function 0) chip2 -> (function 1) chip3 Your driver loaded: pcib0 -> pcif0 -> (function 0) fxp0 -> musyccf0 -> (function 0) musycc-nc0 -> (function 1) musycc-eb0 -> musyccf1 -> (function 0) musycc-nc1 -> (function 1) musycc-eb1 It would not break any compatibiltity with old drivers as the interface and devclass names would stay the same. Nick -- n_hibma@webweaving.org n_hibma@freebsd.org USB project http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 4: 2:25 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 3E0ED37B9B5; Tue, 13 Jun 2000 04:02:20 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id NAA09723; Tue, 13 Jun 2000 13:02:03 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Nick Hibma Cc: Doug Rabson , cvs-committers@freebsd.org, cvs-all@freebsd.org, Mike Smith Subject: Re: PCI attach ordering In-reply-to: Your message of "Tue, 13 Jun 2000 11:39:39 BST." Date: Tue, 13 Jun 2000 13:02:03 +0200 Message-ID: <9721.960894123@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message , Nick Hibma wri tes: > >> Right with the added twist that identification doesn't complete >> until I have had a chance to poke at function 1. In other words, >> I can't really claim function 0 when I see it, because I don't >> know if it is part of the card I'm looking for or another card >> and I will not know until I get to probe function 1. > >Are you saying that when you see the id 0x847x109e, you don't know >whether you are looking at the multifunction card or not (I assume below >that that is not the case and that the ID is sufficient). When I see that ID I know what chip I have, but there may be many different cards based on that chip, and with radical different "frontends". I can only tell what frontend I have after examining the bus bridged by function 1. >1) You need to claim both functions and they both represent different >devices, so they should be attached to by different drivers (call them >musycc-nc and musycc-eb). Assuming that there is no such thing as a card >with only one of the functions your driver attaches to, you then can >relate the two drivers by their unit numbering (hardwiring the device >would be a bit more cumbersome). Right, but the real issue is: How do I claim function 0 when I can only discover that I need to do so after having examined function 1 ? >The botch you have now, musycc0 being card A function 0, musycc1 being >card A function 1, musycc2 being card B function 0, etc. is really not a >good idea. It doesn't matter in practice, the driver will be a netgraph driver and there are four physical ports on each card. >2) Speaking to dfr this morning, he mentioned device_set_softc. I don't >particularly like this idea as it will be abused when porting drivers >from NetBSD. If you use the approach above you will not need to keep any >state as you can grab the softc for either of the device with I particular dislike the softc being allocated by newbus. It is just plain wrong to do so: The softc is driver data. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 4: 3:53 2000 Delivered-To: cvs-all@freebsd.org Received: from finch-post-10.mail.demon.net (finch-post-10.mail.demon.net [194.217.242.38]) by hub.freebsd.org (Postfix) with ESMTP id CB17B37BA9D; Tue, 13 Jun 2000 04:03:43 -0700 (PDT) (envelope-from dfr@qubesoft.com) Received: from calcaphon.demon.co.uk ([193.237.19.5] helo=bluebottle.qubesoft.com) by finch-post-10.mail.demon.net with esmtp (Exim 2.12 #1) id 131oTt-0006Z9-0A; Tue, 13 Jun 2000 11:03:41 +0000 Received: from doug02.qubesoft.com (doug02.qubesoft.com [192.168.1.4]) by bluebottle.qubesoft.com (8.9.3/8.9.1) with ESMTP id MAA02546; Tue, 13 Jun 2000 12:04:05 +0100 (BST) (envelope-from dfr@qubesoft.com) Date: Tue, 13 Jun 2000 12:03:38 +0100 (BST) From: Doug Rabson To: Nick Hibma Cc: Poul-Henning Kamp , Doug Rabson , cvs-committers@freebsd.org, cvs-all@freebsd.org, Mike Smith Subject: Re: PCI attach ordering In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, 13 Jun 2000, Nick Hibma wrote: > > > Right with the added twist that identification doesn't complete > > until I have had a chance to poke at function 1. In other words, > > I can't really claim function 0 when I see it, because I don't > > know if it is part of the card I'm looking for or another card > > and I will not know until I get to probe function 1. > > Are you saying that when you see the id 0x847x109e, you don't know > whether you are looking at the multifunction card or not (I assume below > that that is not the case and that the ID is sufficient). > > > > > The card looks like this: > > > > > > ############### func0 > > # / \ > > # / \ > > # | \ > > PCI ==# | | > > # Framer0 Framer1 [...] > > # | | > > # | | > > ### func1 ======= "ebus"=======-- ID-prom > > > > 1) You need to claim both functions and they both represent different > devices, so they should be attached to by different drivers (call them > musycc-nc and musycc-eb). Assuming that there is no such thing as a card > with only one of the functions your driver attaches to, you then can > relate the two drivers by their unit numbering (hardwiring the device > would be a bit more cumbersome). > > The botch you have now, musycc0 being card A function 0, musycc1 being > card A function 1, musycc2 being card B function 0, etc. is really not a > good idea. > > 2) Speaking to dfr this morning, he mentioned device_set_softc. I don't > particularly like this idea as it will be abused when porting drivers > from NetBSD. If you use the approach above you will not need to keep any > state as you can grab the softc for either of the device with > > device_get_softc(device_get_device(musycc_nc_devclass, unit)); > device_get_softc(device_get_device(musycc_eb_devclass, unit)); > > Or store the device_t and softc pointers in the other devices softc. > > 3) The solution you would like to see I suspect would be to connect a > pci device/card (pcid, pcic is taken) driver to every pci device. pci.c > would then contain a pcid driver that attaches to the pcib for every pci > device/card and adds a child with a pci interface for every function > that the pci card has. pcib obviously present a different interface to > the pcid driver than the pci interface it does now. > > You could register a musyccf driver in that devclass (pcid) and when the > device you want comes along return a higher priority probe for that > device. > > Your driver not loaded, two musycc boards: > > pcib0 -> pcif0 -> (function 0) fxp0 > -> pcif1 -> (function 0) chip0 > -> (function 1) chip1 > -> pcif2 -> (function 0) chip2 > -> (function 1) chip3 > > Your driver loaded: > > pcib0 -> pcif0 -> (function 0) fxp0 > -> musyccf0 -> (function 0) musycc-nc0 > -> (function 1) musycc-eb0 > -> musyccf1 -> (function 0) musycc-nc1 > -> (function 1) musycc-eb1 > > It would not break any compatibiltity with old drivers as the interface > and devclass names would stay the same. I don't see how this can work. There is no probable entity in the pci architecture above the function level. There is no 'card' object which could be identified and attached to. This just adds a level to the device tree without solving any of the problems with implementing this driver and does not fit at all well with the way PCI works. -- Doug Rabson Mail: dfr@qubesoft.com Technical Director, Qube Software Ltd. Phone: +44 20 7431 9995 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 4:21:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A98FD37BA98; Tue, 13 Jun 2000 04:21:18 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA36980; Tue, 13 Jun 2000 04:21:17 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131121.EAA36980@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 04:21:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 04:21:17 PDT Modified files: . modules Log: uac --> src/usr.bin/uac Reviewed by: asmodai Revision Changes Path 1.1259 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 4:25:24 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id 120BF37BB28; Tue, 13 Jun 2000 04:25:18 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id UAA17000; Tue, 13 Jun 2000 20:25:14 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id UAA33870; Tue, 13 Jun 2000 20:24:42 +0900 (JST) Date: Tue, 13 Jun 2000 20:24:40 +0900 Message-ID: <861z21kemf.wl@localhost.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: obrien@FreeBSD.org Cc: ache@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libxpg4 Makefile In-Reply-To: In your message of "Tue, 13 Jun 2000 01:15:30 -0700" <20000613011530.A45723@dragon.nuxi.com> References: <200006130041.RAA43182@freefall.freebsd.org> <20000613011530.A45723@dragon.nuxi.com> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, At Tue, 13 Jun 2000 01:15:30 -0700, o`brien wrote: > On Mon, Jun 12, 2000 at 05:41:39PM -0700, Andrey A. Chernov wrote: > > Modified files: > > lib/libxpg4 Makefile > > Log: > > Bump major to preserve 3.x binaries compatibility Now David, would you please include libxpg4.so.2 (the real one of course) in compat3x ? > Didn't you tell me this was unnecessary when I asked before? Actually it was necessary for the reason I gave yesterday. Anyway, we should/could remove libxpg4 from the 5.x and 4.x source trees after all the ports that link it are fixed. -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5: 6: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 086E537B9B5; Tue, 13 Jun 2000 05:05:56 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA42615; Tue, 13 Jun 2000 05:05:56 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006131205.FAA42615@freefall.freebsd.org> From: SADA Kenji Date: Tue, 13 Jun 2000 05:05:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/jcode.pl/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/13 05:05:56 PDT Modified files: japanese/jcode.pl/pkg PLIST Log: To remove installed directory when no file remains. Revision Changes Path 1.2 +1 -0 ports/japanese/jcode.pl/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5: 8:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AFDA37B867; Tue, 13 Jun 2000 05:08:18 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA42907; Tue, 13 Jun 2000 05:08:18 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006131208.FAA42907@freefall.freebsd.org> From: SADA Kenji Date: Tue, 13 Jun 2000 05:08:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/jcode.pl Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/13 05:08:18 PDT Modified files: japanese/jcode.pl Makefile Log: Changed maintainer's mail address. Revision Changes Path 1.5 +2 -2 ports/japanese/jcode.pl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5:25:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56E5A37B938; Tue, 13 Jun 2000 05:25:20 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA45169; Tue, 13 Jun 2000 05:25:20 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131225.FAA45169@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 05:25:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/uac uac.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 05:25:20 PDT Modified files: usr.bin/uac uac.1 Log: mdoc improvements and better readability of the text. PR: 18811 Submitted by: Christian Weisgerber Reviewed by: asmodai Revision Changes Path 1.4 +13 -12 src/usr.bin/uac/uac.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5:33:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A2A637B9B5; Tue, 13 Jun 2000 05:33:46 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA46406; Tue, 13 Jun 2000 05:33:45 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006131233.FAA46406@freefall.freebsd.org> From: KATO Takenori Date: Tue, 13 Jun 2000 05:33:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 identcpu.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/13 05:33:45 PDT Modified files: sys/i386/i386 identcpu.c Log: Recognize Coppermine Celeron processors whose CPU ID = 0x68?. They were recognized as "Pentium III/Pentium III Xeon." Revision Changes Path 1.82 +2 -2 src/sys/i386/i386/identcpu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5:50:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BE1A37BDEA; Tue, 13 Jun 2000 05:50:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48487; Tue, 13 Jun 2000 05:50:48 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131250.FAA48487@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 05:50:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys reboot.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 05:50:47 PDT Modified files: lib/libc/sys reboot.2 Log: Fix typo: turn of -> turn off. PR: 18805 Submitted by: Yoshihiro Ota Kind of Reviewed by: asmodai ("sure") Revision Changes Path 1.11 +2 -2 src/lib/libc/sys/reboot.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5:54: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3CCE37B62F; Tue, 13 Jun 2000 05:53:54 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48728; Tue, 13 Jun 2000 05:53:54 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131253.FAA48728@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 05:53:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys reboot.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 05:53:54 PDT Modified files: (Branch: RELENG_4) lib/libc/sys reboot.2 Log: MFC: Fix typo: turn of -> turn off Revision Changes Path 1.9.2.2 +2 -2 src/lib/libc/sys/reboot.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 5:54:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4733637B62F; Tue, 13 Jun 2000 05:54:55 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA48887; Tue, 13 Jun 2000 05:54:55 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131254.FAA48887@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 05:54:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys reboot.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 05:54:55 PDT Modified files: (Branch: RELENG_3) lib/libc/sys reboot.2 Log: MFC: Fix typo: turn of -> turn off Revision Changes Path 1.5.4.4 +2 -2 src/lib/libc/sys/reboot.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6: 5:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 058F837B62F; Tue, 13 Jun 2000 06:05:52 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA50977; Tue, 13 Jun 2000 06:05:52 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006131305.GAA50977@freefall.freebsd.org> From: KATO Takenori Date: Tue, 13 Jun 2000 06:05:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/13 06:05:51 PDT Modified files: sys/pc98/i386 machdep.c Log: Merged from sys/i386/i386/machdep.c rev 1.395. Revision Changes Path 1.163 +1 -2 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6: 7:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EAFC37B525; Tue, 13 Jun 2000 06:07:53 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA51293; Tue, 13 Jun 2000 06:07:53 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006131307.GAA51293@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 06:07:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 06:07:53 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Treat \t and \n inside /boot.config as whitespaces. PR: 19215 Revision Changes Path 1.29 +3 -3 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6: 8:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3484437BF45; Tue, 13 Jun 2000 06:08:30 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA51386; Tue, 13 Jun 2000 06:08:30 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006131308.GAA51386@freefall.freebsd.org> From: KATO Takenori Date: Tue, 13 Jun 2000 06:08:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/13 06:08:30 PDT Modified files: sys/conf options.pc98 Log: Merged from sys/conf/options.i386 rev 1.137. Revision Changes Path 1.110 +2 -1 src/sys/conf/options.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6:21:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E9C9D37B64B; Tue, 13 Jun 2000 06:21:49 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA52796; Tue, 13 Jun 2000 06:21:50 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006131321.GAA52796@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 06:21:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 06:21:50 PDT Modified files: (Branch: RELENG_4) sys/boot/i386/boot2 boot2.c Log: MFC: (rev 1.29) treat \t and \n inside /boot.config as whitespaces. Revision Changes Path 1.28.2.1 +3 -3 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6:22:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FE3537B510; Tue, 13 Jun 2000 06:22:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA52906; Tue, 13 Jun 2000 06:22:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006131322.GAA52906@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 06:22:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 06:22:35 PDT Modified files: (Branch: RELENG_3) sys/boot/i386/boot2 boot2.c Log: MFC: (rev 1.29) treat \t and \n inside /boot.config as whitespaces. Revision Changes Path 1.18.2.6 +3 -3 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6:28:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EF7D37B510; Tue, 13 Jun 2000 06:28:25 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA53445; Tue, 13 Jun 2000 06:28:25 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200006131328.GAA53445@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Tue, 13 Jun 2000 06:28:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xkeycaps Makefile ports/x11/xkeycaps/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/06/13 06:28:25 PDT Modified files: x11/xkeycaps Makefile x11/xkeycaps/files md5 Log: Upgrade to version 2.46 Submitted by: Dag-Erling Smorgrav Revision Changes Path 1.14 +2 -2 ports/x11/xkeycaps/Makefile 1.7 +1 -1 ports/x11/xkeycaps/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 6:46:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1360C37B8C3; Tue, 13 Jun 2000 06:46:26 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA03935; Tue, 13 Jun 2000 06:46:26 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006131346.GAA03935@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Jun 2000 06:46:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/13 06:46:26 PDT Modified files: (Branch: RELENG_4) share/man/man8 Makefile Log: MFC: - rev 1.14: add appropriate MLINKS for rc.* - rev 1.15: enable installation of picobsd.8 Revision Changes Path 1.13.2.2 +7 -2 src/share/man/man8/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 7: 3:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D1DEF37B764; Tue, 13 Jun 2000 07:03:16 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA21372; Tue, 13 Jun 2000 07:03:16 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131403.HAA21372@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 07:03:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 07:03:15 PDT Modified files: . modules Log: gnome-look --> ports/x11-toolkits/gnome-look Revision Changes Path 1.1260 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 7: 3:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BE66537BFF2; Tue, 13 Jun 2000 07:03:41 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA21443; Tue, 13 Jun 2000 07:03:41 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131403.HAA21443@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 07:03:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gnome-look - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 07:03:40 PDT ports/x11-toolkits/gnome-look - Imported sources Update of /home/ncvs/ports/x11-toolkits/gnome-look In directory freefall.freebsd.org:/d/home/sobomax/gnome-look Log Message: Initial import of gnome-look - a yet another GTK+ theme engine. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/x11-toolkits/gnome-look/Makefile N ports/x11-toolkits/gnome-look/files/md5 N ports/x11-toolkits/gnome-look/pkg/COMMENT N ports/x11-toolkits/gnome-look/pkg/DESCR N ports/x11-toolkits/gnome-look/pkg/PLIST N ports/x11-toolkits/gnome-look/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 7: 6: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B48437B90E; Tue, 13 Jun 2000 07:06:06 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA22696; Tue, 13 Jun 2000 07:06:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131406.HAA22696@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 07:06:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 07:06:05 PDT Modified files: . modules Log: gtk-engines-collection --> ports/x11-toolkits/gtk-engines-collection Revision Changes Path 1.1261 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 7: 7: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DAD637BC64; Tue, 13 Jun 2000 07:07:04 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA22885; Tue, 13 Jun 2000 07:07:03 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131407.HAA22885@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 07:07:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtk-engines-collection - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 07:07:03 PDT ports/x11-toolkits/gtk-engines-collection - Imported sources Update of /home/ncvs/ports/x11-toolkits/gtk-engines-collection In directory freefall.freebsd.org:/d/home/sobomax/gtk-engines-collection Log Message: Initial import of gtk-engines-collection - a meta-port installing several GTK+ theme engines. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/x11-toolkits/gtk-engines-collection/Makefile N ports/x11-toolkits/gtk-engines-collection/pkg/COMMENT N ports/x11-toolkits/gtk-engines-collection/pkg/DESCR N ports/x11-toolkits/gtk-engines-collection/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 7: 8:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 762A337BE2C; Tue, 13 Jun 2000 07:08:46 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA23082; Tue, 13 Jun 2000 07:08:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131408.HAA23082@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 07:08:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 07:08:45 PDT Modified files: x11-toolkits Makefile Log: Activate gnome-look and gtk-engines-collection. Revision Changes Path 1.77 +3 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 7:23:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 39D4837BE91; Tue, 13 Jun 2000 07:23:37 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA25502; Tue, 13 Jun 2000 07:23:37 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006131423.HAA25502@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 13 Jun 2000 07:23:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include ctype.h src/lib/libc/locale isctype.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/13 07:23:37 PDT Modified files: (Branch: RELENG_3) include ctype.h lib/libc/locale isctype.c Log: MFC: Back up following macros by functions: ishexnumber, isideogram, isnumber, isphonogram, isrune, isspecial. Fix ordering. Revision Changes Path 1.14.2.1 +10 -5 src/include/ctype.h 1.5.2.1 +58 -7 src/lib/libc/locale/isctype.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8: 3:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B81037BE3A; Tue, 13 Jun 2000 08:03:15 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA30899; Tue, 13 Jun 2000 08:03:15 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006131503.IAA30899@freefall.freebsd.org> From: SADA Kenji Date: Tue, 13 Jun 2000 08:03:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/13 08:03:14 PDT Modified files: . modules Log: tripwire131 --> ports/security/tripwire131 Revision Changes Path 1.1262 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8: 8: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C2D337B97D; Tue, 13 Jun 2000 08:08:00 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA32495; Tue, 13 Jun 2000 08:08:00 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006131508.IAA32495@freefall.freebsd.org> From: SADA Kenji Date: Tue, 13 Jun 2000 08:07:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/tripwire131 - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/13 08:07:56 PDT ports/security/tripwire131 - Imported sources Update of /home/ncvs/ports/security/tripwire131 In directory freefall.freebsd.org:/d/home/sada/work/tripwire131 Log Message: Tripwire is a tool that aids system administrators and users in monitoring a designated set of files for any changes. Used with system files on a regular (e.g., daily) basis, Tripwire can notify system administrators of corrupted or tampered files, so damage control measures can be taken in a timely manner. (From ports/security/tripwire/pkg/DESCR) This is a port for Tripwire beta version, 1.3.1. PR: 18964 Submitted by: Cy Schubert Status: Vendor Tag: CY_SCHUBERT Release Tags: v1_3_1 N ports/security/tripwire131/Makefile N ports/security/tripwire131/files/twcheck N ports/security/tripwire131/files/md5 N ports/security/tripwire131/files/conf-freebsd2.h N ports/security/tripwire131/files/tw.conf.freebsd2 N ports/security/tripwire131/patches/patch-ae N ports/security/tripwire131/patches/patch-aa N ports/security/tripwire131/patches/patch-ab N ports/security/tripwire131/patches/patch-ac N ports/security/tripwire131/patches/patch-ad N ports/security/tripwire131/patches/patch-bd N ports/security/tripwire131/patches/patch-bc N ports/security/tripwire131/patches/patch-bb N ports/security/tripwire131/patches/patch-ba N ports/security/tripwire131/pkg/COMMENT N ports/security/tripwire131/pkg/DESCR N ports/security/tripwire131/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8: 9:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DABAD37B97D; Tue, 13 Jun 2000 08:09:38 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA32766; Tue, 13 Jun 2000 08:09:38 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006131509.IAA32766@freefall.freebsd.org> From: SADA Kenji Date: Tue, 13 Jun 2000 08:09:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/13 08:09:38 PDT Modified files: security Makefile Log: Activate tripwire131. PR: 18964 Submitted by: Cy Schubert Revision Changes Path 1.107 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:21:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A51B237BEBC; Tue, 13 Jun 2000 08:21:19 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA34228; Tue, 13 Jun 2000 08:21:18 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131521.IAA34228@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 08:21:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/sawfish/patches patch-ae ports/x11-wm/sawfish/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 08:21:18 PDT Modified files: x11-wm/sawfish/pkg PLIST Added files: x11-wm/sawfish/patches patch-ae Log: Fix installation of Gnome-Control-Center pieces. "The sawfish window manager (x11-wm/sawfish) installs a Gnome control applet by default. This applet is installed into /usr/X11R6/share/control-center however this should be /usr/X11R6/share/gnome/control-center in FreeBSD (Gnome 1.2.0). The capplet doesn't work otherwise." PR: 19242 Submitted by: Stijn Hoop Revision Changes Path 1.14 +27 -24 ports/x11-wm/sawfish/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:31:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7238237BECC; Tue, 13 Jun 2000 08:31:06 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA35788; Tue, 13 Jun 2000 08:31:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131531.IAA35788@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 08:31:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 08:31:05 PDT Modified files: . modules Log: buffy --> ports/x11-toolkits/buffy Revision Changes Path 1.1263 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:32:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C1E637BEBD; Tue, 13 Jun 2000 08:32:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA35901; Tue, 13 Jun 2000 08:32:04 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131532.IAA35901@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 08:32:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/buffy - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 08:32:04 PDT ports/x11-toolkits/buffy - Imported sources Update of /home/ncvs/ports/x11-toolkits/buffy In directory freefall.freebsd.org:/d/home/sobomax/buffy Log Message: Initial import of buffy - a yet yet another funny GTK+ theme engine. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/x11-toolkits/buffy/Makefile N ports/x11-toolkits/buffy/files/md5 N ports/x11-toolkits/buffy/pkg/COMMENT N ports/x11-toolkits/buffy/pkg/DESCR N ports/x11-toolkits/buffy/pkg/PLIST N ports/x11-toolkits/buffy/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:36:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 380E037BEE1; Tue, 13 Jun 2000 08:36:28 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA36759; Tue, 13 Jun 2000 08:36:27 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006131536.IAA36759@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 13 Jun 2000 08:36:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include ctype.h src/lib/libc/locale isctype.c table.c src/usr.bin/mklocale lex.l yacc.y Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/13 08:36:27 PDT Modified files: (Branch: RELENG_3) include ctype.h lib/libc/locale isctype.c table.c usr.bin/mklocale lex.l yacc.y Log: MFC: Fix namespace pollution which will less likely cause problems in the future. This should fix C++ stdlib problems when using ctype.h as well. Revision Changes Path 1.14.2.2 +32 -32 src/include/ctype.h 1.5.2.2 +18 -18 src/lib/libc/locale/isctype.c 1.11.2.2 +129 -33 src/lib/libc/locale/table.c 1.3.4.2 +29 -14 src/usr.bin/mklocale/lex.l 1.5.2.1 +57 -56 src/usr.bin/mklocale/yacc.y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:37:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66BCD37B966; Tue, 13 Jun 2000 08:37:47 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA36955; Tue, 13 Jun 2000 08:37:47 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131537.IAA36955@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 08:37:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtk-engines-collection Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 08:37:47 PDT Modified files: x11-toolkits/gtk-engines-collection Makefile Log: Add buffy. Revision Changes Path 1.2 +4 -3 ports/x11-toolkits/gtk-engines-collection/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:38:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0609037B844; Tue, 13 Jun 2000 08:38:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA37100; Tue, 13 Jun 2000 08:38:36 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006131538.IAA37100@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 13 Jun 2000 08:38:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/13 08:38:36 PDT Modified files: x11-toolkits Makefile Log: Activate buffy. Revision Changes Path 1.78 +2 -1 ports/x11-toolkits/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 8:44: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D025337BB4E; Tue, 13 Jun 2000 08:44:05 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA37979; Tue, 13 Jun 2000 08:44:05 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006131544.IAA37979@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 13 Jun 2000 08:44:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_socket.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/13 08:44:05 PDT Modified files: sys/kern uipc_socket.c Log: Fix panic by moving the prp == 0 check up the order of sanity checks. Submitted by: Bart Thate on -current Approved by: rwatson Revision Changes Path 1.74 +4 -3 src/sys/kern/uipc_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 9:39:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1366337B551; Tue, 13 Jun 2000 09:39:50 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA46294; Tue, 13 Jun 2000 09:39:49 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006131639.JAA46294@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 13 Jun 2000 09:39:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/wget/patches patch-ftp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/13 09:39:49 PDT Added files: ftp/wget/patches patch-ftp.c Log: Fix chmod symlink vulnerability where when invoked with the -N option, it tries to chmod downloaded symlinks, but actually permissions are changed at target files. There is the potential to chmod target files to world-writable. Submitted by: Jun Kuriyama Koga Youichirou Obtained from: Const Kaplinsky (BugTraq Feb 02, 1999) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 9:49:35 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id C472C37C135; Tue, 13 Jun 2000 09:49:24 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id JAA37022; Tue, 13 Jun 2000 09:49:23 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id JAA84140; Tue, 13 Jun 2000 09:49:57 -0700 (PDT) (envelope-from obrien) Date: Tue, 13 Jun 2000 09:49:57 -0700 From: "David O'Brien" To: Akinori -Aki- MUSHA Cc: ache@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libxpg4 Makefile Message-ID: <20000613094957.B84054@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200006130041.RAA43182@freefall.freebsd.org> <20000613011530.A45723@dragon.nuxi.com> <861z21kemf.wl@localhost.local.idaemons.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <861z21kemf.wl@localhost.local.idaemons.org>; from knu@idaemons.org on Tue, Jun 13, 2000 at 08:24:40PM +0900 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jun 13, 2000 at 08:24:40PM +0900, Akinori -Aki- MUSHA wrote: > > Didn't you tell me this was unnecessary when I asked before? > > Actually it was necessary for the reason I gave yesterday. Yes, I knew a bump would be needed for some case. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 10:12:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B8F1837BFC3; Tue, 13 Jun 2000 10:12:45 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA51715; Tue, 13 Jun 2000 10:12:45 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131712.KAA51715@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 10:12:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/uac uac.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 10:12:44 PDT Modified files: (Branch: RELENG_4) usr.bin/uac uac.1 Log: MFC: mdoc improvements and better readability of the text. Requested by: obrien Revision Changes Path 1.3.2.1 +13 -12 src/usr.bin/uac/uac.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 10:43:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A555E37BC86; Tue, 13 Jun 2000 10:43:22 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA56847; Tue, 13 Jun 2000 10:43:22 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006131743.KAA56847@freefall.freebsd.org> From: Alexander Langer Date: Tue, 13 Jun 2000 10:43:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/sys i386_get_ioperm.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/13 10:43:21 PDT Modified files: (Branch: RELENG_3) lib/libc/i386/sys i386_get_ioperm.2 Log: Add note, that options VM86 is required for these functions. PR: 18943 Submitted by: Ben Smithurst Reviewed by: asmodai Revision Changes Path 1.2.2.4 +5 -1 src/lib/libc/i386/sys/i386_get_ioperm.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 11: 5:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B19A37BFC6; Tue, 13 Jun 2000 11:05:40 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA60515; Tue, 13 Jun 2000 11:05:40 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006131805.LAA60515@freefall.freebsd.org> From: Jim Mock Date: Tue, 13 Jun 2000 11:05:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/advanced-networking chapter.sgml doc/en_US.ISO_8859-1/books/handbook/backups chapter.sgml doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml doc/en_US.ISO_8859-1/books/handbook/disks chapter.sgml doc/en_US.ISO_8859-1/books/handbook/eresources chapter.sgml ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/13 11:05:40 PDT Modified files: en_US.ISO_8859-1/books/handbook/advanced-networking chapter.sgml en_US.ISO_8859-1/books/handbook/backups chapter.sgml en_US.ISO_8859-1/books/handbook/contrib chapter.sgml en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml en_US.ISO_8859-1/books/handbook/disks chapter.sgml en_US.ISO_8859-1/books/handbook/eresources chapter.sgml en_US.ISO_8859-1/books/handbook/hw chapter.sgml Log: Attack of the spelling police. The grammar police were also occasionally called onto the scene. Revision Changes Path 1.26 +62 -62 doc/en_US.ISO_8859-1/books/handbook/advanced-networking/chapter.sgml 1.24 +6 -6 doc/en_US.ISO_8859-1/books/handbook/backups/chapter.sgml 1.226 +10 -10 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml 1.49 +15 -15 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml 1.20 +5 -5 doc/en_US.ISO_8859-1/books/handbook/disks/chapter.sgml 1.45 +6 -6 doc/en_US.ISO_8859-1/books/handbook/eresources/chapter.sgml 1.33 +61 -63 doc/en_US.ISO_8859-1/books/handbook/hw/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 11: 9:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0EE7E37B92B; Tue, 13 Jun 2000 11:09:46 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61078; Tue, 13 Jun 2000 11:09:46 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006131809.LAA61078@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 13 Jun 2000 11:09:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/compat/compat3x.i386 libxpg4.so.2.gz.uu Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/13 11:09:45 PDT Added files: lib/compat/compat3x.i386 libxpg4.so.2.gz.uu Log: Add libxpg4 as the current version had it's SO version number bumped and it no longer contains the locale functions. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 11:10:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B666C37B92B; Tue, 13 Jun 2000 11:10:27 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA61231; Tue, 13 Jun 2000 11:10:27 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006131810.LAA61231@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 13 Jun 2000 11:10:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/compat/compat3x.i386 libxpg4.so.2.gz.uu Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/13 11:10:27 PDT Added files: (Branch: RELENG_4) lib/compat/compat3x.i386 libxpg4.so.2.gz.uu Log: MFC. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 11:49:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C984D37B778; Tue, 13 Jun 2000 11:49:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA65774; Tue, 13 Jun 2000 11:49:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006131849.LAA65774@freefall.freebsd.org> From: Peter Wemm Date: Tue, 13 Jun 2000 11:49:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT tagcheck Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/13 11:49:12 PDT Modified files: . tagcheck Log: Add obrien to the 'he knows what he is doing' list for massaging tags (in src/contrib) Revision Changes Path 1.3 +2 -2 CVSROOT/tagcheck To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 12:27: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 63FB637C0AF; Tue, 13 Jun 2000 12:26:56 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA73338; Tue, 13 Jun 2000 12:26:56 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006131926.MAA73338@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 13 Jun 2000 12:26:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/13 12:26:56 PDT src/contrib/gcc - Imported sources Update of /home/ncvs/src/contrib/gcc In directory freefall.freebsd.org:/c/tmp/cvs-serv73098 Log Message: As in GCC 2.96 these files from libiberty are absolutely required and are imported directly into src/contrib/gcc due to their starting life there, and to try to prevent needing to import all of libiberty (in yet *another* place): ansidecl.h choose-temp.c cplus-dem.c demangle.h getopt.c getopt.h getopt1.c getpwd.c hashtab.c hashtab.h libiberty.h obstack.c obstack.h partition.h pexecute.c splay-tree.h splay-tree.c Status: Vendor Tag: FSF Release Tags: gcc_cvs_20000603 N src/contrib/gcc/hashtab.c N src/contrib/gcc/hashtab.h No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 12:28:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E26B337C2BC; Tue, 13 Jun 2000 12:28:24 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA73508; Tue, 13 Jun 2000 12:28:25 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006131928.MAA73508@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 13 Jun 2000 12:28:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc gcc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/13 12:28:25 PDT Modified files: contrib/gcc gcc.c Log: Quiet compiler warnings in our FREEBSD_NATIVE code. Revision Changes Path 1.19 +9 -7 src/contrib/gcc/gcc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 13:17:49 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D59937B789; Tue, 13 Jun 2000 13:17:43 -0700 (PDT) (envelope-from groudier@FreeBSD.org) Received: (from groudier@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA79657; Tue, 13 Jun 2000 13:17:43 -0700 (PDT) (envelope-from groudier@FreeBSD.org) Message-Id: <200006132017.NAA79657@freefall.freebsd.org> From: Gerard Roudier Date: Tue, 13 Jun 2000 13:17:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sym sym_hipd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG groudier 2000/06/13 13:17:42 PDT Modified files: sys/dev/sym sym_hipd.c Log: Fix a problem of user settings from TEKRAM NVRAM layout introduced in driver 1.5.3. The driver was confused by the bogus TEKRAM table used to translate user sync. setting to SCSI sync. factor. Btw, the new TEKRAM DC-390 U3D and U3W Ultra-160 controllers seem to be using BIOS from SYMBIOS/LSI and thus SYMBIOS NVRAM layout. If that means that TEKRAM will now offer real SYMBIOS software compatible SCSI controllers, then it is a *GREAT NEWS*. Revision Changes Path 1.16 +11 -7 src/sys/dev/sym/sym_hipd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 14:54:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0273137BFF8; Tue, 13 Jun 2000 14:54:08 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA92494; Tue, 13 Jun 2000 14:54:07 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200006132154.OAA92494@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Tue, 13 Jun 2000 14:54:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/06/13 14:54:07 PDT Modified files: x11/XFree86-4 Makefile Log: Unbreak 'make clean' and 'make readmes' Revision Changes Path 1.83 +4 -5 ports/x11/XFree86-4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 15:28:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 810E937C112; Tue, 13 Jun 2000 15:28:50 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA97611; Tue, 13 Jun 2000 15:28:50 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006132228.PAA97611@freefall.freebsd.org> From: Peter Wemm Date: Tue, 13 Jun 2000 15:28:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/config Makefile config.h config.y configvers.h lang.l main.c mkheaders.c mkmakefile.c mkoptions.c mkioconf.c src/sys/alpha/conf GENERIC.hints gethints.pl GENERIC SIMOS src/sys/boot/forth loader.conf src/sys/conf Makefile.alpha ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/13 15:28:50 PDT Modified files: usr.sbin/config Makefile config.h config.y configvers.h lang.l main.c mkheaders.c mkmakefile.c mkoptions.c sys/alpha/conf GENERIC SIMOS sys/boot/forth loader.conf sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 files.alpha files.i386 files.pc98 sys/i386/conf GENERIC NEWCARD NOTES sys/i386/isa if_cx.c sys/i4b/driver i4b_isppp.c sys/i4b/tina-dd i4b_tina_dd.c sys/kern subr_bus.c sys/pc98/conf GENERIC sys/pc98/pc98 wd.c Added files: sys/alpha/conf GENERIC.hints gethints.pl sys/i386/conf GENERIC.hints Makefile NEWCARD.hints gethints.pl makeLINT.pl sys/pc98/conf GENERIC.hints gethints.pl Removed files: usr.sbin/config mkioconf.c sys/i386/conf LINT Log: Borrow phk's axe and apply the next stage of config(8)'s evolution. Use Warner Losh's "hint" driver to decode ascii strings to fill the resource table at boot time. config(8) no longer generates an ioconf.c table - ie: the configuration no longer has to be compiled into the kernel. You can reconfigure your isa devices with the likes of this at loader(8) time: set hint.ed.0.port=0x320 userconfig will be rewritten to use this style interface one day and will move to /boot/userconfig.4th or something like that. It is still possible to statically compile in a set of hints into a kernel if you do not wish to use loader(8). See the "hints" directive in GENERIC as an example. All device wiring has been moved out of config(8). There is a set of helper scripts (see i386/conf/gethints.pl, and the same for alpha and pc98) that extract the 'at isa? port foo irq bar' from the old files and produces a hints file. If you install this file as /boot/device.hints (and update /boot/defaults/loader.conf - You can do a build/install in sys/boot) then loader will load it automatically for you. You can also compile in the hints directly with: hints "device.hints" as well. There are a few things that I'm not too happy with yet. Under this scheme, things like LINT would no longer be useful as "documentation" of settings. I have renamed this file to 'NOTES' and stored the example hints strings in it. However... this is not something that config(8) understands, so there is a script that extracts the build-specific data from the documentation file (NOTES) to produce a LINT that can be config'ed and built. A stack of man4 pages will need updating. :-/ Also, since there is no longer a difference between 'device' and 'pseudo-device' I collapsed the two together, and the resulting 'device' takes a 'number of units' for devices that still have it statically allocated. eg: 'device fe 4' will compile the fe driver with NFE set to 4. You can then set hints for 4 units (0 - 3). Also note that 'device fe0' will be interpreted as "zero units of 'fe'" which would be bad, so there is a config warning for this. This is only needed for old drivers that still have static limits on numbers of units. All the statically limited drivers that I could find were marked. Please exercise EXTREME CAUTION when transitioning! Moral support by: phk, msmith, dfr, asmodai, imp, and others Revision Changes Path 1.27 +2 -2 src/usr.sbin/config/Makefile 1.37 +14 -29 src/usr.sbin/config/config.h 1.43 +21 -230 src/usr.sbin/config/config.y 1.21 +2 -2 src/usr.sbin/config/configvers.h 1.28 +10 -36 src/usr.sbin/config/lang.l 1.39 +17 -23 src/usr.sbin/config/main.c 1.16 +20 -42 src/usr.sbin/config/mkheaders.c 1.53 +103 -68 src/usr.sbin/config/mkmakefile.c 1.19 +11 -15 src/usr.sbin/config/mkoptions.c 1.81 +24 -24 src/sys/alpha/conf/GENERIC 1.12 +8 -8 src/sys/alpha/conf/SIMOS 1.27 +2 -2 src/sys/boot/forth/loader.conf 1.61 +8 -8 src/sys/conf/Makefile.alpha 1.191 +8 -8 src/sys/conf/Makefile.i386 1.92 +8 -8 src/sys/conf/Makefile.pc98 1.52 +1 -2 src/sys/conf/files.alpha 1.322 +1 -2 src/sys/conf/files.i386 1.155 +1 -3 src/sys/conf/files.pc98 1.260 +40 -46 src/sys/i386/conf/GENERIC 1.27 +41 -43 src/sys/i386/conf/NEWCARD 1.783 +404 -271 src/sys/i386/conf/NOTES 1.34 +1 -5 src/sys/i386/isa/if_cx.c 1.8 +1 -4 src/sys/i4b/driver/i4b_isppp.c 1.7 +1 -5 src/sys/i4b/tina-dd/i4b_tina_dd.c 1.68 +98 -63 src/sys/kern/subr_bus.c 1.142 +122 -68 src/sys/pc98/conf/GENERIC 1.113 +3 -6 src/sys/pc98/pc98/wd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 15:55:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B366E37B6D1; Tue, 13 Jun 2000 15:55:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA99929; Tue, 13 Jun 2000 15:55:50 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132255.PAA99929@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 15:55:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gide/patches patch-bc patch-bd Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 15:55:50 PDT Modified files: devel/gide/patches patch-bc patch-bd Log: Fix compile-time location of locale NLS directories Revision Changes Path 1.2 +71 -6 ports/devel/gide/patches/patch-bc 1.2 +10 -1 ports/devel/gide/patches/patch-bd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 15:57:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C76937BCE4; Tue, 13 Jun 2000 15:57:19 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA00240; Tue, 13 Jun 2000 15:57:19 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132257.PAA00240@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 15:57:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/gnomepilot/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 15:57:19 PDT Modified files: palm/gnomepilot/patches patch-aa Log: Fix call to glib-config (should be $GLIB_CONFIG) in configure script. Revision Changes Path 1.2 +17 -6 ports/palm/gnomepilot/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 15:59:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35F9837BB60; Tue, 13 Jun 2000 15:59:08 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA00446; Tue, 13 Jun 2000 15:59:07 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132259.PAA00446@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 15:59:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/pan Makefile ports/news/pan/patches patch-ag patch-ah patch-ae Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 15:59:07 PDT Modified files: news/pan Makefile news/pan/patches patch-ag patch-ah Removed files: news/pan/patches patch-ae Log: Use print/gnomeprint and replace supplied uulib library with the shared version from converters/uulib Revision Changes Path 1.24 +5 -3 ports/news/pan/Makefile 1.2 +9 -4 ports/news/pan/patches/patch-ag 1.2 +22 -4 ports/news/pan/patches/patch-ah To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 16: 1:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2634F37BB60; Tue, 13 Jun 2000 16:01:17 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA00750; Tue, 13 Jun 2000 16:01:16 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132301.QAA00750@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 16:01:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/pspell Makefile ports/textproc/pspell/files md5 ports/textproc/pspell/patches patch-aa patch-ab patch-ac ports/textproc/pspell/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 16:01:16 PDT Modified files: textproc Makefile Added files: textproc/pspell Makefile textproc/pspell/files md5 textproc/pspell/patches patch-aa patch-ab patch-ac textproc/pspell/pkg COMMENT DESCR PLIST Log: Add pspell, a library to provide a generic interface to installed spell checker libraries (aspell, ispell, etc..) Revision Changes Path 1.95 +2 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 16: 5:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A0F9437BFBD; Tue, 13 Jun 2000 16:05:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA01395; Tue, 13 Jun 2000 16:05:03 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132305.QAA01395@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 16:05:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/aspell Makefile ports/textproc/aspell/files md5 ports/textproc/aspell/patches patch-aj patch-ah ports/textproc/aspell/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 16:05:03 PDT Modified files: textproc/aspell Makefile textproc/aspell/files md5 textproc/aspell/patches patch-ah textproc/aspell/pkg PLIST Added files: textproc/aspell/patches patch-aj Log: Update to 0.31 .. now requires textproc/pspell Revision Changes Path 1.16 +9 -6 ports/textproc/aspell/Makefile 1.9 +1 -1 ports/textproc/aspell/files/md5 1.2 +17 -8 ports/textproc/aspell/patches/patch-ah 1.7 +10 -3 ports/textproc/aspell/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 16: 5:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC95137BFBD; Tue, 13 Jun 2000 16:05:44 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02282; Tue, 13 Jun 2000 16:05:44 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132305.QAA02282@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 16:05:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/gaspell Makefile ports/textproc/gaspell/files md5 ports/textproc/gaspell/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 16:05:44 PDT Modified files: textproc/gaspell Makefile textproc/gaspell/files md5 textproc/gaspell/patches patch-aa Log: Update to 0.30 Revision Changes Path 1.5 +4 -4 ports/textproc/gaspell/Makefile 1.2 +1 -1 ports/textproc/gaspell/files/md5 1.2 +11 -2 ports/textproc/gaspell/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 16: 7: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E8DB37BDEB; Tue, 13 Jun 2000 16:06:57 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02453; Tue, 13 Jun 2000 16:06:57 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006132306.QAA02453@freefall.freebsd.org> From: Ade Lovett Date: Tue, 13 Jun 2000 16:06:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/13 16:06:57 PDT Modified files: . modules Log: pspell -> ports/textproc/pspell Revision Changes Path 1.1264 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 16:18:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D189537C109; Tue, 13 Jun 2000 16:18:43 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA03442; Tue, 13 Jun 2000 16:18:44 -0700 (PDT) (envelope-from cg@FreeBSD.org) Message-Id: <200006132318.QAA03442@freefall.freebsd.org> From: Cameron Grant Date: Tue, 13 Jun 2000 16:18:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm channel.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cg 2000/06/13 16:18:44 PDT Modified files: sys/dev/sound/pcm channel.c Log: handle closing differently - should fix the end-of-sample cutoff bug Revision Changes Path 1.29 +26 -23 src/sys/dev/sound/pcm/channel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 16:24:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA99837C109; Tue, 13 Jun 2000 16:24:40 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA03910; Tue, 13 Jun 2000 16:24:41 -0700 (PDT) (envelope-from cg@FreeBSD.org) Message-Id: <200006132324.QAA03910@freefall.freebsd.org> From: Cameron Grant Date: Tue, 13 Jun 2000 16:24:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pci emu10k1.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cg 2000/06/13 16:24:41 PDT Modified files: sys/dev/sound/pci emu10k1.c Log: add alpha-quality recording code and handle pci error interrupts - this may prevent the card generating an nmi on ecc systems. for now a message is printed on every pci error and it seems every time we start playng we get one Revision Changes Path 1.11 +354 -72 src/sys/dev/sound/pci/emu10k1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 17:47:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BD58C37BE7D; Tue, 13 Jun 2000 17:47:37 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA12343; Tue, 13 Jun 2000 17:47:37 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006140047.RAA12343@freefall.freebsd.org> From: Jim Mock Date: Tue, 13 Jun 2000 17:47:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/install chapter.sgml doc/en_US.ISO_8859-1/books/handbook/internals chapter.sgml doc/en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml doc/en_US.ISO_8859-1/books/handbook/kerneldebug chapter.sgml doc/en_US.ISO_8859-1/books/handbook/kernelopts chapter.sgml doc/en_US.ISO_8859-1/books/handbook/l10n chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/13 17:47:37 PDT Modified files: en_US.ISO_8859-1/books/handbook/install chapter.sgml en_US.ISO_8859-1/books/handbook/internals chapter.sgml en_US.ISO_8859-1/books/handbook/kernelconfig chapter.sgml en_US.ISO_8859-1/books/handbook/kerneldebug chapter.sgml en_US.ISO_8859-1/books/handbook/kernelopts chapter.sgml en_US.ISO_8859-1/books/handbook/l10n chapter.sgml Log: Attack of the spelling police, part II. Revision Changes Path 1.44 +6 -6 doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml 1.22 +22 -22 doc/en_US.ISO_8859-1/books/handbook/internals/chapter.sgml 1.28 +5 -5 doc/en_US.ISO_8859-1/books/handbook/kernelconfig/chapter.sgml 1.24 +2 -2 doc/en_US.ISO_8859-1/books/handbook/kerneldebug/chapter.sgml 1.16 +3 -3 doc/en_US.ISO_8859-1/books/handbook/kernelopts/chapter.sgml 1.37 +12 -12 doc/en_US.ISO_8859-1/books/handbook/l10n/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 18:58:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FA4237BE0F; Tue, 13 Jun 2000 18:58:14 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA19945; Tue, 13 Jun 2000 18:58:14 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006140158.SAA19945@freefall.freebsd.org> From: Satoshi Asami Date: Tue, 13 Jun 2000 18:58:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.port.subdir.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/13 18:58:14 PDT Modified files: Mk bsd.port.subdir.mk Log: Fix minor bug -- add realinstall to TARGETS. Submitted by: hoek Revision Changes Path 1.37 +3 -3 ports/Mk/bsd.port.subdir.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 19:14:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7068F37BE52; Tue, 13 Jun 2000 19:14:49 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA22236; Tue, 13 Jun 2000 19:14:49 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006140214.TAA22236@freefall.freebsd.org> From: Satoshi Asami Date: Tue, 13 Jun 2000 19:14:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.sites.mk bsd.port.mk Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/13 19:14:49 PDT Modified files: Mk bsd.port.mk Added files: Mk bsd.sites.mk Log: (1) New variables INSTALL_SHLIBS and LDCONFIG_DIRS. When INSTALL_SHLIBS is set, ldconfig is automatically called from post-install and necessary @exec and @unexec lines are added to PLIST. Requested by: lioux@uol.com.br Reviewed by: the ports list, in particular sobomax (1a) Add PREFIX=%D LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} to PLIST_SUB. These are needed by INSTALL_SHLIBS, but also could be useful in general. (2) Move master/mirror site definitions to bsd.sites.mk and include it from bsd.port.mk. Open bsd.sites.mk to other committers. Submitted by: reg (2a) Add MASTER_SITE_SOURCEFORGE. Submitted by: sobomax (who wrote SORCEFORGE, but I assume that's a typo :) (2b) Move MASTER_SITE_LOCAL from ".../ports/distfiles/LOCAL_PORTS/" to ".../ports/local-distfiles/%SUBDIR%/" which will be mirrored from peoples' ~user/public_distfiles on freefall. Add two mirrors (Japan and Germany). Requested by: obrien (moving) Submitted by: will (German mirror) (3) Simplify definition of PKGBASE since it can now be defined as simply ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}, instead of sed'ing out the version number from ${PKGNAME}. Submitted by: hoek (4) Remove unnecessary targets prefix and mtree-file, which can be implemented as "make -V PREFIX" and "make -V MTREE_FILE", respectively. Don't define MTREE_FILE when NO_MTREE is set so "make -V MTREE_FILE" won't print out anything. (5) Various minor typo and grammar fixes. (6) Define NONEXISTENT?=/nonexistent. This will help quiet portlint warnings, among other things. Revision Changes Path 1.339 +43 -109 ports/Mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 19:45:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 94B9337B689; Tue, 13 Jun 2000 19:45:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA24974; Tue, 13 Jun 2000 19:45:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006140245.TAA24974@freefall.freebsd.org> From: Peter Wemm Date: Tue, 13 Jun 2000 19:45:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf gethints.pl src/sys/i386/conf gethints.pl src/sys/pc98/conf gethints.pl Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/13 19:45:12 PDT Modified files: sys/alpha/conf gethints.pl sys/i386/conf gethints.pl sys/pc98/conf gethints.pl Log: Print error messages to stderr, not stdout. Revision Changes Path 1.2 +2 -2 src/sys/alpha/conf/gethints.pl 1.2 +2 -2 src/sys/i386/conf/gethints.pl 1.2 +2 -2 src/sys/pc98/conf/gethints.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 20:35:52 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id ED01537BB4B; Tue, 13 Jun 2000 20:35:47 -0700 (PDT) Date: Tue, 13 Jun 2000 20:35:47 -0700 From: "Andrey A. Chernov" To: David O'Brien Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libxpg4 Makefile Message-ID: <20000613203547.A81694@freebsd.org> References: <200006130041.RAA43182@freefall.freebsd.org> <20000613011530.A45723@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000613011530.A45723@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, Jun 13, 2000 at 01:15:30AM -0700 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jun 13, 2000 at 01:15:30AM -0700, David O'Brien wrote: > On Mon, Jun 12, 2000 at 05:41:39PM -0700, Andrey A. Chernov wrote: > > Modified files: > > lib/libxpg4 Makefile > > Log: > > Bump major to preserve 3.x binaries compatibility > > Didn't you tell me this was unnecessary when I asked before? You don't ask about 3.x binaries, just about functions. All functions are the same, but functionality reduced for 3.x binaries in this case and I don't think about 3.x at all at the moment of asking. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 21:13: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5984837BB90; Tue, 13 Jun 2000 21:13:02 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA35047; Tue, 13 Jun 2000 21:13:02 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Message-Id: <200006140413.VAA35047@freefall.freebsd.org> From: Mike Smith Date: Tue, 13 Jun 2000 21:13:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts TROUBLE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG msmith 2000/06/13 21:13:02 PDT Modified files: release/texts TROUBLE.TXT Log: Mention a bug in the Mylex driver's geometry handling. Revision Changes Path 1.11 +7 -0 src/release/texts/TROUBLE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 21:13:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66BA337C157; Tue, 13 Jun 2000 21:13:41 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Received: (from msmith@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA35107; Tue, 13 Jun 2000 21:13:41 -0700 (PDT) (envelope-from msmith@FreeBSD.org) Message-Id: <200006140413.VAA35107@freefall.freebsd.org> From: Mike Smith Date: Tue, 13 Jun 2000 21:13:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts TROUBLE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG msmith 2000/06/13 21:13:41 PDT Modified files: (Branch: RELENG_4) release/texts TROUBLE.TXT Log: MFC: mention geometry bug with the Mylex driver. Revision Changes Path 1.9.2.2 +7 -0 src/release/texts/TROUBLE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 22: 2:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D46A737C086; Tue, 13 Jun 2000 22:02:10 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Received: (from jwd@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA39576; Tue, 13 Jun 2000 22:02:10 -0700 (PDT) (envelope-from jwd@FreeBSD.org) Message-Id: <200006140502.WAA39576@freefall.freebsd.org> From: "John W. De Boskey" Date: Tue, 13 Jun 2000 22:02:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts src-install.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jwd 2000/06/13 22:02:10 PDT Modified files: (Branch: RELENG_4) release/scripts src-install.sh Log: MFC: 1.7 Add 'tools' to the list of tarballs to be extracted when 'all' is specified as the distribution. PR: 18927 Submitted by: Stephen J. Roznowski Revision Changes Path 1.6.6.1 +2 -2 src/release/scripts/src-install.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 22:37:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8441A37BB09; Tue, 13 Jun 2000 22:37:07 -0700 (PDT) (envelope-from mph@FreeBSD.org) Received: (from mph@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA46740; Tue, 13 Jun 2000 22:37:07 -0700 (PDT) (envelope-from mph@FreeBSD.org) Message-Id: <200006140537.WAA46740@freefall.freebsd.org> From: Matthew Hunt Date: Tue, 13 Jun 2000 22:37:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/trn4 Makefile ports/news/trn4/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mph 2000/06/13 22:37:07 PDT Modified files: news/trn4 Makefile news/trn4/files md5 Log: Upgrade to beta74. Submitted by: Stephen J. Roznowski Revision Changes Path 1.24 +4 -5 ports/news/trn4/Makefile 1.8 +1 -1 ports/news/trn4/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 22:44:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2347F37B547; Tue, 13 Jun 2000 22:44:53 -0700 (PDT) (envelope-from mph@FreeBSD.org) Received: (from mph@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA47944; Tue, 13 Jun 2000 22:44:53 -0700 (PDT) (envelope-from mph@FreeBSD.org) Message-Id: <200006140544.WAA47944@freefall.freebsd.org> From: Matthew Hunt Date: Tue, 13 Jun 2000 22:44:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/angband Makefile ports/games/jzip Makefile ports/games/xcogitate Makefile ports/games/xinfocom Makefile ports/games/xscrabble Makefile ports/irc/yagirc Makefile ports/math/xgfe Makefile ports/x11/xprompt Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mph 2000/06/13 22:44:53 PDT Modified files: games/angband Makefile games/jzip Makefile games/xcogitate Makefile games/xinfocom Makefile games/xscrabble Makefile irc/yagirc Makefile math/xgfe Makefile x11/xprompt Makefile Log: In accordance with the New World Order, move the distfiles that I host from people.FreeBSD.org to MASTER_SITE_LOCAL. Revision Changes Path 1.16 +3 -2 ports/games/angband/Makefile 1.9 +3 -2 ports/games/jzip/Makefile 1.11 +3 -2 ports/games/xcogitate/Makefile 1.6 +3 -2 ports/games/xinfocom/Makefile 1.12 +3 -2 ports/games/xscrabble/Makefile 1.22 +3 -2 ports/irc/yagirc/Makefile 1.16 +3 -2 ports/math/xgfe/Makefile 1.8 +3 -2 ports/x11/xprompt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 22:56:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DE32F37C0CB; Tue, 13 Jun 2000 22:56:54 -0700 (PDT) (envelope-from bp@FreeBSD.org) Received: (from bp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA49333; Tue, 13 Jun 2000 22:56:54 -0700 (PDT) (envelope-from bp@FreeBSD.org) Message-Id: <200006140556.WAA49333@freefall.freebsd.org> From: Boris Popov Date: Tue, 13 Jun 2000 22:56:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_ethersubr.c if_fddisubr.c if_iso88025subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bp 2000/06/13 22:56:54 PDT Modified files: sys/net if_ethersubr.c if_fddisubr.c if_iso88025subr.c Log: Do not perform any opeartion with mbuf after it placed into interface queue. Tested by: Bosko Milekic Revision Changes Path 1.75 +6 -6 src/sys/net/if_ethersubr.c 1.43 +3 -3 src/sys/net/if_fddisubr.c 1.12 +3 -3 src/sys/net/if_iso88025subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 23:18:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C4F9637B7D7; Tue, 13 Jun 2000 23:18:16 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA52529; Tue, 13 Jun 2000 23:18:16 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006140618.XAA52529@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 13 Jun 2000 23:18:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm Makefile ports/palm/mdbconv Makefile ports/palm/mdbconv/files Makefile md5 ports/palm/mdbconv/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/13 23:18:16 PDT Modified files: palm Makefile Added files: palm/mdbconv Makefile palm/mdbconv/files Makefile md5 palm/mdbconv/pkg COMMENT DESCR PLIST Log: Add mdbconv, CSV-to-MobileDB-database converter. Revision Changes Path 1.22 +2 -1 ports/palm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 23:19:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2024837B7D7; Tue, 13 Jun 2000 23:19:44 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA52632; Tue, 13 Jun 2000 23:19:44 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006140619.XAA52632@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 13 Jun 2000 23:19:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/13 23:19:43 PDT Modified files: . modules Log: mdbconv -> ports/palm/mdbconv Revision Changes Path 1.1265 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Jun 13 23:41:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 908DD37B825; Tue, 13 Jun 2000 23:41:33 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA54816; Tue, 13 Jun 2000 23:41:33 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006140641.XAA54816@freefall.freebsd.org> From: Paul Saab Date: Tue, 13 Jun 2000 23:41:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options src/sys/i386/conf NOTES src/sys/isa sio.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/13 23:41:33 PDT Modified files: sys/conf options sys/i386/conf NOTES sys/isa sio.c Log: Add option ALT_BREAK_TO_DEBUGGER. Implement the Solaris way to break into DDB over a serial console instead of sending a break. Sending the character sequence CR ~ ^b will break the kernel into DDB (if DDB is enabled). Reviewed by: peter Revision Changes Path 1.207 +2 -1 src/sys/conf/options 1.784 +6 -1 src/sys/i386/conf/NOTES 1.301 +30 -1 src/sys/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:18:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2013A37C0E4; Wed, 14 Jun 2000 00:18:20 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA59494; Wed, 14 Jun 2000 00:18:19 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006140718.AAA59494@freefall.freebsd.org> From: Peter Wemm Date: Wed, 14 Jun 2000 00:18:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/forth loader.4th Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/14 00:18:19 PDT Modified files: sys/boot/forth loader.4th Log: With apologies to dcs, temporarily comment out the version check code. It is failing for everybody that I have spoken with that has tried it. FreeBSD/i386 bootstrap loader, Revision 0.8 (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) Loader version 0.3+ required Aborted! start not found Note that the 0.3+ message is from inside the arch-alpha block, not the i386 block of code. And even then, 0.8 is higher than 0.3. This prevents the rest of the loader.conf stuff working. :-/ Revision Changes Path 1.9 +23 -23 src/sys/boot/forth/loader.4th To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:24:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DA17937BB4B; Wed, 14 Jun 2000 00:24:11 -0700 (PDT) (envelope-from reg@FreeBSD.org) Received: (from reg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA60117; Wed, 14 Jun 2000 00:24:11 -0700 (PDT) (envelope-from reg@FreeBSD.org) Message-Id: <200006140724.AAA60117@freefall.freebsd.org> From: Jeremy Lea Date: Wed, 14 Jun 2000 00:24:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ripit/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG reg 2000/06/14 00:24:11 PDT Modified files: audio/ripit/patches patch-aa Log: Add support for more command line options (you can now choose the output directory, ripper and encoder), running multiple encoders (for SMP) and killing the encoders if the ripper fails. This patch has been submitted to the author. PR: ports/19249 Approved by: maintainer Revision Changes Path 1.6 +187 -10 ports/audio/ripit/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:30:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C5FCC37BB4B; Wed, 14 Jun 2000 00:30:31 -0700 (PDT) (envelope-from reg@FreeBSD.org) Received: (from reg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA61086; Wed, 14 Jun 2000 00:30:31 -0700 (PDT) (envelope-from reg@FreeBSD.org) Message-Id: <200006140730.AAA61086@freefall.freebsd.org> From: Jeremy Lea Date: Wed, 14 Jun 2000 00:30:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/cdrecord/patches patch-bb patch-bc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG reg 2000/06/14 00:30:31 PDT Added files: sysutils/cdrecord/patches patch-bb patch-bc Log: Reenable support for the ioctl interface. PR: ports/19165 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:43:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A332237B6F7; Wed, 14 Jun 2000 00:43:53 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA62246; Wed, 14 Jun 2000 00:43:54 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006140743.AAA62246@freefall.freebsd.org> From: Ollivier Robert Date: Wed, 14 Jun 2000 00:43:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find function.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/14 00:43:53 PDT Modified files: usr.bin/find function.c Log: Make find -Wall -Wredundant-decls clean. Submitted by: nrahlstr Revision Changes Path 1.25 +1 -5 src/usr.bin/find/function.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:44: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 158B437C14D; Wed, 14 Jun 2000 00:43:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA62274; Wed, 14 Jun 2000 00:43:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006140743.AAA62274@freefall.freebsd.org> From: Peter Wemm Date: Wed, 14 Jun 2000 00:43:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/config mkmakefile.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/14 00:43:57 PDT Modified files: usr.sbin/config mkmakefile.c Log: Argh! I broke the static hints parser at the last minute on freefall when I added the $FreeBSD$ (commented) line. Fix: 1: s/break/continue/ 2: will somebody please shoot me! :-] Revision Changes Path 1.54 +2 -2 src/usr.sbin/config/mkmakefile.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:47:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2816B37C109; Wed, 14 Jun 2000 00:47:54 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA62726; Wed, 14 Jun 2000 00:47:54 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006140747.AAA62726@freefall.freebsd.org> From: Will Andrews Date: Wed, 14 Jun 2000 00:47:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/libneural Makefile ports/devel/libneural/files md5 ports/devel/libneural/patches patch-aa ports/devel/libneural/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/14 00:47:51 PDT Modified files: devel Makefile Added files: devel/libneural Makefile devel/libneural/files md5 devel/libneural/patches patch-aa devel/libneural/pkg COMMENT DESCR PLIST Log: Add libneural, a C++ library implementation of the classic 3-layer perceptron. I don't understand what I just said.. :-) Revision Changes Path 1.297 +2 -1 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 0:48:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 898D937C247; Wed, 14 Jun 2000 00:48:11 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA62777; Wed, 14 Jun 2000 00:48:11 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006140748.AAA62777@freefall.freebsd.org> From: Will Andrews Date: Wed, 14 Jun 2000 00:48:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/14 00:48:11 PDT Modified files: . modules Log: libneural --> ports/devel/libneural Revision Changes Path 1.1266 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 1: 0:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F2D2337C103; Wed, 14 Jun 2000 01:00:22 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA63793; Wed, 14 Jun 2000 01:00:23 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006140800.BAA63793@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 14 Jun 2000 01:00:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/buffy Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/14 01:00:22 PDT Modified files: x11-toolkits/buffy Makefile Log: Remove commented USE_GMAKE line. Revision Changes Path 1.2 +1 -2 ports/x11-toolkits/buffy/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 1:10:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BC3F837C10E; Wed, 14 Jun 2000 01:10:35 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA65952; Wed, 14 Jun 2000 01:10:35 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006140810.BAA65952@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 14 Jun 2000 01:10:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/clean-theme-gtk Makefile ports/x11-toolkits/clean-theme-gtk/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/14 01:10:35 PDT Modified files: x11-toolkits/clean-theme-gtk Makefile x11-toolkits/clean-theme-gtk/files md5 Log: Update to 0.3 version. Revision Changes Path 1.2 +2 -2 ports/x11-toolkits/clean-theme-gtk/Makefile 1.2 +1 -1 ports/x11-toolkits/clean-theme-gtk/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 1:15:39 2000 Delivered-To: cvs-all@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 89B2637B6FE; Wed, 14 Jun 2000 01:15:28 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id KAA83303; Wed, 14 Jun 2000 10:14:56 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.9.3/8.9.3) id BAA22183; Wed, 14 Jun 2000 01:14:23 -0700 (PDT) (envelope-from reg) Date: Wed, 14 Jun 2000 01:14:19 -0700 From: Jeremy Lea To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/libneural Makefile ports/devel/libneural/files md5 ports/devel/libneural/patches patch-aa ports/devel/libneural/pkg COMMENT DESCR PLIST Message-ID: <20000614011419.A21984@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200006140747.AAA62726@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006140747.AAA62726@freefall.freebsd.org>; from will@FreeBSD.org on Wed, Jun 14, 2000 at 12:47:51AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, On Wed, Jun 14, 2000 at 12:47:51AM -0700, Will Andrews wrote: > Add libneural, a C++ library implementation of the classic 3-layer > perceptron. I don't understand what I just said.. :-) I do, and this should be in math. ;-) Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 1:20:41 2000 Delivered-To: cvs-all@freebsd.org Received: from server1.mich.com (server1.mich.com [198.108.16.2]) by hub.freebsd.org (Postfix) with ESMTP id 3625237C11B; Wed, 14 Jun 2000 01:20:37 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm016-024.dialup.bignet.net [64.79.82.232]) by server1.mich.com (8.9.3/8.9.3) with ESMTP id EAA16478; Wed, 14 Jun 2000 04:20:34 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id BB93F195E; Wed, 14 Jun 2000 04:19:23 -0400 (EDT) Date: Wed, 14 Jun 2000 04:19:23 -0400 From: Will Andrews To: Jeremy Lea , Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/devel/libneural Makefile ports/devel/libneural/files md5 ports/devel/libneural/patches patch-aa ports/devel/libneural/pkg COMMENT DESCR PLIST Message-ID: <20000614041923.T28506@argon.gryphonsoft.com> References: <200006140747.AAA62726@freefall.freebsd.org> <20000614011419.A21984@shale.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000614011419.A21984@shale.csir.co.za>; from reg@FreeBSD.org on Wed, Jun 14, 2000 at 01:14:19AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jun 14, 2000 at 01:14:19AM -0700, Jeremy Lea wrote: > On Wed, Jun 14, 2000 at 12:47:51AM -0700, Will Andrews wrote: > > Add libneural, a C++ library implementation of the classic 3-layer > > perceptron. I don't understand what I just said.. :-) > > I do, and this should be in math. ;-) Okay. **sigh** -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 1:32:22 2000 Delivered-To: cvs-all@freebsd.org Received: from tisch.mail.mindspring.net (tisch.mail.mindspring.net [207.69.200.157]) by hub.freebsd.org (Postfix) with ESMTP id C6CDC37C11B; Wed, 14 Jun 2000 01:32:18 -0700 (PDT) (envelope-from asami@cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca43-215.ix.netcom.com [209.111.209.215]) by tisch.mail.mindspring.net (8.9.3/8.8.5) with ESMTP id EAA28798; Wed, 14 Jun 2000 04:32:00 -0400 (EDT) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id BAA71168; Wed, 14 Jun 2000 01:31:45 -0700 (PDT) To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.port.subdir.mk References: <200006140158.SAA19945@freefall.freebsd.org> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 14 Jun 2000 01:31:40 -0700 In-Reply-To: Satoshi Asami's message of "Tue, 13 Jun 2000 18:58:14 -0700 (PDT)" Message-ID: Lines: 6 X-Mailer: Gnus v5.7/Emacs 20.6 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Fix minor bug -- add realinstall to TARGETS. Forgot to say that I also deleted the long-obsoleted package-loop target. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 2: 5: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D1AA737C132; Wed, 14 Jun 2000 02:05:03 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA71920; Wed, 14 Jun 2000 02:05:04 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006140905.CAA71920@freefall.freebsd.org> From: Paul Saab Date: Wed, 14 Jun 2000 02:05:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common commands.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/14 02:05:03 PDT Modified files: sys/boot/common commands.c Log: Make typing 'q' or 'Q' work for the show command as the pager prompt says it should. Revision Changes Path 1.14 +3 -2 src/sys/boot/common/commands.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 2:20:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CE4CE37C162; Wed, 14 Jun 2000 02:20:43 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA74458; Wed, 14 Jun 2000 02:20:43 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006140920.CAA74458@freefall.freebsd.org> From: KATO Takenori Date: Wed, 14 Jun 2000 02:20:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.pc98 src/sys/pc98/i386 userconfig.c src/sys/pc98/pc98 pc98_machdep.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/14 02:20:43 PDT Modified files: sys/conf files.pc98 sys/pc98/i386 userconfig.c sys/pc98/pc98 pc98_machdep.c Log: Catch up with Peter's config(8) changes. Revision Changes Path 1.156 +8 -8 src/sys/conf/files.pc98 1.110 +2 -4 src/sys/pc98/i386/userconfig.c 1.19 +2 -5 src/sys/pc98/pc98/pc98_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 3: 1:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A7F5837BF18; Wed, 14 Jun 2000 03:01:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA78296; Wed, 14 Jun 2000 03:01:40 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006141001.DAA78296@freefall.freebsd.org> From: Peter Wemm Date: Wed, 14 Jun 2000 03:01:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC.hints NEWCARD.hints Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/14 03:01:40 PDT Modified files: sys/i386/conf GENERIC.hints NEWCARD.hints Log: s/iomem/maddr/ - these were generated from an older verion of the gethints script. :-( Revision Changes Path 1.2 +6 -6 src/sys/i386/conf/GENERIC.hints 1.2 +5 -5 src/sys/i386/conf/NEWCARD.hints To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 3: 4: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D6A737C13A; Wed, 14 Jun 2000 03:04:07 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA78471; Wed, 14 Jun 2000 03:04:07 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006141004.DAA78471@freefall.freebsd.org> From: Peter Wemm Date: Wed, 14 Jun 2000 03:04:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf NOTES Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/14 03:04:07 PDT Modified files: sys/i386/conf NOTES Log: s/iomem/maddr/ s/iosiz/msize/ Revision Changes Path 1.785 +32 -32 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 3: 7:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1122C37C14C; Wed, 14 Jun 2000 03:07:23 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: (from luigi@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA79695; Wed, 14 Jun 2000 03:07:23 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Message-Id: <200006141007.DAA79695@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 14 Jun 2000 03:07:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.c src/sys/netinet ip_dummynet.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG luigi 2000/06/14 03:07:22 PDT Modified files: sbin/ipfw ipfw.c sys/netinet ip_dummynet.c Log: Fix behaviour of "ipfw pipe show" -- previous code gave ambiguous data to the userland program (kernel operation was safe, anyways). Revision Changes Path 1.85 +7 -7 src/sbin/ipfw/ipfw.c 1.29 +11 -6 src/sys/netinet/ip_dummynet.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 3: 9:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 171DC37C15A; Wed, 14 Jun 2000 03:09:31 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: (from luigi@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA79973; Wed, 14 Jun 2000 03:09:31 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Message-Id: <200006141009.DAA79973@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 14 Jun 2000 03:09:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.c src/sys/netinet ip_dummynet.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG luigi 2000/06/14 03:09:31 PDT Modified files: (Branch: RELENG_4) sbin/ipfw ipfw.c sys/netinet ip_dummynet.c Log: MFC: fix behaviour of "ipfw pipe show" Revision Changes Path 1.80.2.2 +7 -7 src/sbin/ipfw/ipfw.c 1.24.2.3 +11 -6 src/sys/netinet/ip_dummynet.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 3:34:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 225DC37C0BE; Wed, 14 Jun 2000 03:34:30 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA82293; Wed, 14 Jun 2000 03:34:29 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006141034.DAA82293@freefall.freebsd.org> From: Paul Saab Date: Wed, 14 Jun 2000 03:34:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/alpha/libalpha elf_freebsd.c src/sys/boot/common boot.c bootstrap.h misc.c src/sys/boot/i386/libi386 aout_freebsd.c elf_freebsd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/14 03:34:29 PDT Modified files: sys/boot/alpha/libalpha elf_freebsd.c sys/boot/common boot.c bootstrap.h misc.c sys/boot/i386/libi386 aout_freebsd.c elf_freebsd.c Log: Delay calling the device cleanup routines until the absolute last moment. We were cleaning up after PXE too early and the module dependancy code would not be able to load any files if it needed too. Revision Changes Path 1.10 +2 -1 src/sys/boot/alpha/libalpha/elf_freebsd.c 1.19 +1 -6 src/sys/boot/common/boot.c 1.29 +3 -1 src/sys/boot/common/bootstrap.h 1.7 +12 -1 src/sys/boot/common/misc.c 1.14 +2 -1 src/sys/boot/i386/libi386/aout_freebsd.c 1.9 +2 -1 src/sys/boot/i386/libi386/elf_freebsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 3:53:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B39237C165; Wed, 14 Jun 2000 03:53:48 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA85255; Wed, 14 Jun 2000 03:53:48 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006141053.DAA85255@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 14 Jun 2000 03:53:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/14 03:53:48 PDT Modified files: . modules Log: Add trn4 and openjade. It seems that somebody forgot to add it after repo-copy. Revision Changes Path 1.1267 +3 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 4: 9: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 60B4837C1AA; Wed, 14 Jun 2000 04:09:02 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA89960; Wed, 14 Jun 2000 04:09:02 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Message-Id: <200006141109.EAA89960@freefall.freebsd.org> From: Joseph Koshy Date: Wed, 14 Jun 2000 04:09:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/sml-nj Makefile ports/lang/sml-nj/files md5 ports/lang/sml-nj/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkoshy 2000/06/14 04:09:02 PDT Modified files: lang/sml-nj Makefile lang/sml-nj/files md5 lang/sml-nj/pkg PLIST Log: Downgrade the sml-nj port to the current `release' version v110.0.6. The `sml-nj-devel' port will track working versions of the SML/NJ system. PR: ports/18658 Submitted by: Chris Richards Revision Changes Path 1.11 +15 -16 ports/lang/sml-nj/Makefile 1.3 +11 -11 ports/lang/sml-nj/files/md5 1.3 +523 -61 ports/lang/sml-nj/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 4:25:17 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 523A137BD05; Wed, 14 Jun 2000 04:24:43 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id OAA12002; Wed, 14 Jun 2000 14:23:21 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id OAA30768; Wed, 14 Jun 2000 14:23:39 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <39476B3F.7E897008@FreeBSD.org> Date: Wed, 14 Jun 2000 14:23:44 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Satoshi Asami Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.sites.mk bsd.port.mk References: <200006140214.TAA22236@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Satoshi Asami wrote: > asami 2000/06/13 19:14:49 PDT > > Modified files: > Mk bsd.port.mk > Added files: > Mk bsd.sites.mk > Log: > (1) New variables INSTALL_SHLIBS and LDCONFIG_DIRS. When > INSTALL_SHLIBS is set, ldconfig is automatically called from > post-install and necessary @exec and @unexec lines are added to > PLIST. > > Requested by: lioux@uol.com.br > Reviewed by: the ports list, in particular sobomax In fact it was my proposal, then supported by lioux@uol.com.br and freebsd-ports ;). Just FYI. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 5:11:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E2D137BC9C; Wed, 14 Jun 2000 05:11:43 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA98308; Wed, 14 Jun 2000 05:11:43 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006141211.FAA98308@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Wed, 14 Jun 2000 05:11:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include mpool.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/14 05:11:42 PDT Modified files: (Branch: RELENG_3) include mpool.h Log: MFC: Add $FreeBSD$ Revision Changes Path 1.5.2.1 +1 -0 src/include/mpool.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 5:44:39 2000 Delivered-To: cvs-all@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id E19D537B59D; Wed, 14 Jun 2000 05:44:32 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id OAA26204; Wed, 14 Jun 2000 14:44:29 +0200 (CEST) (envelope-from ibex) Date: Wed, 14 Jun 2000 14:44:29 +0200 From: Dirk Froemberg To: Jeremy Lea Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: ports/sysutils/cdrecord/patches patch-bb patch-bc Message-ID: <20000614144429.A25869@physik.TU-Berlin.DE> References: <200006140730.AAA61086@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006140730.AAA61086@freefall.freebsd.org>; from reg@freebsd.org on Wed, Jun 14, 2000 at 12:30:31AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! YAUC (Yet another unapproved commit)? 8-| Anyway, did you report it back to the author of cdrecord Joerg Schilling ? Regards Dirk On Wed, Jun 14, 2000 at 12:30:31AM -0700, Jeremy Lea wrote: > reg 2000/06/14 00:30:31 PDT > > Added files: > sysutils/cdrecord/patches patch-bb patch-bc > Log: > Reenable support for the ioctl interface. > > PR: ports/19165 > -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 5:50:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED24C37BD69; Wed, 14 Jun 2000 05:50:27 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA02032; Wed, 14 Jun 2000 05:50:28 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006141250.FAA02032@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Wed, 14 Jun 2000 05:50:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/protocols routed.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/14 05:50:27 PDT Modified files: (Branch: RELENG_3) include/protocols routed.h Log: MFC: various fixes: Zap $Revision$ Change to $FreeBSD$ Fix *ripcmds Fix(?) spelling of the copyright Revision Changes Path 1.11.2.1 +3 -4 src/include/protocols/routed.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6: 0:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 69DB837BD69; Wed, 14 Jun 2000 06:00:25 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA02986; Wed, 14 Jun 2000 06:00:25 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006141300.GAA02986@freefall.freebsd.org> From: KATO Takenori Date: Wed, 14 Jun 2000 06:00:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 identcpu.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/14 06:00:25 PDT Modified files: (Branch: RELENG_4) sys/i386/i386 identcpu.c Log: MFC: Celeron recognition (rev. 1.82). Revision Changes Path 1.80.2.1 +2 -2 src/sys/i386/i386/identcpu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6: 1:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FA1137B605; Wed, 14 Jun 2000 06:01:14 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Received: (from asmodai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA03070; Wed, 14 Jun 2000 06:01:14 -0700 (PDT) (envelope-from asmodai@FreeBSD.org) Message-Id: <200006141301.GAA03070@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Wed, 14 Jun 2000 06:01:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpcsvc bootparam_prot.x Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asmodai 2000/06/14 06:01:09 PDT Modified files: (Branch: RELENG_3) include/rpcsvc bootparam_prot.x Log: MFC: add $FReeBSD$ Revision Changes Path 1.4.2.1 +2 -1 src/include/rpcsvc/bootparam_prot.x To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6: 3: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AF8937C19D; Wed, 14 Jun 2000 06:02:55 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA03277; Wed, 14 Jun 2000 06:02:55 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006141302.GAA03277@freefall.freebsd.org> From: KATO Takenori Date: Wed, 14 Jun 2000 06:02:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 identcpu.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/14 06:02:55 PDT Modified files: (Branch: RELENG_3) sys/i386/i386 identcpu.c Log: MFC: Celeron recognition (rev. 1.82). Revision Changes Path 1.57.2.13 +2 -2 src/sys/i386/i386/identcpu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6:18:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ACD737BC34; Wed, 14 Jun 2000 06:18:44 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA06107; Wed, 14 Jun 2000 06:18:44 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141318.GAA06107@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 06:18:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/articles/programming-tools article.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 06:18:43 PDT Modified files: en_US.ISO_8859-1/articles/programming-tools article.sgml Log: Perl 5 is in the base system now, package for it isn't needed any longer. PR: 18290 Submitted by: Martin Kammerhofer Reviewed by: asmodai Revision Changes Path 1.11 +2 -6 doc/en_US.ISO_8859-1/articles/programming-tools/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6:21:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5361337C1A7; Wed, 14 Jun 2000 06:21:39 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA07906; Wed, 14 Jun 2000 06:21:38 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006141321.GAA07906@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 14 Jun 2000 06:21:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/fastjar Makefile ports/x11-wm/sawfish Makefile ports/x11-wm/ude Makefile ports/x11-wm/icewm Makefile ports/x11-wm/sapphire Makefile ports/x11-wm/icewm-i18n Makefile ports/x11-toolkits/rep-gtk Makefile ports/x11-toolkits/gtk-- ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/14 06:21:38 PDT Modified files: archivers/fastjar Makefile x11-wm/sawfish Makefile x11-wm/ude Makefile x11-wm/icewm Makefile x11-wm/sapphire Makefile x11-wm/icewm-i18n Makefile x11-toolkits/rep-gtk Makefile x11-toolkits/gtk-- Makefile x11-toolkits/gnome-look Makefile astro/xplanet Makefile audio/extace Makefile audio/aumix Makefile audio/knapster Makefile audio/yamt Makefile audio/sphinx Makefile cad/felt Makefile databases/metakit Makefile deskutils/cbb Makefile deskutils/gnofin Makefile devel/SWIG Makefile devel/cscope Makefile devel/libsigc++ Makefile devel/cervisia Makefile editors/fte Makefile editors/gnotepad+ Makefile editors/gedit Makefile editors/biew Makefile emulators/basiliskII Makefile games/quakeforge Makefile games/corewars Makefile games/glife Makefile x11/powershell Makefile graphics/gqview Makefile graphics/Mesa3 Makefile graphics/netpbm Makefile graphics/sketch Makefile graphics/pngcrush Makefile graphics/gnofract4d Makefile graphics/piddle Makefile graphics/sodipodi Makefile graphics/gcolor Makefile mail/asmail Makefile mail/rblcheck Makefile mail/mbx2mbox Makefile mail/grepmail Makefile math/numpy Makefile math/rcalc Makefile misc/kcd Makefile net/licq Makefile net/amcl Makefile net/gatekeeper Makefile net/iplog Makefile net/etherboot Makefile net/gaim Makefile net/kicq Makefile net/icqlib Makefile net/kxicq Makefile news/trn4 Makefile news/krn Makefile print/freetype Makefile security/seahorse Makefile security/oidentd Makefile sysutils/gnomefind Makefile sysutils/wmtop Makefile textproc/aspell Makefile textproc/code2html Makefile textproc/openjade Makefile textproc/pspell Makefile www/tinyproxy Makefile www/screem Makefile www/quanta Makefile lang/librep Makefile Log: Teach MASTER_SITES about new MASTER_SITE_SOURCEFORGE. Revision Changes Path 1.5 +3 -2 ports/archivers/fastjar/Makefile 1.19 +3 -2 ports/x11-wm/sawfish/Makefile 1.5 +3 -2 ports/x11-wm/ude/Makefile 1.54 +3 -2 ports/x11-wm/icewm/Makefile 1.5 +3 -2 ports/x11-wm/sapphire/Makefile 1.2 +3 -2 ports/x11-wm/icewm-i18n/Makefile 1.13 +3 -2 ports/x11-toolkits/rep-gtk/Makefile 1.21 +3 -2 ports/x11-toolkits/gtk--/Makefile 1.2 +3 -2 ports/x11-toolkits/gnome-look/Makefile 1.9 +3 -2 ports/astro/xplanet/Makefile 1.3 +3 -2 ports/audio/extace/Makefile 1.23 +5 -7 ports/audio/aumix/Makefile 1.13 +3 -2 ports/audio/knapster/Makefile 1.6 +3 -2 ports/audio/yamt/Makefile 1.3 +3 -2 ports/audio/sphinx/Makefile 1.18 +3 -2 ports/cad/felt/Makefile 1.3 +3 -2 ports/databases/metakit/Makefile 1.18 +3 -2 ports/deskutils/cbb/Makefile 1.12 +3 -2 ports/deskutils/gnofin/Makefile 1.25 +3 -3 ports/devel/SWIG/Makefile 1.8 +3 -3 ports/devel/cscope/Makefile 1.4 +3 -2 ports/devel/libsigc++/Makefile 1.8 +3 -3 ports/devel/cervisia/Makefile 1.2 +3 -3 ports/editors/fte/Makefile 1.10 +3 -2 ports/editors/gnotepad+/Makefile 1.21 +3 -2 ports/editors/gedit/Makefile 1.7 +3 -3 ports/editors/biew/Makefile 1.3 +3 -2 ports/emulators/basiliskII/Makefile 1.10 +3 -2 ports/games/quakeforge/Makefile 1.14 +3 -2 ports/games/corewars/Makefile 1.3 +3 -2 ports/games/glife/Makefile 1.2 +3 -2 ports/x11/powershell/Makefile 1.23 +3 -2 ports/graphics/gqview/Makefile 1.39 +3 -2 ports/graphics/Mesa3/Makefile 1.32 +3 -2 ports/graphics/netpbm/Makefile 1.21 +3 -2 ports/graphics/sketch/Makefile 1.14 +3 -2 ports/graphics/pngcrush/Makefile 1.6 +3 -2 ports/graphics/gnofract4d/Makefile 1.4 +3 -2 ports/graphics/piddle/Makefile 1.12 +3 -2 ports/graphics/sodipodi/Makefile 1.6 +3 -2 ports/graphics/gcolor/Makefile 1.13 +3 -2 ports/mail/asmail/Makefile 1.9 +3 -2 ports/mail/rblcheck/Makefile 1.10 +3 -2 ports/mail/mbx2mbox/Makefile 1.12 +3 -2 ports/mail/grepmail/Makefile 1.23 +3 -2 ports/math/numpy/Makefile 1.5 +3 -2 ports/math/rcalc/Makefile 1.5 +3 -2 ports/misc/kcd/Makefile 1.17 +3 -2 ports/net/licq/Makefile 1.2 +4 -5 ports/net/amcl/Makefile 1.10 +3 -2 ports/net/gatekeeper/Makefile 1.7 +3 -2 ports/net/iplog/Makefile 1.12 +3 -2 ports/net/etherboot/Makefile 1.24 +4 -3 ports/net/gaim/Makefile 1.7 +3 -2 ports/net/kicq/Makefile 1.6 +3 -2 ports/net/icqlib/Makefile 1.3 +3 -2 ports/net/kxicq/Makefile 1.25 +3 -2 ports/news/trn4/Makefile 1.3 +3 -3 ports/news/krn/Makefile 1.17 +4 -3 ports/print/freetype/Makefile 1.6 +3 -2 ports/security/seahorse/Makefile 1.5 +3 -2 ports/security/oidentd/Makefile 1.3 +3 -2 ports/sysutils/gnomefind/Makefile 1.2 +3 -2 ports/sysutils/wmtop/Makefile 1.17 +3 -2 ports/textproc/aspell/Makefile 1.11 +3 -2 ports/textproc/code2html/Makefile 1.25 +3 -2 ports/textproc/openjade/Makefile 1.2 +3 -2 ports/textproc/pspell/Makefile 1.7 +3 -2 ports/www/tinyproxy/Makefile 1.6 +3 -2 ports/www/screem/Makefile 1.3 +3 -3 ports/www/quanta/Makefile 1.10 +3 -2 ports/lang/librep/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6:38:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9A6137BD1C; Wed, 14 Jun 2000 06:38:22 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA23364; Wed, 14 Jun 2000 06:38:21 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141338.GAA23364@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 06:38:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/sys i386_get_ldt.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 06:38:21 PDT Modified files: lib/libc/i386/sys i386_get_ldt.2 Log: You need options USER_LDT in your kernel to use these functions. PR: 18943 Submitted by: Ben Smithurst Reviewed by: asmodai Revision Changes Path 1.9 +5 -1 src/lib/libc/i386/sys/i386_get_ldt.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6:39:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 197D537BAD8; Wed, 14 Jun 2000 06:39:41 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA28782; Wed, 14 Jun 2000 06:39:39 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141339.GAA28782@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 06:39:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/sys i386_get_ldt.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 06:39:39 PDT Modified files: (Branch: RELENG_4) lib/libc/i386/sys i386_get_ldt.2 Log: MFC: options USER_LDT is required for these functions. Revision Changes Path 1.6.2.3 +5 -1 src/lib/libc/i386/sys/i386_get_ldt.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6:40:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DEDE837BAD8; Wed, 14 Jun 2000 06:40:32 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA31491; Wed, 14 Jun 2000 06:40:32 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141340.GAA31491@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 06:40:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/sys i386_get_ldt.2 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 06:40:32 PDT Modified files: (Branch: RELENG_3) lib/libc/i386/sys i386_get_ldt.2 Log: MFC: options USER_LDT is required for these functions. Revision Changes Path 1.4.2.4 +5 -1 src/lib/libc/i386/sys/i386_get_ldt.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 6:42:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C6B0637BAD8; Wed, 14 Jun 2000 06:42:27 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) Received: (from cracauer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA40830; Wed, 14 Jun 2000 06:42:27 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) Message-Id: <200006141342.GAA40830@freefall.freebsd.org> From: Martin Cracauer Date: Wed, 14 Jun 2000 06:42:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh arith_lex.l error.h eval.c expand.c histedit.c jobs.c main.c miscbltin.c options.c options.h parser.c shell.h show.c show.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cracauer 2000/06/14 06:42:27 PDT Modified files: (Branch: RELENG_4) bin/sh arith_lex.l error.h eval.c expand.c histedit.c jobs.c main.c miscbltin.c options.c options.h parser.c shell.h show.c show.h Log: Merge fixes that has been in -current for a while. Revision Changes Path 1.14.2.1 +2 -3 src/bin/sh/arith_lex.l 1.11.2.1 +1 -2 src/bin/sh/error.h 1.27.2.1 +2 -1 src/bin/sh/eval.c 1.31.2.1 +2 -2 src/bin/sh/expand.c 1.13.2.1 +2 -4 src/bin/sh/histedit.c 1.27.2.1 +1 -2 src/bin/sh/jobs.c 1.18.2.1 +2 -3 src/bin/sh/main.c 1.22.2.1 +4 -7 src/bin/sh/miscbltin.c 1.15.2.1 +3 -3 src/bin/sh/options.c 1.9.2.1 +2 -2 src/bin/sh/options.h 1.29.2.1 +3 -3 src/bin/sh/parser.c 1.11.2.1 +2 -2 src/bin/sh/shell.h 1.11.2.1 +7 -3 src/bin/sh/show.c 1.7.2.1 +2 -2 src/bin/sh/show.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 7:27:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 39B1937C1BE; Wed, 14 Jun 2000 07:27:42 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA72469; Wed, 14 Jun 2000 07:27:42 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006141427.HAA72469@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 14 Jun 2000 07:27:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jre Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/14 07:27:41 PDT Modified files: java/jre Makefile Log: Fix MASTER_SITES. Submitted by: bento Revision Changes Path 1.2 +4 -2 ports/java/jre/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 7:38:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83E7537B99E; Wed, 14 Jun 2000 07:38:12 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA73879; Wed, 14 Jun 2000 07:38:11 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141438.HAA73879@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 07:38:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/compat/compat3x.i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 07:38:11 PDT Modified files: lib/compat/compat3x.i386 Makefile Log: add libxpg4 Revision Changes Path 1.9 +2 -2 src/lib/compat/compat3x.i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 7:58:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BA6837B6BA; Wed, 14 Jun 2000 07:58:55 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA76607; Wed, 14 Jun 2000 07:58:50 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141458.HAA76607@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 07:58:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/compat/compat3x.i386 Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 07:58:50 PDT Modified files: (Branch: RELENG_4) lib/compat/compat3x.i386 Makefile Log: MFC: add libxpg4 Revision Changes Path 1.8.2.1 +2 -2 src/lib/compat/compat3x.i386/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8: 8:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2462237C225; Wed, 14 Jun 2000 08:08:25 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA78754; Wed, 14 Jun 2000 08:08:25 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141508.IAA78754@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 08:08:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 08:08:24 PDT Modified files: share/termcap termcap.src Log: Fix "op" for xterm-color Revision Changes Path 1.91 +2 -2 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8: 9:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6F5637C37D; Wed, 14 Jun 2000 08:09:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA78925; Wed, 14 Jun 2000 08:09:27 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141509.IAA78925@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 08:09:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 08:09:22 PDT Modified files: (Branch: RELENG_4) share/termcap termcap.src Log: MFC: "op" for xterm-color Revision Changes Path 1.89.2.2 +2 -2 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:12:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 181C537C21E; Wed, 14 Jun 2000 08:12:43 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA79435; Wed, 14 Jun 2000 08:12:42 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141512.IAA79435@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 08:12:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 08:12:42 PDT Modified files: (Branch: RELENG_3) share/termcap termcap.src Log: MFC: op for xterm-color Revision Changes Path 1.84.2.3 +2 -2 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:23:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1887D37C25E; Wed, 14 Jun 2000 08:23:22 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA81197; Wed, 14 Jun 2000 08:23:22 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141523.IAA81197@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 08:23:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 08:23:21 PDT Modified files: (Branch: RELENG_3) share/termcap termcap.src Log: MFC: all fixes up to 1.91 excepting 1.90 fix ("op" for syscons) Revision Changes Path 1.84.2.4 +33 -10 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:27: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A1BF37C2AE; Wed, 14 Jun 2000 08:26:59 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA81617; Wed, 14 Jun 2000 08:26:59 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200006141526.IAA81617@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 14 Jun 2000 08:26:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp extern.h fetch.c ftp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/06/14 08:26:59 PDT Modified files: usr.bin/ftp extern.h fetch.c ftp.c Log: Make sure to use native IPv4 addrerss even if getaddrinfo() returns IPv4 mapped IPv6 address. FTP is nervous about address family. Submitted by itojun and slightly modified to fit our ftp(1). Revision Changes Path 1.12 +2 -1 src/usr.bin/ftp/extern.h 1.13 +2 -1 src/usr.bin/ftp/fetch.c 1.30 +37 -2 src/usr.bin/ftp/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:28:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C462F37C54D; Wed, 14 Jun 2000 08:28:16 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA81777; Wed, 14 Jun 2000 08:28:16 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Message-Id: <200006141528.IAA81777@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Wed, 14 Jun 2000 08:28:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4/patches patch-k Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmz 2000/06/14 08:28:16 PDT Added files: x11/XFree86-4/patches patch-k Log: Fix a xterm bug when displaying colors. PR: ports/19119 Submitted by: Trevor Johnson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:36:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 58B1637C211; Wed, 14 Jun 2000 08:36:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82671; Wed, 14 Jun 2000 08:36:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006141536.IAA82671@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 14 Jun 2000 08:36:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/smpeg Makefile ports/graphics/smpeg/files md5 ports/graphics/smpeg/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/14 08:36:24 PDT Modified files: graphics/smpeg Makefile graphics/smpeg/files md5 graphics/smpeg/pkg PLIST Log: Update to the 0.4.0 version. Revision Changes Path 1.7 +3 -3 ports/graphics/smpeg/Makefile 1.3 +1 -1 ports/graphics/smpeg/files/md5 1.5 +2 -0 ports/graphics/smpeg/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:38: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B6A737C27A; Wed, 14 Jun 2000 08:37:56 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: (from ache@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA82853; Wed, 14 Jun 2000 08:37:56 -0700 (PDT) (envelope-from ache@FreeBSD.org) Message-Id: <200006141537.IAA82853@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 14 Jun 2000 08:37:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/wu-ftpd/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ache 2000/06/14 08:37:56 PDT Modified files: ftp/wu-ftpd/patches patch-aa Log: Use snprintf to prevent non-exploitable in real life overflow Submitted by: Jun Kuriyama Revision Changes Path 1.10 +14 -4 ports/ftp/wu-ftpd/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:43: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EEB537C4A3; Wed, 14 Jun 2000 08:42:53 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA83494; Wed, 14 Jun 2000 08:42:53 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006141542.IAA83494@freefall.freebsd.org> From: Warner Losh Date: Wed, 14 Jun 2000 08:42:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/14 08:42:52 PDT Modified files: . UPDATING Log: Warn about config's bout with Peter's big axe Revision Changes Path 1.82 +22 -3 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:43:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 131E837C6E1; Wed, 14 Jun 2000 08:43:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA83603; Wed, 14 Jun 2000 08:43:48 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006141543.IAA83603@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 14 Jun 2000 08:43:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/isc-dhcp2 Makefile ports/net/isc-dhcp2/patches patch-aj Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/14 08:43:48 PDT Modified files: net/isc-dhcp2 Makefile net/isc-dhcp2/patches patch-aj Log: This fixes the suposed fix of Makefile rev 1.29 ad patch-aj rev 1.1. This port is now PREFIX clean and installs files into the right locations (I previously marked it BROKEN because it wasn't). Bad "fix" by: JHK Absent maintainer would would not fix this himself: jseger Revision Changes Path 1.33 +4 -1 ports/net/isc-dhcp2/Makefile 1.2 +4 -4 ports/net/isc-dhcp2/patches/patch-aj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:51: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (Postfix) with ESMTP id 5DF1037C35A; Wed, 14 Jun 2000 08:50:42 -0700 (PDT) (envelope-from reg@shale.csir.co.za) Received: from C992631-A.pinol1.sfba.home.com (C992631-A.pinol1.sfba.home.com [24.12.58.155]) by shale.csir.co.za (8.9.3/8.9.3) with ESMTP id RAA85965; Wed, 14 Jun 2000 17:50:17 +0200 (SAT) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by C992631-A.pinol1.sfba.home.com (8.9.3/8.9.3) id IAA24899; Wed, 14 Jun 2000 08:50:08 -0700 (PDT) (envelope-from reg) Date: Wed, 14 Jun 2000 08:49:57 -0700 From: Jeremy Lea To: Dirk Froemberg Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: ports/sysutils/cdrecord/patches patch-bb patch-bc Message-ID: <20000614084957.B21984@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , Dirk Froemberg , cvs-committers@freebsd.org, cvs-all@freebsd.org References: <200006140730.AAA61086@freefall.freebsd.org> <20000614144429.A25869@physik.TU-Berlin.DE> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000614144429.A25869@physik.TU-Berlin.DE>; from dirk@freebsd.org on Wed, Jun 14, 2000 at 02:44:29PM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, On Wed, Jun 14, 2000 at 02:44:29PM +0200, Dirk Froemberg wrote: > YAUC (Yet another unapproved commit)? 8-| You didn't reply to the PR, or reply to my CC to you on the response to the PR. > Anyway, did you report it back to the author of cdrecord > Joerg Schilling ? I will do, but I'm pretty sure he find for himself that he broke the ioctl stuff for every platform. Regards, -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 8:56:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FD3F37B681; Wed, 14 Jun 2000 08:56:28 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA85178; Wed, 14 Jun 2000 08:56:28 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006141556.IAA85178@freefall.freebsd.org> From: Bruce Evans Date: Wed, 14 Jun 2000 08:56:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/14 08:56:28 PDT Modified files: (Branch: RELENG_4) sys/kern subr_bus.c Log: MFC (1.67: fixed allocation of unit numbers). Revision Changes Path 1.54.2.3 +2 -3 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9: 2: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F309D37B59D; Wed, 14 Jun 2000 09:01:58 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA85867; Wed, 14 Jun 2000 09:01:58 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006141601.JAA85867@freefall.freebsd.org> From: Bruce Evans Date: Wed, 14 Jun 2000 09:01:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/14 09:01:58 PDT Modified files: (Branch: RELENG_3) sys/kern subr_bus.c Log: MFC (1.67: fixed allocation of unit numbers). Revision Changes Path 1.14.2.2 +2 -3 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9: 9:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 116D837B681; Wed, 14 Jun 2000 09:09:37 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA87733; Wed, 14 Jun 2000 09:09:36 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006141609.JAA87733@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 14 Jun 2000 09:09:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_db.c alias_ftp.c alias_local.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/14 09:09:36 PDT Modified files: lib/libalias alias_db.c alias_ftp.c alias_local.h Log: - Added support for passive mode FTP by aliasing 227 replies. It does mean that it is now possible to run passive-mode FTP server behind NAT. - SECURITY: FTP aliasing engine now ensures that: o the segment preceding a PORT/227 segment terminates with a \r\n; o the IP address in the PORT/227 matches the source IP address of the packet; o the port number in the PORT command or 277 reply is greater than or equal to 1024. Submitted by: Erik Salander Reviewed by: ru Revision Changes Path 1.31 +20 -1 src/lib/libalias/alias_db.c 1.7 +208 -16 src/lib/libalias/alias_ftp.c 1.14 +3 -1 src/lib/libalias/alias_local.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9:14:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B9DE37C285; Wed, 14 Jun 2000 09:14:52 -0700 (PDT) (envelope-from groudier@FreeBSD.org) Received: (from groudier@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA88492; Wed, 14 Jun 2000 09:14:51 -0700 (PDT) (envelope-from groudier@FreeBSD.org) Message-Id: <200006141614.JAA88492@freefall.freebsd.org> From: Gerard Roudier Date: Wed, 14 Jun 2000 09:14:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sym sym_defs.h sym_fw2.h sym_hipd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG groudier 2000/06/14 09:14:51 PDT Modified files: (Branch: RELENG_4) sys/dev/sym sym_defs.h sym_fw2.h sym_hipd.c Log: MFC: update sym_hipd.c to revision 1.16. Previous MFC came from revision 1.13. Fixes the user settings report problem with Tekram layout NVRAM for devices configured for Fast-40 and uses `bus space' instead of legacy IO/MMIO methods. Other changes that make the patch larger than it could have been are not dangerous for -stable and it would have been less safe, in my opinion, to try to revert them prior to this MFC. Revision Changes Path 1.4.2.2 +7 -4 src/sys/dev/sym/sym_defs.h 1.2.2.2 +5 -5 src/sys/dev/sym/sym_fw2.h 1.6.2.2 +259 -124 src/sys/dev/sym/sym_hipd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9:21:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EB15E37C2CA; Wed, 14 Jun 2000 09:21:21 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA89301; Wed, 14 Jun 2000 09:21:21 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006141621.JAA89301@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 14 Jun 2000 09:21:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/isc-dhcp3 Makefile ports/net/isc-dhcp3/files md5 ports/net/isc-dhcp3/patches patch-ab patch-aj patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/14 09:21:21 PDT Modified files: net/isc-dhcp3 Makefile net/isc-dhcp3/files md5 net/isc-dhcp3/patches patch-ab patch-aj Removed files: net/isc-dhcp3/patches patch-ad Log: Update to Beta version of ISC's version 3 DHCP suite. This may be useful to monitor changes in the DHCP suite. Revision Changes Path 1.33 +9 -5 ports/net/isc-dhcp3/Makefile 1.14 +1 -1 ports/net/isc-dhcp3/files/md5 1.7 +4 -8 ports/net/isc-dhcp3/patches/patch-ab 1.2 +10 -22 ports/net/isc-dhcp3/patches/patch-aj To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9:22:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0973B37C258; Wed, 14 Jun 2000 09:22:44 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA89585; Wed, 14 Jun 2000 09:22:43 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006141622.JAA89585@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 14 Jun 2000 09:22:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/14 09:22:43 PDT Modified files: . modules Log: Add isc-dhcp3 after the repo copy from isc-dhcp2. Revision Changes Path 1.1268 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9:23:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A2DF37C258; Wed, 14 Jun 2000 09:23:17 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA89685; Wed, 14 Jun 2000 09:23:17 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006141623.JAA89685@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 14 Jun 2000 09:23:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/14 09:23:17 PDT Modified files: net Makefile Log: Add isc-dhcp3 after the repo copy from isc-dhcp2. Revision Changes Path 1.367 +2 -1 ports/net/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 9:31:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D5A437C28C; Wed, 14 Jun 2000 09:31:26 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA90727; Wed, 14 Jun 2000 09:31:26 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200006141631.JAA90727@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 14 Jun 2000 09:31:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp ftp.1 src/usr.bin/telnet telnet.1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/06/14 09:31:26 PDT Modified files: (Branch: RELENG_4) usr.bin/ftp ftp.1 usr.bin/telnet telnet.1 Log: MFC: Mention about -4 and -6 options. Revision Changes Path 1.15.2.1 +10 -2 src/usr.bin/ftp/ftp.1 1.15.2.1 +10 -2 src/usr.bin/telnet/telnet.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:11:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A86237B9D9; Wed, 14 Jun 2000 10:11:49 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA97091; Wed, 14 Jun 2000 10:11:48 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006141711.KAA97091@freefall.freebsd.org> From: Bruce Evans Date: Wed, 14 Jun 2000 10:11:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys malloc.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/14 10:11:48 PDT Modified files: sys/sys malloc.h Log: Removed support for generating inline code for MALLOC() and FREE() in the dysfunctional !KMEMSTATS case. This hasn't compiled since rev.1.31 of kern_malloc.c quietly removed the core of the support for the !KMEMSTATS case. I fixed it to see if it was worth saving and found that (as usual) inlining just wasted space and increased complexity without significantly affecting time, at least for the lmbench2 micro-benchmark on a Celeron. The space bloat was surprisingly large - the text size increased from 1700K to 1840K for a version with the entire malloc() family inlined. Removed even older garbage (kmemxtob() and btokmemx() macros). Attempt to deprecate MALLOC() and FREE(). Given current compilers (gcc-2.x or C99), they don't do anything that (safe) function-like macros or inline functions named malloc() and free() couldn't do. Fixed missing casts of macro args in MALLOC() and FREE(). Revision Changes Path 1.49 +5 -46 src/sys/sys/malloc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:17:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C332837BA8D; Wed, 14 Jun 2000 10:17:42 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Received: (from jasone@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA97865; Wed, 14 Jun 2000 10:17:42 -0700 (PDT) (envelope-from jasone@FreeBSD.org) Message-Id: <200006141717.KAA97865@freefall.freebsd.org> From: Jason Evans Date: Wed, 14 Jun 2000 10:17:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread pthread_private.h uthread_cancel.c uthread_cond.c uthread_mutex.c uthread_resume_np.c uthread_suspend_np.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jasone 2000/06/14 10:17:42 PDT Modified files: lib/libc_r/uthread pthread_private.h uthread_cancel.c uthread_cond.c uthread_mutex.c uthread_resume_np.c uthread_suspend_np.c Log: pthread_mutex_lock(), pthread_cond_trywait(), and pthread_cond_wait() are not allowed to return EINTR, but use of pthread_suspend_np() could cause EINTR to be returned. To fix this, restructure pthread_suspend_np() so that it does not interrupt a thread that is waiting on a mutex or condition, and keep enough state around that pthread_resume_np() can fix things up afterwards. Reviewed by: deischen Revision Changes Path 1.41 +13 -2 src/lib/libc_r/uthread/pthread_private.h 1.5 +15 -10 src/lib/libc_r/uthread/uthread_cancel.c 1.24 +23 -7 src/lib/libc_r/uthread/uthread_cond.c 1.22 +43 -17 src/lib/libc_r/uthread/uthread_mutex.c 1.9 +27 -6 src/lib/libc_r/uthread/uthread_resume_np.c 1.9 +13 -3 src/lib/libc_r/uthread/uthread_suspend_np.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:21:36 2000 Delivered-To: cvs-all@freebsd.org Received: from internat.freebsd.org (internat.freebsd.org [146.64.8.4]) by hub.freebsd.org (Postfix) with ESMTP id 94BBF37C2C6; Wed, 14 Jun 2000 10:21:20 -0700 (PDT) (envelope-from jhay@internat.freebsd.org) Received: (from jhay@localhost) by internat.freebsd.org (8.9.3/8.9.3) id TAA62350; Wed, 14 Jun 2000 19:21:17 +0200 (SAST) (envelope-from jhay) Message-Id: <200006141721.TAA62350@internat.freebsd.org> From: John Hay Date: Wed, 14 Jun 2000 19:21:16 +0200 (SAST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh-agent.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhay 2000/06/14 19:21:16 SAST FreeBSD International Crypto Repository Modified files: crypto/openssh ssh-agent.c Log: MFF: (rev 1.5) Make `ssh-agent -k' work for csh(1)-like shells. Revision Changes Path 1.6 +2 -2 src/crypto/openssh/ssh-agent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:41:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F21BF37B75A; Wed, 14 Jun 2000 10:41:31 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA01208; Wed, 14 Jun 2000 10:41:32 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141741.KAA01208@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 10:41:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/locate/locate locate.updatedb.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 10:41:31 PDT Modified files: usr.bin/locate/locate locate.updatedb.8 Log: /etc/weekly --> /etc/periodic/weekly/310.locate PR: 19268 Submitted by: Uwe Pierau Reviewed by: asmodai Revision Changes Path 1.8 +2 -2 src/usr.bin/locate/locate/locate.updatedb.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:45:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7160837B522; Wed, 14 Jun 2000 10:45:17 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA01801; Wed, 14 Jun 2000 10:45:17 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141745.KAA01801@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 10:45:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/locate/locate locate.updatedb.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 10:45:17 PDT Modified files: (Branch: RELENG_4) usr.bin/locate/locate locate.updatedb.8 Log: MFC: /etc/weekly --> /etc/periodic/weekly/310.locate Revision Changes Path 1.7.2.1 +2 -2 src/usr.bin/locate/locate/locate.updatedb.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:53:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F2D637B522; Wed, 14 Jun 2000 10:53:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA02969; Wed, 14 Jun 2000 10:53:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006141753.KAA02969@freefall.freebsd.org> From: Peter Wemm Date: Wed, 14 Jun 2000 10:53:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts dokern.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/14 10:53:38 PDT Modified files: release/scripts dokern.sh Log: Hopefully wave the unbreak-release magic wand at dokern.sh. Use GENERIC's hints strings with BOOTMFS. Revision Changes Path 1.24 +2 -2 src/release/scripts/dokern.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:53:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B403437BA91; Wed, 14 Jun 2000 10:53:40 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA03014; Wed, 14 Jun 2000 10:53:41 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141753.KAA03014@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 10:53:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VFS_FHTOVP.9 src/sys/dev/advansys advansys.c src/sys/dev/aha aha.c src/sys/dev/ahb ahb.c src/sys/dev/aic7xxx aic7xxx.c src/sys/dev/buslogic bt.c src/sys/gnu/ext2fs ext2_inode.c src/sys/i386/isa istallion.c ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 10:53:41 PDT Modified files: share/man/man9 VFS_FHTOVP.9 Log: Fix typo (accessable --> accessible) and add period. PR: 18588 Submitted by: Anatoly Vorobey Reviewed by: asmodai Revision Changes Path 1.8 +2 -2 src/share/man/man9/VFS_FHTOVP.9 Modified files: sys/dev/advansys advansys.c sys/dev/aha aha.c sys/dev/ahb ahb.c sys/dev/aic7xxx aic7xxx.c sys/dev/buslogic bt.c sys/gnu/ext2fs ext2_inode.c sys/i386/isa istallion.c stallion.c Log: Fix typo (accessable --> accessible). PR: 18588 Submitted by: Anatoly Vorobey Reviewed by: asmodai Revision Changes Path 1.18 +2 -2 src/sys/dev/advansys/advansys.c 1.36 +2 -2 src/sys/dev/aha/aha.c 1.19 +2 -2 src/sys/dev/ahb/ahb.c 1.44 +2 -2 src/sys/dev/aic7xxx/aic7xxx.c 1.27 +2 -2 src/sys/dev/buslogic/bt.c 1.29 +2 -2 src/sys/gnu/ext2fs/ext2_inode.c 1.38 +3 -3 src/sys/i386/isa/istallion.c 1.41 +2 -2 src/sys/i386/isa/stallion.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 10:55:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5381737B7D9; Wed, 14 Jun 2000 10:55:34 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA03316; Wed, 14 Jun 2000 10:55:34 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006141755.KAA03316@freefall.freebsd.org> From: SADA Kenji Date: Wed, 14 Jun 2000 10:55:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mnews/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/14 10:55:34 PDT Modified files: japanese/mnews/pkg PLIST Log: Not to remain unchanged configuration files and those directories. Approved by: Maintainer Revision Changes Path 1.9 +2 -0 ports/japanese/mnews/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11: 3:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4065B37BCAB; Wed, 14 Jun 2000 11:03:12 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA04089; Wed, 14 Jun 2000 11:03:12 -0700 (PDT) (envelope-from iwasaki@FreeBSD.org) Message-Id: <200006141803.LAA04089@freefall.freebsd.org> From: Mitsuru IWASAKI Date: Wed, 14 Jun 2000 11:03:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 bios.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG iwasaki 2000/06/14 11:03:12 PDT Modified files: (Branch: RELENG_4) sys/i386/i386 bios.c Log: MFC: bios.c 1.32 -> 1.33 Fix gdt pointer for the current cpu on SMP. This will support power-off only. Fix for suspend/resume will come later. Submitted by: sumitani@bd2.hnes.nec.co.jp Reviewed by: jlemon Revision Changes Path 1.29.2.2 +2 -2 src/sys/i386/i386/bios.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:26:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7559337B87A; Wed, 14 Jun 2000 11:26:13 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA07769; Wed, 14 Jun 2000 11:26:12 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006141826.LAA07769@freefall.freebsd.org> From: Wilko Bulte Date: Wed, 14 Jun 2000 11:26:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha INSTALL.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/14 11:26:12 PDT Modified files: release/texts/alpha INSTALL.TXT Log: Document that alpha install CDs are now bootable. No need to muck around with floppies. Also document (for lack of a more appropriate place/file) the problems the installer has when other disks are present with a BSD disk label on them. Please remove this warning when the problem is fixed. PR: alpha/17642 Revision Changes Path 1.8 +19 -20 src/release/texts/alpha/INSTALL.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:30: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 16D5C37BBD1; Wed, 14 Jun 2000 11:29:57 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id LAA43046; Wed, 14 Jun 2000 11:29:52 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id LAA35283; Wed, 14 Jun 2000 11:30:23 -0700 (PDT) (envelope-from obrien) Date: Wed, 14 Jun 2000 11:30:23 -0700 From: "David O'Brien" To: "Andrey A. Chernov" Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libxpg4 Makefile Message-ID: <20000614113023.A35198@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200006130041.RAA43182@freefall.freebsd.org> <20000613011530.A45723@dragon.nuxi.com> <20000613203547.A81694@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000613203547.A81694@freebsd.org>; from ache@freebsd.org on Tue, Jun 13, 2000 at 08:35:47PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Jun 13, 2000 at 08:35:47PM -0700, Andrey A. Chernov wrote: > > > lib/libxpg4 Makefile > > > Log: > > > Bump major to preserve 3.x binaries compatibility > > > > Didn't you tell me this was unnecessary when I asked before? > > You don't ask about 3.x binaries, just about functions. Uh, functions is what this is about -- finding them. > All functions are the same, I know. My concerns were finding them. I guess I did not state my concerns clear enough. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:31:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E6C7937B87A; Wed, 14 Jun 2000 11:31:43 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA08374; Wed, 14 Jun 2000 11:31:42 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006141831.LAA08374@freefall.freebsd.org> From: Bruce Evans Date: Wed, 14 Jun 2000 11:31:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys malloc.h src/sys/kern kern_malloc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/14 11:31:42 PDT Modified files: sys/sys malloc.h sys/kern kern_malloc.c Log: sys/malloc.h: Order the SYSINIT() for MALLOC_DEFINE() correctly so that malloc() doesn't have to waste time initializing itself. The (SI_SUB_KMEM, SI_ORDER_ANY) order was shared with syscons' SYSINIT() for scmeminit(), and scmeminit() calls malloc(), so malloc() initialization was not always complete on the first call to malloc(). kern/kern_malloc.c: - Removed self-initialization in malloc(). - Removed half-baked sanity check in free(). Trust MALLOC_DEFINE(). Revision Changes Path 1.50 +2 -2 src/sys/sys/malloc.h 1.66 +2 -15 src/sys/kern/kern_malloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:31:58 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 1FEA737C32A; Wed, 14 Jun 2000 11:31:52 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id LAA43053; Wed, 14 Jun 2000 11:31:48 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id LAA35320; Wed, 14 Jun 2000 11:32:22 -0700 (PDT) (envelope-from obrien) Date: Wed, 14 Jun 2000 11:32:22 -0700 From: "David O'Brien" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/forth loader.4th Message-ID: <20000614113222.B35198@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200006140718.AAA59494@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006140718.AAA59494@freefall.freebsd.org>; from peter@FreeBSD.org on Wed, Jun 14, 2000 at 12:18:19AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jun 14, 2000 at 12:18:19AM -0700, Peter Wemm wrote: > FreeBSD/i386 bootstrap loader, Revision 0.8 > (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) We are not Linux. After using the loader in FreeBSD releases, can we have revision 1.0? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:33:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C732A37B9D9; Wed, 14 Jun 2000 11:33:51 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA08666; Wed, 14 Jun 2000 11:33:51 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006141833.LAA08666@freefall.freebsd.org> From: Wilko Bulte Date: Wed, 14 Jun 2000 11:33:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha INSTALL.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/14 11:33:51 PDT Modified files: (Branch: RELENG_4) release/texts/alpha INSTALL.TXT Log: [MFC]: Document that alpha install CDs are now bootable. No need to muck around with floppies. Also document (for lack of a more appropriate place/file) the problems the installer has when other disks are present with a BSD disk label on them. Please remove this warning when the problem is fixed. PR: alpha/17642 Revision Changes Path 1.6.2.1 +20 -21 src/release/texts/alpha/INSTALL.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:37:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AEDB37B5D5; Wed, 14 Jun 2000 11:37:21 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA09176; Wed, 14 Jun 2000 11:37:21 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006141837.LAA09176@freefall.freebsd.org> From: Will Andrews Date: Wed, 14 Jun 2000 11:37:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/scotty Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/14 11:37:21 PDT Modified files: net/scotty Makefile Log: Fix small typo. Submitted by: W. Gerald Hicks Revision Changes Path 1.42 +2 -2 ports/net/scotty/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:38:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 77A6137B5D5; Wed, 14 Jun 2000 11:38:44 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA09386; Wed, 14 Jun 2000 11:38:44 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006141838.LAA09386@freefall.freebsd.org> From: Bruce Evans Date: Wed, 14 Jun 2000 11:38:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys filedesc.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/14 11:38:44 PDT Modified files: sys/sys filedesc.h Log: Fixed disordering and misformatting in previous commit. Revision Changes Path 1.25 +2 -2 src/sys/sys/filedesc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:45: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.surf1.de (mail.surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 483D437C29E; Wed, 14 Jun 2000 11:44:56 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from neutron.cichlids.com (p3E9D38D6.dip0.t-ipconnect.de [62.157.56.214]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id UAA24906; Wed, 14 Jun 2000 20:44:43 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id AA11CAC27; Wed, 14 Jun 2000 20:45:04 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 9858214A67; Wed, 14 Jun 2000 20:44:55 +0200 (CEST) Date: Wed, 14 Jun 2000 20:44:55 +0200 From: Alexander Langer To: "David O'Brien" Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/forth loader.4th Message-ID: <20000614204455.A64340@cichlids.cichlids.com> References: <200006140718.AAA59494@freefall.freebsd.org> <20000614113222.B35198@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000614113222.B35198@dragon.nuxi.com>; from obrien@FreeBSD.org on Wed, Jun 14, 2000 at 11:32:22AM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake David O'Brien (obrien@FreeBSD.org): > > FreeBSD/i386 bootstrap loader, Revision 0.8 > > (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) > We are not Linux. After using the loader in FreeBSD releases, can we > have revision 1.0? Yes! I completely agree! This 0.x version numbers are ... err. ... . Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:48:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 121E737BC77; Wed, 14 Jun 2000 11:48:40 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA11459; Wed, 14 Jun 2000 11:48:40 -0700 (PDT) (envelope-from bde@FreeBSD.org) Message-Id: <200006141848.LAA11459@freefall.freebsd.org> From: Bruce Evans Date: Wed, 14 Jun 2000 11:48:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include bus_at386.h bus_pc98.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/06/14 11:48:39 PDT Modified files: sys/i386/include bus_at386.h bus_pc98.h Log: Fixed syntax errors and style bugs in previous commit. The syntax errors were normally harmless because they were in unreachable code and gcc apparently doesn't check the syntax inside asm statements that it optimizes away. Revision Changes Path 1.10 +3 -3 src/sys/i386/include/bus_at386.h 1.11 +3 -3 src/sys/i386/include/bus_pc98.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 11:52: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.cdrom.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id 4361637C34B; Wed, 14 Jun 2000 11:51:15 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id LAA27091; Wed, 14 Jun 2000 11:55:16 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200006141855.LAA27091@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: obrien@FreeBSD.org Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/forth loader.4th In-reply-to: Your message of "Wed, 14 Jun 2000 11:32:22 PDT." <20000614113222.B35198@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Jun 2000 11:55:16 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Wed, Jun 14, 2000 at 12:18:19AM -0700, Peter Wemm wrote: > > FreeBSD/i386 bootstrap loader, Revision 0.8 > > (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) > > We are not Linux. After using the loader in FreeBSD releases, can we > have revision 1.0? The version number is a trivial leftover from the use of the old NetBSD newvers.sh script. The entire thing is slated for death. Ignore it. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12: 0:29 2000 Delivered-To: cvs-all@freebsd.org Received: from grimreaper.grondar.za (grimreaper.grondar.za [196.7.18.138]) by hub.freebsd.org (Postfix) with ESMTP id AE35437BC8A; Wed, 14 Jun 2000 12:00:16 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grimreaper.grondar.za (localhost [127.0.0.1]) by grimreaper.grondar.za (8.9.3/8.9.3) with ESMTP id VAA01012; Wed, 14 Jun 2000 21:00:40 +0200 (SAST) (envelope-from mark@grimreaper.grondar.za) Message-Id: <200006141900.VAA01012@grimreaper.grondar.za> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/forth loader.4th References: <20000614204455.A64340@cichlids.cichlids.com> In-Reply-To: <20000614204455.A64340@cichlids.cichlids.com> ; from Alexander Langer "Wed, 14 Jun 2000 20:44:55 +0200." Date: Wed, 14 Jun 2000 21:00:40 +0200 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > FreeBSD/i386 bootstrap loader, Revision 0.8 > > (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) > We are not Linux. After using the loader in FreeBSD releases, can we > have revision 1.0? EXIM came up with a good way of dealing with this; they got to version (say) 0.53, decided it was stable, and made their first public release 1.54. This solved the "point-zero" problem, and circumnavigated lots of number politics. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12: 1:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CC07137BBB6; Wed, 14 Jun 2000 12:01:53 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA17727; Wed, 14 Jun 2000 12:01:53 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141901.MAA17727@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 12:01:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/fdp-primer book.sgml doc/en_US.ISO_8859-1/books/fdp-primer/sgml-primer chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 12:01:53 PDT Modified files: en_US.ISO_8859-1/books/fdp-primer book.sgml en_US.ISO_8859-1/books/fdp-primer/sgml-primer chapter.sgml Log: Since the author of the "Gentler HTML Validator" page has removed his page due to the new W3C validator service, temporarily do not publish the "more info about nsgmls error codes can be found ..." paragraph, until a similar page is available. PR: 18343 Submitted by: Paul Southworth Reviewed by: jim Revision Changes Path 1.10 +4 -3 doc/en_US.ISO_8859-1/books/fdp-primer/book.sgml 1.11 +5 -1 doc/en_US.ISO_8859-1/books/fdp-primer/sgml-primer/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12: 3:16 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 054FB37BD1F; Wed, 14 Jun 2000 12:03:11 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id NAA12716; Wed, 14 Jun 2000 13:03:09 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id NAA23291; Wed, 14 Jun 2000 13:02:00 -0600 (MDT) Message-Id: <200006141902.NAA23291@harmony.village.org> To: Alexander Langer Subject: Re: cvs commit: src/sys/boot/forth loader.4th Cc: "David O'Brien" , Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 14 Jun 2000 20:44:55 +0200." <20000614204455.A64340@cichlids.cichlids.com> References: <20000614204455.A64340@cichlids.cichlids.com> <200006140718.AAA59494@freefall.freebsd.org> <20000614113222.B35198@dragon.nuxi.com> Date: Wed, 14 Jun 2000 13:02:00 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000614204455.A64340@cichlids.cichlids.com> Alexander Langer writes: : Thus spake David O'Brien (obrien@FreeBSD.org): : : > > FreeBSD/i386 bootstrap loader, Revision 0.8 : > > (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) : > We are not Linux. After using the loader in FreeBSD releases, can we : > have revision 1.0? : : Yes! I completely agree! : This 0.x version numbers are ... err. ... . Hmmm. I was going to reply that this was already at 1.00, but that's BTX that's 1.00. I think we should just do it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12: 4:29 2000 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 7347E37BBB6; Wed, 14 Jun 2000 12:04:22 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id NAA12724; Wed, 14 Jun 2000 13:04:21 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id NAA23311; Wed, 14 Jun 2000 13:03:12 -0600 (MDT) Message-Id: <200006141903.NAA23311@harmony.village.org> To: Mark Murray Subject: Re: cvs commit: src/sys/boot/forth loader.4th Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Wed, 14 Jun 2000 21:00:40 +0200." <200006141900.VAA01012@grimreaper.grondar.za> References: <200006141900.VAA01012@grimreaper.grondar.za> <20000614204455.A64340@cichlids.cichlids.com> Date: Wed, 14 Jun 2000 13:03:12 -0600 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <200006141900.VAA01012@grimreaper.grondar.za> Mark Murray writes: : EXIM came up with a good way of dealing with this; they got to version : (say) 0.53, decided it was stable, and made their first public release : 1.54. This solved the "point-zero" problem, and circumnavigated lots : of number politics. I am a little sad that the release after 3.1 wasn't 3.14, but I suppose I can deal with that by using TeX :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12:10: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F79537BD1F; Wed, 14 Jun 2000 12:09:57 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA21292; Wed, 14 Jun 2000 12:09:57 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141909.MAA21292@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 12:09:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/introduction chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 12:09:56 PDT Modified files: en_US.ISO_8859-1/books/handbook/introduction chapter.sgml Log: Fix some nits, including comma nits, rewording of some parts and an URL nit. PR: 19261 Submitted by: Daniel Harris Reviewed by: jim Revision Changes Path 1.29 +14 -14 doc/en_US.ISO_8859-1/books/handbook/introduction/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12:37: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 135F237BD10; Wed, 14 Jun 2000 12:37:04 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25172; Wed, 14 Jun 2000 12:37:03 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006141937.MAA25172@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Wed, 14 Jun 2000 12:37:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common interp.c interp_forth.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/14 12:37:03 PDT Modified files: sys/boot/common interp.c interp_forth.c Log: Remove the setting of sourceid from bf_vm(), as bf_vm() really has no clue. Set sourceid to 0 when booting, which is the correct setting for stdin. Set sourceid to an arbitrary fd when include'ing, preserving and restoring the previous sourceid. This is possibly broken(), as 0 is a valid fd. Maybe we should +1 to this value. This fixes the version problem widely reported. Revision Changes Path 1.23 +8 -2 src/sys/boot/common/interp.c 1.17 +1 -5 src/sys/boot/common/interp_forth.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12:39:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A8BC37B725; Wed, 14 Jun 2000 12:39:35 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA25563; Wed, 14 Jun 2000 12:39:35 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006141939.MAA25563@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Wed, 14 Jun 2000 12:39:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/forth loader.4th Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/14 12:39:32 PDT Modified files: sys/boot/forth loader.4th Log: Revert to 1.8 Revision Changes Path 1.10 +23 -23 src/sys/boot/forth/loader.4th To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12:49:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20C0F37B725; Wed, 14 Jun 2000 12:49:27 -0700 (PDT) (envelope-from alex@FreeBSD.org) Received: (from alex@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA29625; Wed, 14 Jun 2000 12:49:26 -0700 (PDT) (envelope-from alex@FreeBSD.org) Message-Id: <200006141949.MAA29625@freefall.freebsd.org> From: Alexander Langer Date: Wed, 14 Jun 2000 12:49:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/faq book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alex 2000/06/14 12:49:26 PDT Modified files: en_US.ISO_8859-1/books/faq book.sgml Log: a) technical updates, such as reflecting cvsup changes, cvsup mirrors, daily snapshots, rsync and bad144 nuke, nuke > 16 MB RAM question, sysconfig -> rc.conf, rc.local -> local/rc.d/, SYSV* in GENERIC, ELF b) language updates, such as minor grammar nits, "FreeBSD 2.2.x" -> "FreeBSD"; whitespace cleanup PR: 18477 Submitted by: Eric Ogren Reviewed by: jim Revision Changes Path 1.61 +139 -165 doc/en_US.ISO_8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 12:53:30 2000 Delivered-To: cvs-all@freebsd.org Received: from server1.mich.com (server1.mich.com [198.108.16.2]) by hub.freebsd.org (Postfix) with ESMTP id 5CF7637BD77; Wed, 14 Jun 2000 12:53:27 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm016-023.dialup.bignet.net [64.79.82.231]) by server1.mich.com (8.9.3/8.9.3) with ESMTP id PAA19184; Wed, 14 Jun 2000 15:53:25 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 297781951; Wed, 14 Jun 2000 15:52:15 -0400 (EDT) Date: Wed, 14 Jun 2000 15:52:15 -0400 From: Will Andrews To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/net/isc-dhcp3 Makefile ports/net/isc-dhcp3/files md5 ports/net/isc-dhcp3/patches patch-ab patch-aj patch-ad Message-ID: <20000614155215.Y28506@argon.gryphonsoft.com> References: <200006141621.JAA89301@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006141621.JAA89301@freefall.freebsd.org>; from obrien@FreeBSD.ORG on Wed, Jun 14, 2000 at 09:21:21AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jun 14, 2000 at 09:21:21AM -0700, David E. O'Brien wrote: > Modified files: > net/isc-dhcp3 Makefile > net/isc-dhcp3/files md5 > net/isc-dhcp3/patches patch-ab patch-aj > Removed files: > net/isc-dhcp3/patches patch-ad > Log: > Update to Beta version of ISC's version 3 DHCP suite. > This may be useful to monitor changes in the DHCP suite. I sent a diff to the maintainer for this about 2 weeks ago and he never replied. :-( -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 13:20:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EC9D037C21B; Wed, 14 Jun 2000 13:20:51 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA43685; Wed, 14 Jun 2000 13:20:51 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006142020.NAA43685@freefall.freebsd.org> From: Wilko Bulte Date: Wed, 14 Jun 2000 13:20:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/14 13:20:51 PDT Modified files: release/texts/alpha HARDWARE.TXT Log: Document support for Alpha Processor Inc UP1000 Reviewed by: Andrew Gallatin Revision Changes Path 1.41 +55 -0 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 13:22:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B1F3A37C209; Wed, 14 Jun 2000 13:22:34 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA44020; Wed, 14 Jun 2000 13:22:34 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006142022.NAA44020@freefall.freebsd.org> From: Satoshi Asami Date: Wed, 14 Jun 2000 13:22:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/14 13:22:34 PDT Modified files: share/termcap termcap.src Log: Add kterm-color, which is to kterm what xterm-color is to xterm. Approved by: ache Revision Changes Path 1.92 +3 -1 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 13:30:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C40D237BB73; Wed, 14 Jun 2000 13:30:40 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA45102; Wed, 14 Jun 2000 13:30:40 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006142030.NAA45102@freefall.freebsd.org> From: Jim Mock Date: Wed, 14 Jun 2000 13:30:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/linuxemu chapter.sgml doc/en_US.ISO_8859-1/books/handbook/mail chapter.sgml doc/en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml doc/en_US.ISO_8859-1/books/handbook/policies chapter.sgml doc/en_US.ISO_8859-1/books/handbook/ports chapter.sgml doc/en_US.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/14 13:30:40 PDT Modified files: en_US.ISO_8859-1/books/handbook/linuxemu chapter.sgml en_US.ISO_8859-1/books/handbook/mail chapter.sgml en_US.ISO_8859-1/books/handbook/mirrors chapter.sgml en_US.ISO_8859-1/books/handbook/policies chapter.sgml en_US.ISO_8859-1/books/handbook/ports chapter.sgml en_US.ISO_8859-1/books/handbook/ppp-and-slip chapter.sgml en_US.ISO_8859-1/books/handbook/security chapter.sgml en_US.ISO_8859-1/books/handbook/serialcomms chapter.sgml en_US.ISO_8859-1/books/handbook/users chapter.sgml en_US.ISO_8859-1/books/handbook/x11 chapter.sgml Log: The third, and final episode in the attack of the spelling police series. Well, at least for now anyway :-) Revision Changes Path 1.31 +5 -5 doc/en_US.ISO_8859-1/books/handbook/linuxemu/chapter.sgml 1.19 +5 -5 doc/en_US.ISO_8859-1/books/handbook/mail/chapter.sgml 1.70 +8 -8 doc/en_US.ISO_8859-1/books/handbook/mirrors/chapter.sgml 1.17 +2 -2 doc/en_US.ISO_8859-1/books/handbook/policies/chapter.sgml 1.111 +3 -3 doc/en_US.ISO_8859-1/books/handbook/ports/chapter.sgml 1.25 +9 -9 doc/en_US.ISO_8859-1/books/handbook/ppp-and-slip/chapter.sgml 1.34 +15 -15 doc/en_US.ISO_8859-1/books/handbook/security/chapter.sgml 1.19 +28 -28 doc/en_US.ISO_8859-1/books/handbook/serialcomms/chapter.sgml 1.4 +4 -4 doc/en_US.ISO_8859-1/books/handbook/users/chapter.sgml 1.12 +5 -5 doc/en_US.ISO_8859-1/books/handbook/x11/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 13:51:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 32CF937B664; Wed, 14 Jun 2000 13:51:56 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA47893; Wed, 14 Jun 2000 13:51:56 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200006142051.NAA47893@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 14 Jun 2000 13:51:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net res_init.c res_send.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/06/14 13:51:56 PDT Modified files: lib/libc/net res_init.c res_send.c Log: Backout my previous commit. Cannot resolve any host on IPv4 only kernel. Reported by: ache Revision Changes Path 1.21 +21 -42 src/lib/libc/net/res_init.c 1.34 +37 -70 src/lib/libc/net/res_send.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14: 3:18 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 0C86B37C2D4; Wed, 14 Jun 2000 14:03:05 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p14-dn03kiryunisiki.gunma.ocn.ne.jp [210.232.224.143]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id GAA06669; Thu, 15 Jun 2000 06:03:02 +0900 (JST) Message-ID: <3947F275.5426F4C2@newsguy.com> Date: Thu, 15 Jun 2000 06:00:37 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/config Makefile config.h config.yconfigvers.h lang.l main.c mkheaders.c mkmakefile.c mkoptions.cmkioconf.c src/sys/alpha/conf GENERIC.hints gethints.pl GENERICSIMOS src/sys/boot/forth loader.conf src/sys/conf Makefile.alpha ... References: <200006132228.PAA97611@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Peter Wemm wrote: > > peter 2000/06/13 15:28:50 PDT > > Removed files: > usr.sbin/config mkioconf.c > sys/i386/conf LINT > Log: > config(8) no longer generates an ioconf.c table - ie: the configuration > no longer has to be compiled into the kernel. You can reconfigure your > isa devices with the likes of this at loader(8) time: > set hint.ed.0.port=0x320 Why haven't you removed userconfig.c? It depends on ioconf.c's devtab... -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14:11:55 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.surf1.de (mail.surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id D499637C292; Wed, 14 Jun 2000 14:11:43 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from neutron.cichlids.com (p3E9D38D6.dip0.t-ipconnect.de [62.157.56.214]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id XAA13249; Wed, 14 Jun 2000 23:11:30 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id E5C72AC27; Wed, 14 Jun 2000 23:11:52 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id E512F14A69; Wed, 14 Jun 2000 23:11:41 +0200 (CEST) Date: Wed, 14 Jun 2000 23:11:41 +0200 From: Alexander Langer To: Hajimu UMEMOTO Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000614231141.D471@cichlids.cichlids.com> References: <200006142051.NAA47893@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006142051.NAA47893@freefall.freebsd.org>; from ume@FreeBSD.org on Wed, Jun 14, 2000 at 01:51:56PM -0700 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Hajimu UMEMOTO (ume@FreeBSD.org): > Backout my previous commit. > Cannot resolve any host on IPv4 only kernel. > Reported by: ache Actually, he answered to his own mail and said, that this was a BIND fault or something, so you didn't break anything :) What is this called now? "Backout the Backout?" Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14:27:56 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 307D937B622; Wed, 14 Jun 2000 14:27:52 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p14-dn03kiryunisiki.gunma.ocn.ne.jp [210.232.224.143]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id GAA03296; Thu, 15 Jun 2000 06:27:50 +0900 (JST) Message-ID: <3947F912.73D2F729@newsguy.com> Date: Thu, 15 Jun 2000 06:28:50 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: obrien@FreeBSD.org Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/forth loader.4th References: <200006140718.AAA59494@freefall.freebsd.org> <20000614113222.B35198@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG David O'Brien wrote: > > On Wed, Jun 14, 2000 at 12:18:19AM -0700, Peter Wemm wrote: > > FreeBSD/i386 bootstrap loader, Revision 0.8 > > (root@outback.netplex.com.au, Tue Jun 13 23:26:49 PDT 2000) > > We are not Linux. After using the loader in FreeBSD releases, can we > have revision 1.0? Mike first asked me to dump the present loader versioning system back when 3.x was current. I never found the time to sit down and figure out how to do it right, though. Besically, we want to get rid of src/sys/boot/{alpha,i386}/loader/version, and replace that with a simple #define. I'd suggest src/sys/boot/common/bootstrap.h as destination, as I loath (sp?) the idea of having overall loader functionality be machine-dependent, but... We also want it to be something more like __FreeBSD_version, number-wise. While doing the above is straight-forward, I do not know how the present version stuff is processed/linked. Lame excuse, but... -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14:29:25 2000 Delivered-To: cvs-all@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id B00D237B7B3; Wed, 14 Jun 2000 14:29:12 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:FsX81XU5DtUuP6RkY/IFEtzXnoaFtby2cV08CN6WlsWsZ+kFT5LyyYEDTo+Jf+GP@localhost [::1]) (authenticated) by peace.mahoroba.org (8.10.2/3.7W-peace) with ESMTP id e5ELQAp00466; Thu, 15 Jun 2000 06:26:10 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Thu, 15 Jun 2000 06:26:07 +0900 (JST) Message-Id: <20000615.062607.74758174.ume@mahoroba.org> To: alex@big.endian.de Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: Hajimu UMEMOTO (=?iso-2022-jp?B?GyRCR19LXBsoQiAbJEJIJRsoQg==?=) In-Reply-To: <20000614231141.D471@cichlids.cichlids.com> References: <200006142051.NAA47893@freefall.freebsd.org> <20000614231141.D471@cichlids.cichlids.com> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> On Wed, 14 Jun 2000 23:11:41 +0200 >>>>> Alexander Langer said: alex> Actually, he answered to his own mail and said, that this was a BIND alex> fault or something, so you didn't break anything :) Thank you. But, no. I just tried with IPv4 only kernel and saw the thing ache said. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14:48:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F1F3337C326; Wed, 14 Jun 2000 14:48:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA55719; Wed, 14 Jun 2000 14:48:19 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200006142148.OAA55719@freefall.freebsd.org> From: Poul-Henning Kamp Date: Wed, 14 Jun 2000 14:48:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_softdep_stub.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/06/14 14:48:19 PDT Modified files: sys/ufs/ffs ffs_softdep_stub.c Log: Remove a comment which should never have made it in. Revision Changes Path 1.9 +1 -2 src/sys/ufs/ffs/ffs_softdep_stub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14:51:37 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 8E33237B6E4; Wed, 14 Jun 2000 14:51:27 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p14-dn03kiryunisiki.gunma.ocn.ne.jp [210.232.224.143]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id GAA05894; Thu, 15 Jun 2000 06:51:21 +0900 (JST) Message-ID: <3947FE94.AD2F0716@newsguy.com> Date: Thu, 15 Jun 2000 06:52:20 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: "Daniel C. Sobral" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common interp.c interp_forth.c References: <200006141937.MAA25172@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Daniel C. Sobral" wrote: > > dcs 2000/06/14 12:37:03 PDT > > Modified files: > sys/boot/common interp.c interp_forth.c > Log: > Remove the setting of sourceid from bf_vm(), as bf_vm() really has > no clue. Err... I meant, bf_run(). Hopefully, the true meaning ought to be obvious from the source. :-) bf_vm is a variable. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 14:56:21 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id CF9FC37C381; Wed, 14 Jun 2000 14:56:12 -0700 (PDT) Date: Wed, 14 Jun 2000 14:56:12 -0700 From: "Andrey A. Chernov" To: Alexander Langer Cc: Hajimu UMEMOTO , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000614145612.A48921@freebsd.org> References: <200006142051.NAA47893@freefall.freebsd.org> <20000614231141.D471@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000614231141.D471@cichlids.cichlids.com>; from alex@big.endian.de on Wed, Jun 14, 2000 at 11:11:41PM +0200 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, Jun 14, 2000 at 11:11:41PM +0200, Alexander Langer wrote: > Thus spake Hajimu UMEMOTO (ume@FreeBSD.org): > > > Backout my previous commit. > > Cannot resolve any host on IPv4 only kernel. > > Reported by: ache > > Actually, he answered to his own mail and said, that this was a BIND > fault or something, so you didn't break anything :) I never said this or something. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 15: 4: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 9EC7137B5F2; Wed, 14 Jun 2000 15:03:47 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.7/nospam) with UUCP id AAA02479; Thu, 15 Jun 2000 00:03:36 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 34BAB87AE; Wed, 14 Jun 2000 23:47:41 +0200 (CEST) Date: Wed, 14 Jun 2000 23:47:41 +0200 From: Ollivier Robert To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/archivers/fastjar Makefile ports/x11-wm/sawfish Makefile ports/x11-wm/ude Makefile ports/x11-wm/icewm Makefile ports/x11-wm/sapphire Makefile ports/x11-wm/icewm-i18n Makefile ports/x11-toolkits/rep-gtk Makefile ports/x11-toolkits/gtk-- ... Message-ID: <20000614234741.A20397@keltia.freenix.fr> Mail-Followup-To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200006141321.GAA07906@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006141321.GAA07906@freefall.freebsd.org>; from sobomax@FreeBSD.org on Wed, Jun 14, 2000 at 06:21:38AM -0700 X-Operating-System: FreeBSD 5.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG According to Maxim Sobolev: > www/quanta Makefile > lang/librep Makefile > Log: > Teach MASTER_SITES about new MASTER_SITE_SOURCEFORGE. shells/zsh and shells/zsh-devel should also now be based on sourceforge.net BTW. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 5.0-CURRENT #80: Sun Jun 4 22:44:19 CEST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 15:12:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BC7B37B6E4; Wed, 14 Jun 2000 15:12:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA59500; Wed, 14 Jun 2000 15:12:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006142212.PAA59500@freefall.freebsd.org> From: Jim Mock Date: Wed, 14 Jun 2000 15:12:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi Makefile ports/irc/irssi/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/14 15:12:38 PDT Modified files: irc/irssi Makefile irc/irssi/files md5 Log: Update to version 0.7.91. Revision Changes Path 1.32 +2 -2 ports/irc/irssi/Makefile 1.23 +1 -1 ports/irc/irssi/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 16:17:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 76D9837B678; Wed, 14 Jun 2000 16:17:11 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA66574; Wed, 14 Jun 2000 16:17:11 -0700 (PDT) (envelope-from motoyuki@FreeBSD.org) Message-Id: <200006142317.QAA66574@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 14 Jun 2000 16:17:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/internal developer.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG motoyuki 2000/06/14 16:17:11 PDT Modified files: ja/internal developer.sgml Log: Fix the link to internal/committers-guide.html and tutorials/docproj-primer: These pages not translated yet. So point to the English version. Revision Changes Path 1.11 +4 -4 www/ja/internal/developer.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 16:20:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 48D1137B56B; Wed, 14 Jun 2000 16:20:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA66943; Wed, 14 Jun 2000 16:20:39 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006142320.QAA66943@freefall.freebsd.org> From: Jim Mock Date: Wed, 14 Jun 2000 16:20:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/backups chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/14 16:20:39 PDT Modified files: en_US.ISO_8859-1/books/handbook/backups chapter.sgml Log: ``by do a backup'' -> ``by doing a backup'' PR: 19276 Submitted by: Ed Ryan Revision Changes Path 1.25 +2 -2 doc/en_US.ISO_8859-1/books/handbook/backups/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 16:34:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1389737B5A6; Wed, 14 Jun 2000 16:34:23 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA68165; Wed, 14 Jun 2000 16:34:23 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006142334.QAA68165@freefall.freebsd.org> From: Warner Losh Date: Wed, 14 Jun 2000 16:34:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf majors Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/14 16:34:22 PDT Modified files: sys/conf majors Log: This file lies by saying 200-255 are reserved for local use, thus implying that they aren't used for the rest of the system. Fix the lies: 253 is used by mfs (bad MFS for not registering it). 254 is a magic cookie inside of the dev code in at least one place. 255 is -1 which is magic in a different way in the dev code. So, that means that 200-252 are reserved for local users. A grep for 252 didn't turn anything up, so I'm assuming it and lower are safe. And I thought I was being smart by allocating our local major numbers from 254 on down. This caused very very odd problems that were hard to track down: close not being called, sync failing at reboot, etc. Revision Changes Path 1.105 +6 -3 src/sys/conf/majors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 18: 0: 8 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DBF9F37B623; Wed, 14 Jun 2000 18:00:01 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA76506; Wed, 14 Jun 2000 18:00:01 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200006150100.SAA76506@freefall.freebsd.org> From: Kevin Lo Date: Wed, 14 Jun 2000 18:00:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/fdp-primer/writing-style chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/06/14 18:00:01 PDT Modified files: en_US.ISO_8859-1/books/fdp-primer/writing-style chapter.sgml Log: Fix spelling and nits. PR: 19267 Submitted by: Daniel Harris Revision Changes Path 1.8 +7 -7 doc/en_US.ISO_8859-1/books/fdp-primer/writing-style/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 18:20: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67A7837B588; Wed, 14 Jun 2000 18:19:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA78975; Wed, 14 Jun 2000 18:19:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150119.SAA78975@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 18:19:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/ports comments.ja Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 18:19:55 PDT Modified files: ja/ports comments.ja Log: Sync with 1.279 of INDEX. Revision Changes Path 1.19 +32 -12 www/ja/ports/comments.ja To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 18:30:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D8B537BBCA; Wed, 14 Jun 2000 18:30:05 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80111; Wed, 14 Jun 2000 18:30:05 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150130.SAA80111@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 18:30:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news press-rel-1.sgml press-rel-2.sgml press-rel-3.sgml press-rel-4.sgml qnewsletter-1-1.sgml qnewsletter-1-2.sgml qnewsletter-1-3.sgml qnewsletter-1-5.sgml qnewsletter-1-6.sgml qnewsletter-1-7.sgml qnewsletter-2-1.sgml ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 18:30:05 PDT Modified files: en/news press-rel-1.sgml press-rel-2.sgml press-rel-3.sgml press-rel-4.sgml qnewsletter-1-1.sgml qnewsletter-1-2.sgml qnewsletter-1-3.sgml qnewsletter-1-5.sgml qnewsletter-1-6.sgml qnewsletter-1-7.sgml qnewsletter-2-1.sgml qnewsletter-2-2.sgml Log: $Date$ is never expanded. Use $FreeBSD$. Revision Changes Path 1.4 +2 -2 www/en/news/press-rel-1.sgml 1.4 +2 -2 www/en/news/press-rel-2.sgml 1.4 +2 -2 www/en/news/press-rel-3.sgml 1.2 +2 -2 www/en/news/press-rel-4.sgml 1.11 +2 -2 www/en/news/qnewsletter-1-1.sgml 1.8 +2 -2 www/en/news/qnewsletter-1-2.sgml 1.10 +2 -2 www/en/news/qnewsletter-1-3.sgml 1.8 +2 -2 www/en/news/qnewsletter-1-5.sgml 1.7 +2 -2 www/en/news/qnewsletter-1-6.sgml 1.6 +2 -2 www/en/news/qnewsletter-1-7.sgml 1.5 +2 -2 www/en/news/qnewsletter-2-1.sgml 1.4 +2 -2 www/en/news/qnewsletter-2-2.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 18:34:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E0A3E37B98F; Wed, 14 Jun 2000 18:34:15 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80470; Wed, 14 Jun 2000 18:34:15 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150134.SAA80470@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 18:34:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 18:34:15 PDT Modified files: en/news Makefile Log: Remove duplicated include. Revision Changes Path 1.19 +1 -5 www/en/news/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 18:40:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 43E8C37BDA5; Wed, 14 Jun 2000 18:40:23 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA80935; Wed, 14 Jun 2000 18:40:23 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150140.SAA80935@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 18:40:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/news press-rel-4.sgml Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 18:40:23 PDT Modified files: ja/news Makefile Added files: ja/news press-rel-4.sgml Log: Add translation of BSDI merge press release. Submitted by: Shun SUZUKI Reviewed by: Akihiro IIJIMA , daichi@ongs.net, Koga Youichirou Revision Changes Path 1.19 +2 -1 www/ja/news/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 19:26:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E8D4537B745; Wed, 14 Jun 2000 19:26:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA85714; Wed, 14 Jun 2000 19:26:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150226.TAA85714@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 19:26:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/cutting-edge chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 19:26:33 PDT Modified files: ja_JP.eucJP/books/handbook/cutting-edge chapter.sgml Log: Delete obsoleted comments. Revision Changes Path 1.13 +1 -5 doc/ja_JP.eucJP/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 19:39:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF8D537B728; Wed, 14 Jun 2000 19:39:04 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA86817; Wed, 14 Jun 2000 19:39:04 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150239.TAA86817@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 19:39:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/mirrors chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 19:39:04 PDT Modified files: ja_JP.eucJP/books/handbook/mirrors chapter.sgml Log: Merge changes in the English version (1.57 --> 1.66). Submitted by: Shun SUZUKI Revision Changes Path 1.18 +104 -3 doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 19:43:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EEA437B728; Wed, 14 Jun 2000 19:43:17 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA87329; Wed, 14 Jun 2000 19:43:17 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150243.TAA87329@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 19:43:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook mailing-lists.ent Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 19:43:17 PDT Modified files: ja_JP.eucJP/books/handbook mailing-lists.ent Log: Merge changes in the English version (1.4 --> 1.5). Revision Changes Path 1.5 +5 -2 doc/ja_JP.eucJP/books/handbook/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 19:47:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67D0337B728; Wed, 14 Jun 2000 19:47:13 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA87789; Wed, 14 Jun 2000 19:47:13 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150247.TAA87789@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 19:47:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/bibliography chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 19:47:13 PDT Modified files: ja_JP.eucJP/books/handbook/bibliography chapter.sgml Log: Merge changes in the English version (1.21 --> 1.22). Revision Changes Path 1.11 +6 -6 doc/ja_JP.eucJP/books/handbook/bibliography/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 20: 1:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E6C3737BC33; Wed, 14 Jun 2000 20:01:36 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89378; Wed, 14 Jun 2000 20:01:36 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150301.UAA89378@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 20:01:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 20:01:36 PDT Modified files: ja_JP.eucJP/books/handbook book.sgml Log: Merge changes in the English version (1.83 --> 1.89). Revision Changes Path 1.55 +7 -4 doc/ja_JP.eucJP/books/handbook/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 20: 3: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A88337BA8B; Wed, 14 Jun 2000 20:02:51 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA89592; Wed, 14 Jun 2000 20:02:51 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150302.UAA89592@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 20:02:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook chapters.ent Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 20:02:50 PDT Modified files: ja_JP.eucJP/books/handbook chapters.ent Log: Merge changes in the English version (1.4 --> 1.5). Revision Changes Path 1.4 +3 -3 doc/ja_JP.eucJP/books/handbook/chapters.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 20: 9:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E527D37B605; Wed, 14 Jun 2000 20:09:23 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA91216; Wed, 14 Jun 2000 20:09:23 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006150309.UAA91216@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 14 Jun 2000 20:09:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/hw chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/14 20:09:23 PDT Modified files: ja_JP.eucJP/books/handbook/hw chapter.sgml Log: Merge changes in the English version (1.30 --> 1.32). Submitted by: Shun SUZUKI Revision Changes Path 1.10 +57 -52 doc/ja_JP.eucJP/books/handbook/hw/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 21: 4:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A5EB637B578; Wed, 14 Jun 2000 21:04:29 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA97493; Wed, 14 Jun 2000 21:04:29 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006150404.VAA97493@freefall.freebsd.org> From: Will Andrews Date: Wed, 14 Jun 2000 21:04:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/shout Makefile ports/audio/shout/files md5 ports/audio/shout/patches patch-aa patch-ab patch-ac ports/audio/shout/pkg COMMENT DESCR PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/14 21:04:29 PDT Modified files: audio Makefile Added files: audio/shout Makefile audio/shout/files md5 audio/shout/patches patch-aa patch-ab patch-ac audio/shout/pkg COMMENT DESCR PLIST Log: Add shout, a program that sends mp3 streams to icecast/shoutcast servers. Requested/prodded by: Kevin Bockman (now MAINTAINER) Revision Changes Path 1.143 +2 -1 ports/audio/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 21: 4:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B04237B578; Wed, 14 Jun 2000 21:04:49 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA97548; Wed, 14 Jun 2000 21:04:49 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006150404.VAA97548@freefall.freebsd.org> From: Will Andrews Date: Wed, 14 Jun 2000 21:04:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/14 21:04:49 PDT Modified files: . modules Log: shout --> ports/audio/shout Revision Changes Path 1.1269 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Jun 14 21:12:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E3AE237B578; Wed, 14 Jun 2000 21:12:17 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA99286; Wed, 14 Jun 2000 21:12:17 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006150412.VAA99286@freefall.freebsd.org> From: Peter Wemm Date: Wed, 14 Jun 2000 21:12:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/14 21:12:17 PDT Modified files: sys/kern subr_bus.c Log: Fix a stray debug output. change if (1 || bootverbose) to if (bootverbose) Revision Changes Path 1.69 +4 -4 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 2:57:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1972E37B549; Thu, 15 Jun 2000 02:57:21 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01445; Thu, 15 Jun 2000 02:57:21 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006150957.CAA01445@freefall.freebsd.org> From: Peter Wemm Date: Thu, 15 Jun 2000 02:57:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_bus.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/15 02:57:20 PDT Modified files: sys/kern subr_bus.c Log: As a bit of a gross hack, allow earlier access to both the static and dynamic hints. This allows the resource_XXX_value() calls to work before malloc() has started. This gets the serial console working as well as a few other things. Revision Changes Path 1.70 +59 -5 src/sys/kern/subr_bus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 2:57:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36FFD37B549; Thu, 15 Jun 2000 02:57:35 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) Received: (from cracauer@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA01533; Thu, 15 Jun 2000 02:57:35 -0700 (PDT) (envelope-from cracauer@FreeBSD.org) Message-Id: <200006150957.CAA01533@freefall.freebsd.org> From: Martin Cracauer Date: Thu, 15 Jun 2000 02:57:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_misc.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cracauer 2000/06/15 02:57:35 PDT Modified files: sys/i386/linux linux_misc.c Log: Linux allows to mmap annonymous with a file descriptor passed, FreeBSD doesn't. In the Linux emulation layer, ignore the fd passed when MAP_ANON is specified. Known application to be fixed: Xanalys/Harlequin Lispworks Also improve debug output for mmap, now showing what the emulation layer mapped to what (-DDEBUG). Reviewed by: marcel Revision Changes Path 1.79 +11 -3 src/sys/i386/linux/linux_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3: 0:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0AB8137B57F; Thu, 15 Jun 2000 03:00:20 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA01973; Thu, 15 Jun 2000 03:00:20 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006151000.DAA01973@freefall.freebsd.org> From: Brian Somers Date: Thu, 15 Jun 2000 03:00:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/15 03:00:20 PDT Modified files: . Makefile.inc1 Log: Add -DNO_KERNELDEPEND and -DNO_KERNELCONFIG Not reviewed by: sheldonh Revision Changes Path 1.151 +11 -3 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3: 1:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C0C4A37B549; Thu, 15 Jun 2000 03:01:14 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA02098; Thu, 15 Jun 2000 03:01:14 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006151001.DAA02098@freefall.freebsd.org> From: Peter Wemm Date: Thu, 15 Jun 2000 03:01:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa syscons_isa.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/15 03:01:14 PDT Modified files: sys/isa syscons_isa.c Log: This is a temporary bandaid to get vidconsole working again without options USERCONFIG being present. Due to the lack of early boot hints neither sio or sc would succeed the console probe. If USERCONFIG was active, there was a second cninit() after userconfig had run and that happened to make the console selection work. If you left out USERCONFIG, you would end up with no console at all. :-( This needs a proper fix, especially when sc looses the "at isa" hint. But for now, this works. Revision Changes Path 1.13 +6 -5 src/sys/isa/syscons_isa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3:24:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CCA137B57F; Thu, 15 Jun 2000 03:24:54 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA02817; Thu, 15 Jun 2000 03:24:53 -0700 (PDT) (envelope-from kevlo@FreeBSD.org) Message-Id: <200006151024.DAA02817@freefall.freebsd.org> From: Kevin Lo Date: Thu, 15 Jun 2000 03:24:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/ports ports.inc Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kevlo 2000/06/15 03:24:53 PDT Modified files: en/ports ports.inc Log: Clearly identifies that section of the http://www.FreeBSD.org/ports page which contains the upgrade kits. PR: 19280 Submitted by: Dan Langille Revision Changes Path 1.49 +3 -1 www/en/ports/ports.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3:25: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 07C7F37B520; Thu, 15 Jun 2000 03:24:56 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA02867; Thu, 15 Jun 2000 03:24:55 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151024.DAA02867@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 03:24:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/shells/zsh-devel Makefile ports/shells/zsh Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 03:24:55 PDT Modified files: shells/zsh-devel Makefile shells/zsh Makefile Log: Add MASTER_SITE_SOURCEFORGE. Submitted by: Ollivier Robert Revision Changes Path 1.48 +4 -3 ports/shells/zsh-devel/Makefile 1.45 +4 -2 ports/shells/zsh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3:47:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5F3B37B6D7; Thu, 15 Jun 2000 03:47:24 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA06127; Thu, 15 Jun 2000 03:47:25 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151047.DAA06127@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 03:47:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 03:47:25 PDT Modified files: . modules Log: xmps --> ports/graphics/xmps Revision Changes Path 1.1270 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3:48: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 34A5B37B6B4; Thu, 15 Jun 2000 03:48:02 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA06247; Thu, 15 Jun 2000 03:48:02 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151048.DAA06247@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 03:48:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xmps - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 03:48:01 PDT ports/graphics/xmps - Imported sources Update of /home/ncvs/ports/graphics/xmps In directory freefall.freebsd.org:/d/home/sobomax/xmps Log Message: Initial import of xmps - a nice Gnome MPEG videoplayer. Status: Vendor Tag: SOBOMAX Release Tags: v1_0 N ports/graphics/xmps/Makefile N ports/graphics/xmps/files/md5 N ports/graphics/xmps/pkg/COMMENT N ports/graphics/xmps/pkg/DESCR N ports/graphics/xmps/pkg/PLIST N ports/graphics/xmps/patches/patch-aa N ports/graphics/xmps/patches/patch-ab N ports/graphics/xmps/patches/patch-ac N ports/graphics/xmps/patches/patch-ad N ports/graphics/xmps/patches/patch-ae N ports/graphics/xmps/patches/patch-af No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 3:48:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 594BC37B6B4; Thu, 15 Jun 2000 03:48:40 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA06366; Thu, 15 Jun 2000 03:48:40 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151048.DAA06366@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 03:48:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 03:48:39 PDT Modified files: graphics Makefile Log: Activate xmps. Revision Changes Path 1.203 +2 -1 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 6:51:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E4AE37B6EC; Thu, 15 Jun 2000 06:51:31 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA86818; Thu, 15 Jun 2000 06:51:31 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200006151351.GAA86818@freefall.freebsd.org> From: Nick Hibma Date: Thu, 15 Jun 2000 06:51:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usb.c usb_port.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/06/15 06:51:31 PDT Modified files: sys/dev/usb usb.c usb_port.h Log: Make the module dependencies actually work. Specifying 'umass_load="YES"' in /boot/loader.conf or doing a 'kldload umass' now loads usb.ko automagically. Prodded by: green Revision Changes Path 1.33 +2 -3 src/sys/dev/usb/usb.c 1.30 +13 -4 src/sys/dev/usb/usb_port.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 7: 2:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 046A737B5F3; Thu, 15 Jun 2000 07:02:21 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA88298; Thu, 15 Jun 2000 07:02:20 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006151402.HAA88298@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 15 Jun 2000 07:02:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/15 07:02:20 PDT Modified files: . modules Log: calife --> ports/security/calife Revision Changes Path 1.1271 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 7: 5:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36D9237B737; Thu, 15 Jun 2000 07:05:52 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA89773; Thu, 15 Jun 2000 07:05:51 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006151405.HAA89773@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 15 Jun 2000 07:05:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/calife - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/15 07:05:51 PDT ports/security/calife - Imported sources Update of /home/ncvs/ports/security/calife In directory freefall.freebsd.org:/d/home/roberto/tmp/ports/calife Log Message: It is only fitting that I commit a port of one of my programs :-) Calife is a lightweight version of sudo with a unique feature: you can limit which user one can become (not just root). PR: ports/19269 Submitted by: Thomas Quinot Status: Vendor Tag: ROBERTO Release Tags: v_2_8_4 N ports/security/calife/Makefile N ports/security/calife/pkg/COMMENT N ports/security/calife/pkg/DESCR N ports/security/calife/pkg/PLIST N ports/security/calife/files/md5 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 7: 8:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2382837B824; Thu, 15 Jun 2000 07:08:40 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA90230; Thu, 15 Jun 2000 07:08:40 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006151408.HAA90230@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 15 Jun 2000 07:08:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/15 07:08:39 PDT Modified files: security Makefile Log: Share calife to the world. PR: ports/19269 Submitted by: Thomas Quinot Revision Changes Path 1.108 +2 -1 ports/security/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 7:17: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C50837BCDB; Thu, 15 Jun 2000 07:16:53 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Received: (from roberto@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA91358; Thu, 15 Jun 2000 07:16:52 -0700 (PDT) (envelope-from roberto@FreeBSD.org) Message-Id: <200006151416.HAA91358@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 15 Jun 2000 07:16:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG roberto 2000/06/15 07:16:52 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Thomas Quinot for his security/calife port. Revision Changes Path 1.227 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 7:27:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 61E5B37B73B; Thu, 15 Jun 2000 07:27:33 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA92612; Thu, 15 Jun 2000 07:27:33 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200006151427.HAA92612@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 15 Jun 2000 07:27:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/grepmail Makefile ports/mail/grepmail/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/06/15 07:27:33 PDT Modified files: mail/grepmail Makefile mail/grepmail/files md5 Log: Update port to 4.41 Revision Changes Path 1.13 +2 -2 ports/mail/grepmail/Makefile 1.10 +1 -1 ports/mail/grepmail/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 8:23:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0777637B52A; Thu, 15 Jun 2000 08:23:13 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA01453; Thu, 15 Jun 2000 08:23:12 -0700 (PDT) (envelope-from n_hibma@FreeBSD.org) Message-Id: <200006151523.IAA01453@freefall.freebsd.org> From: Nick Hibma Date: Thu, 15 Jun 2000 08:23:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG n_hibma 2000/06/15 08:23:12 PDT Modified files: sys/dev/usb uhci.c Log: Inverted error messages. Submitted by: John R. LoVerso Revision Changes Path 1.47 +4 -4 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 8:51:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BBA837B5BE; Thu, 15 Jun 2000 08:51:50 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA05348; Thu, 15 Jun 2000 08:51:50 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006151551.IAA05348@freefall.freebsd.org> From: Brian Somers Date: Thu, 15 Jun 2000 08:51:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/15 08:51:50 PDT Modified files: usr.sbin/ypserv Makefile.yp Log: Handle comments and empty lines when generating YP passwd and group files PR: 14269 Submitted by: howard@ee.utah.edu Revision Changes Path 1.29 +9 -5 src/usr.sbin/ypserv/Makefile.yp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 8:57:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 212BC37B516; Thu, 15 Jun 2000 08:57:35 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA05990; Thu, 15 Jun 2000 08:57:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006151557.IAA05990@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 15 Jun 2000 08:57:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/15 08:57:34 PDT Modified files: sys/conf Makefile.alpha Makefile.i386 Log: Only copy /modules to /modules.old if /modules exists and is populated. Submitted by: John DeBoskey Revision Changes Path 1.62 +5 -3 src/sys/conf/Makefile.alpha 1.192 +5 -3 src/sys/conf/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 9: 8:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A988E37BC1B; Thu, 15 Jun 2000 09:08:04 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA08332; Thu, 15 Jun 2000 09:08:04 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006151608.JAA08332@freefall.freebsd.org> From: Brian Somers Date: Thu, 15 Jun 2000 09:08:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/date date.1 vary.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/15 09:08:04 PDT Modified files: (Branch: RELENG_3) bin/date date.1 vary.c Log: MFC: Correct date adjustments crossing summer/winter time boundaries. Revision Changes Path 1.26.2.6 +25 -2 src/bin/date/date.1 1.4.2.4 +131 -88 src/bin/date/vary.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 9: 9:36 2000 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.freebsd.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id DEBF137BBB0; Thu, 15 Jun 2000 09:09:27 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (hak.nat.Awfulhak.org [172.31.0.12]) by storm.FreeBSD.org.uk (8.9.3/8.9.3) with ESMTP id RAA53583; Thu, 15 Jun 2000 17:09:24 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id RAA03111; Thu, 15 Jun 2000 17:09:20 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200006151609.RAA03111@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Cameron Grant Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: cvs commit: src/sys/dev/sound/pcm channel.c In-Reply-To: Message from Cameron Grant of "Tue, 13 Jun 2000 16:18:44 PDT." <200006132318.QAA03442@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 15 Jun 2000 17:09:20 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > cg 2000/06/13 16:18:44 PDT > > Modified files: > sys/dev/sound/pcm channel.c > Log: > handle closing differently - should fix the end-of-sample cutoff bug > > Revision Changes Path > 1.29 +26 -23 src/sys/dev/sound/pcm/channel.c Thanks. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 9:44:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D36637BC7C; Thu, 15 Jun 2000 09:44:18 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA13840; Thu, 15 Jun 2000 09:44:17 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151644.JAA13840@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 09:44:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/tix Makefile ports/x11-toolkits/tix/pkg PLIST ports/x11-toolkits/tk80 Makefile ports/x11-toolkits/tk80/pkg PLIST ports/x11-toolkits/tk82 Makefile ports/x11-toolkits/tk82/pkg PLIST ports/x11-toolkits/tk83 Makefile ports/x11-toolkits/tk83/pkg ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 09:44:17 PDT Modified files: x11-toolkits/tix Makefile x11-toolkits/tix/pkg PLIST x11-toolkits/tk80 Makefile x11-toolkits/tk80/pkg PLIST x11-toolkits/tk82 Makefile x11-toolkits/tk82/pkg PLIST x11-toolkits/tk83 Makefile x11-toolkits/tk83/pkg PLIST x11-toolkits/tkstep80 Makefile x11-toolkits/tkstep80/pkg PLIST net/tn5250 Makefile net/tn5250/pkg PLIST devel/tvision Makefile devel/tvision/pkg PLIST emulators/twin Makefile emulators/twin/pkg PLIST graphics/twinlib Makefile graphics/twinlib/pkg PLIST databases/typhoon Makefile databases/typhoon/pkg PLIST net/ucd-snmp Makefile net/ucd-snmp/pkg PLIST databases/unixODBC Makefile databases/unixODBC/pkg PLIST graphics/urt Makefile graphics/urt/pkg PLIST converters/uulib Makefile converters/uulib/pkg PLIST x11-toolkits/vdk Makefile x11-toolkits/vdk/pkg PLIST x11-toolkits/vdkbuilder Makefile x11-toolkits/vdkbuilder/pkg PLIST math/vtk Makefile math/vtk/pkg PLIST PLIST.with_patented x11-wm/windowmaker Makefile x11-wm/windowmaker/pkg PLIST x11-wm/windowmaker-i18n Makefile x11-wm/windowmaker-i18n/pkg PLIST emulators/wine Makefile emulators/wine/pkg PLIST audio/wsoundserver Makefile audio/wsoundserver/pkg PLIST x11-toolkits/wxgtk Makefile x11-toolkits/wxgtk/pkg PLIST x11-toolkits/xbae Makefile x11-toolkits/xbae/pkg PLIST misc/xdelta Makefile misc/xdelta/pkg PLIST x11-toolkits/xforms Makefile x11-toolkits/xforms/pkg PLIST textproc/xls2xml Makefile textproc/xls2xml/pkg PLIST audio/xmms Makefile audio/xmms/pkg PLIST graphics/xpm Makefile graphics/xpm/pkg PLIST x11-toolkits/xview Makefile x11-toolkits/xview/pkg PLIST chinese/libtabe Makefile chinese/libtabe/pkg PLIST Log: First round of INSTALL_SHLIB fixes. Revision Changes Path 1.35 +2 -2 ports/x11-toolkits/tix/Makefile 1.16 +0 -2 ports/x11-toolkits/tix/pkg/PLIST 1.24 +2 -2 ports/x11-toolkits/tk80/Makefile 1.10 +0 -2 ports/x11-toolkits/tk80/pkg/PLIST 1.35 +2 -2 ports/x11-toolkits/tk82/Makefile 1.14 +0 -2 ports/x11-toolkits/tk82/pkg/PLIST 1.39 +2 -1 ports/x11-toolkits/tk83/Makefile 1.16 +0 -2 ports/x11-toolkits/tk83/pkg/PLIST 1.27 +2 -2 ports/x11-toolkits/tkstep80/Makefile 1.6 +0 -2 ports/x11-toolkits/tkstep80/pkg/PLIST 1.6 +2 -1 ports/net/tn5250/Makefile 1.5 +0 -2 ports/net/tn5250/pkg/PLIST 1.14 +2 -1 ports/devel/tvision/Makefile 1.7 +0 -2 ports/devel/tvision/pkg/PLIST 1.5 +2 -2 ports/emulators/twin/Makefile 1.3 +0 -2 ports/emulators/twin/pkg/PLIST 1.5 +2 -1 ports/graphics/twinlib/Makefile 1.3 +0 -2 ports/graphics/twinlib/pkg/PLIST 1.11 +4 -3 ports/databases/typhoon/Makefile 1.5 +0 -2 ports/databases/typhoon/pkg/PLIST 1.45 +3 -3 ports/net/ucd-snmp/Makefile 1.14 +0 -2 ports/net/ucd-snmp/pkg/PLIST 1.4 +2 -1 ports/databases/unixODBC/Makefile 1.2 +0 -2 ports/databases/unixODBC/pkg/PLIST 1.22 +2 -1 ports/graphics/urt/Makefile 1.5 +0 -2 ports/graphics/urt/pkg/PLIST 1.23 +2 -2 ports/converters/uulib/Makefile 1.8 +0 -2 ports/converters/uulib/pkg/PLIST 1.3 +2 -1 ports/x11-toolkits/vdk/Makefile 1.2 +0 -2 ports/x11-toolkits/vdk/pkg/PLIST 1.3 +2 -1 ports/x11-toolkits/vdkbuilder/Makefile 1.2 +0 -2 ports/x11-toolkits/vdkbuilder/pkg/PLIST 1.9 +2 -2 ports/math/vtk/Makefile 1.4 +0 -2 ports/math/vtk/pkg/PLIST 1.2 +0 -2 ports/math/vtk/pkg/PLIST.with_patented 1.69 +2 -2 ports/x11-wm/windowmaker/Makefile 1.35 +0 -2 ports/x11-wm/windowmaker/pkg/PLIST 1.73 +2 -1 ports/x11-wm/windowmaker-i18n/Makefile 1.31 +0 -2 ports/x11-wm/windowmaker-i18n/pkg/PLIST 1.82 +3 -1 ports/emulators/wine/Makefile 1.8 +0 -2 ports/emulators/wine/pkg/PLIST 1.14 +2 -1 ports/audio/wsoundserver/Makefile 1.3 +0 -2 ports/audio/wsoundserver/pkg/PLIST 1.11 +2 -4 ports/x11-toolkits/wxgtk/Makefile 1.6 +0 -2 ports/x11-toolkits/wxgtk/pkg/PLIST 1.13 +5 -4 ports/x11-toolkits/xbae/Makefile 1.9 +0 -2 ports/x11-toolkits/xbae/pkg/PLIST 1.22 +2 -1 ports/misc/xdelta/Makefile 1.11 +0 -1 ports/misc/xdelta/pkg/PLIST 1.30 +3 -2 ports/x11-toolkits/xforms/Makefile 1.17 +0 -2 ports/x11-toolkits/xforms/pkg/PLIST 1.4 +2 -1 ports/textproc/xls2xml/Makefile 1.2 +0 -2 ports/textproc/xls2xml/pkg/PLIST 1.12 +2 -1 ports/audio/xmms/Makefile 1.6 +0 -2 ports/audio/xmms/pkg/PLIST 1.28 +2 -2 ports/graphics/xpm/Makefile 1.21 +0 -2 ports/graphics/xpm/pkg/PLIST 1.16 +2 -2 ports/x11-toolkits/xview/Makefile 1.5 +0 -2 ports/x11-toolkits/xview/pkg/PLIST 1.13 +2 -2 ports/chinese/libtabe/Makefile 1.6 +0 -2 ports/chinese/libtabe/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 9:46:18 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 1CBA437BC42; Thu, 15 Jun 2000 09:46:13 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA28212; Thu, 15 Jun 2000 10:46:10 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA21537; Thu, 15 Jun 2000 10:46:10 -0600 (MDT) (envelope-from nate) Date: Thu, 15 Jun 2000 10:46:10 -0600 (MDT) Message-Id: <200006151646.KAA21537@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Alexander Langer Cc: Hajimu UMEMOTO , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c In-Reply-To: <20000614231141.D471@cichlids.cichlids.com> References: <200006142051.NAA47893@freefall.freebsd.org> <20000614231141.D471@cichlids.cichlids.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Backout my previous commit. > > Cannot resolve any host on IPv4 only kernel. > > Reported by: ache > > Actually, he answered to his own mail and said, that this was a BIND > fault or something, so you didn't break anything :) libc/net *IS* BIND. :) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 9:48:32 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id B97BF37B8AE; Thu, 15 Jun 2000 09:48:26 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA28243; Thu, 15 Jun 2000 10:48:24 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA21563; Thu, 15 Jun 2000 10:48:24 -0600 (MDT) (envelope-from nate) Date: Thu, 15 Jun 2000 10:48:24 -0600 (MDT) Message-Id: <200006151648.KAA21563@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep_stub.c In-Reply-To: <200006142148.OAA55719@freefall.freebsd.org> References: <200006142148.OAA55719@freefall.freebsd.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > phk 2000/06/14 14:48:19 PDT > > Modified files: > sys/ufs/ffs ffs_softdep_stub.c > Log: > Remove a comment which should never have made it in. I like that comment. :) :) :) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10: 8:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E9D4137B66E; Thu, 15 Jun 2000 10:08:29 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA17700; Thu, 15 Jun 2000 10:08:30 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006151708.KAA17700@freefall.freebsd.org> From: Brian Somers Date: Thu, 15 Jun 2000 10:08:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c defs.h ip.c ipcp.c ipcp.h ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/15 10:08:29 PDT Modified files: (Branch: RELENG_4) usr.sbin/ppp bundle.c bundle.h command.c defs.h ip.c ipcp.c ipcp.h ppp.8 Log: MFC: Add ``set urgent none'' and ``set ifqueue'' Revision Changes Path 1.84.2.4 +8 -3 src/usr.sbin/ppp/bundle.c 1.33.2.3 +2 -1 src/usr.sbin/ppp/bundle.h 1.230.2.3 +17 -1 src/usr.sbin/ppp/command.c 1.52.2.3 +2 -1 src/usr.sbin/ppp/defs.h 1.78.2.3 +3 -3 src/usr.sbin/ppp/ip.c 1.90.2.3 +4 -2 src/usr.sbin/ppp/ipcp.c 1.30.2.2 +4 -1 src/usr.sbin/ppp/ipcp.h 1.209.2.6 +39 -10 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10: 9:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9806D37B675; Thu, 15 Jun 2000 10:09:20 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA17860; Thu, 15 Jun 2000 10:09:20 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006151709.KAA17860@freefall.freebsd.org> From: Brian Somers Date: Thu, 15 Jun 2000 10:09:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c defs.h ip.c ipcp.c ipcp.h ppp.8 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/15 10:09:13 PDT Modified files: (Branch: RELENG_3) usr.sbin/ppp bundle.c bundle.h command.c defs.h ip.c ipcp.c ipcp.h ppp.8 Log: MF4: Add ``set urgent none'' and ``set ifqueue'' Revision Changes Path 1.43.2.13 +8 -3 src/usr.sbin/ppp/bundle.c 1.20.2.8 +2 -1 src/usr.sbin/ppp/bundle.h 1.177.2.11 +17 -1 src/usr.sbin/ppp/command.c 1.36.2.8 +2 -1 src/usr.sbin/ppp/defs.h 1.54.2.9 +3 -3 src/usr.sbin/ppp/ip.c 1.68.2.12 +4 -2 src/usr.sbin/ppp/ipcp.c 1.22.2.8 +4 -1 src/usr.sbin/ppp/ipcp.h 1.142.2.22 +39 -10 src/usr.sbin/ppp/ppp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10:12:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 78DE537C334; Thu, 15 Jun 2000 10:12:51 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA19432; Thu, 15 Jun 2000 10:12:51 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151712.KAA19432@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 10:12:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/Cgraph Makefile ports/graphics/Cgraph/pkg PLIST ports/graphics/EZWGL Makefile ports/graphics/EZWGL/pkg PLIST ports/graphics/Hermes Makefile ports/graphics/Hermes/pkg PLIST ports/graphics/ImageMagick Makefile ports/graphics/ImageMagick/pkg ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 10:12:51 PDT Modified files: graphics/Cgraph Makefile graphics/Cgraph/pkg PLIST graphics/EZWGL Makefile graphics/EZWGL/pkg PLIST graphics/Hermes Makefile graphics/Hermes/pkg PLIST graphics/ImageMagick Makefile graphics/ImageMagick/pkg PLIST devel/ORBacus Makefile devel/ORBacus/pkg PLIST devel/ORBit Makefile devel/ORBit/pkg PLIST devel/SWIG Makefile devel/SWIG/pkg PLIST x11/XFree86 Makefile x11/XFree86/pkg PLIST PLIST.alpha PLIST.pc98 PLIST.stripped x11/XFree86-4-clients Makefile x11/XFree86-4-clients/pkg PLIST x11/XFree86-4-libraries Makefile x11/XFree86-4-libraries/pkg PLIST x11/XFree86-aoutlibs Makefile x11/XFree86-aoutlibs/pkg PLIST x11-toolkits/Xaw3d Makefile x11-toolkits/Xaw3d/pkg PLIST x11-servers/XttXF86srv-common Makefile x11-servers/XttXF86srv-common/pkg PLIST print/a2ps-letter Makefile print/a2ps-letter/pkg PLIST graphics/aalib Makefile graphics/aalib/pkg PLIST net/adns Makefile net/adns/pkg PLIST misc/amanda24 Makefile misc/amanda24/pkg PLIST devel/amulet Makefile devel/amulet/pkg PLIST textproc/aspell Makefile textproc/aspell/pkg PLIST math/blas Makefile math/blas/pkg PLIST x11-toolkits/blt Makefile x11-toolkits/blt/pkg PLIST devel/bonobo Makefile devel/bonobo/pkg PLIST archivers/bzip2 Makefile archivers/bzip2/pkg PLIST misc/cassowary Makefile misc/cassowary/pkg PLIST devel/cdk Makefile devel/cdk/pkg PLIST www/cgic Makefile www/cgic/pkg PLIST www/cgihtml Makefile www/cgihtml/pkg PLIST Log: Second round of INSTALL_SHLIBS=yes fixes. Revision Changes Path 1.6 +3 -2 ports/graphics/Cgraph/Makefile 1.3 +0 -2 ports/graphics/Cgraph/pkg/PLIST 1.23 +2 -2 ports/graphics/EZWGL/Makefile 1.10 +0 -2 ports/graphics/EZWGL/pkg/PLIST 1.11 +2 -2 ports/graphics/Hermes/Makefile 1.5 +0 -2 ports/graphics/Hermes/pkg/PLIST 1.83 +3 -5 ports/graphics/ImageMagick/Makefile 1.41 +0 -2 ports/graphics/ImageMagick/pkg/PLIST 1.30 +2 -2 ports/devel/ORBacus/Makefile 1.10 +0 -3 ports/devel/ORBacus/pkg/PLIST 1.30 +2 -1 ports/devel/ORBit/Makefile 1.10 +0 -2 ports/devel/ORBit/pkg/PLIST 1.26 +4 -3 ports/devel/SWIG/Makefile 1.11 +0 -2 ports/devel/SWIG/pkg/PLIST 1.78 +2 -2 ports/x11/XFree86/Makefile 1.26 +0 -2 ports/x11/XFree86/pkg/PLIST 1.7 +0 -2 ports/x11/XFree86/pkg/PLIST.alpha 1.10 +0 -2 ports/x11/XFree86/pkg/PLIST.pc98 1.9 +0 -2 ports/x11/XFree86/pkg/PLIST.stripped 1.82 +2 -4 ports/x11/XFree86-4-clients/Makefile 1.32 +0 -2 ports/x11/XFree86-4-clients/pkg/PLIST 1.82 +2 -4 ports/x11/XFree86-4-libraries/Makefile 1.32 +0 -2 ports/x11/XFree86-4-libraries/pkg/PLIST 1.7 +2 -2 ports/x11/XFree86-aoutlibs/Makefile 1.2 +0 -2 ports/x11/XFree86-aoutlibs/pkg/PLIST 1.30 +2 -2 ports/x11-toolkits/Xaw3d/Makefile 1.11 +0 -2 ports/x11-toolkits/Xaw3d/pkg/PLIST 1.26 +2 -2 ports/x11-servers/XttXF86srv-common/Makefile 1.9 +0 -2 ports/x11-servers/XttXF86srv-common/pkg/PLIST 1.34 +2 -1 ports/print/a2ps-letter/Makefile 1.19 +0 -2 ports/print/a2ps-letter/pkg/PLIST 1.13 +2 -1 ports/graphics/aalib/Makefile 1.5 +0 -2 ports/graphics/aalib/pkg/PLIST 1.4 +2 -1 ports/net/adns/Makefile 1.2 +0 -2 ports/net/adns/pkg/PLIST 1.28 +2 -1 ports/misc/amanda24/Makefile 1.15 +0 -2 ports/misc/amanda24/pkg/PLIST 1.10 +2 -2 ports/devel/amulet/Makefile 1.3 +0 -2 ports/devel/amulet/pkg/PLIST 1.18 +2 -1 ports/textproc/aspell/Makefile 1.8 +0 -2 ports/textproc/aspell/pkg/PLIST 1.26 +2 -4 ports/math/blas/Makefile 1.9 +0 -2 ports/math/blas/pkg/PLIST 1.34 +3 -2 ports/x11-toolkits/blt/Makefile 1.13 +0 -2 ports/x11-toolkits/blt/pkg/PLIST 1.14 +2 -1 ports/devel/bonobo/Makefile 1.7 +0 -2 ports/devel/bonobo/pkg/PLIST 1.28 +3 -4 ports/archivers/bzip2/Makefile 1.11 +0 -2 ports/archivers/bzip2/pkg/PLIST 1.8 +2 -1 ports/misc/cassowary/Makefile 1.4 +0 -2 ports/misc/cassowary/pkg/PLIST 1.8 +2 -2 ports/devel/cdk/Makefile 1.4 +0 -2 ports/devel/cdk/pkg/PLIST 1.4 +3 -2 ports/www/cgic/Makefile 1.2 +0 -2 ports/www/cgic/pkg/PLIST 1.6 +3 -2 ports/www/cgihtml/Makefile 1.4 +0 -2 ports/www/cgihtml/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10:19:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF3AF37BCC2; Thu, 15 Jun 2000 10:19:22 -0700 (PDT) (envelope-from chris@FreeBSD.org) Received: (from chris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA20466; Thu, 15 Jun 2000 10:19:23 -0700 (PDT) (envelope-from chris@FreeBSD.org) Message-Id: <200006151719.KAA20466@freefall.freebsd.org> From: Chris Costello Date: Thu, 15 Jun 2000 10:19:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/fdesc fdesc_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG chris 2000/06/15 10:19:23 PDT Modified files: sys/miscfs/fdesc fdesc_vnops.c Log: Replace vattr_null() with VATTR_NULL() and do not explicity set vattr fields to VNOVAL afterwards. Revision Changes Path 1.55 +3 -5 src/sys/miscfs/fdesc/fdesc_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10:42:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 85C2137BC57; Thu, 15 Jun 2000 10:42:41 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA23525; Thu, 15 Jun 2000 10:42:41 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151742.KAA23525@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 10:42:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/krb5/patches patch-be patch-bf patch-bg Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 10:42:41 PDT Added files: security/krb5/patches patch-be patch-bf patch-bg Log: Bug fixes: = Remote root vulnerability in GSSFTPD = Multiple denial of service vulnerabilities in krb4 KDC Patches were obtained directly from MIT, not the PR, though I have every reason to believe that the patches in the PR are also correct. PR: ports/19301 Submitted by: Cy Schubert Obtained from: http://web.mit.edu/kerberos/www/advisories/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10:52:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5094137C3B4; Thu, 15 Jun 2000 10:52:41 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA24725; Thu, 15 Jun 2000 10:52:41 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006151752.KAA24725@freefall.freebsd.org> From: Wilko Bulte Date: Thu, 15 Jun 2000 10:52:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/15 10:52:41 PDT Modified files: release/texts/alpha HARDWARE.TXT Log: update UP1000 memory intf. details Revision Changes Path 1.42 +2 -2 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 10:59:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C46937C3A4; Thu, 15 Jun 2000 10:59:46 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id KAA27511; Thu, 15 Jun 2000 10:59:45 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006151759.KAA27511@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 15 Jun 2000 10:59:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pgplot Makefile ports/graphics/pgplot/pkg PLIST ports/palm/pilot-link Makefile ports/palm/pilot-link/pkg PLIST ports/graphics/plotutils Makefile ports/graphics/plotutils/pkg PLIST ports/math/plplot Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/15 10:59:45 PDT Modified files: graphics/pgplot Makefile graphics/pgplot/pkg PLIST palm/pilot-link Makefile palm/pilot-link/pkg PLIST graphics/plotutils Makefile graphics/plotutils/pkg PLIST math/plplot Makefile math/plplot/pkg PLIST graphics/png Makefile graphics/png/pkg PLIST devel/popt Makefile devel/popt/pkg PLIST games/powerpak Makefile games/powerpak/pkg PLIST textproc/pspell Makefile textproc/pspell/pkg PLIST devel/pth Makefile devel/pth/pkg PLIST devel/pth-devel Makefile devel/pth-devel/pkg PLIST x11-toolkits/qt-i18n Makefile x11-toolkits/qt-i18n/pkg PLIST x11-toolkits/qt145 Makefile x11-toolkits/qt145/pkg PLIST x11-toolkits/qt21 Makefile x11-toolkits/qt21/pkg PLIST net/radiusclient Makefile net/radiusclient/pkg PLIST converters/recode Makefile converters/recode/pkg PLIST lang/rexx-imc Makefile lang/rexx-imc/pkg PLIST devel/rpc2 Makefile devel/rpc2/pkg PLIST net/rrdtool Makefile net/rrdtool/pkg PLIST security/rsaref Makefile security/rsaref/pkg PLIST lang/ruby Makefile lang/ruby/pkg PLIST devel/rvm Makefile devel/rvm/pkg PLIST graphics/sane Makefile graphics/sane/pkg PLIST lang/schemetoc Makefile lang/schemetoc/pkg PLIST x11-wm/scwm Makefile x11-wm/scwm/pkg PLIST devel/sdl Makefile devel/sdl/pkg PLIST devel/sdl-devel Makefile devel/sdl-devel/pkg PLIST audio/sidplay Makefile audio/sidplay/pkg PLIST math/simpack Makefile math/simpack/pkg PLIST lang/siod Makefile lang/siod/pkg PLIST devel/sip Makefile devel/sip/pkg PLIST x11-toolkits/slingshot Makefile x11-toolkits/slingshot/pkg PLIST graphics/smpeg Makefile graphics/smpeg/pkg PLIST net/socks5 Makefile net/socks5/pkg PLIST textproc/sp Makefile textproc/sp/pkg PLIST audio/sphinx Makefile audio/sphinx/pkg PLIST devel/str Makefile devel/str/pkg PLIST devel/swarm Makefile devel/swarm/pkg PLIST lang/tcl80 Makefile lang/tcl80/pkg PLIST lang/tcl81-thread Makefile lang/tcl81-thread/pkg PLIST lang/tcl82 Makefile lang/tcl82/pkg PLIST lang/tcl83 Makefile lang/tcl83/pkg PLIST lang/tclX80 Makefile lang/tclX80/pkg PLIST security/tcp_wrapper Makefile security/tcp_wrapper/pkg PLIST graphics/tiff Makefile graphics/tiff/pkg PLIST PLIST.nodocs graphics/tifmerge Makefile graphics/tifmerge/pkg PLIST Log: Third round of INSTALL_SHLIBS=yes fixes. Revision Changes Path 1.13 +2 -2 ports/graphics/pgplot/Makefile 1.6 +0 -2 ports/graphics/pgplot/pkg/PLIST 1.35 +2 -4 ports/palm/pilot-link/Makefile 1.10 +0 -2 ports/palm/pilot-link/pkg/PLIST 1.13 +2 -4 ports/graphics/plotutils/Makefile 1.5 +0 -2 ports/graphics/plotutils/pkg/PLIST 1.14 +2 -2 ports/math/plplot/Makefile 1.4 +0 -2 ports/math/plplot/pkg/PLIST 1.24 +3 -4 ports/graphics/png/Makefile 1.18 +0 -2 ports/graphics/png/pkg/PLIST 1.7 +2 -1 ports/devel/popt/Makefile 1.3 +0 -2 ports/devel/popt/pkg/PLIST 1.15 +3 -4 ports/games/powerpak/Makefile 1.4 +0 -2 ports/games/powerpak/pkg/PLIST 1.3 +2 -1 ports/textproc/pspell/Makefile 1.2 +0 -2 ports/textproc/pspell/pkg/PLIST 1.48 +2 -4 ports/devel/pth/Makefile 1.8 +0 -2 ports/devel/pth/pkg/PLIST 1.26 +2 -4 ports/devel/pth-devel/Makefile 1.8 +0 -2 ports/devel/pth-devel/pkg/PLIST 1.51 +2 -2 ports/x11-toolkits/qt-i18n/Makefile 1.21 +0 -2 ports/x11-toolkits/qt-i18n/pkg/PLIST 1.44 +2 -2 ports/x11-toolkits/qt145/Makefile 1.21 +0 -2 ports/x11-toolkits/qt145/pkg/PLIST 1.50 +2 -2 ports/x11-toolkits/qt21/Makefile 1.27 +0 -2 ports/x11-toolkits/qt21/pkg/PLIST 1.9 +2 -1 ports/net/radiusclient/Makefile 1.4 +0 -2 ports/net/radiusclient/pkg/PLIST 1.10 +2 -1 ports/converters/recode/Makefile 1.3 +0 -2 ports/converters/recode/pkg/PLIST 1.13 +3 -4 ports/lang/rexx-imc/Makefile 1.7 +0 -2 ports/lang/rexx-imc/pkg/PLIST 1.2 +2 -1 ports/devel/rpc2/Makefile 1.2 +0 -2 ports/devel/rpc2/pkg/PLIST 1.11 +2 -1 ports/net/rrdtool/Makefile 1.7 +0 -2 ports/net/rrdtool/pkg/PLIST 1.19 +3 -2 ports/security/rsaref/Makefile 1.8 +0 -2 ports/security/rsaref/pkg/PLIST 1.21 +2 -2 ports/lang/ruby/Makefile 1.12 +0 -2 ports/lang/ruby/pkg/PLIST 1.2 +2 -1 ports/devel/rvm/Makefile 1.2 +0 -2 ports/devel/rvm/pkg/PLIST 1.24 +2 -1 ports/graphics/sane/Makefile 1.16 +0 -2 ports/graphics/sane/pkg/PLIST 1.17 +2 -4 ports/lang/schemetoc/Makefile 1.8 +0 -2 ports/lang/schemetoc/pkg/PLIST 1.16 +2 -1 ports/x11-wm/scwm/Makefile 1.11 +0 -2 ports/x11-wm/scwm/pkg/PLIST 1.15 +2 -1 ports/devel/sdl/Makefile 1.9 +0 -2 ports/devel/sdl/pkg/PLIST 1.18 +2 -1 ports/devel/sdl-devel/Makefile 1.11 +0 -2 ports/devel/sdl-devel/pkg/PLIST 1.9 +2 -1 ports/audio/sidplay/Makefile 1.3 +0 -2 ports/audio/sidplay/pkg/PLIST 1.12 +2 -2 ports/math/simpack/Makefile 1.4 +0 -2 ports/math/simpack/pkg/PLIST 1.7 +4 -5 ports/lang/siod/Makefile 1.2 +0 -2 ports/lang/siod/pkg/PLIST 1.3 +2 -1 ports/devel/sip/Makefile 1.2 +0 -2 ports/devel/sip/pkg/PLIST 1.12 +2 -2 ports/x11-toolkits/slingshot/Makefile 1.4 +0 -2 ports/x11-toolkits/slingshot/pkg/PLIST 1.8 +2 -1 ports/graphics/smpeg/Makefile 1.6 +0 -2 ports/graphics/smpeg/pkg/PLIST 1.29 +2 -1 ports/net/socks5/Makefile 1.7 +0 -2 ports/net/socks5/pkg/PLIST 1.16 +3 -1 ports/textproc/sp/Makefile 1.7 +0 -1 ports/textproc/sp/pkg/PLIST 1.4 +2 -1 ports/audio/sphinx/Makefile 1.3 +0 -2 ports/audio/sphinx/pkg/PLIST 1.5 +2 -4 ports/devel/str/Makefile 1.2 +0 -2 ports/devel/str/pkg/PLIST 1.9 +2 -4 ports/devel/swarm/Makefile 1.4 +0 -2 ports/devel/swarm/pkg/PLIST 1.26 +2 -2 ports/lang/tcl80/Makefile 1.14 +0 -2 ports/lang/tcl80/pkg/PLIST 1.10 +2 -2 ports/lang/tcl81-thread/Makefile 1.2 +0 -2 ports/lang/tcl81-thread/pkg/PLIST 1.29 +2 -2 ports/lang/tcl82/Makefile 1.17 +0 -2 ports/lang/tcl82/pkg/PLIST 1.33 +2 -2 ports/lang/tcl83/Makefile 1.19 +0 -2 ports/lang/tcl83/pkg/PLIST 1.33 +2 -2 ports/lang/tclX80/Makefile 1.15 +0 -2 ports/lang/tclX80/pkg/PLIST 1.26 +3 -2 ports/security/tcp_wrapper/Makefile 1.17 +0 -2 ports/security/tcp_wrapper/pkg/PLIST 1.27 +2 -4 ports/graphics/tiff/Makefile 1.18 +0 -2 ports/graphics/tiff/pkg/PLIST 1.5 +0 -2 ports/graphics/tiff/pkg/PLIST.nodocs 1.8 +2 -4 ports/graphics/tifmerge/Makefile 1.2 +0 -2 ports/graphics/tifmerge/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11: 3:57 2000 Delivered-To: cvs-all@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id 5494637BCBC; Thu, 15 Jun 2000 11:03:44 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:VTwyr35HYBEsY2UMsXWaymEY05WIZlZYq6EKih3th+gXNa3D6iV2VVpLw8jEiKJi@localhost [::1]) (authenticated) by peace.mahoroba.org (8.10.2/3.7W-peace) with ESMTP id e5FI3Bp01528; Fri, 16 Jun 2000 03:03:11 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 16 Jun 2000 03:03:08 +0900 (JST) Message-Id: <20000616.030308.59461838.ume@mahoroba.org> To: alex@big.endian.de Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: Hajimu UMEMOTO (=?iso-2022-jp?B?GyRCR19LXBsoQiAbJEJIJRsoQg==?=) In-Reply-To: <20000615095829.D2544@cichlids.cichlids.com> References: <20000614231141.D471@cichlids.cichlids.com> <20000615.062607.74758174.ume@mahoroba.org> <20000615095829.D2544@cichlids.cichlids.com> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> On Thu, 15 Jun 2000 09:58:29 +0200 >>>>> Alexander Langer said: alex> Thus spake Hajimu UMEMOTO (ume@mahoroba.org): > alex> fault or something, so you didn't break anything :) > I just tried with IPv4 only kernel and saw the thing ache said. alex> That was a _bad_ confusion which I can't reproduce, how it happened. I understand what is wrong. If your resolv.conf has IPv6 servers, socket() is fail and you cannot resolve any hosts. If there are only IPv4 servers in resolv.conf, it will work. I just rewrote the code and now testing. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:14:31 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 28BD637BD1E; Thu, 15 Jun 2000 11:14:27 -0700 (PDT) Date: Thu, 15 Jun 2000 11:14:27 -0700 From: "Andrey A. Chernov" To: Hajimu UMEMOTO Cc: alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000615111427.A20272@freebsd.org> References: <20000614231141.D471@cichlids.cichlids.com> <20000615.062607.74758174.ume@mahoroba.org> <20000615095829.D2544@cichlids.cichlids.com> <20000616.030308.59461838.ume@mahoroba.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000616.030308.59461838.ume@mahoroba.org>; from ume@mahoroba.org on Fri, Jun 16, 2000 at 03:03:08AM +0900 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 03:03:08AM +0900, Hajimu UMEMOTO wrote: > I understand what is wrong. If your resolv.conf has IPv6 servers, > socket() is fail and you cannot resolve any hosts. If there are only > IPv4 servers in resolv.conf, it will work. > I just rewrote the code and now testing. Not so simple. I have no resolv.conf at all and your code fails because default NS localhost is set to AF_INET6. When I create this file and add some nameservers to it, your code still fails because they assigned to AF_INET6 too which socket() not understands. It means that 1) you need to set AF_INET6 only for INET6 nameservers 2) you must not set default NS localhost to AF_INET6. The case 2) is harder because you can't run INET6 named by default, so some detection code required which not affect performance. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:18:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FB4E37BE7F; Thu, 15 Jun 2000 11:18:44 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Received: (from alfred@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA31278; Thu, 15 Jun 2000 11:18:44 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Message-Id: <200006151818.LAA31278@freefall.freebsd.org> From: Alfred Perlstein Date: Thu, 15 Jun 2000 11:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG alfred 2000/06/15 11:18:43 PDT Modified files: sys/kern uipc_socket.c uipc_socket2.c sys/sys socket.h Log: add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() until the incoming connection has either data waiting or what looks like a HTTP request header already in the socketbuffer. This ought to reduce the context switch time and overhead for processing requests. The initial idea and code for HTTPACCEPT came from Yahoo engineers and has been cleaned up and a more lightweight DELAYACCEPT for non-http servers has been added Reviewed by: silence on hackers. Revision Changes Path 1.75 +5 -1 src/sys/kern/uipc_socket.c 1.57 +148 -3 src/sys/kern/uipc_socket2.c 1.40 +3 -1 src/sys/sys/socket.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:29:43 2000 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 582AE37B5E4; Thu, 15 Jun 2000 11:29:35 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id OAA12681; Thu, 15 Jun 2000 14:29:32 -0400 (EDT) (envelope-from wollman) Date: Thu, 15 Jun 2000 14:29:32 -0400 (EDT) From: Garrett Wollman Message-Id: <200006151829.OAA12681@khavrinen.lcs.mit.edu> To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <200006151818.LAA31278@freefall.freebsd.org> References: <200006151818.LAA31278@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > Reviewed by: silence on hackers. Should have been reviewed by: net@FreeBSD.org -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:44: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from peace.mahoroba.org (peace.calm.imasy.or.jp [202.227.26.34]) by hub.freebsd.org (Postfix) with ESMTP id 6E45237B5FF; Thu, 15 Jun 2000 11:43:39 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from localhost (IDENT:LiMlCSNjdkR+QWLnnKhF75d9hCka9GvE1FgFQId6E18u0xaQw7UGx46VvzQv4OtS@localhost [::1]) (authenticated) by peace.mahoroba.org (8.10.2/3.7W-peace) with ESMTP id e5FIhD400487; Fri, 16 Jun 2000 03:43:13 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 16 Jun 2000 03:43:10 +0900 (JST) Message-Id: <20000616.034310.74757991.ume@mahoroba.org> To: ache@freebsd.org Cc: alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: Hajimu UMEMOTO (=?iso-2022-jp?B?GyRCR19LXBsoQiAbJEJIJRsoQg==?=) In-Reply-To: <20000615111427.A20272@freebsd.org> References: <20000615095829.D2544@cichlids.cichlids.com> <20000616.030308.59461838.ume@mahoroba.org> <20000615111427.A20272@freebsd.org> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Fri_Jun_16_03:43:10_2000_697)--" Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----Next_Part(Fri_Jun_16_03:43:10_2000_697)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit >>>>> On Thu, 15 Jun 2000 11:14:27 -0700 >>>>> "Andrey A. Chernov" said: ache> Not so simple. I have no resolv.conf at all and your code fails because default ache> NS localhost is set to AF_INET6. When I create this file and add some ache> nameservers to it, your code still fails because they assigned to AF_INET6 too ache> which socket() not understands. Yes, I know and it was also fixed. Above explanation is why alex doesn't met the problem. :) ache> It means that 1) you need to set AF_INET6 only for INET6 nameservers 2) you ache> must not set default NS localhost to AF_INET6. The case 2) is harder because ache> you can't run INET6 named by default, so some detection code required which ache> not affect performance. Now, default is AF_INET. I attach the diff. Please review it. Thanks itojun. ----Next_Part(Fri_Jun_16_03:43:10_2000_697)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: resolver-ipv6.diff Content-Disposition: attachment; filename="resolver-ipv6.diff" Index: lib/libc/net/res_init.c diff -u lib/libc/net/res_init.c.orig lib/libc/net/res_init.c --- lib/libc/net/res_init.c.orig Thu Jun 15 05:51:55 2000 +++ lib/libc/net/res_init.c Thu Jun 15 20:15:45 2000 @@ -87,6 +87,7 @@ #include #include #include +#include #include "res_config.h" @@ -112,9 +113,7 @@ # endif ; -#ifdef INET6 struct __res_state_ext _res_ext; -#endif /* INET6 */ /* * Set up default settings. If the configuration file exist, the values @@ -195,6 +194,8 @@ #endif _res.nsaddr.sin_family = AF_INET; _res.nsaddr.sin_port = htons(NAMESERVER_PORT); + if (sizeof(_res_ext.nsaddr) >= _res.nsaddr.sin_len) + memcpy(&_res_ext.nsaddr, &_res.nsaddr, _res.nsaddr.sin_len); _res.nscount = 1; _res.ndots = 1; _res.pfcode = 0; @@ -300,16 +301,41 @@ } /* read nameservers to query */ if (MATCH(buf, "nameserver") && nserv < MAXNS) { - struct in_addr a; + char *q; + struct addrinfo hints, *res; + char pbuf[NI_MAXSERV]; cp = buf + sizeof("nameserver") - 1; while (*cp == ' ' || *cp == '\t') cp++; - if ((*cp != '\0') && (*cp != '\n') && inet_aton(cp, &a)) { - _res.nsaddr_list[nserv].sin_addr = a; - _res.nsaddr_list[nserv].sin_family = AF_INET; - _res.nsaddr_list[nserv].sin_port = - htons(NAMESERVER_PORT); + if ((*cp == '\0') || (*cp == '\n')) + continue; + for (q = cp; *q; q++) { + if (isspace(*q)) { + *q = '\0'; + break; + } + } + memset(&hints, 0, sizeof(hints)); + hints.ai_flags = AI_NUMERICHOST; + hints.ai_socktype = SOCK_DGRAM; + snprintf(pbuf, sizeof(pbuf), "%d", NAMESERVER_PORT); + if (getaddrinfo(cp, pbuf, &hints, &res) == 0 && + res->ai_next == NULL) { + if (res->ai_addrlen <= sizeof(_res_ext.nsaddr_list[nserv])) { + memcpy(&_res_ext.nsaddr_list[nserv], res->ai_addr, + res->ai_addrlen); + } else { + memset(&_res_ext.nsaddr_list[nserv], 0, + sizeof(_res_ext.nsaddr_list[nserv])); + } + if (res->ai_addrlen <= sizeof(_res.nsaddr_list[nserv])) { + memcpy(&_res.nsaddr_list[nserv], res->ai_addr, + res->ai_addrlen); + } else { + memset(&_res.nsaddr_list[nserv], 0, + sizeof(_res.nsaddr_list[nserv])); + } nserv++; } continue; @@ -317,9 +343,9 @@ #ifdef RESOLVSORT if (MATCH(buf, "sortlist")) { struct in_addr a; -#ifdef INET6 struct in6_addr a6; -#endif /* INET6 */ + int m, i; + u_char *u; cp = buf + sizeof("sortlist") - 1; while (nsort < MAXRESOLVSORT) { @@ -353,19 +379,14 @@ _res.sort_list[nsort].mask = net_mask(_res.sort_list[nsort].addr); } -#ifdef INET6 _res_ext.sort_list[nsort].af = AF_INET; _res_ext.sort_list[nsort].addr.ina = _res.sort_list[nsort].addr; _res_ext.sort_list[nsort].mask.ina.s_addr = _res.sort_list[nsort].mask; -#endif /* INET6 */ nsort++; } -#ifdef INET6 else if (inet_pton(AF_INET6, net, &a6) == 1) { - int m, i; - u_char *u; _res_ext.sort_list[nsort].af = AF_INET6; _res_ext.sort_list[nsort].addr.in6a = a6; @@ -407,7 +428,6 @@ } nsort++; } -#endif /* INET6 */ *cp = n; } continue; Index: lib/libc/net/res_send.c diff -u lib/libc/net/res_send.c.orig lib/libc/net/res_send.c --- lib/libc/net/res_send.c.orig Thu Jun 15 05:51:55 2000 +++ lib/libc/net/res_send.c Fri Jun 16 02:53:38 2000 @@ -109,6 +109,7 @@ static int s = -1; /* socket used for communications */ static int connected = 0; /* is the socket connected */ static int vc = 0; /* is the socket a virtual circuit? */ +static int af = 0; /* address family of socket */ static res_send_qhook Qhook = NULL; static res_send_rhook Rhook = NULL; @@ -126,21 +127,26 @@ fprintf args;\ __fp_nquery(query, size, stdout);\ } else {} +static char abuf[NI_MAXHOST]; +static char pbuf[NI_MAXSERV]; +static void Aerror __P((FILE *, char *, int, struct sockaddr *)); +static void Perror __P((FILE *, char *, int)); + static void Aerror(file, string, error, address) FILE *file; char *string; int error; - struct sockaddr_in address; + struct sockaddr *address; { int save = errno; if (_res.options & RES_DEBUG) { - fprintf(file, "res_send: %s ([%s].%u): %s\n", - string, - inet_ntoa(address.sin_addr), - ntohs(address.sin_port), - strerror(error)); + getnameinfo(address, address->sa_len, abuf, sizeof(abuf), + pbuf, sizeof(pbuf), + NI_NUMERICHOST|NI_NUMERICSERV|NI_WITHSCOPEID); + fprintf(file, "res_send: %s ([%s].%s): %s\n", + string, abuf, pbuf, strerror(error)); } errno = save; } @@ -176,6 +182,33 @@ Rhook = hook; } +static struct sockaddr * get_nsaddr __P((size_t)); + +/* + * pick appropriate nsaddr_list for use. see res_init() for initialization. + */ +static struct sockaddr * +get_nsaddr(n) + size_t n; +{ + + if (!_res.nsaddr_list[n].sin_family) { + /* + * - _res_ext.nsaddr_list[n] holds an address that is larger + * than struct sockaddr, and + * - user code did not update _res.nsaddr_list[n]. + */ + return (struct sockaddr *)&_res_ext.nsaddr_list[n]; + } else { + /* + * - user code updated _res.nsaddr_list[n], or + * - _res.nsaddr_list[n] has the same content as + * _res_ext.nsaddr_list[n]. + */ + return (struct sockaddr *)&_res.nsaddr_list[n]; + } +} + /* int * res_isourserver(ina) * looks up "ina" in _res.ns_addr_list[] @@ -189,21 +222,39 @@ res_isourserver(inp) const struct sockaddr_in *inp; { - struct sockaddr_in ina; + const struct sockaddr_in6 *in6p = (const struct sockaddr_in6 *)inp; + const struct sockaddr_in6 *srv6; + const struct sockaddr_in *srv; int ns, ret; - ina = *inp; ret = 0; - for (ns = 0; ns < _res.nscount; ns++) { - const struct sockaddr_in *srv = &_res.nsaddr_list[ns]; - - if (srv->sin_family == ina.sin_family && - srv->sin_port == ina.sin_port && - (srv->sin_addr.s_addr == INADDR_ANY || - srv->sin_addr.s_addr == ina.sin_addr.s_addr)) { - ret++; - break; + switch (inp->sin_family) { + case AF_INET6: + for (ns = 0; ns < _res.nscount; ns++) { + srv6 = (struct sockaddr_in6 *)get_nsaddr(ns); + if (srv6->sin6_family == in6p->sin6_family && + srv6->sin6_port == in6p->sin6_port && + srv6->sin6_scope_id == in6p->sin6_scope_id && + (IN6_IS_ADDR_UNSPECIFIED(&srv6->sin6_addr) || + IN6_ARE_ADDR_EQUAL(&srv6->sin6_addr, + &in6p->sin6_addr))) { + ret++; + break; + } + } + break; + case AF_INET: + for (ns = 0; ns < _res.nscount; ns++) { + srv = (struct sockaddr_in *)get_nsaddr(ns); + if (srv->sin_family == inp->sin_family && + srv->sin_port == inp->sin_port && + (srv->sin_addr.s_addr == INADDR_ANY || + srv->sin_addr.s_addr == inp->sin_addr.s_addr)) { + ret++; + break; + } } + break; } return (ret); } @@ -332,7 +383,8 @@ */ for (try = 0; try < _res.retry; try++) { for (ns = 0; ns < _res.nscount; ns++) { - struct sockaddr_in *nsap = &_res.nsaddr_list[ns]; + struct sockaddr *nsap = get_nsaddr(ns); + same_ns: if (badns & (1 << ns)) { res_close(); @@ -345,7 +397,8 @@ do { res_sendhookact act; - act = (*Qhook)(&nsap, &buf, &buflen, + act = (*Qhook)((struct sockaddr_in **)&nsap, + &buf, &buflen, ans, anssiz, &resplen); switch (act) { case res_goahead: @@ -369,9 +422,11 @@ } while (!done); } - Dprint(_res.options & RES_DEBUG, + Dprint((_res.options & RES_DEBUG) && + getnameinfo(nsap, nsap->sa_len, abuf, sizeof(abuf), + NULL, 0, NI_NUMERICHOST | NI_WITHSCOPEID) == 0, (stdout, ";; Querying server (# %d) address = %s\n", - ns + 1, inet_ntoa(nsap->sin_addr))); + ns + 1, abuf)); if (v_circuit) { int truncated; @@ -385,22 +440,25 @@ */ try = _res.retry; truncated = 0; - if (s < 0 || !vc || hp->opcode == ns_o_update) { + if (s < 0 || !vc || hp->opcode == ns_o_update || + af != nsap->sa_family) { if (s >= 0) res_close(); - s = socket(PF_INET, SOCK_STREAM, 0); + af = nsap->sa_family; + s = socket(af, SOCK_STREAM, 0); if (s < 0) { terrno = errno; Perror(stderr, "socket(vc)", errno); - return (-1); + badns |= (1 << ns); + res_close(); + goto next_ns; } errno = 0; - if (connect(s, (struct sockaddr *)nsap, - sizeof *nsap) < 0) { + if (connect(s, nsap, nsap->sa_len) < 0) { terrno = errno; Aerror(stderr, "connect/vc", - errno, *nsap); + errno, nsap); badns |= (1 << ns); res_close(); goto next_ns; @@ -530,20 +588,23 @@ struct timeval timeout; fd_set dsmask, *dsmaskp; int dsmasklen; - struct sockaddr_in from; + struct sockaddr_storage from; int fromlen; - if ((s < 0) || vc) { + if (s < 0 || vc || af != nsap->sa_family) { if (vc) res_close(); - s = socket(PF_INET, SOCK_DGRAM, 0); + af = nsap->sa_family; + s = socket(af, SOCK_DGRAM, 0); if (s < 0) { #ifndef CAN_RECONNECT bad_dg_sock: #endif terrno = errno; Perror(stderr, "socket(dg)", errno); - return (-1); + badns |= (1 << ns); + res_close(); + goto next_ns; } connected = 0; } @@ -569,12 +630,10 @@ * receive a response from another server. */ if (!connected) { - if (connect(s, (struct sockaddr *)nsap, - sizeof *nsap - ) < 0) { + if (connect(s, nsap, nsap->sa_len) < 0) { Aerror(stderr, "connect(dg)", - errno, *nsap); + errno, nsap); badns |= (1 << ns); res_close(); goto next_ns; @@ -594,6 +653,7 @@ */ if (connected) { #ifdef CAN_RECONNECT + /* XXX: any errornous address */ struct sockaddr_in no_addr; no_addr.sin_family = AF_INET; @@ -604,7 +664,7 @@ &no_addr, sizeof no_addr); #else - int s1 = socket(PF_INET, SOCK_DGRAM,0); + int s1 = socket(af, SOCK_DGRAM,0); if (s1 < 0) goto bad_dg_sock; (void)dup2(s1, s); @@ -617,10 +677,8 @@ } #endif /* !CANNOT_CONNECT_DGRAM */ if (sendto(s, (char*)buf, buflen, 0, - (struct sockaddr *)nsap, - sizeof *nsap) - != buflen) { - Aerror(stderr, "sendto", errno, *nsap); + nsap, nsap->sa_len) != buflen) { + Aerror(stderr, "sendto", errno, nsap); badns |= (1 << ns); res_close(); goto next_ns; @@ -749,7 +807,7 @@ goto next_ns; } errno = 0; - fromlen = sizeof(struct sockaddr_in); + fromlen = sizeof(from); resplen = recvfrom(s, (char*)ans, anssiz, 0, (struct sockaddr *)&from, &fromlen); if (resplen <= 0) { @@ -784,7 +842,7 @@ } #ifdef CHECK_SRVR_ADDR if (!(_res.options & RES_INSECURE1) && - !res_isourserver(&from)) { + !res_isourserver((struct sockaddr_in *)&from)) { /* * response from wrong server? ignore it. * XXX - potential security hazard could @@ -861,7 +919,8 @@ do { res_sendhookact act; - act = (*Rhook)(nsap, buf, buflen, + act = (*Rhook)((struct sockaddr_in *)nsap, + buf, buflen, ans, anssiz, &resplen); switch (act) { case res_goahead: @@ -914,6 +973,7 @@ s = -1; connected = 0; vc = 0; + af = 0; } } ----Next_Part(Fri_Jun_16_03:43:10_2000_697)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: My Signature Content-Disposition: attachment; filename=".signature-world" Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ ----Next_Part(Fri_Jun_16_03:43:10_2000_697)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:45:21 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 9B71B37B8CF; Thu, 15 Jun 2000 11:45:11 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id MAA29284; Thu, 15 Jun 2000 12:45:09 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id MAA25472; Thu, 15 Jun 2000 12:45:08 -0600 (MDT) (envelope-from nate) Date: Thu, 15 Jun 2000 12:45:08 -0600 (MDT) Message-Id: <200006151845.MAA25472@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <200006151818.LAA31278@freefall.freebsd.org> References: <200006151818.LAA31278@freefall.freebsd.org> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > alfred 2000/06/15 11:18:43 PDT > > Modified files: > sys/kern uipc_socket.c uipc_socket2.c > sys/sys socket.h > Log: > add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() > until the incoming connection has either data waiting or what looks like a > HTTP request header already in the socketbuffer. This ought to reduce > the context switch time and overhead for processing requests. > > The initial idea and code for HTTPACCEPT came from Yahoo engineers and has > been cleaned up and a more lightweight DELAYACCEPT for non-http servers > has been added > > Reviewed by: silence on hackers. Huh? I never saw this. I object to adding application specific code inside the kernel. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:50:36 2000 Delivered-To: cvs-all@freebsd.org Received: from mail.surf1.de (mail.surf1.de [194.25.165.21]) by hub.freebsd.org (Postfix) with ESMTP id 62CBC37BD9E; Thu, 15 Jun 2000 11:50:30 -0700 (PDT) (envelope-from alex@big.endian.de) Received: from neutron.cichlids.com (p3E9C1136.dip0.t-ipconnect.de [62.156.17.54]) by mail.surf1.de (8.9.3/8.9.3) with ESMTP id UAA24571; Thu, 15 Jun 2000 20:50:09 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 52411AC27; Thu, 15 Jun 2000 20:50:37 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id D103814AAD; Thu, 15 Jun 2000 20:50:24 +0200 (CEST) Date: Thu, 15 Jun 2000 20:50:24 +0200 From: Alexander Langer To: Hajimu UMEMOTO Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000615205024.A25675@cichlids.cichlids.com> References: <20000614231141.D471@cichlids.cichlids.com> <20000615.062607.74758174.ume@mahoroba.org> <20000615095829.D2544@cichlids.cichlids.com> <20000616.030308.59461838.ume@mahoroba.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000616.030308.59461838.ume@mahoroba.org>; from ume@mahoroba.org on Fri, Jun 16, 2000 at 03:03:08AM +0900 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thus spake Hajimu UMEMOTO (ume@mahoroba.org): > > alex> fault or something, so you didn't break anything :) > > I just tried with IPv4 only kernel and saw the thing ache said. > alex> That was a _bad_ confusion which I can't reproduce, how it happened. > I understand what is wrong. If your resolv.conf has IPv6 servers, I meant my confusion :) Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 11:56:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AFBC037B894; Thu, 15 Jun 2000 11:56:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA36021; Thu, 15 Jun 2000 11:56:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006151856.LAA36021@freefall.freebsd.org> From: Ade Lovett Date: Thu, 15 Jun 2000 11:56:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnet/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/15 11:56:12 PDT Added files: net/gnet/patches patch-ad Log: Fix another figure out GLIB_CONFIG but use hardcoded glib-config in the configure file pilot botch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12: 1: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C06937B7C4; Thu, 15 Jun 2000 12:01:03 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA36695; Thu, 15 Jun 2000 12:01:01 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151901.MAA36695@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 12:01:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/grail/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 12:01:01 PDT Modified files: www/grail/pkg PLIST Log: Fix PLIST. Reported by: bento.freebsd.org Revision Changes Path 1.4 +1 -0 ports/www/grail/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12: 3:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F07437BDE3; Thu, 15 Jun 2000 12:03:28 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA37069; Thu, 15 Jun 2000 12:03:27 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151903.MAA37069@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 12:03:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/heimdal/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 12:03:27 PDT Modified files: security/heimdal/pkg PLIST Log: Fix PLIST. Reported by: bento.freebsd.org Revision Changes Path 1.11 +1 -0 ports/security/heimdal/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12: 8:21 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id 9E84037C087; Thu, 15 Jun 2000 12:08:10 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e5FJ87b05205; Thu, 15 Jun 2000 12:08:07 -0700 (PDT) Date: Thu, 15 Jun 2000 12:08:07 -0700 From: Alfred Perlstein To: Nate Williams Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h Message-ID: <20000615120807.M18462@fw.wintelcom.net> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006151845.MAA25472@nomad.yogotech.com>; from nate@yogotech.com on Thu, Jun 15, 2000 at 12:45:08PM -0600 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Nate Williams [000615 11:46] wrote: > > alfred 2000/06/15 11:18:43 PDT > > > > Modified files: > > sys/kern uipc_socket.c uipc_socket2.c > > sys/sys socket.h > > Log: > > add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() > > until the incoming connection has either data waiting or what looks like a > > HTTP request header already in the socketbuffer. This ought to reduce > > the context switch time and overhead for processing requests. > > > > The initial idea and code for HTTPACCEPT came from Yahoo engineers and has > > been cleaned up and a more lightweight DELAYACCEPT for non-http servers > > has been added > > > > Reviewed by: silence on hackers. > > Huh? I never saw this. I object to adding application specific code > inside the kernel. It's not really a signifigant amount of code if you look at the delta, the performance difference is signifigant though. You'll be happy when I release my http server that uses this. The final patch is up at: http://people.freebsd.org/~alfred/kblob/kblob-final.diff Here is the original message titled: "big patch" From bright@wintelcom.net Tue Jun 13 17:04:32 2000 Date: Tue, 13 Jun 2000 17:23:37 -0700 From: Alfred Perlstein To: hackers@freebsd.org Subject: big patch: rlimits, accept filters and kblob. Message-ID: <20000613172336.S18462@fw.wintelcom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i Status: RO Content-Length: 1856 Lines: 52 Hey guys, I have some patches here which implement a number of things. 1) fixes dangerous races in per-uid limiting code 2) 2 accept filters which will not mark a socket as completed for accept() until either: 1) there is data available to be read 2) there is an http request in the socketbuffer 3) kblob, a kernel hack for preloading data into the kernel to send out on multiple descriptors, very similar to sendfile but more lightweight and pretty useful for serving many small chunks of data over stream sockets. I'd really like to commit this stuff pretty soon after i polish it up just a bit more... but I'd like some guidance for the polishing part. Here's some implementation details about kblob: A pointer to an address and a length is given to a syscall which creates a file referernce as a kblob. Then there is kblobsend which works in the same manner as sendfile except that instead of a vnode it expects a kblob fd. I know the conerns about users exahusting KVM via kblobs, and I'd like some feedback, some options come to mind: 1) kblobs not in the default kernel (don't like this) 2) kblobs limited via a sysctl for max per uid. 3) default entries in /etc/login.conf for 0. I've already implemented rlimits so #3 seems pretty attractive. You can grab the code at: http://people.freebsd.org/~alfred/kblob/kblob.diff to be applied via 'patch' from /usr/src and: http://people.freebsd.org/~alfred/kblob/kern_blob.c which needs to go into src/sys/kern you also need "options KBLOB" in your kernel config. Engineers at Yahoo provided the http accept filter and my delayed accept filter is a stripped down version of it, really cool stuff! Questions, comments, suggestions, flames? Manpages will be written up and patched soon after commit. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:14:42 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id D56DB37B5D7; Thu, 15 Jun 2000 12:14:26 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id NAA29528; Thu, 15 Jun 2000 13:14:25 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id NAA25610; Thu, 15 Jun 2000 13:14:24 -0600 (MDT) (envelope-from nate) Date: Thu, 15 Jun 2000 13:14:24 -0600 (MDT) Message-Id: <200006151914.NAA25610@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Alfred Perlstein Cc: Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <20000615120807.M18462@fw.wintelcom.net> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > alfred 2000/06/15 11:18:43 PDT > > > > > > Modified files: > > > sys/kern uipc_socket.c uipc_socket2.c > > > sys/sys socket.h > > > Log: > > > add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() > > > until the incoming connection has either data waiting or what looks like a > > > HTTP request header already in the socketbuffer. > > > Reviewed by: silence on hackers. > > > > Huh? I never saw this. I object to adding application specific code > > inside the kernel. > > It's not really a signifigant amount of code if you look at the > delta, the performance difference is signifigant though. > You'll be happy when I release my http server that uses this. > > The final patch is up at: > > http://people.freebsd.org/~alfred/kblob/kblob-final.diff > > Here is the original message titled: "big patch" > > >From bright@wintelcom.net Tue Jun 13 17:04:32 2000 > Date: Tue, 13 Jun 2000 17:23:37 -0700 > From: Alfred Perlstein > To: hackers@freebsd.org > Subject: big patch: rlimits, accept filters and kblob. This subject line (which I do remember) has no mention of HTTP application code. > Message-ID: <20000613172336.S18462@fw.wintelcom.net> > Mime-Version: 1.0 > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > User-Agent: Mutt/1.2i > Status: RO > Content-Length: 1856 > Lines: 52 > > Hey guys, I have some patches here which implement a number of things. > > 1) fixes dangerous races in per-uid limiting code This is a bug-fix. > 2) 2 accept filters which will not mark a socket as completed for accept() > until either: > 1) there is data available to be read > 2) there is an http request in the socketbuffer I didn't think there was a consensus on this, or on kblob. Neither was there much discussion on this. Also, I *really* don't like the accept() changes, since we (and a number of others) are currently taking advantage of the fact that we can 'ping' a host by contacting a known port and if accepts the connection, which we subsuquently close. ICMP is often filtered, but in our equipment (which happens to be installed the customer's site), we run a the 'echo' port for our internal ping. Waiting until data is sent (or received) is a bad thing, IMO, and probably violates the TCP specifications. > 3) kblob, a kernel hack for preloading data into the kernel to send out > on multiple descriptors, very similar to sendfile but more lightweight > and pretty useful for serving many small chunks of data over stream > sockets. I'd like *alot* more discussion on this. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:16:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E7FC37BD36; Thu, 15 Jun 2000 12:16:31 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39519; Thu, 15 Jun 2000 12:16:31 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151916.MAA39519@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 12:16:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/wxgtk Makefile ports/x11-toolkits/wxgtk/files md5 ports/x11-toolkits/wxgtk/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 12:16:31 PDT Modified files: x11-toolkits/wxgtk Makefile x11-toolkits/wxgtk/files md5 x11-toolkits/wxgtk/pkg PLIST Log: Update 2.1.15 -> 2.1.16 Revision Changes Path 1.12 +2 -2 ports/x11-toolkits/wxgtk/Makefile 1.5 +1 -1 ports/x11-toolkits/wxgtk/files/md5 1.7 +1 -0 ports/x11-toolkits/wxgtk/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:16:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DFE4237BC8B; Thu, 15 Jun 2000 12:16:38 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39618; Thu, 15 Jun 2000 12:16:38 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151916.MAA39618@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 12:16:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/py-wxPython Makefile ports/x11-toolkits/py-wxPython/files build.local md5 ports/x11-toolkits/py-wxPython/patches patch-aa ports/x11-toolkits/py-wxPython/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 12:16:38 PDT Modified files: x11-toolkits/py-wxPython Makefile x11-toolkits/py-wxPython/files build.local md5 x11-toolkits/py-wxPython/pkg PLIST Removed files: x11-toolkits/py-wxPython/patches patch-aa Log: Update 2.1.15 -> 2.1.16 Revision Changes Path 1.8 +2 -15 ports/x11-toolkits/py-wxPython/Makefile 1.4 +1 -1 ports/x11-toolkits/py-wxPython/files/build.local 1.4 +1 -1 ports/x11-toolkits/py-wxPython/files/md5 1.4 +38 -4 ports/x11-toolkits/py-wxPython/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:20: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BE8137BDF1; Thu, 15 Jun 2000 12:19:59 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39911; Thu, 15 Jun 2000 12:19:59 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006151919.MAA39911@freefall.freebsd.org> From: Wilko Bulte Date: Thu, 15 Jun 2000 12:19:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha INSTALL.TXT Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/15 12:19:59 PDT Modified files: release/texts/alpha INSTALL.TXT Log: Remove references to PCMCIA ethernet cards/laptops Revision Changes Path 1.9 +4 -6 src/release/texts/alpha/INSTALL.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:25:24 2000 Delivered-To: cvs-all@freebsd.org Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20]) by hub.freebsd.org (Postfix) with ESMTP id CBC1037C39C; Thu, 15 Jun 2000 12:25:14 -0700 (PDT) (envelope-from bright@fw.wintelcom.net) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id e5FJPAv05909; Thu, 15 Jun 2000 12:25:10 -0700 (PDT) Date: Thu, 15 Jun 2000 12:25:10 -0700 From: Alfred Perlstein To: Nate Williams Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h Message-ID: <20000615122510.N18462@fw.wintelcom.net> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> <200006151914.NAA25610@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006151914.NAA25610@nomad.yogotech.com>; from nate@yogotech.com on Thu, Jun 15, 2000 at 01:14:24PM -0600 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG * Nate Williams [000615 12:14] wrote: > > > > The final patch is up at: > > > > http://people.freebsd.org/~alfred/kblob/kblob-final.diff > > > > Here is the original message titled: "big patch" > > > > >From bright@wintelcom.net Tue Jun 13 17:04:32 2000 > > Date: Tue, 13 Jun 2000 17:23:37 -0700 > > From: Alfred Perlstein > > To: hackers@freebsd.org > > Subject: big patch: rlimits, accept filters and kblob. > > This subject line (which I do remember) has no mention of HTTP > application code. Well it's not application code. > > Message-ID: <20000613172336.S18462@fw.wintelcom.net> > > Mime-Version: 1.0 > > Content-Type: text/plain; charset=us-ascii > > Content-Disposition: inline > > User-Agent: Mutt/1.2i > > Status: RO > > Content-Length: 1856 > > Lines: 52 > > > > Hey guys, I have some patches here which implement a number of things. > > > > 1) fixes dangerous races in per-uid limiting code > > This is a bug-fix. Yes, also ignored. > > 2) 2 accept filters which will not mark a socket as completed for accept() > > until either: > > 1) there is data available to be read > > 2) there is an http request in the socketbuffer > > I didn't think there was a consensus on this, or on kblob. Neither was > there much discussion on this. Obviously not, the email was ignored. > Also, I *really* don't like the accept() changes, since we (and a number > of others) are currently taking advantage of the fact that we can 'ping' > a host by contacting a known port and if accepts the connection, which > we subsuquently close. > > ICMP is often filtered, but in our equipment (which happens to be > installed the customer's site), we run a the 'echo' port for our > internal ping. > > Waiting until data is sent (or received) is a bad thing, IMO, and > probably violates the TCP specifications. That's not what the code does, nothing funky happens with TCP connections, the socket is accepted, however it is not presented to the application until data arrives. > > 3) kblob, a kernel hack for preloading data into the kernel to send out > > on multiple descriptors, very similar to sendfile but more lightweight > > and pretty useful for serving many small chunks of data over stream > > sockets. > > I'd like *alot* more discussion on this. I don't see why, it allows for extremely low overhead (0 copy) sending of data down sockets. It's been discussed (back at BSDcon even) I hoped someone would have said "hey good idea Alfred" and implemented it by now. I'm up for implementation discussion, however, I'm not up for discussing whether it's going in or not, unless something better is presented, it is. Basically win2k can come close to us in server performance without this, and this will again allow us to completely blow them out of the water. -- -Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org] "I have the heart of a child; I keep it in a jar on my desk." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:25:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7212A37BEA8; Thu, 15 Jun 2000 12:25:49 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA40443; Thu, 15 Jun 2000 12:25:49 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151925.MAA40443@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 12:25:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/gtm Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 12:25:49 PDT Modified files: ftp/gtm Makefile Log: Fix depends. Reported by: bento.freebsd.org Revision Changes Path 1.12 +3 -2 ports/ftp/gtm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:40:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E78C37B86F; Thu, 15 Jun 2000 12:40:36 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: (from nectar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA43039; Thu, 15 Jun 2000 12:40:36 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Message-Id: <200006151940.MAA43039@freefall.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Jun 2000 12:40:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnome-icu Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nectar 2000/06/15 12:40:35 PDT Modified files: net/gnome-icu Makefile Log: Fix depends. Reported by: bento.freebsd.org Revision Changes Path 1.22 +3 -2 ports/net/gnome-icu/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:42:55 2000 Delivered-To: cvs-all@freebsd.org Received: from light.imasy.or.jp (light.imasy.or.jp [202.227.24.4]) by hub.freebsd.org (Postfix) with ESMTP id 44B8737BEA8; Thu, 15 Jun 2000 12:42:49 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: (from uucp@localhost) by light.imasy.or.jp (8.9.3+3.2W/3.7W-light) with UUCP id EAA18434; Fri, 16 Jun 2000 04:42:46 +0900 (JST) (envelope-from ume@mahoroba.org) Received: from localhost (peace.mahoroba.org [202.227.26.34]) by mail.mahoroba.org (8.10.2/3.7W-chaos) with ESMTP id e5FJfgS06690; Fri, 16 Jun 2000 04:41:43 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 16 Jun 2000 04:41:43 +0900 (JST) Message-Id: <20000616.044143.71082986.ume@mahoroba.org> To: ache@freebsd.org Cc: alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c In-Reply-To: <20000616.034310.74757991.ume@mahoroba.org> References: <20000616.030308.59461838.ume@mahoroba.org> <20000615111427.A20272@freebsd.org> <20000616.034310.74757991.ume@mahoroba.org> From: Hajimu UMEMOTO (=?iso-2022-jp?B?GyRCR19LXBsoQiAbJEJIJRsoQg==?=) X-Mailer: Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume> Now, default is AF_INET. ume> I attach the diff. Please review it. Sorry, I need further work. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:48:11 2000 Delivered-To: cvs-all@freebsd.org Received: from exchange.accessus.net (exchange.accessus.net [207.206.171.65]) by hub.freebsd.org (Postfix) with ESMTP id 8A0E937C3FF; Thu, 15 Jun 2000 12:47:58 -0700 (PDT) (envelope-from jyoung@accessus.net) Received: by exchange.accessus.net with Internet Mail Service (5.5.1960.3) id ; Thu, 15 Jun 2000 14:50:28 -0500 Message-ID: From: Jason Young To: 'Alfred Perlstein' , Nate Williams Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: RE: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys /sys socket.h Date: Thu, 15 Jun 2000 14:50:27 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.1960.3) Content-Type: text/plain Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Also, I *really* don't like the accept() changes, since we > (and a number > > of others) are currently taking advantage of the fact that > we can 'ping' > > a host by contacting a known port and if accepts the > connection, which > > we subsuquently close. > > > > ICMP is often filtered, but in our equipment (which happens to be > > installed the customer's site), we run a the 'echo' port for our > > internal ping. > > > > Waiting until data is sent (or received) is a bad thing, IMO, and > > probably violates the TCP specifications. > > That's not what the code does, nothing funky happens with TCP > connections, the socket is accepted, however it is not presented > to the application until data arrives. I think perhaps Nate is under the impression that it's a global change for all connections, whereas it's really a new and non-default socket option if I understand correctly. The impact is that an application which does not need to present a "banner" (SMTP requires one, for instance) can defer being woken up until it actually has work to do, and other applications are untouched. I think both kblob and the new socket options are great ideas myself, but I have about zero votes in this whole affair. I would think that a mechanism to give the kernel a pattern to look for instead of only looking for HTTP requests would be nice, but I'm not sure if a useful mechanism could be developed without trying to install regexp processing in the kernel. Jason Young Access US Chief Network Engineer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 12:56:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 34C2537B918; Thu, 15 Jun 2000 12:56:27 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA45842; Thu, 15 Jun 2000 12:56:26 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006151956.MAA45842@freefall.freebsd.org> From: Ade Lovett Date: Thu, 15 Jun 2000 12:56:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/yank Makefile ports/deskutils/yank/patches patch-ab Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/15 12:56:26 PDT Modified files: deskutils/yank Makefile Added files: deskutils/yank/patches patch-ab Log: Use devel/gettext instead of libintl included in the distribution itself. Approved by: maintainer Revision Changes Path 1.7 +2 -3 ports/deskutils/yank/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 13:13:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4915D37B9D0; Thu, 15 Jun 2000 13:13:52 -0700 (PDT) (envelope-from chris@FreeBSD.org) Received: (from chris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA49064; Thu, 15 Jun 2000 13:13:52 -0700 (PDT) (envelope-from chris@FreeBSD.org) Message-Id: <200006152013.NAA49064@freefall.freebsd.org> From: Chris Costello Date: Thu, 15 Jun 2000 13:13:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/miscfs/fdesc fdesc_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG chris 2000/06/15 13:13:51 PDT Modified files: sys/miscfs/fdesc fdesc_vnops.c Log: Remove unused include . Revision Changes Path 1.56 +1 -2 src/sys/miscfs/fdesc/fdesc_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 13:22:31 2000 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 4927037B872; Thu, 15 Jun 2000 13:22:22 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id QAA13933; Thu, 15 Jun 2000 16:22:14 -0400 (EDT) (envelope-from wollman) Date: Thu, 15 Jun 2000 16:22:14 -0400 (EDT) From: Garrett Wollman Message-Id: <200006152022.QAA13933@khavrinen.lcs.mit.edu> To: nate@yogotech.com (Nate Williams) Cc: Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <200006151914.NAA25610@nomad.yogotech.com> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> <200006151914.NAA25610@nomad.yogotech.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > Waiting until data is sent (or received) is a bad thing, IMO, and > probably violates the TCP specifications. The entirely sockets programming model ``violates'' the TCP specifications. (I put that in quotation marks because I don't think anyone has seriously implemented the API suggested by the TCP designers.) This argument doesn't hold water. (I, personally, think it's the wrong way to go, but I understand the motivation for doing it.) -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 13:29:12 2000 Delivered-To: cvs-all@freebsd.org Received: from light.imasy.or.jp (light.imasy.or.jp [202.227.24.4]) by hub.freebsd.org (Postfix) with ESMTP id AB7B737B763; Thu, 15 Jun 2000 13:29:06 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: (from uucp@localhost) by light.imasy.or.jp (8.9.3+3.2W/3.7W-light/smtpfeed 1.02) with UUCP id FAA25052; Fri, 16 Jun 2000 05:29:00 +0900 (JST) (envelope-from ume@mahoroba.org) Received: from localhost (peace.mahoroba.org [202.227.26.34]) by mail.mahoroba.org (8.10.2/3.7W-chaos) with ESMTP id e5FKS4S08124; Fri, 16 Jun 2000 05:28:04 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Fri, 16 Jun 2000 05:28:04 +0900 (JST) Message-Id: <20000616.052804.41631317.ume@mahoroba.org> To: ache@freebsd.org Cc: alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: itojun@itojun.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: Hajimu UMEMOTO (=?iso-2022-jp?B?GyRCR19LXBsoQiAbJEJIJRsoQg==?=) In-Reply-To: <20000616.044143.71082986.ume@mahoroba.org> References: <20000615111427.A20272@freebsd.org> <20000616.034310.74757991.ume@mahoroba.org> <20000616.044143.71082986.ume@mahoroba.org> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Fri_Jun_16_05:28:04_2000_080)--" Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ----Next_Part(Fri_Jun_16_05:28:04_2000_080)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit ume> Now, default is AF_INET. ume> I attach the diff. Please review it. ume> Sorry, I need further work. Now, it is working without /etc/resolv.conf in my box. The fix is attached. This patch is for res_init.c with my previous patch applied. ----Next_Part(Fri_Jun_16_05:28:04_2000_080)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: res_init.c.diff Content-Disposition: attachment; filename="res_init.c.diff" --- res_init.c Thu Jun 15 20:15:45 2000 +++ /usr/home/ume/tmp/res_init.c Fri Jun 16 05:09:41 2000 @@ -194,6 +194,7 @@ #endif _res.nsaddr.sin_family = AF_INET; _res.nsaddr.sin_port = htons(NAMESERVER_PORT); + _res.nsaddr.sin_len = sizeof(struct sockaddr_in); if (sizeof(_res_ext.nsaddr) >= _res.nsaddr.sin_len) memcpy(&_res_ext.nsaddr, &_res.nsaddr, _res.nsaddr.sin_len); _res.nscount = 1; ----Next_Part(Fri_Jun_16_05:28:04_2000_080)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: My Signature Content-Disposition: attachment; filename=".signature-world" Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ ----Next_Part(Fri_Jun_16_05:28:04_2000_080)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 13:30:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D22C737B763; Thu, 15 Jun 2000 13:30:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA51628; Thu, 15 Jun 2000 13:30:53 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200006152030.NAA51628@freefall.freebsd.org> From: Poul-Henning Kamp Date: Thu, 15 Jun 2000 13:30:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-disk.c src/sys/i386/i386 autoconf.c src/sys/kern subr_disk.c src/sys/sys disk.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/06/15 13:30:53 PDT Modified files: sys/dev/ata ata-disk.c sys/i386/i386 autoconf.c sys/kern subr_disk.c sys/sys disk.h Log: Add disk_enumerate() for finding names of disks. Vinum and libh will need this RSN. Remove a pointless warning in the root device locating code. Remove the "wd" compatibility name from the "ad" driver. WARNING: If you have not updated to use /dev/wd* in your /etc/fstab and modern bootblocks, it would be a very good idea to do so BEFORE you upgrade your kernel. Revision Changes Path 1.72 +1 -25 src/sys/dev/ata/ata-disk.c 1.147 +2 -4 src/sys/i386/i386/autoconf.c 1.25 +16 -2 src/sys/kern/subr_disk.c 1.17 +5 -1 src/sys/sys/disk.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 14:16:59 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id D1AC037B660; Thu, 15 Jun 2000 14:16:44 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA00607; Thu, 15 Jun 2000 22:15:12 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA02253; Thu, 15 Jun 2000 22:15:18 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200006152115.WAA02253@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Garrett Wollman Cc: nate@yogotech.com (Nate Williams), Alfred Perlstein , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@hak.lan.awfulhak.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: Message from Garrett Wollman of "Thu, 15 Jun 2000 16:22:14 EDT." <200006152022.QAA13933@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 15 Jun 2000 22:15:18 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > < said: > > > Waiting until data is sent (or received) is a bad thing, IMO, and > > probably violates the TCP specifications. > > The entirely sockets programming model ``violates'' the TCP > specifications. (I put that in quotation marks because I don't think > anyone has seriously implemented the API suggested by the TCP > designers.) This argument doesn't hold water. (I, personally, think > it's the wrong way to go, but I understand the motivation for doing > it.) There has to be a cleaner way of doing this. Even stuffing a piece of text into the kernel at boot time that happens to look like a HTTP header would be better (well, marginally anyway). > -GAWollman > > -- > Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same > wollman@lcs.mit.edu | O Siem / The fires of freedom > Opinions not those of| Dance in the burning flame > MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 15:29:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AA54B37B859; Thu, 15 Jun 2000 15:29:26 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA67067; Thu, 15 Jun 2000 15:29:26 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200006152229.PAA67067@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 15 Jun 2000 15:29:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/demoroniser Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/06/15 15:29:26 PDT Modified files: www/demoroniser Makefile Log: .../local-distfiles/... -> MASTER_SITE_LOCAL Revision Changes Path 1.7 +3 -2 ports/www/demoroniser/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 15:29:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 26ED637C07E; Thu, 15 Jun 2000 15:29:35 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA67124; Thu, 15 Jun 2000 15:29:34 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200006152229.PAA67124@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 15 Jun 2000 15:29:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/sim Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/06/15 15:29:34 PDT Modified files: emulators/sim Makefile Log: .../local-distfiles/... -> MASTER_SITE_LOCAL Revision Changes Path 1.12 +3 -2 ports/emulators/sim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 15:36:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF9DA37B59F; Thu, 15 Jun 2000 15:36:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: (from ade@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA68259; Thu, 15 Jun 2000 15:36:33 -0700 (PDT) (envelope-from ade@FreeBSD.org) Message-Id: <200006152236.PAA68259@freefall.freebsd.org> From: Ade Lovett Date: Thu, 15 Jun 2000 15:36:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/gnomepilot Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ade 2000/06/15 15:36:33 PDT Modified files: palm/gnomepilot Makefile Log: Add devel/libglade dependency Problem pointed out by: Roman Shterenzon Revision Changes Path 1.12 +3 -2 ports/palm/gnomepilot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 15:56:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7156037B9AF; Thu, 15 Jun 2000 15:56:38 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA70160; Thu, 15 Jun 2000 15:56:38 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006152256.PAA70160@freefall.freebsd.org> From: Jim Mock Date: Thu, 15 Jun 2000 15:56:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/install chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/15 15:56:38 PDT Modified files: en_US.ISO_8859-1/books/handbook/install chapter.sgml Log: Fix various typos and other related nits. PR: 19302 Submitted by: Daniel Harris Revision Changes Path 1.45 +18 -18 doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 16: 5:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6314237BC48; Thu, 15 Jun 2000 16:05:33 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA71918; Thu, 15 Jun 2000 16:05:33 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006152305.QAA71918@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Thu, 15 Jun 2000 16:05:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/15 16:05:33 PDT Modified files: en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml Log: Update my PGP key (now signed). Revision Changes Path 1.35 +13 -10 doc/en_US.ISO_8859-1/books/handbook/pgpkeys/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 16: 8:27 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E80CB37BAFB; Thu, 15 Jun 2000 16:08:24 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA72245; Thu, 15 Jun 2000 16:08:19 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200006152308.QAA72245@freefall.freebsd.org> From: Robert Watson Date: Thu, 15 Jun 2000 16:08:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern syscalls.master Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/06/15 16:08:19 PDT Modified files: sys/kern syscalls.master Log: Introduce syscalls for process capability manipulation. Currently backs onto already committed stubs. Commit one of two. Reviewed by: Damned if I can remember. Many people. Obtained from: TrustedBSD Project Revision Changes Path 1.77 +3 -1 src/sys/kern/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 16:12:54 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id 0738937B9A6; Thu, 15 Jun 2000 16:12:49 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id QAA45045; Thu, 15 Jun 2000 16:12:46 -0700 (PDT) Message-ID: <20000615161246.37298@hydrogen.funkthat.com> Date: Thu, 15 Jun 2000 16:12:46 -0700 From: John-Mark Gurney To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h References: <200006151818.LAA31278@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <200006151818.LAA31278@freefall.freebsd.org>; from Alfred Perlstein on Thu, Jun 15, 2000 at 11:18:43AM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred Perlstein scribbled this message on Jun 15: > until the incoming connection has either data waiting or what looks like a > HTTP request header already in the socketbuffer. This ought to reduce > the context switch time and overhead for processing requests. if this code stays (which I hope it either gets removed, or made into a kld module), it should be updated to check for ALL the various possible http requests... (such as HEAD, etc.) -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 16:13:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2106337BD31; Thu, 15 Jun 2000 16:13:34 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA72997; Thu, 15 Jun 2000 16:13:34 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006152313.QAA72997@freefall.freebsd.org> From: Jim Mock Date: Thu, 15 Jun 2000 16:13:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/boot chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/15 16:13:34 PDT Modified files: en_US.ISO_8859-1/books/handbook/boot chapter.sgml Log: Fix spelling error.. configuaration -> configuration. Revision Changes Path 1.8 +2 -2 doc/en_US.ISO_8859-1/books/handbook/boot/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 16:27:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC19737B76A; Thu, 15 Jun 2000 16:27:19 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: (from rwatson@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA75248; Thu, 15 Jun 2000 16:27:19 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Message-Id: <200006152327.QAA75248@freefall.freebsd.org> From: Robert Watson Date: Thu, 15 Jun 2000 16:27:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern init_sysent.c syscalls.c src/sys/sys syscall-hide.h syscall.h syscall.mk sysproto.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG rwatson 2000/06/15 16:27:19 PDT Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall-hide.h syscall.h syscall.mk sysproto.h Log: Second of two commits adding capability manipulation syscalls for processes. Obtained from: TrustedBSD Project Revision Changes Path 1.87 +3 -1 src/sys/kern/init_sysent.c 1.76 +3 -1 src/sys/kern/syscalls.c 1.70 +3 -1 src/sys/sys/syscall-hide.h 1.74 +4 -2 src/sys/sys/syscall.h 1.28 +4 -2 src/sys/sys/syscall.mk 1.64 +9 -1 src/sys/sys/sysproto.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 17: 1:51 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id 8A56637B6F0; Thu, 15 Jun 2000 17:01:47 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id RAA45741; Thu, 15 Jun 2000 17:01:47 -0700 (PDT) Message-ID: <20000615170147.26578@hydrogen.funkthat.com> Date: Thu, 15 Jun 2000 17:01:47 -0700 From: John-Mark Gurney To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-disk.c src/sys/i386/i386 autoconf.c src/sys/kern subr_disk.c src/sys/sys disk.h References: <200006152030.NAA51628@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <200006152030.NAA51628@freefall.freebsd.org>; from Poul-Henning Kamp on Thu, Jun 15, 2000 at 01:30:53PM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Poul-Henning Kamp scribbled this message on Jun 15: > WARNING: If you have not updated to use /dev/wd* in your /etc/fstab ^^ you do man ad right? > and modern bootblocks, it would be a very good idea to do so BEFORE > you upgrade your kernel. -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 17: 4: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19FC737B7AE; Thu, 15 Jun 2000 17:04:04 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA79025; Thu, 15 Jun 2000 17:04:04 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006160004.RAA79025@freefall.freebsd.org> From: Jim Mock Date: Thu, 15 Jun 2000 17:04:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/porters-handbook book.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/15 17:04:04 PDT Modified files: en_US.ISO_8859-1/books/porters-handbook book.sgml Log: Explain CFLAGS in a bit more detail. The previous mention was too brief and could cause new users to not understand what is meant by respecting CFLAGS. PR: 19278 Submitted by: Zach Zurflu Revision Changes Path 1.107 +19 -1 doc/en_US.ISO_8859-1/books/porters-handbook/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 17: 5:28 2000 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.40.131]) by hub.freebsd.org (Postfix) with ESMTP id 361ED37B7AE; Thu, 15 Jun 2000 17:05:22 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.9.3/8.9.3) with ESMTP id CAA25007; Fri, 16 Jun 2000 02:05:14 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: John-Mark Gurney Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-disk.c src/sys/i386/i386 autoconf.c src/sys/kern subr_disk.c src/sys/sys disk.h In-reply-to: Your message of "Thu, 15 Jun 2000 17:01:47 PDT." <20000615170147.26578@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 02:05:13 +0200 Message-ID: <25005.961113913@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In message <20000615170147.26578@hydrogen.funkthat.com>, John-Mark Gurney write s: >Poul-Henning Kamp scribbled this message on Jun 15: >> WARNING: If you have not updated to use /dev/wd* in your /etc/fstab > ^^ >you do man ad right? Right, I got that reversed [sigh...] -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD coreteam member | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 18:52: 5 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 542) id 70C3037BA65; Thu, 15 Jun 2000 18:52:00 -0700 (PDT) Date: Thu, 15 Jun 2000 18:52:00 -0700 From: "Andrey A. Chernov" To: Hajimu UMEMOTO Cc: alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, itojun@itojun.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000615185200.A40608@freebsd.org> References: <20000615111427.A20272@freebsd.org> <20000616.034310.74757991.ume@mahoroba.org> <20000616.044143.71082986.ume@mahoroba.org> <20000616.052804.41631317.ume@mahoroba.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <20000616.052804.41631317.ume@mahoroba.org>; from ume@mahoroba.org on Fri, Jun 16, 2000 at 05:28:04AM +0900 Organization: Biomechanoid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 05:28:04AM +0900, Hajimu UMEMOTO wrote: > Now, it is working without /etc/resolv.conf in my box. The fix is > attached. This patch is for res_init.c with my previous patch > applied. Generally I am not resolver guru to give you good code review. There are following possibilities: 1) No /etc/resolv.conf 2) /etc/resolv.conf with several nameservers 2a) /etc/resolv.conf with nameserver 0.0.0.0 Just test the code works for IPV4-only kernel and commit, I'll report, if it broke something. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 18:56: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from coconut.itojun.org (coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (Postfix) with ESMTP id A7EFF37BA65; Thu, 15 Jun 2000 18:55:56 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.9.3+3.2W/3.7W/smtpfeed 1.06) with ESMTP id KAA02649; Fri, 16 Jun 2000 10:55:54 +0900 (JST) To: "Andrey A. Chernov" Cc: Hajimu UMEMOTO , alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: ache's message of Thu, 15 Jun 2000 18:52:00 MST. <20000615185200.A40608@freebsd.org> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: itojun@iijlab.net Date: Fri, 16 Jun 2000 10:55:54 +0900 Message-ID: <2647.961120554@coconut.itojun.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >On Fri, Jun 16, 2000 at 05:28:04AM +0900, Hajimu UMEMOTO wrote: >> Now, it is working without /etc/resolv.conf in my box. The fix is >> attached. This patch is for res_init.c with my previous patch >> applied. > >Generally I am not resolver guru to give you good code review. > >There are following possibilities: >1) No /etc/resolv.conf >2) /etc/resolv.conf with several nameservers >2a) /etc/resolv.conf with nameserver 0.0.0.0 > >Just test the code works for IPV4-only kernel and commit, I'll report, if it >broke something. ume, you really want to look at the latest kame libineet6/resolv/. the code is much more conservative about backward compatibility (selecting _res.nsaddr_list and _res_ext.nsaddr_list). make sure to check if nslookup/dig/host work right. they touch struct _res directly and will make it a good torture-test for backward compatibility (not sure if freebsd nslookup uses libc resolver at all). itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 19:12:21 2000 Delivered-To: cvs-all@freebsd.org Received: from tkc.att.ne.jp (tkc.att.ne.jp [165.76.16.7]) by hub.freebsd.org (Postfix) with ESMTP id 5541737B68C; Thu, 15 Jun 2000 19:12:16 -0700 (PDT) (envelope-from mzaki@e-mail.ne.jp) Received: from work.mzaki.nom ([165.76.42.150]) by tkc.att.ne.jp (8.8.8+Spin/3.6W-CONS(10/24/99)) id LAA10668; Fri, 16 Jun 2000 11:12:14 +0900 (JST) Received: from work.mzaki.nom (mzaki@localhost [127.0.0.1]) by work.mzaki.nom (8.9.3/8.9.3) with ESMTP id LAA34911; Fri, 16 Jun 2000 11:12:13 +0900 (JST) (envelope-from mzaki@e-mail.ne.jp) Date: Fri, 16 Jun 2000 11:12:12 +0900 Message-ID: <86itvae5mr.wl@tkc.att.ne.jp> From: Motomichi Matsuzaki To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 In-Reply-To: In your message of "Thu, 15 Jun 2000 08:57:34 -0700 (PDT)" <200006151557.IAA05990@freefall.freebsd.org> References: <200006151557.IAA05990@freefall.freebsd.org> X-Mailer: Wanderlust/2.2.12 (Joyride) XEmacs/21.1 (Bryce Canyon) MIME-Version: 1.0 (generated by WEMI 1.13.7 - "Shimada") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi. At Thu, 15 Jun 2000 08:57:34 -0700 (PDT), David E. O'Brien wrote: > Modified files: > sys/conf Makefile.alpha Makefile.i386 > Log: > Only copy /modules to /modules.old if /modules exists and is populated. fix for it: --- Makefile.i386.orig Fri Jun 16 11:06:24 2000 +++ Makefile.i386 Fri Jun 16 11:07:05 2000 @@ -495,7 +495,7 @@ modules-install modules-install.debug: .if !defined(NO_MODULES_OLD) if [ -d ${DESTDIR}/modules -a -n "`ls ${DESTDIR}/modules`" ]; then \ - mkdir -p ${DESTDIR}/modules.old + mkdir -p ${DESTDIR}/modules.old; \ cp -p ${DESTDIR}/modules/* ${DESTDIR}/modules.old; \ fi; .endif -- Motomichi Matsuzaki Dept. of Biological Sciences, Grad. School of Science, Univ. of Tokyo, Japan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 19:16:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EC5037B87B; Thu, 15 Jun 2000 19:16:09 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96174; Thu, 15 Jun 2000 19:16:09 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006160216.TAA96174@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 15 Jun 2000 19:16:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/mirrors chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/15 19:16:09 PDT Modified files: ja_JP.eucJP/books/handbook/mirrors chapter.sgml Log: Merge changes in the English version (1.66 -> 1.67). Submitted by: Shun SUZUKI Revision Changes Path 1.19 +330 -4 doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 19:18:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C06C37B7E8; Thu, 15 Jun 2000 19:18:43 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96330; Thu, 15 Jun 2000 19:18:43 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006160218.TAA96330@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 15 Jun 2000 19:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/mirrors chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/15 19:18:43 PDT Modified files: ja_JP.eucJP/books/handbook/mirrors chapter.sgml Log: Merge changes in the English version (1.67 --> 1.68). Submitted by: Shun SUZUKI Revision Changes Path 1.20 +1288 -3 doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 19:20: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 77A5137B7E8; Thu, 15 Jun 2000 19:19:58 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96481; Thu, 15 Jun 2000 19:19:58 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006160219.TAA96481@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 15 Jun 2000 19:19:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/mirrors chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/15 19:19:58 PDT Modified files: ja_JP.eucJP/books/handbook/mirrors chapter.sgml Log: Fix typo. Submitted by: Shun SUZUKI Revision Changes Path 1.21 +3 -3 doc/ja_JP.eucJP/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 19:23:52 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5189637B62D; Thu, 15 Jun 2000 19:23:50 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA96928; Thu, 15 Jun 2000 19:23:50 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006160223.TAA96928@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 15 Jun 2000 19:23:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/cutting-edge chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/15 19:23:50 PDT Modified files: ja_JP.eucJP/books/handbook/cutting-edge chapter.sgml Log: Merge changes in the English version (1.45 --> 1.48). Submitted by: Shun SUZUKI Revision Changes Path 1.14 +19 -1627 doc/ja_JP.eucJP/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 19:40: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 15C4B37B5E9; Thu, 15 Jun 2000 19:39:56 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA98531; Thu, 15 Jun 2000 19:39:55 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Message-Id: <200006160239.TAA98531@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 15 Jun 2000 19:39:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/books/handbook/disks chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kuriyama 2000/06/15 19:39:55 PDT Modified files: ja_JP.eucJP/books/handbook/disks chapter.sgml Log: Merge changes in the English version (1.8 --> 1.9). Revision Changes Path 1.6 +148 -144 doc/ja_JP.eucJP/books/handbook/disks/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 20:16:56 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.bart.nl (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 5CCCA37BA59; Thu, 15 Jun 2000 20:16:51 -0700 (PDT) (envelope-from asmodai@lucifer.bart.nl) Received: (from asmodai@localhost) by lucifer.bart.nl (8.9.3/8.9.3) id FAA67893; Fri, 16 Jun 2000 05:16:40 +0200 (CEST) (envelope-from asmodai) Date: Fri, 16 Jun 2000 05:16:40 +0200 From: Jeroen Ruigrok van der Werven To: itojun@iijlab.net Cc: "Andrey A. Chernov" , Hajimu UMEMOTO , alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000616051639.B67759@lucifer.bart.nl> References: <20000615185200.A40608@freebsd.org> <2647.961120554@coconut.itojun.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <2647.961120554@coconut.itojun.org>; from itojun@iijlab.net on Fri, Jun 16, 2000 at 10:55:54AM +0900 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000616 03:58], itojun@iijlab.net (itojun@iijlab.net) wrote: > (not sure if freebsd nslookup uses libc resolver at all). FreeBSD nslookup is the BIND nslookup. -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl How are the mighty fallen... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 20:19:40 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.bart.nl (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 3508537BA59; Thu, 15 Jun 2000 20:19:33 -0700 (PDT) (envelope-from asmodai@lucifer.bart.nl) Received: (from asmodai@localhost) by lucifer.bart.nl (8.9.3/8.9.3) id FAA67931; Fri, 16 Jun 2000 05:19:32 +0200 (CEST) (envelope-from asmodai) Date: Fri, 16 Jun 2000 05:19:32 +0200 From: Jeroen Ruigrok van der Werven To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-disk.c src/sys/i386/i386 autoconf.c src/sys/kern subr_disk.c src/sys/sys disk.h Message-ID: <20000616051932.C67759@lucifer.bart.nl> References: <200006152030.NAA51628@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006152030.NAA51628@freefall.freebsd.org>; from phk@FreeBSD.org on Thu, Jun 15, 2000 at 01:30:53PM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000615 22:32], Poul-Henning Kamp (phk@FreeBSD.org) wrote: > WARNING: If you have not updated to use /dev/wd* in your /etc/fstab > and modern bootblocks, it would be a very good idea to do so BEFORE > you upgrade your kernel. Clarification to all: Use /dev/ad*, NOT /dev/wd*. Maybe Warner feels this is something which needs explicit mention in UPDATING? -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl The way you're bathed in Light, reminds me of that Night, god laid me down into your rose garden of Trust... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 20:29:52 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id D758137BB89; Thu, 15 Jun 2000 20:29:42 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p41-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.42]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id MAA05490; Fri, 16 Jun 2000 12:29:38 +0900 (JST) Message-ID: <39499E16.9FE731F7@newsguy.com> Date: Fri, 16 Jun 2000 12:25:10 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Alfred Perlstein Cc: Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred Perlstein wrote: > > * Nate Williams [000615 11:46] wrote: > > > alfred 2000/06/15 11:18:43 PDT > > > > > > Modified files: > > > sys/kern uipc_socket.c uipc_socket2.c > > > sys/sys socket.h > > > Log: > > > add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() > > > until the incoming connection has either data waiting or what looks like a > > > HTTP request header already in the socketbuffer. This ought to reduce > > > the context switch time and overhead for processing requests. > > > > > > The initial idea and code for HTTPACCEPT came from Yahoo engineers and has > > > been cleaned up and a more lightweight DELAYACCEPT for non-http servers > > > has been added > > > > > > Reviewed by: silence on hackers. > > > > Huh? I never saw this. I object to adding application specific code > > inside the kernel. > > It's not really a signifigant amount of code if you look at the > delta, the performance difference is signifigant though. > You'll be happy when I release my http server that uses this. He won't. HTTP belongs to userland. We should no more add support to HTTP than we should add support to the dozens of different userland streaming protocols in existance. Alas, I pretty much ignored all that hackers discussion on the grounds that nothing called "kblob" could possibly be important. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 20:59: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id BC5EE37B850; Thu, 15 Jun 2000 20:58:57 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id NAA06221; Fri, 16 Jun 2000 13:28:41 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <39499E16.9FE731F7@newsguy.com> Date: Fri, 16 Jun 2000 13:28:41 +0930 (CST) From: "Daniel O'Connor" To: "Daniel C. Sobral" Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Nate Williams , Alfred Perlstein Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Daniel C. Sobral wrote: > HTTP belongs to userland. We should no more add support to HTTP than we > should add support to the dozens of different userland streaming > protocols in existance. So we should just not bother squeezing more performance out of the system on architectural grounds? I can see why it isn't terribly 'nice' but if you want to squeeze more performance out of your system it IS necessary to do.. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21: 9:29 2000 Delivered-To: cvs-all@freebsd.org Received: from hiro.netizen.com.au (hiro.netizen.com.au [203.30.75.2]) by hub.freebsd.org (Postfix) with ESMTP id 59CE437B82E; Thu, 15 Jun 2000 21:09:24 -0700 (PDT) (envelope-from benno@netizen.com.au) Received: by hiro.netizen.com.au (Postfix, from userid 516) id 88AF7215EC; Fri, 16 Jun 2000 14:09:20 +1000 (EST) Date: Fri, 16 Jun 2000 14:09:20 +1000 From: Benno Rice To: Daniel O'Connor Cc: "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Nate Williams , Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Message-ID: <20000616140920.C10887@netizen.com.au> References: <39499E16.9FE731F7@newsguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: ; from Daniel O'Connor on Fri, Jun 16, 2000 at 01:28:41PM +0930 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 01:28:41PM +0930, Daniel O'Connor wrote: > > On 16-Jun-00 Daniel C. Sobral wrote: > > HTTP belongs to userland. We should no more add support to HTTP than we > > should add support to the dozens of different userland streaming > > protocols in existance. > > So we should just not bother squeezing more performance out of the system on > architectural grounds? > > I can see why it isn't terribly 'nice' but if you want to squeeze more > performance out of your system it IS necessary to do.. Would it be possible to have a facility for loading a filter? Then the kernel just needs to be able to load the filters and the question of wheter it's HTTP or not becomes irrelevant... -- Benno Rice "No, no. We're *sweet* and XNFP Aries Dark Subculture- *innocent* evil bastards." friendly Internet Geek benno@netizen.com.au "Defend your joy" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:22:22 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 97E3237B850; Thu, 15 Jun 2000 21:22:16 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id NAA06438; Fri, 16 Jun 2000 13:52:12 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20000616140920.C10887@netizen.com.au> Date: Fri, 16 Jun 2000 13:52:12 +0930 (CST) From: "Daniel O'Connor" To: Benno Rice Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, "Daniel C. Sobral" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Benno Rice wrote: > On Fri, Jun 16, 2000 at 01:28:41PM +0930, Daniel O'Connor wrote: > > I can see why it isn't terribly 'nice' but if you want to squeeze more > > performance out of your system it IS necessary to do.. > Would it be possible to have a facility for loading a filter? Then the > kernel just needs to be able to load the filters and the question of > wheter it's HTTP or not becomes irrelevant... Sounds like a nice idea :) I think the HTTP stuff is a proof on concept.. Right Alfred? :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:29:50 2000 Delivered-To: cvs-all@freebsd.org Received: from backup.af.speednet.com.au (af.speednet.com.au [202.135.188.244]) by hub.freebsd.org (Postfix) with ESMTP id D674437BC05; Thu, 15 Jun 2000 21:29:42 -0700 (PDT) (envelope-from andyf@speednet.com.au) Received: from backup.af.speednet.com.au (andyf@backup.af.speednet.com.au [172.22.2.4]) by backup.af.speednet.com.au (8.9.3/8.9.3) with ESMTP id OAA02662; Fri, 16 Jun 2000 14:29:22 +1000 (EST) (envelope-from andyf@speednet.com.au) Date: Fri, 16 Jun 2000 14:29:22 +1000 (EST) From: Andy Farkas X-Sender: andyf@backup.af.speednet.com.au To: Nate Williams Cc: Alfred Perlstein , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <200006151845.MAA25472@nomad.yogotech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Jun 2000, Nate Williams wrote: > > Reviewed by: silence on hackers. > > Huh? I never saw this. I object to adding application specific code > inside the kernel. A search of both -hackers and -net archives returns nothing... http://www.FreeBSD.org/cgi/search.cgi?words=delayaccept+httpaccept&max=25&sort=score&source=freebsd-hackers&source=freebsd-net :-( -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:32:42 2000 Delivered-To: cvs-all@freebsd.org Received: from lychee.itojun.org (dialup0.itojun.org [210.160.95.108]) by hub.freebsd.org (Postfix) with ESMTP id 6D05A37BBF0; Thu, 15 Jun 2000 21:32:37 -0700 (PDT) (envelope-from itojun@itojun.org) Received: from kiwi.itojun.org (localhost [127.0.0.1]) by itojun.org (8.10.0/3.7W) with ESMTP id e5G4VNk16398; Fri, 16 Jun 2000 13:31:23 +0900 (JST) To: Jeroen Ruigrok van der Werven Cc: "Andrey A. Chernov" , Hajimu UMEMOTO , alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: jruigrok's message of Fri, 16 Jun 2000 05:16:40 +0200. <20000616051639.B67759@lucifer.bart.nl> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: Jun-ichiro itojun Hagino Date: Fri, 16 Jun 2000 13:31:23 +0900 Message-ID: <16396.961129883@lychee.itojun.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> (not sure if freebsd nslookup uses libc resolver at all). >FreeBSD nslookup is the BIND nslookup. No, I'm asking if nslookup relies upon resolver in libc (dynamically linked), or uses resolver library statically compiled separately. as I understand nslookup is from BIND8 and libc resolver is mostly BIND4 + local changes, so the former option may need some twist. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:34:29 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 4F50337BBF0; Thu, 15 Jun 2000 21:34:16 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p41-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.42]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id NAA21389; Fri, 16 Jun 2000 13:34:06 +0900 (JST) Message-ID: <3949AE78.E0BD49F7@newsguy.com> Date: Fri, 16 Jun 2000 13:35:04 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: "Daniel O'Connor" Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Nate Williams , Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Daniel O'Connor wrote: > > On 16-Jun-00 Daniel C. Sobral wrote: > > HTTP belongs to userland. We should no more add support to HTTP than we > > should add support to the dozens of different userland streaming > > protocols in existance. > > So we should just not bother squeezing more performance out of the system on > architectural grounds? That is a biased question, as you wrongfully imply an either/or alternative. But I'll address that later. To preserve sanity, keep the code maintainable, and not be required to keep doing hack after hack for each new wing dingy we decide to support. > I can see why it isn't terribly 'nice' but if you want to squeeze more > performance out of your system it IS necessary to do.. And this is the falacy. If the architecture prevents you from getting the desired performace the right way, fix the architecture instead of patching it. Alas, it doesn't. Sendfile() works for applications other than http and ftp, for instance. That's the right way of doing it. What was committed, it would seem, doesn't even handle all HTTP headers, and certainly won't handle _new_ HTTP headers that industry and standard groups decide to create. That's the wrong way of doing it. The correct here is find _why_ there is a performance impact if this delay accept feature is not used, and fix _that_ instead. Alternatively, a _flexible_ delay accept feature should have been introduced, instead of a hard-wired one. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:35:29 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id D0AF437BC05; Thu, 15 Jun 2000 21:35:19 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p41-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.42]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id NAA21725; Fri, 16 Jun 2000 13:35:05 +0900 (JST) Message-ID: <3949AEB3.1C25A692@newsguy.com> Date: Fri, 16 Jun 2000 13:36:03 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: "Daniel O'Connor" Cc: Benno Rice , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Daniel O'Connor wrote: > > On 16-Jun-00 Benno Rice wrote: > > On Fri, Jun 16, 2000 at 01:28:41PM +0930, Daniel O'Connor wrote: > > > I can see why it isn't terribly 'nice' but if you want to squeeze more > > > performance out of your system it IS necessary to do.. > > Would it be possible to have a facility for loading a filter? Then the > > kernel just needs to be able to load the filters and the question of > > wheter it's HTTP or not becomes irrelevant... > > Sounds like a nice idea :) > > I think the HTTP stuff is a proof on concept.. Right Alfred? :) Proof of concepts need not be committed two days after being suggested on -hackers. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:37: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id DDB5C37B930; Thu, 15 Jun 2000 21:36:46 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id OAA07251; Fri, 16 Jun 2000 14:06:34 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3949AEB3.1C25A692@newsguy.com> Date: Fri, 16 Jun 2000 14:06:34 +0930 (CST) From: "Daniel O'Connor" To: "Daniel C. Sobral" Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Nate Williams , Alfred Perlstein , Benno Rice Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Daniel C. Sobral wrote: > Daniel O'Connor wrote: > > Sounds like a nice idea :) > > I think the HTTP stuff is a proof on concept.. Right Alfred? :) > Proof of concepts need not be committed two days after being suggested > on -hackers. Well, at least people are paying attention to it now. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 21:41:52 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 71D3537BBF0; Thu, 15 Jun 2000 21:41:34 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id OAA07844; Fri, 16 Jun 2000 14:11:08 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3949AE78.E0BD49F7@newsguy.com> Date: Fri, 16 Jun 2000 14:11:08 +0930 (CST) From: "Daniel O'Connor" To: "Daniel C. Sobral" Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Daniel C. Sobral wrote: > Daniel O'Connor wrote: > > I can see why it isn't terribly 'nice' but if you want to squeeze more > > performance out of your system it IS necessary to do.. > And this is the falacy. If the architecture prevents you from getting > the desired performace the right way, fix the architecture instead of > patching it. Alas, it doesn't. Sendfile() works for applications other > than http and ftp, for instance. That's the right way of doing it. What > was committed, it would seem, doesn't even handle all HTTP headers, and > certainly won't handle _new_ HTTP headers that industry and standard > groups decide to create. That's the wrong way of doing it. So how should the architecture be changed to accomodate this? If the ability is added to upload a 'pattern' to match (obviously simpler than a re :) I think that would be quite nice. > The correct here is find _why_ there is a performance impact if this > delay accept feature is not used, and fix _that_ instead. Well, my naivity abounds, but I would have thought it was because you do an accept() which returns and then immediatly you go back to waiting on select(). > Alternatively, a _flexible_ delay accept feature should have been > introduced, instead of a hard-wired one. True. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22: 3:22 2000 Delivered-To: cvs-all@freebsd.org Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (Postfix) with ESMTP id 7927C37BCEA; Thu, 15 Jun 2000 22:03:17 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs (helo=localhost) by redfish.go2net.com with local-esmtp (Exim 2.11 #1) id 132oHP-0005ft-00; Thu, 15 Jun 2000 22:02:55 -0700 Date: Thu, 15 Jun 2000 22:02:54 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: John-Mark Gurney Cc: Alfred Perlstein , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <20000615161246.37298@hydrogen.funkthat.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Jun 2000, John-Mark Gurney wrote: > Alfred Perlstein scribbled this message on Jun 15: > > until the incoming connection has either data waiting or what looks like a > > HTTP request header already in the socketbuffer. This ought to reduce > > the context switch time and overhead for processing requests. > > if this code stays (which I hope it either gets removed, or made into > a kld module), it should be updated to check for ALL the various > possible http requests... (such as HEAD, etc.) Actually, no, it should not be a generalized to be fully able to grok all possible requests. While I agree that this sort of hardcoded gunk isn't necessarily appropriate where it is (or even useful for performance, outside of very constrained benchmark situations), if you are going to add special code to the kernel, then you want to keep a small fast path in the kernel that covers the common case. You can cover 90% of the cases with 10% of the code, then everything else just punts down the way things normally work. More speed for the common case, less complexity, and a lot less chance of bugs. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22: 4: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FBEA37B6FF; Thu, 15 Jun 2000 22:04:06 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Received: (from dcs@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA15309; Thu, 15 Jun 2000 22:04:06 -0700 (PDT) (envelope-from dcs@FreeBSD.org) Message-Id: <200006160504.WAA15309@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Thu, 15 Jun 2000 22:04:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common interp_forth.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dcs 2000/06/15 22:04:06 PDT Modified files: sys/boot/common interp_forth.c Log: Fix vocabulary juggling so that builtins voc is always searched before forth vocabulary when initially creating the builtins. FICL 2.05 has a better way to do this, but this works for now. Fixes "?". Revision Changes Path 1.18 +3 -3 src/sys/boot/common/interp_forth.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22: 7: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id B340737BCC9; Thu, 15 Jun 2000 22:06:54 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id XAA04354; Thu, 15 Jun 2000 23:06:49 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id XAA28743; Thu, 15 Jun 2000 23:06:48 -0600 (MDT) (envelope-from nate) Date: Thu, 15 Jun 2000 23:06:48 -0600 (MDT) Message-Id: <200006160506.XAA28743@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "Daniel O'Connor" Cc: "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Nate Williams , Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: References: <39499E16.9FE731F7@newsguy.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > HTTP belongs to userland. We should no more add support to HTTP than we > > should add support to the dozens of different userland streaming > > protocols in existance. > > So we should just not bother squeezing more performance out of the system on > architectural grounds? Correct. If we want performance, how about removing the difference between kernel and userland. Why have the overhead of the kernel vs. userland change, since it causes us to take a big performance hit. As long as we're at it, we may as well embed all of the video drivers in the kernel, like NT did. X should become an embedded part of the system, since that will also speed up performance again. There are *LOTS* of performance improvments that can be done. Since FreeBSD is used on the internet, let's embed telnet and ftp in the kernel as well. We could certainly blow away all benchmarks that people see. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:12:24 2000 Delivered-To: cvs-all@freebsd.org Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (Postfix) with ESMTP id B451C37B860; Thu, 15 Jun 2000 22:12:13 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs (helo=localhost) by redfish.go2net.com with local-esmtp (Exim 2.11 #1) id 132oOe-00061P-00; Thu, 15 Jun 2000 22:10:24 -0700 Date: Thu, 15 Jun 2000 22:10:24 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: Daniel O'Connor Cc: "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Jun 2000, Daniel O'Connor wrote: > > The correct here is find _why_ there is a performance impact if this > > delay accept feature is not used, and fix _that_ instead. > > Well, my naivity abounds, but I would have thought it was because you do an > accept() which returns and then immediatly you go back to waiting on select(). Why should that be expensive? If thundering herd on accept() is a problem, add a wake_one. Which was done. If there is some similar problem elsewhere, fix it. If the select() interface is the problem, use poll() or something else that has an interface more suited to it. I just don't see what is that expensive about having to do an accept() then a select()-like call. In any case, if you are looking just for code that benchmarks well on simple static content, then the only answer is to stick the server (well, or a caching mini-server that only handles simple requests and punts anything it doesn't grok down to userland) in the kernel. Then you can come pretty darn close to saturating the bus (well, on other OSes; assuming FreeBSD has no other bottlenecks) before you run out of CPU. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:16:59 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id B144C37B74F; Thu, 15 Jun 2000 22:16:51 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id OAA09009; Fri, 16 Jun 2000 14:46:41 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200006160506.XAA28743@nomad.yogotech.com> Date: Fri, 16 Jun 2000 14:46:41 +0930 (CST) From: "Daniel O'Connor" To: Nate Williams Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, "Daniel C. Sobral" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Nate Williams wrote: > > So we should just not bother squeezing more performance out of the system > > on > > architectural grounds? > Correct. If we want performance, how about removing the difference > between kernel and userland. Why have the overhead of the kernel > vs. userland change, since it causes us to take a big performance hit. > > As long as we're at it, we may as well embed all of the video drivers in > the kernel, like NT did. X should become an embedded part of the > system, since that will also speed up performance again. > There are *LOTS* of performance improvments that can be done. Since > FreeBSD is used on the internet, let's embed telnet and ftp in the > kernel as well. We could certainly blow away all benchmarks that people > see. OK, thanks for your amusing interlude now you can try and send a mail with some content. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:19:33 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 31B2C37B74F; Thu, 15 Jun 2000 22:19:25 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id OAA09028; Fri, 16 Jun 2000 14:49:09 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Fri, 16 Jun 2000 14:49:09 +0930 (CST) From: "Daniel O'Connor" To: Marc Slemko Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, Nate Williams , Alfred Perlstein , "Daniel C. Sobral" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Marc Slemko wrote: > On Fri, 16 Jun 2000, Daniel O'Connor wrote: > > Well, my naivity abounds, but I would have thought it was because you do an > > accept() which returns and then immediatly you go back to waiting on > > select(). > > Why should that be expensive? Because you go into and out of the kernel twice? If you know a header is in the buffer already you can do accept() then read().. > I just don't see what is that expensive about having to do an > accept() then a select()-like call. In any case, if you are looking > just for code that benchmarks well on simple static content, then the > only answer is to stick the server (well, or a caching mini-server that > only handles simple requests and punts anything it doesn't grok down to > userland) in the kernel. Then you can come pretty darn close to > saturating the bus (well, on other OSes; assuming FreeBSD has no other > bottlenecks) before you run out of CPU. That would be a nice goal but I think the socket option is a nice start... --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:20:18 2000 Delivered-To: cvs-all@freebsd.org Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (Postfix) with ESMTP id C22ED37B74F; Thu, 15 Jun 2000 22:20:13 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs (helo=localhost) by redfish.go2net.com with local-esmtp (Exim 2.11 #1) id 132oWB-0006AI-00; Thu, 15 Jun 2000 22:18:11 -0700 Date: Thu, 15 Jun 2000 22:18:11 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: Nate Williams Cc: Daniel O'Connor , "Daniel C. Sobral" , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <200006160506.XAA28743@nomad.yogotech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 15 Jun 2000, Nate Williams wrote: > > > HTTP belongs to userland. We should no more add support to HTTP than we > > > should add support to the dozens of different userland streaming > > > protocols in existance. > > > > So we should just not bother squeezing more performance out of the system on > > architectural grounds? > > Correct. If we want performance, how about removing the difference > between kernel and userland. Why have the overhead of the kernel > vs. userland change, since it causes us to take a big performance hit. > > As long as we're at it, we may as well embed all of the video drivers in > the kernel, like NT did. X should become an embedded part of the > system, since that will also speed up performance again. > > There are *LOTS* of performance improvments that can be done. Since > FreeBSD is used on the internet, let's embed telnet and ftp in the > kernel as well. We could certainly blow away all benchmarks that people > see. I think the real point here is that, if this sort of specialized performance is required, then great, people can do it as a random LKM or whatever that drops in using reasonably generic and appropriate hooks. Most of the time, that can be done. It can be done for HTTP. If someone needs video performance at a level that can only be accomplished by moving their drivers into kernel space, I have no problems with them doing that. It is all a matter of adding it to the right places to make it fairly drop in. IBM added a kernel HTTP cache to NT using, if I recall correctly, no code changes (or source) to NT, only pre-existing hooks. Maybe I think that is useful. Maybe I don't. But there is every reason to support the flexibility it givers as long as it is done in a way that lets those who want it drop it in cleanly. Maybe all the required hooks are there. Maybe they can be cleanly added. Either way. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:26:58 2000 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id C0F6537BA39; Thu, 15 Jun 2000 22:26:50 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id OAA09133; Fri, 16 Jun 2000 14:56:39 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: Date: Fri, 16 Jun 2000 14:56:39 +0930 (CST) From: "Daniel O'Connor" To: Marc Slemko Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: Alfred Perlstein , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, "Daniel C. Sobral" , Nate Williams Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On 16-Jun-00 Marc Slemko wrote: > It is all a matter of adding it to the right places to make it fairly > drop in. IBM added a kernel HTTP cache to NT using, if I recall > correctly, no code changes (or source) to NT, only pre-existing hooks. > Maybe I think that is useful. Maybe I don't. But there is every > reason to support the flexibility it givers as long as it is done in > a way that lets those who want it drop it in cleanly. Maybe all the > required hooks are there. Maybe they can be cleanly added. Either > way. Sounds like a nice idea. Now to convince Alfred to implement them 8-) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:30:23 2000 Delivered-To: cvs-all@freebsd.org Received: from atdot.dotat.org (atdot.dotat.org [150.101.89.3]) by hub.freebsd.org (Postfix) with ESMTP id B5D1637BA39; Thu, 15 Jun 2000 22:30:13 -0700 (PDT) (envelope-from newton@atdot.dotat.org) Received: (from newton@localhost) by atdot.dotat.org (8.9.3/8.9.3) id OAA91372; Fri, 16 Jun 2000 14:59:56 +0930 (CST) (envelope-from newton) Date: Fri, 16 Jun 2000 14:59:56 +0930 From: Mark Newton To: Marc Slemko Cc: Nate Williams , "Daniel O'Connor" , "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Message-ID: <20000616145956.B91282@atdot.dotat.org> References: <200006160506.XAA28743@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from marcs@znep.com on Thu, Jun 15, 2000 at 10:18:11PM -0700 X-PGP-Key: http://slash.dotat.org/~newton/pgpkey.txt Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jun 15, 2000 at 10:18:11PM -0700, Marc Slemko wrote: > I think the real point here is that, if this sort of specialized > performance is required, then great, people can do it as a random LKM > or whatever that drops in using reasonably generic and appropriate > hooks. Smirk. freebsd# kldload /modules/apache.ko - mark -------------------------------------------------------------------- I tried an internal modem, newton@atdot.dotat.org but it hurt when I walked. Mark Newton ----- Voice: +61-4-1620-2223 ------------- Fax: +61-8-82231777 ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 22:42: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (Postfix) with ESMTP id 2030F37BC45; Thu, 15 Jun 2000 22:41:58 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs (helo=localhost) by redfish.go2net.com with local-esmtp (Exim 2.11 #1) id 132osV-0006tG-00; Thu, 15 Jun 2000 22:41:15 -0700 Date: Thu, 15 Jun 2000 22:41:15 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: Mark Newton Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <20000616145956.B91282@atdot.dotat.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Jun 2000, Mark Newton wrote: > On Thu, Jun 15, 2000 at 10:18:11PM -0700, Marc Slemko wrote: > > > I think the real point here is that, if this sort of specialized > > performance is required, then great, people can do it as a random LKM > > or whatever that drops in using reasonably generic and appropriate > > hooks. > > Smirk. > > freebsd# kldload /modules/apache.ko No reason to smirk about it. That is a reality on some OSes right now. NT. AIX. Linux (well, there is a kernel httpd there, don't know for sure if there is any public code to do what I'm talking about, which is slightly different) The kernel code is actually only a very simple cache with very simple and minimal parsing routines. Then it punts anything not in the cache or that is too hard down to a normal Apache httpd or whatever. It has been done. It is a nice magic show, since it lets you use the same server for static and dynamic content, it is just that the static stuff only gets punted down to userland for cache population while the dynamic stuff is always punted. Heck, that way you can even keep the disk IO out of the kernel. Do such tactics result in kick-ass benchmarks? You bet, you can take it to a point where you can't get any faster on given hardware (well, assuming your standard x86 server hardware) no matter what you do, since you run into bus limitations. Will IIS have a similar feature? Dunno, I know MS was working on it, just not sure if they will release it. Is it of any actual real world use? Well... I have my doubts. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 23:28:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 090BA37B9C9; Thu, 15 Jun 2000 23:28:32 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA27792; Thu, 15 Jun 2000 23:28:32 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006160628.XAA27792@freefall.freebsd.org> From: Matt Jacob Date: Thu, 15 Jun 2000 23:28:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_wx.c if_wxreg.h if_wxvar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/15 23:28:32 PDT Modified files: sys/pci if_wx.c if_wxreg.h if_wxvar.h Log: Fix this driver to (finally) work with switches. Some more black magic from the linux driver. Revision Changes Path 1.7 +124 -26 src/sys/pci/if_wx.c 1.4 +33 -1 src/sys/pci/if_wxreg.h 1.5 +9 -2 src/sys/pci/if_wxvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Jun 15 23:40: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 0592E37BD00; Thu, 15 Jun 2000 23:39:54 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id XAA56354; Thu, 15 Jun 2000 23:39:53 -0700 (PDT) (envelope-from dillon) Date: Thu, 15 Jun 2000 23:39:53 -0700 (PDT) From: Matthew Dillon Message-Id: <200006160639.XAA56354@apollo.backplane.com> To: Alfred Perlstein Cc: Nate Williams , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In regards to the HTTP specific code in the kernel. I have to say that I do not like the idea of placing application specific code in the kernel, but I do like the more 'general' idea of having the kernel wait for data before returning. Why not use the KLD mechanism to implement a more general 'loadable' socket filter rather then hardwiring specific protocols into the kernel? Then write a module for HTTP and the final result is that you get the feature you want, and the kernel gets a very powerful KLD socket-data filter mechanism. -Matt. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 0:20:34 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 20A0E37BD00; Fri, 16 Jun 2000 00:20:30 -0700 (PDT) (envelope-from jake@FreeBSD.org) Received: (from jake@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA34824; Fri, 16 Jun 2000 00:20:30 -0700 (PDT) (envelope-from jake@FreeBSD.org) Message-Id: <200006160720.AAA34824@freefall.freebsd.org> From: Jake Burkholder Date: Fri, 16 Jun 2000 00:20:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/iicbus iicbb.c iicsmb.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jake 2000/06/16 00:20:29 PDT Modified files: sys/dev/iicbus iicbb.c iicsmb.c Log: Allow these drivers to be detached. Reviewed by: mdodd Revision Changes Path 1.9 +2 -1 src/sys/dev/iicbus/iicbb.c 1.8 +2 -1 src/sys/dev/iicbus/iicsmb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 0:20:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0585537BD00; Fri, 16 Jun 2000 00:20:39 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Received: (from nakai@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA34889; Fri, 16 Jun 2000 00:20:38 -0700 (PDT) (envelope-from nakai@FreeBSD.org) Message-Id: <200006160720.AAA34889@freefall.freebsd.org> From: Yukihiro Nakai Date: Fri, 16 Jun 2000 00:20:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/sylpheed Makefile ports/mail/sylpheed/files md5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nakai 2000/06/16 00:20:38 PDT Modified files: mail/sylpheed Makefile mail/sylpheed/files md5 Log: Update to 0.3.17 Revision Changes Path 1.3 +2 -2 ports/mail/sylpheed/Makefile 1.3 +1 -1 ports/mail/sylpheed/files/md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 0:38:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id CD7EF37BD94; Fri, 16 Jun 2000 00:38:43 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA36821; Fri, 16 Jun 2000 00:38:43 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160738.AAA36821@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 00:38:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/py-mxTextTools Makefile ports/textproc/py-mxTextTools/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 00:38:43 PDT Modified files: textproc/py-mxTextTools Makefile textproc/py-mxTextTools/pkg PLIST Log: Make this actually work. Fix MASTER_SITES while I'm here. PR: 19259 Submitted by: Dominic Mitchell Revision Changes Path 1.6 +7 -3 ports/textproc/py-mxTextTools/Makefile 1.2 +5 -1 ports/textproc/py-mxTextTools/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 0:45:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 137C037BD28; Fri, 16 Jun 2000 00:45:31 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA37936; Fri, 16 Jun 2000 00:45:30 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006160745.AAA37936@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 00:45:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/xmms Makefile ports/audio/xmms/files md5 ports/audio/xmms/patches patch-ad patch-aa patch-ab patch-ac patch-ba ports/audio/xmms/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 00:45:30 PDT Modified files: audio/xmms Makefile audio/xmms/files md5 audio/xmms/patches patch-aa patch-ab patch-ac audio/xmms/pkg PLIST Added files: audio/xmms/patches patch-ad Removed files: audio/xmms/patches patch-ba Log: Upgrade of XMMS from 1.0.1 to 1.2.0. The port may also be compiled with WITH_GNOME (thanks to Ade Lovett), the PLIST is now sorted alphabetically. PR: 19293 Submitted by: Espen Skoglund Revision Changes Path 1.13 +27 -13 ports/audio/xmms/Makefile 1.4 +1 -1 ports/audio/xmms/files/md5 1.4 +6 -6 ports/audio/xmms/patches/patch-aa 1.5 +4 -61 ports/audio/xmms/patches/patch-ab 1.5 +15 -32 ports/audio/xmms/patches/patch-ac 1.7 +41 -15 ports/audio/xmms/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 0:54:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AAD937BDEA; Fri, 16 Jun 2000 00:54:15 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id AAA38999; Fri, 16 Jun 2000 00:54:15 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160754.AAA38999@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 00:54:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/neXtaw/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 00:54:14 PDT Modified files: x11-toolkits/neXtaw/pkg PLIST Log: Fix PLIST. Revision Changes Path 1.7 +1 -1 ports/x11-toolkits/neXtaw/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1: 1:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FA1437B9A9; Fri, 16 Jun 2000 01:01:18 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: (from brian@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA39660; Fri, 16 Jun 2000 01:01:18 -0700 (PDT) (envelope-from brian@FreeBSD.org) Message-Id: <200006160801.BAA39660@freefall.freebsd.org> From: Brian Somers Date: Fri, 16 Jun 2000 01:01:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG brian 2000/06/16 01:01:18 PDT Modified files: sys/conf Makefile.i386 Log: Fix ``make installkernel'' Revision Changes Path 1.193 +2 -2 src/sys/conf/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:20: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 106E337B9D2; Fri, 16 Jun 2000 01:19:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA44383; Fri, 16 Jun 2000 01:19:53 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006160819.BAA44383@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 01:19:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/Cgraph Makefile ports/graphics/EZWGL Makefile ports/graphics/Hermes Makefile ports/graphics/ImageMagick Makefile ports/devel/ORBacus Makefile ports/devel/ORBit Makefile ports/devel/SWIG Makefile ports/x11/XFree86 Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 01:19:52 PDT Modified files: graphics/Cgraph Makefile graphics/EZWGL Makefile graphics/Hermes Makefile graphics/ImageMagick Makefile devel/ORBacus Makefile devel/ORBit Makefile devel/SWIG Makefile x11/XFree86 Makefile x11/XFree86-4-clients Makefile x11/XFree86-4-libraries Makefile x11/XFree86-aoutlibs Makefile x11-toolkits/Xaw3d Makefile x11-servers/XttXF86srv-common Makefile print/a2ps-letter Makefile graphics/aalib Makefile net/adns Makefile misc/amanda24 Makefile devel/amulet Makefile textproc/aspell Makefile math/blas Makefile x11-toolkits/blt Makefile devel/bonobo Makefile archivers/bzip2 Makefile misc/cassowary Makefile devel/cdk Makefile www/cgic Makefile www/cgihtml Makefile graphics/pgplot Makefile palm/pilot-link Makefile graphics/plotutils Makefile math/plplot Makefile graphics/png Makefile devel/popt Makefile games/powerpak Makefile textproc/pspell Makefile devel/pth Makefile devel/pth-devel Makefile x11-toolkits/qt-i18n Makefile x11-toolkits/qt145 Makefile x11-toolkits/qt21 Makefile net/radiusclient Makefile converters/recode Makefile lang/rexx-imc Makefile devel/rpc2 Makefile net/rrdtool Makefile security/rsaref Makefile lang/ruby Makefile devel/rvm Makefile graphics/sane Makefile lang/schemetoc Makefile x11-wm/scwm Makefile devel/sdl Makefile devel/sdl-devel Makefile audio/sidplay Makefile math/simpack Makefile lang/siod Makefile devel/sip Makefile x11-toolkits/slingshot Makefile graphics/smpeg Makefile net/socks5 Makefile textproc/sp Makefile audio/sphinx Makefile devel/str Makefile devel/swarm Makefile lang/tcl80 Makefile lang/tcl81-thread Makefile lang/tcl82 Makefile lang/tcl83 Makefile lang/tclX80 Makefile security/tcp_wrapper Makefile graphics/tiff Makefile graphics/tifmerge Makefile x11-toolkits/tix Makefile x11-toolkits/tk80 Makefile x11-toolkits/tk82 Makefile x11-toolkits/tk83 Makefile x11-toolkits/tkstep80 Makefile net/tn5250 Makefile devel/tvision Makefile emulators/twin Makefile graphics/twinlib Makefile databases/typhoon Makefile net/ucd-snmp Makefile databases/unixODBC Makefile graphics/urt Makefile converters/uulib Makefile x11-toolkits/vdk Makefile x11-toolkits/vdkbuilder Makefile math/vtk Makefile x11-wm/windowmaker Makefile x11-wm/windowmaker-i18n Makefile emulators/wine Makefile audio/wsoundserver Makefile x11-toolkits/wxgtk Makefile x11-toolkits/xbae Makefile misc/xdelta Makefile x11-toolkits/xforms Makefile textproc/xls2xml Makefile graphics/xpm Makefile x11-toolkits/xview Makefile Log: Fix MASSIVE typo INSTALL_SHLIBS --> INSTALLS_SHLIBS, which occured because I just cun'n'pasted the name from Satoshi's commit message without checking it. Hall of shame entry: sobomax Revision Changes Path 1.7 +2 -2 ports/graphics/Cgraph/Makefile 1.24 +2 -2 ports/graphics/EZWGL/Makefile 1.12 +2 -2 ports/graphics/Hermes/Makefile 1.84 +2 -2 ports/graphics/ImageMagick/Makefile 1.31 +2 -2 ports/devel/ORBacus/Makefile 1.31 +2 -2 ports/devel/ORBit/Makefile 1.27 +2 -2 ports/devel/SWIG/Makefile 1.79 +2 -2 ports/x11/XFree86/Makefile 1.83 +2 -2 ports/x11/XFree86-4-clients/Makefile 1.83 +2 -2 ports/x11/XFree86-4-libraries/Makefile 1.8 +2 -2 ports/x11/XFree86-aoutlibs/Makefile 1.31 +2 -2 ports/x11-toolkits/Xaw3d/Makefile 1.27 +2 -2 ports/x11-servers/XttXF86srv-common/Makefile 1.35 +2 -2 ports/print/a2ps-letter/Makefile 1.14 +2 -2 ports/graphics/aalib/Makefile 1.5 +2 -2 ports/net/adns/Makefile 1.29 +2 -2 ports/misc/amanda24/Makefile 1.11 +2 -2 ports/devel/amulet/Makefile 1.19 +2 -2 ports/textproc/aspell/Makefile 1.27 +2 -2 ports/math/blas/Makefile 1.35 +2 -2 ports/x11-toolkits/blt/Makefile 1.15 +2 -2 ports/devel/bonobo/Makefile 1.29 +2 -2 ports/archivers/bzip2/Makefile 1.9 +2 -2 ports/misc/cassowary/Makefile 1.9 +2 -2 ports/devel/cdk/Makefile 1.5 +2 -2 ports/www/cgic/Makefile 1.7 +2 -2 ports/www/cgihtml/Makefile 1.14 +2 -2 ports/graphics/pgplot/Makefile 1.36 +2 -2 ports/palm/pilot-link/Makefile 1.14 +2 -2 ports/graphics/plotutils/Makefile 1.15 +2 -2 ports/math/plplot/Makefile 1.25 +2 -2 ports/graphics/png/Makefile 1.8 +2 -2 ports/devel/popt/Makefile 1.16 +2 -2 ports/games/powerpak/Makefile 1.4 +2 -2 ports/textproc/pspell/Makefile 1.49 +2 -2 ports/devel/pth/Makefile 1.27 +2 -2 ports/devel/pth-devel/Makefile 1.52 +2 -2 ports/x11-toolkits/qt-i18n/Makefile 1.45 +2 -2 ports/x11-toolkits/qt145/Makefile 1.51 +2 -2 ports/x11-toolkits/qt21/Makefile 1.10 +2 -2 ports/net/radiusclient/Makefile 1.11 +2 -2 ports/converters/recode/Makefile 1.14 +2 -2 ports/lang/rexx-imc/Makefile 1.3 +2 -2 ports/devel/rpc2/Makefile 1.12 +2 -2 ports/net/rrdtool/Makefile 1.20 +2 -2 ports/security/rsaref/Makefile 1.22 +2 -2 ports/lang/ruby/Makefile 1.3 +2 -2 ports/devel/rvm/Makefile 1.25 +2 -2 ports/graphics/sane/Makefile 1.18 +2 -2 ports/lang/schemetoc/Makefile 1.17 +2 -2 ports/x11-wm/scwm/Makefile 1.16 +2 -2 ports/devel/sdl/Makefile 1.19 +2 -2 ports/devel/sdl-devel/Makefile 1.10 +2 -2 ports/audio/sidplay/Makefile 1.13 +2 -2 ports/math/simpack/Makefile 1.8 +2 -2 ports/lang/siod/Makefile 1.4 +2 -2 ports/devel/sip/Makefile 1.13 +2 -2 ports/x11-toolkits/slingshot/Makefile 1.9 +2 -2 ports/graphics/smpeg/Makefile 1.30 +2 -2 ports/net/socks5/Makefile 1.17 +2 -2 ports/textproc/sp/Makefile 1.5 +2 -2 ports/audio/sphinx/Makefile 1.6 +2 -2 ports/devel/str/Makefile 1.10 +2 -2 ports/devel/swarm/Makefile 1.27 +2 -2 ports/lang/tcl80/Makefile 1.11 +2 -2 ports/lang/tcl81-thread/Makefile 1.30 +2 -2 ports/lang/tcl82/Makefile 1.34 +2 -2 ports/lang/tcl83/Makefile 1.34 +2 -2 ports/lang/tclX80/Makefile 1.27 +2 -2 ports/security/tcp_wrapper/Makefile 1.28 +2 -2 ports/graphics/tiff/Makefile 1.9 +2 -2 ports/graphics/tifmerge/Makefile 1.36 +2 -2 ports/x11-toolkits/tix/Makefile 1.25 +2 -2 ports/x11-toolkits/tk80/Makefile 1.36 +2 -2 ports/x11-toolkits/tk82/Makefile 1.40 +2 -2 ports/x11-toolkits/tk83/Makefile 1.28 +2 -2 ports/x11-toolkits/tkstep80/Makefile 1.7 +2 -2 ports/net/tn5250/Makefile 1.15 +2 -2 ports/devel/tvision/Makefile 1.6 +2 -2 ports/emulators/twin/Makefile 1.6 +2 -2 ports/graphics/twinlib/Makefile 1.12 +2 -2 ports/databases/typhoon/Makefile 1.46 +2 -2 ports/net/ucd-snmp/Makefile 1.5 +2 -2 ports/databases/unixODBC/Makefile 1.23 +2 -2 ports/graphics/urt/Makefile 1.24 +2 -2 ports/converters/uulib/Makefile 1.4 +2 -2 ports/x11-toolkits/vdk/Makefile 1.4 +2 -2 ports/x11-toolkits/vdkbuilder/Makefile 1.10 +2 -2 ports/math/vtk/Makefile 1.70 +2 -2 ports/x11-wm/windowmaker/Makefile 1.74 +2 -2 ports/x11-wm/windowmaker-i18n/Makefile 1.83 +2 -2 ports/emulators/wine/Makefile 1.15 +2 -2 ports/audio/wsoundserver/Makefile 1.13 +2 -2 ports/x11-toolkits/wxgtk/Makefile 1.14 +2 -2 ports/x11-toolkits/xbae/Makefile 1.23 +2 -2 ports/misc/xdelta/Makefile 1.31 +2 -2 ports/x11-toolkits/xforms/Makefile 1.5 +2 -2 ports/textproc/xls2xml/Makefile 1.29 +2 -2 ports/graphics/xpm/Makefile 1.17 +2 -2 ports/x11-toolkits/xview/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:45:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 83DEA37BDF4; Fri, 16 Jun 2000 01:45:16 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Received: (from dirk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA51069; Fri, 16 Jun 2000 01:45:16 -0700 (PDT) (envelope-from dirk@FreeBSD.org) Message-Id: <200006160845.BAA51069@freefall.freebsd.org> From: Dirk Froemberg Date: Fri, 16 Jun 2000 01:45:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/mkisofs/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dirk 2000/06/16 01:45:16 PDT Modified files: sysutils/mkisofs/pkg PLIST Log: Add bin/apple_driver. Found by: bento Revision Changes Path 1.4 +1 -0 ports/sysutils/mkisofs/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:47:45 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.bart.nl (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 5DBDF37BDD7; Fri, 16 Jun 2000 01:47:35 -0700 (PDT) (envelope-from asmodai@lucifer.bart.nl) Received: (from asmodai@localhost) by lucifer.bart.nl (8.9.3/8.9.3) id KAA71218; Fri, 16 Jun 2000 10:47:29 +0200 (CEST) (envelope-from asmodai) Date: Fri, 16 Jun 2000 10:47:29 +0200 From: Jeroen Ruigrok van der Werven To: Jun-ichiro itojun Hagino Cc: "Andrey A. Chernov" , Hajimu UMEMOTO , alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c Message-ID: <20000616104728.G69654@lucifer.bart.nl> References: <20000616051639.B67759@lucifer.bart.nl> <16396.961129883@lychee.itojun.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <16396.961129883@lychee.itojun.org>; from itojun@iijlab.net on Fri, Jun 16, 2000 at 01:31:23PM +0900 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000616 06:34], Jun-ichiro itojun Hagino (itojun@iijlab.net) wrote: > >>> (not sure if freebsd nslookup uses libc resolver at all). >>FreeBSD nslookup is the BIND nslookup. > > No, I'm asking if nslookup relies upon resolver in libc (dynamically > linked), or uses resolver library statically compiled separately. > as I understand nslookup is from BIND8 and libc resolver is > mostly BIND4 + local changes, so the former option may need some twist. Ah, my apologies, I misread what you wrote. I wonder if we need to update our resolver code with the latest from BIND anyways. [adds another item to his todo list] -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl In every colour there's the Light... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:48:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 36E2E37BA41; Fri, 16 Jun 2000 01:48:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA55152; Fri, 16 Jun 2000 01:48:26 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006160848.BAA55152@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 01:48:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/jbigkit Makefile ports/graphics/jbigkit/pkg PLIST ports/graphics/jpeg Makefile ports/graphics/jpeg/pkg PLIST ports/x11-toolkits/jx Makefile ports/x11-toolkits/jx/pkg PLIST ports/java/kaffe Makefile ports/java/kaffe/pkg PLIST ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 01:48:25 PDT Modified files: graphics/jbigkit Makefile graphics/jbigkit/pkg PLIST graphics/jpeg Makefile graphics/jpeg/pkg PLIST x11-toolkits/jx Makefile x11-toolkits/jx/pkg PLIST java/kaffe Makefile java/kaffe/pkg PLIST x11-toolkits/kde-qt-addon Makefile x11-toolkits/kde-qt-addon/pkg PLIST x11/kdebase2 Makefile x11/kdebase2/pkg PLIST x11/kdelibs11 Makefile x11/kdelibs11/pkg PLIST x11/kdelibs11-i18n Makefile x11/kdelibs11-i18n/pkg PLIST x11/kdelibs2 Makefile x11/kdelibs2/pkg PLIST net/kdenetwork11-i18n Makefile net/kdenetwork11-i18n/pkg PLIST net/kdenetwork2 Makefile net/kdenetwork2/pkg PLIST converters/kdesupport11 Makefile converters/kdesupport11/pkg PLIST converters/kdesupport11-i18n Makefile converters/kdesupport11-i18n/pkg PLIST converters/kdesupport2 Makefile converters/kdesupport2/pkg PLIST misc/kdeutils2 Makefile misc/kdeutils2/pkg PLIST editors/koffice Makefile editors/koffice/pkg PLIST security/krb5 Makefile security/krb5/pkg PLIST math/lapack Makefile math/lapack/pkg PLIST x11-toolkits/lesstif Makefile x11-toolkits/lesstif/pkg PLIST graphics/lfview Makefile graphics/lfview/pkg PLIST devel/libPropList Makefile devel/libPropList/pkg PLIST devel/libU77 Makefile devel/libU77/pkg PLIST audio/libaudiofile Makefile audio/libaudiofile/pkg PLIST devel/libcache Makefile devel/libcache/pkg PLIST audio/libcdaudio Makefile audio/libcdaudio/pkg PLIST graphics/libdjvu++ Makefile graphics/libdjvu++/pkg PLIST devel/libdlmalloc Makefile devel/libdlmalloc/pkg PLIST x11/libdnd Makefile x11/libdnd/pkg PLIST x11-wm/libdockapp Makefile x11-wm/libdockapp/pkg PLIST net/libetherx Makefile net/libetherx/pkg PLIST devel/libffi Makefile devel/libffi/pkg PLIST devel/libgetline Makefile devel/libgetline/pkg PLIST graphics/libggi Makefile graphics/libggi/pkg PLIST www/libghttp Makefile www/libghttp/pkg PLIST devel/libgii Makefile devel/libgii/pkg PLIST devel/libglade Makefile devel/libglade/pkg PLIST devel/libgnugetopt Makefile devel/libgnugetopt/pkg PLIST devel/libgtop Makefile devel/libgtop/pkg PLIST net/libicq Makefile net/libicq/pkg PLIST graphics/libimg Makefile graphics/libimg/pkg PLIST net/libjabber Makefile net/libjabber/pkg PLIST x11-toolkits/libjsearch Makefile x11-toolkits/libjsearch/pkg PLIST x11-toolkits/libjtoolbar Makefile x11-toolkits/libjtoolbar/pkg PLIST x11-toolkits/libjtree Makefile x11-toolkits/libjtree/pkg PLIST devel/libmalloc Makefile devel/libmalloc/pkg PLIST security/libmcrypt Makefile security/libmcrypt/pkg PLIST audio/libmikmod Makefile audio/libmikmod/pkg PLIST devel/libol Makefile devel/libol/pkg PLIST security/libparanoia Makefile security/libparanoia/pkg PLIST math/libranlib Makefile math/libranlib/pkg PLIST security/librc4 Makefile security/librc4/pkg PLIST lang/librep Makefile lang/librep/pkg PLIST security/librsaintl Makefile security/librsaintl/pkg PLIST games/libshhcards Makefile games/libshhcards/pkg PLIST devel/libshhmsg Makefile devel/libshhmsg/pkg PLIST devel/libshhopt Makefile devel/libshhopt/pkg PLIST audio/libshout Makefile audio/libshout/pkg PLIST devel/libsigc++ Makefile devel/libsigc++/pkg PLIST devel/libslang Makefile devel/libslang/pkg PLIST net/libsmi Makefile net/libsmi/pkg PLIST net/libsocket++ Makefile net/libsocket++/pkg PLIST graphics/libungif Makefile graphics/libungif/pkg PLIST converters/libutf-8 Makefile converters/libutf-8/pkg PLIST graphics/libwmf Makefile graphics/libwmf/pkg PLIST audio/libworkman Makefile audio/libworkman/pkg PLIST devel/libxalloc Makefile devel/libxalloc/pkg PLIST textproc/libxml Makefile textproc/libxml/pkg PLIST textproc/libxode Makefile textproc/libxode/pkg PLIST www/libxpg4-ns Makefile www/libxpg4-ns/pkg PLIST math/linpack Makefile math/linpack/pkg PLIST devel/lwp Makefile devel/lwp/pkg PLIST archivers/lzo Makefile archivers/lzo/pkg PLIST databases/metakit Makefile databases/metakit/pkg PLIST mail/mh Makefile mail/mh/pkg PLIST security/mhash Makefile security/mhash/pkg PLIST devel/mico Makefile devel/mico/pkg PLIST devel/mm Makefile devel/mm/pkg PLIST graphics/mpeg-lib Makefile graphics/mpeg-lib/pkg PLIST audio/nas Makefile audio/nas/pkg PLIST ftp/ncftp3 Makefile ftp/ncftp3/pkg PLIST x11-toolkits/neXtaw Makefile x11-toolkits/neXtaw/pkg PLIST math/netcdf Makefile math/netcdf/pkg PLIST graphics/netpbm Makefile graphics/netpbm/pkg PLIST devel/newt Makefile devel/newt/pkg PLIST devel/oaf Makefile devel/oaf/pkg PLIST devel/omniORB Makefile devel/omniORB/pkg PLIST security/openssl Makefile security/openssl/pkg PLIST lang/otcl Makefile lang/otcl/pkg PLIST math/pari Makefile math/pari/pkg PLIST PLIST.emacs print/pdflib Makefile print/pdflib/pkg PLIST Log: Fourth round of INSTALLS_SHLIBS conversion. Revision Changes Path 1.14 +4 -2 ports/graphics/jbigkit/Makefile 1.8 +0 -2 ports/graphics/jbigkit/pkg/PLIST 1.22 +2 -2 ports/graphics/jpeg/Makefile 1.20 +0 -2 ports/graphics/jpeg/pkg/PLIST 1.3 +2 -1 ports/x11-toolkits/jx/Makefile 1.2 +0 -2 ports/x11-toolkits/jx/pkg/PLIST 1.49 +3 -1 ports/java/kaffe/Makefile 1.30 +0 -2 ports/java/kaffe/pkg/PLIST 1.2 +2 -1 ports/x11-toolkits/kde-qt-addon/Makefile 1.3 +0 -2 ports/x11-toolkits/kde-qt-addon/pkg/PLIST 1.49 +2 -1 ports/x11/kdebase2/Makefile 1.21 +0 -2 ports/x11/kdebase2/pkg/PLIST 1.45 +2 -1 ports/x11/kdelibs11/Makefile 1.24 +0 -2 ports/x11/kdelibs11/pkg/PLIST 1.51 +2 -2 ports/x11/kdelibs11-i18n/Makefile 1.20 +0 -2 ports/x11/kdelibs11-i18n/pkg/PLIST 1.50 +2 -1 ports/x11/kdelibs2/Makefile 1.25 +0 -2 ports/x11/kdelibs2/pkg/PLIST 1.53 +2 -2 ports/net/kdenetwork11-i18n/Makefile 1.14 +0 -2 ports/net/kdenetwork11-i18n/pkg/PLIST 1.44 +2 -1 ports/net/kdenetwork2/Makefile 1.14 +0 -2 ports/net/kdenetwork2/pkg/PLIST 1.30 +2 -5 ports/converters/kdesupport11/Makefile 1.12 +0 -2 ports/converters/kdesupport11/pkg/PLIST 1.36 +2 -2 ports/converters/kdesupport11-i18n/Makefile 1.13 +0 -2 ports/converters/kdesupport11-i18n/pkg/PLIST 1.32 +2 -1 ports/converters/kdesupport2/Makefile 1.15 +0 -2 ports/converters/kdesupport2/pkg/PLIST 1.40 +2 -1 ports/misc/kdeutils2/Makefile 1.13 +0 -2 ports/misc/kdeutils2/pkg/PLIST 1.2 +2 -1 ports/editors/koffice/Makefile 1.2 +0 -2 ports/editors/koffice/pkg/PLIST 1.18 +2 -2 ports/security/krb5/Makefile 1.6 +0 -3 ports/security/krb5/pkg/PLIST 1.19 +3 -2 ports/math/lapack/Makefile 1.8 +0 -2 ports/math/lapack/pkg/PLIST 1.43 +2 -2 ports/x11-toolkits/lesstif/Makefile 1.26 +0 -2 ports/x11-toolkits/lesstif/pkg/PLIST 1.5 +2 -4 ports/graphics/lfview/Makefile 1.2 +0 -2 ports/graphics/lfview/pkg/PLIST 1.14 +2 -1 ports/devel/libPropList/Makefile 1.5 +0 -2 ports/devel/libPropList/pkg/PLIST 1.7 +3 -2 ports/devel/libU77/Makefile 1.4 +0 -2 ports/devel/libU77/pkg/PLIST 1.13 +2 -1 ports/audio/libaudiofile/Makefile 1.4 +0 -2 ports/audio/libaudiofile/pkg/PLIST 1.4 +2 -1 ports/devel/libcache/Makefile 1.2 +0 -2 ports/devel/libcache/pkg/PLIST 1.10 +2 -1 ports/audio/libcdaudio/Makefile 1.5 +0 -2 ports/audio/libcdaudio/pkg/PLIST 1.3 +2 -2 ports/graphics/libdjvu++/Makefile 1.2 +0 -2 ports/graphics/libdjvu++/pkg/PLIST 1.15 +2 -4 ports/devel/libdlmalloc/Makefile 1.8 +0 -2 ports/devel/libdlmalloc/pkg/PLIST 1.9 +2 -2 ports/x11/libdnd/Makefile 1.5 +0 -2 ports/x11/libdnd/pkg/PLIST 1.10 +2 -1 ports/x11-wm/libdockapp/Makefile 1.4 +0 -2 ports/x11-wm/libdockapp/pkg/PLIST 1.3 +2 -1 ports/net/libetherx/Makefile 1.3 +0 -2 ports/net/libetherx/pkg/PLIST 1.13 +2 -4 ports/devel/libffi/Makefile 1.5 +0 -2 ports/devel/libffi/pkg/PLIST 1.7 +3 -1 ports/devel/libgetline/Makefile 1.4 +0 -2 ports/devel/libgetline/pkg/PLIST 1.3 +2 -4 ports/graphics/libggi/Makefile 1.2 +0 -2 ports/graphics/libggi/pkg/PLIST 1.17 +2 -1 ports/www/libghttp/Makefile 1.5 +0 -2 ports/www/libghttp/pkg/PLIST 1.3 +2 -2 ports/devel/libgii/Makefile 1.2 +0 -2 ports/devel/libgii/pkg/PLIST 1.14 +2 -1 ports/devel/libglade/Makefile 1.4 +0 -2 ports/devel/libglade/pkg/PLIST 1.12 +3 -2 ports/devel/libgnugetopt/Makefile 1.3 +0 -2 ports/devel/libgnugetopt/pkg/PLIST 1.31 +3 -1 ports/devel/libgtop/Makefile 1.9 +0 -2 ports/devel/libgtop/pkg/PLIST 1.11 +2 -1 ports/net/libicq/Makefile 1.6 +0 -2 ports/net/libicq/pkg/PLIST 1.7 +2 -1 ports/graphics/libimg/Makefile 1.4 +0 -2 ports/graphics/libimg/pkg/PLIST 1.3 +2 -1 ports/net/libjabber/Makefile 1.3 +0 -2 ports/net/libjabber/pkg/PLIST 1.2 +2 -1 ports/x11-toolkits/libjsearch/Makefile 1.2 +0 -2 ports/x11-toolkits/libjsearch/pkg/PLIST 1.2 +2 -1 ports/x11-toolkits/libjtoolbar/Makefile 1.2 +0 -2 ports/x11-toolkits/libjtoolbar/pkg/PLIST 1.2 +2 -1 ports/x11-toolkits/libjtree/Makefile 1.2 +0 -2 ports/x11-toolkits/libjtree/pkg/PLIST 1.23 +3 -2 ports/devel/libmalloc/Makefile 1.10 +0 -2 ports/devel/libmalloc/pkg/PLIST 1.12 +2 -4 ports/security/libmcrypt/Makefile 1.4 +0 -2 ports/security/libmcrypt/pkg/PLIST 1.13 +2 -1 ports/audio/libmikmod/Makefile 1.6 +0 -2 ports/audio/libmikmod/pkg/PLIST 1.2 +2 -1 ports/devel/libol/Makefile 1.2 +0 -2 ports/devel/libol/pkg/PLIST 1.6 +3 -1 ports/security/libparanoia/Makefile 1.3 +0 -2 ports/security/libparanoia/pkg/PLIST 1.10 +2 -2 ports/math/libranlib/Makefile 1.6 +0 -2 ports/math/libranlib/pkg/PLIST 1.3 +3 -3 ports/security/librc4/Makefile 1.2 +0 -2 ports/security/librc4/pkg/PLIST 1.11 +2 -1 ports/lang/librep/Makefile 1.9 +0 -2 ports/lang/librep/pkg/PLIST 1.9 +3 -1 ports/security/librsaintl/Makefile 1.2 +0 -2 ports/security/librsaintl/pkg/PLIST 1.12 +2 -2 ports/games/libshhcards/Makefile 1.4 +0 -2 ports/games/libshhcards/pkg/PLIST 1.6 +2 -2 ports/devel/libshhmsg/Makefile 1.2 +0 -2 ports/devel/libshhmsg/pkg/PLIST 1.8 +2 -2 ports/devel/libshhopt/Makefile 1.2 +0 -2 ports/devel/libshhopt/pkg/PLIST 1.2 +2 -1 ports/audio/libshout/Makefile 1.2 +0 -2 ports/audio/libshout/pkg/PLIST 1.5 +2 -2 ports/devel/libsigc++/Makefile 1.4 +0 -2 ports/devel/libsigc++/pkg/PLIST 1.20 +2 -4 ports/devel/libslang/Makefile 1.13 +0 -2 ports/devel/libslang/pkg/PLIST 1.3 +2 -1 ports/net/libsmi/Makefile 1.2 +0 -2 ports/net/libsmi/pkg/PLIST 1.11 +2 -2 ports/net/libsocket++/Makefile 1.8 +0 -2 ports/net/libsocket++/pkg/PLIST 1.13 +2 -1 ports/graphics/libungif/Makefile 1.10 +0 -2 ports/graphics/libungif/pkg/PLIST 1.6 +3 -4 ports/converters/libutf-8/Makefile 1.2 +0 -2 ports/converters/libutf-8/pkg/PLIST 1.12 +2 -4 ports/graphics/libwmf/Makefile 1.8 +0 -2 ports/graphics/libwmf/pkg/PLIST 1.7 +2 -4 ports/audio/libworkman/Makefile 1.2 +0 -2 ports/audio/libworkman/pkg/PLIST 1.6 +2 -2 ports/devel/libxalloc/Makefile 1.2 +0 -2 ports/devel/libxalloc/pkg/PLIST 1.23 +2 -1 ports/textproc/libxml/Makefile 1.10 +0 -2 ports/textproc/libxml/pkg/PLIST 1.3 +2 -1 ports/textproc/libxode/Makefile 1.3 +0 -2 ports/textproc/libxode/pkg/PLIST 1.8 +3 -4 ports/www/libxpg4-ns/Makefile 1.2 +0 -2 ports/www/libxpg4-ns/pkg/PLIST 1.26 +2 -4 ports/math/linpack/Makefile 1.7 +0 -2 ports/math/linpack/pkg/PLIST 1.2 +2 -1 ports/devel/lwp/Makefile 1.2 +0 -2 ports/devel/lwp/pkg/PLIST 1.13 +2 -1 ports/archivers/lzo/Makefile 1.8 +0 -2 ports/archivers/lzo/pkg/PLIST 1.4 +2 -1 ports/databases/metakit/Makefile 1.2 +0 -2 ports/databases/metakit/pkg/PLIST 1.21 +3 -4 ports/mail/mh/Makefile 1.13 +0 -2 ports/mail/mh/pkg/PLIST 1.8 +2 -4 ports/security/mhash/Makefile 1.3 +0 -2 ports/security/mhash/pkg/PLIST 1.43 +2 -2 ports/devel/mico/Makefile 1.16 +0 -2 ports/devel/mico/pkg/PLIST 1.21 +2 -4 ports/devel/mm/Makefile 1.3 +0 -2 ports/devel/mm/pkg/PLIST 1.17 +2 -4 ports/graphics/mpeg-lib/Makefile 1.9 +0 -2 ports/graphics/mpeg-lib/pkg/PLIST 1.16 +2 -2 ports/audio/nas/Makefile 1.7 +0 -2 ports/audio/nas/pkg/PLIST 1.77 +2 -2 ports/ftp/ncftp3/Makefile 1.11 +0 -2 ports/ftp/ncftp3/pkg/PLIST 1.20 +2 -2 ports/x11-toolkits/neXtaw/Makefile 1.8 +0 -2 ports/x11-toolkits/neXtaw/pkg/PLIST 1.6 +2 -2 ports/math/netcdf/Makefile 1.3 +0 -2 ports/math/netcdf/pkg/PLIST 1.33 +2 -4 ports/graphics/netpbm/Makefile 1.17 +0 -2 ports/graphics/netpbm/pkg/PLIST 1.7 +2 -1 ports/devel/newt/Makefile 1.2 +0 -2 ports/devel/newt/pkg/PLIST 1.3 +2 -1 ports/devel/oaf/Makefile 1.2 +0 -2 ports/devel/oaf/pkg/PLIST 1.12 +4 -4 ports/devel/omniORB/Makefile 1.7 +0 -2 ports/devel/omniORB/pkg/PLIST 1.44 +1 -2 ports/security/openssl/Makefile 1.19 +0 -2 ports/security/openssl/pkg/PLIST 1.10 +2 -2 ports/lang/otcl/Makefile 1.4 +0 -2 ports/lang/otcl/pkg/PLIST 1.15 +3 -5 ports/math/pari/Makefile 1.12 +0 -2 ports/math/pari/pkg/PLIST 1.2 +0 -2 ports/math/pari/pkg/PLIST.emacs 1.10 +2 -2 ports/print/pdflib/Makefile 1.3 +0 -2 ports/print/pdflib/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:48:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9977937BDF7; Fri, 16 Jun 2000 01:48:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA55253; Fri, 16 Jun 2000 01:48:52 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200006160848.BAA55253@freefall.freebsd.org> From: Poul-Henning Kamp Date: Fri, 16 Jun 2000 01:48:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/softupdates ffs_softdep.c src/sys/kern vfs_bio.c vfs_cluster.c vfs_subr.c vfs_syscalls.c src/sys/miscfs/devfs devfs_vnops.c src/sys/miscfs/specfs spec_vnops.c src/sys/sys buf.h mount.h src/sys/ufs/ffs ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/06/16 01:48:52 PDT Modified files: sys/contrib/softupdates ffs_softdep.c sys/kern vfs_bio.c vfs_cluster.c vfs_subr.c vfs_syscalls.c sys/miscfs/devfs devfs_vnops.c sys/miscfs/specfs spec_vnops.c sys/sys buf.h mount.h sys/ufs/ffs ffs_softdep_stub.c ffs_vnops.c Log: Virtualizes & untangles the bioops operations vector. Ref: Message-ID: <18317.961014572@critter.freebsd.dk> To: current@ Revision Changes Path 1.65 +1 -3 src/sys/contrib/softupdates/ffs_softdep.c 1.259 +14 -15 src/sys/kern/vfs_bio.c 1.99 +3 -4 src/sys/kern/vfs_cluster.c 1.258 +2 -3 src/sys/kern/vfs_subr.c 1.154 +2 -5 src/sys/kern/vfs_syscalls.c 1.97 +3 -4 src/sys/miscfs/devfs/devfs_vnops.c 1.139 +3 -4 src/sys/miscfs/specfs/spec_vnops.c 1.104 +38 -3 src/sys/sys/buf.h 1.92 +2 -1 src/sys/sys/mount.h 1.10 +17 -1 src/sys/ufs/ffs/ffs_softdep_stub.c 1.67 +6 -3 src/sys/ufs/ffs/ffs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:51:18 2000 Delivered-To: cvs-all@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 4995837BA41; Fri, 16 Jun 2000 01:50:56 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: from vic.sabbo.net (vic.sabbo.net [193.193.218.106]) by blizzard.sabbo.net (8.9.1/8.9.3) with ESMTP id LAA08183; Fri, 16 Jun 2000 11:49:34 +0300 (EEST) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.9.3/8.9.3) with ESMTP id LAA80184; Fri, 16 Jun 2000 11:49:18 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3949EA0B.7EEBC0DE@FreeBSD.org> Date: Fri, 16 Jun 2000 11:49:15 +0300 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.73 [en] (WinNT; I) X-Accept-Language: uk,ru,en MIME-Version: 1.0 To: Thomas Gellekum Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11-toolkits/neXtaw/pkg PLIST References: <200006160754.AAA38999@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Thomas Gellekum wrote: > tg 2000/06/16 00:54:14 PDT > > Modified files: > x11-toolkits/neXtaw/pkg PLIST > Log: > Fix PLIST. The problem is that fixing it for your configuration, where it has .6 version (XFree3.3), you automatically broke it for another (XFree4.0, .7 version). I'm not very proof in Imake, so I'll be glad is someone will provide hint on how to force it to make some pre-defined shared library version number. Of course we could override its install target with what we think suits better, but it is not an ideal solution. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 1:52:13 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.bart.nl (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id CBCE837B975; Fri, 16 Jun 2000 01:52:07 -0700 (PDT) (envelope-from asmodai@lucifer.bart.nl) Received: (from asmodai@localhost) by lucifer.bart.nl (8.9.3/8.9.3) id KAA71296; Fri, 16 Jun 2000 10:51:43 +0200 (CEST) (envelope-from asmodai) Date: Fri, 16 Jun 2000 10:51:43 +0200 From: Jeroen Ruigrok van der Werven To: "Daniel O'Connor" Cc: "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Nate Williams , Alfred Perlstein , Benno Rice Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Message-ID: <20000616105143.I69654@lucifer.bart.nl> References: <3949AEB3.1C25A692@newsguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from doconnor@gsoft.com.au on Fri, Jun 16, 2000 at 02:06:34PM +0930 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000616 06:38], Daniel O'Connor (doconnor@gsoft.com.au) wrote: >On 16-Jun-00 Daniel C. Sobral wrote: >> Proof of concepts need not be committed two days after being suggested >> on -hackers. > >Well, at least people are paying attention to it now. And already raised the hairs on the backs of some people. If you need attention to try and talk to the people whose opinions you value. They might get duplicates, but at least you addressed them personally and have notified them of what you're up to. -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl Rome was not built in a day... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2: 6:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A82537B975; Fri, 16 Jun 2000 02:06:49 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA58863; Fri, 16 Jun 2000 02:06:50 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160906.CAA58863@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:06:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-mxStack Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:06:50 PDT Modified files: devel/py-mxStack Makefile Log: Update MASTER_SITES. Revision Changes Path 1.5 +2 -2 ports/devel/py-mxStack/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:11: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 648E037B975; Fri, 16 Jun 2000 02:11:06 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA59320; Fri, 16 Jun 2000 02:11:06 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160911.CAA59320@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:11:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-mxTools Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:11:03 PDT Modified files: devel/py-mxTools Makefile Log: Update MASTER_SITES. Revision Changes Path 1.5 +2 -2 ports/devel/py-mxTools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:11:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 710A237BE28; Fri, 16 Jun 2000 02:11:28 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA59375; Fri, 16 Jun 2000 02:11:29 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160911.CAA59375@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:11:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-mxDateTime Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:11:28 PDT Modified files: devel/py-mxDateTime Makefile Log: Update MASTER_SITES. Revision Changes Path 1.5 +2 -2 ports/devel/py-mxDateTime/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:21:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 836ED37B759; Fri, 16 Jun 2000 02:21:11 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA60530; Fri, 16 Jun 2000 02:21:11 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160921.CAA60530@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:21:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-mxTools Makefile ports/devel/py-mxTools/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:21:11 PDT Modified files: devel/py-mxTools Makefile devel/py-mxTools/pkg PLIST Log: Make this actually work. Revision Changes Path 1.6 +6 -2 ports/devel/py-mxTools/Makefile 1.2 +6 -2 ports/devel/py-mxTools/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:23:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9741E37B515; Fri, 16 Jun 2000 02:23:35 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA60819; Fri, 16 Jun 2000 02:23:35 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200006160923.CAA60819@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Fri, 16 Jun 2000 02:23:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sysctl.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/06/16 02:23:35 PDT Modified files: (Branch: RELENG_3) sys/kern kern_sysctl.c Log: MFC r1.86: small extra checks on arg values. Revision Changes Path 1.83.2.2 +10 -12 src/sys/kern/kern_sysctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:27:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 614E937B515; Fri, 16 Jun 2000 02:27:42 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA61397; Fri, 16 Jun 2000 02:27:42 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160927.CAA61397@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:27:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-mxDateTime Makefile ports/devel/py-mxDateTime/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:27:41 PDT Modified files: devel/py-mxDateTime Makefile devel/py-mxDateTime/pkg PLIST Log: Make this actually work. Revision Changes Path 1.6 +6 -2 ports/devel/py-mxDateTime/Makefile 1.2 +5 -1 ports/devel/py-mxDateTime/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:33:25 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED4B537B515; Fri, 16 Jun 2000 02:33:22 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA62123; Fri, 16 Jun 2000 02:33:22 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160933.CAA62123@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:33:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-mxStack Makefile ports/devel/py-mxStack/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:33:22 PDT Modified files: devel/py-mxStack Makefile devel/py-mxStack/pkg PLIST Log: Update for symmetry with the other py-mx* ports. Revision Changes Path 1.6 +6 -2 ports/devel/py-mxStack/Makefile 1.2 +5 -1 ports/devel/py-mxStack/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:42: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 31B8E37B759; Fri, 16 Jun 2000 02:41:59 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA62851; Fri, 16 Jun 2000 02:41:58 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006160941.CAA62851@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Jun 2000 02:41:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/natd natd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/16 02:41:58 PDT Modified files: sbin/natd natd.c Log: Remove unused parameter. Revision Changes Path 1.30 +7 -7 src/sbin/natd/natd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:50: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id BDA5E37BE23; Fri, 16 Jun 2000 02:50:02 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA63613; Fri, 16 Jun 2000 02:49:57 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006160949.CAA63613@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Jun 2000 02:49:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/natd natd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/16 02:49:57 PDT Modified files: (Branch: RELENG_4) sbin/natd natd.c Log: MFC: - rev 1.27: fix buffer overflow with the command line arguments. - rev 1.30: remove unused parameter. Revision Changes Path 1.25.2.1 +16 -12 src/sbin/natd/natd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:50:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EADD37B52A; Fri, 16 Jun 2000 02:50:48 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA63725; Fri, 16 Jun 2000 02:50:47 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006160950.CAA63725@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Jun 2000 02:50:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/natd natd.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/16 02:50:46 PDT Modified files: (Branch: RELENG_3) sbin/natd natd.c Log: MFC: - rev 1.27: fix buffer overflow with the command line arguments. - rev 1.30: remove unused parameter. Revision Changes Path 1.11.2.10 +16 -12 src/sbin/natd/natd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:57:30 2000 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (peter1.corp.yahoo.com [208.48.107.4]) by hub.freebsd.org (Postfix) with ESMTP id 6781837BE1F; Fri, 16 Jun 2000 02:57:24 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 6C4771CD7; Fri, 16 Jun 2000 02:57:23 -0700 (PDT) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: Marc Slemko Cc: "Daniel O'Connor" , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: Message from Marc Slemko of "Thu, 15 Jun 2000 22:10:24 PDT." Date: Fri, 16 Jun 2000 02:57:23 -0700 From: Peter Wemm Message-Id: <20000616095723.6C4771CD7@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Marc Slemko wrote: > On Fri, 16 Jun 2000, Daniel O'Connor wrote: > > > > The correct here is find _why_ there is a performance impact if this > > > delay accept feature is not used, and fix _that_ instead. > > > > Well, my naivity abounds, but I would have thought it was because you do an > > accept() which returns and then immediatly you go back to waiting on select (). > > Why should that be expensive? Context switches are *extremely* expensive, relative to doing useful work. > If thundering herd on accept() is a problem, add a wake_one. Which > was done. The problem is this: 1: Connection arrives 2: accept() completes 3: context switch to run process to accept it. 4: process runs and immediately calls read() 5: in many cases we did not get a complete header. If not, context switch and goto step 4. ie: several context switches to get the header. 6: process request 7: write data 8: close 9: idle, or context switch to something else The problem is the 4/5 loop. If the browser writes the request piecemeal (too many do), you are going to have 5 or 10 or more context switches until you get the header. Even if the browser sends the data in one packet and one push, you still have a context switch after accept returns and before read() can get it. With setsockopt(s, ... HTTPACCEPT ..., this happens: 1: connection arrives 2: data is gathered in kernel context 3: when a full GET request is complete, accept() completes 4: context switch to run process ot accept it (same as 3 above) 5: read() gets the full request in one gulp 6: process request (same as 6 above) 7: write data 8: close 9: idle, or context switch to something else Note all the context switches in step 4 and 5 are gone. 99.9% of the time you can do everything on the single context if you hold off until either you have a complete GET request or have something that you cannot safely handle (in that case you punt to the process and let it deal with it). > If there is some similar problem elsewhere, fix it. The problem is not the implemetation, the problem is the HTTP protocol. We cannot "fix" all the Win9x and netscape/IE browsers to use some HTTP replacement or enhancement. This is a cheap tweak that has a *MASSIVE* performance win in the most performance critical of all the internet protocols. To the bulk of the population that is internet aware, the internet == HTTP/HTML. If there is anywhere that we can get a cheap, easy win that has very large payback, this is it. As I understand it, on the yahoo.com servers we can get an order of magnitude or so extra performance out of a box as a result of this. It most certainly has real-world applications. (FYI, we have FTP and real-audio support code in the netinet stack) Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 2:58:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6188837BE1F; Fri, 16 Jun 2000 02:58:51 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA64662; Fri, 16 Jun 2000 02:58:51 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006160958.CAA64662@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 02:58:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/py-imaging Makefile ports/graphics/py-imaging/files Setup md5 ports/graphics/py-imaging/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 02:58:51 PDT Modified files: graphics/py-imaging Makefile graphics/py-imaging/files Setup md5 graphics/py-imaging/pkg PLIST Log: Upgrade to 1.1. Revision Changes Path 1.10 +2 -2 ports/graphics/py-imaging/Makefile 1.4 +2 -1 ports/graphics/py-imaging/files/Setup 1.4 +1 -2 ports/graphics/py-imaging/files/md5 1.4 +1 -0 ports/graphics/py-imaging/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 3:39:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FA8D37B98B; Fri, 16 Jun 2000 03:38:52 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA76489; Fri, 16 Jun 2000 03:38:51 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006161038.DAA76489@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 03:38:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/cim Makefile ports/lang/cim/pkg PLIST ports/textproc/cole Makefile ports/textproc/cole/pkg PLIST ports/editors/cooledit Makefile ports/editors/cooledit/pkg PLIST ports/security/cyrus-sasl Makefile ports/security/cyrus-sasl/pkg ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 03:38:51 PDT Modified files: lang/cim Makefile lang/cim/pkg PLIST textproc/cole Makefile textproc/cole/pkg PLIST editors/cooledit Makefile editors/cooledit/pkg PLIST security/cyrus-sasl Makefile security/cyrus-sasl/pkg PLIST databases/db Makefile databases/db/pkg PLIST math/dcdflib Makefile math/dcdflib/pkg PLIST x11/dgs Makefile x11/dgs/pkg PLIST graphics/diacanvas Makefile graphics/diacanvas/pkg PLIST math/eispack Makefile math/eispack/pkg PLIST x11-wm/epplets Makefile x11-wm/epplets/pkg PLIST audio/esound Makefile audio/esound/pkg PLIST x11/eterm Makefile x11/eterm/pkg PLIST lang/expect Makefile lang/expect/pkg PLIST mail/faces Makefile mail/faces/pkg PLIST devel/fastcrc Makefile devel/fastcrc/pkg PLIST math/fftpack Makefile math/fftpack/pkg PLIST math/fftw Makefile math/fftw/pkg PLIST x11-toolkits/fltk Makefile x11-toolkits/fltk/pkg PLIST devel/flux Makefile devel/flux/pkg PLIST graphics/fnlib Makefile graphics/fnlib/pkg PLIST x11-toolkits/fox Makefile x11-toolkits/fox/pkg PLIST devel/freelibiberty Makefile devel/freelibiberty/pkg PLIST databases/freetds Makefile databases/freetds/pkg PLIST print/freetype Makefile print/freetype/pkg PLIST graphics/gd Makefile graphics/gd/pkg PLIST databases/gdbm Makefile databases/gdbm/pkg PLIST graphics/gdk-pixbuf Makefile graphics/gdk-pixbuf/pkg PLIST cad/geda Makefile cad/geda/pkg PLIST devel/gettext Makefile devel/gettext/pkg PLIST graphics/gimp1 Makefile graphics/gimp1/pkg PLIST PLIST.perl devel/glib12 Makefile devel/glib12/pkg PLIST net/gnet Makefile net/gnet/pkg PLIST sysutils/gnomecontrolcenter Makefile sysutils/gnomecontrolcenter/pkg PLIST x11/gnomecore Makefile x11/gnomecore/pkg PLIST games/gnomegames Makefile games/gnomegames/pkg PLIST x11/gnomelibs Makefile x11/gnomelibs/pkg PLIST palm/gnomepilot Makefile palm/gnomepilot/pkg PLIST print/gnomeprint Makefile print/gnomeprint/pkg PLIST math/gnumeric Makefile math/gnumeric/pkg PLIST graphics/gphoto Makefile graphics/gphoto/pkg PLIST math/gsl Makefile math/gsl/pkg PLIST audio/gsm Makefile audio/gsm/pkg PLIST x11-toolkits/gtk-- Makefile x11-toolkits/gtk--/pkg PLIST x11-toolkits/gtk10 Makefile x11-toolkits/gtk10/pkg PLIST x11-toolkits/gtk12 Makefile x11-toolkits/gtk12/pkg PLIST graphics/gtkdps Makefile graphics/gtkdps/pkg PLIST x11-toolkits/gtkglarea Makefile x11-toolkits/gtkglarea/pkg PLIST www/gtkhtml Makefile www/gtkhtml/pkg PLIST misc/gtl Makefile misc/gtl/pkg PLIST lang/guile Makefile lang/guile/pkg PLIST x11-toolkits/guile-gnome Makefile x11-toolkits/guile-gnome/pkg PLIST x11-toolkits/guile-gtk Makefile x11-toolkits/guile-gtk/pkg PLIST security/heimdal Makefile security/heimdal/pkg PLIST net/hesiod Makefile net/hesiod/pkg PLIST converters/iconv Makefile converters/iconv/pkg PLIST net/icqlib Makefile net/icqlib/pkg PLIST mail/imap-uw Makefile mail/imap-uw/pkg PLIST graphics/imlib Makefile graphics/imlib/pkg PLIST lang/itcl Makefile lang/itcl/pkg PLIST x11-toolkits/itk Makefile x11-toolkits/itk/pkg PLIST x11-toolkits/iv Makefile x11-toolkits/iv/pkg PLIST japanese/Canna Makefile japanese/Canna/pkg PLIST japanese/Wnn Makefile japanese/Wnn/pkg PLIST japanese/Wnn6-lib Makefile japanese/Wnn6-lib/pkg PLIST japanese/eb Makefile japanese/eb/pkg PLIST japanese/libjcode Makefile japanese/libjcode/pkg PLIST japanese/pine Makefile japanese/pine/pkg PLIST japanese/ptex-common Makefile japanese/ptex-common/pkg PLIST japanese/tcl76 Makefile japanese/tcl76/pkg PLIST japanese/tk42 Makefile japanese/tk42/pkg PLIST japanese/vflib Makefile japanese/vflib/pkg PLIST textproc/jade Makefile textproc/jade/pkg PLIST Log: Final round of the INSTALLS_SHLIBS=yes conversion. Few remaining ports with ldconfig in PLIST need personal consideration. Revision Changes Path 1.15 +2 -1 ports/lang/cim/Makefile 1.9 +0 -2 ports/lang/cim/pkg/PLIST 1.4 +2 -1 ports/textproc/cole/Makefile 1.2 +0 -2 ports/textproc/cole/pkg/PLIST 1.24 +2 -1 ports/editors/cooledit/Makefile 1.14 +0 -2 ports/editors/cooledit/pkg/PLIST 1.9 +3 -2 ports/security/cyrus-sasl/Makefile 1.6 +0 -2 ports/security/cyrus-sasl/pkg/PLIST 1.20 +3 -2 ports/databases/db/Makefile 1.10 +0 -2 ports/databases/db/pkg/PLIST 1.4 +3 -2 ports/math/dcdflib/Makefile 1.2 +0 -2 ports/math/dcdflib/pkg/PLIST 1.18 +2 -1 ports/x11/dgs/Makefile 1.6 +0 -2 ports/x11/dgs/pkg/PLIST 1.4 +2 -1 ports/graphics/diacanvas/Makefile 1.2 +0 -2 ports/graphics/diacanvas/pkg/PLIST 1.26 +2 -4 ports/math/eispack/Makefile 1.7 +0 -2 ports/math/eispack/pkg/PLIST 1.5 +2 -1 ports/x11-wm/epplets/Makefile 1.4 +0 -2 ports/x11-wm/epplets/pkg/PLIST 1.20 +2 -1 ports/audio/esound/Makefile 1.7 +0 -2 ports/audio/esound/pkg/PLIST 1.25 +2 -1 ports/x11/eterm/Makefile 1.11 +0 -2 ports/x11/eterm/pkg/PLIST 1.48 +2 -2 ports/lang/expect/Makefile 1.17 +0 -2 ports/lang/expect/pkg/PLIST 1.13 +2 -4 ports/mail/faces/Makefile 1.10 +0 -2 ports/mail/faces/pkg/PLIST 1.7 +3 -4 ports/devel/fastcrc/Makefile 1.3 +0 -2 ports/devel/fastcrc/pkg/PLIST 1.14 +3 -2 ports/math/fftpack/Makefile 1.7 +0 -2 ports/math/fftpack/pkg/PLIST 1.10 +2 -1 ports/math/fftw/Makefile 1.4 +0 -2 ports/math/fftw/pkg/PLIST 1.14 +2 -2 ports/x11-toolkits/fltk/Makefile 1.6 +0 -2 ports/x11-toolkits/fltk/pkg/PLIST 1.4 +2 -1 ports/devel/flux/Makefile 1.2 +0 -2 ports/devel/flux/pkg/PLIST 1.17 +2 -1 ports/graphics/fnlib/Makefile 1.11 +0 -2 ports/graphics/fnlib/pkg/PLIST 1.5 +2 -1 ports/x11-toolkits/fox/Makefile 1.3 +0 -2 ports/x11-toolkits/fox/pkg/PLIST 1.5 +3 -4 ports/devel/freelibiberty/Makefile 1.3 +0 -2 ports/devel/freelibiberty/pkg/PLIST 1.6 +2 -1 ports/databases/freetds/Makefile 1.3 +0 -2 ports/databases/freetds/pkg/PLIST 1.18 +5 -4 ports/print/freetype/Makefile 1.9 +0 -2 ports/print/freetype/pkg/PLIST 1.25 +4 -5 ports/graphics/gd/Makefile 1.9 +0 -2 ports/graphics/gd/pkg/PLIST 1.11 +3 -1 ports/databases/gdbm/Makefile 1.6 +0 -2 ports/databases/gdbm/pkg/PLIST 1.12 +2 -1 ports/graphics/gdk-pixbuf/Makefile 1.9 +0 -2 ports/graphics/gdk-pixbuf/pkg/PLIST 1.18 +2 -1 ports/cad/geda/Makefile 1.8 +0 -2 ports/cad/geda/pkg/PLIST 1.20 +2 -1 ports/devel/gettext/Makefile 1.17 +0 -2 ports/devel/gettext/pkg/PLIST 1.74 +2 -1 ports/graphics/gimp1/Makefile 1.44 +0 -2 ports/graphics/gimp1/pkg/PLIST 1.9 +0 -2 ports/graphics/gimp1/pkg/PLIST.perl 1.31 +2 -1 ports/devel/glib12/Makefile 1.21 +0 -2 ports/devel/glib12/pkg/PLIST 1.8 +2 -1 ports/net/gnet/Makefile 1.4 +0 -2 ports/net/gnet/pkg/PLIST 1.21 +2 -1 ports/sysutils/gnomecontrolcenter/Makefile 1.12 +0 -2 ports/sysutils/gnomecontrolcenter/pkg/PLIST 1.41 +2 -1 ports/x11/gnomecore/Makefile 1.18 +0 -2 ports/x11/gnomecore/pkg/PLIST 1.25 +2 -1 ports/games/gnomegames/Makefile 1.14 +0 -2 ports/games/gnomegames/pkg/PLIST 1.59 +2 -1 ports/x11/gnomelibs/Makefile 1.23 +0 -2 ports/x11/gnomelibs/pkg/PLIST 1.13 +2 -1 ports/palm/gnomepilot/Makefile 1.7 +0 -2 ports/palm/gnomepilot/pkg/PLIST 1.22 +2 -1 ports/print/gnomeprint/Makefile 1.11 +0 -2 ports/print/gnomeprint/pkg/PLIST 1.33 +2 -1 ports/math/gnumeric/Makefile 1.17 +0 -2 ports/math/gnumeric/pkg/PLIST 1.11 +2 -1 ports/graphics/gphoto/Makefile 1.6 +0 -2 ports/graphics/gphoto/pkg/PLIST 1.4 +2 -1 ports/math/gsl/Makefile 1.3 +0 -2 ports/math/gsl/pkg/PLIST 1.16 +4 -4 ports/audio/gsm/Makefile 1.11 +0 -2 ports/audio/gsm/pkg/PLIST 1.22 +2 -1 ports/x11-toolkits/gtk--/Makefile 1.7 +0 -2 ports/x11-toolkits/gtk--/pkg/PLIST 1.32 +2 -4 ports/x11-toolkits/gtk10/Makefile 1.31 +0 -2 ports/x11-toolkits/gtk10/pkg/PLIST 1.63 +2 -1 ports/x11-toolkits/gtk12/Makefile 1.48 +0 -2 ports/x11-toolkits/gtk12/pkg/PLIST 1.16 +2 -1 ports/graphics/gtkdps/Makefile 1.6 +0 -2 ports/graphics/gtkdps/pkg/PLIST 1.7 +2 -1 ports/x11-toolkits/gtkglarea/Makefile 1.3 +0 -2 ports/x11-toolkits/gtkglarea/pkg/PLIST 1.2 +2 -1 ports/www/gtkhtml/Makefile 1.2 +0 -2 ports/www/gtkhtml/pkg/PLIST 1.4 +2 -1 ports/misc/gtl/Makefile 1.3 +0 -2 ports/misc/gtl/pkg/PLIST 1.25 +2 -1 ports/lang/guile/Makefile 1.10 +0 -2 ports/lang/guile/pkg/PLIST 1.2 +2 -1 ports/x11-toolkits/guile-gnome/Makefile 1.2 +0 -2 ports/x11-toolkits/guile-gnome/pkg/PLIST 1.6 +2 -1 ports/x11-toolkits/guile-gtk/Makefile 1.4 +0 -2 ports/x11-toolkits/guile-gtk/pkg/PLIST 1.18 +3 -3 ports/security/heimdal/Makefile 1.12 +0 -2 ports/security/heimdal/pkg/PLIST 1.10 +3 -5 ports/net/hesiod/Makefile 1.4 +0 -2 ports/net/hesiod/pkg/PLIST 1.3 +3 -1 ports/converters/iconv/Makefile 1.3 +0 -2 ports/converters/iconv/pkg/PLIST 1.7 +2 -1 ports/net/icqlib/Makefile 1.2 +0 -2 ports/net/icqlib/pkg/PLIST 1.40 +2 -2 ports/mail/imap-uw/Makefile 1.11 +0 -2 ports/mail/imap-uw/pkg/PLIST 1.66 +2 -1 ports/graphics/imlib/Makefile 1.26 +0 -2 ports/graphics/imlib/pkg/PLIST 1.27 +2 -2 ports/lang/itcl/Makefile 1.10 +0 -2 ports/lang/itcl/pkg/PLIST 1.5 +2 -2 ports/x11-toolkits/itk/Makefile 1.3 +0 -2 ports/x11-toolkits/itk/pkg/PLIST 1.25 +2 -2 ports/x11-toolkits/iv/Makefile 1.10 +0 -2 ports/x11-toolkits/iv/pkg/PLIST 1.32 +3 -2 ports/japanese/Canna/Makefile 1.15 +0 -2 ports/japanese/Canna/pkg/PLIST 1.30 +2 -2 ports/japanese/Wnn/Makefile 1.7 +0 -2 ports/japanese/Wnn/pkg/PLIST 1.26 +3 -2 ports/japanese/Wnn6-lib/Makefile 1.7 +0 -2 ports/japanese/Wnn6-lib/pkg/PLIST 1.17 +2 -1 ports/japanese/eb/Makefile 1.8 +0 -2 ports/japanese/eb/pkg/PLIST 1.4 +3 -4 ports/japanese/libjcode/Makefile 1.2 +0 -2 ports/japanese/libjcode/pkg/PLIST 1.22 +3 -2 ports/japanese/pine/Makefile 1.8 +0 -2 ports/japanese/pine/pkg/PLIST 1.32 +2 -2 ports/japanese/ptex-common/Makefile 1.11 +0 -2 ports/japanese/ptex-common/pkg/PLIST 1.13 +2 -2 ports/japanese/tcl76/Makefile 1.5 +0 -2 ports/japanese/tcl76/pkg/PLIST 1.13 +2 -2 ports/japanese/tk42/Makefile 1.6 +0 -2 ports/japanese/tk42/pkg/PLIST 1.26 +2 -1 ports/japanese/vflib/Makefile 1.11 +0 -2 ports/japanese/vflib/pkg/PLIST 1.24 +4 -4 ports/textproc/jade/Makefile 1.10 +0 -2 ports/textproc/jade/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 3:56:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C9EF37BD4F; Fri, 16 Jun 2000 03:56:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA78697; Fri, 16 Jun 2000 03:56:53 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006161056.DAA78697@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 16 Jun 2000 03:56:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.alpha Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/16 03:56:52 PDT Modified files: sys/conf Makefile.alpha Log: Blah. Repeat after me -- Shell `if' semantics, not bmake `if' semantics. Revision Changes Path 1.63 +3 -3 src/sys/conf/Makefile.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 4:14:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F43A37B82E; Fri, 16 Jun 2000 04:14:14 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA83676; Fri, 16 Jun 2000 04:14:14 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006161114.EAA83676@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 04:14:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xwit Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 04:14:14 PDT Modified files: x11/xwit Makefile Log: Move distfile to ftp.freebsd.org. Revision Changes Path 1.7 +2 -2 ports/x11/xwit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 4:41:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A1F737BE66; Fri, 16 Jun 2000 04:41:32 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA86197; Fri, 16 Jun 2000 04:41:32 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006161141.EAA86197@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 04:41:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/tth Makefile ports/textproc/tth/files md5 ports/textproc/tth/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 04:41:32 PDT Modified files: textproc/tth Makefile textproc/tth/files md5 textproc/tth/pkg PLIST Log: Upgrade to 2.72. Revision Changes Path 1.16 +8 -6 ports/textproc/tth/Makefile 1.10 +1 -1 ports/textproc/tth/files/md5 1.3 +1 -0 ports/textproc/tth/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 4:48:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E01F37B51B; Fri, 16 Jun 2000 04:48:20 -0700 (PDT) (envelope-from tg@FreeBSD.org) Received: (from tg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA86800; Fri, 16 Jun 2000 04:48:20 -0700 (PDT) (envelope-from tg@FreeBSD.org) Message-Id: <200006161148.EAA86800@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 16 Jun 2000 04:48:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/tth Makefile ports/x11/xwit Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG tg 2000/06/16 04:48:20 PDT Modified files: textproc/tth Makefile x11/xwit Makefile Log: Use MASTER_SITE_LOCAL. Revision Changes Path 1.17 +3 -2 ports/textproc/tth/Makefile 1.8 +3 -2 ports/x11/xwit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 6: 0:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBB3037B612; Fri, 16 Jun 2000 06:00:33 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA95298; Fri, 16 Jun 2000 06:00:34 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200006161300.GAA95298@freefall.freebsd.org> From: Poul-Henning Kamp Date: Fri, 16 Jun 2000 06:00:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/softupdates ffs_softdep.c src/sys/sys mount.h src/sys/ufs/ffs ffs_extern.h ffs_softdep_stub.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/06/16 06:00:33 PDT Modified files: sys/contrib/softupdates ffs_softdep.c sys/sys mount.h sys/ufs/ffs ffs_extern.h ffs_softdep_stub.c Log: ARGH! I have too many source trees :-( Fix prototype errors in last commit. Revision Changes Path 1.66 +3 -5 src/sys/contrib/softupdates/ffs_softdep.c 1.93 +2 -2 src/sys/sys/mount.h 1.31 +2 -1 src/sys/ufs/ffs/ffs_extern.h 1.11 +2 -1 src/sys/ufs/ffs/ffs_softdep_stub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 6:22:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B25D837BEEC; Fri, 16 Jun 2000 06:22:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA98845; Fri, 16 Jun 2000 06:22:54 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006161322.GAA98845@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 06:22:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 06:22:54 PDT Modified files: . modules Log: grdb --> ports/misc/grdb Revision Changes Path 1.1272 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 6:25:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1363137BECB; Fri, 16 Jun 2000 06:25:34 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99136; Fri, 16 Jun 2000 06:25:33 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006161325.GAA99136@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 06:25:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/grdb - Imported sources Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 06:25:33 PDT ports/misc/grdb - Imported sources Update of /home/ncvs/ports/misc/grdb In directory freefall.freebsd.org:/d/home/sobomax/grdb Log Message: Initial import of grdb - an application to match Motif/Athena/Tk widgets with the current GTK theme. PR: 19243 Submitted by: Stijn Hoop Status: Vendor Tag: STIJN Release Tags: v1_0 N ports/misc/grdb/Makefile N ports/misc/grdb/pkg/COMMENT N ports/misc/grdb/pkg/DESCR N ports/misc/grdb/pkg/PLIST N ports/misc/grdb/files/md5 N ports/misc/grdb/patches/patch-aa No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 6:27:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F81A37B8D3; Fri, 16 Jun 2000 06:27:10 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA99361; Fri, 16 Jun 2000 06:27:09 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006161327.GAA99361@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 06:27:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 06:27:09 PDT Modified files: misc Makefile Log: Activate grdb. Revision Changes Path 1.277 +2 -1 ports/misc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 6:36:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CD7437B970; Fri, 16 Jun 2000 06:36:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA01087; Fri, 16 Jun 2000 06:36:37 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006161336.GAA01087@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 06:36:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 06:36:36 PDT Modified files: en_US.ISO_8859-1/books/handbook/contrib chapter.sgml Log: Add Stijn Hoop for his grdb port. Revision Changes Path 1.228 +5 -1 doc/en_US.ISO_8859-1/books/handbook/contrib/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:13:47 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id C293E37BEDC; Fri, 16 Jun 2000 07:13:42 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id C3EBA1C5C; Fri, 16 Jun 2000 10:13:41 -0400 (EDT) Date: Fri, 16 Jun 2000 10:13:41 -0400 From: Bill Fumerola To: "Daniel C. Sobral" Cc: Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h Message-ID: <20000616101341.Y8523@jade.chc-chimes.com> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> <39499E16.9FE731F7@newsguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <39499E16.9FE731F7@newsguy.com>; from dcs@newsguy.com on Fri, Jun 16, 2000 at 12:25:10PM +0900 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 12:25:10PM +0900, Daniel C. Sobral wrote: > HTTP belongs to userland. We should no more add support to HTTP than we > should add support to the dozens of different userland streaming > protocols in existance. If natd had been written in the kernel (which no-one would have objected to), you would have the exact above scenario. We can pout about how "wrong" breaking the traditional layering scheme and we can watch other systems peform (you know, real world, the things that the users care about) or we can all live in an academic world where we are so blinded that we think that traditional == right. > Alas, I pretty much ignored all that hackers discussion on the grounds > that nothing called "kblob" could possibly be important. Your loss for judgeing. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:18:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 484F937BF77; Fri, 16 Jun 2000 07:18:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Received: (from sobomax@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA61492; Fri, 16 Jun 2000 07:18:49 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-Id: <200006161418.HAA61492@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 16 Jun 2000 07:18:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/xmms/patches patch-ad Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sobomax 2000/06/16 07:18:49 PDT Modified files: audio/xmms/patches patch-ad Log: Remove expensive optimisations, which seems broke equalizer with our gcc. PR: 19141 Submitted by: Sascha Blank Revision Changes Path 1.2 +10 -2 ports/audio/xmms/patches/patch-ad To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:21:18 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id C91B937BEF6; Fri, 16 Jun 2000 07:21:15 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 623E91C5C; Fri, 16 Jun 2000 10:21:15 -0400 (EDT) Date: Fri, 16 Jun 2000 10:21:15 -0400 From: Bill Fumerola To: Nate Williams Cc: Daniel O'Connor , "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Message-ID: <20000616102115.Z8523@jade.chc-chimes.com> References: <39499E16.9FE731F7@newsguy.com> <200006160506.XAA28743@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200006160506.XAA28743@nomad.yogotech.com>; from nate@yogotech.com on Thu, Jun 15, 2000 at 11:06:48PM -0600 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, Jun 15, 2000 at 11:06:48PM -0600, Nate Williams wrote: > Correct. If we want performance, how about removing the difference > between kernel and userland. Why have the overhead of the kernel > vs. userland change, since it causes us to take a big performance hit. > > As long as we're at it, we may as well embed all of the video drivers in > the kernel, like NT did. X should become an embedded part of the > system, since that will also speed up performance again. > > There are *LOTS* of performance improvments that can be done. Since > FreeBSD is used on the internet, let's embed telnet and ftp in the > kernel as well. We could certainly blow away all benchmarks that people > see. So basically if you don't have any constructive to contribute to the specific case at hand, you can just make broad assinine statements? -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:26:59 2000 Delivered-To: cvs-all@freebsd.org Received: from majordomo2.umd.edu (majordomo2.umd.edu [128.8.10.7]) by hub.freebsd.org (Postfix) with ESMTP id 3F8EB37BF27; Fri, 16 Jun 2000 07:26:41 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by majordomo2.umd.edu (8.9.3/8.9.3) with ESMTP id KAA24638; Fri, 16 Jun 2000 10:26:08 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id KAA16171; Fri, 16 Jun 2000 10:26:10 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id KAA16167; Fri, 16 Jun 2000 10:26:08 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Fri, 16 Jun 2000 10:26:08 -0400 (EDT) From: Kenneth Wayne Culver To: Bill Fumerola Cc: Nate Williams , "Daniel O'Connor" , "Daniel C. Sobral" , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <20000616102115.Z8523@jade.chc-chimes.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Thu, Jun 15, 2000 at 11:06:48PM -0600, Nate Williams wrote: > > > Correct. If we want performance, how about removing the difference > > between kernel and userland. Why have the overhead of the kernel > > vs. userland change, since it causes us to take a big performance hit. > > > > As long as we're at it, we may as well embed all of the video drivers in > > the kernel, like NT did. X should become an embedded part of the > > system, since that will also speed up performance again. > > > > There are *LOTS* of performance improvments that can be done. Since > > FreeBSD is used on the internet, let's embed telnet and ftp in the > > kernel as well. We could certainly blow away all benchmarks that people > > see. > > So basically if you don't have any constructive to contribute to the > specific case at hand, you can just make broad assinine statements? > ouch. Anyway, I like the idea of doing whatever it takes to make our performance increase... but not at the expense of having a stable OS. Just about everything in the "assinine statements" above would leave us with a very unstable OS. I couldn't care less (and a lot of people would surely agree) whether or not we have the "standard" or "traditional" implementation of anything as long as to the user things are basically the same, and things perform better. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:32:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B99437BED9; Fri, 16 Jun 2000 07:32:14 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: (from phk@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA63110; Fri, 16 Jun 2000 07:32:13 -0700 (PDT) (envelope-from phk@FreeBSD.org) Message-Id: <200006161432.HAA63110@freefall.freebsd.org> From: Poul-Henning Kamp Date: Fri, 16 Jun 2000 07:32:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c src/sys/ufs/ffs ffs_vnops.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG phk 2000/06/16 07:32:13 PDT Modified files: sys/kern vfs_syscalls.c sys/ufs/ffs ffs_vnops.c Log: Revert part of my bioops change which implemented panic(8). Revision Changes Path 1.155 +4 -1 src/sys/kern/vfs_syscalls.c 1.68 +1 -3 src/sys/ufs/ffs/ffs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:42:35 2000 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 0323A37B7B4; Fri, 16 Jun 2000 07:42:28 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id KAA17805; Fri, 16 Jun 2000 10:42:11 -0400 (EDT) (envelope-from wollman) Date: Fri, 16 Jun 2000 10:42:11 -0400 (EDT) From: Garrett Wollman Message-Id: <200006161442.KAA17805@khavrinen.lcs.mit.edu> To: Bill Fumerola Cc: "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: <20000616101341.Y8523@jade.chc-chimes.com> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> <39499E16.9FE731F7@newsguy.com> <20000616101341.Y8523@jade.chc-chimes.com> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > If natd had been written in the kernel (which no-one would have objected > to), you would have the exact above scenario. I would have, strenuously. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 7:54:35 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AB20537B8C5; Fri, 16 Jun 2000 07:54:32 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Received: (from jedgar@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA66061; Fri, 16 Jun 2000 07:54:32 -0700 (PDT) (envelope-from jedgar@FreeBSD.org) Message-Id: <200006161454.HAA66061@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Fri, 16 Jun 2000 07:54:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/sim/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jedgar 2000/06/16 07:54:32 PDT Modified files: emulators/sim/pkg PLIST Log: Fix typo: @rmdir -> @dirrm Submitted by: steve Revision Changes Path 1.4 +1 -1 ports/emulators/sim/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:20:45 2000 Delivered-To: cvs-all@freebsd.org Received: from kobayashi.uits.iupui.edu (kobayashi.uits.iupui.edu [134.68.11.80]) by hub.freebsd.org (Postfix) with ESMTP id 6235C37BA2F; Fri, 16 Jun 2000 08:20:41 -0700 (PDT) (envelope-from ajk@iu.edu) Received: from localhost (ajk@localhost) by kobayashi.uits.iupui.edu (8.9.3/8.9.3) with ESMTP id KAA47637; Fri, 16 Jun 2000 10:20:40 -0500 (EST) (envelope-from ajk@iu.edu) Date: Fri, 16 Jun 2000 10:20:40 -0500 (EST) From: "Andrew J. Korty" X-Sender: ajk@kobayashi.uits.iupui.edu To: Doug White Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 identcpu.c Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > dwhite 2000/05/03 11:07:32 PDT > > Modified files: > sys/i386/i386 identcpu.c > Log: > I mentioned yesterday that I could use some work, and Kelly says, "Commit my > PRs!" So here I go. > > Add definitions for some of the AMD CPU feature bits. Also add a comment on > where to find the rest of them. This is a purely cosmetic change. > > PR: i386/14438 > Submitted by: Kelly Yancey > > Revision Changes Path > 1.81 +24 -20 src/sys/i386/i386/identcpu.c After this commit my K6 no longer boots. Where before I would get CPU: AMD-K6tm w/ multimedia extensions (303.55-MHz 586-class CPU) Origin = "AuthenticAMD" Id = 0x570 Stepping = 0 Features=0x8001bf AMD Features=0x400<> now it says my CPU class is not configured. Reverting to the previous revision of identcpu.c fixes the problem. -- Andrew J. Korty, Lead Security Engineer Office of the Vice President for Information Technology Indiana University To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:32: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 60E7C37BF2B; Fri, 16 Jun 2000 08:31:51 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id JAA08973; Fri, 16 Jun 2000 09:31:39 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id JAA00677; Fri, 16 Jun 2000 09:31:38 -0600 (MDT) (envelope-from nate) Date: Fri, 16 Jun 2000 09:31:38 -0600 (MDT) Message-Id: <200006161531.JAA00677@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Bill Fumerola Cc: Nate Williams , "Daniel O'Connor" , "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <20000616102115.Z8523@jade.chc-chimes.com> References: <39499E16.9FE731F7@newsguy.com> <200006160506.XAA28743@nomad.yogotech.com> <20000616102115.Z8523@jade.chc-chimes.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > Correct. If we want performance, how about removing the difference > > between kernel and userland. Why have the overhead of the kernel > > vs. userland change, since it causes us to take a big performance hit. > > > > As long as we're at it, we may as well embed all of the video drivers in > > the kernel, like NT did. X should become an embedded part of the > > system, since that will also speed up performance again. > > > > There are *LOTS* of performance improvments that can be done. Since > > FreeBSD is used on the internet, let's embed telnet and ftp in the > > kernel as well. We could certainly blow away all benchmarks that people > > see. > > So basically if you don't have any constructive to contribute to the > specific case at hand, you can just make broad assinine statements? No. I'm saying that blowing your architecture for performance gains isn't worth it. If performance is your entire goal (as you stated), there are lots of ways of removing that bottleneck. In short, the removal of the userland/kernel switch would make the original code's reason for existence gone, since the context switch is so painful. Or, will you agree that architecture and consistency has a role in FreeBSD, and that sometimes performance must take a back seat? Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:33:15 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id 0DB2337BF70; Fri, 16 Jun 2000 08:33:10 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 94D251C5C; Fri, 16 Jun 2000 11:33:04 -0400 (EDT) Date: Fri, 16 Jun 2000 11:33:04 -0400 From: Bill Fumerola To: Nate Williams Cc: Daniel O'Connor , "Daniel C. Sobral" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Message-ID: <20000616113304.B8523@jade.chc-chimes.com> References: <39499E16.9FE731F7@newsguy.com> <200006160506.XAA28743@nomad.yogotech.com> <20000616102115.Z8523@jade.chc-chimes.com> <200006161531.JAA00677@nomad.yogotech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200006161531.JAA00677@nomad.yogotech.com>; from nate@yogotech.com on Fri, Jun 16, 2000 at 09:31:38AM -0600 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 09:31:38AM -0600, Nate Williams wrote: > Or, will you agree that architecture and consistency has a role in > FreeBSD, and that sometimes performance must take a back seat? I will agree to that. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:33:56 2000 Delivered-To: cvs-all@freebsd.org Received: from norn.ca.eu.org (cr965240-b.abtsfd1.bc.wave.home.com [24.113.19.137]) by hub.freebsd.org (Postfix) with ESMTP id 53EB937BF82; Fri, 16 Jun 2000 08:33:52 -0700 (PDT) (envelope-from cpiazza@norn.ca.eu.org) Received: by norn.ca.eu.org (Postfix, from userid 1000) id C86ECD8; Fri, 16 Jun 2000 08:33:50 -0700 (PDT) Date: Fri, 16 Jun 2000 08:33:50 -0700 From: Chris Piazza To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/misc/grdb - Imported sources Message-ID: <20000616083350.B644@norn.ca.eu.org> References: <200006161325.GAA99136@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mutt 1.0.1i-jp0 In-Reply-To: <200006161325.GAA99136@freefall.freebsd.org>; from sobomax@FreeBSD.org on Fri, Jun 16, 2000 at 06:25:33AM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 06:25:33AM -0700, Maxim Sobolev wrote: > sobomax 2000/06/16 06:25:33 PDT > > ports/misc/grdb - Imported sources Shouldn't this be in x11-toolkits? -Chris -- cpiazza@jaxon.net | yawn..... cpiazza@FreeBSD.org | Abbotsford, BC, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:43: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id 9947C37BF0C; Fri, 16 Jun 2000 08:42:47 -0700 (PDT) (envelope-from culverk@wam.umd.edu) Received: from rac1.wam.umd.edu (root@rac1.wam.umd.edu [128.8.10.141]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id LAA27141; Fri, 16 Jun 2000 11:42:24 -0400 (EDT) Received: from rac1.wam.umd.edu (sendmail@localhost [127.0.0.1]) by rac1.wam.umd.edu (8.9.3/8.9.3) with SMTP id LAA25836; Fri, 16 Jun 2000 11:42:25 -0400 (EDT) Received: from localhost (culverk@localhost) by rac1.wam.umd.edu (8.9.3/8.9.3) with ESMTP id LAA25823; Fri, 16 Jun 2000 11:42:25 -0400 (EDT) X-Authentication-Warning: rac1.wam.umd.edu: culverk owned process doing -bs Date: Fri, 16 Jun 2000 11:42:25 -0400 (EDT) From: Kenneth Wayne Culver To: Nate Williams Cc: Bill Fumerola , "Daniel O'Connor" , "Daniel C. Sobral" , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, Alfred Perlstein Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <200006161531.JAA00677@nomad.yogotech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > Correct. If we want performance, how about removing the difference > > > between kernel and userland. Why have the overhead of the kernel > > > vs. userland change, since it causes us to take a big performance hit. > > > > > > As long as we're at it, we may as well embed all of the video drivers in > > > the kernel, like NT did. X should become an embedded part of the > > > system, since that will also speed up performance again. > > > > > > There are *LOTS* of performance improvments that can be done. Since > > > FreeBSD is used on the internet, let's embed telnet and ftp in the > > > kernel as well. We could certainly blow away all benchmarks that people > > > see. > > > > So basically if you don't have any constructive to contribute to the > > specific case at hand, you can just make broad assinine statements? > > No. I'm saying that blowing your architecture for performance gains > isn't worth it. If performance is your entire goal (as you stated), > there are lots of ways of removing that bottleneck. > > In short, the removal of the userland/kernel switch would make the > original code's reason for existence gone, since the context switch is > so painful. > > Or, will you agree that architecture and consistency has a role in > FreeBSD, and that sometimes performance must take a back seat? > > I know I have no say in this... but as an interested party watching the discussion, I think that certain architectural changes can be made in the intrests of performance as long as the OS remains either as stable as before ... or more stable.. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:51:35 2000 Delivered-To: cvs-all@freebsd.org Received: from redfish.go2net.com (redfish.go2net.com [207.178.55.5]) by hub.freebsd.org (Postfix) with ESMTP id CAF4337BF48; Fri, 16 Jun 2000 08:51:08 -0700 (PDT) (envelope-from marcs@go2net.com) Received: from marcs (helo=localhost) by redfish.go2net.com with local-esmtp (Exim 2.11 #1) id 132yKN-00078a-00; Fri, 16 Jun 2000 08:46:39 -0700 Date: Fri, 16 Jun 2000 08:46:39 -0700 (PDT) From: Marc Slemko X-Sender: marcs@redfish To: Peter Wemm Cc: Marc Slemko , Daniel O'Connor , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <20000616095723.6C4771CD7@overcee.netplex.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Jun 2000, Peter Wemm wrote: > Marc Slemko wrote: > > On Fri, 16 Jun 2000, Daniel O'Connor wrote: > > > > > > The correct here is find _why_ there is a performance impact if this > > > > delay accept feature is not used, and fix _that_ instead. > > > > > > Well, my naivity abounds, but I would have thought it was because you do an > > > accept() which returns and then immediatly you go back to waiting on select > (). > > > > Why should that be expensive? > > Context switches are *extremely* expensive, relative to doing useful work. Very often, all HTTP servers do is IO. All IO is is a little bit of user code inbetween a bunch of context switches. How many context switches can a modern box running FreeBSD do? How many HTTP requests per second would have to be processed before one or two more context switches per request had a significant impact? > > If thundering herd on accept() is a problem, add a wake_one. Which > > was done. > > The problem is this: > > 1: Connection arrives > 2: accept() completes > 3: context switch to run process to accept it. > 4: process runs and immediately calls read() > 5: in many cases we did not get a complete header. If not, context switch > and goto step 4. ie: several context switches to get the header. > 6: process request > 7: write data > 8: close > 9: idle, or context switch to something else > > The problem is the 4/5 loop. If the browser writes the request piecemeal > (too many do), you are going to have 5 or 10 or more context switches until > you get the header. Even if the browser sends the data in one packet and > one push, you still have a context switch after accept returns and before > read() can get it. Umh... huh? I don't know of any commonly used browsers that send a typical HTTP request in more than one segment. Can you show me the tcpdump output from such an example? I do not believe that one or two extra context switches is all that significant and, if it is, then just implement something like NT's AcceptEx that waits for the first segment to be available for read(), no need to go to the extent of trying to magically parse the content you get. I do not understand why the http specific code is necessary. AcceptEx is still a hack, but a more generally useful and less bad-magical hack. > > If there is some similar problem elsewhere, fix it. > > The problem is not the implemetation, the problem is the HTTP protocol. > We cannot "fix" all the Win9x and netscape/IE browsers to use some HTTP > replacement or enhancement. Again, huh? I am quite familiar with the HTTP protcol and with the details of how browsers implement it (particularily the interactions between HTTP and TCP) and nowhere does it require this, nor do browsers do what you describe. If browsers do things in a really stupid way, then they should be fixed. However, in this case, they don't do things that way. > > This is a cheap tweak that has a *MASSIVE* performance win in the most > performance critical of all the internet protocols. To the bulk of the > population that is internet aware, the internet == HTTP/HTML. If there is > anywhere that we can get a cheap, easy win that has very large payback, > this is it. As I understand it, on the yahoo.com servers we can get an > order of magnitude or so extra performance out of a box as a result of > this. It most certainly has real-world applications. I'm afraid that your understanding is incorrect. Perhaps you could double check what you heard or someone could show some actual numbers? I expect that perhaps somewhere along the line, a "order of magnitude improvement with all these changes" was heard as "an order of magnitude with this one change". Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 8:55:13 2000 Delivered-To: cvs-all@freebsd.org Received: from ntua.gr (achilles.noc.ntua.gr [147.102.222.210]) by hub.freebsd.org (Postfix) with ESMTP id 56CD037B9F9; Fri, 16 Jun 2000 08:54:50 -0700 (PDT) (envelope-from past@netmode.ece.ntua.gr) Received: from netmode.ece.ntua.gr (dolly.netmode.ece.ntua.gr [147.102.13.10]) by ntua.gr (8.9.3/8.9.3) with ESMTP id SAA13046; Fri, 16 Jun 2000 18:54:22 +0300 (EET DST) Received: by netmode.ece.ntua.gr (Postfix, from userid 410) id D854E85C3; Fri, 16 Jun 2000 18:43:00 +0300 (EET DST) Date: Fri, 16 Jun 2000 18:43:00 +0300 From: Panagiotis Astithas To: Peter Wemm Cc: Marc Slemko , "Daniel O'Connor" , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Message-ID: <20000616184300.W7810@netmode.ece.ntua.gr> Reply-To: past@netmode.ntua.gr Mail-Followup-To: Peter Wemm , Marc Slemko , Daniel O'Connor , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <20000616095723.6C4771CD7@overcee.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000616095723.6C4771CD7@overcee.netplex.com.au>; from peter@netplex.com.au on Fri, Jun 16, 2000 at 02:57:23AM -0700 X-Organizational-Unit: Network Management and Optimal Design Laboratory X-Organization: National Technical University of Athens, GREECE X-Work-Phone: +30-1-772-1-450 X-Work-FAX: +30-1-772-1-452 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 02:57:23AM -0700, Peter Wemm wrote: > This is a cheap tweak that has a *MASSIVE* performance win in the most > performance critical of all the internet protocols. To the bulk of the > population that is internet aware, the internet == HTTP/HTML. If there is > anywhere that we can get a cheap, easy win that has very large payback, > this is it. As I understand it, on the yahoo.com servers we can get an I am generally very conservative about breaking architectural standards, but I think that people should put a lot of thinking on the observation above. From research papers on Internet traffic that I have seen recently you could pretty much say that Internet IS HTTP. So please, don't blatantly reject such a change. If this can be done in an arhitecture-consistent way that doesn't take 10 manmonths to complete, great. Otherwise, lets hack ;-) -past To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 9:36:56 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C53337B6B6; Fri, 16 Jun 2000 09:36:53 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA79482; Fri, 16 Jun 2000 09:36:52 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006161636.JAA79482@freefall.freebsd.org> From: KATO Takenori Date: Fri, 16 Jun 2000 09:36:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.pc98 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/16 09:36:52 PDT Modified files: sys/conf Makefile.pc98 Log: Merged from sys/conf/Makefile.i386 revisions 1.192 and 1.193. Revision Changes Path 1.93 +5 -3 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 9:41:16 2000 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 61A3037BF0C; Fri, 16 Jun 2000 09:41:05 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id MAA18110; Fri, 16 Jun 2000 12:40:56 -0400 (EDT) (envelope-from wollman) Date: Fri, 16 Jun 2000 12:40:56 -0400 (EDT) From: Garrett Wollman Message-Id: <200006161640.MAA18110@khavrinen.lcs.mit.edu> To: Peter Wemm Cc: Marc Slemko , "Daniel O'Connor" , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <20000616095723.6C4771CD7@overcee.netplex.com.au> References: <20000616095723.6C4771CD7@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG < said: > 4: process runs and immediately calls read() > 5: in many cases we did not get a complete header. If not, context switch > and goto step 4. ie: several context switches to get the header. I have never seen this. I just did a quick check of the major clients, and every single one sends the request in a single segment. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 9:46:54 2000 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id EB9BA37BEC7; Fri, 16 Jun 2000 09:46:47 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA09598; Fri, 16 Jun 2000 10:46:19 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA01076; Fri, 16 Jun 2000 10:46:18 -0600 (MDT) (envelope-from nate) Date: Fri, 16 Jun 2000 10:46:18 -0600 (MDT) Message-Id: <200006161646.KAA01076@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Garrett Wollman Cc: Peter Wemm , Marc Slemko , "Daniel O'Connor" , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: <200006161640.MAA18110@khavrinen.lcs.mit.edu> References: <20000616095723.6C4771CD7@overcee.netplex.com.au> <200006161640.MAA18110@khavrinen.lcs.mit.edu> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > 4: process runs and immediately calls read() > > 5: in many cases we did not get a complete header. If not, context switch > > and goto step 4. ie: several context switches to get the header. > > I have never seen this. I just did a quick check of the major > clients, and every single one sends the request in a single segment. At my former employer, we were implementing a 'network load balancer' for HTTP traffic, and one of the things that was measured was the fact that literally all client requests fit in a single segment. We were able to fast-path optimize the code to take advantage of this fact since it reduced latency considerable, since we needed the entire segment to make the decision on which machine would be best suited to handle this request. This isn't to say that you wouldn't still get an accept hit upon the initial receipt, and then you would be required to call select again on the new socket and get a hit again when it actually received the request, but that's only two switches, no more. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 10:31:20 2000 Delivered-To: cvs-all@freebsd.org Received: from spirit.jaded.net (shortbus.jaded.net [216.94.132.8]) by hub.freebsd.org (Postfix) with ESMTP id 9C14237B805; Fri, 16 Jun 2000 10:31:11 -0700 (PDT) (envelope-from dan@spirit.jaded.net) Received: (from dan@localhost) by spirit.jaded.net (8.9.3/8.9.3) id NAA00933; Fri, 16 Jun 2000 13:31:01 -0400 (EDT) (envelope-from dan) Date: Fri, 16 Jun 2000 13:31:01 -0400 From: Dan Moschuk To: "Daniel C. Sobral" Cc: Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h Message-ID: <20000616133101.D726@spirit.jaded.net> References: <200006151818.LAA31278@freefall.freebsd.org> <200006151845.MAA25472@nomad.yogotech.com> <20000615120807.M18462@fw.wintelcom.net> <39499E16.9FE731F7@newsguy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <39499E16.9FE731F7@newsguy.com>; from dcs@newsguy.com on Fri, Jun 16, 2000 at 12:25:10PM +0900 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG | > It's not really a signifigant amount of code if you look at the | > delta, the performance difference is signifigant though. | > You'll be happy when I release my http server that uses this. | | He won't. | | HTTP belongs to userland. We should no more add support to HTTP than we | should add support to the dozens of different userland streaming | protocols in existance. Agreed. If we are going to optimize our kernel for a specific protocol, it should at least be incased in an option OPTIMIZE_HTTP or something of that nature. -- Dan Moschuk (TFreak!dan@freebsd.org) "Don't get even -- get odd!" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 10:37:51 2000 Delivered-To: cvs-all@freebsd.org Received: from light.imasy.or.jp (light.imasy.or.jp [202.227.24.4]) by hub.freebsd.org (Postfix) with ESMTP id ECD1137B920; Fri, 16 Jun 2000 10:37:45 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: (from uucp@localhost) by light.imasy.or.jp (8.9.3+3.2W/3.7W-light/smtpfeed 1.02) with UUCP id CAA13781; Sat, 17 Jun 2000 02:37:34 +0900 (JST) (envelope-from ume@mahoroba.org) Received: from localhost (peace.mahoroba.org [202.227.26.34]) by mail.mahoroba.org (8.10.2/3.7W-chaos) with ESMTP id e5GHajS13458; Sat, 17 Jun 2000 02:36:46 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sat, 17 Jun 2000 02:36:45 +0900 (JST) Message-Id: <20000617.023645.74755484.ume@mahoroba.org> To: itojun@iijlab.net Cc: ache@freebsd.org, alex@big.endian.de, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/net res_init.c res_send.c From: Hajimu UMEMOTO (=?iso-2022-jp?B?GyRCR19LXBsoQiAbJEJIJRsoQg==?=) In-Reply-To: <2647.961120554@coconut.itojun.org> References: <20000615185200.A40608@freebsd.org> <2647.961120554@coconut.itojun.org> X-Mailer: xcite1.20> Mew version 1.95b38 on Emacs 20.6 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= X-PGP-Public-Key: http://www.imasy.org/~ume/publickey.asc X-PGP-Fingerprint: 6B 0C 53 FC 5D D0 37 91 05 D0 B3 EF 36 9B 6A BC X-URL: http://www.imasy.org/~ume/ X-OS: FreeBSD 5.0-CURRENT Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >>>>> On Fri, 16 Jun 2000 10:55:54 +0900 >>>>> itojun@iijlab.net said: >There are following possibilities: >1) No /etc/resolv.conf >2) /etc/resolv.conf with several nameservers >2a) /etc/resolv.conf with nameserver 0.0.0.0 All of these are checked with IPv4/IPv6 kernel and IPv4 only kernel. itojun> ume, you really want to look at the latest kame libineet6/resolv/. itojun> the code is much more conservative about backward compatibility itojun> (selecting _res.nsaddr_list and _res_ext.nsaddr_list). I read your commit message of KAME CVS. Then, I had look around resent res_init.c and res_send.c of kame/libinet6, and changed the code. I believe I already mereged corresponding code. If I forgot to merge the part should be merged, please tell me. Thanks. itojun> make sure to check if nslookup/dig/host work right. they touch itojun> struct _res directly and will make it a good torture-test for backward itojun> compatibility I just tried nslookup/dig/host of WC-CDROM 4.0-RELEASE live filesystem with IPv4/IPv6 kernel and IPv4 only kernel, and it seems working. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:14:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A56B37BFA8; Fri, 16 Jun 2000 11:14:40 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: (from jmg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA93995; Fri, 16 Jun 2000 11:14:39 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Message-Id: <200006161814.LAA93995@freefall.freebsd.org> From: John-Mark Gurney Date: Fri, 16 Jun 2000 11:14:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/cgiparse Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmg 2000/06/16 11:14:39 PDT Modified files: www/cgiparse Makefile Log: replace , w/ as pointed out... PR: 19328 Revision Changes Path 1.11 +2 -2 ports/www/cgiparse/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:16:31 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id 98BFD37BFDF; Fri, 16 Jun 2000 11:16:19 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id TAA07548; Fri, 16 Jun 2000 19:10:45 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id SAA00670; Fri, 16 Jun 2000 18:37:50 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200006161737.SAA00670@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Garrett Wollman Cc: Bill Fumerola , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.awfulhak.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: Message from Garrett Wollman of "Fri, 16 Jun 2000 10:42:11 EDT." <200006161442.KAA17805@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 16 Jun 2000 18:37:48 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > < said: > > > If natd had been written in the kernel (which no-one would have objected > > to), you would have the exact above scenario. > > I would have, strenuously. Is there a big difference between natd and ipnat ? Or do you object to ipnat ? > -GAWollman -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:17:40 2000 Delivered-To: cvs-all@freebsd.org Received: from jade.chc-chimes.com (jade.chc-chimes.com [216.28.46.6]) by hub.freebsd.org (Postfix) with ESMTP id D1CEA37BFEA; Fri, 16 Jun 2000 11:17:33 -0700 (PDT) (envelope-from billf@jade.chc-chimes.com) Received: by jade.chc-chimes.com (Postfix, from userid 1001) id 8AA4E1C5C; Fri, 16 Jun 2000 14:17:32 -0400 (EDT) Date: Fri, 16 Jun 2000 14:17:32 -0400 From: Bill Fumerola To: Brian Somers Cc: Garrett Wollman , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.awfulhak.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h Message-ID: <20000616141732.E8523@jade.chc-chimes.com> References: <200006161737.SAA00670@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200006161737.SAA00670@hak.lan.Awfulhak.org>; from brian@Awfulhak.org on Fri, Jun 16, 2000 at 06:37:48PM +0100 X-Operating-System: FreeBSD 3.3-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 06:37:48PM +0100, Brian Somers wrote: > > > If natd had been written in the kernel (which no-one would have objected > > > to), you would have the exact above scenario. > > > > I would have, strenuously. > > Is there a big difference between natd and ipnat ? Or do you object > to ipnat ? I was going to mention that, but I don't use ipfilter and hadn't looked to see how application specific ipnat gets. -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:17:50 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EABDB37BFEA; Fri, 16 Jun 2000 11:17:47 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA94722; Fri, 16 Jun 2000 11:17:47 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006161817.LAA94722@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 11:17:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/disks chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 11:17:47 PDT Modified files: en_US.ISO_8859-1/books/handbook/disks chapter.sgml Log: Rewrite a sentence in the ``Adding Disks'' section to mention wd is from pre-4.0 and ad is for 4.X+. PR: 19334 Submitted by: Bob Johnson Revision Changes Path 1.21 +5 -4 doc/en_US.ISO_8859-1/books/handbook/disks/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:25:46 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id D9D4C37BFDF; Fri, 16 Jun 2000 11:25:38 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id LAA59808; Fri, 16 Jun 2000 11:25:31 -0700 (PDT) Message-ID: <20000616112531.12083@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 11:25:31 -0700 From: John-Mark Gurney To: Marc Slemko Cc: Alfred Perlstein , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h References: <20000615161246.37298@hydrogen.funkthat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: ; from Marc Slemko on Thu, Jun 15, 2000 at 10:02:54PM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Marc Slemko scribbled this message on Jun 15: > On Thu, 15 Jun 2000, John-Mark Gurney wrote: > > > Alfred Perlstein scribbled this message on Jun 15: > > > until the incoming connection has either data waiting or what looks like a > > > HTTP request header already in the socketbuffer. This ought to reduce > > > the context switch time and overhead for processing requests. > > > > if this code stays (which I hope it either gets removed, or made into > > a kld module), it should be updated to check for ALL the various > > possible http requests... (such as HEAD, etc.) > > Actually, no, it should not be a generalized to be fully able to grok > all possible requests. While I agree that this sort of hardcoded gunk > isn't necessarily appropriate where it is (or even useful for > performance, outside of very constrained benchmark situations), if you > are going to add special code to the kernel, then you want to keep a > small fast path in the kernel that covers the common case. You can and you want to make it loadable so that it doesn't bloat the kernel... tight performance optimizations that effect only a small subset of people are bad.. we have kld's make use of them... > cover 90% of the cases with 10% of the code, then everything else just > punts down the way things normally work. More speed for the common case, > less complexity, and a lot less chance of bugs. have you done a performance difference between the delayed accept version and the http version of the socket?? I REALLY doubt that many clients split the url into multiple packets, and if they do, they are in the minority which means we can take the hit for those... why doesn't the simple delay work? have you even tested the performance difference between the two for http?? I bet you will find that there is only a slight performance (like 1%) difference if that much as you don't have to pass it through two compare routines, and you just have to compare if there is data there... -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:36:55 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A3C937C00A; Fri, 16 Jun 2000 11:36:53 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97519; Fri, 16 Jun 2000 11:36:53 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006161836.LAA97519@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 11:36:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 11:36:53 PDT Modified files: en/news Makefile Log: Temporarily remove webchanges.sgml from the build. The file hasn't been updated in ages (see docs/19189), and Wolfram has removed the link to it from index.sgml, so there's not really a need to build it. We can re-enable it if/when Nik (or someone else) finishes his script to auto-update it. Revision Changes Path 1.20 +2 -2 www/en/news/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:38:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A3FE637C005; Fri, 16 Jun 2000 11:38:23 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA97675; Fri, 16 Jun 2000 11:38:23 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006161838.LAA97675@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 11:38:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/search web.atoz Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 11:38:23 PDT Modified files: en/search web.atoz Log: Comment out the lines referring to webchanges.sgml since it's old and crufty. As with my last commit to the Makefile, these can be uncommented later. While I'm here -- FreeBSD ezine -> FreeBSD zine. Revision Changes Path 1.49 +4 -4 www/en/search/web.atoz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:41:29 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id A1B2237B67C; Fri, 16 Jun 2000 11:41:24 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id LAA60018; Fri, 16 Jun 2000 11:41:05 -0700 (PDT) Message-ID: <20000616114105.31356@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 11:41:05 -0700 From: John-Mark Gurney To: Peter Wemm Cc: Marc Slemko , "Daniel O'Connor" , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy References: <20000616095723.6C4771CD7@overcee.netplex.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <20000616095723.6C4771CD7@overcee.netplex.com.au>; from Peter Wemm on Fri, Jun 16, 2000 at 02:57:23AM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Peter Wemm scribbled this message on Jun 16: > (FYI, we have FTP and real-audio support code in the netinet stack) well, if you call ipfilter part of the netinet stack... last time I checked IPFILTER was not normally comiled into the kernel... -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:57: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FA0A37C110; Fri, 16 Jun 2000 11:56:58 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA99892; Fri, 16 Jun 2000 11:56:58 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161856.LAA99892@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 11:56:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 11:56:58 PDT Modified files: (Branch: RELENG_4) share/termcap termcap.src Log: MFC 1.92: kterm-color entry. Approved by: ache Revision Changes Path 1.89.2.3 +3 -1 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 11:57:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F07937C02B; Fri, 16 Jun 2000 11:57:38 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA00115; Fri, 16 Jun 2000 11:57:38 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161857.LAA00115@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 11:57:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/termcap termcap.src Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 11:57:38 PDT Modified files: (Branch: RELENG_3) share/termcap termcap.src Log: MFC 1.92: kterm-color entry. Approved by: ache Revision Changes Path 1.84.2.5 +3 -1 src/share/termcap/termcap.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12: 3: 6 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 67DE937C098; Fri, 16 Jun 2000 12:03:02 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA01003; Fri, 16 Jun 2000 12:03:02 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161903.MAA01003@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 12:03:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/30upgrade/pkg PLIST ports/misc/31upgrade/pkg PLIST ports/misc/32upgrade/pkg PLIST ports/misc/34upgrade/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 12:03:02 PDT Modified files: misc/30upgrade/pkg PLIST misc/31upgrade/pkg PLIST misc/32upgrade/pkg PLIST misc/34upgrade/pkg PLIST Log: Add /usr/share/misc/termcap{,.db} for xterm/xterm-color fix and kterm-color addition. Revision Changes Path 1.8 +2 -0 ports/misc/30upgrade/pkg/PLIST 1.6 +2 -0 ports/misc/31upgrade/pkg/PLIST 1.4 +2 -0 ports/misc/32upgrade/pkg/PLIST 1.3 +2 -0 ports/misc/34upgrade/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12: 5:20 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id E689537B712; Fri, 16 Jun 2000 12:05:13 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p10-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.11]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id EAA02084; Sat, 17 Jun 2000 04:05:07 +0900 (JST) Message-ID: <394A7A9D.5A354553@newsguy.com> Date: Sat, 17 Jun 2000 04:06:05 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: "Daniel O'Connor" Cc: Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Daniel O'Connor wrote: > > > The correct here is find _why_ there is a performance impact if this > > delay accept feature is not used, and fix _that_ instead. > > Well, my naivity abounds, but I would have thought it was because you do an > accept() which returns and then immediatly you go back to waiting on select(). Use kqueue then. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12: 8:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DD15337B542; Fri, 16 Jun 2000 12:08:20 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA02578; Fri, 16 Jun 2000 12:08:20 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161908.MAA02578@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 12:08:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.local.dist BSD.x11.dist Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 12:08:19 PDT Modified files: etc/mtree BSD.local.dist BSD.x11.dist Log: Add a few directories that were shared by a lot of ports: section 3 of perl man pages and site_perl directories for alpha and i386 in /usr/local, and share/aclocal and share/doc/ja in /usr/local and /usr/X11R6. Reviewed by: the ports list Approved by: steve (alpha part) Revision Changes Path 1.56 +25 -1 src/etc/mtree/BSD.local.dist 1.12 +5 -1 src/etc/mtree/BSD.x11.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:16:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A73CE37B828; Fri, 16 Jun 2000 12:16:37 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA03777; Fri, 16 Jun 2000 12:16:37 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161916.MAA03777@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 12:16:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/colorls Makefile ports/misc/colorls/files md5 ports/misc/colorls/patches patch-aa Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 12:16:37 PDT Modified files: misc/colorls Makefile misc/colorls/files md5 misc/colorls/patches patch-aa Log: Update colorls to use a new tarball (now 3-stable based) and use ache's improvements instead of my own hack. Note that you need a "color-capable" terminal to use it -- in particular, this means set your TERM to "xterm-color" or "kterm-color" when using normal xterm or kterm, not "xterm" or "kterm" (which termcap doesn't know that are color-capable). Revision Changes Path 1.24 +4 -4 ports/misc/colorls/Makefile 1.8 +1 -1 ports/misc/colorls/files/md5 1.11 +304 -106 ports/misc/colorls/patches/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:18:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 91F7037B542; Fri, 16 Jun 2000 12:18:40 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA04040; Fri, 16 Jun 2000 12:18:40 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161918.MAA04040@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 12:18:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/colorls/pkg DESCR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 12:18:40 PDT Modified files: misc/colorls/pkg DESCR Log: Update DESCR to mach reality.. Revision Changes Path 1.4 +7 -6 ports/misc/colorls/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:19:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D741E37B96D; Fri, 16 Jun 2000 12:19:41 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA04247; Fri, 16 Jun 2000 12:19:41 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006161919.MAA04247@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 12:19:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 12:19:41 PDT Modified files: . avail Log: Lock up the ports tree for a couple of hours while I work on the release. Revision Changes Path 1.119 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:21:16 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id A01C937C071; Fri, 16 Jun 2000 12:21:04 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p10-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.11]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id EAA21323; Sat, 17 Jun 2000 04:20:00 +0900 (JST) Message-ID: <394A7E19.3490192D@newsguy.com> Date: Sat, 17 Jun 2000 04:20:57 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Nate Williams Cc: Garrett Wollman , Peter Wemm , Marc Slemko , "Daniel O'Connor" , Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy References: <20000616095723.6C4771CD7@overcee.netplex.com.au> <200006161640.MAA18110@khavrinen.lcs.mit.edu> <200006161646.KAA01076@nomad.yogotech.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Nate Williams wrote: > > This isn't to say that you wouldn't still get an accept hit upon the > initial receipt, and then you would be required to call select again on > the new socket and get a hit again when it actually received the > request, but that's only two switches, no more. Moreover, *that* can be handled by the _OTHER_ socket option, the generic delay accept, that no one has objected to. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:28:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ED71837B545; Fri, 16 Jun 2000 12:28:21 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05266; Fri, 16 Jun 2000 12:28:21 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006161928.MAA05266@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 12:28:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en where.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 12:28:21 PDT Modified files: en where.sgml Log: Bring this up-to-date with reality. PR: 19074 Submitted by: Daniel Harris Revision Changes Path 1.43 +20 -24 www/en/where.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:29:37 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8368037BA20; Fri, 16 Jun 2000 12:29:30 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA05382; Fri, 16 Jun 2000 12:29:30 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006161929.MAA05382@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 12:29:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en availability.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 12:29:30 PDT Modified files: en availability.sgml Log: Add a link to where.html. Partially suggested by: Daniel Harris Revision Changes Path 1.23 +8 -6 www/en/availability.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:43:27 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id D874737B79A; Fri, 16 Jun 2000 12:43:21 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p10-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.11]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id EAA21312; Sat, 17 Jun 2000 04:43:12 +0900 (JST) Message-ID: <394A838A.F3417365@newsguy.com> Date: Sat, 17 Jun 2000 04:44:10 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: Marc Slemko Cc: John-Mark Gurney , Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/syssocket.h References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Marc Slemko wrote: > > Actually, no, it should not be a generalized to be fully able to grok > all possible requests. While I agree that this sort of hardcoded gunk > isn't necessarily appropriate where it is (or even useful for > performance, outside of very constrained benchmark situations), if you > are going to add special code to the kernel, then you want to keep a > small fast path in the kernel that covers the common case. You can Look at the code. It won't matter. bcmp(..., "GET ") || bcmp(..., "POST ") Additional || conditions won't be evaluated if the previous succeed. Since the point here is avoiding context switches, the fail path is of little consequence performance-wise. If it were otherwise, a case could be made of using a BM compare instead of the straight-forward stuff above. After seeing the code, I can't see why can't userland provide the strings to be matched. -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 12:52:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E2C9137B8B1; Fri, 16 Jun 2000 12:52:37 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA07966; Fri, 16 Jun 2000 12:52:37 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006161952.MAA07966@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 12:52:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 12:52:37 PDT Modified files: en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Log: Add info on tags for 4.0-RELEASE and 4.0-STABLE, and change some examples to use RELENG_3 instead of the more obsolete RELENG_2_2. PR: 18832 Submitted by: Ben Smithurst Revision Changes Path 1.50 +22 -5 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 13:12:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 578DF37C07A; Fri, 16 Jun 2000 13:12:51 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA12023; Fri, 16 Jun 2000 13:12:51 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006162012.NAA12023@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 13:12:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/pine4/pkg PLIST Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 13:12:51 PDT Modified files: mail/pine4/pkg PLIST Log: Remove pine.conf upon deinstallation if unchanged. Reviewed by: maintainer Revision Changes Path 1.14 +3 -0 ports/mail/pine4/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 13:14:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 71E4237B580; Fri, 16 Jun 2000 13:14:44 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA12344; Fri, 16 Jun 2000 13:14:44 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Message-Id: <200006162014.NAA12344@freefall.freebsd.org> From: Bill Paul Date: Fri, 16 Jun 2000 13:14:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wpaul 2000/06/16 13:14:43 PDT Modified files: sys/sys sockio.h sys/net if.c sbin/ifconfig ifconfig.8 ifconfig.c Log: Implement SIOCSIFLLADDR, which allows you to change the link-level address on an interface. This basically allows you to do what my little setmac module/utility does via ifconfig. This involves the following changes: socket.h: define SIOCSIFLLADDR if.c: add support for SIOCSIFLLADDR, which resets the values in the arpcom struct and sockaddr_dl for the specified interface. Note that if the interface is already up, we need to down/up it in order to program the underlying hardware's receive filter. ifconfig.c: add lladdr command ifconfig.8: document lladdr command You can now force the MAC address on any ethernet interface to be whatever you want. (The change is not sticky across reboots of course: we don't actually reprogram the EEPROM or anything.) Actually, you can reprogram the MAC address on other kinds of interfaces too; this shouldn't be ethernet-specific (though at the moment it's limited to 6 bytes of address data). Nobody ran up to me and said "this is the politically correct way to do this!" so I don't want to hear any complaints from people who think I could have done it more elegantly. Consider yourselves lucky I didn't do it by having ifconfig tread all over /dev/kmem. Revision Changes Path 1.15 +2 -1 src/sys/sys/sockio.h 1.87 +31 -1 src/sys/net/if.c 1.29 +11 -1 src/sbin/ifconfig/ifconfig.8 1.52 +27 -2 src/sbin/ifconfig/ifconfig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 13:21:30 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id AF95737B680; Fri, 16 Jun 2000 13:21:19 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA08187; Fri, 16 Jun 2000 21:17:09 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id VAA02121; Fri, 16 Jun 2000 21:17:07 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200006162017.VAA02121@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Bill Fumerola Cc: Brian Somers , Garrett Wollman , "Daniel C. Sobral" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, brian@hak.lan.awfulhak.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: Message from Bill Fumerola of "Fri, 16 Jun 2000 14:17:32 EDT." <20000616141732.E8523@jade.chc-chimes.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 16 Jun 2000 21:17:07 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Fri, Jun 16, 2000 at 06:37:48PM +0100, Brian Somers wrote: > > > > > If natd had been written in the kernel (which no-one would have objected > > > > to), you would have the exact above scenario. > > > > > > I would have, strenuously. > > > > Is there a big difference between natd and ipnat ? Or do you object > > to ipnat ? > > I was going to mention that, but I don't use ipfilter and hadn't looked > to see how application specific ipnat gets. I'm no expert with ipnat either - it may be ``cleaner'' than libalias in that it may avoid protocol-specific knowledge (I think you need a plug-in to do active ftp properly for example, and all the other protocols have to be done via a proxy), but then you can argue that NATing is a disgusting hak anyway.... > -- > Bill Fumerola - Network Architect / Computer Horizons Corp - CVM > e-mail: billf@chc-chimes.com / billf@FreeBSD.org -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 13:32: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A96AC37B680; Fri, 16 Jun 2000 13:31:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from localhost (kris@localhost) by freefall.freebsd.org (8.9.3/8.9.2) with ESMTP id NAA14622; Fri, 16 Jun 2000 13:31:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: kris owned process doing -bs Date: Fri, 16 Jun 2000 13:31:55 -0700 (PDT) From: Kris Kennaway To: Bill Paul Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-Reply-To: <200006162014.NAA12344@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I wonder if there's an argument for making this protected at high securelevels? Or would that be pointless since there's another way for root to do this under securelevel? Kris On Fri, 16 Jun 2000, Bill Paul wrote: > wpaul 2000/06/16 13:14:43 PDT > > Modified files: > sys/sys sockio.h > sys/net if.c > sbin/ifconfig ifconfig.8 ifconfig.c > Log: > Implement SIOCSIFLLADDR, which allows you to change the link-level > address on an interface. This basically allows you to do what my > little setmac module/utility does via ifconfig. This involves the > following changes: > > socket.h: define SIOCSIFLLADDR > if.c: add support for SIOCSIFLLADDR, which resets the values in > the arpcom struct and sockaddr_dl for the specified interface. > Note that if the interface is already up, we need to down/up > it in order to program the underlying hardware's receive filter. > ifconfig.c: add lladdr command > ifconfig.8: document lladdr command > > You can now force the MAC address on any ethernet interface to be > whatever you want. (The change is not sticky across reboots of course: > we don't actually reprogram the EEPROM or anything.) Actually, you > can reprogram the MAC address on other kinds of interfaces too; this > shouldn't be ethernet-specific (though at the moment it's limited to > 6 bytes of address data). > > Nobody ran up to me and said "this is the politically correct way to > do this!" so I don't want to hear any complaints from people who think > I could have done it more elegantly. Consider yourselves lucky I didn't > do it by having ifconfig tread all over /dev/kmem. > > Revision Changes Path > 1.15 +2 -1 src/sys/sys/sockio.h > 1.87 +31 -1 src/sys/net/if.c > 1.29 +11 -1 src/sbin/ifconfig/ifconfig.8 > 1.52 +27 -2 src/sbin/ifconfig/ifconfig.c > > > -- In God we Trust -- all others must submit an X.509 certificate. -- Charles Forsythe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 13:36:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B5C7D37B534; Fri, 16 Jun 2000 13:36:17 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: (from ru@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA15172; Fri, 16 Jun 2000 13:36:17 -0700 (PDT) (envelope-from ru@FreeBSD.org) Message-Id: <200006162036.NAA15172@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Jun 2000 13:36:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libalias alias_ftp.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ru 2000/06/16 13:36:17 PDT Modified files: lib/libalias alias_ftp.c Log: - Improved passive mode FTP support by aliasing 229 replies. - Stricter checking of PORT/EPRT/227/229 messages format. - Moved all security checks into one place. Revision Changes Path 1.8 +342 -317 src/lib/libalias/alias_ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 14:21:28 2000 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id 7A02537C0A9; Fri, 16 Jun 2000 14:21:19 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.awfulhak.org [172.16.0.12]) by Awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA08470; Fri, 16 Jun 2000 22:19:30 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id WAA02547; Fri, 16 Jun 2000 22:19:27 +0100 (BST) (envelope-from brian@Awfulhak.org) Message-Id: <200006162119.WAA02547@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Bill Paul Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.awfulhak.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-Reply-To: Message from Bill Paul of "Fri, 16 Jun 2000 13:14:43 PDT." <200006162014.NAA12344@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 16 Jun 2000 22:19:27 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Cool. So when's the ``setmac'' port being committed ? > wpaul 2000/06/16 13:14:43 PDT > > Modified files: > sys/sys sockio.h > sys/net if.c > sbin/ifconfig ifconfig.8 ifconfig.c > Log: > Implement SIOCSIFLLADDR, which allows you to change the link-level > address on an interface. This basically allows you to do what my > little setmac module/utility does via ifconfig. This involves the > following changes: > > socket.h: define SIOCSIFLLADDR > if.c: add support for SIOCSIFLLADDR, which resets the values in > the arpcom struct and sockaddr_dl for the specified interface. > Note that if the interface is already up, we need to down/up > it in order to program the underlying hardware's receive filter. > ifconfig.c: add lladdr command > ifconfig.8: document lladdr command > > You can now force the MAC address on any ethernet interface to be > whatever you want. (The change is not sticky across reboots of course: > we don't actually reprogram the EEPROM or anything.) Actually, you > can reprogram the MAC address on other kinds of interfaces too; this > shouldn't be ethernet-specific (though at the moment it's limited to > 6 bytes of address data). > > Nobody ran up to me and said "this is the politically correct way to > do this!" so I don't want to hear any complaints from people who think > I could have done it more elegantly. Consider yourselves lucky I didn't > do it by having ifconfig tread all over /dev/kmem. > > Revision Changes Path > 1.15 +2 -1 src/sys/sys/sockio.h > 1.87 +31 -1 src/sys/net/if.c > 1.29 +11 -1 src/sbin/ifconfig/ifconfig.8 > 1.52 +27 -2 src/sbin/ifconfig/ifconfig.c -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 14:31:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 733D737B814; Fri, 16 Jun 2000 14:31:27 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA23336; Fri, 16 Jun 2000 14:31:27 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006162131.OAA23336@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 14:31:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnome-icu Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 14:31:27 PDT Modified files: net/gnome-icu Makefile Log: Fix typo (database -> databases) that killed INDEX build. Revision Changes Path 1.23 +2 -2 ports/net/gnome-icu/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 14:53: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A34DA37B9F3; Fri, 16 Jun 2000 14:52:42 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id OAA30971; Fri, 16 Jun 2000 14:52:42 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006162152.OAA30971@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 14:52:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ORBacus Makefile ports/devel/ORBit Makefile ports/devel/SWIG Makefile ports/devel/amulet Makefile ports/devel/bonobo Makefile ports/devel/cdk Makefile ports/devel/fastcrc Makefile ports/devel/lwp Makefile ... Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 14:52:41 PDT Modified files: devel/ORBacus Makefile devel/ORBit Makefile devel/SWIG Makefile devel/amulet Makefile devel/bonobo Makefile devel/cdk Makefile devel/fastcrc Makefile devel/lwp Makefile devel/gettext Makefile devel/freelibiberty Makefile devel/glib12 Makefile devel/libol Makefile devel/libPropList Makefile devel/libU77 Makefile devel/libdlmalloc Makefile devel/libffi Makefile devel/libgetline Makefile devel/libglade Makefile devel/libgnugetopt Makefile devel/libgtop Makefile devel/libmalloc Makefile devel/libshhmsg Makefile devel/libshhopt Makefile devel/libslang Makefile devel/libxalloc Makefile devel/oaf Makefile devel/mico Makefile devel/mm Makefile devel/omniORB Makefile devel/pth Makefile devel/pth-devel Makefile devel/sdl Makefile devel/swarm Makefile devel/tvision Makefile devel/str Makefile devel/popt Makefile devel/flux Makefile devel/libgii Makefile devel/libsigc++ Makefile devel/libcache Makefile devel/newt Makefile devel/sip Makefile devel/sdl-devel Makefile devel/rpc2 Makefile devel/rvm Makefile cad/geda Makefile archivers/bzip2 Makefile archivers/lzo Makefile audio/esound Makefile audio/gsm Makefile audio/libaudiofile Makefile audio/libcdaudio Makefile audio/libmikmod Makefile audio/libworkman Makefile audio/nas Makefile audio/sidplay Makefile audio/sphinx Makefile audio/xmms Makefile audio/wsoundserver Makefile audio/libshout Makefile converters/kdesupport11 Makefile converters/kdesupport11-i18n Makefile converters/libutf-8 Makefile converters/recode Makefile converters/uulib Makefile converters/iconv Makefile converters/kdesupport2 Makefile databases/db Makefile databases/gdbm Makefile databases/typhoon Makefile databases/freetds Makefile databases/metakit Makefile databases/unixODBC Makefile editors/cooledit Makefile editors/koffice Makefile emulators/wine Makefile emulators/twin Makefile games/gnomegames Makefile games/libshhcards Makefile games/powerpak Makefile graphics/Cgraph Makefile graphics/EZWGL Makefile graphics/Hermes Makefile graphics/ImageMagick Makefile graphics/aalib Makefile graphics/fnlib Makefile graphics/gd Makefile graphics/gimp1 Makefile graphics/gphoto Makefile graphics/gtkdps Makefile graphics/imlib Makefile graphics/jbigkit Makefile graphics/jpeg Makefile graphics/lfview Makefile graphics/libimg Makefile graphics/libwmf Makefile graphics/mpeg-lib Makefile graphics/netpbm Makefile graphics/pgplot Makefile graphics/plotutils Makefile graphics/png Makefile graphics/sane Makefile graphics/tiff Makefile graphics/tifmerge Makefile graphics/urt Makefile graphics/xpm Makefile graphics/gdk-pixbuf Makefile graphics/libungif Makefile graphics/libggi Makefile graphics/smpeg Makefile graphics/diacanvas Makefile graphics/libdjvu++ Makefile graphics/twinlib Makefile japanese/Canna Makefile japanese/Wnn Makefile japanese/Wnn6-lib Makefile japanese/pine Makefile japanese/eb Makefile japanese/ptex-common Makefile japanese/tcl76 Makefile japanese/tk42 Makefile japanese/vflib Makefile japanese/libjcode Makefile lang/cim Makefile lang/expect Makefile lang/guile Makefile lang/itcl Makefile lang/tcl82 Makefile lang/rexx-imc Makefile lang/ruby Makefile lang/schemetoc Makefile lang/tcl80 Makefile lang/librep Makefile lang/tclX80 Makefile lang/tcl81-thread Makefile lang/siod Makefile lang/otcl Makefile lang/tcl83 Makefile mail/faces Makefile mail/imap-uw Makefile mail/mh Makefile math/blas Makefile math/eispack Makefile math/fftpack Makefile math/gnumeric Makefile math/lapack Makefile math/libranlib Makefile math/linpack Makefile math/pari Makefile math/plplot Makefile math/simpack Makefile math/dcdflib Makefile math/fftw Makefile math/vtk Makefile math/netcdf Makefile math/gsl Makefile misc/amanda24 Makefile misc/gtl Makefile misc/xdelta Makefile misc/cassowary Makefile misc/kdeutils2 Makefile net/rrdtool Makefile net/hesiod Makefile net/libsocket++ Makefile net/radiusclient Makefile net/socks5 Makefile net/ucd-snmp Makefile net/icqlib Makefile net/tn5250 Makefile net/libicq Makefile net/libsmi Makefile net/gnet Makefile net/kdenetwork11-i18n Makefile net/adns Makefile net/libetherx Makefile net/libjabber Makefile net/kdenetwork2 Makefile print/a2ps-letter Makefile print/freetype Makefile print/gnomeprint Makefile print/pdflib Makefile security/krb5 Makefile security/rsaref Makefile security/tcp_wrapper Makefile security/libparanoia Makefile security/libmcrypt Makefile security/mhash Makefile security/heimdal Makefile security/librc4 Makefile security/cyrus-sasl Makefile security/librsaintl Makefile sysutils/gnomecontrolcenter Makefile java/kaffe Makefile textproc/jade Makefile textproc/libxml Makefile textproc/sp Makefile textproc/aspell Makefile textproc/cole Makefile textproc/xls2xml Makefile textproc/libxode Makefile textproc/pspell Makefile www/gtkhtml Makefile www/cgihtml Makefile www/libxpg4-ns Makefile www/libghttp Makefile www/cgic Makefile x11/XFree86 Makefile x11/XFree86-aoutlibs Makefile x11/kdebase2 Makefile x11/kdelibs2 Makefile x11/dgs Makefile x11/eterm Makefile x11/gnomecore Makefile x11/gnomelibs Makefile x11/libdnd Makefile x11/XFree86-4-clients Makefile x11/XFree86-4-libraries Makefile x11/kdelibs11 Makefile x11/kdelibs11-i18n Makefile x11-toolkits/Xaw3d Makefile x11-toolkits/blt Makefile x11-toolkits/itk Makefile x11-toolkits/gtk-- Makefile x11-toolkits/tk83 Makefile x11-toolkits/jx Makefile x11-toolkits/iv Makefile x11-toolkits/lesstif Makefile x11-toolkits/neXtaw Makefile x11-toolkits/gtk10 Makefile x11-toolkits/qt-i18n Makefile x11-toolkits/fltk Makefile x11-toolkits/gtk12 Makefile x11-toolkits/slingshot Makefile x11-toolkits/tix Makefile x11-toolkits/tk80 Makefile x11-toolkits/tkstep80 Makefile x11-toolkits/xbae Makefile x11-toolkits/xforms Makefile x11-toolkits/wxgtk Makefile x11-toolkits/vdk Makefile x11-toolkits/qt21 Makefile x11-toolkits/gtkglarea Makefile x11-toolkits/xview Makefile x11-toolkits/qt145 Makefile x11-toolkits/tk82 Makefile x11-toolkits/guile-gtk Makefile x11-toolkits/vdkbuilder Makefile x11-toolkits/fox Makefile x11-toolkits/kde-qt-addon Makefile x11-toolkits/guile-gnome Makefile x11-toolkits/libjsearch Makefile x11-toolkits/libjtoolbar Makefile x11-toolkits/libjtree Makefile x11-wm/windowmaker Makefile x11-wm/windowmaker-i18n Makefile x11-wm/scwm Makefile x11-wm/libdockapp Makefile x11-wm/epplets Makefile ftp/ncftp3 Makefile x11-servers/XttXF86srv-common Makefile palm/pilot-link Makefile palm/gnomepilot Makefile Mk bsd.port.mk Log: Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in the previous commit message to bsd.port.mk, which said INSTALL_SHLIBS. Boo.) Line up the rhs of variable assignments nicely. Remove a couple of extra whitespaces while I'm here. Suggested by: sobomax Revision Changes Path 1.32 +2 -2 ports/devel/ORBacus/Makefile 1.32 +2 -2 ports/devel/ORBit/Makefile 1.28 +3 -3 ports/devel/SWIG/Makefile 1.12 +2 -2 ports/devel/amulet/Makefile 1.16 +2 -2 ports/devel/bonobo/Makefile 1.10 +2 -2 ports/devel/cdk/Makefile 1.8 +2 -2 ports/devel/fastcrc/Makefile 1.3 +2 -2 ports/devel/lwp/Makefile 1.21 +2 -2 ports/devel/gettext/Makefile 1.6 +2 -2 ports/devel/freelibiberty/Makefile 1.32 +2 -2 ports/devel/glib12/Makefile 1.3 +2 -2 ports/devel/libol/Makefile 1.15 +2 -2 ports/devel/libPropList/Makefile 1.8 +2 -2 ports/devel/libU77/Makefile 1.16 +2 -2 ports/devel/libdlmalloc/Makefile 1.14 +2 -2 ports/devel/libffi/Makefile 1.8 +2 -2 ports/devel/libgetline/Makefile 1.15 +2 -2 ports/devel/libglade/Makefile 1.13 +2 -2 ports/devel/libgnugetopt/Makefile 1.32 +2 -2 ports/devel/libgtop/Makefile 1.24 +2 -2 ports/devel/libmalloc/Makefile 1.7 +2 -2 ports/devel/libshhmsg/Makefile 1.9 +2 -2 ports/devel/libshhopt/Makefile 1.21 +2 -2 ports/devel/libslang/Makefile 1.7 +2 -2 ports/devel/libxalloc/Makefile 1.4 +2 -2 ports/devel/oaf/Makefile 1.44 +2 -2 ports/devel/mico/Makefile 1.22 +2 -2 ports/devel/mm/Makefile 1.13 +2 -2 ports/devel/omniORB/Makefile 1.50 +2 -2 ports/devel/pth/Makefile 1.28 +2 -2 ports/devel/pth-devel/Makefile 1.17 +2 -2 ports/devel/sdl/Makefile 1.11 +2 -2 ports/devel/swarm/Makefile 1.16 +2 -2 ports/devel/tvision/Makefile 1.7 +2 -2 ports/devel/str/Makefile 1.9 +2 -2 ports/devel/popt/Makefile 1.5 +2 -2 ports/devel/flux/Makefile 1.4 +2 -2 ports/devel/libgii/Makefile 1.6 +2 -2 ports/devel/libsigc++/Makefile 1.5 +2 -2 ports/devel/libcache/Makefile 1.8 +2 -2 ports/devel/newt/Makefile 1.5 +2 -2 ports/devel/sip/Makefile 1.20 +2 -2 ports/devel/sdl-devel/Makefile 1.4 +2 -2 ports/devel/rpc2/Makefile 1.4 +2 -2 ports/devel/rvm/Makefile 1.19 +2 -2 ports/cad/geda/Makefile 1.30 +2 -2 ports/archivers/bzip2/Makefile 1.14 +2 -2 ports/archivers/lzo/Makefile 1.21 +2 -2 ports/audio/esound/Makefile 1.17 +2 -2 ports/audio/gsm/Makefile 1.14 +2 -2 ports/audio/libaudiofile/Makefile 1.11 +2 -2 ports/audio/libcdaudio/Makefile 1.14 +2 -2 ports/audio/libmikmod/Makefile 1.8 +2 -2 ports/audio/libworkman/Makefile 1.17 +2 -2 ports/audio/nas/Makefile 1.11 +2 -2 ports/audio/sidplay/Makefile 1.6 +2 -2 ports/audio/sphinx/Makefile 1.14 +3 -3 ports/audio/xmms/Makefile 1.16 +2 -2 ports/audio/wsoundserver/Makefile 1.3 +2 -2 ports/audio/libshout/Makefile 1.31 +2 -2 ports/converters/kdesupport11/Makefile 1.37 +2 -2 ports/converters/kdesupport11-i18n/Makefile 1.7 +2 -2 ports/converters/libutf-8/Makefile 1.12 +2 -2 ports/converters/recode/Makefile 1.25 +2 -2 ports/converters/uulib/Makefile 1.4 +2 -2 ports/converters/iconv/Makefile 1.33 +2 -2 ports/converters/kdesupport2/Makefile 1.21 +2 -2 ports/databases/db/Makefile 1.12 +2 -2 ports/databases/gdbm/Makefile 1.13 +2 -2 ports/databases/typhoon/Makefile 1.7 +2 -2 ports/databases/freetds/Makefile 1.5 +2 -2 ports/databases/metakit/Makefile 1.6 +2 -2 ports/databases/unixODBC/Makefile 1.25 +2 -2 ports/editors/cooledit/Makefile 1.3 +2 -2 ports/editors/koffice/Makefile 1.84 +2 -2 ports/emulators/wine/Makefile 1.7 +2 -2 ports/emulators/twin/Makefile 1.26 +2 -2 ports/games/gnomegames/Makefile 1.13 +2 -2 ports/games/libshhcards/Makefile 1.17 +2 -2 ports/games/powerpak/Makefile 1.8 +2 -2 ports/graphics/Cgraph/Makefile 1.25 +2 -2 ports/graphics/EZWGL/Makefile 1.13 +2 -2 ports/graphics/Hermes/Makefile 1.85 +2 -2 ports/graphics/ImageMagick/Makefile 1.15 +2 -2 ports/graphics/aalib/Makefile 1.18 +2 -2 ports/graphics/fnlib/Makefile 1.26 +2 -2 ports/graphics/gd/Makefile 1.75 +2 -2 ports/graphics/gimp1/Makefile 1.12 +2 -2 ports/graphics/gphoto/Makefile 1.17 +2 -2 ports/graphics/gtkdps/Makefile 1.67 +2 -2 ports/graphics/imlib/Makefile 1.15 +2 -2 ports/graphics/jbigkit/Makefile 1.23 +2 -2 ports/graphics/jpeg/Makefile 1.6 +2 -2 ports/graphics/lfview/Makefile 1.8 +2 -2 ports/graphics/libimg/Makefile 1.13 +2 -2 ports/graphics/libwmf/Makefile 1.18 +2 -2 ports/graphics/mpeg-lib/Makefile 1.34 +2 -2 ports/graphics/netpbm/Makefile 1.15 +2 -2 ports/graphics/pgplot/Makefile 1.15 +2 -2 ports/graphics/plotutils/Makefile 1.26 +2 -2 ports/graphics/png/Makefile 1.26 +2 -2 ports/graphics/sane/Makefile 1.29 +2 -2 ports/graphics/tiff/Makefile 1.10 +2 -2 ports/graphics/tifmerge/Makefile 1.24 +2 -2 ports/graphics/urt/Makefile 1.30 +2 -2 ports/graphics/xpm/Makefile 1.13 +2 -2 ports/graphics/gdk-pixbuf/Makefile 1.14 +2 -2 ports/graphics/libungif/Makefile 1.4 +2 -2 ports/graphics/libggi/Makefile 1.10 +2 -2 ports/graphics/smpeg/Makefile 1.5 +2 -2 ports/graphics/diacanvas/Makefile 1.4 +2 -2 ports/graphics/libdjvu++/Makefile 1.7 +2 -2 ports/graphics/twinlib/Makefile 1.33 +2 -2 ports/japanese/Canna/Makefile 1.31 +2 -2 ports/japanese/Wnn/Makefile 1.27 +2 -2 ports/japanese/Wnn6-lib/Makefile 1.23 +2 -2 ports/japanese/pine/Makefile 1.18 +2 -2 ports/japanese/eb/Makefile 1.33 +2 -2 ports/japanese/ptex-common/Makefile 1.14 +2 -2 ports/japanese/tcl76/Makefile 1.14 +2 -2 ports/japanese/tk42/Makefile 1.27 +2 -2 ports/japanese/vflib/Makefile 1.5 +2 -2 ports/japanese/libjcode/Makefile 1.16 +2 -2 ports/lang/cim/Makefile 1.49 +2 -2 ports/lang/expect/Makefile 1.26 +2 -2 ports/lang/guile/Makefile 1.28 +2 -2 ports/lang/itcl/Makefile 1.31 +2 -2 ports/lang/tcl82/Makefile 1.15 +2 -2 ports/lang/rexx-imc/Makefile 1.23 +2 -2 ports/lang/ruby/Makefile 1.19 +2 -2 ports/lang/schemetoc/Makefile 1.28 +2 -2 ports/lang/tcl80/Makefile 1.12 +2 -2 ports/lang/librep/Makefile 1.35 +2 -2 ports/lang/tclX80/Makefile 1.12 +2 -2 ports/lang/tcl81-thread/Makefile 1.9 +2 -2 ports/lang/siod/Makefile 1.11 +3 -3 ports/lang/otcl/Makefile 1.35 +2 -2 ports/lang/tcl83/Makefile 1.14 +2 -2 ports/mail/faces/Makefile 1.41 +2 -2 ports/mail/imap-uw/Makefile 1.22 +2 -2 ports/mail/mh/Makefile 1.28 +2 -2 ports/math/blas/Makefile 1.27 +2 -2 ports/math/eispack/Makefile 1.15 +2 -2 ports/math/fftpack/Makefile 1.34 +2 -2 ports/math/gnumeric/Makefile 1.20 +2 -2 ports/math/lapack/Makefile 1.11 +2 -2 ports/math/libranlib/Makefile 1.27 +2 -2 ports/math/linpack/Makefile 1.16 +2 -2 ports/math/pari/Makefile 1.16 +2 -2 ports/math/plplot/Makefile 1.14 +2 -2 ports/math/simpack/Makefile 1.5 +2 -2 ports/math/dcdflib/Makefile 1.11 +2 -2 ports/math/fftw/Makefile 1.11 +2 -2 ports/math/vtk/Makefile 1.7 +2 -2 ports/math/netcdf/Makefile 1.5 +2 -2 ports/math/gsl/Makefile 1.30 +2 -2 ports/misc/amanda24/Makefile 1.5 +2 -2 ports/misc/gtl/Makefile 1.24 +2 -2 ports/misc/xdelta/Makefile 1.10 +2 -2 ports/misc/cassowary/Makefile 1.41 +2 -2 ports/misc/kdeutils2/Makefile 1.13 +2 -2 ports/net/rrdtool/Makefile 1.11 +2 -2 ports/net/hesiod/Makefile 1.12 +2 -2 ports/net/libsocket++/Makefile 1.11 +2 -2 ports/net/radiusclient/Makefile 1.31 +2 -2 ports/net/socks5/Makefile 1.47 +2 -2 ports/net/ucd-snmp/Makefile 1.8 +2 -2 ports/net/icqlib/Makefile 1.8 +2 -2 ports/net/tn5250/Makefile 1.12 +2 -2 ports/net/libicq/Makefile 1.4 +2 -2 ports/net/libsmi/Makefile 1.9 +2 -2 ports/net/gnet/Makefile 1.54 +2 -2 ports/net/kdenetwork11-i18n/Makefile 1.6 +2 -2 ports/net/adns/Makefile 1.4 +2 -2 ports/net/libetherx/Makefile 1.4 +2 -2 ports/net/libjabber/Makefile 1.45 +2 -2 ports/net/kdenetwork2/Makefile 1.36 +2 -2 ports/print/a2ps-letter/Makefile 1.19 +2 -2 ports/print/freetype/Makefile 1.23 +2 -2 ports/print/gnomeprint/Makefile 1.11 +2 -2 ports/print/pdflib/Makefile 1.19 +2 -2 ports/security/krb5/Makefile 1.21 +2 -2 ports/security/rsaref/Makefile 1.28 +2 -2 ports/security/tcp_wrapper/Makefile 1.7 +2 -2 ports/security/libparanoia/Makefile 1.13 +2 -2 ports/security/libmcrypt/Makefile 1.9 +2 -2 ports/security/mhash/Makefile 1.19 +2 -2 ports/security/heimdal/Makefile 1.4 +2 -2 ports/security/librc4/Makefile 1.10 +2 -2 ports/security/cyrus-sasl/Makefile 1.10 +2 -2 ports/security/librsaintl/Makefile 1.22 +2 -2 ports/sysutils/gnomecontrolcenter/Makefile 1.50 +2 -2 ports/java/kaffe/Makefile 1.25 +2 -2 ports/textproc/jade/Makefile 1.24 +2 -2 ports/textproc/libxml/Makefile 1.18 +2 -2 ports/textproc/sp/Makefile 1.20 +2 -2 ports/textproc/aspell/Makefile 1.5 +2 -2 ports/textproc/cole/Makefile 1.6 +2 -2 ports/textproc/xls2xml/Makefile 1.4 +2 -2 ports/textproc/libxode/Makefile 1.5 +2 -2 ports/textproc/pspell/Makefile 1.3 +2 -2 ports/www/gtkhtml/Makefile 1.8 +2 -2 ports/www/cgihtml/Makefile 1.9 +2 -2 ports/www/libxpg4-ns/Makefile 1.18 +2 -2 ports/www/libghttp/Makefile 1.6 +2 -2 ports/www/cgic/Makefile 1.80 +2 -2 ports/x11/XFree86/Makefile 1.9 +2 -2 ports/x11/XFree86-aoutlibs/Makefile 1.50 +2 -2 ports/x11/kdebase2/Makefile 1.51 +2 -2 ports/x11/kdelibs2/Makefile 1.19 +2 -2 ports/x11/dgs/Makefile 1.26 +2 -2 ports/x11/eterm/Makefile 1.42 +2 -2 ports/x11/gnomecore/Makefile 1.60 +2 -2 ports/x11/gnomelibs/Makefile 1.10 +2 -2 ports/x11/libdnd/Makefile 1.84 +2 -2 ports/x11/XFree86-4-clients/Makefile 1.84 +2 -2 ports/x11/XFree86-4-libraries/Makefile 1.46 +2 -2 ports/x11/kdelibs11/Makefile 1.52 +2 -2 ports/x11/kdelibs11-i18n/Makefile 1.32 +2 -2 ports/x11-toolkits/Xaw3d/Makefile 1.36 +2 -2 ports/x11-toolkits/blt/Makefile 1.6 +2 -2 ports/x11-toolkits/itk/Makefile 1.23 +2 -2 ports/x11-toolkits/gtk--/Makefile 1.41 +2 -2 ports/x11-toolkits/tk83/Makefile 1.4 +2 -2 ports/x11-toolkits/jx/Makefile 1.26 +2 -2 ports/x11-toolkits/iv/Makefile 1.44 +2 -2 ports/x11-toolkits/lesstif/Makefile 1.21 +2 -2 ports/x11-toolkits/neXtaw/Makefile 1.33 +2 -2 ports/x11-toolkits/gtk10/Makefile 1.53 +2 -2 ports/x11-toolkits/qt-i18n/Makefile 1.15 +2 -2 ports/x11-toolkits/fltk/Makefile 1.64 +2 -2 ports/x11-toolkits/gtk12/Makefile 1.14 +2 -2 ports/x11-toolkits/slingshot/Makefile 1.37 +2 -2 ports/x11-toolkits/tix/Makefile 1.26 +2 -2 ports/x11-toolkits/tk80/Makefile 1.29 +2 -2 ports/x11-toolkits/tkstep80/Makefile 1.15 +2 -2 ports/x11-toolkits/xbae/Makefile 1.32 +2 -2 ports/x11-toolkits/xforms/Makefile 1.14 +2 -2 ports/x11-toolkits/wxgtk/Makefile 1.5 +2 -2 ports/x11-toolkits/vdk/Makefile 1.52 +2 -2 ports/x11-toolkits/qt21/Makefile 1.8 +2 -2 ports/x11-toolkits/gtkglarea/Makefile 1.18 +2 -2 ports/x11-toolkits/xview/Makefile 1.46 +2 -2 ports/x11-toolkits/qt145/Makefile 1.37 +2 -2 ports/x11-toolkits/tk82/Makefile 1.7 +2 -2 ports/x11-toolkits/guile-gtk/Makefile 1.5 +2 -2 ports/x11-toolkits/vdkbuilder/Makefile 1.6 +2 -2 ports/x11-toolkits/fox/Makefile 1.3 +2 -2 ports/x11-toolkits/kde-qt-addon/Makefile 1.3 +2 -2 ports/x11-toolkits/guile-gnome/Makefile 1.3 +2 -2 ports/x11-toolkits/libjsearch/Makefile 1.3 +2 -2 ports/x11-toolkits/libjtoolbar/Makefile 1.3 +2 -2 ports/x11-toolkits/libjtree/Makefile 1.71 +2 -2 ports/x11-wm/windowmaker/Makefile 1.75 +2 -2 ports/x11-wm/windowmaker-i18n/Makefile 1.18 +2 -2 ports/x11-wm/scwm/Makefile 1.11 +2 -2 ports/x11-wm/libdockapp/Makefile 1.6 +2 -2 ports/x11-wm/epplets/Makefile 1.78 +2 -2 ports/ftp/ncftp3/Makefile 1.28 +2 -2 ports/x11-servers/XttXF86srv-common/Makefile 1.37 +2 -2 ports/palm/pilot-link/Makefile 1.14 +2 -2 ports/palm/gnomepilot/Makefile 1.340 +6 -6 ports/Mk/bsd.port.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 14:53:34 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id CCE6C37BA81; Fri, 16 Jun 2000 14:53:26 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id OAA62427; Fri, 16 Jun 2000 14:51:46 -0700 (PDT) Message-ID: <20000616145145.45182@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 14:51:45 -0700 From: John-Mark Gurney To: Brian Somers Cc: Bill Paul , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.awfulhak.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c References: <200006162119.WAA02547@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <200006162119.WAA02547@hak.lan.Awfulhak.org>; from Brian Somers on Fri, Jun 16, 2000 at 10:19:27PM +0100 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Brian Somers scribbled this message on Jun 16: > Cool. So when's the ``setmac'' port being committed ? it looks like ifconfig can do this and setmac is not needed anymore.. -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 14:56:46 2000 Delivered-To: cvs-all@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id 491E037B722; Fri, 16 Jun 2000 14:56:41 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id RAA95036; Fri, 16 Jun 2000 17:56:40 -0400 (EDT) Date: Fri, 16 Jun 2000 17:56:40 -0400 (EDT) From: "Matthew N. Dodd" To: Bill Paul Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-Reply-To: <200006162014.NAA12344@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 16 Jun 2000, Bill Paul wrote: > Implement SIOCSIFLLADDR, which allows you to change the link-level > address on an interface. This basically allows you to do what my > little setmac module/utility does via ifconfig. This involves the > following changes: ... > ifconfig.c: add lladdr command > ifconfig.8: document lladdr command Solaris does this via 'ifconfig foo0 ether x:x:x:x:x:x' Non-ethernet cards would likely use 'lladdr'. Won't this difference be somewhat non-intuitive given out ifconfig's use of 'lladdr' and 'ether'? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 15: 1:58 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D170037B880; Fri, 16 Jun 2000 15:01:54 -0700 (PDT) (envelope-from jim@FreeBSD.org) Received: (from jim@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA32319; Fri, 16 Jun 2000 15:01:54 -0700 (PDT) (envelope-from jim@FreeBSD.org) Message-Id: <200006162201.PAA32319@freefall.freebsd.org> From: Jim Mock Date: Fri, 16 Jun 2000 15:01:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jim 2000/06/16 15:01:54 PDT Modified files: en_US.ISO_8859-1/books/handbook/cutting-edge chapter.sgml Log: Explain /etc/make.conf and /etc/defaults/make.conf a little better. While I'm here, fix a borked tag from my last commit that was breaking the build. PR: 18810 Submitted by: Patrick Gosling , alex Revision Changes Path 1.51 +15 -7 doc/en_US.ISO_8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 15: 7:50 2000 Delivered-To: cvs-all@freebsd.org Received: from peach.ocn.ne.jp (peach.ocn.ne.jp [210.145.254.87]) by hub.freebsd.org (Postfix) with ESMTP id 9433437BA32; Fri, 16 Jun 2000 15:07:46 -0700 (PDT) (envelope-from dcs@newsguy.com) Received: from newsguy.com (p10-dn01kiryunisiki.gunma.ocn.ne.jp [211.0.245.11]) by peach.ocn.ne.jp (8.9.1a/OCN/) with ESMTP id HAA07222; Sat, 17 Jun 2000 07:07:41 +0900 (JST) Message-ID: <394AA566.6F954EC6@newsguy.com> Date: Sat, 17 Jun 2000 07:08:38 +0900 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,pt-BR,ja MIME-Version: 1.0 To: "Matthew N. Dodd" Cc: Bill Paul , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Matthew N. Dodd" wrote: > > > ifconfig.c: add lladdr command > > ifconfig.8: document lladdr command > > Solaris does this via 'ifconfig foo0 ether x:x:x:x:x:x' Is Solaris' ifconfig even remotely compatible with ours? > Non-ethernet cards would likely use 'lladdr'. > > Won't this difference be somewhat non-intuitive given out ifconfig's use > of 'lladdr' and 'ether'? RTFM. :) -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@the.great.underground.bsdconpiracy.org "He is my minion, so he doesn't need a name." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 15:56:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 84FCB37BB00; Fri, 16 Jun 2000 15:56:22 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA40923; Fri, 16 Jun 2000 15:56:22 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006162256.PAA40923@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 15:56:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports INDEX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 15:56:22 PDT Modified files: . INDEX Log: A new index, with 3,403 ports, which is a nice number, being 41 times 83. However, more significantly, this is the official index file for 3.5-release (tag: RELEASE_3_5_0). Seems we are about 97 ports short. Revision Changes Path 1.280 +385 -338 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 15:58: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A45E237BB00; Fri, 16 Jun 2000 15:58:03 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA42137; Fri, 16 Jun 2000 15:58:03 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006162258.PAA42137@freefall.freebsd.org> From: Matt Jacob Date: Fri, 16 Jun 2000 15:58:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_wx.c if_wxreg.h if_wxvar.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/16 15:58:03 PDT Modified files: (Branch: RELENG_4) sys/pci if_wx.c if_wxreg.h if_wxvar.h Log: MFC:Fix this driver to (finally) work with switches. Some more black magic from the linux driver. Revision Changes Path 1.5.2.2 +124 -26 src/sys/pci/if_wx.c 1.3.2.1 +33 -1 src/sys/pci/if_wxreg.h 1.4.2.1 +9 -2 src/sys/pci/if_wxvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 16:23:28 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id 3764C37BA63; Fri, 16 Jun 2000 16:23:19 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id QAA63626; Fri, 16 Jun 2000 16:23:14 -0700 (PDT) Message-ID: <20000616162314.49041@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 16:23:14 -0700 From: John-Mark Gurney To: "Matthew N. Dodd" Cc: Bill Paul , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c References: <200006162014.NAA12344@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: ; from Matthew N. Dodd on Fri, Jun 16, 2000 at 05:56:40PM -0400 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matthew N. Dodd scribbled this message on Jun 16: > On Fri, 16 Jun 2000, Bill Paul wrote: > > Implement SIOCSIFLLADDR, which allows you to change the link-level > > address on an interface. This basically allows you to do what my > > little setmac module/utility does via ifconfig. This involves the > > following changes: > ... > > ifconfig.c: add lladdr command > > ifconfig.8: document lladdr command > > Solaris does this via 'ifconfig foo0 ether x:x:x:x:x:x' > > Non-ethernet cards would likely use 'lladdr'. > > Won't this difference be somewhat non-intuitive given out ifconfig's use > of 'lladdr' and 'ether'? consider that we use ether as a display for the MAC: fxp0: flags=8843 mtu 1500 ether 00:a0:c9:3c:5b:93 we should either add an alias for ether, or convert ether over to lladdr.. -- Joh -Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 16:34:51 2000 Delivered-To: cvs-all@freebsd.org Received: from server1.mich.com (server1.mich.com [198.108.16.2]) by hub.freebsd.org (Postfix) with ESMTP id EE49437B6D6; Fri, 16 Jun 2000 16:34:44 -0700 (PDT) (envelope-from will@almanac.yi.org) Received: from argon.gryphonsoft.com (pm004-000.dialup.bignet.net [64.79.80.144]) by server1.mich.com (8.9.3/8.9.3) with ESMTP id TAA27199; Fri, 16 Jun 2000 19:34:42 -0400 Received: by argon.gryphonsoft.com (Postfix, from userid 1000) id 9E34C195E; Fri, 16 Jun 2000 19:33:25 -0400 (EDT) Date: Fri, 16 Jun 2000 19:33:25 -0400 From: Will Andrews To: Satoshi Asami Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports INDEX Message-ID: <20000616193325.A21708@argon.gryphonsoft.com> References: <200006162256.PAA40923@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006162256.PAA40923@freefall.freebsd.org>; from asami@FreeBSD.ORG on Fri, Jun 16, 2000 at 03:56:22PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 03:56:22PM -0700, Satoshi Asami wrote: > Modified files: > . INDEX > Log: > A new index, with 3,403 ports, which is a nice number, being 41 times > 83. However, more significantly, this is the official index file for > 3.5-release (tag: RELEASE_3_5_0). Seems we are about 97 ports short. We will reach 4,100 before 4.1-RELEASE. 3,500 will be eclipsed by next Friday. Don't ask how it's going to be done. Just take my word for it. :-> (i'll leave in ambiguousity...) -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 16:35:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BA3337B9D4; Fri, 16 Jun 2000 16:35:43 -0700 (PDT) (envelope-from asami@FreeBSD.org) Received: (from asami@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA57543; Fri, 16 Jun 2000 16:35:43 -0700 (PDT) (envelope-from asami@FreeBSD.org) Message-Id: <200006162335.QAA57543@freefall.freebsd.org> From: Satoshi Asami Date: Fri, 16 Jun 2000 16:35:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT avail Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG asami 2000/06/16 16:35:43 PDT Modified files: . avail Log: Unlock the ports tree, the tag is down now. Revision Changes Path 1.120 +2 -2 CVSROOT/avail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 17: 9:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E8F2937BE29; Fri, 16 Jun 2000 17:09:33 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA61117; Fri, 16 Jun 2000 17:09:33 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006170009.RAA61117@freefall.freebsd.org> From: Will Andrews Date: Fri, 16 Jun 2000 17:09:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/vide/patches patch-ac Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/16 17:09:33 PDT Added files: x11-fm/vide/patches patch-ac Log: Add i18n support. Submitted by: Clive Lin No response: MAINTAINER (5 days) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 17:14:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 04F1237B77F; Fri, 16 Jun 2000 17:14:43 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA61683; Fri, 16 Jun 2000 17:14:42 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200006170014.RAA61683@freefall.freebsd.org> From: Steve Price Date: Fri, 16 Jun 2000 17:14:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/abacus Makefile ports/misc/buffer Makefile ports/misc/fd Makefile ports/japanese/mtools Makefile ports/news/unpost Makefile ports/security/vscan Makefile ports/www/webcopy Makefile ports/x11-toolkits/xforms Makefile Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/06/16 17:14:42 PDT Modified files: deskutils/abacus Makefile misc/buffer Makefile misc/fd Makefile japanese/mtools Makefile news/unpost Makefile security/vscan Makefile www/webcopy Makefile x11-toolkits/xforms Makefile Log: Use the distfiles now on ftp.freebsd.org instead of from my home directory on freefall. Revision Changes Path 1.10 +2 -2 ports/deskutils/abacus/Makefile 1.14 +2 -2 ports/misc/buffer/Makefile 1.20 +2 -2 ports/misc/fd/Makefile 1.7 +2 -2 ports/japanese/mtools/Makefile 1.7 +2 -2 ports/news/unpost/Makefile 1.19 +2 -2 ports/security/vscan/Makefile 1.14 +2 -2 ports/www/webcopy/Makefile 1.33 +2 -2 ports/x11-toolkits/xforms/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 17:17: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9209837B6E9; Fri, 16 Jun 2000 17:17:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Received: (from steve@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA61902; Fri, 16 Jun 2000 17:17:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) Message-Id: <200006170017.RAA61902@freefall.freebsd.org> From: Steve Price Date: Fri, 16 Jun 2000 17:17:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/latex2html/files TEST2.TMP Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG steve 2000/06/16 17:17:05 PDT Added files: japanese/latex2html/files TEST2.TMP Log: Add a file that I missed in a previous commit that updated this port to version 99.1 + JA patch 3.01. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 17:17:46 2000 Delivered-To: cvs-all@freebsd.org Received: from florence.pavilion.net (florence.pavilion.net [212.74.0.25]) by hub.freebsd.org (Postfix) with ESMTP id 268DC37C11A; Fri, 16 Jun 2000 17:17:39 -0700 (PDT) (envelope-from joe@pavilion.net) Received: from genius.systems.pavilion.net (genesis.tao.org.uk [194.242.131.254]) by florence.pavilion.net (8.9.3/8.8.8) with ESMTP id BAA02554; Sat, 17 Jun 2000 01:17:36 +0100 (BST) (envelope-from joe@pavilion.net) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id 7516B124EF; Sat, 17 Jun 2000 01:17:57 +0100 (BST) Date: Sat, 17 Jun 2000 01:17:57 +0100 From: Josef Karthauser To: Bill Paul Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c Message-ID: <20000617011757.C4271@pavilion.net> References: <200006162014.NAA12344@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006162014.NAA12344@freefall.freebsd.org>; from wpaul@FreeBSD.org on Fri, Jun 16, 2000 at 01:14:43PM -0700 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 01:14:43PM -0700, Bill Paul wrote: > wpaul 2000/06/16 13:14:43 PDT > [...] > Log: > Implement SIOCSIFLLADDR, which allows you to change the link-level > address on an interface. This basically allows you to do what my > little setmac module/utility does via ifconfig. This involves the > following changes: Horray! At last there's some hope of getting dhcp to give me the same lease irrespective of which pccard ethernet card I plug in :). Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 17:29:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F08837B600; Fri, 16 Jun 2000 17:29:08 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA62884; Fri, 16 Jun 2000 17:29:08 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006170029.RAA62884@freefall.freebsd.org> From: Josef Karthauser Date: Fri, 16 Jun 2000 17:29:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT log_accum.pl Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/16 17:29:08 PDT Modified files: . log_accum.pl Log: Add a header to all commit mail showing which branches the changes were applied to; useful for filtering by procmail, etc. The additional header is of the form: X-FreeBSD-CVS-Branch: HEAD,RELENG_3,RELENG_4 Requested by: andreas & asmodai Revision Changes Path 1.42 +11 -1 CVSROOT/log_accum.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 17:30:38 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 62BD937C125; Fri, 16 Jun 2000 17:30:34 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id RAA63013; Fri, 16 Jun 2000 17:30:34 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006170030.RAA63013@freefall.freebsd.org> From: Josef Karthauser Date: Fri, 16 Jun 2000 17:30:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT log_accum.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/16 17:30:34 PDT Modified files: . log_accum.pl Log: Test the new header (forced commit). Revision Changes Path 1.43 +1 -1 CVSROOT/log_accum.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 18: 3:55 2000 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (peter1.corp.yahoo.com [208.48.107.4]) by hub.freebsd.org (Postfix) with ESMTP id 8661437B6C9; Fri, 16 Jun 2000 18:03:43 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 896181CDF; Fri, 16 Jun 2000 18:03:39 -0700 (PDT) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: "Daniel C. Sobral" Cc: "Daniel O'Connor" , Alfred Perlstein , Nate Williams , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy In-Reply-To: Message from "Daniel C. Sobral" of "Sat, 17 Jun 2000 04:06:05 +0900." <394A7A9D.5A354553@newsguy.com> Date: Fri, 16 Jun 2000 18:03:39 -0700 From: Peter Wemm Message-Id: <20000617010339.896181CDF@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Daniel C. Sobral" wrote: > Daniel O'Connor wrote: > > > > > The correct here is find _why_ there is a performance impact if this > > > delay accept feature is not used, and fix _that_ instead. > > > > Well, my naivity abounds, but I would have thought it was because you do an > > accept() which returns and then immediatly you go back to waiting on select (). > > Use kqueue then. How? Put an application specific protocol filter into the kernel so that kqueue can wait on it? Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 18:28:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A9D0737B774; Fri, 16 Jun 2000 18:28:13 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA67931; Fri, 16 Jun 2000 18:28:13 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006170128.SAA67931@freefall.freebsd.org> From: Josef Karthauser Date: Fri, 16 Jun 2000 18:28:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen strtofflags.3 strtofflags.c setflagsbyname.3 setflagsbyname.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/16 18:28:13 PDT Modified files: lib/libc/gen strtofflags.3 strtofflags.c Removed files: lib/libc/gen setflagsbyname.3 setflagsbyname.c Log: Return of the evil file flags! The {s|g}etflags functions were renamed to {s|g}etflagsbyname, which received objections. They're now called strtofflags (string to file flags) and fflagstostr (file flags to string). Suggested by: bde Revision Changes Path 1.3 +11 -11 src/lib/libc/gen/strtofflags.3 1.16 +7 -7 src/lib/libc/gen/strtofflags.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 18:33: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from funkthat.com (adsl-63-195-54-213.dsl.snfc21.pacbell.net [63.195.54.213]) by hub.freebsd.org (Postfix) with ESMTP id 9324237B882; Fri, 16 Jun 2000 18:32:50 -0700 (PDT) (envelope-from gurney_j@efn.org) Received: (from jmg@localhost) by funkthat.com (8.9.3/8.8.7) id SAA65622; Fri, 16 Jun 2000 18:32:49 -0700 (PDT) Message-ID: <20000616183248.30858@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 18:32:48 -0700 From: John-Mark Gurney To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h References: <200006151818.LAA31278@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <200006151818.LAA31278@freefall.freebsd.org>; from Alfred Perlstein on Thu, Jun 15, 2000 at 11:18:43AM -0700 Reply-To: John-Mark Gurney Organization: Cu Networking X-Operating-System: FreeBSD 3.4-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Alfred Perlstein scribbled this message on Jun 15: > add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() > until the incoming connection has either data waiting or what looks like a > HTTP request header already in the socketbuffer. This ought to reduce > the context switch time and overhead for processing requests. I would like to say that there was a misunderstanding on mine (and probably many other people's idea of what this does... first of, it just doesn't look for ^(GET|POST).*$ like I thought it did.. it actually checkes if it starts w/ (GET|POST) and then checks the end of the buffer for '\n\n' or '\n\r\n' which all http headers must end with... now this feature is definately a lot more useful than a simple `^(GET|POST).*$' which I think most people assumed (including myself)... I just did a test and the headers through a proxy will be at least 400 bytes long.. if you through in a few cookies and you easily go over the basic MTU of 576... Most people objected to the change because of the architecture of the change isn't acceptable to FreeBSD usual standards... it also turns out that once I found out about what it really does, there was a bug that would break HTTP/0.9 requests... I completely agree w/ jlemon that this should be done through the future kfilter part of kq... I am glad that a dynamic method of choosing the filter was decided upon, and will be implemented... -- John-Mark Gurney Voice: +1 408 975 9651 Cu Networking "Thank God I'm an atheist, that'd just be confusing." -- cmc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 18:44: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC13637B6C5; Fri, 16 Jun 2000 18:43:57 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA68832; Fri, 16 Jun 2000 18:43:56 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006170143.SAA68832@freefall.freebsd.org> From: Josef Karthauser Date: Fri, 16 Jun 2000 18:43:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen strtofflags.3 strtofflags.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/16 18:43:56 PDT Modified files: lib/libc/gen strtofflags.3 strtofflags.c Log: The "def" arg for fflagstostr is too specialized for ls. The caller can easily translate from "" to whatever it wants to print if no flags are set. (ls prints "-" and mtree prints "none".) Suggested by: bde Revision Changes Path 1.4 +3 -5 src/lib/libc/gen/strtofflags.3 1.17 +4 -5 src/lib/libc/gen/strtofflags.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 19: 2:46 2000 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (peter1.corp.yahoo.com [208.48.107.4]) by hub.freebsd.org (Postfix) with ESMTP id 59A5937BBA4; Fri, 16 Jun 2000 19:02:38 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 0CF2A1CDF; Fri, 16 Jun 2000 19:02:37 -0700 (PDT) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: John-Mark Gurney Cc: Marc Slemko , Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: Message from John-Mark Gurney of "Fri, 16 Jun 2000 11:25:31 PDT." <20000616112531.12083@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 19:02:37 -0700 From: Peter Wemm Message-Id: <20000617020237.0CF2A1CDF@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John-Mark Gurney wrote: > Marc Slemko scribbled this message on Jun 15: > > On Thu, 15 Jun 2000, John-Mark Gurney wrote: > > > > > Alfred Perlstein scribbled this message on Jun 15: > > > > until the incoming connection has either data waiting or what looks l ike a > > > > HTTP request header already in the socketbuffer. This ought to reduc e > > > > the context switch time and overhead for processing requests. > > > > > > if this code stays (which I hope it either gets removed, or made into > > > a kld module), it should be updated to check for ALL the various > > > possible http requests... (such as HEAD, etc.) > > > > Actually, no, it should not be a generalized to be fully able to grok > > all possible requests. While I agree that this sort of hardcoded gunk > > isn't necessarily appropriate where it is (or even useful for > > performance, outside of very constrained benchmark situations), if you > > are going to add special code to the kernel, then you want to keep a > > small fast path in the kernel that covers the common case. You can > > and you want to make it loadable so that it doesn't bloat the kernel... > tight performance optimizations that effect only a small subset of > people are bad.. we have kld's make use of them... Adding hooks generic enough to deal with this cost as much or more than the original. If you think this is better, then how about lets see actual real *CODE* and not just hot air. > > cover 90% of the cases with 10% of the code, then everything else just > > punts down the way things normally work. More speed for the common case, > > less complexity, and a lot less chance of bugs. > > have you done a performance difference between the delayed accept version > and the http version of the socket?? I REALLY doubt that many clients > split the url into multiple packets, and if they do, they are in the > minority which means we can take the hit for those... When the requests are larger than the ethernet MTU, you can't help it. Individual cookies can be up to (if I recall correctly) 1K-1 bytes long. You can (and do) have many cookies, some persistant but mostly temporary. The largest of these cookies are those that encode quite a bit of state for dynamic HTML renderers. > why doesn't the simple delay work? have you even tested the performance > difference between the two for http?? I bet you will find that there > is only a slight performance (like 1%) difference if that much as you > don't have to pass it through two compare routines, and you just have > to compare if there is data there... I have just spoken with David Filo at length about this. It happens a *lot*. Windows and older IE in particular are the worst offenders, and then there are lots of wierd browsers that do really wierd stuff. There are some browsers that send each *character* in a seperate TCP packet. There are a significant number that send the GET request line as a seperate packet then the rest of the data in ~576 byte packet chunks. Older browsers that enumerate each and every 'Accept: image/gif;' line for each mime type they know about make huge packets. We (Yahoo) originally did a delayed accept until the socket became readable. For the static image servers it worked fairly well (they have no cookies). However, for the html servers it still was a problem and didn't have enough of an effect that it was still a problem. HTTPACCEPT fixed it completely. As an indication of the kind of difference it makes.. We used to run apache with a server limit of 1024 processes which it regularly ran into and maxed out the CPU and started delaying connections in the listen queue. With HTTPACCEPT these same systems average 4 or 5 active servers are doing what it used to take 1024 processes to do and went to 90% idle. Things have changed in our infrastructure since then, but that is a pretty good indication how much of a HUGE win this is. David Filo doesn't sit around and write this stuff for fun - it's all to solve real-world problems. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 19: 4:46 2000 Delivered-To: cvs-all@freebsd.org Received: from overcee.netplex.com.au (peter1.corp.yahoo.com [208.48.107.4]) by hub.freebsd.org (Postfix) with ESMTP id A81A937C15F; Fri, 16 Jun 2000 19:04:41 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from netplex.com.au (localhost [127.0.0.1]) by overcee.netplex.com.au (Postfix) with ESMTP id 6D4151CE2; Fri, 16 Jun 2000 19:04:40 -0700 (PDT) (envelope-from peter@netplex.com.au) X-Mailer: exmh version 2.1.1 10/15/1999 To: John-Mark Gurney Cc: Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket.h In-Reply-To: Message from John-Mark Gurney of "Fri, 16 Jun 2000 18:32:48 PDT." <20000616183248.30858@hydrogen.funkthat.com> Date: Fri, 16 Jun 2000 19:04:40 -0700 From: Peter Wemm Message-Id: <20000617020440.6D4151CE2@overcee.netplex.com.au> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG John-Mark Gurney wrote: > Alfred Perlstein scribbled this message on Jun 15: > > add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an acce pt() > > until the incoming connection has either data waiting or what looks like a > > HTTP request header already in the socketbuffer. This ought to reduce > > the context switch time and overhead for processing requests. > > I would like to say that there was a misunderstanding on mine (and > probably many other people's idea of what this does... You know, it would have been a good thing to actually READ the freaking code first before screaming and complaining based on your incorrect assumptions. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 19:31:18 2000 Delivered-To: cvs-all@freebsd.org Received: from darren2.lnk.telstra.net (darren2.lnk.telstra.net [139.130.53.33]) by hub.freebsd.org (Postfix) with ESMTP id 69BEA37B53F; Fri, 16 Jun 2000 19:31:09 -0700 (PDT) (envelope-from darrenr@reed.wattle.id.au) Received: (from root@localhost) by darren2.lnk.telstra.net (8.9.1/8.8.7) id CAA13451; Sat, 17 Jun 2000 02:28:20 GMT From: Darren Reed Message-Id: <200006170228.MAA14959@avalon.reed.wattle.id.au> Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sys/sys socket. In-Reply-To: <200006162017.VAA02121@hak.lan.Awfulhak.org> from Brian Somers at "Jun 16, 0 09:17:07 pm" To: brian@Awfulhak.org (Brian Somers) Date: Sat, 17 Jun 2000 12:28:09 +1000 (EST) Cc: billf@chc-chimes.com, brian@Awfulhak.org, wollman@khavrinen.lcs.mit.edu, dcs@newsguy.com, alfred@FreeBSD.org, nate@yogotech.com, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@hak.lan.awfulhak.org X-Mailer: ELM [version 2.4ME+ PL37 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In some email I received from Brian Somers, sie wrote: > > On Fri, Jun 16, 2000 at 06:37:48PM +0100, Brian Somers wrote: > > > > > > > If natd had been written in the kernel (which no-one would have objected > > > > > to), you would have the exact above scenario. > > > > > > > > I would have, strenuously. > > > > > > Is there a big difference between natd and ipnat ? Or do you object > > > to ipnat ? > > > > I was going to mention that, but I don't use ipfilter and hadn't looked > > to see how application specific ipnat gets. > > I'm no expert with ipnat either - it may be ``cleaner'' than libalias > in that it may avoid protocol-specific knowledge (I think you need a > plug-in to do active ftp properly for example, and all the other > protocols have to be done via a proxy), but then you can argue that > NATing is a disgusting hak anyway.... It sure is :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 19:37:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id EBEE337B77D; Fri, 16 Jun 2000 19:37:17 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA74675; Fri, 16 Jun 2000 19:37:17 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006170237.TAA74675@freefall.freebsd.org> From: Will Andrews Date: Fri, 16 Jun 2000 19:37:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/p5-Convert-Recode Makefile ports/converters/p5-Convert-UU Makefile ports/databases/p5-DBD-CSV Makefile ports/databases/p5-DBI Makefile ports/databases/p5-DBD-Pg Makefile ports/databases/p5-GDBM Makefile ports/databases/p5-MLDBM Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/16 19:37:15 PDT Modified files: converters/p5-Convert-Recode Makefile converters/p5-Convert-UU Makefile databases/p5-DBD-CSV Makefile databases/p5-DBI Makefile databases/p5-DBD-Pg Makefile databases/p5-GDBM Makefile databases/p5-MLDBM Makefile databases/p5-Mysql Makefile databases/p5-Pg Makefile databases/p5-SQL-Statement Makefile databases/p5-hp200lx-db Makefile irc/p5-IRC Makefile lang/p5-Expect Makefile lang/p5-F77 Makefile lang/p5-Tcl Makefile lang/p5-ePerl Makefile mail/p5-Mail-Tools Makefile net/p5-Archie Makefile net/p5-Net-DNS Makefile net/p5-Net-Daemon Makefile net/p5-Net-IPv4Addr Makefile net/p5-Net-IPv4Addr/files md5 net/p5-Net-RawIP Makefile net/p5-Net-Telnet Makefile net/p5-Net-ext Makefile net/p5-PlRPC Makefile net/p5-SNMP-Util Makefile net/p5-SNMP Makefile net/p5-SNMP_Session Makefile net/p5-Socket6 Makefile net/p5-Socks Makefile net/p5-pRPC Makefile japanese/p5-Jcode Makefile japanese/p5-Text-Kakasi Makefile japanese/p5-nkf Makefile graphics/p5-GD-Graph3d Makefile graphics/p5-GD Makefile graphics/p5-chart Makefile news/p5-NNTPClient Makefile news/p5-News-Article Makefile security/p5-Authen-PAM Makefile security/p5-Authen-Radius Makefile security/p5-Crypt-CBC Makefile security/p5-Crypt-DES Makefile security/p5-Crypt-IDEA Makefile security/p5-Digest-MD5 Makefile security/p5-MD5 Makefile security/p5-Net-SSLeay Makefile security/p5-Net-SSLeay/patches patch-aa security/p5-PGP-Sign Makefile security/p5-PGP Makefile sysutils/p5-SyslogScan Makefile textproc/p5-Text-CSV_XS Makefile textproc/p5-XML-DOM Makefile textproc/p5-XML-Parser Makefile x11-fonts/p5-type1inst Makefile x11-toolkits/p5-Gtk Makefile x11-toolkits/p5-Tcl-Tk Makefile x11-toolkits/p5-Tk Makefile devel/p5-BSD-Resource Makefile devel/p5-Curses Makefile devel/p5-Data-ShowTable Makefile devel/p5-Date-Calc Makefile devel/p5-Devel-DProf Makefile devel/p5-Devel-Peek Makefile devel/p5-File-Lock Makefile devel/p5-File-Sync Makefile devel/p5-Filter Makefile devel/p5-IO-Stty Makefile devel/p5-IO-Tty Makefile devel/p5-Locale-gettext Makefile devel/p5-ReadLine-Gnu Makefile devel/p5-Storable Makefile devel/p5-Term-ReadKey Makefile devel/p5-Time-HiRes Makefile www/p5-Apache-ASP Makefile www/p5-Apache-DBI Makefile www/p5-Apache-Radius Makefile www/p5-Apache-Session Makefile www/p5-Apache Makefile www/p5-CGI-FastTemplate Makefile www/p5-CGI Makefile www/p5-CGI_Lite Makefile www/p5-FastCGI Makefile www/p5-HTML-Embperl Makefile www/p5-HTML-Mason Makefile www/p5-HTML-Parser Makefile www/p5-HTML-QuickCheck Makefile www/p5-HTML-Summary Makefile www/p5-HTML-TableLayout Makefile www/p5-HTML-Tree Makefile www/p5-HTML Makefile www/p5-HTTPD-Tools Makefile www/p5-ParallelUA Makefile www/p5-WWW-Search Makefile www/p5-libapreq Makefile Added files: lang/p5-ePerl/patches patch-aa devel/p5-ReadLine-Gnu/patches patch-aa Removed files: www/p5-WWW-Search/patches patch-aa Log: Lots and lots of cleanups. Teach p5-* in general about PKGNAMEPREFIX. Add some missing/wrong dependencies. Show how to respect CC/CFLAGS. Many miscellaneous modifications. I used more excessive hacks to force p5-Jcode and p5-WWW-Search to respect CC/CFLAGS. Patches largely done by: Christian Weisgerber Revision Changes Path 1.4 +3 -4 ports/converters/p5-Convert-Recode/Makefile 1.23 +6 -7 ports/converters/p5-Convert-UU/Makefile 1.3 +3 -3 ports/databases/p5-DBD-CSV/Makefile 1.28 +6 -6 ports/databases/p5-DBI/Makefile 1.19 +7 -6 ports/databases/p5-DBD-Pg/Makefile 1.3 +5 -6 ports/databases/p5-GDBM/Makefile 1.13 +4 -4 ports/databases/p5-MLDBM/Makefile 1.29 +6 -4 ports/databases/p5-Mysql/Makefile 1.22 +6 -4 ports/databases/p5-Pg/Makefile 1.4 +6 -5 ports/databases/p5-SQL-Statement/Makefile 1.3 +5 -5 ports/databases/p5-hp200lx-db/Makefile 1.9 +5 -5 ports/irc/p5-IRC/Makefile 1.4 +8 -7 ports/lang/p5-Expect/Makefile 1.4 +7 -7 ports/lang/p5-F77/Makefile 1.14 +7 -6 ports/lang/p5-Tcl/Makefile 1.20 +6 -5 ports/lang/p5-ePerl/Makefile 1.19 +4 -3 ports/mail/p5-Mail-Tools/Makefile 1.12 +7 -6 ports/net/p5-Archie/Makefile 1.15 +4 -4 ports/net/p5-Net-DNS/Makefile 1.3 +4 -4 ports/net/p5-Net-Daemon/Makefile 1.3 +8 -7 ports/net/p5-Net-IPv4Addr/Makefile 1.2 +1 -1 ports/net/p5-Net-IPv4Addr/files/md5 1.6 +5 -5 ports/net/p5-Net-RawIP/Makefile 1.7 +5 -4 ports/net/p5-Net-Telnet/Makefile 1.2 +3 -2 ports/net/p5-Net-ext/Makefile 1.3 +3 -3 ports/net/p5-PlRPC/Makefile 1.3 +4 -4 ports/net/p5-SNMP-Util/Makefile 1.11 +8 -6 ports/net/p5-SNMP/Makefile 1.8 +4 -4 ports/net/p5-SNMP_Session/Makefile 1.3 +2 -2 ports/net/p5-Socket6/Makefile 1.5 +5 -5 ports/net/p5-Socks/Makefile 1.9 +4 -4 ports/net/p5-pRPC/Makefile 1.6 +10 -5 ports/japanese/p5-Jcode/Makefile 1.5 +4 -3 ports/japanese/p5-Text-Kakasi/Makefile 1.4 +4 -3 ports/japanese/p5-nkf/Makefile 1.2 +5 -4 ports/graphics/p5-GD-Graph3d/Makefile 1.15 +4 -3 ports/graphics/p5-GD/Makefile 1.10 +4 -7 ports/graphics/p5-chart/Makefile 1.2 +5 -7 ports/news/p5-NNTPClient/Makefile 1.10 +5 -3 ports/news/p5-News-Article/Makefile 1.4 +4 -3 ports/security/p5-Authen-PAM/Makefile 1.11 +6 -5 ports/security/p5-Authen-Radius/Makefile 1.6 +4 -4 ports/security/p5-Crypt-CBC/Makefile 1.16 +6 -5 ports/security/p5-Crypt-DES/Makefile 1.16 +6 -5 ports/security/p5-Crypt-IDEA/Makefile 1.9 +6 -5 ports/security/p5-Digest-MD5/Makefile 1.15 +6 -5 ports/security/p5-MD5/Makefile 1.7 +9 -8 ports/security/p5-Net-SSLeay/Makefile 1.2 +0 -11 ports/security/p5-Net-SSLeay/patches/patch-aa 1.14 +5 -4 ports/security/p5-PGP-Sign/Makefile 1.18 +4 -4 ports/security/p5-PGP/Makefile 1.4 +4 -4 ports/sysutils/p5-SyslogScan/Makefile 1.3 +6 -5 ports/textproc/p5-Text-CSV_XS/Makefile 1.4 +5 -5 ports/textproc/p5-XML-DOM/Makefile 1.10 +7 -4 ports/textproc/p5-XML-Parser/Makefile 1.5 +7 -8 ports/x11-fonts/p5-type1inst/Makefile 1.29 +7 -6 ports/x11-toolkits/p5-Gtk/Makefile 1.17 +7 -7 ports/x11-toolkits/p5-Tcl-Tk/Makefile 1.29 +12 -6 ports/x11-toolkits/p5-Tk/Makefile 1.16 +4 -3 ports/devel/p5-BSD-Resource/Makefile 1.15 +6 -4 ports/devel/p5-Curses/Makefile 1.13 +4 -4 ports/devel/p5-Data-ShowTable/Makefile 1.3 +4 -3 ports/devel/p5-Date-Calc/Makefile 1.12 +4 -4 ports/devel/p5-Devel-DProf/Makefile 1.14 +4 -3 ports/devel/p5-Devel-Peek/Makefile 1.11 +4 -3 ports/devel/p5-File-Lock/Makefile 1.10 +4 -4 ports/devel/p5-File-Sync/Makefile 1.9 +8 -3 ports/devel/p5-Filter/Makefile 1.5 +3 -3 ports/devel/p5-IO-Stty/Makefile 1.5 +4 -2 ports/devel/p5-IO-Tty/Makefile 1.3 +4 -3 ports/devel/p5-Locale-gettext/Makefile 1.12 +6 -4 ports/devel/p5-ReadLine-Gnu/Makefile 1.19 +4 -3 ports/devel/p5-Storable/Makefile 1.10 +4 -3 ports/devel/p5-Term-ReadKey/Makefile 1.5 +3 -3 ports/devel/p5-Time-HiRes/Makefile 1.4 +4 -4 ports/www/p5-Apache-ASP/Makefile 1.3 +6 -5 ports/www/p5-Apache-DBI/Makefile 1.6 +7 -7 ports/www/p5-Apache-Radius/Makefile 1.4 +5 -5 ports/www/p5-Apache-Session/Makefile 1.21 +11 -4 ports/www/p5-Apache/Makefile 1.3 +4 -4 ports/www/p5-CGI-FastTemplate/Makefile 1.15 +5 -4 ports/www/p5-CGI/Makefile 1.15 +4 -4 ports/www/p5-CGI_Lite/Makefile 1.5 +6 -4 ports/www/p5-FastCGI/Makefile 1.4 +6 -5 ports/www/p5-HTML-Embperl/Makefile 1.2 +3 -4 ports/www/p5-HTML-Mason/Makefile 1.18 +3 -2 ports/www/p5-HTML-Parser/Makefile 1.12 +4 -4 ports/www/p5-HTML-QuickCheck/Makefile 1.3 +4 -5 ports/www/p5-HTML-Summary/Makefile 1.3 +3 -4 ports/www/p5-HTML-TableLayout/Makefile 1.3 +4 -5 ports/www/p5-HTML-Tree/Makefile 1.11 +6 -6 ports/www/p5-HTML/Makefile 1.14 +4 -4 ports/www/p5-HTTPD-Tools/Makefile 1.17 +4 -3 ports/www/p5-ParallelUA/Makefile 1.18 +6 -8 ports/www/p5-WWW-Search/Makefile 1.4 +12 -6 ports/www/p5-libapreq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 19:39:36 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AF16A37B5A4; Fri, 16 Jun 2000 19:39:34 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA74942; Fri, 16 Jun 2000 19:39:34 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006170239.TAA74942@freefall.freebsd.org> From: Will Andrews Date: Fri, 16 Jun 2000 19:39:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fonts/p5-type1inst/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/16 19:39:34 PDT Added files: x11-fonts/p5-type1inst/patches patch-aa Log: Add the only file I missed it the last p5-* mega-update. Patch submitted by: Christian Weisgerber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 19:57:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C56737C1B8; Fri, 16 Jun 2000 19:57:54 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA76703; Fri, 16 Jun 2000 19:57:53 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006170257.TAA76703@freefall.freebsd.org> From: Will Andrews Date: Fri, 16 Jun 2000 19:57:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/p5-Net-SSLeay/patches patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/16 19:57:53 PDT Removed files: security/p5-Net-SSLeay/patches patch-aa Log: Apparently I forgot about another patch that needed to be removed along with the last p5-* megaupdate. Fix done by: Christian Weisgerber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 20:37:15 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0A1837B5D6; Fri, 16 Jun 2000 20:37:10 -0700 (PDT) (envelope-from will@FreeBSD.org) Received: (from will@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA79995; Fri, 16 Jun 2000 20:37:10 -0700 (PDT) (envelope-from will@FreeBSD.org) Message-Id: <200006170337.UAA79995@freefall.freebsd.org> From: Will Andrews Date: Fri, 16 Jun 2000 20:37:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sip Makefile ports/devel/sip/files md5 ports/devel/sip/pkg PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG will 2000/06/16 20:37:10 PDT Modified files: devel/sip Makefile devel/sip/files md5 devel/sip/pkg PLIST Log: Update to 0.12. PR: 19142 Submitted by: MAINTAINER Revision Changes Path 1.6 +2 -3 ports/devel/sip/Makefile 1.2 +1 -1 ports/devel/sip/files/md5 1.3 +1 -1 ports/devel/sip/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 20:39:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 54BFF37B5AD; Fri, 16 Jun 2000 20:39:49 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Received: (from nyan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA80142; Fri, 16 Jun 2000 20:39:49 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Message-Id: <200006170339.UAA80142@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 16 Jun 2000 20:39:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.pc98 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nyan 2000/06/16 20:39:48 PDT Modified files: (Branch: RELENG_4) sys/conf files.pc98 Log: Sync with sys/conf/files.i386 revision 1.307.2.4. Revision Changes Path 1.140.2.5 +2 -2 src/sys/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 20:43:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27EE537B5AD; Fri, 16 Jun 2000 20:43:11 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Received: (from nyan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA80392; Fri, 16 Jun 2000 20:43:10 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Message-Id: <200006170343.UAA80392@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 16 Jun 2000 20:43:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/sys/pc98/conf GENERIC GENERIC98 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nyan 2000/06/16 20:43:10 PDT Modified files: (Branch: RELENG_4) . Makefile.inc1 Added files: (Branch: RELENG_4) sys/pc98/conf GENERIC Removed files: (Branch: RELENG_4) sys/pc98/conf GENERIC98 Log: MFC: Rename GENERIC98 to GENERIC. Revision Changes Path 1.141.2.4 +2 -2 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 20:58:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DC61B37B610; Fri, 16 Jun 2000 20:58:07 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA83788; Fri, 16 Jun 2000 20:58:07 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006170358.UAA83788@freefall.freebsd.org> From: KATO Takenori Date: Fri, 16 Jun 2000 20:58:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/16 20:58:07 PDT Modified files: sys/pc98/conf GENERIC Log: bs, olpt, pckbd are static limited devices. Revision Changes Path 1.143 +4 -4 src/sys/pc98/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 21:54:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C7A0937B8DB; Fri, 16 Jun 2000 21:54:50 -0700 (PDT) (envelope-from kato@FreeBSD.org) Received: (from kato@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA88684; Fri, 16 Jun 2000 21:54:50 -0700 (PDT) (envelope-from kato@FreeBSD.org) Message-Id: <200006170454.VAA88684@freefall.freebsd.org> From: KATO Takenori Date: Fri, 16 Jun 2000 21:54:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 syscons_pc98.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG kato 2000/06/16 21:54:50 PDT Modified files: sys/pc98/pc98 syscons_pc98.c Log: Merged from sys/isa/syscons_isa.c revision 1.13. Revision Changes Path 1.9 +6 -5 src/sys/pc98/pc98/syscons_pc98.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 22: 1:50 2000 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 558) id 5502A37C39E; Fri, 16 Jun 2000 22:01:47 -0700 (PDT) To: peter@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c src/sy Cc: cvs-all@FreeBSD.org Message-Id: <20000617050147.5502A37C39E@hub.freebsd.org> Date: Fri, 16 Jun 2000 22:01:47 -0700 (PDT) From: hsu@FreeBSD.ORG (Jeffrey Hsu) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG >> Use kqueue then. > How? Look on the whiteboard in the Destiny conference room at Yahoo. :-) Jonathon Lemon scribbled some notes on extending kqueue to do this there. > Put an application specific protocol filter into the kernel so > that kqueue can wait on it? The application specific protocol filter is written in user-land in the DPF scripting language (c.f. Exo-kernel project), passed into the kernel via kqueue, where it is then translated into an x86 machine-language routine and executed by the kernel. Jeffrey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 22:30: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 93ACC37B6F6; Fri, 16 Jun 2000 22:30:03 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA94929; Fri, 16 Jun 2000 22:30:03 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006170530.WAA94929@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 16 Jun 2000 22:30:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/libjcode Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/16 22:30:03 PDT Modified files: japanese/libjcode Makefile Log: This port doesn't install shlib's actually. ;) Revision Changes Path 1.6 +1 -3 ports/japanese/libjcode/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 22:34: 9 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B90CE37B6D8; Fri, 16 Jun 2000 22:34:04 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: (from knu@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA95657; Fri, 16 Jun 2000 22:34:04 -0700 (PDT) (envelope-from knu@FreeBSD.org) Message-Id: <200006170534.WAA95657@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 16 Jun 2000 22:34:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/eterm Makefile ports/japanese/eterm/pkg PLIST ports/japanese/expect Makefile ports/japanese/expect/pkg PLIST ports/japanese/gd Makefile ports/japanese/gd/pkg PLIST ports/japanese/iv Makefile ports/japanese/iv/pkg PLIST ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG knu 2000/06/16 22:34:04 PDT Modified files: japanese/eterm Makefile japanese/eterm/pkg PLIST japanese/expect Makefile japanese/expect/pkg PLIST japanese/gd Makefile japanese/gd/pkg PLIST japanese/iv Makefile japanese/iv/pkg PLIST japanese/kakasi Makefile japanese/kakasi/pkg PLIST japanese/libicq Makefile japanese/libicq/pkg PLIST japanese/libimg Makefile japanese/libimg/pkg PLIST japanese/libslang Makefile japanese/libslang/pkg PLIST japanese/mh Makefile japanese/mh/pkg PLIST japanese/namazu2 Makefile japanese/namazu2/pkg PLIST japanese/postgresql Makefile japanese/postgresql/pkg PLIST japanese/tcl80 Makefile japanese/tcl80/pkg PLIST japanese/tk80 Makefile japanese/tk80/pkg PLIST japanese/tkstep80 Makefile japanese/tkstep80/pkg PLIST Log: Tell these port to use INSTALLS_SHLIB/LDCONFIG_DIRS. Revision Changes Path 1.12 +2 -1 ports/japanese/eterm/Makefile 1.6 +0 -2 ports/japanese/eterm/pkg/PLIST 1.18 +2 -2 ports/japanese/expect/Makefile 1.8 +0 -2 ports/japanese/expect/pkg/PLIST 1.12 +3 -3 ports/japanese/gd/Makefile 1.4 +0 -2 ports/japanese/gd/pkg/PLIST 1.16 +2 -2 ports/japanese/iv/Makefile 1.6 +0 -2 ports/japanese/iv/pkg/PLIST 1.20 +2 -2 ports/japanese/kakasi/Makefile 1.9 +0 -2 ports/japanese/kakasi/pkg/PLIST 1.11 +2 -1 ports/japanese/libicq/Makefile 1.5 +0 -2 ports/japanese/libicq/pkg/PLIST 1.6 +3 -2 ports/japanese/libimg/Makefile 1.2 +0 -2 ports/japanese/libimg/pkg/PLIST 1.12 +2 -2 ports/japanese/libslang/Makefile 1.6 +0 -2 ports/japanese/libslang/pkg/PLIST 1.20 +2 -4 ports/japanese/mh/Makefile 1.11 +0 -2 ports/japanese/mh/pkg/PLIST 1.15 +2 -2 ports/japanese/namazu2/Makefile 1.9 +0 -2 ports/japanese/namazu2/pkg/PLIST 1.14 +3 -1 ports/japanese/postgresql/Makefile 1.5 +0 -2 ports/japanese/postgresql/pkg/PLIST 1.15 +2 -1 ports/japanese/tcl80/Makefile 1.6 +0 -2 ports/japanese/tcl80/pkg/PLIST 1.19 +2 -2 ports/japanese/tk80/Makefile 1.9 +0 -2 ports/japanese/tk80/pkg/PLIST 1.6 +2 -1 ports/japanese/tkstep80/Makefile 1.2 +0 -2 ports/japanese/tkstep80/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 23:20: 5 2000 Delivered-To: cvs-all@freebsd.org Received: from eclogite.eps.nagoya-u.ac.jp (eclogite.eps.nagoya-u.ac.jp [133.6.124.145]) by hub.freebsd.org (Postfix) with ESMTP id B75E437B837; Fri, 16 Jun 2000 23:19:41 -0700 (PDT) (envelope-from kato@ganko.eps.nagoya-u.ac.jp) Received: from localhost (gneiss.eps.nagoya-u.ac.jp [133.6.124.148]) by eclogite.eps.nagoya-u.ac.jp (8.9.3/3.7W) with ESMTP id PAA55795; Sat, 17 Jun 2000 15:19:03 +0900 (JST) To: ajk@iu.edu Cc: dwhite@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 identcpu.c From: KATO Takenori In-Reply-To: References: X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) X-PGP-Fingerprint: 03 72 85 36 62 46 23 03 52 B1 10 22 44 10 0D 9E Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000617151903Y.kato@gneiss.eps.nagoya-u.ac.jp> Date: Sat, 17 Jun 2000 15:19:03 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 15 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG "Andrew J. Korty" wrote: > After this commit my K6 no longer boots. Where before I would get Is it page fault? I saw some reposts on stange page fault caused by modification of identcpu.c. I suspect there is a bug in CPU identification stuff. -----------------------------------------------+--------------------------+ KATO Takenori | FreeBSD | Dept. Earth Planet. Sci, Nagoya Univ. | The power to serve! | Nagoya, 464-8602, Japan | http://www.FreeBSD.org/ | ++++ FreeBSD(98) 4.0R-Rev. 01 available! |http://www.jp.FreeBSD.org/| ++++ FreeBSD(98) 3.4R-Rev. 01 available! +==========================+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Jun 16 23:45:45 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DF30937B65C; Fri, 16 Jun 2000 23:45:41 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA00923; Fri, 16 Jun 2000 23:45:41 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Message-Id: <200006170645.XAA00923@freefall.freebsd.org> From: John Baldwin Date: Fri, 16 Jun 2000 23:45:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/btx/btx btx.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jhb 2000/06/16 23:45:41 PDT Modified files: sys/boot/i386/btx/btx btx.s Log: Add support for emulating the RDMSR and WRMSR instructions into BTX. In theory, this should allow the K7V Athlon motherboard to boot ok with boot virus protection enabled. However, I have no hardware to test this. It shouldn't break anything though. :) Prodded by: Kelly Yancey Revision Changes Path 1.18 +25 -3 src/sys/boot/i386/btx/btx/btx.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 1:56:27 2000 Delivered-To: cvs-all@freebsd.org Received: from emmi.physik.TU-Berlin.DE (emmi.physik.TU-Berlin.DE [130.149.160.103]) by hub.freebsd.org (Postfix) with ESMTP id 05C2237B945; Sat, 17 Jun 2000 01:56:22 -0700 (PDT) (envelope-from ibex@emmi.physik.TU-Berlin.DE) Received: (from ibex@localhost) by emmi.physik.TU-Berlin.DE (8.9.3/8.9.3) id KAA06445; Sat, 17 Jun 2000 10:56:20 +0200 (CEST) (envelope-from ibex) Date: Sat, 17 Jun 2000 10:56:20 +0200 From: Dirk Froemberg To: Josef Karthauser Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: CVSROOT log_accum.pl Message-ID: <20000617105620.A5532@physik.TU-Berlin.DE> References: <200006170029.RAA62884@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006170029.RAA62884@freefall.freebsd.org>; from joe@freebsd.org on Fri, Jun 16, 2000 at 05:29:08PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi Josef! On Fri, Jun 16, 2000 at 05:29:08PM -0700, Josef Karthauser wrote: > joe 2000/06/16 17:29:08 PDT > > Modified files: > . log_accum.pl > Log: > Add a header to all commit mail showing which branches the changes > were applied to; useful for filtering by procmail, etc. > > The additional header is of the form: > > X-FreeBSD-CVS-Branch: HEAD,RELENG_3,RELENG_4 > > Requested by: andreas & asmodai > > Revision Changes Path > 1.42 +11 -1 CVSROOT/log_accum.pl Great! 8-) Thanks a lot... Regards Dirk -- Dirk Froemberg FreeBSD: The Power to Serve! http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 3:52: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 150E637B735; Sat, 17 Jun 2000 03:51:57 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA25146; Sat, 17 Jun 2000 03:51:56 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006171051.DAA25146@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 17 Jun 2000 03:51:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults make.conf src/sys Makefile src/sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/17 03:51:56 PDT Modified files: etc/defaults make.conf sys Makefile sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Log: If "MODULES_WITH_WORLD" is defined, sys/modules will be built with the world as was our old way, rather than when building a kernel. Some people do not like the new way, and the release building still assumes modules are built with the world. Revision Changes Path 1.110 +4 -1 src/etc/defaults/make.conf 1.23 +6 -1 src/sys/Makefile 1.64 +2 -2 src/sys/conf/Makefile.alpha 1.194 +2 -2 src/sys/conf/Makefile.i386 1.94 +2 -2 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 3:56:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5C3B37B57D; Sat, 17 Jun 2000 03:56:19 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id DAA25691; Sat, 17 Jun 2000 03:56:19 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006171056.DAA25691@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 17 Jun 2000 03:56:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/17 03:56:19 PDT Modified files: sys/conf Makefile.alpha Makefile.i386 Makefile.pc98 Log: Add back "NO_MODULES" as using ``make -DMODULES_WITH_WORLD'' in the kernel build dir doesn't really say what your intentions are. Revision Changes Path 1.65 +2 -2 src/sys/conf/Makefile.alpha 1.195 +2 -2 src/sys/conf/Makefile.i386 1.95 +2 -2 src/sys/conf/Makefile.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 4: 9:30 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56C5437B7F1; Sat, 17 Jun 2000 04:09:26 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA30250; Sat, 17 Jun 2000 04:09:25 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006171109.EAA30250@freefall.freebsd.org> From: Josef Karthauser Date: Sat, 17 Jun 2000 04:09:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen strtofflags.3 strtofflags.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/17 04:09:25 PDT Modified files: lib/libc/gen strtofflags.3 strtofflags.c Log: Modify strtofflags so that it returns a malloced string instead of a pointer to a static buffer. Revision Changes Path 1.5 +25 -4 src/lib/libc/gen/strtofflags.3 1.18 +7 -2 src/lib/libc/gen/strtofflags.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 4:56: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id A835F37B663; Sat, 17 Jun 2000 04:55:59 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id EAA33172; Sat, 17 Jun 2000 04:55:59 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006171155.EAA33172@freefall.freebsd.org> From: Josef Karthauser Date: Sat, 17 Jun 2000 04:55:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen Makefile.inc src/include unistd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/17 04:55:58 PDT Modified files: lib/libc/gen Makefile.inc include unistd.h Log: Add strtofflags and fflagstostr to libc. Revision Changes Path 1.64 +4 -3 src/lib/libc/gen/Makefile.inc 1.36 +3 -1 src/include/unistd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 4:58:51 2000 Delivered-To: cvs-all@freebsd.org Received: from florence.pavilion.net (florence.pavilion.net [212.74.0.25]) by hub.freebsd.org (Postfix) with ESMTP id CB5A137B89A; Sat, 17 Jun 2000 04:58:43 -0700 (PDT) (envelope-from joe@pavilion.net) Received: from genius.systems.pavilion.net (genesis.tao.org.uk [194.242.131.254]) by florence.pavilion.net (8.9.3/8.8.8) with ESMTP id MAA99221; Sat, 17 Jun 2000 12:58:40 +0100 (BST) (envelope-from joe@pavilion.net) Received: by genius.systems.pavilion.net (Postfix, from userid 100) id DEFDA124EE; Sat, 17 Jun 2000 12:59:04 +0100 (BST) Date: Sat, 17 Jun 2000 12:59:04 +0100 From: Josef Karthauser To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen Makefile.inc src/include unistd.h Message-ID: <20000617125904.E11469@pavilion.net> References: <200006171155.EAA33172@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006171155.EAA33172@freefall.freebsd.org>; from joe@FreeBSD.org on Sat, Jun 17, 2000 at 04:55:58AM -0700 X-NCC-RegID: uk.pavilion Organisation: Pavilion Internet plc, Lees House, 21-23 Dyke Road, Brighton, England Phone: +44-845-333-5000 Fax: +44-845-333-5001 Mobile: +44-403-596893 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jun 17, 2000 at 04:55:58AM -0700, Josef Karthauser wrote: > joe 2000/06/17 04:55:58 PDT > > Modified files: > lib/libc/gen Makefile.inc > include unistd.h > Log: > Add strtofflags and fflagstostr to libc. I guess that I need to bump the library version for this change. Am I right in thinking that since ELF we don't support minor bumps anymore? Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 5:14:17 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 025EE37B7A7; Sat, 17 Jun 2000 05:14:13 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id FAA64493; Sat, 17 Jun 2000 05:14:12 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id FAA72496; Sat, 17 Jun 2000 05:14:07 -0700 (PDT) (envelope-from obrien) Date: Sat, 17 Jun 2000 05:14:07 -0700 From: "David O'Brien" To: Bill Paul , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c Message-ID: <20000617051407.A72404@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200006162014.NAA12344@freefall.freebsd.org> <20000616162314.49041@hydrogen.funkthat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000616162314.49041@hydrogen.funkthat.com>; from gurney_j@efn.org on Fri, Jun 16, 2000 at 04:23:14PM -0700 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, Jun 16, 2000 at 04:23:14PM -0700, John-Mark Gurney wrote: > consider that we use ether as a display for the MAC: > fxp0: flags=8843 mtu 1500 > ether 00:a0:c9:3c:5b:93 > > we should either add an alias for ether, or convert ether over to lladdr.. Agreed. "ether" is probably the most understood. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 5:22:33 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 67E5B37B8B5; Sat, 17 Jun 2000 05:22:30 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id FAA64518; Sat, 17 Jun 2000 05:22:23 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id FAA72572; Sat, 17 Jun 2000 05:22:22 -0700 (PDT) (envelope-from obrien) Date: Sat, 17 Jun 2000 05:22:22 -0700 From: "David O'Brien" To: Josef Karthauser Cc: Josef Karthauser , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen Makefile.inc src/include unistd.h Message-ID: <20000617052221.B72404@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200006171155.EAA33172@freefall.freebsd.org> <20000617125904.E11469@pavilion.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000617125904.E11469@pavilion.net>; from joe@pavilion.net on Sat, Jun 17, 2000 at 12:59:04PM +0100 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sat, Jun 17, 2000 at 12:59:04PM +0100, Josef Karthauser wrote: > I guess that I need to bump the library version for this change. No. You've added an interface, for which we usually don't bump. If you had modified an interface (or deleted one), then a bump would have been required. > Am I right in thinking that since ELF we don't support minor bumps > anymore? Yes. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 6:13:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E462337BB24; Sat, 17 Jun 2000 06:13:13 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA41843; Sat, 17 Jun 2000 06:13:12 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200006171313.GAA41843@freefall.freebsd.org> From: Nik Clayton Date: Sat, 17 Jun 2000 06:13:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/conspectus/stable/2000/06 05.sgml Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/06/17 06:13:12 PDT Added files: en/conspectus/stable/2000/06 05.sgml Makefile Log: Conspectus for w/e 5th June To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 6:15:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9777337B7F8; Sat, 17 Jun 2000 06:15:37 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA42088; Sat, 17 Jun 2000 06:15:37 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200006171315.GAA42088@freefall.freebsd.org> From: Nik Clayton Date: Sat, 17 Jun 2000 06:15:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/conspectus/stable/2000 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/06/17 06:15:37 PDT Modified files: en/conspectus/stable/2000 Makefile Log: Add the 06 directory. Revision Changes Path 1.2 +2 -1 www/en/conspectus/stable/2000/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 6:17:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8542237B94A; Sat, 17 Jun 2000 06:17:16 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA42257; Sat, 17 Jun 2000 06:17:16 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200006171317.GAA42257@freefall.freebsd.org> From: Nik Clayton Date: Sat, 17 Jun 2000 06:17:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/conspectus/stable/2000 index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/06/17 06:17:16 PDT Modified files: en/conspectus/stable/2000 index.sgml Log: List the ToC for the 5th June. Revision Changes Path 1.2 +148 -1 www/en/conspectus/stable/2000/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 6:18:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B4DF37B7F8; Sat, 17 Jun 2000 06:18:19 -0700 (PDT) (envelope-from nik@FreeBSD.org) Received: (from nik@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA42338; Sat, 17 Jun 2000 06:18:19 -0700 (PDT) (envelope-from nik@FreeBSD.org) Message-Id: <200006171318.GAA42338@freefall.freebsd.org> From: Nik Clayton Date: Sat, 17 Jun 2000 06:18:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/conspectus index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nik 2000/06/17 06:18:18 PDT Modified files: en/conspectus index.sgml Log: Link to the most current conspectus. Revision Changes Path 1.2 +3 -3 www/en/conspectus/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 7: 3:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 633B037B6A7; Sat, 17 Jun 2000 07:03:36 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA45279; Sat, 17 Jun 2000 07:03:35 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006171403.HAA45279@freefall.freebsd.org> From: Josef Karthauser Date: Sat, 17 Jun 2000 07:03:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys chflags.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/17 07:03:35 PDT Modified files: lib/libc/sys chflags.2 Log: Make a note of fflagstostr and strtofflags in the 'see also' section. Revision Changes Path 1.13 +3 -1 src/lib/libc/sys/chflags.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 7:19:39 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 77F4337B88B; Sat, 17 Jun 2000 07:19:34 -0700 (PDT) (envelope-from joe@FreeBSD.org) Received: (from joe@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA47704; Sat, 17 Jun 2000 07:19:34 -0700 (PDT) (envelope-from joe@FreeBSD.org) Message-Id: <200006171419.HAA47704@freefall.freebsd.org> From: Josef Karthauser Date: Sat, 17 Jun 2000 07:19:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls Makefile extern.h ls.c src/bin/rm Makefile rm.c src/libexec/ftpd Makefile src/usr.bin/chflags Makefile chflags.c src/usr.bin/find Makefile function.c src/usr.bin/xinstall Makefile xinstall.c src/usr.sbin/mtree ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG joe 2000/06/17 07:19:34 PDT Modified files: bin/ls Makefile extern.h ls.c bin/rm Makefile rm.c libexec/ftpd Makefile usr.bin/chflags Makefile chflags.c usr.bin/find Makefile function.c usr.bin/xinstall Makefile xinstall.c usr.sbin/mtree Makefile compare.c create.c extern.h misc.c spec.c Log: Switch over to using the new fflagstostr and strtofflags library calls. Revision Changes Path 1.13 +2 -3 src/bin/ls/Makefile 1.13 +1 -2 src/bin/ls/extern.h 1.41 +9 -4 src/bin/ls/ls.c 1.13 +2 -3 src/bin/rm/Makefile 1.31 +7 -9 src/bin/rm/rm.c 1.35 +3 -3 src/libexec/ftpd/Makefile 1.9 +2 -3 src/usr.bin/chflags/Makefile 1.9 +2 -4 src/usr.bin/chflags/chflags.c 1.10 +2 -3 src/usr.bin/find/Makefile 1.26 +2 -4 src/usr.bin/find/function.c 1.12 +2 -3 src/usr.bin/xinstall/Makefile 1.39 +2 -2 src/usr.bin/xinstall/xinstall.c 1.17 +3 -4 src/usr.sbin/mtree/Makefile 1.16 +10 -5 src/usr.sbin/mtree/compare.c 1.20 +13 -7 src/usr.sbin/mtree/create.c 1.5 +2 -3 src/usr.sbin/mtree/extern.h 1.9 +19 -1 src/usr.sbin/mtree/misc.c 1.14 +2 -2 src/usr.sbin/mtree/spec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 7:46:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id F306D37B5C1; Sat, 17 Jun 2000 07:46:20 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Received: (from nyan@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA49561; Sat, 17 Jun 2000 07:46:20 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Message-Id: <200006171446.HAA49561@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 17 Jun 2000 07:46:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/conf GENERIC GENERIC.hints X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG nyan 2000/06/17 07:46:20 PDT Modified files: sys/pc98/conf GENERIC GENERIC.hints Log: - Moved "hint" informations to GENERIC.hints. - Cosmetic changes. Revision Changes Path 1.144 +9 -140 src/sys/pc98/conf/GENERIC 1.2 +216 -1 src/sys/pc98/conf/GENERIC.hints To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 8: 0: 3 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 343E137B5C1; Sat, 17 Jun 2000 08:00:00 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA50494; Sat, 17 Jun 2000 08:00:00 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006171500.IAA50494@freefall.freebsd.org> From: SADA Kenji Date: Sat, 17 Jun 2000 07:59:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/17 07:59:59 PDT Modified files: . modules Log: fvwm2-devel --> ports/x11-wm/fvwm2-devel Revision Changes Path 1.1273 +2 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 8: 1:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7FCBA37B69E; Sat, 17 Jun 2000 08:01:45 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA50622; Sat, 17 Jun 2000 08:01:45 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006171501.IAA50622@freefall.freebsd.org> From: SADA Kenji Date: Sat, 17 Jun 2000 08:01:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/fvwm2-devel - Imported sources X-FreeBSD-CVS-Branch: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/17 08:01:45 PDT ports/x11-wm/fvwm2-devel - Imported sources Update of /home/ncvs/ports/x11-wm/fvwm2-devel In directory freefall.freebsd.org:/d/home/sada/work/fvwm2-devel Log Message: Beta version fvwm2. PR: 14088 Submitted by: Cy Schubert Status: Vendor Tag: CY_SCHUBERT Release Tags: v2_3_8 N ports/x11-wm/fvwm2-devel/Makefile N ports/x11-wm/fvwm2-devel/files/md5 N ports/x11-wm/fvwm2-devel/pkg/COMMENT N ports/x11-wm/fvwm2-devel/pkg/DESCR N ports/x11-wm/fvwm2-devel/pkg/MESSAGE N ports/x11-wm/fvwm2-devel/pkg/PLIST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 8: 4:40 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D7E1837B646; Sat, 17 Jun 2000 08:04:38 -0700 (PDT) (envelope-from sada@FreeBSD.org) Received: (from sada@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id IAA50905; Sat, 17 Jun 2000 08:04:38 -0700 (PDT) (envelope-from sada@FreeBSD.org) Message-Id: <200006171504.IAA50905@freefall.freebsd.org> From: SADA Kenji Date: Sat, 17 Jun 2000 08:04:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG sada 2000/06/17 08:04:38 PDT Modified files: x11-wm Makefile Log: Activate fvwm2-devel. PR: ports/14088 Submitted by: Cy Schubert Revision Changes Path 1.40 +2 -1 ports/x11-wm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 9: 6: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from ms.tokyo.jcom.ne.jp (ms.tokyo.jcom.ne.jp [210.234.123.18]) by hub.freebsd.org (Postfix) with ESMTP id CF38037B528; Sat, 17 Jun 2000 09:05:54 -0700 (PDT) (envelope-from knu@idaemons.org) Received: from daemon.local.idaemons.org (203-165-77-17.sugnm1.kt.home.ne.jp [203.165.77.17]) by ms.tokyo.jcom.ne.jp (8.9.3/3.7W 04/27/00) with ESMTP id BAA07847; Sun, 18 Jun 2000 01:05:52 +0900 (JST) Received: by daemon.local.idaemons.org (8.9.3/3.7W) id BAA09204; Sun, 18 Jun 2000 01:05:20 +0900 (JST) Date: Sun, 18 Jun 2000 01:05:19 +0900 Message-ID: <86ln04s37k.wl@localhost.local.idaemons.org> From: "Akinori -Aki- MUSHA" To: sada@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11-wm/fvwm2-devel - Imported sources In-Reply-To: In your message of "Sat, 17 Jun 2000 08:01:45 -0700 (PDT)" <200006171501.IAA50622@freefall.freebsd.org> References: <200006171501.IAA50622@freefall.freebsd.org> User-Agent: Wanderlust/1.1.2 (Raspberry Beret) EMIKO/1.13.12 (Euglena sociabilis) FLIM/1.13.2 (Kasanui) APEL/10.2 MULE XEmacs/21.1 (patch 9) (Canyonlands) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 1BEF D9B2 BABD 25D7 659A FD08 89C2 F3BE E981 4E16 MIME-Version: 1.0 (generated by EMIKO 1.13.12 - "Euglena sociabilis") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG At Sat, 17 Jun 2000 08:01:45 -0700 (PDT), SADA Kenji wrote: > sada 2000/06/17 08:01:45 PDT > > ports/x11-wm/fvwm2-devel - Imported sources > Update of /home/ncvs/ports/x11-wm/fvwm2-devel > In directory freefall.freebsd.org:/d/home/sada/work/fvwm2-devel Wasn't a repocopy needed? -- / /__ __ / ) ) ) ) / Akinori -Aki- MUSHA aka / (_ / ( (__( @ idaemons.org / FreeBSD.org "We're only at home when we're on the run, on the wing, on the fly" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 9:34:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 556F537B7B1; Sat, 17 Jun 2000 09:34:38 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id JAA60138; Sat, 17 Jun 2000 09:34:38 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200006171634.JAA60138@freefall.freebsd.org> From: Chris Piazza Date: Sat, 17 Jun 2000 09:34:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/blackbox Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/06/17 09:34:38 PDT Modified files: x11-wm/blackbox Makefile Log: Make Patrick Seal the maintainer since I've been neglecting this port lately.. Revision Changes Path 1.33 +2 -2 ports/x11-wm/blackbox/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11: 5:45 2000 Delivered-To: cvs-all@freebsd.org Received: from modemcable127.61-201-24.mtl.mc.videotron.net (modemcable127.61-201-24.mtl.mc.videotron.net [24.201.61.127]) by hub.freebsd.org (Postfix) with SMTP id 20B3537B5D4 for ; Sat, 17 Jun 2000 11:05:42 -0700 (PDT) (envelope-from patrick@mindstep.com) Received: (qmail 1409 invoked from network); 17 Jun 2000 18:05:40 -0000 Received: from patrak.local.mindstep.com (HELO PATRAK) (192.168.10.4) by jacuzzi.local.mindstep.com with SMTP; 17 Jun 2000 18:05:40 -0000 Message-ID: <010101bfd886$a4e23a50$040aa8c0@local.mindstep.com> From: "Patrick Bihan-Faou" To: "Josef Karthauser" , Cc: References: <200006162014.NAA12344@freefall.freebsd.org> <20000617011757.C4271@pavilion.net> Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c Date: Sat, 17 Jun 2000 14:05:39 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi, ----- Original Message ----- From: "Josef Karthauser" > Horray! At last there's some hope of getting dhcp to give me the same > lease irrespective of which pccard ethernet card I plug in :). You can already to this by specifying the DHCP client-id for your machine. Most DHCP servers will honor that and since it is under your control, you don't need to hack the MAC address to obtain the same lease even when you change you ethernet card. I also implemented a patch for ISC-DHCP v2 to use the value passed in the client-id field or the hostname field of0 the DHCP request/discover to fetch the appropriate IP address from a DNS server. This reduces the number of things to configure for a LAN. Changing the MAC address for just doing that sounds dangerous as duplicate MAC addresses on a network can really create hell in no time. Cheers, Patrick. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11:29:43 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id BB23637B6B5; Sat, 17 Jun 2000 11:29:39 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id LAA00859; Sat, 17 Jun 2000 11:34:32 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200006171834.LAA00859@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: obrien@FreeBSD.org Cc: Bill Paul , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-reply-to: Your message of "Sat, 17 Jun 2000 05:14:07 PDT." <20000617051407.A72404@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 11:34:32 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > On Fri, Jun 16, 2000 at 04:23:14PM -0700, John-Mark Gurney wrote: > > consider that we use ether as a display for the MAC: > > fxp0: flags=8843 mtu 1500 > > ether 00:a0:c9:3c:5b:93 > > > > we should either add an alias for ether, or convert ether over to lladdr.. > > Agreed. "ether" is probably the most understood. Especially since this is the "ether" address we are setting. All of the other address tokens are address-family specific, rather than layer-specific. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11:31:17 2000 Delivered-To: cvs-all@freebsd.org Received: from lucifer.bart.nl (lucifer.bart.nl [194.158.168.74]) by hub.freebsd.org (Postfix) with ESMTP id 1F39237B766; Sat, 17 Jun 2000 11:31:10 -0700 (PDT) (envelope-from asmodai@lucifer.bart.nl) Received: (from asmodai@localhost) by lucifer.bart.nl (8.9.3/8.9.3) id UAA88629; Sat, 17 Jun 2000 20:31:09 +0200 (CEST) (envelope-from asmodai) Date: Sat, 17 Jun 2000 20:31:09 +0200 From: Jeroen Ruigrok van der Werven To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT log_accum.pl Message-ID: <20000617203109.B88363@lucifer.bart.nl> References: <200006170029.RAA62884@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200006170029.RAA62884@freefall.freebsd.org>; from joe@FreeBSD.org on Fri, Jun 16, 2000 at 05:29:08PM -0700 Organisation: VIA Net.Works The Netherlands Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG -On [20000617 02:30], Josef Karthauser (joe@FreeBSD.org) wrote: > Log: > Add a header to all commit mail showing which branches the changes > were applied to; useful for filtering by procmail, etc. > > The additional header is of the form: > > X-FreeBSD-CVS-Branch: HEAD,RELENG_3,RELENG_4 Oh, very cool! =) Thank you very much. -- Jeroen Ruigrok van der Werven Network- and systemadministrator VIA Net.Works The Netherlands BSD: Technical excellence at its best http://www.via-net-works.nl For dust thou art, and unto dust shalt thou return. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11:44: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B869737B6AF; Sat, 17 Jun 2000 11:43:57 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA71545; Sat, 17 Jun 2000 11:43:57 -0700 (PDT) (envelope-from ume@FreeBSD.org) Message-Id: <200006171843.LAA71545@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 17 Jun 2000 11:43:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ftp extern.h fetch.c ftp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ume 2000/06/17 11:43:56 PDT Modified files: (Branch: RELENG_4) usr.bin/ftp extern.h fetch.c ftp.c Log: MFC: Make sure to use native IPv4 address, even if getaddrinfo() returns IPv4 mapped IPv6 address. Revision Changes Path 1.10.2.2 +2 -1 src/usr.bin/ftp/extern.h 1.12.2.1 +2 -1 src/usr.bin/ftp/fetch.c 1.28.2.2 +37 -2 src/usr.bin/ftp/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11:44:25 2000 Delivered-To: cvs-all@freebsd.org Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id 85D1637C311; Sat, 17 Jun 2000 11:44:05 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: (from sada@localhost) by home.bsdclub.org (8.9.3/3.7W) id DAA32736; Sun, 18 Jun 2000 03:43:58 +0900 (JST) Date: Sun, 18 Jun 2000 03:43:58 +0900 (JST) Message-Id: <200006171843.DAA32736@home.bsdclub.org> To: asami@FreeBSD.org Cc: knu@idaemons.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, sada@bsdclub.org Subject: Re: cvs commit: ports/x11-wm/fvwm2-devel - Imported sources In-Reply-To: Your message of "Sun, 18 Jun 2000 01:05:19 +0900". <86ln04s37k.wl@localhost.local.idaemons.org> From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article <86ln04s37k.wl@localhost.local.idaemons.org> knu@idaemons.org writes: >> At Sat, 17 Jun 2000 08:01:45 -0700 (PDT), >> SADA Kenji wrote: >> > sada 2000/06/17 08:01:45 PDT >> > >> > ports/x11-wm/fvwm2-devel - Imported sources >> > Update of /home/ncvs/ports/x11-wm/fvwm2-devel >> > In directory freefall.freebsd.org:/d/home/sada/work/fvwm2-devel >> >> Wasn't a repocopy needed? My fault. Asami-san, Could you correct it .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11:58: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 430E337B72E; Sat, 17 Jun 2000 11:57:57 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id OAA04805; Sat, 17 Jun 2000 14:57:55 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200006171857.OAA04805@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Mike Smith Cc: obrien@FreeBSD.ORG, Bill Paul , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c References: <200006171834.LAA00859@mass.osd.bsdi.com> In-reply-to: Your message of "Sat, 17 Jun 2000 11:34:32 PDT." <200006171834.LAA00859@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 14:57:55 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > On Fri, Jun 16, 2000 at 04:23:14PM -0700, John-Mark Gurney wrote: > > > consider that we use ether as a display for the MAC: > > > fxp0: flags=8843 mtu 1500 > > > ether 00:a0:c9:3c:5b:93 > > > > > > we should either add an alias for ether, or convert ether over to lladdr.. > > > > Agreed. "ether" is probably the most understood. > > Especially since this is the "ether" address we are setting. All of the > other address tokens are address-family specific, rather than > layer-specific. Sure, in this case it's an ethernet. But FDDI also uses 48 bit MAC addresses. Would you use the same IOCTL to provide physical layer addresses for other sorts of interfaces? Firewire uses (I think) 64 bit MAC addresses. 802.11 use 48 bit addresses on their MAC, though most folks think and treat them like Ethernet interfaces. This is an instance of a general problem, and all the world is not a VAX, er, ethernet. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 11:59:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D6D9C37B6AF; Sat, 17 Jun 2000 11:59:38 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: (from obrien@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id LAA73116; Sat, 17 Jun 2000 11:59:37 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Message-Id: <200006171859.LAA73116@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 17 Jun 2000 11:59:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine/patches patch-au X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG obrien 2000/06/17 11:59:37 PDT Removed files: emulators/wine/patches patch-au Log: Patch not needed any longer. PR: 19228 Submitted by: Gerald Pfeifer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 12: 6:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E5B7C37B7B1; Sat, 17 Jun 2000 12:06:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA74830; Sat, 17 Jun 2000 12:06:13 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006171906.MAA74830@freefall.freebsd.org> From: Peter Wemm Date: Sat, 17 Jun 2000 12:06:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf gethints.pl src/sys/i386/conf gethints.pl makeLINT.pl src/sys/pc98/conf gethints.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/17 12:06:13 PDT Modified files: sys/alpha/conf gethints.pl sys/i386/conf gethints.pl makeLINT.pl sys/pc98/conf gethints.pl Log: Use while (<>) instead of while() so that perl will automagically deal with filename arguments. It is amazing how much you forget over time. Thanks to the people that reminded me this. I knew there was an easy way that didn't involve messing with $argv, filehandles, etc, but just could not remember - all of my books are on the opposite side of the planet.. Revision Changes Path 1.3 +2 -2 src/sys/alpha/conf/gethints.pl 1.3 +2 -2 src/sys/i386/conf/gethints.pl 1.2 +2 -2 src/sys/i386/conf/makeLINT.pl 1.3 +2 -2 src/sys/pc98/conf/gethints.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 12:16: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id CF7CF37B592; Sat, 17 Jun 2000 12:15:56 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id MAA01047; Sat, 17 Jun 2000 12:20:42 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200006171920.MAA01047@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Louis A. Mamakos" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-reply-to: Your message of "Sat, 17 Jun 2000 14:57:55 EDT." <200006171857.OAA04805@whizzo.transsys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 12:20:42 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > On Fri, Jun 16, 2000 at 04:23:14PM -0700, John-Mark Gurney wrote: > > > > consider that we use ether as a display for the MAC: > > > > fxp0: flags=8843 mtu 1500 > > > > ether 00:a0:c9:3c:5b:93 > > > > > > > > we should either add an alias for ether, or convert ether over to lladdr.. > > > > > > Agreed. "ether" is probably the most understood. > > > > Especially since this is the "ether" address we are setting. All of the > > other address tokens are address-family specific, rather than > > layer-specific. > > Sure, in this case it's an ethernet. But FDDI also uses 48 bit MAC > addresses. Would you use the same IOCTL to provide physical layer addresses > for other sorts of interfaces? Firewire uses (I think) 64 bit MAC > addresses. 802.11 use 48 bit addresses on their MAC, though most > folks think and treat them like Ethernet interfaces. > > This is an instance of a general problem, and all the world is > not a VAX, er, ethernet. That's correct. And that's why if you're setting an ethernet address, you should use 'ether', and if you're setting a FDDI MAC address you should use 'fddi', and if you're setting an RS485 multidrop address you should use eg. 'berknet' and so on. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 12:29:44 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C130E37B611; Sat, 17 Jun 2000 12:29:40 -0700 (PDT) (envelope-from cg@FreeBSD.org) Received: (from cg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA76650; Sat, 17 Jun 2000 12:29:40 -0700 (PDT) (envelope-from cg@FreeBSD.org) Message-Id: <200006171929.MAA76650@freefall.freebsd.org> From: Cameron Grant Date: Sat, 17 Jun 2000 12:29:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm channel.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cg 2000/06/17 12:29:40 PDT Modified files: sys/dev/sound/pcm channel.c Log: replace a line erroneously removed in 1.28, should fix xmms make buf_clear handle unaligned lengths Revision Changes Path 1.30 +6 -4 src/sys/dev/sound/pcm/channel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 13: 1:19 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 19F9837B524; Sat, 17 Jun 2000 13:01:17 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Received: (from jmg@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA80125; Sat, 17 Jun 2000 13:01:16 -0700 (PDT) (envelope-from jmg@FreeBSD.org) Message-Id: <200006172001.NAA80125@freefall.freebsd.org> From: John-Mark Gurney Date: Sat, 17 Jun 2000 13:01:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jmg 2000/06/17 13:01:16 PDT Modified files: en_US.ISO_8859-1/books/handbook/pgpkeys chapter.sgml Log: move wosch's entry into line... talking with billf on irc it appears that it was broked after wosch added his entry, oh well... it's back to being in order.. Revision Changes Path 1.36 +41 -41 doc/en_US.ISO_8859-1/books/handbook/pgpkeys/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 13: 4: 7 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ECC6237B52F; Sat, 17 Jun 2000 13:04:04 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA80410; Sat, 17 Jun 2000 13:04:04 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006172004.NAA80410@freefall.freebsd.org> From: Wilko Bulte Date: Sat, 17 Jun 2000 13:04:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/17 13:04:04 PDT Modified files: release/texts/alpha HARDWARE.TXT Log: Clarify (I hope..) what a hose is. One gets used to DEC (nee, CPQ) speak all too easily. Submitted by: Alec Wolman Revision Changes Path 1.43 +16 -8 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 13:10:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A34237B52F; Sat, 17 Jun 2000 13:10:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA82041; Sat, 17 Jun 2000 13:10:56 -0700 (PDT) (envelope-from peter@FreeBSD.org) Message-Id: <200006172010.NAA82041@freefall.freebsd.org> From: Peter Wemm Date: Sat, 17 Jun 2000 13:10:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf gethints.pl src/sys/i386/conf gethints.pl src/sys/pc98/conf gethints.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG peter 2000/06/17 13:10:55 PDT Modified files: sys/alpha/conf gethints.pl sys/i386/conf gethints.pl sys/pc98/conf gethints.pl Log: Deal with quoted arguments. This hack parser uses whitespace to delimit fields, not lex/yacc grammar so it is not an exact match but should be close enough for most cases. Deal with 'port?', 'irq?' style specifications. These are parsed as seperate values in lex/yacc in config(8) but tripped up this helper tool. Revision Changes Path 1.4 +6 -1 src/sys/alpha/conf/gethints.pl 1.4 +6 -1 src/sys/i386/conf/gethints.pl 1.4 +6 -1 src/sys/pc98/conf/gethints.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 13:27:26 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C9FEE37B52F; Sat, 17 Jun 2000 13:27:22 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: (from wilko@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id NAA83908; Sat, 17 Jun 2000 13:27:22 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Message-Id: <200006172027.NAA83908@freefall.freebsd.org> From: Wilko Bulte Date: Sat, 17 Jun 2000 13:27:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts/alpha HARDWARE.TXT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG wilko 2000/06/17 13:27:22 PDT Modified files: (Branch: RELENG_4) release/texts/alpha HARDWARE.TXT Log: [MFC] explanation of hoses, re-synced some other cleanups Revision Changes Path 1.22.2.14 +44 -38 src/release/texts/alpha/HARDWARE.TXT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 14:23:36 2000 Delivered-To: cvs-all@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 2E21A37B63C; Sat, 17 Jun 2000 14:23:30 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id RAA05383; Sat, 17 Jun 2000 17:23:29 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200006172123.RAA05383@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Mike Smith Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c References: <200006171920.MAA01047@mass.osd.bsdi.com> In-reply-to: Your message of "Sat, 17 Jun 2000 12:20:42 PDT." <200006171920.MAA01047@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 17:23:29 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG But how many new media-specific keywords can ifconfig withstand over time? I was only suggesting that there be one generic one; perhaps "lladdr" isn't the most mnemonic and something else is more suitable. louie > That's correct. And that's why if you're setting an ethernet address, > you should use 'ether', and if you're setting a FDDI MAC address you > should use 'fddi', and if you're setting an RS485 multidrop address you > should use eg. 'berknet' and so on. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 14:31:46 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id 6163137B63C; Sat, 17 Jun 2000 14:31:39 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id OAA01402; Sat, 17 Jun 2000 14:36:29 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200006172136.OAA01402@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Louis A. Mamakos" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-reply-to: Your message of "Sat, 17 Jun 2000 17:23:29 EDT." <200006172123.RAA05383@whizzo.transsys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 14:36:29 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > But how many new media-specific keywords can ifconfig withstand over > time? As many as there are address families that require them. > I was only suggesting that there be one generic one; perhaps "lladdr" > isn't the most mnemonic and something else is more suitable. Why bother with a keyword at all? I mean, why bother distinguishing between "inet" and "ether"? (This is an illustrative question, and not meant to be taken literally.) -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 14:43:35 2000 Delivered-To: cvs-all@freebsd.org Received: from whizzo.transsys.com (whizzo.TransSys.COM [144.202.42.10]) by hub.freebsd.org (Postfix) with ESMTP id 4BF4737B5E6; Sat, 17 Jun 2000 14:43:27 -0700 (PDT) (envelope-from louie@whizzo.transsys.com) Received: from whizzo.transsys.com (localhost.transsys.com [127.0.0.1]) by whizzo.transsys.com (8.9.3/8.9.1) with ESMTP id RAA05513; Sat, 17 Jun 2000 17:43:20 -0400 (EDT) (envelope-from louie@whizzo.transsys.com) Message-Id: <200006172143.RAA05513@whizzo.transsys.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Mike Smith Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Image-URL: http://www.transsys.com/louie/images/louie-mail.jpg From: "Louis A. Mamakos" Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c References: <200006172136.OAA01402@mass.osd.bsdi.com> In-reply-to: Your message of "Sat, 17 Jun 2000 14:36:29 PDT." <200006172136.OAA01402@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 17:43:20 -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > > But how many new media-specific keywords can ifconfig withstand over > > time? > > As many as there are address families that require them. > > > I was only suggesting that there be one generic one; perhaps "lladdr" > > isn't the most mnemonic and something else is more suitable. > > Why bother with a keyword at all? I mean, why bother distinguishing > between "inet" and "ether"? I supposed because inet and inet6 are used to specify L3 addresses which have significant semantic import to the network protocol stacks. These L2 or physical layer addresses are merely glue to make the "connectedness" of the network interface work. I guess it isn't that big a deal; I'd be more concerned if there wasn't a way to use the same ioctl to pass the information into the kernel for different interface types. The rest is just UI sugar coating to make it easy to use. louie To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 15:27:57 2000 Delivered-To: cvs-all@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-206-88-224.dsl.snfc21.pacbell.net [63.206.88.224]) by hub.freebsd.org (Postfix) with ESMTP id D6C2E37B50F; Sat, 17 Jun 2000 15:27:48 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id PAA01562; Sat, 17 Jun 2000 15:32:39 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200006172232.PAA01562@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Louis A. Mamakos" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys sockio.h src/sys/net if.c src/sbin/ifconfig ifconfig.8 ifconfig.c In-reply-to: Your message of "Sat, 17 Jun 2000 17:43:20 EDT." <200006172143.RAA05513@whizzo.transsys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Jun 2000 15:32:39 -0700 From: Mike Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > > > > But how many new media-specific keywords can ifconfig withstand over > > > time? > > > > As many as there are address families that require them. > > > > > I was only suggesting that there be one generic one; perhaps "lladdr" > > > isn't the most mnemonic and something else is more suitable. > > > > Why bother with a keyword at all? I mean, why bother distinguishing > > between "inet" and "ether"? > > I supposed because inet and inet6 are used to specify L3 addresses which > have significant semantic import to the network protocol stacks. These > L2 or physical layer addresses are merely glue to make the "connectedness" > of the network interface work. That's not taking a very abstracted view of things, though. You could argue that the ethernet address has very significant semantic import to the ARP layer as well. > I guess it isn't that big a deal; I'd be more concerned if there wasn't > a way to use the same ioctl to pass the information into the kernel for > different interface types. The rest is just UI sugar coating to make > it easy to use. In practice, I think that we should really use a single ioctl and pass the type and value in separately and let the stack itself decide what to do about it. The current approach is just not dynamic enough. 8( -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 15:31:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 65B8D37B50F; Sat, 17 Jun 2000 15:31:08 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Received: (from jkh@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA98061; Sat, 17 Jun 2000 15:31:08 -0700 (PDT) (envelope-from jkh@FreeBSD.org) Message-Id: <200006172231.PAA98061@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Sat, 17 Jun 2000 15:31:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG jkh 2000/06/17 15:31:08 PDT Modified files: . access Log: Add Jun-ho Choi to committers; welcome! Revision Changes Path 1.155 +2 -1 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 16: 9:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id AC40A37B5AF; Sat, 17 Jun 2000 16:09:51 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id QAA02628; Sat, 17 Jun 2000 16:09:51 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006172309.QAA02628@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 16:09:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/forth loader.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 16:09:51 PDT Modified files: sys/boot/forth loader.conf Log: Add wx and ispfw loadable module defaults. Revision Changes Path 1.28 +3 -1 src/sys/boot/forth/loader.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 17:13:59 2000 Delivered-To: cvs-all@freebsd.org Received: from home.bsdclub.org (home.bsdclub.org [202.227.26.94]) by hub.freebsd.org (Postfix) with ESMTP id D96ED37B5CA; Sat, 17 Jun 2000 17:13:42 -0700 (PDT) (envelope-from sada@bsdclub.org) Received: (from sada@localhost) by home.bsdclub.org (8.9.3/3.7W) id JAA34692; Sun, 18 Jun 2000 09:13:29 +0900 (JST) Date: Sun, 18 Jun 2000 09:13:29 +0900 (JST) Message-Id: <200006180013.JAA34692@home.bsdclub.org> To: peter@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, sada@bsdclub.org Subject: Global 3.55 From: SADA Kenji Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Mailer: mnews [version 1.22] 1999-12/19(Sun) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Could I import GLOBAL v3.55 into src/contrib/global ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 17:32:49 2000 Delivered-To: cvs-all@freebsd.org Received: from mailout3.nyroc.rr.com (mailout3-1.nyroc.rr.com [24.92.226.168]) by hub.freebsd.org (Postfix) with ESMTP id 89E6437B5A8; Sat, 17 Jun 2000 17:32:45 -0700 (PDT) (envelope-from dheller1@rochester.rr.com) Received: from rochester.rr.com (d185fc297.rochester.rr.com [24.95.194.151]) by mailout3.nyroc.rr.com (8.9.3/8.9.3) with ESMTP id UAA28211; Sat, 17 Jun 2000 20:24:55 -0400 (EDT) Message-ID: <394C18AC.794C9D5D@rochester.rr.com> Date: Sat, 17 Jun 2000 20:32:44 -0400 From: David Heller X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Cc: cvs-all@freebsd.org Subject: Unable to make sysinstall Content-Type: multipart/mixed; boundary="------------BA5EF1C66D1A6DA4EE5479FD" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------BA5EF1C66D1A6DA4EE5479FD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi All I'm trying to update sysinstall from 3.4 stable. I upgradeed to 4.0s in April and since then have not been able to make sysinstall. Just rebuilt world a couple a days ago with cvsup sources recently downloaded and still same result sysinstall is still 3.4 release version. Please find attached below output from make all install: Thanks Dave --------------BA5EF1C66D1A6DA4EE5479FD Content-Type: text/plain; charset=us-ascii; name="make.out" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="make.out" Script started on Sat Jun 17 19:13:58 2000 bravo# make all install Warning: Object directory not changed from original /usr/src/release/sysinstall cc -O -pipe -Wall -I/usr/src/release/sysinstall/../../gnu/lib/libdialog -I/usr/src/release/sysinstall -I/usr/src/release/sysinstall/../../sys -c makedevs.c makedevs.c:246: syntax error before `,' *** Error code 1 Stop in /usr/src/release/sysinstall. bravo# ls  exit bravo# exit Script done on Sat Jun 17 19:15:11 2000 --------------BA5EF1C66D1A6DA4EE5479FD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 18:42:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FD6F37B852; Sat, 17 Jun 2000 18:42:14 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA15655; Sat, 17 Jun 2000 18:42:14 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200006180142.SAA15655@freefall.freebsd.org> From: Chris Piazza Date: Sat, 17 Jun 2000 18:42:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-clocks/bbdate Makefile ports/mail/bbmail Makefile ports/x11-wm/toolbox Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/06/17 18:42:14 PDT Modified files: x11-clocks/bbdate Makefile mail/bbmail Makefile x11-wm/toolbox Makefile Log: Give Patrick Seal maintainership of these ports. Revision Changes Path 1.10 +2 -2 ports/x11-clocks/bbdate/Makefile 1.11 +4 -4 ports/mail/bbmail/Makefile 1.12 +2 -2 ports/x11-wm/toolbox/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 18:43:22 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C33EC37B523; Sat, 17 Jun 2000 18:43:16 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Received: (from cpiazza@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id SAA15785; Sat, 17 Jun 2000 18:43:16 -0700 (PDT) (envelope-from cpiazza@FreeBSD.org) Message-Id: <200006180143.SAA15785@freefall.freebsd.org> From: Chris Piazza Date: Sat, 17 Jun 2000 18:43:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/blackbox Makefile ports/x11-wm/blackbox/files md5 ports/x11-wm/blackbox/pkg DESCR PLIST X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG cpiazza 2000/06/17 18:43:16 PDT Modified files: x11-wm/blackbox Makefile x11-wm/blackbox/files md5 x11-wm/blackbox/pkg DESCR PLIST Log: Update to 0.60.3 PR: 19356 Submitted by: maintainer Revision Changes Path 1.34 +4 -18 ports/x11-wm/blackbox/Makefile 1.23 +1 -1 ports/x11-wm/blackbox/files/md5 1.8 +4 -1 ports/x11-wm/blackbox/pkg/DESCR 1.11 +36 -15 ports/x11-wm/blackbox/pkg/PLIST To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:11:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C81FE37B56D; Sat, 17 Jun 2000 19:11:25 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA18772; Sat, 17 Jun 2000 19:11:25 -0700 (PDT) (envelope-from billf@FreeBSD.org) Message-Id: <200006180211.TAA18772@freefall.freebsd.org> From: Bill Fumerola Date: Sat, 17 Jun 2000 19:11:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO_8859-1/books/handbook/bibliography chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG billf 2000/06/17 19:11:25 PDT Modified files: en_US.ISO_8859-1/books/handbook/bibliography chapter.sgml Log: A few of the books referenced here have newer editions, so track that and their new ISBN numbers. Revision Changes Path 1.23 +7 -7 doc/en_US.ISO_8859-1/books/handbook/bibliography/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:16:11 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4588437B826; Sat, 17 Jun 2000 19:16:08 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Received: (from davidn@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA18977; Sat, 17 Jun 2000 19:16:08 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Message-Id: <200006180216.TAA18977@freefall.freebsd.org> From: David Nugent Date: Sat, 17 Jun 2000 19:16:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pwupd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG davidn 2000/06/17 19:16:08 PDT Modified files: usr.sbin/pw pwupd.c Log: Second and hopefully final fix to .db sync when renaming a user; we must run a full reindex in this case to remove the old record. #ifdef -u capability since this is available on FreeBSD only. PR: bin/16418 Problem pointed out by: Masachika ISHIZUKA Revision Changes Path 1.14 +13 -5 src/usr.sbin/pw/pwupd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:18:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9AE0137B826; Sat, 17 Jun 2000 19:18:15 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Received: (from davidn@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA19088; Sat, 17 Jun 2000 19:18:15 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Message-Id: <200006180218.TAA19088@freefall.freebsd.org> From: David Nugent Date: Sat, 17 Jun 2000 19:18:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG davidn 2000/06/17 19:18:15 PDT Modified files: usr.sbin/pw pw_user.c Log: Fix a long-standing bug in the rename case previously masked by another bug just fixed in .db file updating. Revision Changes Path 1.35 +11 -3 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:22:20 2000 Delivered-To: cvs-all@freebsd.org Received: from mailout3.nyroc.rr.com (mailout3-0.nyroc.rr.com [24.92.226.118]) by hub.freebsd.org (Postfix) with ESMTP id 8F3F937B661 for ; Sat, 17 Jun 2000 19:22:17 -0700 (PDT) (envelope-from dheller1@rochester.rr.com) Received: from rochester.rr.com (d185fc297.rochester.rr.com [24.95.194.151]) by mailout3.nyroc.rr.com (8.9.3/8.9.3) with ESMTP id WAA11219 for ; Sat, 17 Jun 2000 22:14:26 -0400 (EDT) Message-ID: <394C3257.8EE78BEE@rochester.rr.com> Date: Sat, 17 Jun 2000 22:22:15 -0400 From: David Heller X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: cvs-all@freebsd.org Subject: Re: Unable to make sysinstall References: <394C18AC.794C9D5D@rochester.rr.com> <394C1A96.3090EC74@mindspring.com> Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG W Gerald Hicks wrote: > > David Heller wrote: > > > > Hi All > > > > I'm trying to update sysinstall from 3.4 stable. I upgradeed to 4.0s in > > April and since then have not been able to make sysinstall. Just rebuilt > > world a couple a days ago with cvsup sources recently downloaded and > > still same result sysinstall is still 3.4 release version. Please find > > attached below output from make all install: > > > > Thanks > > > > Dave > > sysinstall is build by 'make release' in /usr/src/release Just tried that and I kept getting missing include file errors in /usr/src/include/some-dir/some-file(I would copy the missing file from /usr/include/some-dir/some-file) and would continue to get errors like this. Also won't doing a make release effect my userland (remember I'm running 4.0 Stable) Thanks, Dave > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:39:20 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E74A437B5FA; Sat, 17 Jun 2000 19:39:17 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Received: (from davidn@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA20290; Sat, 17 Jun 2000 19:39:17 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Message-Id: <200006180239.TAA20290@freefall.freebsd.org> From: David Nugent Date: Sat, 17 Jun 2000 19:39:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG davidn 2000/06/17 19:39:17 PDT Modified files: usr.sbin/pw pw.c Log: Be a little more strict about handling command line args. This allows user and group names like 'help' 'mod' 'user' 'group' etc. to work correctly without requiring the -n style invocation. PR: misc/17069 Revision Changes Path 1.19 +7 -5 src/usr.sbin/pw/pw.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:48:23 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1033737B80B; Sat, 17 Jun 2000 19:48:20 -0700 (PDT) (envelope-from billf@FreeBSD.org) Received: (from billf@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA21017; Sat, 17 Jun 2000 19:48:20 -0700 (PDT) (envelope-from billf@FreeBSD.org) Message-Id: <200006180248.TAA21017@freefall.freebsd.org> From: Bill Fumerola Date: Sat, 17 Jun 2000 19:48:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ipfw ipfw.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG billf 2000/06/17 19:48:19 PDT Modified files: sbin/ipfw ipfw.c Log: Reorder the "prob" section in the output of list/show so it can be copy/pasted into add without problems. The previous commit had the other half of this original patch which handled tcpflags/tcpflgs confusion in output/input. Revision Changes Path 1.86 +7 -6 src/sbin/ipfw/ipfw.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 19:48:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 56EC237B852; Sat, 17 Jun 2000 19:48:57 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Received: (from davidn@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id TAA21113; Sat, 17 Jun 2000 19:48:57 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Message-Id: <200006180248.TAA21113@freefall.freebsd.org> From: David Nugent Date: Sat, 17 Jun 2000 19:48:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG davidn 2000/06/17 19:48:56 PDT Modified files: usr.sbin/pw pw_user.c Log: Fix obvious braino in assignment statement. usermod -g should work again. PR: 17877 Submitted by: pius@zyan.com Revision Changes Path 1.36 +2 -2 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21: 5:28 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EC9B37B852; Sat, 17 Jun 2000 21:05:26 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA28788; Sat, 17 Jun 2000 21:05:26 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Message-Id: <200006180405.VAA28788@freefall.freebsd.org> From: Tim Vanderhoek Date: Sat, 17 Jun 2000 21:05:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/asl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hoek 2000/06/17 21:05:25 PDT Modified files: devel/asl Makefile Log: Depending on all of XFree86 just for the mkdirhier(1) util was a little excessive: do post-patch mkdirhier into mkdir -p instead. Revision Changes Path 1.10 +4 -3 ports/devel/asl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:18: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E1E337B852; Sat, 17 Jun 2000 21:18:01 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Received: (from hoek@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA29761; Sat, 17 Jun 2000 21:18:01 -0700 (PDT) (envelope-from hoek@FreeBSD.org) Message-Id: <200006180418.VAA29761@freefall.freebsd.org> From: Tim Vanderhoek Date: Sat, 17 Jun 2000 21:18:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/asl/pkg DESCR X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG hoek 2000/06/17 21:18:01 PDT Modified files: devel/asl/pkg DESCR Log: Add WWW. Revision Changes Path 1.2 +2 -0 ports/devel/asl/pkg/DESCR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:19:12 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DC9037B85C; Sat, 17 Jun 2000 21:19:09 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA29913; Sat, 17 Jun 2000 21:19:09 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180419.VAA29913@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:19:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_ses.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:19:09 PDT Modified files: sys/cam/scsi scsi_ses.c Log: Fix breakage where we never were attaching SES devices because inq_len was not being set > 0. Revision Changes Path 1.11 +4 -1 src/sys/cam/scsi/scsi_ses.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:22:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E854937B5E0; Sat, 17 Jun 2000 21:22:37 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA30268; Sat, 17 Jun 2000 21:22:37 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180422.VAA30268@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:22:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_ses.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:22:37 PDT Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_ses.c Log: MFC:Fix breakage where we never were attaching SES devices because inq_len was not being set > 0. Revision Changes Path 1.8.2.1 +4 -1 src/sys/cam/scsi/scsi_ses.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:37:48 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 283DA37B87D; Sat, 17 Jun 2000 21:37:45 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA35827; Sat, 17 Jun 2000 21:37:45 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180437.VAA35827@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:37:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ispfw MAINTAINER asm_1040.h asm_1080.h asm_12160.h asm_2100.h asm_2200.h ispfw.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:37:44 PDT Added files: sys/dev/ispfw MAINTAINER asm_1040.h asm_1080.h asm_12160.h asm_2100.h asm_2200.h ispfw.c Log: Add in (separate files for different board's firmware) new files for ispfw loadable module. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:41:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FEE437B870; Sat, 17 Jun 2000 21:41:14 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36037; Sat, 17 Jun 2000 21:41:14 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180441.VAA36037@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:41:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp ispmbox.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:41:14 PDT Modified files: sys/dev/isp ispmbox.h Log: add MBOX_GET_RESOURCE_COUNT command Revision Changes Path 1.22 +2 -1 src/sys/dev/isp/ispmbox.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:43:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E7E1A37B5F5; Sat, 17 Jun 2000 21:43:29 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36282; Sat, 17 Jun 2000 21:43:29 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180443.VAA36282@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 21:43:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/sn Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 21:43:29 PDT Added files: sys/modules/sn Makefile Log: Build sn as a module To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:43:51 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 35A0737B895; Sat, 17 Jun 2000 21:43:45 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36343; Sat, 17 Jun 2000 21:43:45 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006180443.VAA36343@freefall.freebsd.org> From: Paul Saab Date: Sat, 17 Jun 2000 21:43:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options src/sys/i386/conf LINT src/sys/isa sio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/17 21:43:45 PDT Modified files: (Branch: RELENG_4) sys/conf options sys/i386/conf LINT sys/isa sio.c Log: MFC: Add option ALT_BREAK_TO_DEBUGGER. Revision Changes Path 1.191.2.6 +2 -1 src/sys/conf/options 1.749.2.10 +6 -1 src/sys/i386/conf/Attic/LINT 1.291.2.8 +30 -1 src/sys/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:44: 1 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id ABFA237BCA2; Sat, 17 Jun 2000 21:43:56 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36382; Sat, 17 Jun 2000 21:43:56 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180443.VAA36382@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:43:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp ispreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:43:56 PDT Modified files: sys/dev/isp ispreg.h Log: cleanup i_int_X vs. uint_X definitions Revision Changes Path 1.15 +17 -17 src/sys/dev/isp/ispreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:44:46 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0622637B895; Sat, 17 Jun 2000 21:44:41 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36469; Sat, 17 Jun 2000 21:44:40 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180444.VAA36469@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 21:44:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/pcic Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 21:44:40 PDT Modified files: sys/modules/pcic Makefile Log: Make pcic compile again with newcard Revision Changes Path 1.17 +4 -5 src/sys/modules/pcic/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:44:47 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D3FD37B8A3; Sat, 17 Jun 2000 21:44:42 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36500; Sat, 17 Jun 2000 21:44:42 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180444.VAA36500@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:44:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp_target.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:44:41 PDT Modified files: sys/dev/isp isp_target.h Log: add "disable autodisconnect" flags Revision Changes Path 1.5 +2 -1 src/sys/dev/isp/isp_target.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:45:57 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 98D2C37B870; Sat, 17 Jun 2000 21:45:51 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36626; Sat, 17 Jun 2000 21:45:51 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180445.VAA36626@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:45:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp ispvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:45:51 PDT Modified files: sys/dev/isp ispvar.h Log: Roll core minor version. Set ISP_MAX_LUNS to be off of new isp_maxluns tag in softc. Revision Changes Path 1.28 +5 -12 src/sys/dev/isp/ispvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:47:18 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B50437B870; Sat, 17 Jun 2000 21:47:13 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36738; Sat, 17 Jun 2000 21:47:13 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180447.VAA36738@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:47:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp_freebsd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:47:12 PDT Modified files: sys/dev/isp isp_freebsd.h Log: Roll platform minor number. Force definition of SCSI_ISP_FABRIC (we always support fabric now). Remove SCCLUN definition (we always support SCCLUN now, if we load the f/w). Add typedef definition of an external firmware fetch function. Revision Changes Path 1.30 +7 -9 src/sys/dev/isp/isp_freebsd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:48:33 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 048BB37B870; Sat, 17 Jun 2000 21:48:29 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA36872; Sat, 17 Jun 2000 21:48:28 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180448.VAA36872@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:48:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp_target.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:48:28 PDT Modified files: sys/dev/isp isp_target.c Log: Remove all ISP2100_SCCLUN define based code and replace it with runtime comparisons against the tag isp_maxluns- if > 16, we're SCCLUN based. On initial regular SCSI startup, disable auto-disconnect. Revision Changes Path 1.7 +28 -28 src/sys/dev/isp/isp_target.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:50:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 13AF537B5F5; Sat, 17 Jun 2000 21:50:27 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA37063; Sat, 17 Jun 2000 21:50:27 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180450.VAA37063@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:50:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp_freebsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:50:26 PDT Modified files: sys/dev/isp isp_freebsd.c Log: Remove all ISP2100_SCCLUN define protected code and replace it with runtime checks. Revision Changes Path 1.38 +13 -24 src/sys/dev/isp/isp_freebsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:56:21 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7003237B530; Sat, 17 Jun 2000 21:56:18 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA37520; Sat, 17 Jun 2000 21:56:18 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180456.VAA37520@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:56:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:56:18 PDT Modified files: sys/dev/isp isp.c Log: Once we have firmware running (if isp_reset) and this is the first time through, establish what our LUN width is. Unfortunately, we can't ask the f/w. If we loaded the f/w, we'll now assume we have expanded LUNs (SCCLUN for fibre channel, just plain 32 LUN for SCSI). If we didn't load firmware, assume 8 LUNs for SCSI and 1 LUN for Fibre Channel. We have to assume only one LUN for Fibre Channel because the LUN setting in Request Queue entries is in different places whether we have SCCLUN firmware or not, so the only LUN guaranteed to work for both is LUN 0. Clean up the rest of isp.c so that ISP2100_SCCLUN defines aren't used- instead use run time determinants based upon isp->isp_maxluns. After starting firmware, delay 500us to give it a chance to get rolling. Fix the interrupt service routine to check for both isr && sema being zero before thinking this was a spurious interrupt. Following the manuals, allow for both Mailbox as well as Queue Reponse type interrupts for regular SCSI. Revision Changes Path 1.44 +75 -35 src/sys/dev/isp/isp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:59:42 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A26F37B8A3; Sat, 17 Jun 2000 21:59:39 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA37749; Sat, 17 Jun 2000 21:59:39 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180459.VAA37749@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 21:59:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pccard pccard_nbk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 21:59:39 PDT Modified files: sys/pccard pccard_nbk.c Log: o Implement some compatibility functions for NEWCARD compat. This is incomplete, but will eventually allow the same drivers to function with both oldcard and newcard. o Remove include of opt_bus.h. It isn't needed and gets in the way of module building. Revision Changes Path 1.19 +25 -3 src/sys/pccard/pccard_nbk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 21:59:53 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EA8137B8A7; Sat, 17 Jun 2000 21:59:50 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id VAA37789; Sat, 17 Jun 2000 21:59:50 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180459.VAA37789@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 21:59:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp asm_pci.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 21:59:50 PDT Removed files: sys/dev/isp asm_pci.h Log: Removing this bulky one large f/w file. This f/w is now in dev/ispfw. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22: 2:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7536337B8A3; Sat, 17 Jun 2000 22:02:09 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA38042; Sat, 17 Jun 2000 22:02:09 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180502.WAA38042@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 22:02:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard card_if.m X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 22:02:09 PDT Modified files: sys/dev/pccard card_if.m Log: Add new functions. Also add comments to existing functions. These are needed for the pccard changes I've just committed. Revision Changes Path 1.6 +38 -1 src/sys/dev/pccard/card_if.m To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22: 8:17 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D7C4B37B8C6; Sat, 17 Jun 2000 22:08:12 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA39650; Sat, 17 Jun 2000 22:08:12 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180508.WAA39650@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 22:08:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 22:08:12 PDT Modified files: sys/modules Makefile Log: Add if_wx && ispfw modules Revision Changes Path 1.122 +4 -4 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22: 8:31 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3193937BB02; Sat, 17 Jun 2000 22:08:29 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA39706; Sat, 17 Jun 2000 22:08:29 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180508.WAA39706@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 22:08:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/wx Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 22:08:29 PDT Added files: sys/modules/wx Makefile Log: add if_wx module To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22: 8:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 373B337B8CB; Sat, 17 Jun 2000 22:08:37 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA39746; Sat, 17 Jun 2000 22:08:37 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180508.WAA39746@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 22:08:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/ispfw Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 22:08:37 PDT Added files: sys/modules/ispfw Makefile Log: add ispfw module To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22: 9: 0 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C37D637B8A3; Sat, 17 Jun 2000 22:08:57 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA39804; Sat, 17 Jun 2000 22:08:57 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180508.WAA39804@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 22:08:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/oldcard Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 22:08:57 PDT Added files: sys/modules/oldcard Makefile Log: Preliminary commit of oldcard module. This might not work, but will. This should allow one to load oldcard or newcard for testing. Please let me know if this doesn't work. Don't load this and either of pcic or pccard. I've not tried it, but I suspect bad things will happen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:15: 4 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6943E37B587; Sat, 17 Jun 2000 22:15:02 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA40291; Sat, 17 Jun 2000 22:15:02 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180515.WAA40291@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 22:15:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 22:15:02 PDT Modified files: sys/conf options Log: Remove all but one (ISP_TARGET_MODE) option for isp. Revision Changes Path 1.208 +1 -19 src/sys/conf/options To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:18:59 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B484337B89D; Sat, 17 Jun 2000 22:18:55 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA41012; Sat, 17 Jun 2000 22:18:55 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180518.WAA41012@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 22:18:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci isp_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 22:18:55 PDT Modified files: sys/pci isp_pci.c Log: Clean up firmware load issues and remove darn near all config options. Force alphas to prefer mem mapping as the default. Basically, we have a pointer to a function which we can call which will return us a pointer to firmware for the card we have. We call this function (if it's non-NULL) with the address of our mdvec f/w pointer. The way this works is that if ispfw (as a module or a static) is loaded, it initializes the pointer in isp_pci, so we can call into to it to fetch a pointer to a f/w set. If ispfw is MOD_UNLOADed, it's retained a pointer to our mdvec f/w pointers, which then get zeroed out so we don't have any references to data that's now gone from kernel memory. Removing the f/w saves ~360KBytes. Alas, there is no autounload mechanism that works for is here. Revision Changes Path 1.46 +44 -96 src/sys/pci/isp_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:20:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DDBA37B546; Sat, 17 Jun 2000 22:20:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA41520; Sat, 17 Jun 2000 22:20:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180520.WAA41520@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 22:20:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 22:20:26 PDT Modified files: sys/modules Makefile Log: Add oldcard, pccard, pcic and sn modules to the build. Revision Changes Path 1.123 +4 -3 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:25:32 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 66A1837B546; Sat, 17 Jun 2000 22:25:30 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA43852; Sat, 17 Jun 2000 22:25:30 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180525.WAA43852@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 22:25:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pcic i82365.c i82365_isa.c i82365var.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 22:25:30 PDT Modified files: sys/dev/pcic i82365.c i82365_isa.c i82365var.h Log: Almost make loading work. This is a checkpoint. With these change we can almost kldload this. More work is ncessary, but I wanted to checkpoint this now. Revision Changes Path 1.21 +25 -32 src/sys/dev/pcic/i82365.c 1.17 +61 -13 src/sys/dev/pcic/i82365_isa.c 1.20 +2 -1 src/sys/dev/pcic/i82365var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:29: 2 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id C8D9837B587; Sat, 17 Jun 2000 22:28:59 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA44214; Sat, 17 Jun 2000 22:28:59 -0700 (PDT) (envelope-from imp@FreeBSD.org) Message-Id: <200006180528.WAA44214@freefall.freebsd.org> From: Warner Losh Date: Sat, 17 Jun 2000 22:28:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c pccard_cis.c pccardvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/06/17 22:28:59 PDT Modified files: sys/dev/pccard pccard.c pccard_cis.c pccardvar.h Log: Matching commits to pccard for last pcic changes. We now at least to probe/attach. This is a checkpoint. Revision Changes Path 1.12 +33 -26 src/sys/dev/pccard/pccard.c 1.10 +1 -3 src/sys/dev/pccard/pccard_cis.c 1.12 +1 -3 src/sys/dev/pccard/pccardvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:35:10 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5827937B546; Sat, 17 Jun 2000 22:35:08 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA45733; Sat, 17 Jun 2000 22:35:08 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180535.WAA45733@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 22:35:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 22:35:08 PDT Modified files: sys/conf files Log: Add ispfw as an optional 'device' (for static linking) Revision Changes Path 1.377 +2 -1 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:38:29 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D7E437B8A3; Sat, 17 Jun 2000 22:38:25 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA46005; Sat, 17 Jun 2000 22:38:25 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006180538.WAA46005@freefall.freebsd.org> From: Paul Saab Date: Sat, 17 Jun 2000 22:38:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/savecore savecore.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/17 22:38:25 PDT Modified files: (Branch: RELENG_3) sbin/savecore savecore.c Log: MFC: Support for > 2GB swap partitions. Revision Changes Path 1.21.2.2 +7 -6 src/sbin/savecore/savecore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:45:13 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 791CE37B7C5; Sat, 17 Jun 2000 22:45:11 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Received: (from davidn@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA46594; Sat, 17 Jun 2000 22:45:11 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Message-Id: <200006180545.WAA46594@freefall.freebsd.org> From: David Nugent Date: Sat, 17 Jun 2000 22:45:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw.c pw_user.c pwupd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG davidn 2000/06/17 22:45:11 PDT Modified files: (Branch: RELENG_4) usr.sbin/pw pw.c pw_user.c pwupd.c Log: MFC recent bug fixes. Revision Changes Path 1.18.2.1 +7 -5 src/usr.sbin/pw/pw.c 1.34.2.1 +12 -4 src/usr.sbin/pw/pw_user.c 1.12.2.1 +12 -4 src/usr.sbin/pw/pwupd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:50:24 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 0262B37B919; Sat, 17 Jun 2000 22:50:17 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA47020; Sat, 17 Jun 2000 22:50:16 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006180550.WAA47020@freefall.freebsd.org> From: Paul Saab Date: Sat, 17 Jun 2000 22:50:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ed if_ed.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/17 22:50:16 PDT Modified files: sys/dev/ed if_ed.c Log: Allow newer Linksys 10/100 PCMCIA cards to work. Reviewed by: imp Revision Changes Path 1.181 +11 -13 src/sys/dev/ed/if_ed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 22:51:41 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D9B7037B8CE; Sat, 17 Jun 2000 22:51:37 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Received: (from davidn@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA47126; Sat, 17 Jun 2000 22:51:37 -0700 (PDT) (envelope-from davidn@FreeBSD.org) Message-Id: <200006180551.WAA47126@freefall.freebsd.org> From: David Nugent Date: Sat, 17 Jun 2000 22:51:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw fileupd.c grupd.c pw.c pw.h pw_group.c pw_user.c pw_vpw.c pwupd.c pwupd.h X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG davidn 2000/06/17 22:51:36 PDT Modified files: (Branch: RELENG_3) usr.sbin/pw fileupd.c grupd.c pw.c pw.h pw_group.c pw_user.c pw_vpw.c pwupd.c pwupd.h Log: MFC recent bug fixes and feature. This commit unifies pw(8) code across all active branches. Still-Todo: manpage updates Revision Changes Path 1.6.2.3 +35 -27 src/usr.sbin/pw/fileupd.c 1.5.2.3 +3 -2 src/usr.sbin/pw/grupd.c 1.11.2.3 +20 -9 src/usr.sbin/pw/pw.c 1.7.2.3 +2 -0 src/usr.sbin/pw/pw.h 1.7.2.3 +26 -8 src/usr.sbin/pw/pw_group.c 1.25.2.4 +178 -48 src/usr.sbin/pw/pw_user.c 1.2.2.2 +3 -1 src/usr.sbin/pw/pw_vpw.c 1.7.2.3 +21 -10 src/usr.sbin/pw/pwupd.c 1.4.2.3 +9 -5 src/usr.sbin/pw/pwupd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 23: 8:14 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id D65F837B8E9; Sat, 17 Jun 2000 23:08:10 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: (from ps@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA49476; Sat, 17 Jun 2000 23:08:10 -0700 (PDT) (envelope-from ps@FreeBSD.org) Message-Id: <200006180608.XAA49476@freefall.freebsd.org> From: Paul Saab Date: Sat, 17 Jun 2000 23:08:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ed if_ed.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG ps 2000/06/17 23:08:10 PDT Modified files: (Branch: RELENG_4) sys/dev/ed if_ed.c Log: MFC: Allow newer Linksys 10/100 PCMCIA cards to work. Revision Changes Path 1.173.2.4 +11 -13 src/sys/dev/ed/if_ed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 23:17:31 2000 Delivered-To: cvs-all@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id 6CFE237B8E2; Sat, 17 Jun 2000 23:17:26 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@trang.nuxi.com [209.152.133.57]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id XAA67820; Sat, 17 Jun 2000 23:17:24 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id XAA62399; Sat, 17 Jun 2000 23:17:23 -0700 (PDT) (envelope-from obrien) Date: Sat, 17 Jun 2000 23:17:22 -0700 From: "David O'Brien" To: SADA Kenji Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Global 3.55 Message-ID: <20000617231722.A62377@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200006180013.JAA34692@home.bsdclub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200006180013.JAA34692@home.bsdclub.org>; from sada@bsdclub.org on Sun, Jun 18, 2000 at 09:13:29AM +0900 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Sun, Jun 18, 2000 at 09:13:29AM +0900, SADA Kenji wrote: > Could I import GLOBAL v3.55 into src/contrib/global ? Wasn't there some discussion that Global is now under the GPV and that we may want to stick with BSD-style licensed code? -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Jun 17 23:59:16 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B0A0337B64A; Sat, 17 Jun 2000 23:59:14 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Received: (from mjacob@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id XAA54547; Sat, 17 Jun 2000 23:59:14 -0700 (PDT) (envelope-from mjacob@FreeBSD.org) Message-Id: <200006180659.XAA54547@freefall.freebsd.org> From: Matt Jacob Date: Sat, 17 Jun 2000 23:59:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG mjacob 2000/06/17 23:59:14 PDT Modified files: sys/i386/conf NOTES Log: Remove all but ISP_TARGET_MODE options for isp and ispfw pseudo device. Revision Changes Path 1.786 +3 -59 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message