From owner-cvs-src Sun Feb 9 0:49: 5 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2294D37B401; Sun, 9 Feb 2003 00:49:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A78043F93; Sun, 9 Feb 2003 00:49:03 -0800 (PST) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h198n3bv032021; Sun, 9 Feb 2003 00:49:03 -0800 (PST) (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h198n247032020; Sun, 9 Feb 2003 00:49:02 -0800 (PST) Message-Id: <200302090849.h198n247032020@repoman.freebsd.org> From: Julian Elischer Date: Sun, 9 Feb 2003 00:49:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/sys proc.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2003/02/09 00:49:02 PST Modified files: sys/sys proc.h Log: Fix spelling errors in comments Submitted by: Davidxu@ Revision Changes Path 1.293 +3 -3 src/sys/sys/proc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 1:47:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AD0D37B401; Sun, 9 Feb 2003 01:47:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFDA643F75; Sun, 9 Feb 2003 01:47:31 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h199lVbv053639; Sun, 9 Feb 2003 01:47:31 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h199lVv3053638; Sun, 9 Feb 2003 01:47:31 -0800 (PST) Message-Id: <200302090947.h199lVv3053638@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 01:47:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 01:47:31 PST Modified files: sys/kern vfs_bio.c Log: - Lock down the buffer cache's infrastructure code. This includes locks on buf lists, synchronization variables, and atomic ops for the counters. This change does not remove giant from any code although some pushdown may be possible. - In vfs_bio_awrite() don't access buf fields without the buf lock. Revision Changes Path 1.360 +154 -61 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 1:50: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4748437B401; Sun, 9 Feb 2003 01:49:57 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2013C43F75; Sun, 9 Feb 2003 01:49:56 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h199nou56353; Sun, 9 Feb 2003 04:49:50 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Sun, 9 Feb 2003 04:49:50 -0500 (EST) From: Jeff Roberson To: Jeff Roberson Cc: src-committers@FreeBSD.org, , , Subject: Re: cvs commit: src/sys/kern vfs_bio.c In-Reply-To: <200302090947.h199lVv3053638@repoman.freebsd.org> Message-ID: <20030209044819.L50545-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 9 Feb 2003, Jeff Roberson wrote: > Log: > - Lock down the buffer cache's infrastructure code. This includes locks on > buf lists, synchronization variables, and atomic ops for the counters. > This change does not remove giant from any code although some pushdown > may be possible. > - In vfs_bio_awrite() don't access buf fields without the buf lock. One step closer.. I'm currently working on fixing all cases where bufs are accessed without locks. I also have a marked up buf.h that shows what variables are protected via what lock. I have a vop_stdfsync that replaced several duplicated and incomplete fsyncs from the tree. This will require some more testing though. Cheers, Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 2:14:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B916D37B401; Sun, 9 Feb 2003 02:14:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5505E43F75; Sun, 9 Feb 2003 02:14:23 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19AENbv064442; Sun, 9 Feb 2003 02:14:23 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19AENCY064441; Sun, 9 Feb 2003 02:14:23 -0800 (PST) Message-Id: <200302091014.h19AENCY064441@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 9 Feb 2003 02:14:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire firewire.c firewire.h firewirereg.h fwdev.c fwmem.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/09 02:14:22 PST Modified files: sys/dev/firewire firewire.c firewire.h firewirereg.h fwdev.c fwmem.c Log: Add new ioctl to specify target EUI64 for fwmem. Revision Changes Path 1.37 +2 -2 src/sys/dev/firewire/firewire.c 1.10 +3 -0 src/sys/dev/firewire/firewire.h 1.18 +1 -1 src/sys/dev/firewire/firewirereg.h 1.19 +1 -1 src/sys/dev/firewire/fwdev.c 1.13 +26 -8 src/sys/dev/firewire/fwmem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 3:21:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9A0237B401; Sun, 9 Feb 2003 03:21:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CF4043F85; Sun, 9 Feb 2003 03:21:41 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19BLfbv088733; Sun, 9 Feb 2003 03:21:41 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19BLfho088729; Sun, 9 Feb 2003 03:21:41 -0800 (PST) Message-Id: <200302091121.h19BLfho088729@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 03:21:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 03:21:41 PST Modified files: sys/kern vfs_bio.c Log: - spell add 'add' and not 'subtract' in an atomic op. Spotted by: alc Pointy hat to: jeff Revision Changes Path 1.361 +1 -1 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 3:28:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C122F37B407; Sun, 9 Feb 2003 03:28:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACD0A43FBD; Sun, 9 Feb 2003 03:28:35 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19BSZbv090321; Sun, 9 Feb 2003 03:28:35 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19BSZ9I090320; Sun, 9 Feb 2003 03:28:35 -0800 (PST) Message-Id: <200302091128.h19BSZ9I090320@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 03:28:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_vnops.c src/sys/fs/specfs spec_vnops.c src/sys/kern vfs_bio.c vfs_default.c src/sys/sys buf.h vnode.h src/sys/ufs/ffs ffs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 03:28:35 PST Modified files: sys/fs/hpfs hpfs_vnops.c sys/fs/msdosfs msdosfs_vnops.c sys/fs/specfs spec_vnops.c sys/kern vfs_bio.c vfs_default.c sys/sys buf.h vnode.h sys/ufs/ffs ffs_vnops.c Log: - Cleanup unlocked accesses to buf flags by introducing a new b_vflag member that is protected by the vnode lock. - Move B_SCANNED into b_vflags and call it BV_SCANNED. - Create a vop_stdfsync() modeled after spec's sync. - Replace spec_fsync, msdos_fsync, and hpfs_fsync with the stdfsync and some fs specific processing. This gives all of these filesystems proper behavior wrt MNT_WAIT/NOWAIT and the use of the B_SCANNED flag. - Annotate the locking in buf.h Revision Changes Path 1.40 +3 -36 src/sys/fs/hpfs/hpfs_vnops.c 1.131 +4 -37 src/sys/fs/msdosfs/msdosfs_vnops.c 1.195 +2 -81 src/sys/fs/specfs/spec_vnops.c 1.362 +4 -2 src/sys/kern/vfs_bio.c 1.71 +89 -0 src/sys/kern/vfs_default.c 1.144 +16 -8 src/sys/sys/buf.h 1.220 +1 -0 src/sys/sys/vnode.h 1.102 +6 -7 src/sys/ufs/ffs/ffs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 3:41:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11E2F37B401; Sun, 9 Feb 2003 03:41:41 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id A068243F3F; Sun, 9 Feb 2003 03:41:40 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h19BfeR84857; Sun, 9 Feb 2003 06:41:40 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Sun, 9 Feb 2003 06:41:40 -0500 (EST) From: Jeff Roberson To: Jeff Roberson Cc: src-committers@FreeBSD.org, , , Subject: Re: cvs commit: src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_vnops.c src/sys/fs/specfs spec_vnops.c src/sys/kern vfs_bio.c vfs_default.c src/sys/sys buf.h vnode.h src/sys/ufs/ff In-Reply-To: <200302091128.h19BSZ9I090320@repoman.freebsd.org> Message-ID: <20030209063654.A77658-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 9 Feb 2003, Jeff Roberson wrote: > - Cleanup unlocked accesses to buf flags by introducing a new b_vflag member > that is protected by the vnode lock. > - Move B_SCANNED into b_vflags and call it BV_SCANNED. > - Create a vop_stdfsync() modeled after spec's sync. > - Replace spec_fsync, msdos_fsync, and hpfs_fsync with the stdfsync and some > fs specific processing. This gives all of these filesystems proper > behavior wrt MNT_WAIT/NOWAIT and the use of the B_SCANNED flag. > - Annotate the locking in buf.h I forgot to mention. I tested this with specfs and msdosfs but I do not have access to hpfs. I suspect that it is ok. I will replace ext2s version soon too. Just in case you're wondering.. I'm going through the tree and verifying that all 'struct buf' consumers hold the buf lock. I'm close to completion. I have some scary stuff in nfs, softupdates, and vfs_cluster to sort out still. It's close though. Cheers, Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 3:48:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E06137B405; Sun, 9 Feb 2003 03:48:06 -0800 (PST) Received: from mailout09.sul.t-online.com (mailout09.sul.t-online.com [194.25.134.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85DF043F75; Sun, 9 Feb 2003 03:48:00 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd08.sul.t-online.de by mailout09.sul.t-online.com with smtp id 18hpwF-0000V2-07; Sun, 09 Feb 2003 12:47:59 +0100 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[217.229.222.9]) by fmrl08.sul.t-online.com with esmtp id 18hpw5-1sPSfgC; Sun, 9 Feb 2003 12:47:49 +0100 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) by Andro-Beta.Leidinger.net (8.12.6/8.12.6) with ESMTP id h19BllbL029382; Sun, 9 Feb 2003 12:47:47 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.6/8.12.6) with SMTP id h19BllNW001148; Sun, 9 Feb 2003 12:47:47 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sun, 9 Feb 2003 12:47:47 +0100 From: Alexander Leidinger To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, legacy-committers@FreeBSD.ORG Subject: Re: cvs commit: src/crypto/openssh ssh-agent.c Message-Id: <20030209124747.0e1b4b13.Alexander@Leidinger.net> In-Reply-To: <200302071548.h17FmRwv034210@repoman.freebsd.org> References: <200302071548.h17FmRwv034210@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 7 Feb 2003 07:48:27 -0800 (PST) Dag-Erling Smorgrav wrote: > des 2003/02/07 07:48:27 PST > > Modified files: > crypto/openssh ssh-agent.c > Log: > Set the ruid to the euid at startup as a workaround for a bug in pam_ssh. Was this supposed to fix my problem with xdm? If yes: doesn't work, I still have to start ssh-agent on my own. BTW.: I still have ---snip--- +#if 0 if ((euid != 0) && (getuid() != euid)) { error("uid mismatch: " "peer euid %u != uid %u", @@ -841,6 +846,7 @@ close(sock); break; } +#endif ---snip--- so this shouldn't be a problem. Bye, Alexander. -- Intel: where Quality is job number 0.9998782345! http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 3:56:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 870A637B401; Sun, 9 Feb 2003 03:56:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A1E443F85; Sun, 9 Feb 2003 03:56:14 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19BuDbv001360; Sun, 9 Feb 2003 03:56:13 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19BuDgT001359; Sun, 9 Feb 2003 03:56:13 -0800 (PST) Message-Id: <200302091156.h19BuDgT001359@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 03:56:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 03:56:13 PST Modified files: sys/kern kern_shutdown.c Log: - Update a printf format for b_flags. Revision Changes Path 1.139 +1 -1 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 3:59:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FC9937B401; Sun, 9 Feb 2003 03:59:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C04FC43F3F; Sun, 9 Feb 2003 03:59:42 -0800 (PST) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Bxgbv001455; Sun, 9 Feb 2003 03:59:42 -0800 (PST) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19Bxg4H001454; Sun, 9 Feb 2003 03:59:42 -0800 (PST) Message-Id: <200302091159.h19Bxg4H001454@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 9 Feb 2003 03:59:42 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.doc_src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG blackend 2003/02/09 03:59:42 PST Modified files: . access access.doc_src Log: Put myself in the right place. Revision Changes Path 1.543 +0 -1 CVSROOT/access 1.17 +1 -0 CVSROOT/access.doc_src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 4:11:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24D4137B401; Sun, 9 Feb 2003 04:11:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A7943F85; Sun, 9 Feb 2003 04:11:37 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19CBbbv007146; Sun, 9 Feb 2003 04:11:37 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19CBbtB007145; Sun, 9 Feb 2003 04:11:37 -0800 (PST) Message-Id: <200302091211.h19CBbtB007145@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 04:11:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 04:11:37 PST Modified files: sys/kern vfs_bio.c Log: - Move some code out from #ifdef INVARIANTS. Revision Changes Path 1.363 +0 -2 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 4:29: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 708CF37B401; Sun, 9 Feb 2003 04:28:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC5FB43F85; Sun, 9 Feb 2003 04:28:51 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19CSpbv012319; Sun, 9 Feb 2003 04:28:51 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19CSpPP012318; Sun, 9 Feb 2003 04:28:51 -0800 (PST) Message-Id: <200302091228.h19CSpPP012318@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 04:28:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/gnu/ext2fs ext2_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 04:28:51 PST Modified files: sys/gnu/ext2fs ext2_vnops.c Log: - Use the new vop_stdfsync instead of recreating our own. Revision Changes Path 1.77 +3 -49 src/sys/gnu/ext2fs/ext2_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 4:29:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CB8F37B401; Sun, 9 Feb 2003 04:29:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ED1643F93; Sun, 9 Feb 2003 04:29:39 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19CTdbv012360; Sun, 9 Feb 2003 04:29:39 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19CTcFw012359; Sun, 9 Feb 2003 04:29:38 -0800 (PST) Message-Id: <200302091229.h19CTcFw012359@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 04:29:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_default.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 04:29:38 PST Modified files: sys/kern vfs_default.c Log: - Claim we're 'fsync' and not 'spec_fsync' in vop_stdfsync. Revision Changes Path 1.72 +1 -1 src/sys/kern/vfs_default.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 4:59:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15D9137B401; Sun, 9 Feb 2003 04:59:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA05C43F85; Sun, 9 Feb 2003 04:59:46 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Cxkbv023435; Sun, 9 Feb 2003 04:59:46 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19CxkbJ023434; Sun, 9 Feb 2003 04:59:46 -0800 (PST) Message-Id: <200302091259.h19CxkbJ023434@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 9 Feb 2003 04:59:46 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2003/02/09 04:59:46 PST Modified files: . modules Log: ruby-pango -> ports/x11-toolkits/ruby-pango Revision Changes Path 1.6705 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 5: 2:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F0C737B401; Sun, 9 Feb 2003 05:02:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7A0D43FA3; Sun, 9 Feb 2003 05:02:57 -0800 (PST) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19D2vbv026891; Sun, 9 Feb 2003 05:02:57 -0800 (PST) (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19D2vwi026890; Sun, 9 Feb 2003 05:02:57 -0800 (PST) Message-Id: <200302091302.h19D2vwi026890@repoman.freebsd.org> From: Jens Schweikhardt Date: Sun, 9 Feb 2003 05:02:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG schweikh 2003/02/09 05:02:57 PST Modified files: . UPDATING Log: Correct assorted typos and grammos. No content changes. Revision Changes Path 1.242 +8 -8 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 5:12:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEC2B37B401; Sun, 9 Feb 2003 05:12:34 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C3ED43F75; Sun, 9 Feb 2003 05:12:34 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id BC267536E; Sun, 9 Feb 2003 14:12:32 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alexander Leidinger Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, legacy-committers@FreeBSD.ORG Subject: Re: cvs commit: src/crypto/openssh ssh-agent.c From: Dag-Erling Smorgrav Date: Sun, 09 Feb 2003 14:12:31 +0100 In-Reply-To: <20030209124747.0e1b4b13.Alexander@Leidinger.net> (Alexander Leidinger's message of "Sun, 9 Feb 2003 12:47:47 +0100") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302071548.h17FmRwv034210@repoman.freebsd.org> <20030209124747.0e1b4b13.Alexander@Leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Leidinger writes: > Was this supposed to fix my problem with xdm? If yes: doesn't work, I > still have to start ssh-agent on my own. Are you saying that the ssh-agent xdm starts doesn't work, or that xdm fails to start ssh-agent? I suspect the latter, because I've been having similar problems while trying to debug this. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 6:14:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 865AF37B401; Sun, 9 Feb 2003 06:14:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25B6B43F75; Sun, 9 Feb 2003 06:14:28 -0800 (PST) (envelope-from dannyboy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19EERbv052158; Sun, 9 Feb 2003 06:14:27 -0800 (PST) (envelope-from dannyboy@repoman.freebsd.org) Received: (from dannyboy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19EERP7052157; Sun, 9 Feb 2003 06:14:27 -0800 (PST) Message-Id: <200302091414.h19EERP7052157@repoman.freebsd.org> From: Daniel Harris Date: Sun, 9 Feb 2003 06:14:27 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.doc_src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dannyboy 2003/02/09 06:14:27 PST Modified files: . access access.doc_src Log: Move to doc_src. Revision Changes Path 1.544 +0 -1 CVSROOT/access 1.18 +1 -0 CVSROOT/access.doc_src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 6:40:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56B8D37B401; Sun, 9 Feb 2003 06:40:28 -0800 (PST) Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 027F143FE5; Sun, 9 Feb 2003 06:40:12 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd04.sul.t-online.de by mailout10.sul.t-online.com with smtp id 18hsct-0002EI-00; Sun, 09 Feb 2003 15:40:11 +0100 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[217.229.222.9]) by fmrl04.sul.t-online.com with esmtp id 18hscc-1Kq7UWC; Sun, 9 Feb 2003 15:39:54 +0100 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) by Andro-Beta.Leidinger.net (8.12.6/8.12.6) with ESMTP id h19EdqbL029826; Sun, 9 Feb 2003 15:39:52 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.6/8.12.6) with SMTP id h19EdqNW002159; Sun, 9 Feb 2003 15:39:52 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sun, 9 Feb 2003 15:39:51 +0100 From: Alexander Leidinger To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, legacy-committers@FreeBSD.ORG Subject: Re: cvs commit: src/crypto/openssh ssh-agent.c Message-Id: <20030209153951.5154e617.Alexander@Leidinger.net> In-Reply-To: References: <200302071548.h17FmRwv034210@repoman.freebsd.org> <20030209124747.0e1b4b13.Alexander@Leidinger.net> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 09 Feb 2003 14:12:31 +0100 Dag-Erling Smorgrav wrote: > Alexander Leidinger writes: > > Was this supposed to fix my problem with xdm? If yes: doesn't work, I > > still have to start ssh-agent on my own. > > Are you saying that the ssh-agent xdm starts doesn't work, or that xdm > fails to start ssh-agent? I suspect the latter, because I've been > having similar problems while trying to debug this. It fails to start it: ---snip--- (85) netchild@ttyp1 % grep -2 SSH ~/.xsession # ssh-passwd if [ ! -n "${SSH_AUTH_SOCK}" ]; then echo "No ssh-agent found, starting my own." eval $(ssh-agent) fi #if [ -S "${SSH_AUTH_SOCK}" ]; then # /usr/local/bin/ssh-add 2>&1 /dev/null echo -n ${SSH_AUTH_SOCK} > ${HOME}/.ssh_auth_sock #fi (86) netchild@ttyp1 % grep ssh ~/.xsession-errors No ssh-agent found, starting my own. ---snip--- Bye, Alexander. -- Intel: where Quality is job number 0.9998782345! http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 6:59:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F2D237B401; Sun, 9 Feb 2003 06:59:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E8A43F3F; Sun, 9 Feb 2003 06:59:56 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Exubv066715; Sun, 9 Feb 2003 06:59:56 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19ExuS3066714; Sun, 9 Feb 2003 06:59:56 -0800 (PST) Message-Id: <200302091459.h19ExuS3066714@repoman.freebsd.org> From: Jacques Vidrine Date: Sun, 9 Feb 2003 06:59:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/09 06:59:56 PST Modified files: secure/lib/libcrypto Makefile.inc Log: Do not define OPENSSL_NO_KRB5 here in CFLAGS. It is handled in opensslconf.h. Reminded by: reports from des, obrien Revision Changes Path 1.32 +1 -1 src/secure/lib/libcrypto/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 7:28:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B8FB37B401; Sun, 9 Feb 2003 07:28:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E287F43F93; Sun, 9 Feb 2003 07:28:13 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19FSDbv077584; Sun, 9 Feb 2003 07:28:13 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19FSDEn077583; Sun, 9 Feb 2003 07:28:13 -0800 (PST) Message-Id: <200302091528.h19FSDEn077583@repoman.freebsd.org> From: Jacques Vidrine Date: Sun, 9 Feb 2003 07:28:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/sys event.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/09 07:28:13 PST Modified files: (Branch: RELENG_4) sys/sys event.h Log: MFC 1.22: Evaluate arguments exactly once in EV_SET macro. Revision Changes Path 1.5.2.6 +2 -1 src/sys/sys/event.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 8:47: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CBB737B401; Sun, 9 Feb 2003 08:47:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BF8F43F3F; Sun, 9 Feb 2003 08:47:02 -0800 (PST) (envelope-from daichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Gl1bv006642; Sun, 9 Feb 2003 08:47:01 -0800 (PST) (envelope-from daichi@repoman.freebsd.org) Received: (from daichi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19Gl1xx006641; Sun, 9 Feb 2003 08:47:01 -0800 (PST) Message-Id: <200302091647.h19Gl1xx006641@repoman.freebsd.org> From: Daichi GOTO Date: Sun, 9 Feb 2003 08:47:01 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG daichi 2003/02/09 08:47:01 PST Modified files: . access.master access.ports Log: Approved by: knu (mentor) Revision Changes Path 1.569 +0 -1 CVSROOT/access.master 1.501 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 9: 5: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E46A37B405; Sun, 9 Feb 2003 09:04:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A222143F85; Sun, 9 Feb 2003 09:04:57 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19H4vbv013755; Sun, 9 Feb 2003 09:04:57 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19H4vn9013754; Sun, 9 Feb 2003 09:04:57 -0800 (PST) Message-Id: <200302091704.h19H4vn9013754@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 9 Feb 2003 09:04:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/geom geom_io.c geom_kern.c geom_stats.h notes X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/09 09:04:57 PST Modified files: sys/geom geom_io.c geom_kern.c geom_stats.h notes Log: Update the statistics collection code to track busy time instead of idle time. Statistics now default to "on" and can be turned off with sysctl kern.geom.collectstats=0 Performance impact of statistics collection is on the order of 800 nsec per consumer/provider set on a 700MHz Athlon. Revision Changes Path 1.27 +41 -39 src/sys/geom/geom_io.c 1.21 +1 -1 src/sys/geom/geom_kern.c 1.3 +35 -7 src/sys/geom/geom_stats.h 1.2 +48 -0 src/sys/geom/notes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 9:11:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 869F237B616; Sun, 9 Feb 2003 09:11:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FB0D43F93; Sun, 9 Feb 2003 09:11:15 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19HBEbv015454; Sun, 9 Feb 2003 09:11:14 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19HBEOS015453; Sun, 9 Feb 2003 09:11:14 -0800 (PST) Message-Id: <200302091711.h19HBEOS015453@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 9 Feb 2003 09:11:14 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2003/02/09 09:11:14 PST Modified files: . modules Log: ziarc --> ports/cad/ziarc Revision Changes Path 1.6706 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 9:11:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A960937B401; Sun, 9 Feb 2003 09:11:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C94A43F93; Sun, 9 Feb 2003 09:11:56 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19HBubv016560; Sun, 9 Feb 2003 09:11:56 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19HBuaA016557; Sun, 9 Feb 2003 09:11:56 -0800 (PST) Message-Id: <200302091711.h19HBuaA016557@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 9 Feb 2003 09:11:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire fwohci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/09 09:11:56 PST Modified files: sys/dev/firewire fwohci.c Log: Increase atrq.ndesc for if_fwe. Revision Changes Path 1.39 +2 -2 src/sys/dev/firewire/fwohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 9:20:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA35837B401; Sun, 9 Feb 2003 09:20:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD0A43F85; Sun, 9 Feb 2003 09:20:53 -0800 (PST) (envelope-from sheldonh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19HKrbv018705; Sun, 9 Feb 2003 09:20:53 -0800 (PST) (envelope-from sheldonh@repoman.freebsd.org) Received: (from sheldonh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19HKrSV018703; Sun, 9 Feb 2003 09:20:53 -0800 (PST) Message-Id: <200302091720.h19HKrSV018703@repoman.freebsd.org> From: Sheldon Hearn Date: Sun, 9 Feb 2003 09:20:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sbin/restore restore.8 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2003/02/09 09:20:53 PST Modified files: (Branch: RELENG_4) sbin/restore restore.8 Log: MFC rev 1.39 - 1.40: add ENVIRONMENT section, listing TMPDIR and TAPE Revision Changes Path 1.20.2.14 +7 -0 src/sbin/restore/restore.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 9:43:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68FC537B401; Sun, 9 Feb 2003 09:43:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B8D343F75; Sun, 9 Feb 2003 09:43:15 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19HhEbv028506; Sun, 9 Feb 2003 09:43:14 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19HhEiM028505; Sun, 9 Feb 2003 09:43:14 -0800 (PST) Message-Id: <200302091743.h19HhEiM028505@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 9 Feb 2003 09:43:14 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2003/02/09 09:43:14 PST Modified files: . modules Log: Unlink ruby-erb. Revision Changes Path 1.6707 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 10: 5:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A081037B401; Sun, 9 Feb 2003 10:05:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42A3C43F85; Sun, 9 Feb 2003 10:05:40 -0800 (PST) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19I5dbv035819; Sun, 9 Feb 2003 10:05:39 -0800 (PST) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19I5d0A035818; Sun, 9 Feb 2003 10:05:39 -0800 (PST) Message-Id: <200302091805.h19I5d0A035818@repoman.freebsd.org> From: Akinori MUSHA Date: Sun, 9 Feb 2003 10:05:39 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2003/02/09 10:05:39 PST Modified files: . modules Log: ruby-div --> ports/www/ruby-div Revision Changes Path 1.6708 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 10:14:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D50C337B401; Sun, 9 Feb 2003 10:14:33 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39A7943F85; Sun, 9 Feb 2003 10:14:33 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 37B255372; Sun, 9 Feb 2003 19:14:32 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alexander Leidinger Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, legacy-committers@FreeBSD.ORG Subject: Re: cvs commit: src/crypto/openssh ssh-agent.c From: Dag-Erling Smorgrav Date: Sun, 09 Feb 2003 19:14:31 +0100 In-Reply-To: <20030209153951.5154e617.Alexander@Leidinger.net> (Alexander Leidinger's message of "Sun, 9 Feb 2003 15:39:51 +0100") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302071548.h17FmRwv034210@repoman.freebsd.org> <20030209124747.0e1b4b13.Alexander@Leidinger.net> <20030209153951.5154e617.Alexander@Leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Leidinger writes: > On Sun, 09 Feb 2003 14:12:31 +0100 > Dag-Erling Smorgrav wrote: > > Are you saying that the ssh-agent xdm starts doesn't work, or that xdm > > fails to start ssh-agent? > It fails to start it: That's what I suspected. I'll have a fix for this in a day or two. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 10:17: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F140337B401; Sun, 9 Feb 2003 10:16:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B02543F85; Sun, 9 Feb 2003 10:16:58 -0800 (PST) (envelope-from dan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19IGwbv039472; Sun, 9 Feb 2003 10:16:58 -0800 (PST) (envelope-from dan@repoman.freebsd.org) Received: (from dan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19IGwb3039471; Sun, 9 Feb 2003 10:16:58 -0800 (PST) Message-Id: <200302091816.h19IGwb3039471@repoman.freebsd.org> From: Dan Moschuk Date: Sun, 9 Feb 2003 10:16:58 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dan 2003/02/09 10:16:58 PST Modified files: . access access.master access.ports Log: Add myself to src and ports. Revision Changes Path 1.545 +1 -0 CVSROOT/access 1.570 +0 -1 CVSROOT/access.master 1.502 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 10:29:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A93137B401; Sun, 9 Feb 2003 10:29:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B280343F93; Sun, 9 Feb 2003 10:29:09 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19IT9bv043124; Sun, 9 Feb 2003 10:29:09 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19IT9fc043123; Sun, 9 Feb 2003 10:29:09 -0800 (PST) Message-Id: <200302091829.h19IT9fc043123@repoman.freebsd.org> From: Mike Makonnen Date: Sun, 9 Feb 2003 10:29:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/usr.sbin/adduser adduser.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mtm 2003/02/09 10:29:09 PST Modified files: usr.sbin/adduser adduser.sh Log: Revisit the shell special characters issue and settle it once-and-forall. All characters will be accepted, and pw(8) can sort out which ones it will allow and which ones it won't. Approved by: markm (mentor) Prodded by: Philippe Bourcier Revision Changes Path 1.11 +19 -13 src/usr.sbin/adduser/adduser.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 10:58: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B5437B406; Sun, 9 Feb 2003 10:58:03 -0800 (PST) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D2D743F75; Sun, 9 Feb 2003 10:58:02 -0800 (PST) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.12.6/8.12.6) with ESMTP id h19Iw1ja065307; Sun, 9 Feb 2003 18:58:01 GMT (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost) by storm.FreeBSD.org.uk (8.12.6/8.12.6/Submit) with UUCP id h19Iw157065306; Sun, 9 Feb 2003 18:58:01 GMT X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.6/8.12.6) with ESMTP id h19IrAaX035593; Sun, 9 Feb 2003 20:53:10 +0200 (SAST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200302091853.h19IrAaX035593@grimreaper.grondar.org> To: Jacques Vidrine Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/secure/lib/libcrypto Makefile.inc In-Reply-To: Your message of "Sun, 09 Feb 2003 06:59:56 PST." <200302091459.h19ExuS3066714@repoman.freebsd.org> Date: Sun, 09 Feb 2003 18:53:09 +0000 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jacques Vidrine writes: > nectar 2003/02/09 06:59:56 PST > > Modified files: > secure/lib/libcrypto Makefile.inc > Log: > Do not define OPENSSL_NO_KRB5 here in CFLAGS. It is handled in > opensslconf.h. Damn. I was supposed to do this. Thanks for catching :-). M -- Mark Murray iumop ap!sdn w,I idlaH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 11:16:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85FA737B401; Sun, 9 Feb 2003 11:16:36 -0800 (PST) Received: from out006.verizon.net (out006pub.verizon.net [206.46.170.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 229A843F75; Sun, 9 Feb 2003 11:16:35 -0800 (PST) (envelope-from mtm@identd.net) Received: from kokeb.ambesa.net ([138.88.50.112]) by out006.verizon.net (InterMail vM.5.01.05.20 201-253-122-126-120-20021101) with ESMTP id <20030209191634.PHGI1817.out006.verizon.net@kokeb.ambesa.net>; Sun, 9 Feb 2003 13:16:34 -0600 Date: Sun, 9 Feb 2003 14:16:30 -0500 From: Mike Makonnen To: Mike Makonnen Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/adduser adduser.sh In-Reply-To: <200302091829.h19IT9fc043123@repoman.freebsd.org> References: <200302091829.h19IT9fc043123@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.10 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out006.verizon.net from [138.88.50.112] at Sun, 9 Feb 2003 13:16:30 -0600 Message-Id: <20030209191634.PHGI1817.out006.verizon.net@kokeb.ambesa.net> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In some cases, in interactive mode, it allows special processing of '\'. Pw(8) is supposed to support multiple locales and I wasn't sure if someone might need it to escape non us-ascii characters (in gecos, for example). So, I'll leave that in there untill someone who understands non us-ascii users' requirements can enlighten me. Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: D228 1A6F C64E 120A A1C9 A3AA DAE1 E2AF DBCC 68B9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 11:33:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDA6B37B401; Sun, 9 Feb 2003 11:33:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC4BF43FB1; Sun, 9 Feb 2003 11:33:18 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19JXIbv068338; Sun, 9 Feb 2003 11:33:18 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19JXINv068337; Sun, 9 Feb 2003 11:33:18 -0800 (PST) Message-Id: <200302091933.h19JXINv068337@repoman.freebsd.org> From: Peter Wemm Date: Sun, 9 Feb 2003 11:33:18 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/09 11:33:18 PST Modified files: . access.master Log: mtaylor: forwarded to mtaylor@cybernet.com -> "user unknown" Set to devnull. Revision Changes Path 1.571 +1 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 11:33:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AB1C37B406; Sun, 9 Feb 2003 11:33:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D2DD43F85; Sun, 9 Feb 2003 11:33:54 -0800 (PST) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19JXrbv068413; Sun, 9 Feb 2003 11:33:53 -0800 (PST) (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19JXr0j068412; Sun, 9 Feb 2003 11:33:53 -0800 (PST) Message-Id: <200302091933.h19JXr0j068412@repoman.freebsd.org> From: Joerg Wunsch Date: Sun, 9 Feb 2003 11:33:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.root.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joerg 2003/02/09 11:33:53 PST Modified files: etc/mtree BSD.root.dist Log: Set the expected permissions of /dev to 0555 since this is what devfs is using anyway. Otherwise, "make installworld" insists on resetting them to 0755. Revision Changes Path 1.60 +1 -1 src/etc/mtree/BSD.root.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 12: 1: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5251337B401; Sun, 9 Feb 2003 12:01:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E895943F3F; Sun, 9 Feb 2003 12:01:03 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19K13bv076847; Sun, 9 Feb 2003 12:01:03 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19K13c9076839; Sun, 9 Feb 2003 12:01:03 -0800 (PST) Message-Id: <200302092001.h19K13c9076839@repoman.freebsd.org> From: Christian Weisgerber Date: Sun, 9 Feb 2003 12:01:03 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org, ports-committers@FreeBSD.org Subject: cvs commit: CVSROOT modules ports MOVED ports/audio Makefile ports/audio/lame-devel Makefile distinfo pkg-comment pkg-descr pkg-plist ports/audio/lame-devel/files patch-vorbis_interface.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/09 12:01:03 PST Modified files: . modules . MOVED audio Makefile Removed files: audio/lame-devel Makefile distinfo pkg-comment pkg-descr pkg-plist audio/lame-devel/files patch-vorbis_interface.c Log: Remove obsolete lame-devel port. PR: 47872 Submitted by: Cyrille Lefevre Revision Changes Path 1.6709 +0 -1 CVSROOT/modules 1.63 +2 -1 ports/MOVED 1.381 +0 -1 ports/audio/Makefile 1.6 +0 -113 ports/audio/lame-devel/Makefile (dead) 1.2 +0 -1 ports/audio/lame-devel/distinfo (dead) 1.2 +0 -116 ports/audio/lame-devel/files/patch-vorbis_interface.c (dead) 1.2 +0 -1 ports/audio/lame-devel/pkg-comment (dead) 1.2 +0 -11 ports/audio/lame-devel/pkg-descr (dead) 1.3 +0 -27 ports/audio/lame-devel/pkg-plist (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 12: 1:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AF9137B405; Sun, 9 Feb 2003 12:01:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6387743F85; Sun, 9 Feb 2003 12:01:30 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19K1Ubv077631; Sun, 9 Feb 2003 12:01:30 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19K1UiD077610; Sun, 9 Feb 2003 12:01:30 -0800 (PST) Message-Id: <200302092001.h19K1UiD077610@repoman.freebsd.org> From: Peter Wemm Date: Sun, 9 Feb 2003 12:01:30 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/09 12:01:30 PST Modified files: . access.master Log: reg's email is bouncing too Revision Changes Path 1.572 +1 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 12:20: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3770437B401; Sun, 9 Feb 2003 12:19:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBA5943F75; Sun, 9 Feb 2003 12:19:58 -0800 (PST) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19KJwbv083449; Sun, 9 Feb 2003 12:19:58 -0800 (PST) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19KJwAa083448; Sun, 9 Feb 2003 12:19:58 -0800 (PST) Message-Id: <200302092019.h19KJwAa083448@repoman.freebsd.org> From: Max Khon Date: Sun, 9 Feb 2003 12:19:58 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fjoe 2003/02/09 12:19:58 PST Modified files: . modules Log: ports/x11-fm/gnomemc removed Revision Changes Path 1.6710 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 12:40:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6E1637B401; Sun, 9 Feb 2003 12:40:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88F1843F85; Sun, 9 Feb 2003 12:40:36 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Keabv091242; Sun, 9 Feb 2003 12:40:36 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19Kea5u091240; Sun, 9 Feb 2003 12:40:36 -0800 (PST) Message-Id: <200302092040.h19Kea5u091240@repoman.freebsd.org> From: Alan Cox Date: Sun, 9 Feb 2003 12:40:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/vm vm_pageout.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/09 12:40:36 PST Modified files: sys/vm vm_pageout.c Log: Add a comment describing how pagedaemon_wakeup() should be used and synchronized. Suggested by: tegge Revision Changes Path 1.226 +6 -0 src/sys/vm/vm_pageout.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 13:20:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFAC437B401; Sun, 9 Feb 2003 13:20:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F05F43F3F; Sun, 9 Feb 2003 13:20:45 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19LKjbv005917; Sun, 9 Feb 2003 13:20:45 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19LKjVw005910; Sun, 9 Feb 2003 13:20:45 -0800 (PST) Message-Id: <200302092120.h19LKjVw005910@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 9 Feb 2003 13:20:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_ssh Makefile pam_ssh.8 pam_ssh.c pam_ssh.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/09 13:20:45 PST Modified files: lib/libpam/modules/pam_ssh Makefile pam_ssh.8 pam_ssh.c Removed files: lib/libpam/modules/pam_ssh pam_ssh.h Log: Complete rewrite of pam_ssh(8). The previous version was becoming hard to maintain, and had security issues which would have required a major rewrite to address anyway. This implementation currently starts a separate agent for each session instead of connecting each new session to the agent started by the first one. While this would be a Good Thing (and the old pam_ssh(8) tried to do it), it's hard to get right. I'll revisit this issue when I've had a chance to test some modifications to ssh-agent(1). Revision Changes Path 1.14 +2 -2 src/lib/libpam/modules/pam_ssh/Makefile 1.11 +23 -27 src/lib/libpam/modules/pam_ssh/pam_ssh.8 1.37 +291 -490 src/lib/libpam/modules/pam_ssh/pam_ssh.c 1.4 +0 -47 src/lib/libpam/modules/pam_ssh/pam_ssh.h (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 13:26:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BCAB37B401; Sun, 9 Feb 2003 13:26:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99E0C43F93; Sun, 9 Feb 2003 13:26:08 -0800 (PST) (envelope-from wosch@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19LQ8bv008756; Sun, 9 Feb 2003 13:26:08 -0800 (PST) (envelope-from wosch@repoman.freebsd.org) Received: (from wosch@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19LQ8jN008755; Sun, 9 Feb 2003 13:26:08 -0800 (PST) Message-Id: <200302092126.h19LQ8jN008755@repoman.freebsd.org> From: Wolfram Schneider Date: Sun, 9 Feb 2003 13:26:08 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.doc access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wosch 2003/02/09 13:26:08 PST Modified files: . access access.doc access.master access.ports Log: Add myself as src + doc + ports committer. Revision Changes Path 1.546 +1 -0 CVSROOT/access 1.458 +1 -0 CVSROOT/access.doc 1.573 +0 -1 CVSROOT/access.master 1.503 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 13:49:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7524237B401; Sun, 9 Feb 2003 13:49:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1548A43F3F; Sun, 9 Feb 2003 13:49:46 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Lnjbv016025; Sun, 9 Feb 2003 13:49:45 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19LnjM6016024; Sun, 9 Feb 2003 13:49:45 -0800 (PST) Message-Id: <200302092149.h19LnjM6016024@repoman.freebsd.org> From: Nate Lawson Date: Sun, 9 Feb 2003 13:49:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG njl 2003/02/09 13:49:45 PST Modified files: sys/cam/scsi scsi_da.c Log: Quirk for Lexar Media Jumpdrive PR: kern/47006 Tested by: George Hartzell MFC after: 1 week Revision Changes Path 1.124 +8 -0 src/sys/cam/scsi/scsi_da.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 14: 4:52 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 019FD37B401; Sun, 9 Feb 2003 14:04:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9549C43F3F; Sun, 9 Feb 2003 14:04:50 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19M4obv023154; Sun, 9 Feb 2003 14:04:50 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19M4o5n023153; Sun, 9 Feb 2003 14:04:50 -0800 (PST) Message-Id: <200302092204.h19M4o5n023153@repoman.freebsd.org> From: Martin Blapp Date: Sun, 9 Feb 2003 14:04:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall tcpip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2003/02/09 14:04:50 PST Modified files: usr.sbin/sysinstall tcpip.c Log: Explicitly release a existing lease before we start dhclient (again). If we already have a lease and restart sysinstall (or something with the net configuration goes wrong), we would have to reboot just because there is a dhclient hanging around. Reviewed by: murray (re) MFC after: 5 days Revision Changes Path 1.126 +1 -0 src/usr.sbin/sysinstall/tcpip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 14:32:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E25237B401; Sun, 9 Feb 2003 14:32:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB6C443FBD; Sun, 9 Feb 2003 14:32:50 -0800 (PST) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19MWobv033700; Sun, 9 Feb 2003 14:32:50 -0800 (PST) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19MWoYJ033699; Sun, 9 Feb 2003 14:32:50 -0800 (PST) Message-Id: <200302092232.h19MWoYJ033699@repoman.freebsd.org> From: Nate Lawson Date: Sun, 9 Feb 2003 14:32:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/pci if_rl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG njl 2003/02/09 14:32:50 PST Modified files: sys/pci if_rl.c Log: Clean up exit path from rl_attach() to remove multiple returns Revision Changes Path 1.86 +3 -3 src/sys/pci/if_rl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 14:39:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49CBE37B401; Sun, 9 Feb 2003 14:39:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBF0243F85; Sun, 9 Feb 2003 14:39:51 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h19Mdpbv034113; Sun, 9 Feb 2003 14:39:51 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h19MdpeX034112; Sun, 9 Feb 2003 14:39:51 -0800 (PST) Message-Id: <200302092239.h19MdpeX034112@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 14:39:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 14:39:51 PST Modified files: sys/kern vfs_bio.c Log: - Correct another atomic op. Spotted by: alc Revision Changes Path 1.364 +2 -1 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 16:11:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0939537B401; Sun, 9 Feb 2003 16:11:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94CAE43F93; Sun, 9 Feb 2003 16:11:43 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A0Bhbv068641; Sun, 9 Feb 2003 16:11:43 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A0BhPv068637; Sun, 9 Feb 2003 16:11:43 -0800 (PST) Message-Id: <200302100011.h1A0BhPv068637@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 9 Feb 2003 16:11:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/lib/libgeom Makefile geom_getxml.c geom_stats.c geom_xml2tree.c libgeom.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/09 16:11:43 PST Modified files: lib/libgeom Makefile geom_stats.c libgeom.h Added files: lib/libgeom geom_getxml.c geom_xml2tree.c Log: Leak more stuff into libgeom. Revision Changes Path 1.3 +5 -1 src/lib/libgeom/Makefile 1.1 +66 -0 src/lib/libgeom/geom_getxml.c (new) 1.2 +0 -5 src/lib/libgeom/geom_stats.c 1.1 +428 -0 src/lib/libgeom/geom_xml2tree.c (new) 1.3 +83 -0 src/lib/libgeom/libgeom.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 16:34:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B79CF37B401; Sun, 9 Feb 2003 16:34:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 513FB43F93; Sun, 9 Feb 2003 16:34:25 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A0YPbv077003; Sun, 9 Feb 2003 16:34:25 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A0YPsE077002; Sun, 9 Feb 2003 16:34:25 -0800 (PST) Message-Id: <200302100034.h1A0YPsE077002@repoman.freebsd.org> From: Scott Long Date: Sun, 9 Feb 2003 16:34:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/dev/aac aac.c aac_pci.c aacvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2003/02/09 16:34:25 PST Modified files: sys/dev/aac aac.c aac_pci.c aacvar.h Log: Implement a new dynamic command allocator. FIBs are allocated in 1 page blocks now, which should eliminate problems with the driver failing to attach due to insufficient contiguous RAM. Allow the FIB pool to grow from the default of 128 to the max of 512 as demand grows. Also pad the adapter init struct to work around the 2120/2200 DMA bug now that there is no longer a FIB slab. Revision Changes Path 1.52 +81 -46 src/sys/dev/aac/aac.c 1.28 +1 -1 src/sys/dev/aac/aac_pci.c 1.24 +14 -9 src/sys/dev/aac/aacvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 16:36:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2880B37B401; Sun, 9 Feb 2003 16:36:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AAE743FAF; Sun, 9 Feb 2003 16:36:27 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A0aRbv077160; Sun, 9 Feb 2003 16:36:27 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A0aRYj077159; Sun, 9 Feb 2003 16:36:27 -0800 (PST) Message-Id: <200302100036.h1A0aRYj077159@repoman.freebsd.org> From: Jeffrey Hsu Date: Sun, 9 Feb 2003 16:36:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/sys libkern.h src/sys/libkern strcat.c strcpy.c strncpy.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/09 16:36:27 PST Modified files: sys/sys libkern.h sys/libkern strcat.c strcpy.c strncpy.c Log: Add restrict keyword to string functions. Reviewed by: bde Revision Changes Path 1.8 +1 -3 src/sys/libkern/strcat.c 1.9 +1 -3 src/sys/libkern/strcpy.c 1.8 +1 -4 src/sys/libkern/strncpy.c 1.37 +3 -3 src/sys/sys/libkern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 16:47:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FF0E37B401; Sun, 9 Feb 2003 16:47:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B29A43F93; Sun, 9 Feb 2003 16:47:47 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A0llbv080890; Sun, 9 Feb 2003 16:47:47 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A0llZ8080889; Sun, 9 Feb 2003 16:47:47 -0800 (PST) Message-Id: <200302100047.h1A0llZ8080889@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 9 Feb 2003 16:47:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/etc/pam.d Makefile ftp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/09 16:47:46 PST Modified files: etc/pam.d Makefile Removed files: etc/pam.d ftp Log: There's no reason to have two identical policies for FTP servers, so make ftp a symlink to ftpd. Revision Changes Path 1.8 +5 -2 src/etc/pam.d/Makefile 1.5 +0 -24 src/etc/pam.d/ftp (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 16:49:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0433337B405; Sun, 9 Feb 2003 16:49:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A6BC43FAF; Sun, 9 Feb 2003 16:49:44 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A0nibv080953; Sun, 9 Feb 2003 16:49:44 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A0ni5i080952; Sun, 9 Feb 2003 16:49:44 -0800 (PST) Message-Id: <200302100049.h1A0ni5i080952@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 9 Feb 2003 16:49:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/etc/pam.d xserver X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/09 16:49:44 PST Removed files: etc/pam.d xserver Log: No idea what this is for, and it doesn't make much sense. If a port needs it, it can install its own copy in /usr/local/etc/pam.d/. Revision Changes Path 1.3 +0 -8 src/etc/pam.d/xserver (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 16:50: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6F9037B401; Sun, 9 Feb 2003 16:50:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61DED43F3F; Sun, 9 Feb 2003 16:50:04 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A0o4bv081030; Sun, 9 Feb 2003 16:50:04 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A0o4Ih081029; Sun, 9 Feb 2003 16:50:04 -0800 (PST) Message-Id: <200302100050.h1A0o4Ih081029@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 9 Feb 2003 16:50:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/etc/pam.d ftpd gdm imap kde login other passwd pop3 rexecd rsh sshd su telnetd xdm X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/09 16:50:03 PST Modified files: etc/pam.d ftpd gdm imap kde login other passwd pop3 rexecd rsh sshd su telnetd xdm Log: Major cleanup & homogenization. Revision Changes Path 1.15 +12 -12 src/etc/pam.d/ftpd 1.5 +11 -14 src/etc/pam.d/gdm 1.4 +6 -6 src/etc/pam.d/imap 1.4 +16 -7 src/etc/pam.d/kde 1.12 +15 -15 src/etc/pam.d/login 1.7 +15 -6 src/etc/pam.d/other 1.2 +2 -2 src/etc/pam.d/passwd 1.4 +6 -6 src/etc/pam.d/pop3 1.2 +9 -6 src/etc/pam.d/rexecd 1.5 +9 -3 src/etc/pam.d/rsh 1.12 +15 -7 src/etc/pam.d/sshd 1.11 +13 -40 src/etc/pam.d/su 1.4 +21 -4 src/etc/pam.d/telnetd 1.5 +10 -13 src/etc/pam.d/xdm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 18: 8:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A09637B401; Sun, 9 Feb 2003 18:08:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB6F443F93; Sun, 9 Feb 2003 18:08:49 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A28nbv009941; Sun, 9 Feb 2003 18:08:49 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A28nAh009940; Sun, 9 Feb 2003 18:08:49 -0800 (PST) Message-Id: <200302100208.h1A28nAh009940@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 9 Feb 2003 18:08:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/usr.bin/lock lock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/09 18:08:49 PST Modified files: usr.bin/lock lock.c Log: Make this work without COMPAT_43 by using tcgetattr()/tcsetattr() instead of ioctl TIOCGETP/TIOCSETP. Revision Changes Path 1.16 +10 -10 src/usr.bin/lock/lock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 20:42:23 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A25637B401; Sun, 9 Feb 2003 20:42:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E74A143FF9; Sun, 9 Feb 2003 20:42:20 -0800 (PST) (envelope-from jake@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A4gKbv066849; Sun, 9 Feb 2003 20:42:20 -0800 (PST) (envelope-from jake@repoman.freebsd.org) Received: (from jake@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A4gKi4066848; Sun, 9 Feb 2003 20:42:20 -0800 (PST) Message-Id: <200302100442.h1A4gKi4066848@repoman.freebsd.org> From: Jake Burkholder Date: Sun, 9 Feb 2003 20:42:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern kern_prot.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2003/02/09 20:42:20 PST Modified files: sys/kern kern_prot.c Log: Remove mtx_lock_giant from functions which are mp-safe. Revision Changes Path 1.166 +0 -9 src/sys/kern/kern_prot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:43:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71F7B37B401; Sun, 9 Feb 2003 21:42:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E49743FE1; Sun, 9 Feb 2003 21:42:41 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5gfbv088757; Sun, 9 Feb 2003 21:42:41 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5gekn088756; Sun, 9 Feb 2003 21:42:40 -0800 (PST) Message-Id: <200302100542.h1A5gekn088756@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:42:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc - Imported sources X-FreeBSD-CVS-Branch: FSF Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:42:40 PST src/contrib/gcc - Imported sources Update of /home/ncvs/src/contrib/gcc In directory repoman.freebsd.org:/tmp/cvs-serv74587 Log Message: Gcc 3.2.2-release. Status: Vendor Tag: FSF Release Tags: gcc_3_2_2_20030205 U src/contrib/gcc/df.h U src/contrib/gcc/libgcc2.c U src/contrib/gcc/c-aux-info.c U src/contrib/gcc/explow.c U src/contrib/gcc/sibcall.c U src/contrib/gcc/collect2.c U src/contrib/gcc/debug.c U src/contrib/gcc/c-errors.c U src/contrib/gcc/doloop.c U src/contrib/gcc/reload.c U src/contrib/gcc/glimits.h U src/contrib/gcc/c-typeck.c U src/contrib/gcc/genattrtab.c C src/contrib/gcc/recog.c U src/contrib/gcc/gthr-rtems.h U src/contrib/gcc/bitmap.c U src/contrib/gcc/gthr-single.h U src/contrib/gcc/cfglayout.c U src/contrib/gcc/ONEWS U src/contrib/gcc/tree-inline.c U src/contrib/gcc/sbitmap.h U src/contrib/gcc/resource.h U src/contrib/gcc/cfg.c U src/contrib/gcc/cse.c U src/contrib/gcc/doschk.c U src/contrib/gcc/gcc.h U src/contrib/gcc/lcm.c U src/contrib/gcc/rtl.h U src/contrib/gcc/ssa.h U src/contrib/gcc/COPYING.LIB U src/contrib/gcc/c-lex.h U src/contrib/gcc/errors.c U src/contrib/gcc/c-semantics.c U src/contrib/gcc/dwarf2asm.c U src/contrib/gcc/dwarf2out.c U src/contrib/gcc/timevar.def C src/contrib/gcc/configure U src/contrib/gcc/gengenrtl.c U src/contrib/gcc/cpphash.c U src/contrib/gcc/c-parse.in U src/contrib/gcc/ssa-ccp.c U src/contrib/gcc/timevar.c U src/contrib/gcc/tsystem.h U src/contrib/gcc/protoize.c U src/contrib/gcc/predict.h U src/contrib/gcc/cppinit.c U src/contrib/gcc/dwarf.h U src/contrib/gcc/genconfig.c U src/contrib/gcc/df.c U src/contrib/gcc/libgcc2.h U src/contrib/gcc/debug.h U src/contrib/gcc/expmed.c U src/contrib/gcc/combine.c U src/contrib/gcc/local-alloc.c U src/contrib/gcc/collect2.h U src/contrib/gcc/tree.def U src/contrib/gcc/configure.frag C src/contrib/gcc/emit-rtl.c U src/contrib/gcc/reload.h U src/contrib/gcc/ggc-none.c U src/contrib/gcc/ggc-page.c U src/contrib/gcc/dwarf2.h U src/contrib/gcc/recog.h U src/contrib/gcc/cfgrtl.c U src/contrib/gcc/bitmap.h U src/contrib/gcc/reorg.c U src/contrib/gcc/cfglayout.h U src/contrib/gcc/gbl-ctors.h U src/contrib/gcc/README.Portability U src/contrib/gcc/tree-inline.h U src/contrib/gcc/sbitmap.c U src/contrib/gcc/resource.c U src/contrib/gcc/SERVICE U src/contrib/gcc/genmultilib U src/contrib/gcc/fold-const.c U src/contrib/gcc/aclocal.m4 C src/contrib/gcc/gcc.c U src/contrib/gcc/ggc.h U src/contrib/gcc/scan-decls.c U src/contrib/gcc/rtl.c U src/contrib/gcc/ssa.c U src/contrib/gcc/unwind-pe.h U src/contrib/gcc/c-lex.c U src/contrib/gcc/sys-protos.h U src/contrib/gcc/errors.h U src/contrib/gcc/LANGUAGES U src/contrib/gcc/dwarf2asm.h C src/contrib/gcc/c-format.c U src/contrib/gcc/dwarf2out.h U src/contrib/gcc/attribs.c U src/contrib/gcc/config.in U src/contrib/gcc/langhooks-def.h U src/contrib/gcc/sys-types.h U src/contrib/gcc/cpphash.h U src/contrib/gcc/mkmap-flat.awk U src/contrib/gcc/lists.c U src/contrib/gcc/unroll.c U src/contrib/gcc/ssa-dce.c U src/contrib/gcc/rtl.def U src/contrib/gcc/timevar.h U src/contrib/gcc/libfuncs.h U src/contrib/gcc/predict.c U src/contrib/gcc/dominance.c U src/contrib/gcc/dwarfout.c U src/contrib/gcc/gencheck.c U src/contrib/gcc/cppmacro.c U src/contrib/gcc/gthr-vxworks.h U src/contrib/gcc/reg-stack.c U src/contrib/gcc/cppmain.c U src/contrib/gcc/unwind.h U src/contrib/gcc/unwind-dw2-fde-glibc.c U src/contrib/gcc/configure.in U src/contrib/gcc/genpreds.c U src/contrib/gcc/line-map.c U src/contrib/gcc/line-map.h U src/contrib/gcc/gthr-solaris.h U src/contrib/gcc/scan-types.sh C src/contrib/gcc/dbxout.c U src/contrib/gcc/dbxout.h U src/contrib/gcc/fp-test.c C src/contrib/gcc/c-common.c C src/contrib/gcc/c-common.h U src/contrib/gcc/params.c U src/contrib/gcc/params.h U src/contrib/gcc/config.guess U src/contrib/gcc/langhooks.c U src/contrib/gcc/langhooks.h U src/contrib/gcc/cpperror.c U src/contrib/gcc/haifa-sched.c U src/contrib/gcc/gencodes.c U src/contrib/gcc/unwind.inc U src/contrib/gcc/sdbout.c U src/contrib/gcc/sdbout.h U src/contrib/gcc/cppfiles.c U src/contrib/gcc/gensupport.c U src/contrib/gcc/gensupport.h C src/contrib/gcc/function.c U src/contrib/gcc/function.h U src/contrib/gcc/tree-dump.c U src/contrib/gcc/tree-dump.h U src/contrib/gcc/dependence.c U src/contrib/gcc/cppspec.c U src/contrib/gcc/final.c U src/contrib/gcc/enquire.c U src/contrib/gcc/flags.h U src/contrib/gcc/mbchar.c U src/contrib/gcc/mbchar.h U src/contrib/gcc/config.gcc U src/contrib/gcc/genoutput.c U src/contrib/gcc/halfpic.c U src/contrib/gcc/halfpic.h U src/contrib/gcc/stack.h U src/contrib/gcc/convert.c U src/contrib/gcc/convert.h U src/contrib/gcc/gen-protos.c U src/contrib/gcc/genrecog.c U src/contrib/gcc/global.c U src/contrib/gcc/typeclass.h U src/contrib/gcc/diagnostic.c U src/contrib/gcc/diagnostic.h U src/contrib/gcc/cfgcleanup.c U src/contrib/gcc/conflict.c U src/contrib/gcc/genattr.c U src/contrib/gcc/tlink.c U src/contrib/gcc/c-pragma.c U src/contrib/gcc/c-pragma.h U src/contrib/gcc/xcoffout.c U src/contrib/gcc/xcoffout.h U src/contrib/gcc/floatlib.c U src/contrib/gcc/flow.c U src/contrib/gcc/expr.c U src/contrib/gcc/expr.h U src/contrib/gcc/gcov.c U src/contrib/gcc/gcse.c U src/contrib/gcc/hashtable.c U src/contrib/gcc/hashtable.h U src/contrib/gcc/hash.c U src/contrib/gcc/hash.h U src/contrib/gcc/gdbinit.in U src/contrib/gcc/gmon.c U src/contrib/gcc/builtins.def C src/contrib/gcc/Makefile.in U src/contrib/gcc/genemit.c U src/contrib/gcc/gthr.h U src/contrib/gcc/sort-protos U src/contrib/gcc/simplify-rtx.c U src/contrib/gcc/mips-tdump.c U src/contrib/gcc/intl.c U src/contrib/gcc/intl.h U src/contrib/gcc/fixproto U src/contrib/gcc/target-def.h U src/contrib/gcc/unwind-sjlj.c U src/contrib/gcc/genopinit.c U src/contrib/gcc/mips-tfile.c U src/contrib/gcc/diagnostic.def U src/contrib/gcc/cppdefault.c U src/contrib/gcc/cppdefault.h U src/contrib/gcc/jump.c U src/contrib/gcc/predict.def U src/contrib/gcc/main.c U src/contrib/gcc/rtlanal.c U src/contrib/gcc/loop.c U src/contrib/gcc/loop.h U src/contrib/gcc/integrate.c U src/contrib/gcc/integrate.h U src/contrib/gcc/params.def U src/contrib/gcc/ggc-simple.c U src/contrib/gcc/gcov-io.h U src/contrib/gcc/output.h U src/contrib/gcc/ChangeLog.0 U src/contrib/gcc/ChangeLog.1 U src/contrib/gcc/ChangeLog.2 U src/contrib/gcc/ChangeLog.3 U src/contrib/gcc/ChangeLog.4 U src/contrib/gcc/ChangeLog.5 U src/contrib/gcc/ChangeLog.6 U src/contrib/gcc/real.c U src/contrib/gcc/real.h U src/contrib/gcc/regs.h U src/contrib/gcc/basic-block.h U src/contrib/gcc/genpeep.c U src/contrib/gcc/graph.c U src/contrib/gcc/graph.h U src/contrib/gcc/defaults.h U src/contrib/gcc/scan.c U src/contrib/gcc/scan.h U src/contrib/gcc/cppexp.c U src/contrib/gcc/mklibgcc.in U src/contrib/gcc/stmt.c U src/contrib/gcc/prefix.c U src/contrib/gcc/prefix.h U src/contrib/gcc/cpplex.c U src/contrib/gcc/cpplib.c U src/contrib/gcc/cpplib.h U src/contrib/gcc/unwind-dw2.c U src/contrib/gcc/system.h U src/contrib/gcc/gthr-win32.h U src/contrib/gcc/FSFChangeLog.10 U src/contrib/gcc/FSFChangeLog.11 U src/contrib/gcc/stab.def U src/contrib/gcc/gstab.h U src/contrib/gcc/tree.c U src/contrib/gcc/tree.h U src/contrib/gcc/reload1.c U src/contrib/gcc/gccbug.in U src/contrib/gcc/gsyms.h U src/contrib/gcc/vmsdbg.h U src/contrib/gcc/alias.c U src/contrib/gcc/ggc-callbacks.c U src/contrib/gcc/print-rtl.c U src/contrib/gcc/insn-addr.h U src/contrib/gcc/cfgbuild.c C src/contrib/gcc/builtins.c U src/contrib/gcc/genextract.c U src/contrib/gcc/read-rtl.c C src/contrib/gcc/c-decl.c U src/contrib/gcc/gthr-aix.h U src/contrib/gcc/gthr-dce.h U src/contrib/gcc/mkdeps.c U src/contrib/gcc/mkdeps.h U src/contrib/gcc/profile.c U src/contrib/gcc/machmode.h U src/contrib/gcc/c-common.def U src/contrib/gcc/target.h U src/contrib/gcc/gthr-posix.h U src/contrib/gcc/libgcc-std.ver U src/contrib/gcc/bb-reorder.c U src/contrib/gcc/hooks.c U src/contrib/gcc/toplev.c U src/contrib/gcc/toplev.h U src/contrib/gcc/vmsdbgout.c U src/contrib/gcc/cfganal.c U src/contrib/gcc/genflags.c U src/contrib/gcc/hooks.h U src/contrib/gcc/ifcvt.c U src/contrib/gcc/future.options U src/contrib/gcc/builtin-attrs.def U src/contrib/gcc/caller-save.c U src/contrib/gcc/print-tree.c U src/contrib/gcc/c-objc-common.c U src/contrib/gcc/sched-ebb.c U src/contrib/gcc/stringpool.c U src/contrib/gcc/sched-int.h U src/contrib/gcc/c-lang.c U src/contrib/gcc/machmode.def U src/contrib/gcc/ggc-common.c U src/contrib/gcc/sched-rgn.c U src/contrib/gcc/dbxstclass.h U src/contrib/gcc/sched-vis.c U src/contrib/gcc/except.c U src/contrib/gcc/except.h U src/contrib/gcc/calls.c U src/contrib/gcc/gsyslimits.h U src/contrib/gcc/fix-header.c U src/contrib/gcc/FSFChangeLog U src/contrib/gcc/longlong.h U src/contrib/gcc/stor-layout.c U src/contrib/gcc/mkconfig.sh U src/contrib/gcc/optabs.c U src/contrib/gcc/optabs.h U src/contrib/gcc/hwint.h U src/contrib/gcc/cstamp-h.in U src/contrib/gcc/regrename.c U src/contrib/gcc/hard-reg-set.h U src/contrib/gcc/ChangeLog U src/contrib/gcc/README-fixinc U src/contrib/gcc/move-if-change U src/contrib/gcc/rtl-error.c C src/contrib/gcc/version.c U src/contrib/gcc/version.h U src/contrib/gcc/input.h U src/contrib/gcc/genconstants.c U src/contrib/gcc/gccspec.c U src/contrib/gcc/acconfig.h U src/contrib/gcc/conditions.h U src/contrib/gcc/builtin-types.def U src/contrib/gcc/COPYING U src/contrib/gcc/cfgloop.c U src/contrib/gcc/varasm.c U src/contrib/gcc/tradcif.y U src/contrib/gcc/tradcpp.c U src/contrib/gcc/tradcpp.h U src/contrib/gcc/c-tree.h U src/contrib/gcc/hex.c U src/contrib/gcc/cselib.c U src/contrib/gcc/cselib.h U src/contrib/gcc/md5.c U src/contrib/gcc/regmove.c U src/contrib/gcc/varray.c U src/contrib/gcc/varray.h U src/contrib/gcc/c-convert.c U src/contrib/gcc/ChangeLog.lib U src/contrib/gcc/crtstuff.c U src/contrib/gcc/limitx.h U src/contrib/gcc/limity.h U src/contrib/gcc/unwind-dw2-fde.c U src/contrib/gcc/unwind-dw2-fde.h U src/contrib/gcc/regclass.c U src/contrib/gcc/mkmap-symver.awk U src/contrib/gcc/sched-deps.c U src/contrib/gcc/choose-temp.c U src/contrib/gcc/make-temp-file.c U src/contrib/gcc/concat.c U src/contrib/gcc/cp-demangle.c U src/contrib/gcc/cplus-dem.c U src/contrib/gcc/dyn-string.c U src/contrib/gcc/fibheap.c U src/contrib/gcc/getopt.c U src/contrib/gcc/getopt1.c U src/contrib/gcc/getpwd.c U src/contrib/gcc/hashtab.c U src/contrib/gcc/lbasename.c U src/contrib/gcc/obstack.c U src/contrib/gcc/partition.c U src/contrib/gcc/pexecute.c U src/contrib/gcc/splay-tree.c U src/contrib/gcc/ansidecl.h U src/contrib/gcc/demangle.h U src/contrib/gcc/dyn-string.h U src/contrib/gcc/fibheap.h U src/contrib/gcc/getopt.h U src/contrib/gcc/hashtab.h U src/contrib/gcc/libiberty.h U src/contrib/gcc/md5.h U src/contrib/gcc/obstack.h U src/contrib/gcc/partition.h U src/contrib/gcc/splay-tree.h U src/contrib/gcc/symcat.h U src/contrib/gcc/f/intrin.c U src/contrib/gcc/f/intrin.h U src/contrib/gcc/f/st.c U src/contrib/gcc/f/st.h U src/contrib/gcc/f/lang-specs.h U src/contrib/gcc/f/news0.texi U src/contrib/gcc/f/invoke.texi U src/contrib/gcc/f/info-b.def U src/contrib/gcc/f/info-k.def U src/contrib/gcc/f/info-w.def U src/contrib/gcc/f/root.texi U src/contrib/gcc/f/bad.c U src/contrib/gcc/f/bad.h U src/contrib/gcc/f/g77.1 U src/contrib/gcc/f/bit.c U src/contrib/gcc/f/bit.h U src/contrib/gcc/f/bld.c U src/contrib/gcc/f/bld.h U src/contrib/gcc/f/com.c U src/contrib/gcc/f/com.h U src/contrib/gcc/f/lab.c U src/contrib/gcc/f/lab.h U src/contrib/gcc/f/lex.c U src/contrib/gcc/f/lex.h U src/contrib/gcc/f/src.c U src/contrib/gcc/f/src.h U src/contrib/gcc/f/sta.c U src/contrib/gcc/f/sta.h U src/contrib/gcc/f/stb.c U src/contrib/gcc/f/stb.h U src/contrib/gcc/f/stc.c U src/contrib/gcc/f/stc.h U src/contrib/gcc/f/std.c U src/contrib/gcc/f/std.h U src/contrib/gcc/f/ste.c U src/contrib/gcc/f/ste.h U src/contrib/gcc/f/stp.c U src/contrib/gcc/f/stp.h U src/contrib/gcc/f/str.c U src/contrib/gcc/f/str.h U src/contrib/gcc/f/sts.c U src/contrib/gcc/f/sts.h U src/contrib/gcc/f/stt.c U src/contrib/gcc/f/stt.h U src/contrib/gcc/f/stu.c U src/contrib/gcc/f/stu.h U src/contrib/gcc/f/stv.c U src/contrib/gcc/f/stv.h U src/contrib/gcc/f/stw.c U src/contrib/gcc/f/stw.h U src/contrib/gcc/f/top.c U src/contrib/gcc/f/top.h U src/contrib/gcc/f/symbol.def U src/contrib/gcc/f/README U src/contrib/gcc/f/ansify.c U src/contrib/gcc/f/bld-op.def U src/contrib/gcc/f/equiv.c U src/contrib/gcc/f/equiv.h U src/contrib/gcc/f/malloc.c U src/contrib/gcc/f/malloc.h U src/contrib/gcc/f/bugs.texi U src/contrib/gcc/f/global.c U src/contrib/gcc/f/global.h U src/contrib/gcc/f/data.c U src/contrib/gcc/f/data.h U src/contrib/gcc/f/fini.c U src/contrib/gcc/f/expr.c U src/contrib/gcc/f/expr.h U src/contrib/gcc/f/Make-lang.in U src/contrib/gcc/f/info.c U src/contrib/gcc/f/info.h U src/contrib/gcc/f/str-fo.fin U src/contrib/gcc/f/symbol.c U src/contrib/gcc/f/symbol.h U src/contrib/gcc/f/bugs0.texi U src/contrib/gcc/f/name.c U src/contrib/gcc/f/name.h U src/contrib/gcc/f/str-io.fin U src/contrib/gcc/f/ChangeLog.0 U src/contrib/gcc/f/proj.h U src/contrib/gcc/f/com-rt.def U src/contrib/gcc/f/str-nq.fin U src/contrib/gcc/f/str-op.fin U src/contrib/gcc/f/str-ot.fin U src/contrib/gcc/f/bad.def U src/contrib/gcc/f/type.c U src/contrib/gcc/f/type.h U src/contrib/gcc/f/config-lang.in U src/contrib/gcc/f/lang-options.h U src/contrib/gcc/f/target.c U src/contrib/gcc/f/target.h U src/contrib/gcc/f/parse.c U src/contrib/gcc/f/ffe.texi U src/contrib/gcc/f/intrin.def U src/contrib/gcc/f/implic.c U src/contrib/gcc/f/implic.h U src/contrib/gcc/f/where.c U src/contrib/gcc/f/where.h U src/contrib/gcc/f/str-1t.fin U src/contrib/gcc/f/str-2t.fin U src/contrib/gcc/f/ChangeLog U src/contrib/gcc/f/intdoc.texi U src/contrib/gcc/f/storag.c U src/contrib/gcc/f/storag.h U src/contrib/gcc/f/intdoc.in U src/contrib/gcc/f/version.c U src/contrib/gcc/f/version.h U src/contrib/gcc/f/g77.texi U src/contrib/gcc/f/news.texi U src/contrib/gcc/f/g77spec.c U src/contrib/gcc/f/RELEASE-PREP U src/contrib/gcc/f/intdoc.c U src/contrib/gcc/cp/NEWS U src/contrib/gcc/cp/ptree.c U src/contrib/gcc/cp/pt.c U src/contrib/gcc/cp/lang-specs.h U src/contrib/gcc/cp/decl2.c U src/contrib/gcc/cp/method.c U src/contrib/gcc/cp/g++.1 U src/contrib/gcc/cp/cvt.c U src/contrib/gcc/cp/lex.c U src/contrib/gcc/cp/lex.h U src/contrib/gcc/cp/semantics.c U src/contrib/gcc/cp/typeck.c U src/contrib/gcc/cp/optimize.c U src/contrib/gcc/cp/typeck2.c U src/contrib/gcc/cp/error.c U src/contrib/gcc/cp/cp-tree.def U src/contrib/gcc/cp/mangle.c U src/contrib/gcc/cp/cfns.gperf U src/contrib/gcc/cp/call.c C src/contrib/gcc/cp/decl.c U src/contrib/gcc/cp/decl.h U src/contrib/gcc/cp/dump.c U src/contrib/gcc/cp/expr.c U src/contrib/gcc/cp/cp-lang.c U src/contrib/gcc/cp/Make-lang.in U src/contrib/gcc/cp/search.c U src/contrib/gcc/cp/init.c U src/contrib/gcc/cp/ChangeLog.egcs U src/contrib/gcc/cp/ChangeLog.1 U src/contrib/gcc/cp/ChangeLog.2 U src/contrib/gcc/cp/cp-tree.h U src/contrib/gcc/cp/friend.c U src/contrib/gcc/cp/repo.c U src/contrib/gcc/cp/rtti.c U src/contrib/gcc/cp/spew.c U src/contrib/gcc/cp/tree.c U src/contrib/gcc/cp/mpw-config.in U src/contrib/gcc/cp/config-lang.in U src/contrib/gcc/cp/lang-options.h U src/contrib/gcc/cp/parse.y C src/contrib/gcc/cp/except.c U src/contrib/gcc/cp/ChangeLog U src/contrib/gcc/cp/operators.def U src/contrib/gcc/cp/g++spec.c U src/contrib/gcc/cp/mpw-make.sed U src/contrib/gcc/cp/class.c U src/contrib/gcc/doc/c-tree.texi U src/contrib/gcc/doc/hostconfig.texi U src/contrib/gcc/doc/invoke.texi U src/contrib/gcc/doc/compat.texi U src/contrib/gcc/doc/cpp.1 U src/contrib/gcc/doc/gcc.1 U src/contrib/gcc/doc/interface.texi U src/contrib/gcc/doc/rtl.texi U src/contrib/gcc/doc/portability.texi U src/contrib/gcc/doc/fragments.texi U src/contrib/gcc/doc/md.texi U src/contrib/gcc/doc/bugreport.texi U src/contrib/gcc/doc/contribute.texi U src/contrib/gcc/doc/tm.texi U src/contrib/gcc/doc/languages.texi U src/contrib/gcc/doc/cppenv.texi U src/contrib/gcc/doc/frontends.texi U src/contrib/gcc/doc/gcov.1 U src/contrib/gcc/doc/configfiles.texi U src/contrib/gcc/doc/objc.texi U src/contrib/gcc/doc/service.texi U src/contrib/gcc/doc/cpp.texi U src/contrib/gcc/doc/gcov.texi U src/contrib/gcc/doc/vms.texi U src/contrib/gcc/doc/cppopts.texi U src/contrib/gcc/doc/sourcebuild.texi U src/contrib/gcc/doc/configterms.texi U src/contrib/gcc/doc/gnu.texi U src/contrib/gcc/doc/collect2.texi U src/contrib/gcc/doc/contrib.texi U src/contrib/gcc/doc/makefile.texi U src/contrib/gcc/doc/headerdirs.texi U src/contrib/gcc/doc/trouble.texi U src/contrib/gcc/doc/gcc.texi U src/contrib/gcc/doc/cppinternals.texi U src/contrib/gcc/doc/passes.texi U src/contrib/gcc/doc/extend.texi U src/contrib/gcc/doc/standards.texi U src/contrib/gcc/doc/gccint.texi U src/contrib/gcc/doc/include/gcc-common.texi U src/contrib/gcc/doc/include/funding.texi U src/contrib/gcc/doc/include/fdl.texi U src/contrib/gcc/doc/include/texinfo.tex U src/contrib/gcc/doc/include/gpl.texi U src/contrib/gcc/objc/lang-specs.h U src/contrib/gcc/objc/objc-tree.def U src/contrib/gcc/objc/README U src/contrib/gcc/objc/objc-act.c U src/contrib/gcc/objc/objc-act.h U src/contrib/gcc/objc/objc-lang.c U src/contrib/gcc/objc/Make-lang.in U src/contrib/gcc/objc/config-lang.in U src/contrib/gcc/objc/lang-options.h U src/contrib/gcc/config/interix3.h U src/contrib/gcc/config/tm-dwarf2.h U src/contrib/gcc/config/t-netbsd U src/contrib/gcc/config/darwin.c U src/contrib/gcc/config/darwin.h U src/contrib/gcc/config/t-slibgcc-sld U src/contrib/gcc/config/dbx.h U src/contrib/gcc/config/t-freebsd-thread U src/contrib/gcc/config/gnu.h U src/contrib/gcc/config/t-gnu U src/contrib/gcc/config/netbsd-elf.h U src/contrib/gcc/config/t-freebsd U src/contrib/gcc/config/t-slibgcc-nolc-override U src/contrib/gcc/config/nextstep-protos.h U src/contrib/gcc/config/README U src/contrib/gcc/config/freebsd-nthr.h U src/contrib/gcc/config/linux.h U src/contrib/gcc/config/t-install-cpp U src/contrib/gcc/config/freebsd-spec.h U src/contrib/gcc/config/libgloss.h U src/contrib/gcc/config/elfos.h U src/contrib/gcc/config/rtems.h U src/contrib/gcc/config/lynx.h U src/contrib/gcc/config/divmod.c U src/contrib/gcc/config/dbxelf.h U src/contrib/gcc/config/t-libgcc-pic U src/contrib/gcc/config/float-sparc.h U src/contrib/gcc/config/freebsd3.h U src/contrib/gcc/config/freebsd4.h U src/contrib/gcc/config/freebsd5.h U src/contrib/gcc/config/freebsd6.h U src/contrib/gcc/config/aoutos.h U src/contrib/gcc/config/float-sh.h U src/contrib/gcc/config/t-openbsd U src/contrib/gcc/config/dbxcoff.h U src/contrib/gcc/config/udivmod.c U src/contrib/gcc/config/freebsd.h U src/contrib/gcc/config/float-c4x.h U src/contrib/gcc/config/openbsd.h U src/contrib/gcc/config/float-i32.h U src/contrib/gcc/config/float-i64.h U src/contrib/gcc/config/darwin-protos.h U src/contrib/gcc/config/float-vax.h U src/contrib/gcc/config/nextstep21.h U src/contrib/gcc/config/fp-bit.c U src/contrib/gcc/config/fp-bit.h U src/contrib/gcc/config/t-interix U src/contrib/gcc/config/t-svr4 U src/contrib/gcc/config/lynx-ng.h U src/contrib/gcc/config/t-slibgcc-elf-ver U src/contrib/gcc/config/psos.h U src/contrib/gcc/config/netbsd-aout.h U src/contrib/gcc/config/ptx4.h U src/contrib/gcc/config/t-linux U src/contrib/gcc/config/t-rtems U src/contrib/gcc/config/netbsd.h U src/contrib/gcc/config/svr3.h U src/contrib/gcc/config/svr4.h U src/contrib/gcc/config/darwin-c.c U src/contrib/gcc/config/t-linux-gnulibc1 U src/contrib/gcc/config/nextstep.c U src/contrib/gcc/config/nextstep.h U src/contrib/gcc/config/gofast.h U src/contrib/gcc/config/t-linux-aout U src/contrib/gcc/config/usegas.h U src/contrib/gcc/config/float-i128.h U src/contrib/gcc/config/float-i386.h U src/contrib/gcc/config/x-interix U src/contrib/gcc/config/linux-aout.h U src/contrib/gcc/config/float-m68k.h U src/contrib/gcc/config/libgcc-glibc.ver U src/contrib/gcc/config/t-libc-ok U src/contrib/gcc/config/interix.h U src/contrib/gcc/config/t-openbsd-thread U src/contrib/gcc/config/udivmodsi4.c U src/contrib/gcc/config/arm/crtn.asm U src/contrib/gcc/config/arm/t-pe U src/contrib/gcc/config/arm/pe.c U src/contrib/gcc/config/arm/pe.h U src/contrib/gcc/config/arm/t-xscale-elf U src/contrib/gcc/config/arm/t-netbsd U src/contrib/gcc/config/arm/aof.h U src/contrib/gcc/config/arm/arm.c U src/contrib/gcc/config/arm/arm.h U src/contrib/gcc/config/arm/elf.h U src/contrib/gcc/config/arm/t-strongarm-elf U src/contrib/gcc/config/arm/t-riscix U src/contrib/gcc/config/arm/linux-elf.h U src/contrib/gcc/config/arm/linux-gas.h U src/contrib/gcc/config/arm/lib1funcs.asm U src/contrib/gcc/config/arm/t-xscale-coff U src/contrib/gcc/config/arm/semiaof.h U src/contrib/gcc/config/arm/unknown-elf-oabi.h U src/contrib/gcc/config/arm/riscix1-1.h U src/contrib/gcc/config/arm/strongarm-coff.h U src/contrib/gcc/config/arm/aout.h U src/contrib/gcc/config/arm/arm.md U src/contrib/gcc/config/arm/t-arm-elf U src/contrib/gcc/config/arm/coff.h U src/contrib/gcc/config/arm/t-semi U src/contrib/gcc/config/arm/freebsd.h U src/contrib/gcc/config/arm/t-strongarm-coff U src/contrib/gcc/config/arm/uclinux-elf.h U src/contrib/gcc/config/arm/unknown-elf.h U src/contrib/gcc/config/arm/t-linux U src/contrib/gcc/config/arm/rtems-elf.h U src/contrib/gcc/config/arm/t-strongarm-pe U src/contrib/gcc/config/arm/semi.h U src/contrib/gcc/config/arm/netbsd.h U src/contrib/gcc/config/arm/strongarm-elf.h U src/contrib/gcc/config/arm/strongarm-pe.h U src/contrib/gcc/config/arm/riscix.h U src/contrib/gcc/config/arm/README-interworking U src/contrib/gcc/config/arm/ecos-elf.h U src/contrib/gcc/config/arm/t-arm-aout U src/contrib/gcc/config/arm/t-arm-coff U src/contrib/gcc/config/arm/arm-wince-pe.h U src/contrib/gcc/config/arm/conix-elf.h U src/contrib/gcc/config/arm/xscale-elf.h U src/contrib/gcc/config/arm/vxarm.h U src/contrib/gcc/config/arm/arm-protos.h U src/contrib/gcc/config/arm/xscale-coff.h U src/contrib/gcc/config/arm/rix-gas.h U src/contrib/gcc/config/arm/crti.asm U src/contrib/gcc/config/i386/v3gas.h U src/contrib/gcc/config/i386/sol2-ci.asm U src/contrib/gcc/config/i386/sol2-cn.asm U src/contrib/gcc/config/i386/freebsd-aout.h U src/contrib/gcc/config/i386/i386.md U src/contrib/gcc/config/i386/t-mingw32 U src/contrib/gcc/config/i386/t-rtems-i386 U src/contrib/gcc/config/i386/sequent.h U src/contrib/gcc/config/i386/vxi386.h U src/contrib/gcc/config/i386/xm-djgpp.h U src/contrib/gcc/config/i386/freebsd64.h U src/contrib/gcc/config/i386/mmintrin.h U src/contrib/gcc/config/i386/djgpp.h U src/contrib/gcc/config/i386/t-svr3dbx U src/contrib/gcc/config/i386/seq-gas.h U src/contrib/gcc/config/i386/osfelf.h U src/contrib/gcc/config/i386/att.h U src/contrib/gcc/config/i386/bsd.h U src/contrib/gcc/config/i386/gas.h U src/contrib/gcc/config/i386/gnu.h U src/contrib/gcc/config/i386/ptx4-i.h U src/contrib/gcc/config/i386/isc.h U src/contrib/gcc/config/i386/t-osf U src/contrib/gcc/config/i386/t-udk U src/contrib/gcc/config/i386/sun.h U src/contrib/gcc/config/i386/udk.h U src/contrib/gcc/config/i386/netbsd-elf.h U src/contrib/gcc/config/i386/i386-aout.h U src/contrib/gcc/config/i386/i386-coff.h U src/contrib/gcc/config/i386/djgpp-rtems.h U src/contrib/gcc/config/i386/beos-elf.h U src/contrib/gcc/config/i386/t-crtstuff U src/contrib/gcc/config/i386/osf1elfgdb.h U src/contrib/gcc/config/i386/bsd386.h U src/contrib/gcc/config/i386/linux.h U src/contrib/gcc/config/i386/osf1-ci.asm U src/contrib/gcc/config/i386/osf1-cn.asm U src/contrib/gcc/config/i386/x86-64.h U src/contrib/gcc/config/i386/rtems.h U src/contrib/gcc/config/i386/mingw32.h U src/contrib/gcc/config/i386/i386-interix.h U src/contrib/gcc/config/i386/sol2gas.h U src/contrib/gcc/config/i386/uwin.asm U src/contrib/gcc/config/i386/t-openbsd U src/contrib/gcc/config/i386/aix386ng.h C src/contrib/gcc/config/i386/i386.c C src/contrib/gcc/config/i386/i386.h U src/contrib/gcc/config/i386/dgux.h U src/contrib/gcc/config/i386/linux-oldld.h U src/contrib/gcc/config/i386/xm-i386-interix.h U src/contrib/gcc/config/i386/svr3z.ifile U src/contrib/gcc/config/i386/aix386.h U src/contrib/gcc/config/i386/t-osf1elf U src/contrib/gcc/config/i386/isccoff.h U src/contrib/gcc/config/i386/freebsd.h U src/contrib/gcc/config/i386/iscdbx.h U src/contrib/gcc/config/i386/cygwin.asm U src/contrib/gcc/config/i386/sysv3.h U src/contrib/gcc/config/i386/sysv4.h U src/contrib/gcc/config/i386/sysv5.h U src/contrib/gcc/config/i386/openbsd.h U src/contrib/gcc/config/i386/gstabs.h U src/contrib/gcc/config/i386/osfrose.h U src/contrib/gcc/config/i386/i386-interix3.h U src/contrib/gcc/config/i386/t-interix U src/contrib/gcc/config/i386/lynx-ng.h U src/contrib/gcc/config/i386/mach.h U src/contrib/gcc/config/i386/lynx.h U src/contrib/gcc/config/i386/moss.h U src/contrib/gcc/config/i386/next.h U src/contrib/gcc/config/i386/svr3dbx.h U src/contrib/gcc/config/i386/svr3gas.h U src/contrib/gcc/config/i386/t-beos U src/contrib/gcc/config/i386/t-dgux U src/contrib/gcc/config/i386/t-next U src/contrib/gcc/config/i386/t-sco5 U src/contrib/gcc/config/i386/t-sol2 U src/contrib/gcc/config/i386/t-uwin U src/contrib/gcc/config/i386/xmmintrin.h U src/contrib/gcc/config/i386/t-djgpp U src/contrib/gcc/config/i386/sco5.h U src/contrib/gcc/config/i386/osf1elf.h U src/contrib/gcc/config/i386/netbsd.h U src/contrib/gcc/config/i386/sol2.h U src/contrib/gcc/config/i386/biarch64.h U src/contrib/gcc/config/i386/unix.h U src/contrib/gcc/config/i386/sol2-gc1.asm U src/contrib/gcc/config/i386/t-i386elf U src/contrib/gcc/config/i386/netbsd64.h U src/contrib/gcc/config/i386/uwin.h U src/contrib/gcc/config/i386/vsta.h U src/contrib/gcc/config/i386/xm-cygwin.h U src/contrib/gcc/config/i386/386bsd.h U src/contrib/gcc/config/i386/i386-protos.h U src/contrib/gcc/config/i386/seq2-sysv3.h U src/contrib/gcc/config/i386/xm-vsta.h U src/contrib/gcc/config/i386/libgcc-x86_64-glibc.ver U src/contrib/gcc/config/i386/svr3.ifile U src/contrib/gcc/config/i386/linux-aout.h U src/contrib/gcc/config/i386/cygwin.h U src/contrib/gcc/config/i386/t-sco5gas U src/contrib/gcc/config/i386/win32.h U src/contrib/gcc/config/i386/gmon-sol2.c U src/contrib/gcc/config/i386/winnt.c U src/contrib/gcc/config/i386/seq-sysv3.h U src/contrib/gcc/config/i386/interix.c U src/contrib/gcc/config/i386/t-linux64 U src/contrib/gcc/config/i386/sun386.h U src/contrib/gcc/config/i386/rtemself.h U src/contrib/gcc/config/i386/sol2-c1.asm U src/contrib/gcc/config/i386/linux64.h U src/contrib/gcc/config/i386/t-crtpic U src/contrib/gcc/config/i386/t-cygwin U src/contrib/gcc/config/i386/xm-mingw32.h U src/contrib/gcc/config/i386/i386elf.h U src/contrib/gcc/config/i386/crtdll.h U src/contrib/gcc/config/ia64/crtn.asm U src/contrib/gcc/config/ia64/crtfastmath.c U src/contrib/gcc/config/ia64/quadlib.c U src/contrib/gcc/config/ia64/crtbegin.asm U src/contrib/gcc/config/ia64/aix.h U src/contrib/gcc/config/ia64/elf.h U src/contrib/gcc/config/ia64/t-aix U src/contrib/gcc/config/ia64/linux.h U src/contrib/gcc/config/ia64/lib1funcs.asm U src/contrib/gcc/config/ia64/ia64-protos.h U src/contrib/gcc/config/ia64/fde-glibc.c U src/contrib/gcc/config/ia64/unwind-ia64.c U src/contrib/gcc/config/ia64/unwind-ia64.h U src/contrib/gcc/config/ia64/freebsd.h U src/contrib/gcc/config/ia64/ia64.c U src/contrib/gcc/config/ia64/ia64.h U src/contrib/gcc/config/ia64/sysv4.h U src/contrib/gcc/config/ia64/hpux.h U src/contrib/gcc/config/ia64/t-ia64 U src/contrib/gcc/config/ia64/t-hpux U src/contrib/gcc/config/ia64/t-glibc U src/contrib/gcc/config/ia64/ia64.md U src/contrib/gcc/config/ia64/unwind-aix.c U src/contrib/gcc/config/ia64/ia64intrin.h U src/contrib/gcc/config/ia64/crtend.asm U src/contrib/gcc/config/ia64/hpux_longdouble.h U src/contrib/gcc/config/ia64/libgcc-ia64.ver U src/contrib/gcc/config/ia64/crti.asm U src/contrib/gcc/config/s390/linux.h U src/contrib/gcc/config/s390/s390-protos.h U src/contrib/gcc/config/s390/s390.md U src/contrib/gcc/config/s390/s390x.h U src/contrib/gcc/config/s390/s390.c U src/contrib/gcc/config/s390/s390.h U src/contrib/gcc/config/s390/t-linux U src/contrib/gcc/config/s390/fixdfdi.h U src/contrib/gcc/config/s390/libgcc-glibc.ver U src/contrib/gcc/config/s390/t-linux64 U src/contrib/gcc/config/alpha/vxworks.h U src/contrib/gcc/config/alpha/crtfastmath.c U src/contrib/gcc/config/alpha/vms-crt0-64.c U src/contrib/gcc/config/alpha/unicosmk.h U src/contrib/gcc/config/alpha/elf.h U src/contrib/gcc/config/alpha/xm-alpha-interix.h U src/contrib/gcc/config/alpha/t-vms U src/contrib/gcc/config/alpha/osf.h U src/contrib/gcc/config/alpha/x-vms U src/contrib/gcc/config/alpha/vms.h U src/contrib/gcc/config/alpha/qrnnd.asm U src/contrib/gcc/config/alpha/linux-elf.h U src/contrib/gcc/config/alpha/linux.h U src/contrib/gcc/config/alpha/t-unicosmk U src/contrib/gcc/config/alpha/lib1funcs.asm U src/contrib/gcc/config/alpha/freebsd.h U src/contrib/gcc/config/alpha/vms-psxcrt0.c U src/contrib/gcc/config/alpha/alpha-interix.h U src/contrib/gcc/config/alpha/openbsd.h U src/contrib/gcc/config/alpha/t-interix U src/contrib/gcc/config/alpha/alpha32.h U src/contrib/gcc/config/alpha/t-ieee U src/contrib/gcc/config/alpha/t-osf4 U src/contrib/gcc/config/alpha/osf5.h U src/contrib/gcc/config/alpha/vms-dwarf2eh.asm U src/contrib/gcc/config/alpha/vms-cc.c U src/contrib/gcc/config/alpha/vms-ld.c U src/contrib/gcc/config/alpha/t-alpha U src/contrib/gcc/config/alpha/vms_tramp.asm U src/contrib/gcc/config/alpha/t-crtfm U src/contrib/gcc/config/alpha/va_list.h U src/contrib/gcc/config/alpha/t-vms64 U src/contrib/gcc/config/alpha/netbsd.h U src/contrib/gcc/config/alpha/osf2or3.h U src/contrib/gcc/config/alpha/alpha.c U src/contrib/gcc/config/alpha/alpha.h U src/contrib/gcc/config/alpha/vms-psxcrt0-64.c U src/contrib/gcc/config/alpha/xm-vms64.h U src/contrib/gcc/config/alpha/vms64.h U src/contrib/gcc/config/alpha/vms-crt0.c U src/contrib/gcc/config/alpha/osf12.h U src/contrib/gcc/config/alpha/alpha-protos.h U src/contrib/gcc/config/alpha/alpha.md U src/contrib/gcc/config/alpha/vms-dwarf2.asm U src/contrib/gcc/config/alpha/linux-ecoff.h U src/contrib/gcc/config/alpha/xm-vms.h U src/contrib/gcc/config/sparc/sol2-g1.asm U src/contrib/gcc/config/sparc/sol2-ci.asm U src/contrib/gcc/config/sparc/t-sol2-64 U src/contrib/gcc/config/sparc/sunos4.h U src/contrib/gcc/config/sparc/sol2-cn.asm U src/contrib/gcc/config/sparc/crtfastmath.c U src/contrib/gcc/config/sparc/t-sunos41 U src/contrib/gcc/config/sparc/sp86x-elf.h U src/contrib/gcc/config/sparc/sparc.md U src/contrib/gcc/config/sparc/bsd.h U src/contrib/gcc/config/sparc/elf.h U src/contrib/gcc/config/sparc/hal.h U src/contrib/gcc/config/sparc/t-elf U src/contrib/gcc/config/sparc/pbd.h U src/contrib/gcc/config/sparc/netbsd-elf.h U src/contrib/gcc/config/sparc/t-chorus-elf U src/contrib/gcc/config/sparc/openbsd1-64.h U src/contrib/gcc/config/sparc/sol2-gas-bi.h U src/contrib/gcc/config/sparc/sp86x-aout.h U src/contrib/gcc/config/sparc/linux.h U src/contrib/gcc/config/sparc/rtems.h U src/contrib/gcc/config/sparc/t-sparcbare U src/contrib/gcc/config/sparc/t-sparclite U src/contrib/gcc/config/sparc/sp64-elf.h U src/contrib/gcc/config/sparc/sol2-64.h U src/contrib/gcc/config/sparc/sol2-bi.h U src/contrib/gcc/config/sparc/t-vxsparc64 U src/contrib/gcc/config/sparc/sparc.c U src/contrib/gcc/config/sparc/sparc.h U src/contrib/gcc/config/sparc/splet.h U src/contrib/gcc/config/sparc/sun4gas.h U src/contrib/gcc/config/sparc/aout.h U src/contrib/gcc/config/sparc/t-openbsd U src/contrib/gcc/config/sparc/vxsparc.h U src/contrib/gcc/config/sparc/sparc-protos.h U src/contrib/gcc/config/sparc/freebsd.h U src/contrib/gcc/config/sparc/sysv4.h U src/contrib/gcc/config/sparc/openbsd.h U src/contrib/gcc/config/sparc/lb1spc.asm U src/contrib/gcc/config/sparc/lb1spl.asm U src/contrib/gcc/config/sparc/sp64-aout.h U src/contrib/gcc/config/sparc/lynx-ng.h U src/contrib/gcc/config/sparc/lite.h U src/contrib/gcc/config/sparc/lynx.h U src/contrib/gcc/config/sparc/t-vxsparc U src/contrib/gcc/config/sparc/t-sol2 U src/contrib/gcc/config/sparc/liteelf.h U src/contrib/gcc/config/sparc/openbsd64.h U src/contrib/gcc/config/sparc/t-crtfm U src/contrib/gcc/config/sparc/t-halos U src/contrib/gcc/config/sparc/sol2-gld-bi.h U src/contrib/gcc/config/sparc/t-sp86x U src/contrib/gcc/config/sparc/t-splet U src/contrib/gcc/config/sparc/netbsd.h U src/contrib/gcc/config/sparc/sol2.h U src/contrib/gcc/config/sparc/biarch64.h U src/contrib/gcc/config/sparc/litecoff.h U src/contrib/gcc/config/sparc/sol27-sld.h U src/contrib/gcc/config/sparc/libgcc-sparc-glibc.ver U src/contrib/gcc/config/sparc/vxsparc64.h U src/contrib/gcc/config/sparc/t-netbsd64 U src/contrib/gcc/config/sparc/linux-aout.h U src/contrib/gcc/config/sparc/gmon-sol2.c U src/contrib/gcc/config/sparc/sol2-gld.h U src/contrib/gcc/config/sparc/t-linux64 U src/contrib/gcc/config/sparc/vxsim.h U src/contrib/gcc/config/sparc/rtemself.h U src/contrib/gcc/config/sparc/sun4o3.h U src/contrib/gcc/config/sparc/sol2-c1.asm U src/contrib/gcc/config/sparc/linux64.h U src/contrib/gcc/config/rs6000/ppc-asm.h U src/contrib/gcc/config/rs6000/rs6000-protos.h U src/contrib/gcc/config/rs6000/tramp.asm U src/contrib/gcc/config/rs6000/darwin-tramp.asm U src/contrib/gcc/config/rs6000/milli.exp U src/contrib/gcc/config/rs6000/darwin.h U src/contrib/gcc/config/rs6000/aix.h U src/contrib/gcc/config/rs6000/gnu.h U src/contrib/gcc/config/rs6000/t-ppcgas U src/contrib/gcc/config/rs6000/t-rs6000 U src/contrib/gcc/config/rs6000/altivec.h U src/contrib/gcc/config/rs6000/linux.h U src/contrib/gcc/config/rs6000/eabiaix.h U src/contrib/gcc/config/rs6000/rtems.h U src/contrib/gcc/config/rs6000/eabisim.h U src/contrib/gcc/config/rs6000/rs6000.c U src/contrib/gcc/config/rs6000/rs6000.h U src/contrib/gcc/config/rs6000/sysv4le.h U src/contrib/gcc/config/rs6000/rs6000.md U src/contrib/gcc/config/rs6000/aix3newas.h U src/contrib/gcc/config/rs6000/beos.h U src/contrib/gcc/config/rs6000/eabialtivec.h U src/contrib/gcc/config/rs6000/eabi.h U src/contrib/gcc/config/rs6000/eabi.asm C src/contrib/gcc/config/rs6000/sysv4.h U src/contrib/gcc/config/rs6000/altivec-defs.h U src/contrib/gcc/config/rs6000/freebsd.h U src/contrib/gcc/config/rs6000/linuxaltivec.h U src/contrib/gcc/config/rs6000/mach.h U src/contrib/gcc/config/rs6000/lynx.h U src/contrib/gcc/config/rs6000/t-ppccomm U src/contrib/gcc/config/rs6000/t-beos U src/contrib/gcc/config/rs6000/t-aix43 U src/contrib/gcc/config/rs6000/t-newas U src/contrib/gcc/config/rs6000/t-ppcos N src/contrib/gcc/config/rs6000/t-rtems U src/contrib/gcc/config/rs6000/netbsd.h U src/contrib/gcc/config/rs6000/aix31.h U src/contrib/gcc/config/rs6000/aix41.h U src/contrib/gcc/config/rs6000/aix43.h U src/contrib/gcc/config/rs6000/aix51.h U src/contrib/gcc/config/rs6000/crtsavres.asm U src/contrib/gcc/config/rs6000/eabi-ci.asm U src/contrib/gcc/config/rs6000/eabi-cn.asm U src/contrib/gcc/config/rs6000/softfloat.h U src/contrib/gcc/config/rs6000/sol-ci.asm U src/contrib/gcc/config/rs6000/sol-cn.asm U src/contrib/gcc/config/rs6000/t-linux64 U src/contrib/gcc/config/rs6000/vxppc.h U src/contrib/gcc/config/rs6000/xcoff.h U src/contrib/gcc/config/rs6000/linux64.h U src/contrib/gcc/config/rs6000/t-darwin U src/contrib/gcc/ginclude/varargs.h U src/contrib/gcc/ginclude/iso646.h U src/contrib/gcc/ginclude/stdarg.h C src/contrib/gcc/ginclude/stddef.h U src/contrib/gcc/ginclude/stdbool.h 19 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-src" in the body of the message From owner-cvs-src Sun Feb 9 21:45: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F60137B401; Sun, 9 Feb 2003 21:45:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F099343FF2; Sun, 9 Feb 2003 21:45:06 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5j6bv089062; Sun, 9 Feb 2003 21:45:06 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5j6ZK089061; Sun, 9 Feb 2003 21:45:06 -0800 (PST) Message-Id: <200302100545.h1A5j6ZK089061@repoman.freebsd.org> From: Tom Rhodes Date: Sun, 9 Feb 2003 21:45:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/etc rc.firewall rc.firewall6 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/09 21:45:06 PST Modified files: (Branch: RELENG_4) etc rc.firewall rc.firewall6 Log: MFC: Add the hash bang slash bin slash sh header. PR: 44363 Revision Changes Path 1.30.2.16 +2 -1 src/etc/rc.firewall 1.1.2.11 +2 -1 src/etc/rc.firewall6 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:48:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A1C137B401; Sun, 9 Feb 2003 21:48:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E6343FE5; Sun, 9 Feb 2003 21:48:00 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5m0bv089145; Sun, 9 Feb 2003 21:48:00 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5m0FM089144; Sun, 9 Feb 2003 21:48:00 -0800 (PST) Message-Id: <200302100548.h1A5m0FM089144@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:48:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/libstdc++ - Imported sources X-FreeBSD-CVS-Branch: FSF Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:48:00 PST src/contrib/libstdc++ - Imported sources Update of /home/ncvs/src/contrib/libstdc++ In directory repoman.freebsd.org:/tmp/cvs-serv88798 Log Message: Gcc 3.2.2-release C++ support bits. Status: Vendor Tag: FSF Release Tags: gcc_3_2_2_20030205 U src/contrib/libstdc++/configure.host U src/contrib/libstdc++/mkcshadow U src/contrib/libstdc++/aclocal.m4 U src/contrib/libstdc++/mkinclosure U src/contrib/libstdc++/README U src/contrib/libstdc++/configure U src/contrib/libstdc++/mkcheck.in U src/contrib/libstdc++/configure.in U src/contrib/libstdc++/configure.target U src/contrib/libstdc++/Makefile.am U src/contrib/libstdc++/Makefile.in U src/contrib/libstdc++/ChangeLog-2000 U src/contrib/libstdc++/ChangeLog-2001 U src/contrib/libstdc++/config.h.in U src/contrib/libstdc++/acinclude.m4 U src/contrib/libstdc++/ChangeLog U src/contrib/libstdc++/acconfig.h U src/contrib/libstdc++/src/ostream-inst.cc U src/contrib/libstdc++/src/bitset.cc U src/contrib/libstdc++/src/istream-inst.cc U src/contrib/libstdc++/src/stl-inst.cc U src/contrib/libstdc++/src/io-inst.cc U src/contrib/libstdc++/src/codecvt.cc U src/contrib/libstdc++/src/valarray-inst.cc U src/contrib/libstdc++/src/stdexcept.cc U src/contrib/libstdc++/src/ctype.cc U src/contrib/libstdc++/src/sstream-inst.cc U src/contrib/libstdc++/src/Makefile.am U src/contrib/libstdc++/src/Makefile.in U src/contrib/libstdc++/src/ios.cc U src/contrib/libstdc++/src/string-inst.cc U src/contrib/libstdc++/src/misc-inst.cc U src/contrib/libstdc++/src/localename.cc U src/contrib/libstdc++/src/ext-inst.cc U src/contrib/libstdc++/src/globals.cc U src/contrib/libstdc++/src/limits.cc U src/contrib/libstdc++/src/fstream-inst.cc U src/contrib/libstdc++/src/locale.cc U src/contrib/libstdc++/src/fstream.cc U src/contrib/libstdc++/src/strstream.cc U src/contrib/libstdc++/src/vterminate.cc U src/contrib/libstdc++/src/concept-inst.cc U src/contrib/libstdc++/src/locale-inst.cc U src/contrib/libstdc++/src/functexcept.cc U src/contrib/libstdc++/src/streambuf-inst.cc U src/contrib/libstdc++/src/wstring-inst.cc U src/contrib/libstdc++/src/complex_io.cc U src/contrib/libstdc++/libsupc++/new U src/contrib/libstdc++/libsupc++/new_opv.cc U src/contrib/libstdc++/libsupc++/pure.cc U src/contrib/libstdc++/libsupc++/eh_type.cc U src/contrib/libstdc++/libsupc++/new_opnt.cc U src/contrib/libstdc++/libsupc++/typeinfo U src/contrib/libstdc++/libsupc++/exception U src/contrib/libstdc++/libsupc++/eh_throw.cc U src/contrib/libstdc++/libsupc++/eh_alloc.cc U src/contrib/libstdc++/libsupc++/new_opvnt.cc U src/contrib/libstdc++/libsupc++/new_handler.cc U src/contrib/libstdc++/libsupc++/del_opvnt.cc U src/contrib/libstdc++/libsupc++/tinfo2.cc U src/contrib/libstdc++/libsupc++/tinfo.h U src/contrib/libstdc++/libsupc++/del_op.cc U src/contrib/libstdc++/libsupc++/eh_exception.cc U src/contrib/libstdc++/libsupc++/del_opnt.cc U src/contrib/libstdc++/libsupc++/Makefile.am U src/contrib/libstdc++/libsupc++/Makefile.in U src/contrib/libstdc++/libsupc++/unwind-cxx.h U src/contrib/libstdc++/libsupc++/vec.cc U src/contrib/libstdc++/libsupc++/exception_defines.h U src/contrib/libstdc++/libsupc++/eh_aux_runtime.cc U src/contrib/libstdc++/libsupc++/new_op.cc U src/contrib/libstdc++/libsupc++/eh_personality.cc U src/contrib/libstdc++/libsupc++/eh_terminate.cc U src/contrib/libstdc++/libsupc++/tinfo.cc U src/contrib/libstdc++/libsupc++/del_opv.cc U src/contrib/libstdc++/libsupc++/cxxabi.h U src/contrib/libstdc++/libsupc++/eh_catch.cc U src/contrib/libstdc++/libsupc++/eh_globals.cc U src/contrib/libstdc++/libmath/nan.c U src/contrib/libstdc++/libmath/stubs.c U src/contrib/libstdc++/libmath/Makefile.am U src/contrib/libstdc++/libmath/Makefile.in U src/contrib/libstdc++/libmath/copysignf.c U src/contrib/libstdc++/libmath/mathconf.h U src/contrib/libstdc++/libmath/signbit.c U src/contrib/libstdc++/libmath/signbitf.c U src/contrib/libstdc++/libmath/signbitl.c U src/contrib/libstdc++/config/linker-map.gnu U src/contrib/libstdc++/config/linker-map.dummy U src/contrib/libstdc++/config/io/c_io_libio.h U src/contrib/libstdc++/config/io/c_io_libio_codecvt.c U src/contrib/libstdc++/config/io/c_io_stdio.h U src/contrib/libstdc++/config/io/basic_file_libio.h U src/contrib/libstdc++/config/io/basic_file_stdio.cc U src/contrib/libstdc++/config/io/basic_file_stdio.h U src/contrib/libstdc++/config/io/basic_file_libio.cc U src/contrib/libstdc++/config/os/aix/bits/atomicity.h U src/contrib/libstdc++/config/os/aix/bits/ctype_base.h U src/contrib/libstdc++/config/os/aix/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/aix/bits/ctype_inline.h U src/contrib/libstdc++/config/os/aix/bits/os_defines.h U src/contrib/libstdc++/config/os/bsd/freebsd/bits/ctype_base.h U src/contrib/libstdc++/config/os/bsd/freebsd/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/bsd/freebsd/bits/ctype_inline.h U src/contrib/libstdc++/config/os/bsd/freebsd/bits/os_defines.h U src/contrib/libstdc++/config/os/bsd/netbsd/bits/ctype_base.h U src/contrib/libstdc++/config/os/bsd/netbsd/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/bsd/netbsd/bits/ctype_inline.h U src/contrib/libstdc++/config/os/bsd/netbsd/bits/os_defines.h U src/contrib/libstdc++/config/os/osf/osf5.0/bits/cpu_limits.h U src/contrib/libstdc++/config/os/qnx/qnx6.1/bits/ctype_base.h U src/contrib/libstdc++/config/os/qnx/qnx6.1/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/qnx/qnx6.1/bits/ctype_inline.h U src/contrib/libstdc++/config/os/qnx/qnx6.1/bits/os_defines.h U src/contrib/libstdc++/config/os/hpux/bits/cpu_limits.h U src/contrib/libstdc++/config/os/hpux/bits/ctype_base.h U src/contrib/libstdc++/config/os/hpux/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/hpux/bits/ctype_inline.h U src/contrib/libstdc++/config/os/hpux/bits/os_defines.h U src/contrib/libstdc++/config/os/irix/irix5.2/bits/atomicity.h U src/contrib/libstdc++/config/os/irix/irix5.2/bits/ctype_base.h U src/contrib/libstdc++/config/os/irix/irix5.2/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/irix/irix5.2/bits/ctype_inline.h U src/contrib/libstdc++/config/os/irix/irix5.2/bits/os_defines.h U src/contrib/libstdc++/config/os/irix/irix6.5/bits/atomicity.h U src/contrib/libstdc++/config/os/irix/irix6.5/bits/ctype_base.h U src/contrib/libstdc++/config/os/irix/irix6.5/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/irix/irix6.5/bits/ctype_inline.h U src/contrib/libstdc++/config/os/irix/irix6.5/bits/os_defines.h U src/contrib/libstdc++/config/os/djgpp/bits/ctype_base.h U src/contrib/libstdc++/config/os/djgpp/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/djgpp/bits/ctype_inline.h U src/contrib/libstdc++/config/os/djgpp/bits/os_defines.h U src/contrib/libstdc++/config/os/gnu-linux/bits/ctype_base.h U src/contrib/libstdc++/config/os/gnu-linux/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/gnu-linux/bits/ctype_inline.h U src/contrib/libstdc++/config/os/gnu-linux/bits/os_defines.h U src/contrib/libstdc++/config/os/solaris/solaris2.5/bits/ctype_base.h U src/contrib/libstdc++/config/os/solaris/solaris2.5/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/solaris/solaris2.5/bits/ctype_inline.h U src/contrib/libstdc++/config/os/solaris/solaris2.5/bits/os_defines.h U src/contrib/libstdc++/config/os/solaris/solaris2.6/bits/ctype_base.h U src/contrib/libstdc++/config/os/solaris/solaris2.6/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/solaris/solaris2.6/bits/ctype_inline.h U src/contrib/libstdc++/config/os/solaris/solaris2.6/bits/os_defines.h U src/contrib/libstdc++/config/os/solaris/solaris2.7/bits/ctype_base.h U src/contrib/libstdc++/config/os/solaris/solaris2.7/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/solaris/solaris2.7/bits/ctype_inline.h U src/contrib/libstdc++/config/os/solaris/solaris2.7/bits/os_defines.h U src/contrib/libstdc++/config/os/mingw32/bits/ctype_base.h U src/contrib/libstdc++/config/os/mingw32/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/mingw32/bits/ctype_inline.h U src/contrib/libstdc++/config/os/mingw32/bits/os_defines.h U src/contrib/libstdc++/config/os/generic/bits/ctype_base.h U src/contrib/libstdc++/config/os/generic/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/generic/bits/ctype_inline.h U src/contrib/libstdc++/config/os/generic/bits/os_defines.h U src/contrib/libstdc++/config/os/newlib/bits/ctype_base.h U src/contrib/libstdc++/config/os/newlib/bits/ctype_noninline.h U src/contrib/libstdc++/config/os/newlib/bits/ctype_inline.h U src/contrib/libstdc++/config/os/newlib/bits/os_defines.h U src/contrib/libstdc++/config/abi/extract_symvers U src/contrib/libstdc++/config/abi/i686-pc-linux-gnu/baseline_symbols.txt U src/contrib/libstdc++/config/abi/alphaev67-unknown-linux-gnu/baseline_symbols.txt U src/contrib/libstdc++/config/abi/ia64-unknown-linux-gnu/baseline_symbols.txt U src/contrib/libstdc++/config/cpu/arm/bits/atomicity.h U src/contrib/libstdc++/config/cpu/i386/bits/atomicity.h U src/contrib/libstdc++/config/cpu/i386/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/i486/bits/atomicity.h U src/contrib/libstdc++/config/cpu/cris/bits/atomicity.h U src/contrib/libstdc++/config/cpu/cris/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/ia64/bits/atomicity.h U src/contrib/libstdc++/config/cpu/ia64/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/m68k/bits/atomicity.h U src/contrib/libstdc++/config/cpu/m68k/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/mips/bits/atomicity.h U src/contrib/libstdc++/config/cpu/mmix/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/s390/bits/atomicity.h U src/contrib/libstdc++/config/cpu/s390/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/alpha/bits/atomicity.h U src/contrib/libstdc++/config/cpu/alpha/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/sparc/bits/atomicity.h U src/contrib/libstdc++/config/cpu/generic/bits/atomicity.h U src/contrib/libstdc++/config/cpu/generic/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/generic/bits/limits.h U src/contrib/libstdc++/config/cpu/x86-64/bits/atomicity.h U src/contrib/libstdc++/config/cpu/x86-64/bits/cpu_limits.h U src/contrib/libstdc++/config/cpu/powerpc/bits/atomicity.h U src/contrib/libstdc++/config/cpu/powerpc/bits/cpu_limits.h U src/contrib/libstdc++/config/locale/ieee_1003.1-2001/c_locale.h U src/contrib/libstdc++/config/locale/ieee_1003.1-2001/codecvt_specializations.h U src/contrib/libstdc++/config/locale/ieee_1003.1-2001/messages_members.cc U src/contrib/libstdc++/config/locale/ieee_1003.1-2001/c_locale.cc U src/contrib/libstdc++/config/locale/ieee_1003.1-2001/messages_members.h U src/contrib/libstdc++/config/locale/gnu/c++locale_internal.h U src/contrib/libstdc++/config/locale/gnu/c_locale.h U src/contrib/libstdc++/config/locale/gnu/codecvt_members.cc U src/contrib/libstdc++/config/locale/gnu/collate_members.cc U src/contrib/libstdc++/config/locale/gnu/monetary_members.cc U src/contrib/libstdc++/config/locale/gnu/time_members.cc N src/contrib/libstdc++/config/locale/gnu/time_members.h U src/contrib/libstdc++/config/locale/gnu/messages_members.cc U src/contrib/libstdc++/config/locale/gnu/ctype_members.cc U src/contrib/libstdc++/config/locale/gnu/numeric_members.cc U src/contrib/libstdc++/config/locale/gnu/c_locale.cc U src/contrib/libstdc++/config/locale/gnu/messages_members.h U src/contrib/libstdc++/config/locale/generic/c++locale_internal.h U src/contrib/libstdc++/config/locale/generic/c_locale.h U src/contrib/libstdc++/config/locale/generic/codecvt_members.cc U src/contrib/libstdc++/config/locale/generic/collate_members.cc U src/contrib/libstdc++/config/locale/generic/monetary_members.cc U src/contrib/libstdc++/config/locale/generic/time_members.cc U src/contrib/libstdc++/config/locale/generic/codecvt_specializations.h N src/contrib/libstdc++/config/locale/generic/time_members.h U src/contrib/libstdc++/config/locale/generic/messages_members.cc U src/contrib/libstdc++/config/locale/generic/ctype_members.cc U src/contrib/libstdc++/config/locale/generic/numeric_members.cc U src/contrib/libstdc++/config/locale/generic/c_locale.cc U src/contrib/libstdc++/config/locale/generic/messages_members.h U src/contrib/libstdc++/include/Makefile.am U src/contrib/libstdc++/include/Makefile.in U src/contrib/libstdc++/include/c/std_cwchar.h U src/contrib/libstdc++/include/c/std_csignal.h U src/contrib/libstdc++/include/c/std_cctype.h U src/contrib/libstdc++/include/c/std_ciso646.h U src/contrib/libstdc++/include/c/std_cerrno.h U src/contrib/libstdc++/include/c/std_clocale.h U src/contrib/libstdc++/include/c/std_cstdarg.h U src/contrib/libstdc++/include/c/std_cstddef.h U src/contrib/libstdc++/include/c/std_cstdlib.h U src/contrib/libstdc++/include/c/std_cstdio.h U src/contrib/libstdc++/include/c/std_cfloat.h U src/contrib/libstdc++/include/c/std_csetjmp.h U src/contrib/libstdc++/include/c/std_cwctype.h U src/contrib/libstdc++/include/c/std_cmath.h U src/contrib/libstdc++/include/c/std_cstring.h U src/contrib/libstdc++/include/c/std_cassert.h U src/contrib/libstdc++/include/c/std_climits.h U src/contrib/libstdc++/include/c/std_ctime.h U src/contrib/libstdc++/include/ext/rope U src/contrib/libstdc++/include/ext/rb_tree U src/contrib/libstdc++/include/ext/stl_hashtable.h U src/contrib/libstdc++/include/ext/slist U src/contrib/libstdc++/include/ext/stdio_filebuf.h U src/contrib/libstdc++/include/ext/stl_hash_fun.h U src/contrib/libstdc++/include/ext/stl_rope.h U src/contrib/libstdc++/include/ext/functional U src/contrib/libstdc++/include/ext/ropeimpl.h U src/contrib/libstdc++/include/ext/algorithm U src/contrib/libstdc++/include/ext/hash_map U src/contrib/libstdc++/include/ext/hash_set U src/contrib/libstdc++/include/ext/memory U src/contrib/libstdc++/include/ext/iterator U src/contrib/libstdc++/include/ext/numeric U src/contrib/libstdc++/include/ext/enc_filebuf.h U src/contrib/libstdc++/include/std/std_queue.h U src/contrib/libstdc++/include/std/std_stdexcept.h U src/contrib/libstdc++/include/std/std_sstream.h U src/contrib/libstdc++/include/std/std_utility.h U src/contrib/libstdc++/include/std/std_numeric.h U src/contrib/libstdc++/include/std/std_locale.h U src/contrib/libstdc++/include/std/std_istream.h U src/contrib/libstdc++/include/std/std_stack.h U src/contrib/libstdc++/include/std/std_complex.h U src/contrib/libstdc++/include/std/std_functional.h U src/contrib/libstdc++/include/std/std_list.h U src/contrib/libstdc++/include/std/std_string.h U src/contrib/libstdc++/include/std/std_limits.h U src/contrib/libstdc++/include/std/std_memory.h U src/contrib/libstdc++/include/std/std_iomanip.h U src/contrib/libstdc++/include/std/std_iterator.h U src/contrib/libstdc++/include/std/std_iostream.h U src/contrib/libstdc++/include/std/std_fstream.h U src/contrib/libstdc++/include/std/std_bitset.h U src/contrib/libstdc++/include/std/std_iosfwd.h U src/contrib/libstdc++/include/std/std_ostream.h U src/contrib/libstdc++/include/std/std_algorithm.h U src/contrib/libstdc++/include/std/std_streambuf.h U src/contrib/libstdc++/include/std/std_vector.h U src/contrib/libstdc++/include/std/std_valarray.h U src/contrib/libstdc++/include/std/std_deque.h U src/contrib/libstdc++/include/std/std_ios.h U src/contrib/libstdc++/include/std/std_map.h U src/contrib/libstdc++/include/std/std_set.h U src/contrib/libstdc++/include/bits/stl_tempbuf.h U src/contrib/libstdc++/include/bits/stl_numeric.h U src/contrib/libstdc++/include/bits/fstream.tcc U src/contrib/libstdc++/include/bits/stl_algo.h U src/contrib/libstdc++/include/bits/stl_map.h U src/contrib/libstdc++/include/bits/stl_set.h U src/contrib/libstdc++/include/bits/stl_alloc.h U src/contrib/libstdc++/include/bits/streambuf_iterator.h U src/contrib/libstdc++/include/bits/basic_ios.h U src/contrib/libstdc++/include/bits/stl_heap.h U src/contrib/libstdc++/include/bits/streambuf.tcc U src/contrib/libstdc++/include/bits/stl_list.h U src/contrib/libstdc++/include/bits/basic_string.h U src/contrib/libstdc++/include/bits/istream.tcc U src/contrib/libstdc++/include/bits/stl_pair.h U src/contrib/libstdc++/include/bits/basic_string.tcc U src/contrib/libstdc++/include/bits/mask_array.h U src/contrib/libstdc++/include/bits/valarray_array.h U src/contrib/libstdc++/include/bits/slice.h U src/contrib/libstdc++/include/bits/stl_tree.h U src/contrib/libstdc++/include/bits/stl_threads.h U src/contrib/libstdc++/include/bits/c++config U src/contrib/libstdc++/include/bits/stl_pthread_alloc.h U src/contrib/libstdc++/include/bits/gslice.h U src/contrib/libstdc++/include/bits/valarray_array.tcc U src/contrib/libstdc++/include/bits/localefwd.h U src/contrib/libstdc++/include/bits/stl_iterator.h U src/contrib/libstdc++/include/bits/stl_deque.h U src/contrib/libstdc++/include/bits/indirect_array.h U src/contrib/libstdc++/include/bits/sstream.tcc U src/contrib/libstdc++/include/bits/fpos.h U src/contrib/libstdc++/include/bits/stringfwd.h U src/contrib/libstdc++/include/bits/slice_array.h U src/contrib/libstdc++/include/bits/stl_queue.h U src/contrib/libstdc++/include/bits/stl_algobase.h U src/contrib/libstdc++/include/bits/char_traits.h U src/contrib/libstdc++/include/bits/locale_facets.h U src/contrib/libstdc++/include/bits/stl_multimap.h U src/contrib/libstdc++/include/bits/stl_multiset.h U src/contrib/libstdc++/include/bits/stl_relops.h U src/contrib/libstdc++/include/bits/pthread_allocimpl.h U src/contrib/libstdc++/include/bits/stl_bvector.h U src/contrib/libstdc++/include/bits/ostream.tcc U src/contrib/libstdc++/include/bits/type_traits.h U src/contrib/libstdc++/include/bits/stl_raw_storage_iter.h U src/contrib/libstdc++/include/bits/generic_shadow.h U src/contrib/libstdc++/include/bits/gslice_array.h U src/contrib/libstdc++/include/bits/locale_facets.tcc U src/contrib/libstdc++/include/bits/stl_function.h U src/contrib/libstdc++/include/bits/stl_iterator_base_funcs.h U src/contrib/libstdc++/include/bits/stream_iterator.h U src/contrib/libstdc++/include/bits/codecvt.h U src/contrib/libstdc++/include/bits/stl_uninitialized.h U src/contrib/libstdc++/include/bits/stl_iterator_base_types.h U src/contrib/libstdc++/include/bits/stl_stack.h U src/contrib/libstdc++/include/bits/stl_construct.h U src/contrib/libstdc++/include/bits/cpp_type_traits.h U src/contrib/libstdc++/include/bits/basic_ios.tcc U src/contrib/libstdc++/include/bits/ios_base.h U src/contrib/libstdc++/include/bits/stl_vector.h U src/contrib/libstdc++/include/bits/valarray_meta.h U src/contrib/libstdc++/include/bits/concept_check.h U src/contrib/libstdc++/include/bits/functexcept.h U src/contrib/libstdc++/include/bits/boost_concept_check.h U src/contrib/libstdc++/include/c_std/std_cwchar.h U src/contrib/libstdc++/include/c_std/std_csignal.h U src/contrib/libstdc++/include/c_std/cmath.tcc U src/contrib/libstdc++/include/c_std/std_cctype.h U src/contrib/libstdc++/include/c_std/std_ciso646.h U src/contrib/libstdc++/include/c_std/std_cerrno.h U src/contrib/libstdc++/include/c_std/std_clocale.h U src/contrib/libstdc++/include/c_std/std_cstdarg.h U src/contrib/libstdc++/include/c_std/std_cstddef.h U src/contrib/libstdc++/include/c_std/std_cstdlib.h U src/contrib/libstdc++/include/c_std/std_cstdio.h U src/contrib/libstdc++/include/c_std/std_cfloat.h U src/contrib/libstdc++/include/c_std/std_csetjmp.h U src/contrib/libstdc++/include/c_std/std_cwctype.h U src/contrib/libstdc++/include/c_std/std_cmath.h U src/contrib/libstdc++/include/c_std/std_cstring.h U src/contrib/libstdc++/include/c_std/std_cassert.h U src/contrib/libstdc++/include/c_std/std_climits.h U src/contrib/libstdc++/include/c_std/std_ctime.h U src/contrib/libstdc++/include/c_shadow/pthread.h U src/contrib/libstdc++/include/c_shadow/ctype.h U src/contrib/libstdc++/include/c_shadow/unistd.h U src/contrib/libstdc++/include/c_shadow/signal.h U src/contrib/libstdc++/include/c_shadow/libio.h U src/contrib/libstdc++/include/c_shadow/fcntl.h U src/contrib/libstdc++/include/c_shadow/iolibio.h U src/contrib/libstdc++/include/c_shadow/errno.h U src/contrib/libstdc++/include/c_shadow/stdio.h U src/contrib/libstdc++/include/c_shadow/float.h U src/contrib/libstdc++/include/c_shadow/math.h U src/contrib/libstdc++/include/c_shadow/time.h U src/contrib/libstdc++/include/c_shadow/locale.h U src/contrib/libstdc++/include/c_shadow/stdarg.h U src/contrib/libstdc++/include/c_shadow/stddef.h U src/contrib/libstdc++/include/c_shadow/stdlib.h U src/contrib/libstdc++/include/c_shadow/iconv.h U src/contrib/libstdc++/include/c_shadow/setjmp.h U src/contrib/libstdc++/include/c_shadow/wchar.h U src/contrib/libstdc++/include/c_shadow/libioP.h U src/contrib/libstdc++/include/c_shadow/langinfo.h U src/contrib/libstdc++/include/c_shadow/wctype.h U src/contrib/libstdc++/include/c_shadow/string.h U src/contrib/libstdc++/include/c_shadow/assert.h U src/contrib/libstdc++/include/c_shadow/features.h U src/contrib/libstdc++/include/c_shadow/limits.h U src/contrib/libstdc++/include/c_shadow/sys/cdefs.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_langinfo.h U src/contrib/libstdc++/include/c_shadow/bits/std_cwchar.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_features.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_libio.h U src/contrib/libstdc++/include/c_shadow/bits/std_csignal.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_fcntl.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_iolibio.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_libioP.h U src/contrib/libstdc++/include/c_shadow/bits/std_cctype.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_iconv.h U src/contrib/libstdc++/include/c_shadow/bits/std_cerrno.h U src/contrib/libstdc++/include/c_shadow/bits/std_clocale.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_unistd.h U src/contrib/libstdc++/include/c_shadow/bits/std_cstdarg.h U src/contrib/libstdc++/include/c_shadow/bits/std_cstddef.h U src/contrib/libstdc++/include/c_shadow/bits/std_cstdlib.h U src/contrib/libstdc++/include/c_shadow/bits/std_cstdio.h U src/contrib/libstdc++/include/c_shadow/bits/std_cfloat.h U src/contrib/libstdc++/include/c_shadow/bits/std_csetjmp.h U src/contrib/libstdc++/include/c_shadow/bits/std_cmath.h U src/contrib/libstdc++/include/c_shadow/bits/std_cwctype.h U src/contrib/libstdc++/include/c_shadow/bits/std_cstring.h U src/contrib/libstdc++/include/c_shadow/bits/std_cassert.h U src/contrib/libstdc++/include/c_shadow/bits/wrap_pthread.h U src/contrib/libstdc++/include/c_shadow/bits/std_climits.h U src/contrib/libstdc++/include/c_shadow/bits/std_ctime.h U src/contrib/libstdc++/include/c_compatibility/ctype.h U src/contrib/libstdc++/include/c_compatibility/signal.h U src/contrib/libstdc++/include/c_compatibility/errno.h U src/contrib/libstdc++/include/c_compatibility/stdio.h U src/contrib/libstdc++/include/c_compatibility/float.h U src/contrib/libstdc++/include/c_compatibility/math.h U src/contrib/libstdc++/include/c_compatibility/iso646.h U src/contrib/libstdc++/include/c_compatibility/time.h U src/contrib/libstdc++/include/c_compatibility/locale.h U src/contrib/libstdc++/include/c_compatibility/stdarg.h U src/contrib/libstdc++/include/c_compatibility/stddef.h U src/contrib/libstdc++/include/c_compatibility/stdlib.h U src/contrib/libstdc++/include/c_compatibility/setjmp.h U src/contrib/libstdc++/include/c_compatibility/wchar.h U src/contrib/libstdc++/include/c_compatibility/wctype.h U src/contrib/libstdc++/include/c_compatibility/string.h U src/contrib/libstdc++/include/c_compatibility/assert.h U src/contrib/libstdc++/include/c_compatibility/limits.h U src/contrib/libstdc++/include/backward/deque.h U src/contrib/libstdc++/include/backward/iterator.h U src/contrib/libstdc++/include/backward/map.h U src/contrib/libstdc++/include/backward/new.h U src/contrib/libstdc++/include/backward/set.h U src/contrib/libstdc++/include/backward/istream.h U src/contrib/libstdc++/include/backward/queue.h U src/contrib/libstdc++/include/backward/iostream.h U src/contrib/libstdc++/include/backward/complex.h U src/contrib/libstdc++/include/backward/algobase.h U src/contrib/libstdc++/include/backward/strstream U src/contrib/libstdc++/include/backward/multimap.h U src/contrib/libstdc++/include/backward/multiset.h U src/contrib/libstdc++/include/backward/streambuf.h U src/contrib/libstdc++/include/backward/slist.h U src/contrib/libstdc++/include/backward/vector.h U src/contrib/libstdc++/include/backward/function.h U src/contrib/libstdc++/include/backward/iomanip.h U src/contrib/libstdc++/include/backward/stack.h U src/contrib/libstdc++/include/backward/algo.h U src/contrib/libstdc++/include/backward/fstream.h U src/contrib/libstdc++/include/backward/hashtable.h U src/contrib/libstdc++/include/backward/heap.h U src/contrib/libstdc++/include/backward/defalloc.h U src/contrib/libstdc++/include/backward/ostream.h U src/contrib/libstdc++/include/backward/list.h U src/contrib/libstdc++/include/backward/bvector.h U src/contrib/libstdc++/include/backward/strstream.h U src/contrib/libstdc++/include/backward/pair.h U src/contrib/libstdc++/include/backward/rope.h U src/contrib/libstdc++/include/backward/tree.h U src/contrib/libstdc++/include/backward/backward_warning.h U src/contrib/libstdc++/include/backward/alloc.h U src/contrib/libstdc++/include/backward/stream.h U src/contrib/libstdc++/include/backward/hash_map.h U src/contrib/libstdc++/include/backward/hash_set.h U src/contrib/libstdc++/include/backward/tempbuf.h No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:48:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 090E337B40A; Sun, 9 Feb 2003 21:48:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACA343FEA; Sun, 9 Feb 2003 21:48:35 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5mZbv089169; Sun, 9 Feb 2003 21:48:35 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5mZkF089168; Sun, 9 Feb 2003 21:48:35 -0800 (PST) Message-Id: <200302100548.h1A5mZkF089168@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:48:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/libobjc - Imported sources X-FreeBSD-CVS-Branch: FSF Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:48:34 PST src/contrib/libobjc - Imported sources Update of /home/ncvs/src/contrib/libobjc In directory repoman.freebsd.org:/tmp/cvs-serv89154 Log Message: Gcc 3.2.2-release Objective C support bits. Status: Vendor Tag: FSF Release Tags: gcc_3_2_2_20030205 U src/contrib/libobjc/thr-objc.c U src/contrib/libobjc/gc.c U src/contrib/libobjc/encoding.c U src/contrib/libobjc/thr-single.c U src/contrib/libobjc/thr-vxworks.c U src/contrib/libobjc/Protocol.m U src/contrib/libobjc/aclocal.m4 U src/contrib/libobjc/thr-solaris.c U src/contrib/libobjc/thr.c U src/contrib/libobjc/NXConstStr.m U src/contrib/libobjc/sarray.c U src/contrib/libobjc/makefile.dos U src/contrib/libobjc/libobjc_entry.c U src/contrib/libobjc/README U src/contrib/libobjc/configure U src/contrib/libobjc/THREADS U src/contrib/libobjc/thr-win32.c U src/contrib/libobjc/configure.in U src/contrib/libobjc/libobjc.def U src/contrib/libobjc/thr-posix.c U src/contrib/libobjc/Object.m U src/contrib/libobjc/selector.c U src/contrib/libobjc/archive.c U src/contrib/libobjc/sendmsg.c U src/contrib/libobjc/thr-decosf1.c U src/contrib/libobjc/README.threads U src/contrib/libobjc/hash.c U src/contrib/libobjc/Makefile.in U src/contrib/libobjc/init.c U src/contrib/libobjc/config.h.in U src/contrib/libobjc/misc.c U src/contrib/libobjc/thr-dce.c U src/contrib/libobjc/thr-pthreads.c U src/contrib/libobjc/thr-os2.c U src/contrib/libobjc/nil_method.c U src/contrib/libobjc/objects.c U src/contrib/libobjc/thr-rtems.c U src/contrib/libobjc/linking.m U src/contrib/libobjc/ChangeLog U src/contrib/libobjc/thr-irix.c U src/contrib/libobjc/THREADS.MACH U src/contrib/libobjc/thr-mach.c U src/contrib/libobjc/class.c U src/contrib/libobjc/objc/encoding.h U src/contrib/libobjc/objc/Protocol.h U src/contrib/libobjc/objc/thr.h U src/contrib/libobjc/objc/NXConstStr.h U src/contrib/libobjc/objc/sarray.h U src/contrib/libobjc/objc/Object.h U src/contrib/libobjc/objc/objc-api.h U src/contrib/libobjc/objc/hash.h U src/contrib/libobjc/objc/objc-list.h U src/contrib/libobjc/objc/typedstream.h U src/contrib/libobjc/objc/objc.h U src/contrib/libobjc/objc/runtime.h No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:49:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BF8037B401; Sun, 9 Feb 2003 21:49:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B3D44001; Sun, 9 Feb 2003 21:49:35 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5nZbv089193; Sun, 9 Feb 2003 21:49:35 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5nZdg089192; Sun, 9 Feb 2003 21:49:35 -0800 (PST) Message-Id: <200302100549.h1A5nZdg089192@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:49:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/libf2c - Imported sources X-FreeBSD-CVS-Branch: FSF Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:49:35 PST src/contrib/libf2c - Imported sources Update of /home/ncvs/src/contrib/libf2c In directory repoman.freebsd.org:/tmp/cvs-serv89174 Log Message: Gcc 3.2.2-release libf2c bits. Status: Vendor Tag: FSF Release Tags: gcc_3_2_2_20030205 U src/contrib/libf2c/TODO U src/contrib/libf2c/f2c.h U src/contrib/libf2c/aclocal.m4 U src/contrib/libf2c/changes.netlib U src/contrib/libf2c/README U src/contrib/libf2c/configure U src/contrib/libf2c/disclaimer.netlib U src/contrib/libf2c/f2cext.c U src/contrib/libf2c/permission.netlib U src/contrib/libf2c/configure.in U src/contrib/libf2c/Makefile.in U src/contrib/libf2c/readme.netlib U src/contrib/libf2c/g2c.hin U src/contrib/libf2c/ChangeLog U src/contrib/libf2c/libF77/r_abs.c U src/contrib/libf2c/libF77/r_cos.c U src/contrib/libf2c/libF77/h_dnnt.c U src/contrib/libf2c/libF77/r_dim.c U src/contrib/libf2c/libF77/r_exp.c U src/contrib/libf2c/libF77/r_int.c U src/contrib/libf2c/libF77/r_log.c U src/contrib/libf2c/libF77/r_mod.c U src/contrib/libf2c/libF77/r_acos.c U src/contrib/libf2c/libF77/r_sin.c U src/contrib/libf2c/libF77/r_tan.c U src/contrib/libf2c/libF77/r_asin.c U src/contrib/libf2c/libF77/r_atan.c U src/contrib/libf2c/libF77/r_atn2.c U src/contrib/libf2c/libF77/ef1asc_.c U src/contrib/libf2c/libF77/z_sqrt.c U src/contrib/libf2c/libF77/derf_.c U src/contrib/libf2c/libF77/r_cnjg.c U src/contrib/libf2c/libF77/ef1cmc_.c U src/contrib/libf2c/libF77/r_cosh.c U src/contrib/libf2c/libF77/h_indx.c U src/contrib/libf2c/libF77/iargc_.c U src/contrib/libf2c/libF77/h_nint.c U src/contrib/libf2c/libF77/r_imag.c U src/contrib/libf2c/libF77/README.netlib U src/contrib/libf2c/libF77/s_cat.c U src/contrib/libf2c/libF77/s_cmp.c U src/contrib/libf2c/libF77/z_abs.c U src/contrib/libf2c/libF77/r_lg10.c U src/contrib/libf2c/libF77/z_cos.c U src/contrib/libf2c/libF77/z_div.c U src/contrib/libf2c/libF77/z_exp.c U src/contrib/libf2c/libF77/z_log.c U src/contrib/libf2c/libF77/Notice U src/contrib/libf2c/libF77/z_sin.c U src/contrib/libf2c/libF77/h_sign.c U src/contrib/libf2c/libF77/r_nint.c U src/contrib/libf2c/libF77/configure U src/contrib/libf2c/libF77/c_sqrt.c U src/contrib/libf2c/libF77/f2ch.add U src/contrib/libf2c/libF77/lbitbits.c U src/contrib/libf2c/libF77/r_sign.c U src/contrib/libf2c/libF77/r_sinh.c U src/contrib/libf2c/libF77/r_tanh.c U src/contrib/libf2c/libF77/r_sqrt.c U src/contrib/libf2c/libF77/configure.in U src/contrib/libf2c/libF77/etime_.c U src/contrib/libf2c/libF77/getarg_.c U src/contrib/libf2c/libF77/erfc_.c U src/contrib/libf2c/libF77/system_.c U src/contrib/libf2c/libF77/getenv_.c U src/contrib/libf2c/libF77/abort_.c U src/contrib/libf2c/libF77/cabs.c U src/contrib/libf2c/libF77/pow_ci.c U src/contrib/libf2c/libF77/pow_dd.c U src/contrib/libf2c/libF77/pow_di.c U src/contrib/libf2c/libF77/pow_hh.c U src/contrib/libf2c/libF77/pow_ii.c U src/contrib/libf2c/libF77/exit_.c U src/contrib/libf2c/libF77/pow_qq.c U src/contrib/libf2c/libF77/pow_ri.c U src/contrib/libf2c/libF77/pow_zi.c U src/contrib/libf2c/libF77/pow_zz.c U src/contrib/libf2c/libF77/lbitshft.c U src/contrib/libf2c/libF77/erf_.c U src/contrib/libf2c/libF77/Makefile.in U src/contrib/libf2c/libF77/Version.c U src/contrib/libf2c/libF77/h_abs.c U src/contrib/libf2c/libF77/h_dim.c U src/contrib/libf2c/libF77/h_len.c U src/contrib/libf2c/libF77/h_mod.c U src/contrib/libf2c/libF77/l_ge.c U src/contrib/libf2c/libF77/l_gt.c U src/contrib/libf2c/libF77/l_le.c U src/contrib/libf2c/libF77/l_lt.c U src/contrib/libf2c/libF77/d_acos.c U src/contrib/libf2c/libF77/qbitbits.c U src/contrib/libf2c/libF77/main.c U src/contrib/libf2c/libF77/d_asin.c U src/contrib/libf2c/libF77/d_atan.c U src/contrib/libf2c/libF77/i_abs.c U src/contrib/libf2c/libF77/d_atn2.c U src/contrib/libf2c/libF77/i_dnnt.c U src/contrib/libf2c/libF77/d_cnjg.c U src/contrib/libf2c/libF77/d_cosh.c U src/contrib/libf2c/libF77/s_copy.c U src/contrib/libf2c/libF77/i_indx.c U src/contrib/libf2c/libF77/derfc_.c U src/contrib/libf2c/libF77/F77_aloc.c U src/contrib/libf2c/libF77/d_imag.c U src/contrib/libf2c/libF77/i_dim.c U src/contrib/libf2c/libF77/i_len.c U src/contrib/libf2c/libF77/i_mod.c U src/contrib/libf2c/libF77/d_lg10.c U src/contrib/libf2c/libF77/sig_die.c U src/contrib/libf2c/libF77/hl_ge.c U src/contrib/libf2c/libF77/hl_gt.c U src/contrib/libf2c/libF77/hl_le.c U src/contrib/libf2c/libF77/hl_lt.c U src/contrib/libf2c/libF77/i_nint.c U src/contrib/libf2c/libF77/d_nint.c U src/contrib/libf2c/libF77/dtime_.c U src/contrib/libf2c/libF77/setarg.c U src/contrib/libf2c/libF77/setsig.c U src/contrib/libf2c/libF77/d_prod.c U src/contrib/libf2c/libF77/qbitshft.c U src/contrib/libf2c/libF77/i_sign.c U src/contrib/libf2c/libF77/d_sign.c U src/contrib/libf2c/libF77/d_sinh.c U src/contrib/libf2c/libF77/d_tanh.c U src/contrib/libf2c/libF77/c_abs.c U src/contrib/libf2c/libF77/s_paus.c U src/contrib/libf2c/libF77/c_cos.c U src/contrib/libf2c/libF77/c_div.c U src/contrib/libf2c/libF77/d_sqrt.c U src/contrib/libf2c/libF77/c_exp.c U src/contrib/libf2c/libF77/c_log.c U src/contrib/libf2c/libF77/c_sin.c U src/contrib/libf2c/libF77/s_rnge.c U src/contrib/libf2c/libF77/s_stop.c U src/contrib/libf2c/libF77/signal1.h U src/contrib/libf2c/libF77/signal_.c U src/contrib/libf2c/libF77/signal1.h0 U src/contrib/libf2c/libF77/makefile.netlib U src/contrib/libf2c/libF77/d_abs.c U src/contrib/libf2c/libF77/d_cos.c U src/contrib/libf2c/libF77/d_dim.c U src/contrib/libf2c/libF77/d_exp.c U src/contrib/libf2c/libF77/d_int.c U src/contrib/libf2c/libF77/d_log.c U src/contrib/libf2c/libF77/d_mod.c U src/contrib/libf2c/libF77/d_sin.c U src/contrib/libf2c/libF77/d_tan.c U src/contrib/libf2c/libI77/close.c U src/contrib/libf2c/libI77/fp.h U src/contrib/libf2c/libI77/wrtfmt.c U src/contrib/libf2c/libI77/fmtlib.c U src/contrib/libf2c/libI77/rdfmt.c U src/contrib/libf2c/libI77/lwrite.c U src/contrib/libf2c/libI77/dfe.c U src/contrib/libf2c/libI77/due.c U src/contrib/libf2c/libI77/err.c U src/contrib/libf2c/libI77/fio.h U src/contrib/libf2c/libI77/fmt.c U src/contrib/libf2c/libI77/fmt.h U src/contrib/libf2c/libI77/iio.c U src/contrib/libf2c/libI77/README.netlib U src/contrib/libf2c/libI77/lio.h U src/contrib/libf2c/libI77/sfe.c U src/contrib/libf2c/libI77/sue.c U src/contrib/libf2c/libI77/uio.c U src/contrib/libf2c/libI77/Notice U src/contrib/libf2c/libI77/dolio.c U src/contrib/libf2c/libI77/rewind.c U src/contrib/libf2c/libI77/xwsne.c U src/contrib/libf2c/libI77/configure U src/contrib/libf2c/libI77/f2ch.add U src/contrib/libf2c/libI77/endfile.c U src/contrib/libf2c/libI77/configure.in U src/contrib/libf2c/libI77/lread.c U src/contrib/libf2c/libI77/Makefile.in U src/contrib/libf2c/libI77/Version.c U src/contrib/libf2c/libI77/ilnw.c U src/contrib/libf2c/libI77/config.h.in U src/contrib/libf2c/libI77/open.c U src/contrib/libf2c/libI77/rsfe.c U src/contrib/libf2c/libI77/rsli.c U src/contrib/libf2c/libI77/rsne.c U src/contrib/libf2c/libI77/inquire.c U src/contrib/libf2c/libI77/stamp-h.in U src/contrib/libf2c/libI77/util.c U src/contrib/libf2c/libI77/wref.c U src/contrib/libf2c/libI77/wsfe.c U src/contrib/libf2c/libI77/wsle.c U src/contrib/libf2c/libI77/wsne.c U src/contrib/libf2c/libI77/backspace.c U src/contrib/libf2c/libI77/typesize.c U src/contrib/libf2c/libI77/ftell_.c U src/contrib/libf2c/libI77/makefile.netlib U src/contrib/libf2c/libU77/fgetc_.c U src/contrib/libf2c/libU77/date_.c U src/contrib/libf2c/libU77/rand_.c U src/contrib/libf2c/libU77/lnblnk_.c U src/contrib/libf2c/libU77/sys_clock_.c U src/contrib/libf2c/libU77/kill_.c U src/contrib/libf2c/libU77/bes.c U src/contrib/libf2c/libU77/aclocal.m4 U src/contrib/libf2c/libU77/ctime_.c U src/contrib/libf2c/libU77/COPYING.LIB U src/contrib/libf2c/libU77/vxttime_.c U src/contrib/libf2c/libU77/README U src/contrib/libf2c/libU77/configure U src/contrib/libf2c/libU77/gmtime_.c U src/contrib/libf2c/libU77/link_.c U src/contrib/libf2c/libU77/gerror_.c U src/contrib/libf2c/libU77/idate_.c U src/contrib/libf2c/libU77/configure.in U src/contrib/libf2c/libU77/access_.c U src/contrib/libf2c/libU77/flush1_.c U src/contrib/libf2c/libU77/chdir_.c U src/contrib/libf2c/libU77/irand_.c U src/contrib/libf2c/libU77/etime_.c U src/contrib/libf2c/libU77/vxtidate_.c U src/contrib/libf2c/libU77/PROJECTS U src/contrib/libf2c/libU77/getcwd_.c U src/contrib/libf2c/libU77/srand_.c U src/contrib/libf2c/libU77/ierrno_.c U src/contrib/libf2c/libU77/getgid_.c U src/contrib/libf2c/libU77/config.hin U src/contrib/libf2c/libU77/symlnk_.c U src/contrib/libf2c/libU77/stat_.c U src/contrib/libf2c/libU77/isatty_.c U src/contrib/libf2c/libU77/time_.c U src/contrib/libf2c/libU77/datetime_.c U src/contrib/libf2c/libU77/chmod_.c U src/contrib/libf2c/libU77/dbes.c U src/contrib/libf2c/libU77/fnum_.c U src/contrib/libf2c/libU77/getlog_.c U src/contrib/libf2c/libU77/perror_.c U src/contrib/libf2c/libU77/Makefile.in U src/contrib/libf2c/libU77/lstat_.c U src/contrib/libf2c/libU77/fdate_.c U src/contrib/libf2c/libU77/ltime_.c U src/contrib/libf2c/libU77/Version.c U src/contrib/libf2c/libU77/fputc_.c U src/contrib/libf2c/libU77/getpid_.c U src/contrib/libf2c/libU77/mclock_.c U src/contrib/libf2c/libU77/u77-test.f U src/contrib/libf2c/libU77/sleep_.c U src/contrib/libf2c/libU77/getuid_.c U src/contrib/libf2c/libU77/alarm_.c U src/contrib/libf2c/libU77/stamp-h.in U src/contrib/libf2c/libU77/unlink_.c U src/contrib/libf2c/libU77/itime_.c U src/contrib/libf2c/libU77/dtime_.c U src/contrib/libf2c/libU77/ttynam_.c U src/contrib/libf2c/libU77/rename_.c U src/contrib/libf2c/libU77/umask_.c U src/contrib/libf2c/libU77/acconfig.h U src/contrib/libf2c/libU77/fstat_.c U src/contrib/libf2c/libU77/secnds_.c U src/contrib/libf2c/libU77/second_.c U src/contrib/libf2c/libU77/hostnm_.c No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:53:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 544D637B401; Sun, 9 Feb 2003 21:53:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC08643FE0; Sun, 9 Feb 2003 21:53:32 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5rWbv092653; Sun, 9 Feb 2003 21:53:32 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5rWPn092652; Sun, 9 Feb 2003 21:53:32 -0800 (PST) Message-Id: <200302100553.h1A5rWPn092652@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:53:32 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:53:32 PST Modified files: . exclude Log: Temporary exclude contrib/gcc for GCC update. Revision Changes Path 1.67 +3 -0 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:54:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A2037B401; Sun, 9 Feb 2003 21:54:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A00DF43FDF; Sun, 9 Feb 2003 21:54:11 -0800 (PST) (envelope-from cjc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5sBbv092698; Sun, 9 Feb 2003 21:54:11 -0800 (PST) (envelope-from cjc@repoman.freebsd.org) Received: (from cjc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5sBOh092697; Sun, 9 Feb 2003 21:54:11 -0800 (PST) Message-Id: <200302100554.h1A5sBOh092697@repoman.freebsd.org> From: "Crist J. Clark" Date: Sun, 9 Feb 2003 21:54:11 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2003/02/09 21:54:11 PST Modified files: . access access.master Log: Move to the src committers. Revision Changes Path 1.547 +1 -0 CVSROOT/access 1.574 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:57: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 156DE37B40D; Sun, 9 Feb 2003 21:57:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B08A743FAF; Sun, 9 Feb 2003 21:57:03 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5v3bv092873; Sun, 9 Feb 2003 21:57:03 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5v3rY092872; Sun, 9 Feb 2003 21:57:03 -0800 (PST) Message-Id: <200302100557.h1A5v3rY092872@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:57:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc Makefile.in builtins.c c-common.c configure dbxout.c emit-rtl.c function.c recog.c src/contrib/gcc/cp except.c src/contrib/gcc/ginclude stddef.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:57:03 PST Modified files: contrib/gcc Makefile.in builtins.c c-common.c configure dbxout.c emit-rtl.c function.c recog.c contrib/gcc/cp except.c contrib/gcc/ginclude stddef.h Log: Update HEAD with stock GCC 3.2.2 release files. Revision Changes Path 1.14 +120 -129 src/contrib/gcc/Makefile.in 1.5 +7 -2 src/contrib/gcc/builtins.c 1.16 +59 -6 src/contrib/gcc/c-common.c 1.17 +1 -1 src/contrib/gcc/configure 1.8 +1 -1 src/contrib/gcc/cp/except.c 1.9 +58 -2 src/contrib/gcc/dbxout.c 1.6 +90 -6 src/contrib/gcc/emit-rtl.c 1.16 +1 -4 src/contrib/gcc/function.c 1.6 +36 -3 src/contrib/gcc/ginclude/stddef.h 1.4 +2 -2 src/contrib/gcc/recog.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:58:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3A4B37B401; Sun, 9 Feb 2003 21:58:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6BB843FA3; Sun, 9 Feb 2003 21:58:19 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5wJbv092934; Sun, 9 Feb 2003 21:58:19 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5wJZJ092933; Sun, 9 Feb 2003 21:58:19 -0800 (PST) Message-Id: <200302100558.h1A5wJZJ092933@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:58:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc c-common.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:58:19 PST Modified files: contrib/gcc c-common.h Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.2 framework for our kernel printf enhancements. 1.3 suppress prototype warnings on K&R main. Revision Changes Path 1.5 +1 -6 src/contrib/gcc/c-common.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 21:59:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB66437B405; Sun, 9 Feb 2003 21:59:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B61944022; Sun, 9 Feb 2003 21:59:20 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A5xJbv092971; Sun, 9 Feb 2003 21:59:19 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A5xJu3092970; Sun, 9 Feb 2003 21:59:19 -0800 (PST) Message-Id: <200302100559.h1A5xJu3092970@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 21:59:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc c-decl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 21:59:19 PST Modified files: contrib/gcc c-decl.c Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.2 kernel printf enhancements framework. 1.3 suppress prototype warnings on K&R main. Revision Changes Path 1.7 +4 -52 src/contrib/gcc/c-decl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 0:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB18B37B405; Sun, 9 Feb 2003 22:00:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77BA543FE0; Sun, 9 Feb 2003 22:00:25 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A60Pbv093195; Sun, 9 Feb 2003 22:00:25 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A60Pcf093194; Sun, 9 Feb 2003 22:00:25 -0800 (PST) Message-Id: <200302100600.h1A60Pcf093194@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:00:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc c-format.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:00:25 PST Modified files: contrib/gcc c-format.c Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.2 -fformat-extensions. 1.3 -printf0 1.6 Teach GCC about %y for DDB and implement support for the C99 %z format modifier. Revision Changes Path 1.7 +2 -2 src/contrib/gcc/c-format.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 1:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 706CD37B401; Sun, 9 Feb 2003 22:01:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA0743F75; Sun, 9 Feb 2003 22:01:30 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A61Tbv094549; Sun, 9 Feb 2003 22:01:29 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A61TrD094545; Sun, 9 Feb 2003 22:01:29 -0800 (PST) Message-Id: <200302100601.h1A61TrD094545@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:01:29 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:01:29 PST Modified files: . exclude Log: Remove temporary entry for GCC. Revision Changes Path 1.68 +0 -3 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 2:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CB0E37B401; Sun, 9 Feb 2003 22:02:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C43E44003; Sun, 9 Feb 2003 22:02:52 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A62qbv096225; Sun, 9 Feb 2003 22:02:52 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A62p7S096222; Sun, 9 Feb 2003 22:02:51 -0800 (PST) Message-Id: <200302100602.h1A62p7S096222@repoman.freebsd.org> From: Jeff Roberson Date: Sun, 9 Feb 2003 22:02:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/09 22:02:51 PST Modified files: sys/kern vfs_bio.c Log: - In getnewbuf() unlock the bq lock prior to sleeping when we're out of buffers. Submitted by: tegge Revision Changes Path 1.365 +1 -0 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 3:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 186CA37B401; Sun, 9 Feb 2003 22:03:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACD8C43FA3; Sun, 9 Feb 2003 22:03:16 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A63Gbv096566; Sun, 9 Feb 2003 22:03:16 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A63Gei096565; Sun, 9 Feb 2003 22:03:16 -0800 (PST) Message-Id: <200302100603.h1A63Gei096565@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:03:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc gcc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:03:16 PST Modified files: contrib/gcc gcc.c Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.{2,15} FREEBSD_NATIVE. 1.21 "GCC_OPTIONS". 1.{16,25,27} Cross-compiling issues. Revision Changes Path 1.35 +3 -2 src/contrib/gcc/gcc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 3:52 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D1C837B401; Sun, 9 Feb 2003 22:03:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E13543FEA; Sun, 9 Feb 2003 22:03:48 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A63mbv096602; Sun, 9 Feb 2003 22:03:48 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A63lme096601; Sun, 9 Feb 2003 22:03:47 -0800 (PST) Message-Id: <200302100603.h1A63lme096601@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:03:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc version.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:03:47 PST Modified files: contrib/gcc version.c Log: Update for Gcc 3.2.2 release. Revision Changes Path 1.7 +1 -1 src/contrib/gcc/version.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 4:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF81E37B401; Sun, 9 Feb 2003 22:04:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC89A43FEC; Sun, 9 Feb 2003 22:04:35 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A64Zbv096647; Sun, 9 Feb 2003 22:04:35 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A64ZjQ096646; Sun, 9 Feb 2003 22:04:35 -0800 (PST) Message-Id: <200302100604.h1A64ZjQ096646@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:04:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 i386.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:04:35 PST Modified files: contrib/gcc/config/i386 i386.c Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.11 -mno-align-long-strings. Note the change 1.15 is not needed anymore. Revision Changes Path 1.16 +2 -1 src/contrib/gcc/config/i386/i386.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 5:19 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4093337B401; Sun, 9 Feb 2003 22:05:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D464943FF9; Sun, 9 Feb 2003 22:05:16 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A65Gbv096694; Sun, 9 Feb 2003 22:05:16 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A65GmW096693; Sun, 9 Feb 2003 22:05:16 -0800 (PST) Message-Id: <200302100605.h1A65GmW096693@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:05:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 i386.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:05:16 PST Modified files: contrib/gcc/config/i386 i386.h Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.10 -mno-align-long-strings. 1.11 Allow the specification of LONG_TYPE_SIZE on the command line. Revision Changes Path 1.15 +2 -2 src/contrib/gcc/config/i386/i386.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 5:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0113137B401; Sun, 9 Feb 2003 22:05:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94BFD43F93; Sun, 9 Feb 2003 22:05:39 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A65dbv096779; Sun, 9 Feb 2003 22:05:39 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A65dLK096778; Sun, 9 Feb 2003 22:05:39 -0800 (PST) Message-Id: <200302100605.h1A65dLK096778@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:05:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/rs6000 sysv4.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:05:39 PST Modified files: contrib/gcc/config/rs6000 sysv4.h Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.2 Define __ELF__. Revision Changes Path 1.5 +17 -1 src/contrib/gcc/config/rs6000/sysv4.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 6:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D141337B401; Sun, 9 Feb 2003 22:06:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70ABA43FD7; Sun, 9 Feb 2003 22:06:47 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A66lbv096861; Sun, 9 Feb 2003 22:06:47 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A66ljL096860; Sun, 9 Feb 2003 22:06:47 -0800 (PST) Message-Id: <200302100606.h1A66ljL096860@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 9 Feb 2003 22:06:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern tty.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/09 22:06:47 PST Modified files: sys/kern tty.c Log: Lock the proc around accessing p_siglist in ttycheckoutq() in the unused wait != 0 case. Revision Changes Path 1.192 +14 -3 src/sys/kern/tty.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 7:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC9F837B401; Sun, 9 Feb 2003 22:07:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54F2843F93; Sun, 9 Feb 2003 22:07:13 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A67Dbv096891; Sun, 9 Feb 2003 22:07:13 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A67DRG096890; Sun, 9 Feb 2003 22:07:13 -0800 (PST) Message-Id: <200302100607.h1A67DRG096890@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:07:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp decl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:07:13 PST Modified files: contrib/gcc/cp decl.c Log: Merge FreeBSD modifications into gcc 3.2.2 release: 1.8 printf format error fixes. Revision Changes Path 1.14 +8 -4 src/contrib/gcc/cp/decl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22: 9:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90C4C37B401; Sun, 9 Feb 2003 22:09:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3173243F3F; Sun, 9 Feb 2003 22:09:56 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A69ubv096965; Sun, 9 Feb 2003 22:09:56 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A69tAG096964; Sun, 9 Feb 2003 22:09:55 -0800 (PST) Message-Id: <200302100609.h1A69tAG096964@repoman.freebsd.org> From: Alexander Kabaev Date: Sun, 9 Feb 2003 22:09:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/gnu/lib/libstdc++ Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/09 22:09:55 PST Modified files: gnu/lib/libstdc++ Makefile Log: Install one more header file which is new with GCC 3.2.2. Revision Changes Path 1.42 +1 -0 src/gnu/lib/libstdc++/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 22:35:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7586737B401; Sun, 9 Feb 2003 22:35:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1148743FE9; Sun, 9 Feb 2003 22:35:35 -0800 (PST) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A6ZYbv007779; Sun, 9 Feb 2003 22:35:34 -0800 (PST) (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A6ZYVN007778; Sun, 9 Feb 2003 22:35:34 -0800 (PST) Message-Id: <200302100635.h1A6ZYVN007778@repoman.freebsd.org> From: Doug Barton Date: Sun, 9 Feb 2003 22:35:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/usr.sbin/mergemaster mergemaster.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2003/02/09 22:35:34 PST Modified files: usr.sbin/mergemaster mergemaster.8 Log: Try to fix two problems with the -I example. One is the fact that we want to match a character $, not EOL. The other is that CVS helpfully expanded my example into an actual CVS tag. Submitted by: gad Revision Changes Path 1.26 +1 -1 src/usr.sbin/mergemaster/mergemaster.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sun Feb 9 23:17:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 009E037B401; Sun, 9 Feb 2003 23:17:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 972D843F85; Sun, 9 Feb 2003 23:17:26 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A7HQbv022489; Sun, 9 Feb 2003 23:17:26 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A7HQtI022488; Sun, 9 Feb 2003 23:17:26 -0800 (PST) Message-Id: <200302100717.h1A7HQtI022488@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 9 Feb 2003 23:17:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire 00README firewire.c firewire.h firewirereg.h fwdev.c fwmem.c fwmem.h fwohci.c sbp.c src/usr.sbin/fwcontrol Makefile fwcontrol.8 fwcontrol.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/09 23:17:26 PST Modified files: (Branch: RELENG_4) sys/dev/firewire 00README firewire.c firewire.h firewirereg.h fwdev.c fwmem.c fwmem.h fwohci.c sbp.c usr.sbin/fwcontrol Makefile fwcontrol.8 fwcontrol.c Log: Sync with -current: * all - Remove unnecessary M_NOWAIT. - Add/improve some debug messages. * fwohci - Increase atrq.ndesc for if_fwe. * firewire - Detect split transcation timeout. - Add firewire_xferq_drain() for fw_busreset(). - Call fw_xfer_done() if retry handler is NULL. * sbp - Improve recovery after timeout. - Try reconnect first if the device has been seen. - Fix for ORB_FUN_ATA. - Remove unnecessary check for OCB_ACT_CMD. * fwmem - Implement write part. - Use quad access for aligned 4 byte access. - Add a new ioctl to specify target EUI64. * fwcontrol - Device list improvement. Revision Changes Path 1.1.4.2 +0 -0 src/sys/dev/firewire/00README 1.3.2.13 +116 -50 src/sys/dev/firewire/firewire.c 1.2.2.6 +3 -0 src/sys/dev/firewire/firewire.h 1.1.2.9 +4 -2 src/sys/dev/firewire/firewirereg.h 1.2.4.8 +5 -5 src/sys/dev/firewire/fwdev.c 1.1.2.5 +158 -41 src/sys/dev/firewire/fwmem.c 1.1.2.3 +2 -0 src/sys/dev/firewire/fwmem.h 1.1.2.12 +21 -19 src/sys/dev/firewire/fwohci.c 1.5.2.11 +80 -58 src/sys/dev/firewire/sbp.c 1.1.2.3 +0 -0 src/usr.sbin/fwcontrol/Makefile 1.1.2.5 +3 -0 src/usr.sbin/fwcontrol/fwcontrol.8 1.1.2.6 +3 -4 src/usr.sbin/fwcontrol/fwcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 0:31:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17B3837B401; Mon, 10 Feb 2003 00:31:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9FC94400B; Mon, 10 Feb 2003 00:31:29 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A8VTbv049483; Mon, 10 Feb 2003 00:31:29 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A8VTGL049471; Mon, 10 Feb 2003 00:31:29 -0800 (PST) Message-Id: <200302100831.h1A8VTGL049471@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Feb 2003 00:31:29 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/lib/libc/gen syslog.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/10 00:31:28 PST Modified files: lib/libc/gen syslog.c Log: Handle %%m properly in syslog format string. Previously it would expand the %m into the errno and then vfprintf would expand the % and the first character of the strerror(3) return causing possible data corruption. Revision Changes Path 1.29 +13 -3 src/lib/libc/gen/syslog.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 0:40:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F75437B401; Mon, 10 Feb 2003 00:40:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0C0143FDD; Mon, 10 Feb 2003 00:40:40 -0800 (PST) (envelope-from ticso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A8eebv051970; Mon, 10 Feb 2003 00:40:40 -0800 (PST) (envelope-from ticso@repoman.freebsd.org) Received: (from ticso@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A8eeRb051963; Mon, 10 Feb 2003 00:40:40 -0800 (PST) Message-Id: <200302100840.h1A8eeRb051963@repoman.freebsd.org> From: Bernd Walter Date: Mon, 10 Feb 2003 00:40:40 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ticso 2003/02/10 00:40:40 PST Modified files: . access access.master Log: register myself as an src commiter Approved by: gallatin (mentor) Revision Changes Path 1.548 +1 -0 CVSROOT/access 1.575 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 0:48: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F181637B401; Mon, 10 Feb 2003 00:48:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9963E43F75; Mon, 10 Feb 2003 00:48:04 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1A8m4bv054988; Mon, 10 Feb 2003 00:48:04 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1A8m4Fj054987; Mon, 10 Feb 2003 00:48:04 -0800 (PST) Message-Id: <200302100848.h1A8m4Fj054987@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Feb 2003 00:48:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/10 00:48:04 PST Modified files: include pthread.h lib/libc_r/man pthread_attr.3 Added files: lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c Log: Add pthread_attr_getstack() and pthread_attr_setstack(). Submitted by: Craig Rodrigues Revision Changes Path 1.27 +4 -0 src/include/pthread.h 1.12 +8 -0 src/lib/libc_r/man/pthread_attr.3 1.1 +59 -0 src/lib/libc_r/uthread/uthread_attr_getstack.c (new) 1.1 +58 -0 src/lib/libc_r/uthread/uthread_attr_setstack.c (new) 1.1 +59 -0 src/lib/libpthread/thread/thr_attr_getstack.c (new) 1.1 +58 -0 src/lib/libpthread/thread/thr_attr_setstack.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 1:55:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B1637B401; Mon, 10 Feb 2003 01:55:25 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC4843F93; Mon, 10 Feb 2003 01:55:20 -0800 (PST) (envelope-from phantom@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h1AC0Vvb046500; Mon, 10 Feb 2003 12:00:32 GMT Received: (from phantom@localhost) by phantom.cris.net (8.12.6/8.12.2) id h1AA1mEK025837; Mon, 10 Feb 2003 12:01:48 +0200 (EET) (envelope-from phantom) Date: Mon, 10 Feb 2003 12:01:47 +0200 From: Alexey Zelkin To: Alfred Perlstein Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210120147.A25796@phantom.cris.net> References: <200302100848.h1A8m4Fj054987@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200302100848.h1A8m4Fj054987@repoman.freebsd.org>; from alfred@FreeBSD.org on Mon, Feb 10, 2003 at 12:48:04AM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, Who reviewed this change ? Did you told to Dan before doing it ? And last, that purpose of this functionality ? (I have seen a diff, but it's interesting how these functions are supposed to be used?) PS: We have pthread_attr_get_np() which provide functionality similar to pthread_attr_getstack() in cleaner and correct way. Having of pthread_attr_setstack() is absolutely crazy idea (IMHO) because using it after pthread_create() may (or will) crash application. On Mon, Feb 10, 2003 at 12:48:04AM -0800, Alfred Perlstein wrote: > alfred 2003/02/10 00:48:04 PST > > Modified files: > include pthread.h > lib/libc_r/man pthread_attr.3 > Added files: > lib/libc_r/uthread uthread_attr_getstack.c > uthread_attr_setstack.c > lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c > Log: > Add pthread_attr_getstack() and pthread_attr_setstack(). > > Submitted by: Craig Rodrigues > > Revision Changes Path > 1.27 +4 -0 src/include/pthread.h > 1.12 +8 -0 src/lib/libc_r/man/pthread_attr.3 > 1.1 +59 -0 src/lib/libc_r/uthread/uthread_attr_getstack.c (new) > 1.1 +58 -0 src/lib/libc_r/uthread/uthread_attr_setstack.c (new) > 1.1 +59 -0 src/lib/libpthread/thread/thr_attr_getstack.c (new) > 1.1 +58 -0 src/lib/libpthread/thread/thr_attr_setstack.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 2:55: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F02737B401; Mon, 10 Feb 2003 02:55:00 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93EA743F93; Mon, 10 Feb 2003 02:54:59 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 2F2DAAE160; Mon, 10 Feb 2003 02:54:59 -0800 (PST) Date: Mon, 10 Feb 2003 02:54:59 -0800 From: Alfred Perlstein To: Alexey Zelkin Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210105459.GU88781@elvis.mu.org> References: <200302100848.h1A8m4Fj054987@repoman.freebsd.org> <20030210120147.A25796@phantom.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030210120147.A25796@phantom.cris.net> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Mon, Feb 10, 2003 at 12:48:04AM -0800, Alfred Perlstein wrote: > > Log: > > Add pthread_attr_getstack() and pthread_attr_setstack(). * Alexey Zelkin [030210 01:55] wrote: > hi, > > Who reviewed this change ? Did you told to Dan before doing it ? I thought it was fine, I've done work on the pthreads library before. > And last, that purpose of this functionality ? (I have seen a diff, > but it's interesting how these functions are supposed to be used?) This is to bring us a function that is required by: http://www.opengroup.org/onlinepubs/007904975/functions/pthread_attr_getstack.html > PS: We have pthread_attr_get_np() which provide functionality similar > to pthread_attr_getstack() in cleaner and correct way. Having of > pthread_attr_setstack() is absolutely crazy idea (IMHO) because using it > after pthread_create() may (or will) crash application. Well yes, but this is needed for standards compliance. Afaik when one passes in an attribute it is deep copied within the pthread_create call hence this can only be effective before the call to pthread_create. Also we have uthread_attr_setstackaddr.c and uthread_attr_setstacksize.c which setstack is simply a combination of them specified by the standard. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 3:21: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DEA137B401; Mon, 10 Feb 2003 03:20:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A122343FB1; Mon, 10 Feb 2003 03:20:58 -0800 (PST) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ABKwbv012314; Mon, 10 Feb 2003 03:20:58 -0800 (PST) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ABKwkB012312; Mon, 10 Feb 2003 03:20:58 -0800 (PST) Message-Id: <200302101120.h1ABKwkB012312@repoman.freebsd.org> From: Thomas Quinot Date: Mon, 10 Feb 2003 03:20:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/usr.sbin/cron/lib env.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG thomas 2003/02/10 03:20:58 PST Modified files: usr.sbin/cron/lib env.c Log: Allow inner whitespace in the right-hand side of an environment variable assignment even if it is not quoted (as advertised by the man page). This fixes a regression wrt RELENG_4 introduced in rev. 1.11. Problem noted and patch tested by: CHOI Junho Reviewed by: roberto Revision Changes Path 1.12 +17 -10 src/usr.sbin/cron/lib/env.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 3:35:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0270F37B401; Mon, 10 Feb 2003 03:35:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C5943F75; Mon, 10 Feb 2003 03:35:54 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ABZsbv018240; Mon, 10 Feb 2003 03:35:54 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ABZsEL018239; Mon, 10 Feb 2003 03:35:54 -0800 (PST) Message-Id: <200302101135.h1ABZsEL018239@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Mon, 10 Feb 2003 03:35:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/10 03:35:54 PST Modified files: (Branch: RELENG_4) etc MAKEDEV Log: Add firewire devices in 'all' entry. Revision Changes Path 1.243.2.57 +1 -0 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 4:15:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75DEB37B401; Mon, 10 Feb 2003 04:15:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 229EC43FBF; Mon, 10 Feb 2003 04:15:31 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ACFUbv032646; Mon, 10 Feb 2003 04:15:30 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ACFUZ1032645; Mon, 10 Feb 2003 04:15:30 -0800 (PST) Message-Id: <200302101215.h1ACFUZ1032645@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Feb 2003 04:15:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/libpam/libpam_misc misc_conv.c src/lib/libpam/modules/pam_opie pam_opie.c src/lib/libpam/modules/pam_skey pam_skey.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/10 04:15:30 PST Modified files: (Branch: RELENG_4) contrib/libpam/libpam_misc misc_conv.c lib/libpam/modules/pam_opie pam_opie.c lib/libpam/modules/pam_skey pam_skey.c Log: The S/Key and OPIE PAM modules allow the user to see the pass phrase's characters as they are entered. This is done by turning on a PAM conversation option that controls echoing of the entered passwords; however, both modules neglect to turn it off afterwards, so if there are additional authentication modules used if the S/Key or OPIE login should fail, the passwords for those modules are echoed as they are entered. PR: bin/46025 Submitted by: roam Revision Changes Path 1.1.1.1.6.3 +4 -2 src/contrib/libpam/libpam_misc/misc_conv.c 1.1.2.2 +8 -1 src/lib/libpam/modules/pam_opie/pam_opie.c 1.2.6.2 +3 -2 src/lib/libpam/modules/pam_skey/pam_skey.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 4:21:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F38CB37B401; Mon, 10 Feb 2003 04:21:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9585B43FA3; Mon, 10 Feb 2003 04:21:09 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ACL9bv034473; Mon, 10 Feb 2003 04:21:09 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ACL9l5034468; Mon, 10 Feb 2003 04:21:09 -0800 (PST) Message-Id: <200302101221.h1ACL9l5034468@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Feb 2003 04:21:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sbin/mount mount.8 src/sbin/mount_std Makefile mount_std.8 src/share/man/man0 man8 src/share/man/man5 Makefile fstab.5 src/sys/boot/forth loader.conf src/sys/conf files src/sys/kern Make.tags.inc Makefile src/sys/modules Makefile ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/10 04:21:09 PST Modified files: (Branch: RELENG_4) sbin/mount mount.8 sbin/mount_std Makefile mount_std.8 share/man/man0 man8 share/man/man5 Makefile fstab.5 sys/boot/forth loader.conf sys/conf files sys/kern Make.tags.inc Makefile sys/modules Makefile usr.sbin/crunch/examples really-big.conf Log: Disconnect kernfs from the build and remove all references to it from the documentation. Revision Changes Path 1.31.2.11 +0 -1 src/sbin/mount/mount.8 1.4.6.5 +1 -3 src/sbin/mount_std/Makefile 1.9.2.7 +1 -6 src/sbin/mount_std/mount_std.8 1.3.6.1 +0 -1 src/share/man/man0/man8 1.27.2.11 +1 -1 src/share/man/man5/Makefile 1.11.2.8 +0 -2 src/share/man/man5/fstab.5 1.25.2.22 +0 -1 src/sys/boot/forth/loader.conf 1.340.2.131 +0 -2 src/sys/conf/files 1.6.2.2 +1 -3 src/sys/kern/Make.tags.inc 1.6.2.1 +1 -1 src/sys/kern/Makefile 1.110.2.66 +0 -1 src/sys/modules/Makefile 1.2.6.1 +3 -1 src/usr.sbin/crunch/examples/really-big.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 4:22:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A8DD37B401; Mon, 10 Feb 2003 04:22:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 092EC43FBD; Mon, 10 Feb 2003 04:22:39 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ACMcbv036279; Mon, 10 Feb 2003 04:22:38 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ACMcjD036275; Mon, 10 Feb 2003 04:22:38 -0800 (PST) Message-Id: <200302101222.h1ACMcjD036275@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Feb 2003 04:22:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/share/man/man5 kernfs.5 src/sys/miscfs/kernfs kernfs.h kernfs_vfsops.c kernfs_vnops.c src/sys/modules/kernfs Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/10 04:22:38 PST Removed files: (Branch: RELENG_4) share/man/man5 kernfs.5 sys/miscfs/kernfs kernfs.h kernfs_vfsops.c kernfs_vnops.c sys/modules/kernfs Makefile Log: Remove the kernfs source code and documentation. Revision Changes Path 1.8.2.4 +0 -130 src/share/man/man5/kernfs.5 (dead) 1.13.2.1 +0 -56 src/sys/miscfs/kernfs/kernfs.h (dead) 1.35.2.2 +0 -249 src/sys/miscfs/kernfs/kernfs_vfsops.c (dead) 1.43.2.1 +0 -637 src/sys/miscfs/kernfs/kernfs_vnops.c (dead) 1.7.2.1 +0 -9 src/sys/modules/kernfs/Makefile (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 5:11:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D867B37B401; Mon, 10 Feb 2003 05:11:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C55B43F3F; Mon, 10 Feb 2003 05:11:52 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ADBqbv053507; Mon, 10 Feb 2003 05:11:52 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ADBqLX053496; Mon, 10 Feb 2003 05:11:52 -0800 (PST) Message-Id: <200302101311.h1ADBqLX053496@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 10 Feb 2003 05:11:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/conf files.pc98 kmod.mk src/sys/modules Makefile src/sys/modules/canbepm Makefile src/sys/modules/canbus Makefile src/sys/pc98/conf GENERIC src/sys/pc98/pc98 canbepm.c canbus.c canbus.h canbus_if.m canbusvars.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2003/02/10 05:11:52 PST Modified files: (Branch: RELENG_4) sys/conf files.pc98 kmod.mk sys/modules Makefile sys/pc98/conf GENERIC Added files: (Branch: RELENG_4) sys/modules/canbepm Makefile sys/modules/canbus Makefile sys/pc98/pc98 canbepm.c canbus.c canbus.h canbus_if.m canbusvars.h Log: MFC: Add CanBe power management controller support. Revision Changes Path 1.140.2.44 +16 -0 src/sys/conf/files.pc98 1.82.2.15 +2 -1 src/sys/conf/kmod.mk 1.110.2.67 +3 -1 src/sys/modules/Makefile 1.1.2.1 +8 -0 src/sys/modules/canbepm/Makefile (new) 1.1.2.1 +8 -0 src/sys/modules/canbus/Makefile (new) 1.142.2.35 +2 -0 src/sys/pc98/conf/GENERIC 1.3.2.1 +137 -0 src/sys/pc98/pc98/canbepm.c (new) 1.3.2.1 +442 -0 src/sys/pc98/pc98/canbus.c (new) 1.3.2.1 +39 -0 src/sys/pc98/pc98/canbus.h (new) 1.2.2.1 +69 -0 src/sys/pc98/pc98/canbus_if.m (new) 1.3.2.1 +110 -0 src/sys/pc98/pc98/canbusvars.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 5:31:52 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B48A137B401; Mon, 10 Feb 2003 05:31:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5444D43FA3; Mon, 10 Feb 2003 05:31:50 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ADVobv060794; Mon, 10 Feb 2003 05:31:50 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ADVo2t060793; Mon, 10 Feb 2003 05:31:50 -0800 (PST) Message-Id: <200302101331.h1ADVo2t060793@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 10 Feb 2003 05:31:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/dev/snc dp83932.c dp83932var.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2003/02/10 05:31:50 PST Modified files: sys/dev/snc dp83932.c dp83932var.h Log: Use correct spl mask. Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata) MFC after: 1 day Revision Changes Path 1.8 +3 -3 src/sys/dev/snc/dp83932.c 1.3 +4 -0 src/sys/dev/snc/dp83932var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 6: 3:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E40637B401; Mon, 10 Feb 2003 06:03:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD7F43FAF; Mon, 10 Feb 2003 06:03:46 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AE3kbv072653; Mon, 10 Feb 2003 06:03:46 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AE3jTV072652; Mon, 10 Feb 2003 06:03:45 -0800 (PST) Message-Id: <200302101403.h1AE3jTV072652@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 10 Feb 2003 06:03:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern sched_ule.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/10 06:03:45 PST Modified files: sys/kern sched_ule.c Log: - Add a new variable 'kg_runtime' that tracks the amount of time we've run. - Use the ratio of kg_runtime / kg_slptime to determine our dynamic priority. - Scale kg_runtime and kg_slptime back when the sum of the two exceeds SCHED_SLP_RUN_MAX. This allows us to slowly forget old behavior. - Scale back the runtime and slptime in fork so that the new process has the same ratio but much less accumulated time. This causes new behavior to be noticed more quickly. Revision Changes Path 1.9 +67 -26 src/sys/kern/sched_ule.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 6:11:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A8437B401; Mon, 10 Feb 2003 06:11:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7417843FA3; Mon, 10 Feb 2003 06:11:24 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AEBObv074545; Mon, 10 Feb 2003 06:11:24 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AEBO4x074532; Mon, 10 Feb 2003 06:11:24 -0800 (PST) Message-Id: <200302101411.h1AEBO4x074532@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 10 Feb 2003 06:11:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/sys/kern sched_ule.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/10 06:11:23 PST Modified files: sys/kern sched_ule.c Log: - Enable STRICT_RESCHED until code that dynamically decides on resched strictness based on the current workload is finished. Revision Changes Path 1.10 +2 -0 src/sys/kern/sched_ule.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 6:42:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB3CC37B401; Mon, 10 Feb 2003 06:42:46 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0228543FA3; Mon, 10 Feb 2003 06:42:46 -0800 (PST) (envelope-from eischen@pcnet1.pcnet.com) Received: from localhost (eischen@localhost) by mail.pcnet.com (8.12.3/8.12.1) with ESMTP id h1AEgiqw006137; Mon, 10 Feb 2003 09:42:44 -0500 (EST) Date: Mon, 10 Feb 2003 09:42:44 -0500 (EST) From: Daniel Eischen To: Alexey Zelkin Cc: Alfred Perlstein , cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 In-Reply-To: <20030210120147.A25796@phantom.cris.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003, Alexey Zelkin wrote: > hi, > > Who reviewed this change ? Did you told to Dan before doing it ? Yeah, I want a backout! Back it out now! Just kidding :-) :-) These are added functions in the latest POSIX spec. They do the same thing as *_[gs]etstackaddr() and *_[gs]etstacksize(). [In the kindest words imaginable] In the future I would like to review changes to libc_r. > And last, that purpose of this functionality ? (I have seen a diff, > but it's interesting how these functions are supposed to be used?) > > PS: We have pthread_attr_get_np() which provide functionality similar > to pthread_attr_getstack() in cleaner and correct way. Having of > pthread_attr_setstack() is absolutely crazy idea (IMHO) because using it > after pthread_create() may (or will) crash application. > > On Mon, Feb 10, 2003 at 12:48:04AM -0800, Alfred Perlstein wrote: > > alfred 2003/02/10 00:48:04 PST > > > > Modified files: > > include pthread.h > > lib/libc_r/man pthread_attr.3 > > Added files: > > lib/libc_r/uthread uthread_attr_getstack.c > > uthread_attr_setstack.c > > lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c > > Log: > > Add pthread_attr_getstack() and pthread_attr_setstack(). > > > > Submitted by: Craig Rodrigues > > > > Revision Changes Path > > 1.27 +4 -0 src/include/pthread.h > > 1.12 +8 -0 src/lib/libc_r/man/pthread_attr.3 > > 1.1 +59 -0 src/lib/libc_r/uthread/uthread_attr_getstack.c (new) > > 1.1 +58 -0 src/lib/libc_r/uthread/uthread_attr_setstack.c (new) > > 1.1 +59 -0 src/lib/libpthread/thread/thr_attr_getstack.c (new) > > 1.1 +58 -0 src/lib/libpthread/thread/thr_attr_setstack.c (new) -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 8:41: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A5ED37B401; Mon, 10 Feb 2003 08:41:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0885443F93; Mon, 10 Feb 2003 08:41:07 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AGf6bv028806; Mon, 10 Feb 2003 08:41:06 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AGf6FR028802; Mon, 10 Feb 2003 08:41:06 -0800 (PST) Message-Id: <200302101641.h1AGf6FR028802@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 10 Feb 2003 08:41:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/contrib/sendmail - Imported sources X-FreeBSD-CVS-Branch: SENDMAIL Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2003/02/10 08:41:06 PST src/contrib/sendmail - Imported sources Update of /home/ncvs/src/contrib/sendmail In directory repoman.freebsd.org:/tmp/cvs-serv27338 Log Message: Import proto.m4 fix from vendor repository. This fixes a cf building bug if LOCAL_RELAY and/or MAIL_HUB are used in an mc file. Status: Vendor Tag: SENDMAIL Release Tags: v8_12_7_protofix U src/contrib/sendmail/cf/m4/proto.m4 No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 8:46:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0EA337B401; Mon, 10 Feb 2003 08:46:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4060043F3F; Mon, 10 Feb 2003 08:46:45 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AGkjbv030918; Mon, 10 Feb 2003 08:46:45 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AGkilO030917; Mon, 10 Feb 2003 08:46:44 -0800 (PST) Message-Id: <200302101646.h1AGkilO030917@repoman.freebsd.org> From: "Bruce A. Mah" Date: Mon, 10 Feb 2003 08:46:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2003/02/10 08:46:44 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: GCC 3.2.2, sendmail 8.12.7. Revision Changes Path 1.494 +6 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 8:58:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 705FC37B401; Mon, 10 Feb 2003 08:58:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1257D43F75; Mon, 10 Feb 2003 08:58:48 -0800 (PST) (envelope-from robert@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AGwlbv034548; Mon, 10 Feb 2003 08:58:47 -0800 (PST) (envelope-from robert@repoman.freebsd.org) Received: (from robert@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AGwl0a034547; Mon, 10 Feb 2003 08:58:47 -0800 (PST) Message-Id: <200302101658.h1AGwl0a034547@repoman.freebsd.org> From: Robert Drehmel Date: Mon, 10 Feb 2003 08:58:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: src/usr.bin/netstat if.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG robert 2003/02/10 08:58:47 PST Modified files: usr.bin/netstat if.c Log: - Determine the size of buffers with sizeof() instead of using plain magic numbers - one of them was apparently wrong but unharmful. - Remove empty line. Revision Changes Path 1.52 +7 -7 src/usr.bin/netstat/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 9: 0:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65DD037B401; Mon, 10 Feb 2003 09:00:36 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CA9E43F93; Mon, 10 Feb 2003 09:00:35 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id h1AH0YRj044273; Mon, 10 Feb 2003 09:00:34 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id h1AGxJK2044240; Mon, 10 Feb 2003 08:59:19 -0800 (PST) Date: Mon, 10 Feb 2003 08:59:19 -0800 From: "David O'Brien" To: Juli Mallett Cc: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT access.doc Message-ID: <20030210165919.GB42975@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200302090526.h195Qsvd059822@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302090526.h195Qsvd059822@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 08, 2003 at 09:26:54PM -0800, Juli Mallett wrote: > jmallett 2003/02/08 21:26:54 PST > > Modified files: > . access.doc > Log: > I need to be here to see www and such commits, as I maintain a few things. > Oops. Why do you make it sound like you don't do any www or doc commits? IMHO, one should not sign up for a FOO access list just to get the commit mail -- cvs-FOO@ exists for this purpose. You've done 8+10 in the past year. Not a huge ammount but certainly enough to justify yourself as a docs/www committer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 9:15:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4401437B405; Mon, 10 Feb 2003 09:15:28 -0800 (PST) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF41043F75; Mon, 10 Feb 2003 09:15:26 -0800 (PST) (envelope-from hiten@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (hiten@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.7/8.12.1) with ESMTP id h1AHFPOm050234; Mon, 10 Feb 2003 12:15:25 -0500 (EST) Received: (from hiten@localhost) by angelica.unixdaemons.com (8.12.7/8.12.1/Submit) id h1AHFOdD050233; Mon, 10 Feb 2003 12:15:24 -0500 (EST) (envelope-from hiten) Date: Mon, 10 Feb 2003 12:15:24 -0500 From: Hiten Pandya To: Alexander Kabaev Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, legacy-committers@FreeBSD.ORG Subject: Re: cvs commit: src/contrib/gcc - Imported sources Message-ID: <20030210171524.GA49848@unixdaemons.com> References: <200302100542.h1A5gekn088756@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302100542.h1A5gekn088756@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD i386 X-Public-Key: http://www.pittgoth.com/~hiten/pubkey.asc X-URL: http://www.unixdaemons.com/~hiten X-PGP: http://pgp.mit.edu:11371/pks/lookup?search=Hiten+Pandya&op=index Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 09, 2003 at 09:42:40PM -0800, Alexander Kabaev wrote the words in effect of: > kan 2003/02/09 21:42:40 PST > > src/contrib/gcc - Imported sources > Update of /home/ncvs/src/contrib/gcc > In directory repoman.freebsd.org:/tmp/cvs-serv74587 > > Log Message: > Gcc 3.2.2-release. Thanks! -- Hiten Pandya (hiten@unixdaemons.com, hiten@uk.FreeBSD.org) http://www.unixdaemons.com/~hiten/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 9:20:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A32E37B401; Mon, 10 Feb 2003 09:20:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3748143F85; Mon, 10 Feb 2003 09:20:25 -0800 (PST) (envelope-from tg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AHKPbv042068; Mon, 10 Feb 2003 09:20:25 -0800 (PST) (envelope-from tg@repoman.freebsd.org) Received: (from tg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AHKO84042064; Mon, 10 Feb 2003 09:20:24 -0800 (PST) Message-Id: <200302101720.h1AHKO84042064@repoman.freebsd.org> From: Thomas Gellekum Date: Mon, 10 Feb 2003 09:20:24 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tg 2003/02/10 09:20:24 PST Modified files: . access access.master access.ports Log: Move myself. Revision Changes Path 1.549 +1 -0 CVSROOT/access 1.576 +0 -1 CVSROOT/access.master 1.504 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 9:30:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6144037B401; Mon, 10 Feb 2003 09:30:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B765B43F85; Mon, 10 Feb 2003 09:30:48 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AHUmbv046206; Mon, 10 Feb 2003 09:30:48 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AHUmII046199; Mon, 10 Feb 2003 09:30:48 -0800 (PST) Message-Id: <200302101730.h1AHUmII046199@repoman.freebsd.org> From: Peter Wemm Date: Mon, 10 Feb 2003 09:30:48 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: cvs commit: CVSROOT cfg_local.pm X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/10 09:30:48 PST Modified files: . cfg_local.pm Log: Drop legacy-committers@ from explicit To: headers Revision Changes Path 1.24 +8 -8 CVSROOT/cfg_local.pm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 9:34:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5589E37B401; Mon, 10 Feb 2003 09:34:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB44A43FA3; Mon, 10 Feb 2003 09:34:32 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AHYWbv048805; Mon, 10 Feb 2003 09:34:32 -0800 (PST) (envelope-from mike@repoman.freebsd.org) Received: (from mike@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AHYWbe048804; Mon, 10 Feb 2003 09:34:32 -0800 (PST) Message-Id: <200302101734.h1AHYWbe048804@repoman.freebsd.org> From: Mike Barcroft Date: Mon, 10 Feb 2003 09:34:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/fortune/datfiles fortunes X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2003/02/10 09:34:32 PST Modified files: games/fortune/datfiles fortunes Log: Immortalize a Robert Watson quote. Revision Changes Path 1.103 +7 -0 src/games/fortune/datfiles/fortunes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 10:21:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3724B37B401; Mon, 10 Feb 2003 10:21:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8D5143F3F; Mon, 10 Feb 2003 10:21:27 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AILRbv065336; Mon, 10 Feb 2003 10:21:27 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AILRfa065323; Mon, 10 Feb 2003 10:21:27 -0800 (PST) Message-Id: <200302101821.h1AILRfa065323@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 10 Feb 2003 10:21:27 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.doc access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/10 10:21:27 PST Modified files: . access access.doc access.master access.ports Log: Revision Changes Path 1.550 +1 -0 CVSROOT/access 1.459 +1 -0 CVSROOT/access.doc 1.577 +0 -1 CVSROOT/access.master 1.505 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 10:29:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B61E137B401; Mon, 10 Feb 2003 10:29:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5261E43FBD; Mon, 10 Feb 2003 10:29:54 -0800 (PST) (envelope-from andreas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AITsbv067059; Mon, 10 Feb 2003 10:29:54 -0800 (PST) (envelope-from andreas@repoman.freebsd.org) Received: (from andreas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AITsxZ067058; Mon, 10 Feb 2003 10:29:54 -0800 (PST) Message-Id: <200302101829.h1AITsxZ067058@repoman.freebsd.org> From: Andreas Klemm Date: Mon, 10 Feb 2003 10:29:54 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG andreas 2003/02/10 10:29:54 PST Modified files: . access access.master access.ports Log: As requested by Peter: - I'm a src and port committer, so put myself into access and access.ports - Removed myself from access.master Revision Changes Path 1.551 +1 -0 CVSROOT/access 1.578 +0 -1 CVSROOT/access.master 1.506 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 10:59:23 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54E3B37B401; Mon, 10 Feb 2003 10:59:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E85B143FB1; Mon, 10 Feb 2003 10:59:20 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AIxKbv077932; Mon, 10 Feb 2003 10:59:20 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AIxKSD077931; Mon, 10 Feb 2003 10:59:20 -0800 (PST) Message-Id: <200302101859.h1AIxKSD077931@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 10 Feb 2003 10:59:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_group pam_group.c src/lib/libpam/modules/pam_ssh pam_ssh.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/10 10:59:20 PST Modified files: lib/libpam/modules/pam_group pam_group.c lib/libpam/modules/pam_ssh pam_ssh.c Log: Use pam_get_user(3) instead of pam_get_item(3) where appropriate. Revision Changes Path 1.3 +2 -2 src/lib/libpam/modules/pam_group/pam_group.c 1.38 +2 -2 src/lib/libpam/modules/pam_ssh/pam_ssh.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 11: 3: 3 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id B912137B401; Mon, 10 Feb 2003 11:02:58 -0800 (PST) Date: Mon, 10 Feb 2003 13:02:58 -0600 From: Juli Mallett To: David O'Brien Cc: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT access.doc Message-ID: <20030210130258.A83072@FreeBSD.org> References: <200302090526.h195Qsvd059822@repoman.freebsd.org> <20030210165919.GB42975@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030210165919.GB42975@dragon.nuxi.com>; from obrien@FreeBSD.org on Mon, Feb 10, 2003 at 08:59:19AM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: David O'Brien [ Data: 2003-02-10 ] [ Subjecte: Re: cvs commit: CVSROOT access.doc ] > On Sat, Feb 08, 2003 at 09:26:54PM -0800, Juli Mallett wrote: > > jmallett 2003/02/08 21:26:54 PST > > > > Modified files: > > . access.doc > > Log: > > I need to be here to see www and such commits, as I maintain a few things. > > Oops. > > Why do you make it sound like you don't do any www or doc commits? > IMHO, one should not sign up for a FOO access list just to get the commit > mail -- cvs-FOO@ exists for this purpose. You've done 8+10 in the past > year. Not a huge ammount but certainly enough to justify yourself as a > docs/www committer. I meant it didn't occur to me until I didn't see a commit of mine. Just a brain misfire at first. Sorry for being inexplicit. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 11:11:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 041D637B401; Mon, 10 Feb 2003 11:11:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48B7143FA3; Mon, 10 Feb 2003 11:11:32 -0800 (PST) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AJBWbv083668; Mon, 10 Feb 2003 11:11:32 -0800 (PST) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AJBVxd083661; Mon, 10 Feb 2003 11:11:31 -0800 (PST) Message-Id: <200302101911.h1AJBVxd083661@repoman.freebsd.org> From: Greg Lewis Date: Mon, 10 Feb 2003 11:11:31 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.doc access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG glewis 2003/02/10 11:11:31 PST Modified files: . access.doc access.master access.ports Log: . Ports committer. . I've also made commits to the Java project web pages, so am tenatively leaving myself in access.doc. Revision Changes Path 1.460 +1 -0 CVSROOT/access.doc 1.579 +0 -1 CVSROOT/access.master 1.507 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 11:44:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 586EF37B401; Mon, 10 Feb 2003 11:44:06 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19E9B43FA3; Mon, 10 Feb 2003 11:44:03 -0800 (PST) (envelope-from phantom@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h1ALnKvb069980; Mon, 10 Feb 2003 21:49:21 GMT Received: (from phantom@localhost) by phantom.cris.net (8.12.6/8.12.2) id h1AJoWDJ028591; Mon, 10 Feb 2003 21:50:32 +0200 (EET) (envelope-from phantom) Date: Mon, 10 Feb 2003 21:50:31 +0200 From: Alexey Zelkin To: Alfred Perlstein Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210215031.A28553@phantom.cris.net> References: <200302100848.h1A8m4Fj054987@repoman.freebsd.org> <20030210120147.A25796@phantom.cris.net> <20030210105459.GU88781@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030210105459.GU88781@elvis.mu.org>; from alfred@FreeBSD.org on Mon, Feb 10, 2003 at 02:54:59AM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, On Mon, Feb 10, 2003 at 02:54:59AM -0800, Alfred Perlstein wrote: > > On Mon, Feb 10, 2003 at 12:48:04AM -0800, Alfred Perlstein wrote: > > > Log: > > > Add pthread_attr_getstack() and pthread_attr_setstack(). > > * Alexey Zelkin [030210 01:55] wrote: > > hi, > > > > Who reviewed this change ? Did you told to Dan before doing it ? > > I thought it was fine, I've done work on the pthreads library before. Dan is owning some uncommitted patches used to convert libc_r to using *context() stuff, instead of longjmp()'s. Making uncoordinated changes just may create unneeded problems, IMO. > > And last, that purpose of this functionality ? (I have seen a diff, > > but it's interesting how these functions are supposed to be used?) > > This is to bring us a function that is required by: > http://www.opengroup.org/onlinepubs/007904975/functions/pthread_attr_getstack.html Hmm.. Reading of -committers before morning coffee isn't good idea. Sorry Alfred. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 11:56:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B440537B401; Mon, 10 Feb 2003 11:56:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A338B43FAF; Mon, 10 Feb 2003 11:56:42 -0800 (PST) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AJugbv099885; Mon, 10 Feb 2003 11:56:42 -0800 (PST) (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AJugAQ099884; Mon, 10 Feb 2003 11:56:42 -0800 (PST) Message-Id: <200302101956.h1AJugAQ099884@repoman.freebsd.org> From: Garance A Drosehn Date: Mon, 10 Feb 2003 11:56:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/regression/usr.bin/make Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gad 2003/02/10 11:56:42 PST Modified files: tools/regression/usr.bin/make Makefile Log: The regression-tests for 'make' *expect* to trigger make's warning: warning: duplicate script for target "double" ignored The regression-tests do try to hide that message, but the message does still appear when using -j (eg: 'make -j5 buildworld'). This changes the regression-test so the expected warning message will not be seen even when -j is specified. Reviewed by: jmallett ru Revision Changes Path 1.11 +1 -1 src/tools/regression/usr.bin/make/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 11:58:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9244E37B401; Mon, 10 Feb 2003 11:57:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84F2F43F85; Mon, 10 Feb 2003 11:57:56 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AJvubv000785; Mon, 10 Feb 2003 11:57:56 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AJvuvA000784; Mon, 10 Feb 2003 11:57:56 -0800 (PST) Message-Id: <200302101957.h1AJvuvA000784@repoman.freebsd.org> From: Jacques Vidrine Date: Mon, 10 Feb 2003 11:57:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 src/share/examples/etc make.conf src/etc Makefile src/etc/mtree BSD.usr.dist src/secure/lib/libcrypto Makefile Makefile.inc Makefile.man src/secure/lib/libcrypto/man ASN1_OBJECT_new.3 ASN1_STRING_length.3 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/10 11:57:56 PST Modified files: share/man/man5 make.conf.5 share/examples/etc make.conf etc Makefile etc/mtree BSD.usr.dist secure/lib/libcrypto Makefile Makefile.inc secure/lib/libcrypto/man ASN1_OBJECT_new.3 ASN1_STRING_length.3 ASN1_STRING_new.3 ASN1_STRING_print_ex.3 BIO_ctrl.3 BIO_f_base64.3 BIO_f_buffer.3 BIO_f_cipher.3 BIO_f_md.3 BIO_f_null.3 BIO_f_ssl.3 BIO_find_type.3 BIO_new.3 BIO_push.3 BIO_read.3 BIO_s_accept.3 BIO_s_bio.3 BIO_s_connect.3 BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3 BIO_s_null.3 BIO_s_socket.3 BIO_set_callback.3 BIO_should_retry.3 BN_CTX_new.3 BN_CTX_start.3 BN_add.3 BN_add_word.3 BN_bn2bin.3 BN_cmp.3 BN_copy.3 BN_generate_prime.3 BN_mod_inverse.3 BN_mod_mul_montgomery.3 BN_mod_mul_reciprocal.3 BN_new.3 BN_num_bytes.3 BN_rand.3 BN_set_bit.3 BN_swap.3 BN_zero.3 CRYPTO_set_ex_data.3 DH_generate_key.3 DH_generate_parameters.3 DH_get_ex_new_index.3 DH_new.3 DH_set_method.3 DH_size.3 DSA_SIG_new.3 DSA_do_sign.3 DSA_dup_DH.3 DSA_generate_key.3 DSA_generate_parameters.3 DSA_get_ex_new_index.3 DSA_new.3 DSA_set_method.3 DSA_sign.3 DSA_size.3 ERR_GET_LIB.3 ERR_clear_error.3 ERR_error_string.3 ERR_get_error.3 ERR_load_crypto_strings.3 ERR_load_strings.3 ERR_print_errors.3 ERR_put_error.3 ERR_remove_state.3 EVP_BytesToKey.3 EVP_DigestInit.3 EVP_EncryptInit.3 EVP_OpenInit.3 EVP_PKEY_new.3 EVP_PKEY_set1_RSA.3 EVP_SealInit.3 EVP_SignInit.3 EVP_VerifyInit.3 OBJ_nid2obj.3 OPENSSL_VERSION_NUMBER.3 OpenSSL_add_all_algorithms.3 PKCS12_create.3 PKCS12_parse.3 PKCS7_decrypt.3 PKCS7_encrypt.3 PKCS7_sign.3 PKCS7_verify.3 RAND_add.3 RAND_bytes.3 RAND_cleanup.3 RAND_egd.3 RAND_load_file.3 RAND_set_rand_method.3 RSA_blinding_on.3 RSA_check_key.3 RSA_generate_key.3 RSA_get_ex_new_index.3 RSA_new.3 RSA_padding_add_PKCS1_type_1.3 RSA_print.3 RSA_private_encrypt.3 RSA_public_encrypt.3 RSA_set_method.3 RSA_sign.3 RSA_sign_ASN1_OCTET_STRING.3 RSA_size.3 SMIME_read_PKCS7.3 SMIME_write_PKCS7.3 X509_NAME_ENTRY_get_object.3 X509_NAME_add_entry_by_txt.3 X509_NAME_get_index_by_NID.3 X509_NAME_print_ex.3 X509_new.3 bio.3 blowfish.3 bn.3 bn_internal.3 buffer.3 crypto.3 d2i_ASN1_OBJECT.3 d2i_DHparams.3 d2i_DSAPublicKey.3 d2i_PKCS8PrivateKey.3 d2i_RSAPublicKey.3 d2i_X509.3 d2i_X509_ALGOR.3 d2i_X509_CRL.3 d2i_X509_NAME.3 d2i_X509_REQ.3 d2i_X509_SIG.3 des.3 dh.3 dsa.3 engine.3 err.3 evp.3 hmac.3 lh_stats.3 lhash.3 md5.3 mdc2.3 pem.3 rand.3 rc4.3 ripemd.3 rsa.3 sha.3 threads.3 ui.3 ui_compat.3 secure/lib/libssl Makefile secure/lib/libssl/man SSL_CIPHER_get_name.3 SSL_COMP_add_compression_method.3 SSL_CTX_add_extra_chain_cert.3 SSL_CTX_add_session.3 SSL_CTX_ctrl.3 SSL_CTX_flush_sessions.3 SSL_CTX_free.3 SSL_CTX_get_ex_new_index.3 SSL_CTX_get_verify_mode.3 SSL_CTX_load_verify_locations.3 SSL_CTX_new.3 SSL_CTX_sess_number.3 SSL_CTX_sess_set_cache_size.3 SSL_CTX_sess_set_get_cb.3 SSL_CTX_sessions.3 SSL_CTX_set_cert_store.3 SSL_CTX_set_cert_verify_callback.3 SSL_CTX_set_cipher_list.3 SSL_CTX_set_client_CA_list.3 SSL_CTX_set_client_cert_cb.3 SSL_CTX_set_default_passwd_cb.3 SSL_CTX_set_generate_session_id.3 SSL_CTX_set_info_callback.3 SSL_CTX_set_max_cert_list.3 SSL_CTX_set_mode.3 SSL_CTX_set_msg_callback.3 SSL_CTX_set_options.3 SSL_CTX_set_quiet_shutdown.3 SSL_CTX_set_session_cache_mode.3 SSL_CTX_set_session_id_context.3 SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3 SSL_CTX_set_tmp_dh_callback.3 SSL_CTX_set_tmp_rsa_callback.3 SSL_CTX_set_verify.3 SSL_CTX_use_certificate.3 SSL_SESSION_free.3 SSL_SESSION_get_ex_new_index.3 SSL_SESSION_get_time.3 SSL_accept.3 SSL_alert_type_string.3 SSL_clear.3 SSL_connect.3 SSL_do_handshake.3 SSL_free.3 SSL_get_SSL_CTX.3 SSL_get_ciphers.3 SSL_get_client_CA_list.3 SSL_get_current_cipher.3 SSL_get_default_timeout.3 SSL_get_error.3 SSL_get_ex_data_X509_STORE_CTX_idx.3 SSL_get_ex_new_index.3 SSL_get_fd.3 SSL_get_peer_cert_chain.3 SSL_get_peer_certificate.3 SSL_get_rbio.3 SSL_get_session.3 SSL_get_verify_result.3 SSL_get_version.3 SSL_library_init.3 SSL_load_client_CA_file.3 SSL_new.3 SSL_pending.3 SSL_read.3 SSL_rstate_string.3 SSL_session_reused.3 SSL_set_bio.3 SSL_set_connect_state.3 SSL_set_fd.3 SSL_set_session.3 SSL_set_shutdown.3 SSL_set_verify_result.3 SSL_shutdown.3 SSL_state_string.3 SSL_want.3 SSL_write.3 d2i_SSL_SESSION.3 ssl.3 secure/usr.bin/openssl Makefile secure/usr.bin/openssl/man CA.pl.1 asn1parse.1 ca.1 ciphers.1 crl.1 crl2pkcs7.1 dgst.1 dhparam.1 dsa.1 dsaparam.1 enc.1 gendsa.1 genrsa.1 nseq.1 ocsp.1 openssl.1 passwd.1 pkcs12.1 pkcs7.1 pkcs8.1 rand.1 req.1 rsa.1 rsautl.1 s_client.1 s_server.1 sess_id.1 smime.1 speed.1 spkac.1 verify.1 version.1 x509.1 gnu/usr.bin/man/manpath manpath.config Added files: secure/lib/libcrypto Makefile.man secure/lib/libssl Makefile.man secure/usr.bin/openssl Makefile.man Log: Install the OpenSSL man pages in /usr/share/openssl/man and remove the WANT_OPENSSL_MANPAGES knob. Revision Changes Path 1.304 +1 -0 src/etc/Makefile 1.271 +20 -0 src/etc/mtree/BSD.usr.dist 1.20 +1 -0 src/gnu/usr.bin/man/manpath/manpath.config 1.55 +7 -40 src/secure/lib/libcrypto/Makefile 1.33 +41 -6 src/secure/lib/libcrypto/Makefile.inc 1.1 +730 -0 src/secure/lib/libcrypto/Makefile.man (new) 1.2 +2 -2 src/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 1.2 +2 -2 src/secure/lib/libcrypto/man/ASN1_STRING_length.3 1.2 +2 -2 src/secure/lib/libcrypto/man/ASN1_STRING_new.3 1.2 +2 -2 src/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_ctrl.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_f_base64.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_f_buffer.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_f_cipher.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_f_md.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_f_null.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_f_ssl.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_find_type.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_push.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_read.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_accept.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_bio.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_connect.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_fd.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_file.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_mem.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_null.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_s_socket.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_set_callback.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BIO_should_retry.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_CTX_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_CTX_start.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_add.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_add_word.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_bn2bin.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_cmp.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_copy.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_generate_prime.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_mod_inverse.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_num_bytes.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_rand.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_set_bit.3 1.2 +2 -2 src/secure/lib/libcrypto/man/BN_swap.3 1.3 +2 -2 src/secure/lib/libcrypto/man/BN_zero.3 1.3 +2 -2 src/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DH_generate_key.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DH_generate_parameters.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DH_get_ex_new_index.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DH_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DH_set_method.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DH_size.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_SIG_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_do_sign.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_dup_DH.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_generate_key.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_generate_parameters.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_set_method.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_sign.3 1.3 +2 -2 src/secure/lib/libcrypto/man/DSA_size.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_GET_LIB.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_clear_error.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_error_string.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_get_error.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_load_strings.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_print_errors.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_put_error.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ERR_remove_state.3 1.2 +2 -2 src/secure/lib/libcrypto/man/EVP_BytesToKey.3 1.3 +2 -2 src/secure/lib/libcrypto/man/EVP_DigestInit.3 1.3 +2 -2 src/secure/lib/libcrypto/man/EVP_EncryptInit.3 1.3 +2 -2 src/secure/lib/libcrypto/man/EVP_OpenInit.3 1.2 +2 -2 src/secure/lib/libcrypto/man/EVP_PKEY_new.3 1.2 +2 -2 src/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 1.3 +2 -2 src/secure/lib/libcrypto/man/EVP_SealInit.3 1.3 +2 -2 src/secure/lib/libcrypto/man/EVP_SignInit.3 1.3 +2 -2 src/secure/lib/libcrypto/man/EVP_VerifyInit.3 1.2 +2 -2 src/secure/lib/libcrypto/man/OBJ_nid2obj.3 1.3 +2 -2 src/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 1.3 +2 -2 src/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 1.2 +2 -2 src/secure/lib/libcrypto/man/PKCS12_create.3 1.2 +2 -2 src/secure/lib/libcrypto/man/PKCS12_parse.3 1.2 +2 -2 src/secure/lib/libcrypto/man/PKCS7_decrypt.3 1.2 +2 -2 src/secure/lib/libcrypto/man/PKCS7_encrypt.3 1.2 +2 -2 src/secure/lib/libcrypto/man/PKCS7_sign.3 1.2 +2 -2 src/secure/lib/libcrypto/man/PKCS7_verify.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RAND_add.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RAND_bytes.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RAND_cleanup.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RAND_egd.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RAND_load_file.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RAND_set_rand_method.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_blinding_on.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_check_key.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_generate_key.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_print.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_private_encrypt.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_public_encrypt.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_set_method.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_sign.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 1.3 +2 -2 src/secure/lib/libcrypto/man/RSA_size.3 1.2 +2 -2 src/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 1.2 +2 -2 src/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 1.2 +2 -2 src/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 1.2 +2 -2 src/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 1.2 +2 -2 src/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 1.2 +2 -2 src/secure/lib/libcrypto/man/X509_NAME_print_ex.3 1.2 +2 -2 src/secure/lib/libcrypto/man/X509_new.3 1.3 +2 -2 src/secure/lib/libcrypto/man/bio.3 1.3 +2 -2 src/secure/lib/libcrypto/man/blowfish.3 1.3 +2 -2 src/secure/lib/libcrypto/man/bn.3 1.3 +2 -2 src/secure/lib/libcrypto/man/bn_internal.3 1.3 +2 -2 src/secure/lib/libcrypto/man/buffer.3 1.3 +2 -2 src/secure/lib/libcrypto/man/crypto.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 1.3 +2 -2 src/secure/lib/libcrypto/man/d2i_DHparams.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 1.3 +2 -2 src/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_X509.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_X509_CRL.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_X509_NAME.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_X509_REQ.3 1.2 +2 -2 src/secure/lib/libcrypto/man/d2i_X509_SIG.3 1.3 +2 -2 src/secure/lib/libcrypto/man/des.3 1.3 +2 -2 src/secure/lib/libcrypto/man/dh.3 1.3 +2 -2 src/secure/lib/libcrypto/man/dsa.3 1.2 +2 -2 src/secure/lib/libcrypto/man/engine.3 1.3 +2 -2 src/secure/lib/libcrypto/man/err.3 1.3 +2 -2 src/secure/lib/libcrypto/man/evp.3 1.3 +2 -2 src/secure/lib/libcrypto/man/hmac.3 1.3 +2 -2 src/secure/lib/libcrypto/man/lh_stats.3 1.3 +2 -2 src/secure/lib/libcrypto/man/lhash.3 1.3 +2 -2 src/secure/lib/libcrypto/man/md5.3 1.3 +2 -2 src/secure/lib/libcrypto/man/mdc2.3 1.2 +2 -2 src/secure/lib/libcrypto/man/pem.3 1.3 +2 -2 src/secure/lib/libcrypto/man/rand.3 1.3 +2 -2 src/secure/lib/libcrypto/man/rc4.3 1.3 +2 -2 src/secure/lib/libcrypto/man/ripemd.3 1.3 +2 -2 src/secure/lib/libcrypto/man/rsa.3 1.3 +2 -2 src/secure/lib/libcrypto/man/sha.3 1.3 +2 -2 src/secure/lib/libcrypto/man/threads.3 1.2 +2 -2 src/secure/lib/libcrypto/man/ui.3 1.2 +2 -2 src/secure/lib/libcrypto/man/ui_compat.3 1.18 +3 -33 src/secure/lib/libssl/Makefile 1.1 +206 -0 src/secure/lib/libssl/Makefile.man (new) 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CIPHER_get_name.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_add_session.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_ctrl.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_free.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_new.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_sess_number.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_sessions.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_mode.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_options.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_timeout.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_set_verify.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_CTX_use_certificate.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_SESSION_free.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_SESSION_get_time.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_accept.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_alert_type_string.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_clear.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_connect.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_do_handshake.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_free.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_SSL_CTX.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_ciphers.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_client_CA_list.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_current_cipher.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_default_timeout.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_error.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_ex_new_index.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_fd.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_peer_certificate.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_rbio.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_session.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_verify_result.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_get_version.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_library_init.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_load_client_CA_file.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_new.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_pending.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_read.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_rstate_string.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_session_reused.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_set_bio.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_set_connect_state.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_set_fd.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_set_session.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_set_shutdown.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_set_verify_result.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_shutdown.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_state_string.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_want.3 1.2 +2 -2 src/secure/lib/libssl/man/SSL_write.3 1.2 +2 -2 src/secure/lib/libssl/man/d2i_SSL_SESSION.3 1.2 +2 -2 src/secure/lib/libssl/man/ssl.3 1.22 +3 -15 src/secure/usr.bin/openssl/Makefile 1.1 +42 -0 src/secure/usr.bin/openssl/Makefile.man (new) 1.2 +3 -3 src/secure/usr.bin/openssl/man/CA.pl.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/asn1parse.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/ca.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/ciphers.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/crl.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/crl2pkcs7.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/dgst.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/dhparam.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/dsa.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/dsaparam.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/enc.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/gendsa.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/genrsa.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/nseq.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/ocsp.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/openssl.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/passwd.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/pkcs12.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/pkcs7.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/pkcs8.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/rand.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/req.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/rsa.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/rsautl.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/s_client.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/s_server.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/sess_id.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/smime.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/speed.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/spkac.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/verify.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/version.1 1.2 +3 -3 src/secure/usr.bin/openssl/man/x509.1 1.209 +0 -7 src/share/examples/etc/make.conf 1.68 +0 -10 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 12: 1: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F67037B401; Mon, 10 Feb 2003 12:01:02 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA2FC43F3F; Mon, 10 Feb 2003 12:01:00 -0800 (PST) (envelope-from nectar@celabo.org) Received: from opus.celabo.org (opus.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 6685F68; Mon, 10 Feb 2003 14:01:00 -0600 (CST) Received: by opus.celabo.org (Postfix, from userid 1001) id 4EBE15866; Mon, 10 Feb 2003 13:58:59 -0600 (CST) Date: Mon, 10 Feb 2003 13:58:59 -0600 From: "Jacques A. Vidrine" To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man5 make.conf.5 src/share/examples/etc make.conf src/etc Makefile src/etc/mtree BSD.usr.dist src/secure/lib/libcrypto Makefile Makefile.inc Makefile.man src/secure/lib/libcrypto/man ASN1_OBJECT_new.3 ASN1_STRING_length.3 ... Message-ID: <20030210195859.GA13383@opus.celabo.org> References: <200302101957.h1AJvuvA000784@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302101957.h1AJvuvA000784@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 10, 2003 at 11:57:56AM -0800, Jacques A. Vidrine wrote: > nectar 2003/02/10 11:57:56 PST > > Modified files: [...] > secure/lib/libcrypto/man ASN1_OBJECT_new.3 > ASN1_STRING_length.3 [... seemingly jillions of man pages ...] Sorry folks, I wish I would have thought to first remove those updates in the generated man pages which only involved the internal timestamp, but I did not. Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 12: 7:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B18EF37B401; Mon, 10 Feb 2003 12:07:18 -0800 (PST) Received: from kurush.osdn.org.ua (external.osdn.org.ua [212.40.34.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3E1243FBD; Mon, 10 Feb 2003 12:07:15 -0800 (PST) (envelope-from never@kurush.osdn.org.ua) Received: from kurush.osdn.org.ua (never@localhost [127.0.0.1]) by kurush.osdn.org.ua (8.12.6/8.12.6) with ESMTP id h1AK7AM9007796; Mon, 10 Feb 2003 22:07:11 +0200 (EET) (envelope-from never@kurush.osdn.org.ua) Received: (from never@localhost) by kurush.osdn.org.ua (8.12.6/8.12.6/Submit) id h1AK7AwE007795; Mon, 10 Feb 2003 22:07:10 +0200 (EET) Date: Mon, 10 Feb 2003 22:07:10 +0200 From: Alexandr Kovalenko To: Mike Barcroft Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/games/fortune/datfiles fortunes Message-ID: <20030210200709.GB832@nevermind.kiev.ua> References: <200302101734.h1AHYWbe048804@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200302101734.h1AHYWbe048804@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello, Mike Barcroft! On Mon, Feb 10, 2003 at 09:34:32AM -0800, you wrote: > mike 2003/02/10 09:34:32 PST > > Modified files: > games/fortune/datfiles fortunes > Log: > Immortalize a Robert Watson quote. Hm. Maybe also add this one: FreeBSD: putting the horse before the cart since 1992. -- Warner Losh -- NEVE-RIPE, will build world for food Ukrainian FreeBSD User Group http://uafug.org.ua/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 12:23:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DAEA37B401; Mon, 10 Feb 2003 12:23:44 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC19143F93; Mon, 10 Feb 2003 12:23:43 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B64AFAE28A; Mon, 10 Feb 2003 12:23:43 -0800 (PST) Date: Mon, 10 Feb 2003 12:23:43 -0800 From: Alfred Perlstein To: Alexey Zelkin Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210202343.GZ88781@elvis.mu.org> References: <200302100848.h1A8m4Fj054987@repoman.freebsd.org> <20030210120147.A25796@phantom.cris.net> <20030210105459.GU88781@elvis.mu.org> <20030210215031.A28553@phantom.cris.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030210215031.A28553@phantom.cris.net> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Alexey Zelkin [030210 11:44] wrote: > > > > I thought it was fine, I've done work on the pthreads library before. > > Dan is owning some uncommitted patches used to convert libc_r to using > *context() stuff, instead of longjmp()'s. Making uncoordinated changes > just may create unneeded problems, IMO. I'll take that into account, I've been meaning to pick up libpthread to fixup/finish signal delivery, I'll be sure to pass changes through him on that front. > > > > And last, that purpose of this functionality ? (I have seen a diff, > > > but it's interesting how these functions are supposed to be used?) > > > > This is to bring us a function that is required by: > > http://www.opengroup.org/onlinepubs/007904975/functions/pthread_attr_getstack.html > > Hmm.. Reading of -committers before morning coffee isn't good idea. > > Sorry Alfred. It's ok I should have mentioned that this was to bring us closer to standards in the commit message. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 12:53:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BAAC37B401; Mon, 10 Feb 2003 12:53:30 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B50143FE0; Mon, 10 Feb 2003 12:53:26 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <200302102053240020030rm5e>; Mon, 10 Feb 2003 20:53:25 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id MAA50100; Mon, 10 Feb 2003 12:53:23 -0800 (PST) Date: Mon, 10 Feb 2003 12:53:22 -0800 (PST) From: Julian Elischer To: Alfred Perlstein Cc: Alexey Zelkin , src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 In-Reply-To: <20030210202343.GZ88781@elvis.mu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003, Alfred Perlstein wrote: > * Alexey Zelkin [030210 11:44] wrote: > > > > > > I thought it was fine, I've done work on the pthreads library before. > > > > Dan is owning some uncommitted patches used to convert libc_r to using > > *context() stuff, instead of longjmp()'s. Making uncoordinated changes > > just may create unneeded problems, IMO. > > I'll take that into account, I've been meaning to pick up libpthread > to fixup/finish signal delivery, I'll be sure to pass changes through > him on that front. Alfred, if you want to work on libpthread you need to be on the mailing list. Mini and Dan are working on signals as we speak so you need to be in on the loop if you want to help.. > > > > > > > And last, that purpose of this functionality ? (I have seen a diff, > > > > but it's interesting how these functions are supposed to be used?) > > > > > > This is to bring us a function that is required by: > > > http://www.opengroup.org/onlinepubs/007904975/functions/pthread_attr_getstack.html > > > > Hmm.. Reading of -committers before morning coffee isn't good idea. > > > > Sorry Alfred. > > It's ok I should have mentioned that this was to bring us closer > to standards in the commit message. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 12:56:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53FDF37B401; Mon, 10 Feb 2003 12:56:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7D1D43F3F; Mon, 10 Feb 2003 12:56:36 -0800 (PST) (envelope-from se@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AKuabv022832; Mon, 10 Feb 2003 12:56:36 -0800 (PST) (envelope-from se@repoman.freebsd.org) Received: (from se@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AKuajU022831; Mon, 10 Feb 2003 12:56:36 -0800 (PST) Message-Id: <200302102056.h1AKuajU022831@repoman.freebsd.org> From: Stefan Esser Date: Mon, 10 Feb 2003 12:56:36 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG se 2003/02/10 12:56:36 PST Modified files: . access access.master access.ports Log: I'm a src and ports committer ... Revision Changes Path 1.552 +1 -0 CVSROOT/access 1.580 +0 -1 CVSROOT/access.master 1.508 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 13:14:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0C0D37B401; Mon, 10 Feb 2003 13:14:46 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CBA443F93; Mon, 10 Feb 2003 13:14:46 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 01B81AE03F; Mon, 10 Feb 2003 13:14:45 -0800 (PST) Date: Mon, 10 Feb 2003 13:14:45 -0800 From: Alfred Perlstein To: Julian Elischer Cc: Alexey Zelkin , src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210211445.GB88781@elvis.mu.org> References: <20030210202343.GZ88781@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Julian Elischer [030210 12:53] wrote: > > Alfred, if you want to work on libpthread you need to be on the > mailing list. Mini and Dan are working on signals as we speak > so you need to be in on the loop if you want to help.. Ok... which mailing list? I didn't realize that people had picked up the ball again on this. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 13:43:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6614837B401; Mon, 10 Feb 2003 13:43:39 -0800 (PST) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFE7943FBD; Mon, 10 Feb 2003 13:43:37 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc03.attbi.com (sccrmhc03) with ESMTP id <2003021021433600300jv73be>; Mon, 10 Feb 2003 21:43:37 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id NAA50454; Mon, 10 Feb 2003 13:43:35 -0800 (PST) Date: Mon, 10 Feb 2003 13:43:33 -0800 (PST) From: Julian Elischer To: Alfred Perlstein Cc: Alexey Zelkin , src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 In-Reply-To: <20030210211445.GB88781@elvis.mu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It's a "by invitation" list.. I just "invited" you :-) (becasue that's what software I happen to have on my interjet.. terry might be able to make it run differently but I haven't the knowledge to do so). On Mon, 10 Feb 2003, Alfred Perlstein wrote: > * Julian Elischer [030210 12:53] wrote: > > > > Alfred, if you want to work on libpthread you need to be on the > > mailing list. Mini and Dan are working on signals as we speak > > so you need to be in on the loop if you want to help.. > > Ok... which mailing list? I didn't realize that people had picked up > the ball again on this. > > -- > -Alfred Perlstein [alfred@freebsd.org] > 'Instead of asking why a piece of software is using "1970s technology," > start asking why software is ignoring 30 years of accumulated wisdom.' > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 14: 1:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE7237B401; Mon, 10 Feb 2003 14:01:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DA1243FBD; Mon, 10 Feb 2003 14:01:35 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AM1Ybv046254; Mon, 10 Feb 2003 14:01:34 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AM1Y5u046248; Mon, 10 Feb 2003 14:01:34 -0800 (PST) Message-Id: <200302102201.h1AM1Y5u046248@repoman.freebsd.org> From: Jeffrey Hsu Date: Mon, 10 Feb 2003 14:01:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in_rmx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/10 14:01:34 PST Modified files: sys/netinet in_rmx.c Log: Get cosmetic changes out of the way before I add routing table SMP locks. Revision Changes Path 1.44 +47 -56 src/sys/netinet/in_rmx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 14:34: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACB8437B401; Mon, 10 Feb 2003 14:34:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B60843FDD; Mon, 10 Feb 2003 14:34:00 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AMY0bv059071; Mon, 10 Feb 2003 14:34:00 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AMY0ZB059070; Mon, 10 Feb 2003 14:34:00 -0800 (PST) Message-Id: <200302102234.h1AMY0ZB059070@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 10 Feb 2003 14:34:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/10 14:34:00 PST Modified files: sys/kern vfs_bio.c Log: - Unlock the nblock after the loop in bwillwrite(). Revision Changes Path 1.366 +1 -1 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 14:47:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F93637B401; Mon, 10 Feb 2003 14:47:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ADE243FF2; Mon, 10 Feb 2003 14:47:35 -0800 (PST) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1AMlYbv062814; Mon, 10 Feb 2003 14:47:34 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1AMlYPZ062813; Mon, 10 Feb 2003 14:47:34 -0800 (PST) Message-Id: <200302102247.h1AMlYPZ062813@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 10 Feb 2003 14:47:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2003/02/10 14:47:34 PST Modified files: sys/kern vfs_bio.c Log: - Add a comment about a race that will happen without Giant. Revision Changes Path 1.367 +1 -0 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 15: 5:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF33A37B401; Mon, 10 Feb 2003 15:05:36 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1256943F93; Mon, 10 Feb 2003 15:05:36 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id EDAAA2A8C1; Mon, 10 Feb 2003 15:05:35 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Gregory Neil Shapiro Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/contrib/sendmail - Imported sources In-Reply-To: <200302101641.h1AGf6FR028802@repoman.freebsd.org> Date: Mon, 10 Feb 2003 15:05:35 -0800 From: Peter Wemm Message-Id: <20030210230535.EDAAA2A8C1@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Gregory Neil Shapiro wrote: > gshapiro 2003/02/10 08:41:06 PST > > src/contrib/sendmail - Imported sources > Update of /home/ncvs/src/contrib/sendmail > In directory repoman.freebsd.org:/tmp/cvs-serv27338 > > Log Message: > Import proto.m4 fix from vendor repository. This fixes a cf building > bug if LOCAL_RELAY and/or MAIL_HUB are used in an mc file. Does this fix this problem? peter@ref5[3:03pm]/usr/src/etc/sendmail-32# tail /usr/src/world.log ===> usr.sbin/stallion/stlload ===> usr.sbin/stallion/stlstats ===> usr.sbin/wlconfig ===> usr.sbin/boot0cfg ===> usr.sbin/keyserv ===> etc ===> etc/sendmail *** ERROR: FEATURE() should be before MAILER() 6962.348u 1690.232s 4:10:21.91 57.5% -2054+2345k 34499+8119io 13197pf+0w This is using freefall.mc. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Mon Feb 10 15:10:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C274D37B401; Mon, 10 Feb 2003 15:10:11 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69F0443F93; Mon, 10 Feb 2003 15:10:10 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1AN9X1o012342; Mon, 10 Feb 2003 15:09:33 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1AN9XNn001187; Mon, 10 Feb 2003 15:09:33 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.6/8.12.6/Submit) id h1AN9XTB001186; Mon, 10 Feb 2003 15:09:33 -0800 (PST) (envelope-from marcel) Date: Mon, 10 Feb 2003 15:09:33 -0800 From: Marcel Moolenaar To: Julian Elischer Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210230933.GB1094@athlon.pn.xcllnt.net> References: <20030210211445.GB88781@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 10, 2003 at 01:43:33PM -0800, Julian Elischer wrote: > It's a "by invitation" list.. I just "invited" you :-) > > (becasue that's what software I happen to have on my interjet.. > terry might be able to make it run differently but I haven't > the knowledge to do so). Any reason why it isn't a FreeBSD (hosted) mailing list so that people can keep track of what's going on? -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 15:13:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C53AF37B401; Mon, 10 Feb 2003 15:13:24 -0800 (PST) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id C536543F85; Mon, 10 Feb 2003 15:13:23 -0800 (PST) (envelope-from eischen@pcnet1.pcnet.com) Received: from localhost (eischen@localhost) by mail.pcnet.com (8.12.3/8.12.1) with ESMTP id h1ANDI4S008976; Mon, 10 Feb 2003 18:13:18 -0500 (EST) Date: Mon, 10 Feb 2003 18:13:18 -0500 (EST) From: Daniel Eischen To: Marcel Moolenaar Cc: Julian Elischer , src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 In-Reply-To: <20030210230933.GB1094@athlon.pn.xcllnt.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003, Marcel Moolenaar wrote: > On Mon, Feb 10, 2003 at 01:43:33PM -0800, Julian Elischer wrote: > > It's a "by invitation" list.. I just "invited" you :-) > > > > (becasue that's what software I happen to have on my interjet.. > > terry might be able to make it run differently but I haven't > > the knowledge to do so). > > Any reason why it isn't a FreeBSD (hosted) mailing list so that people > can keep track of what's going on? Shhhhh. We want to keep out the riff-raff :-) -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 15:15:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BF1137B406; Mon, 10 Feb 2003 15:15:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D05BB43F3F; Mon, 10 Feb 2003 15:15:07 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ANF7bv073576; Mon, 10 Feb 2003 15:15:07 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ANF7t4073575; Mon, 10 Feb 2003 15:15:07 -0800 (PST) Message-Id: <200302102315.h1ANF7t4073575@repoman.freebsd.org> From: Alexander Kabaev Date: Mon, 10 Feb 2003 15:15:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf rtld.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/10 15:15:07 PST Modified files: libexec/rtld-elf rtld.c Log: When unloading dependencies make sure they are removed from all the associated lists: remove RTLD_GLOBAL objects from global objects list; remove the parent object from dldags list of its children. Previosly we were doing that only to the top-level object OF the DAG being unloaded and all its dependencies were ignored, leading to mysterious crashes later. Submitted by: peter (partially) Revision Changes Path 1.72 +10 -9 src/libexec/rtld-elf/rtld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 15:18:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12CD737B406; Mon, 10 Feb 2003 15:18:18 -0800 (PST) Received: from horsey.gshapiro.net (horsey.gshapiro.net [64.105.95.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15FC243FE0; Mon, 10 Feb 2003 15:18:16 -0800 (PST) (envelope-from gshapiro@gshapiro.net) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.8/8.12.8) with ESMTP id h1ANIFCe020453 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Mon, 10 Feb 2003 15:18:15 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.8/8.12.8/Submit) id h1ANIFkb020450; Mon, 10 Feb 2003 15:18:15 -0800 (PST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15944.13110.925117.267140@horsey.gshapiro.net> Date: Mon, 10 Feb 2003 15:18:14 -0800 From: Gregory Neil Shapiro To: Peter Wemm Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, legacy-committers@FreeBSD.org Subject: Re: cvs commit: src/contrib/sendmail - Imported sources In-Reply-To: <20030210230535.EDAAA2A8C1@canning.wemm.org> References: <200302101641.h1AGf6FR028802@repoman.freebsd.org> <20030210230535.EDAAA2A8C1@canning.wemm.org> X-Mailer: VM 7.07 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter> Does this fix this problem? peter> ===> etc/sendmail peter> *** ERROR: FEATURE() should be before MAILER() Yes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 15:27:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7E4637B405; Mon, 10 Feb 2003 15:27:55 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4319043F75; Mon, 10 Feb 2003 15:27:54 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1ANRL1o012454; Mon, 10 Feb 2003 15:27:21 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1ANRLNn011077; Mon, 10 Feb 2003 15:27:21 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.6/8.12.6/Submit) id h1ANRL7A011076; Mon, 10 Feb 2003 15:27:21 -0800 (PST) (envelope-from marcel) Date: Mon, 10 Feb 2003 15:27:21 -0800 From: Marcel Moolenaar To: Daniel Eischen Cc: Julian Elischer , src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210232721.GA11072@athlon.pn.xcllnt.net> References: <20030210230933.GB1094@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 10, 2003 at 06:13:18PM -0500, Daniel Eischen wrote: > On Mon, 10 Feb 2003, Marcel Moolenaar wrote: > > > On Mon, Feb 10, 2003 at 01:43:33PM -0800, Julian Elischer wrote: > > > It's a "by invitation" list.. I just "invited" you :-) > > > > > > (becasue that's what software I happen to have on my interjet.. > > > terry might be able to make it run differently but I haven't > > > the knowledge to do so). > > > > Any reason why it isn't a FreeBSD (hosted) mailing list so that people > > can keep track of what's going on? > > Shhhhh. We want to keep out the riff-raff :-) Excellent reason. Carry on... :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 15:37:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B19437B401; Mon, 10 Feb 2003 15:37:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF44643F75; Mon, 10 Feb 2003 15:37:45 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ANbjbv080979; Mon, 10 Feb 2003 15:37:45 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ANbjS2080978; Mon, 10 Feb 2003 15:37:45 -0800 (PST) Message-Id: <200302102337.h1ANbjS2080978@repoman.freebsd.org> From: Peter Wemm Date: Mon, 10 Feb 2003 15:37:45 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/10 15:37:45 PST Modified files: . access.master Log: turn off devnull redirection for reg now Revision Changes Path 1.581 +1 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 16:15: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D944D37B401; Mon, 10 Feb 2003 16:15:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A64143F93; Mon, 10 Feb 2003 16:15:02 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B0F2bv095323; Mon, 10 Feb 2003 16:15:02 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B0F24R095322; Mon, 10 Feb 2003 16:15:02 -0800 (PST) Message-Id: <200302110015.h1B0F24R095322@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Mon, 10 Feb 2003 16:15:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs uvscom.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/10 16:15:01 PST Modified files: sys/dev/usb usbdevs uvscom.c Log: Add support SUNTAC U-Cable TypeD2 (DS96L) PR: kern/47547 Submitted by: Kazu TAKAMUNE Revision Changes Path 1.112 +1 -0 src/sys/dev/usb/usbdevs 1.12 +2 -0 src/sys/dev/usb/uvscom.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 16:16:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB8D637B401; Mon, 10 Feb 2003 16:16:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E81C43F3F; Mon, 10 Feb 2003 16:16:57 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B0Gvbv095449; Mon, 10 Feb 2003 16:16:57 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B0GvnZ095448; Mon, 10 Feb 2003 16:16:57 -0800 (PST) Message-Id: <200302110016.h1B0GvnZ095448@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Mon, 10 Feb 2003 16:16:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/10 16:16:57 PST Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Regen Revision Changes Path 1.121 +2 -1 src/sys/dev/usb/usbdevs.h 1.121 +7 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 17: 4:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B84C537B401; Mon, 10 Feb 2003 17:04:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCEE43F85; Mon, 10 Feb 2003 17:04:53 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B14rbv013493; Mon, 10 Feb 2003 17:04:53 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B14r5t013492; Mon, 10 Feb 2003 17:04:53 -0800 (PST) Message-Id: <200302110104.h1B14r5t013492@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 17:04:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/manpath manpath.config X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 17:04:53 PST Modified files: gnu/usr.bin/man/manpath manpath.config Log: Add /usr/local/man as OPTIONAL_MANPATH Revision Changes Path 1.21 +1 -0 src/gnu/usr.bin/man/manpath/manpath.config To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 17: 8:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CA9F37B401; Mon, 10 Feb 2003 17:08:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10FBE43F3F; Mon, 10 Feb 2003 17:08:52 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B18pbv013644; Mon, 10 Feb 2003 17:08:51 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B18pSt013643; Mon, 10 Feb 2003 17:08:51 -0800 (PST) Message-Id: <200302110108.h1B18pSt013643@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 17:08:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 17:08:51 PST Modified files: etc Makefile Log: Apply man.alias to /usr/share/openssl/man too Revision Changes Path 1.305 +8 -0 src/etc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 17:42:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ECE937B401; Mon, 10 Feb 2003 17:42:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4289C43FAF; Mon, 10 Feb 2003 17:42:20 -0800 (PST) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B1gKbv027439; Mon, 10 Feb 2003 17:42:20 -0800 (PST) (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B1gJS2027438; Mon, 10 Feb 2003 17:42:19 -0800 (PST) Message-Id: <200302110142.h1B1gJS2027438@repoman.freebsd.org> From: Greg Lehey Date: Mon, 10 Feb 2003 17:42:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar/calendars calendar.birthday X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grog 2003/02/10 17:42:19 PST Modified files: usr.bin/calendar/calendars calendar.birthday Log: Get Fox Talbot's birth year right. How could anybody have expected photography in the 15th century? Revision Changes Path 1.20 +1 -1 src/usr.bin/calendar/calendars/calendar.birthday To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 17:56:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 038C137B401; Mon, 10 Feb 2003 17:56:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B94843F93; Mon, 10 Feb 2003 17:56:40 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B1uebv031621; Mon, 10 Feb 2003 17:56:40 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B1ueEU031620; Mon, 10 Feb 2003 17:56:40 -0800 (PST) Message-Id: <200302110156.h1B1ueEU031620@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 17:56:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/keyserv keyserv.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 17:56:40 PST Modified files: usr.sbin/keyserv keyserv.c Log: Use sranddev()/srandomdev() for FreeBSD Revision Changes Path 1.10 +10 -2 src/usr.sbin/keyserv/keyserv.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18: 9:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7405437B401; Mon, 10 Feb 2003 18:09:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 040CA43F85; Mon, 10 Feb 2003 18:09:06 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B295bv035313; Mon, 10 Feb 2003 18:09:05 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B295Ln035312; Mon, 10 Feb 2003 18:09:05 -0800 (PST) Message-Id: <200302110209.h1B295Ln035312@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 18:09:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/route6d route6d.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 18:09:05 PST Modified files: usr.sbin/route6d route6d.c Log: Add missing srand() (sranddev() for FreeBSD) Revision Changes Path 1.11 +5 -0 src/usr.sbin/route6d/route6d.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:17:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F9CB37B401; Mon, 10 Feb 2003 18:17:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E738C43F3F; Mon, 10 Feb 2003 18:17:11 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2HBbv038872; Mon, 10 Feb 2003 18:17:11 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2HBdl038871; Mon, 10 Feb 2003 18:17:11 -0800 (PST) Message-Id: <200302110217.h1B2HBdl038871@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 18:17:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 18:17:11 PST Modified files: usr.sbin/pw pw_user.c Log: There is no sense to use random random() and arc4random() in the same program. Switch to arc4random() completely. Revision Changes Path 1.54 +1 -2 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:21:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8831A37B401; Mon, 10 Feb 2003 18:21:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D73243F75; Mon, 10 Feb 2003 18:21:42 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2Lfbv041245; Mon, 10 Feb 2003 18:21:41 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2LfA9041243; Mon, 10 Feb 2003 18:21:41 -0800 (PST) Message-Id: <200302110221.h1B2LfA9041243@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 18:21:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rtadvd rtadvd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 18:21:41 PST Modified files: usr.sbin/rtadvd rtadvd.c Log: Use srandomdev() for FreeBSD Revision Changes Path 1.10 +4 -0 src/usr.sbin/rtadvd/rtadvd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:22:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CD3E37B401; Mon, 10 Feb 2003 18:22:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BB0543FBF; Mon, 10 Feb 2003 18:22:08 -0800 (PST) (envelope-from foxfair@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2M8bv041811; Mon, 10 Feb 2003 18:22:08 -0800 (PST) (envelope-from foxfair@repoman.freebsd.org) Received: (from foxfair@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2M7h5041810; Mon, 10 Feb 2003 18:22:07 -0800 (PST) Message-Id: <200302110222.h1B2M7h5041810@repoman.freebsd.org> From: Foxfair Hu Date: Mon, 10 Feb 2003 18:22:07 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.doc access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG foxfair 2003/02/10 18:22:07 PST Modified files: . access.doc access.master access.ports Log: Join into ports, doc lists. Revision Changes Path 1.461 +1 -0 CVSROOT/access.doc 1.582 +0 -1 CVSROOT/access.master 1.509 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:25: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1D7637B401; Mon, 10 Feb 2003 18:25:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F0FE43F93; Mon, 10 Feb 2003 18:25:01 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2P1bv042490; Mon, 10 Feb 2003 18:25:01 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2P1K5042489; Mon, 10 Feb 2003 18:25:01 -0800 (PST) Message-Id: <200302110225.h1B2P1K5042489@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 18:25:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rtsold Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 18:25:01 PST Modified files: usr.sbin/rtsold Makefile Log: Add -DHAVE_ARC4RANDOM to CFLAGS Revision Changes Path 1.8 +2 -2 src/usr.sbin/rtsold/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:31:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AB6637B401; Mon, 10 Feb 2003 18:31:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A45D143F3F; Mon, 10 Feb 2003 18:31:53 -0800 (PST) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2Vrbv045277; Mon, 10 Feb 2003 18:31:53 -0800 (PST) (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2Vr9i045273; Mon, 10 Feb 2003 18:31:53 -0800 (PST) Message-Id: <200302110231.h1B2Vr9i045273@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 10 Feb 2003 18:31:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/routed main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2003/02/10 18:31:53 PST Modified files: sbin/routed main.c Log: Use srandomdev() for FreeBSD Revision Changes Path 1.15 +6 -2 src/sbin/routed/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:35:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1162C37B401; Mon, 10 Feb 2003 18:35:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A55F843FB1; Mon, 10 Feb 2003 18:35:22 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2ZMbv046193; Mon, 10 Feb 2003 18:35:22 -0800 (PST) (envelope-from nsayer@repoman.freebsd.org) Received: (from nsayer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2ZMpT046192; Mon, 10 Feb 2003 18:35:22 -0800 (PST) Message-Id: <200302110235.h1B2ZMpT046192@repoman.freebsd.org> From: Nick Sayer Date: Mon, 10 Feb 2003 18:35:22 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2003/02/10 18:35:22 PST Modified files: . access Log: Adding myself to the src committers. Hope this is the right thing to do. Revision Changes Path 1.553 +1 -0 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:36:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABE8D37B401; Mon, 10 Feb 2003 18:36:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 497A443F93; Mon, 10 Feb 2003 18:36:15 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2aEbv046235; Mon, 10 Feb 2003 18:36:14 -0800 (PST) (envelope-from nsayer@repoman.freebsd.org) Received: (from nsayer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2aExi046234; Mon, 10 Feb 2003 18:36:14 -0800 (PST) Message-Id: <200302110236.h1B2aExi046234@repoman.freebsd.org> From: Nick Sayer Date: Mon, 10 Feb 2003 18:36:14 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2003/02/10 18:36:14 PST Modified files: . access.ports Log: I'm also a ports committer. Hope I'm doing this right. Revision Changes Path 1.510 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 18:37:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 224C037B401; Mon, 10 Feb 2003 18:37:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73F4944008; Mon, 10 Feb 2003 18:37:22 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B2bLbv046292; Mon, 10 Feb 2003 18:37:21 -0800 (PST) (envelope-from nsayer@repoman.freebsd.org) Received: (from nsayer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B2bLn6046291; Mon, 10 Feb 2003 18:37:21 -0800 (PST) Message-Id: <200302110237.h1B2bLn6046291@repoman.freebsd.org> From: Nick Sayer Date: Mon, 10 Feb 2003 18:37:21 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2003/02/10 18:37:21 PST Modified files: . access.master Log: Remove myself from the master list. Hope this is the right thing to do. Revision Changes Path 1.583 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 19: 6:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E42CF37B401; Mon, 10 Feb 2003 19:06:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99DBE43F75; Mon, 10 Feb 2003 19:06:46 -0800 (PST) (envelope-from jmallett@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B36kbv057100; Mon, 10 Feb 2003 19:06:46 -0800 (PST) (envelope-from jmallett@repoman.freebsd.org) Received: (from jmallett@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B36k0p057099; Mon, 10 Feb 2003 19:06:46 -0800 (PST) Message-Id: <200302110306.h1B36k0p057099@repoman.freebsd.org> From: Juli Mallett Date: Mon, 10 Feb 2003 19:06:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett 2003/02/10 19:06:46 PST Modified files: sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test Log: Convert newfs to libufs (really). Solves one real issue with previous version of such. Differences in filesystems generated were found to be from 1) sbwrite with the "all" parameter 2) removal of writecache. The sbwrite call was made to perform as the original version, and otherwise this was checked against a version of newfs with the write cache removed. Revision Changes Path 1.22 +2 -0 src/sbin/newfs/Makefile 1.71 +18 -98 src/sbin/newfs/mkfs.c 1.70 +15 -11 src/sbin/newfs/newfs.c 1.12 +2 -1 src/sbin/newfs/newfs.h 1.2 +6 -6 src/sbin/newfs/ref.test To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 19:32:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3D7C37B401; Mon, 10 Feb 2003 19:32:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 462DA43FA3; Mon, 10 Feb 2003 19:32:49 -0800 (PST) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B3Wnbv067723; Mon, 10 Feb 2003 19:32:49 -0800 (PST) (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B3WmXC067722; Mon, 10 Feb 2003 19:32:48 -0800 (PST) Message-Id: <200302110332.h1B3WmXC067722@repoman.freebsd.org> From: Doug Ambrisko Date: Mon, 10 Feb 2003 19:32:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/an if_an.c if_an_pci.c if_anreg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ambrisko 2003/02/10 19:32:48 PST Modified files: (Branch: RELENG_4) sys/dev/an if_an.c if_an_pci.c if_anreg.h Log: MFC - Suspend/Resume support for MPI-350 - Better timing for MPI-350 - Cache temp. keys in driver to re-load them after a suspend/resume cycle. Tested by: Peter Radcliffe Revision Changes Path 1.2.2.13 +94 -47 src/sys/dev/an/if_an.c 1.2.2.8 +20 -0 src/sys/dev/an/if_an_pci.c 1.1.2.8 +5 -5 src/sys/dev/an/if_anreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 19:45:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6597B37B401; Mon, 10 Feb 2003 19:45:53 -0800 (PST) Received: from espresso.q9media.com (espresso.q9media.com [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D2643FA3; Mon, 10 Feb 2003 19:45:52 -0800 (PST) (envelope-from mike@espresso.q9media.com) Received: by espresso.q9media.com (Postfix, from userid 1002) id 8455F9C5B; Mon, 10 Feb 2003 22:33:48 -0500 (EST) Date: Mon, 10 Feb 2003 22:33:48 -0500 From: Mike Barcroft To: Daniel Eischen Cc: Marcel Moolenaar , Julian Elischer , src-committers@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Message-ID: <20030210223348.F40864@espresso.q9media.com> References: <20030210230933.GB1094@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from eischen@pcnet1.pcnet.com on Mon, Feb 10, 2003 at 06:13:18PM -0500 Organization: The FreeBSD Project Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Daniel Eischen writes: > On Mon, 10 Feb 2003, Marcel Moolenaar wrote: > > > On Mon, Feb 10, 2003 at 01:43:33PM -0800, Julian Elischer wrote: > > > It's a "by invitation" list.. I just "invited" you :-) > > > > > > (becasue that's what software I happen to have on my interjet.. > > > terry might be able to make it run differently but I haven't > > > the knowledge to do so). > > > > Any reason why it isn't a FreeBSD (hosted) mailing list so that people > > can keep track of what's going on? > > Shhhhh. We want to keep out the riff-raff :-) You're welcome to use the -standards list to discuss pthreads. The signal to noise ratio is quite good and there's language-lawyers galore. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 19:57:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 068DA37B401; Mon, 10 Feb 2003 19:57:12 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4462543FA3; Mon, 10 Feb 2003 19:57:11 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 22D9C2A8B4; Mon, 10 Feb 2003 19:57:11 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Juli Mallett Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test In-Reply-To: <200302110306.h1B36k0p057099@repoman.freebsd.org> Date: Mon, 10 Feb 2003 19:57:11 -0800 From: Peter Wemm Message-Id: <20030211035711.22D9C2A8B4@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Juli Mallett wrote: > jmallett 2003/02/10 19:06:46 PST > > Modified files: > sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test > Log: > Convert newfs to libufs (really). Solves one real issue with previous > version of such. Differences in filesystems generated were found to be > from 1) sbwrite with the "all" parameter 2) removal of writecache. The > sbwrite call was made to perform as the original version, and otherwise > this was checked against a version of newfs with the write cache removed. Umm, I object! This is a massive performance loss on disks without track write buffering (eg: many raid systems).. While it isn't so bad for ufs2 newfs, it is a Big Deal for ufs1 for interchangeability. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Mon Feb 10 20: 4:25 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id 4738837B401; Mon, 10 Feb 2003 20:04:23 -0800 (PST) Date: Mon, 10 Feb 2003 22:04:23 -0600 From: Juli Mallett To: Peter Wemm Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test Message-ID: <20030210220423.A36674@FreeBSD.org> References: <200302110306.h1B36k0p057099@repoman.freebsd.org> <20030211035711.22D9C2A8B4@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030211035711.22D9C2A8B4@canning.wemm.org>; from peter@wemm.org on Mon, Feb 10, 2003 at 07:57:11PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: Peter Wemm [ Data: 2003-02-10 ] [ Subjecte: Re: cvs commit: src/sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test ] > Juli Mallett wrote: > > jmallett 2003/02/10 19:06:46 PST > > > > Modified files: > > sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test > > Log: > > Convert newfs to libufs (really). Solves one real issue with previous > > version of such. Differences in filesystems generated were found to be > > from 1) sbwrite with the "all" parameter 2) removal of writecache. The > > sbwrite call was made to perform as the original version, and otherwise > > this was checked against a version of newfs with the write cache removed. > > Umm, I object! This is a massive performance loss on disks without track > write buffering (eg: many raid systems).. While it isn't so bad for ufs2 > newfs, it is a Big Deal for ufs1 for interchangeability. OK. I was kind of hoping to put a general write cache (and since we do reads, a general buffer cache, in a sense) into libufs, but I suppose I could just put back the wc stuff, and avoid calling into libufs for anything other than bread/bwrite. Which would you prefer? Do you know of anything other than newfs where it matters? Thanx, juli. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 21:31:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAD4637B401; Mon, 10 Feb 2003 21:31:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F87E43FAF; Mon, 10 Feb 2003 21:31:36 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B5Vabv010298; Mon, 10 Feb 2003 21:31:36 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B5VaVG010291; Mon, 10 Feb 2003 21:31:36 -0800 (PST) Message-Id: <200302110531.h1B5VaVG010291@repoman.freebsd.org> From: Warner Losh Date: Mon, 10 Feb 2003 21:31:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/10 21:31:35 PST Modified files: sys/dev/cardbus cardbus.c Log: Don't turn off the power of cards when new drivers are added unconditionally. kldloading a cardbus driver was shooting down other attached devices because most drivers assume that one cannot power-cycle cards w/o the driver knowning about it. Submitted by: simokawa-san Revision Changes Path 1.31 +13 -19 src/sys/dev/cardbus/cardbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 22: 5: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ECFA37B401; Mon, 10 Feb 2003 22:05:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C833043F93; Mon, 10 Feb 2003 22:05:00 -0800 (PST) (envelope-from nsayer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B650bv022621; Mon, 10 Feb 2003 22:05:00 -0800 (PST) (envelope-from nsayer@repoman.freebsd.org) Received: (from nsayer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B650Il022620; Mon, 10 Feb 2003 22:05:00 -0800 (PST) Message-Id: <200302110605.h1B650Il022620@repoman.freebsd.org> From: Nick Sayer Date: Mon, 10 Feb 2003 22:05:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys gettimeofday.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsayer 2003/02/10 22:05:00 PST Modified files: (Branch: RELENG_4) lib/libc/sys gettimeofday.2 Log: MFC, v1.20 PR: kern/33904 Revision Changes Path 1.9.2.9 +3 -3 src/lib/libc/sys/gettimeofday.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 22:36:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3402037B401; Mon, 10 Feb 2003 22:36:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE5A143FA3; Mon, 10 Feb 2003 22:36:27 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B6aRbv033429; Mon, 10 Feb 2003 22:36:27 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B6aRnR033428; Mon, 10 Feb 2003 22:36:27 -0800 (PST) Message-Id: <200302110636.h1B6aRnR033428@repoman.freebsd.org> From: Scott Long Date: Mon, 10 Feb 2003 22:36:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mly mly.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2003/02/10 22:36:27 PST Modified files: sys/dev/mly mly.c Log: Terminate 'e' event messages with a newline. PR: 33202 Revision Changes Path 1.21 +1 -0 src/sys/dev/mly/mly.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 23:20:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C42C37B401; Mon, 10 Feb 2003 23:20:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0088E43F93; Mon, 10 Feb 2003 23:20:53 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B7Kqbv048986; Mon, 10 Feb 2003 23:20:52 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B7KqnD048985; Mon, 10 Feb 2003 23:20:52 -0800 (PST) Message-Id: <200302110720.h1B7KqnD048985@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Feb 2003 23:20:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/10 23:20:52 PST Modified files: sys/kern kern_descrip.c Log: Don't lock FILEDESC under PROC. The locking here needs to be revisited, but this ought to get rid of the LOR messages that people are complaining about for now. I imagine either I or someone else interested with smp will eventually clear this up. Revision Changes Path 1.185 +1 -2 src/sys/kern/kern_descrip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 23:28:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 640F237B401; Mon, 10 Feb 2003 23:28:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01A6F43F75; Mon, 10 Feb 2003 23:28:29 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B7SSbv051618; Mon, 10 Feb 2003 23:28:28 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B7SSAE051617; Mon, 10 Feb 2003 23:28:28 -0800 (PST) Message-Id: <200302110728.h1B7SSAE051617@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Feb 2003 23:28:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread Makefile.inc src/lib/libpthread/thread Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/10 23:28:28 PST Modified files: lib/libc_r/uthread Makefile.inc lib/libpthread/thread Makefile.inc Log: Actually link in the attr_{set,get}stack. Revision Changes Path 1.35 +2 -0 src/lib/libc_r/uthread/Makefile.inc 1.36 +2 -0 src/lib/libpthread/thread/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 23:29: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD1A737B401; Mon, 10 Feb 2003 23:29:00 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3185043F75; Mon, 10 Feb 2003 23:29:00 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id F178FAE2AE; Mon, 10 Feb 2003 23:28:59 -0800 (PST) Date: Mon, 10 Feb 2003 23:28:59 -0800 From: Alfred Perlstein To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc_r/uthread Makefile.inc src/lib/libpthread/thread Makefile.inc Message-ID: <20030211072859.GK88781@elvis.mu.org> References: <200302110728.h1B7SSAE051617@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302110728.h1B7SSAE051617@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Alfred Perlstein [030210 23:28] wrote: > alfred 2003/02/10 23:28:28 PST > > Modified files: > lib/libc_r/uthread Makefile.inc > lib/libpthread/thread Makefile.inc > Log: > Actually link in the attr_{set,get}stack. Uh, with so many people watching what I do I'm suprised no one actually caught this. :( -- -Alfred Perlstein [alfred@freebsd.org] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 23:29:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7AC637B401; Mon, 10 Feb 2003 23:29:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C45043F85; Mon, 10 Feb 2003 23:29:14 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B7TEbv051652; Mon, 10 Feb 2003 23:29:14 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B7TE1D051651; Mon, 10 Feb 2003 23:29:14 -0800 (PST) Message-Id: <200302110729.h1B7TE1D051651@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 10 Feb 2003 23:29:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/boot98cfg boot98cfg.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2003/02/10 23:29:14 PST Modified files: usr.sbin/boot98cfg boot98cfg.c Log: Use DIOCGPC98 ioctl to write boot block. Revision Changes Path 1.3 +63 -23 src/usr.sbin/boot98cfg/boot98cfg.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Mon Feb 10 23:32:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9821E37B401; Mon, 10 Feb 2003 23:32:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CE2343FB1; Mon, 10 Feb 2003 23:32:47 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B7Wlbv054958; Mon, 10 Feb 2003 23:32:47 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B7WkuW054948; Mon, 10 Feb 2003 23:32:46 -0800 (PST) Message-Id: <200302110732.h1B7WkuW054948@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 10 Feb 2003 23:32:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/fdisk_pc98 fdisk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2003/02/10 23:32:46 PST Modified files: sbin/fdisk_pc98 fdisk.c Log: MFi386: Use DIOCGPC98 ioctl. Revision Changes Path 1.11 +57 -16 src/sbin/fdisk_pc98/fdisk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 0:19:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFAF537B401; Tue, 11 Feb 2003 00:19:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 952D743F3F; Tue, 11 Feb 2003 00:19:52 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B8Jqbv070095; Tue, 11 Feb 2003 00:19:52 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B8Jqj6070094; Tue, 11 Feb 2003 00:19:52 -0800 (PST) Message-Id: <200302110819.h1B8Jqj6070094@repoman.freebsd.org> From: Alfred Perlstein Date: Tue, 11 Feb 2003 00:19:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mly mly.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/11 00:19:52 PST Modified files: sys/dev/mly mly.c Log: Fixup printf format. Revision Changes Path 1.22 +1 -1 src/sys/dev/mly/mly.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 0:22:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D00A37B401; Tue, 11 Feb 2003 00:22:18 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D41C743F93; Tue, 11 Feb 2003 00:22:17 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id A6E44AE165; Tue, 11 Feb 2003 00:22:17 -0800 (PST) Date: Tue, 11 Feb 2003 00:22:17 -0800 From: Alfred Perlstein To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/mly mly.c Message-ID: <20030211082217.GL88781@elvis.mu.org> References: <200302110819.h1B8Jqj6070094@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302110819.h1B8Jqj6070094@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Alfred Perlstein [030211 00:19] wrote: > alfred 2003/02/11 00:19:52 PST > > Modified files: > sys/dev/mly mly.c > Log: > Fixup printf format. <> :) > > Revision Changes Path > 1.22 +1 -1 src/sys/dev/mly/mly.c -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 0:24:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BDA237B401; Tue, 11 Feb 2003 00:24:36 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8571743FAF; Tue, 11 Feb 2003 00:24:35 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 6B944536E; Tue, 11 Feb 2003 09:24:33 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc_r/uthread Makefile.inc src/lib/libpthread/thread Makefile.inc From: Dag-Erling Smorgrav Date: Tue, 11 Feb 2003 09:24:33 +0100 In-Reply-To: <20030211072859.GK88781@elvis.mu.org> (Alfred Perlstein's message of "Mon, 10 Feb 2003 23:28:59 -0800") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302110728.h1B7SSAE051617@repoman.freebsd.org> <20030211072859.GK88781@elvis.mu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > Uh, with so many people watching what I do I'm suprised no one > actually caught this. :( Feh. We only bitch when you do something right, not when you do something wrong. That would just be too easy. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 0:27:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96ACE37B401; Tue, 11 Feb 2003 00:27:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A2D243FBD; Tue, 11 Feb 2003 00:27:41 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B8Rfbv073668; Tue, 11 Feb 2003 00:27:41 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B8RePk073667; Tue, 11 Feb 2003 00:27:40 -0800 (PST) Message-Id: <200302110827.h1B8RePk073667@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 11 Feb 2003 00:27:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh-agent.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/11 00:27:40 PST Modified files: (Branch: RELENG_4) crypto/openssh ssh-agent.c Log: MFC: set the ruid to the euid at startup. Revision Changes Path 1.2.2.10 +2 -1 src/crypto/openssh/ssh-agent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 0:52: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AAA537B401; Tue, 11 Feb 2003 00:52:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4011A43FAF; Tue, 11 Feb 2003 00:52:01 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B8q1bv083654; Tue, 11 Feb 2003 00:52:01 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B8q0Ep083650; Tue, 11 Feb 2003 00:52:00 -0800 (PST) Message-Id: <200302110852.h1B8q0Ep083650@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Tue, 11 Feb 2003 00:52:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/snc dp83932.c dp83932var.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2003/02/11 00:52:00 PST Modified files: (Branch: RELENG_4) sys/dev/snc dp83932.c dp83932var.h Log: MFC: Use correct spl mask. Revision Changes Path 1.1.2.2 +4 -4 src/sys/dev/snc/dp83932.c 1.1.2.2 +5 -1 src/sys/dev/snc/dp83932var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 1: 2:23 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1986E37B401; Tue, 11 Feb 2003 01:02:21 -0800 (PST) Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD12343FA3; Tue, 11 Feb 2003 01:02:19 -0800 (PST) (envelope-from scott_long@btc.adaptec.com) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.11.6+Sun/8.11.6) with ESMTP id h1B92JD23014; Tue, 11 Feb 2003 01:02:19 -0800 (PST) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [10.100.0.52]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id BAA10977; Tue, 11 Feb 2003 01:02:13 -0800 (PST) Received: from btc.adaptec.com (hollin [10.100.253.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id CAA02606; Tue, 11 Feb 2003 02:02:10 -0700 (MST) Message-ID: <3E48BBE9.6000100@btc.adaptec.com> Date: Tue, 11 Feb 2003 02:01:29 -0700 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2b) Gecko/20021105 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alfred Perlstein Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/mly mly.c References: <200302110819.h1B8Jqj6070094@repoman.freebsd.org> <20030211082217.GL88781@elvis.mu.org> In-Reply-To: <200302110819.h1B8Jqj6070094@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein wrote: > * Alfred Perlstein [030211 00:19] wrote: > > >alfred 2003/02/11 00:19:52 PST > > > > Modified files: > > sys/dev/mly mly.c > > Log: > > Fixup printf format. > > > <> > > :) > > > > > > Revision Changes Path > > 1.22 +1 -1 src/sys/dev/mly/mly.c > > Doh. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 1:11:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BED7F37B401; Tue, 11 Feb 2003 01:11:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F36343F85; Tue, 11 Feb 2003 01:11:11 -0800 (PST) (envelope-from wjv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1B9BBbv089585; Tue, 11 Feb 2003 01:11:11 -0800 (PST) (envelope-from wjv@repoman.freebsd.org) Received: (from wjv@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1B9BBLC089581; Tue, 11 Feb 2003 01:11:11 -0800 (PST) Message-Id: <200302110911.h1B9BBLC089581@repoman.freebsd.org> From: Johann Visagie Date: Tue, 11 Feb 2003 01:11:10 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2003/02/11 01:11:10 PST Modified files: . access.master access.ports Log: me -> ports Revision Changes Path 1.584 +0 -1 CVSROOT/access.master 1.511 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 2:51:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B43B637B401; Tue, 11 Feb 2003 02:51:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5703343FA3; Tue, 11 Feb 2003 02:51:57 -0800 (PST) (envelope-from tanimura@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BApvbv026533; Tue, 11 Feb 2003 02:51:57 -0800 (PST) (envelope-from tanimura@repoman.freebsd.org) Received: (from tanimura@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BApvjW026526; Tue, 11 Feb 2003 02:51:57 -0800 (PST) Message-Id: <200302111051.h1BApvjW026526@repoman.freebsd.org> From: Seigo Tanimura Date: Tue, 11 Feb 2003 02:51:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet raw_ip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tanimura 2003/02/11 02:51:56 PST Modified files: sys/netinet raw_ip.c Log: s/IPSSEC/IPSEC/ Revision Changes Path 1.110 +1 -1 src/sys/netinet/raw_ip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 2:59:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9026437B401; Tue, 11 Feb 2003 02:59:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3599243F3F; Tue, 11 Feb 2003 02:59:44 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BAxibv027671; Tue, 11 Feb 2003 02:59:44 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BAxhEI027670; Tue, 11 Feb 2003 02:59:43 -0800 (PST) Message-Id: <200302111059.h1BAxhEI027670@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 02:59:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_stats.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 02:59:43 PST Modified files: sys/geom geom_stats.c Log: Remove a debugging printf. Revision Changes Path 1.3 +0 -1 src/sys/geom/geom_stats.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3: 1:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D931237B401; Tue, 11 Feb 2003 03:01:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B6A743FA3; Tue, 11 Feb 2003 03:01:26 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BB1Qbv029567; Tue, 11 Feb 2003 03:01:26 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BB1QiX029562; Tue, 11 Feb 2003 03:01:26 -0800 (PST) Message-Id: <200302111101.h1BB1QiX029562@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 03:01:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_io.c geom_stats.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 03:01:26 PST Modified files: sys/geom geom_io.c geom_stats.h Log: Turn the "updating" flag (back) into two sequence number fields at either ends of the structure so we have a way to determine if a snapshot is consistent. Revision Changes Path 1.28 +4 -4 src/sys/geom/geom_io.c 1.4 +5 -4 src/sys/geom/geom_stats.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3: 2:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9615C37B401; Tue, 11 Feb 2003 03:02:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A23B43FBD; Tue, 11 Feb 2003 03:02:28 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BB2Sbv031072; Tue, 11 Feb 2003 03:02:28 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BB2RIi031068; Tue, 11 Feb 2003 03:02:27 -0800 (PST) Message-Id: <200302111102.h1BB2RIi031068@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 03:02:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_kern.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 03:02:27 PST Modified files: sys/geom geom_kern.c Log: Remove another printf which does not say anything we didn't already know. Revision Changes Path 1.22 +0 -1 src/sys/geom/geom_kern.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3:43:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92B2637B401; Tue, 11 Feb 2003 03:43:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 334A343FE0; Tue, 11 Feb 2003 03:43:26 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BBhQbv045975; Tue, 11 Feb 2003 03:43:26 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BBhPER045974; Tue, 11 Feb 2003 03:43:25 -0800 (PST) Message-Id: <200302111143.h1BBhPER045974@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 03:43:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.i386 src/sys/i386/isa clock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 03:43:25 PST Modified files: sys/conf files.i386 sys/i386/isa clock.c Log: Switch to using the TSC code in i386/i386/tsc.c. Revision Changes Path 1.434 +1 -0 src/sys/conf/files.i386 1.195 +1 -114 src/sys/i386/isa/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3:44: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52F2937B401; Tue, 11 Feb 2003 03:43:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B5A43FA3; Tue, 11 Feb 2003 03:43:58 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BBhwbv046029; Tue, 11 Feb 2003 03:43:58 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BBhw3T046028; Tue, 11 Feb 2003 03:43:58 -0800 (PST) Message-Id: <200302111143.h1BBhw3T046028@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 03:43:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.pc98 src/sys/pc98/pc98 clock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 03:43:58 PST Modified files: sys/conf files.pc98 sys/pc98/pc98 clock.c Log: Switch to use the TSC code i386/i386/tsc.c Revision Changes Path 1.262 +1 -0 src/sys/conf/files.pc98 1.124 +1 -110 src/sys/pc98/pc98/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3:55: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 205FD37B401; Tue, 11 Feb 2003 03:55:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC9FC43FE5; Tue, 11 Feb 2003 03:55:02 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BBt2bv049672; Tue, 11 Feb 2003 03:55:02 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BBt20v049671; Tue, 11 Feb 2003 03:55:02 -0800 (PST) Message-Id: <200302111155.h1BBt20v049671@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 03:55:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys conf.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 03:55:02 PST Modified files: sys/sys conf.h Log: Introduce SI_CANDELETE flag on dev_t. Revision Changes Path 1.159 +1 -0 src/sys/sys/conf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3:55:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 632E237B401; Tue, 11 Feb 2003 03:55:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D068743FE5; Tue, 11 Feb 2003 03:55:40 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BBtebv049744; Tue, 11 Feb 2003 03:55:40 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BBteUO049743; Tue, 11 Feb 2003 03:55:40 -0800 (PST) Message-Id: <200302111155.h1BBteUO049743@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 03:55:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 03:55:40 PST Modified files: sys/geom geom.h Log: Introduce flag field and G_PF_CANDELETE field on providers. Revision Changes Path 1.44 +2 -0 src/sys/geom/geom.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 3:58:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3314237B401; Tue, 11 Feb 2003 03:58:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD3F43FD7; Tue, 11 Feb 2003 03:58:33 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BBwXbv049857; Tue, 11 Feb 2003 03:58:33 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BBwX70049856; Tue, 11 Feb 2003 03:58:33 -0800 (PST) Message-Id: <200302111158.h1BBwX70049856@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 11 Feb 2003 03:58:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2003/02/11 03:58:33 PST Modified files: libexec/ftpd ftpd.c Log: Use LOG_AUTHPRIV to hide the username attempted during an invalid login from everyone but sysadmins. PR: bin/29487 MFC after: 3 days Revision Changes Path 1.143 +5 -1 src/libexec/ftpd/ftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:11:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BF9337B401; Tue, 11 Feb 2003 04:11:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A07D43FAF; Tue, 11 Feb 2003 04:11:16 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCBFbv055373; Tue, 11 Feb 2003 04:11:15 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCBFtE055366; Tue, 11 Feb 2003 04:11:15 -0800 (PST) Message-Id: <200302111211.h1BCBFtE055366@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 11 Feb 2003 04:11:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/11 04:11:15 PST Modified files: crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 Log: document the current default value for VersionAddendum. Revision Changes Path 1.20 +1 -1 src/crypto/openssh/ssh_config 1.8 +1 -1 src/crypto/openssh/ssh_config.5 1.31 +1 -1 src/crypto/openssh/sshd_config 1.10 +1 -1 src/crypto/openssh/sshd_config.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:11:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8755537B405; Tue, 11 Feb 2003 04:11:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C62EF43F85; Tue, 11 Feb 2003 04:11:54 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCBsbv056295; Tue, 11 Feb 2003 04:11:54 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCBsGv056294; Tue, 11 Feb 2003 04:11:54 -0800 (PST) Message-Id: <200302111211.h1BCBsGv056294@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 11 Feb 2003 04:11:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/11 04:11:54 PST Modified files: (Branch: RELENG_4) crypto/openssh ssh_config ssh_config.5 sshd_config sshd_config.5 Log: InstaMFC: document the correct VersionAddendum. Revision Changes Path 1.2.2.8 +2 -2 src/crypto/openssh/ssh_config 1.4.2.4 +2 -2 src/crypto/openssh/ssh_config.5 1.4.2.12 +2 -2 src/crypto/openssh/sshd_config 1.5.2.5 +2 -2 src/crypto/openssh/sshd_config.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:22:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E7A337B401; Tue, 11 Feb 2003 04:22:57 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B12943F93; Tue, 11 Feb 2003 04:22:56 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1BCMtqV050334; Tue, 11 Feb 2003 13:22:55 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: Alfred Perlstein Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_descrip.c From: phk@phk.freebsd.dk In-Reply-To: Your message of "Mon, 10 Feb 2003 23:20:52 PST." <200302110720.h1B7KqnD048985@repoman.freebsd.org> Date: Tue, 11 Feb 2003 13:22:55 +0100 Message-ID: <50333.1044966175@critter.freebsd.dk> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200302110720.h1B7KqnD048985@repoman.freebsd.org>, Alfred Perlstein writes: >alfred 2003/02/10 23:20:52 PST > > Modified files: > sys/kern kern_descrip.c > Log: > Don't lock FILEDESC under PROC. > > The locking here needs to be revisited, but this ought to get rid of the > LOR messages that people are complaining about for now. I imagine either > I or someone else interested with smp will eventually clear this up. Well, it moves the LOR to shutdown time at least :-) -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | 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-src" in the body of the message From owner-cvs-src Tue Feb 11 4:35: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49C7A37B401; Tue, 11 Feb 2003 04:35:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF87943F3F; Tue, 11 Feb 2003 04:35:01 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCZ1bv064230; Tue, 11 Feb 2003 04:35:01 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCZ1Dg064229; Tue, 11 Feb 2003 04:35:01 -0800 (PST) Message-Id: <200302111235.h1BCZ1Dg064229@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 04:35:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/dev/fla fla.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 04:35:01 PST Modified files: sys/contrib/dev/fla fla.c Log: Mark our struct disk with DISKFLAG_CANDELETE instead of the cdevsw with D_CANFREE. Revision Changes Path 1.34 +2 -1 src/sys/contrib/dev/fla/fla.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:35:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77A4B37B401; Tue, 11 Feb 2003 04:35:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B0C743F75; Tue, 11 Feb 2003 04:35:45 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCZibv064311; Tue, 11 Feb 2003 04:35:44 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCZivd064310; Tue, 11 Feb 2003 04:35:44 -0800 (PST) Message-Id: <200302111235.h1BCZivd064310@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 04:35:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/md md.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 04:35:44 PST Modified files: sys/dev/md md.c Log: Mark our provider with G_PF_CANDELETE in the cases where this is actually the case. Revision Changes Path 1.85 +14 -8 src/sys/dev/md/md.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:36:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B856C37B401; Tue, 11 Feb 2003 04:36:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AE7943F3F; Tue, 11 Feb 2003 04:36:34 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCaYbv064362; Tue, 11 Feb 2003 04:36:34 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCaXLp064357; Tue, 11 Feb 2003 04:36:33 -0800 (PST) Message-Id: <200302111236.h1BCaXLp064357@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 04:36:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_slice.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 04:36:33 PST Modified files: sys/geom geom_slice.c Log: Propagate G_PF_CANDELETE to our own providers from the provider we attach to. Revision Changes Path 1.34 +2 -0 src/sys/geom/geom_slice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:37: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5983937B401; Tue, 11 Feb 2003 04:37:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75F9043F3F; Tue, 11 Feb 2003 04:37:05 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCb5bv064418; Tue, 11 Feb 2003 04:37:05 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCb4PK064417; Tue, 11 Feb 2003 04:37:04 -0800 (PST) Message-Id: <200302111237.h1BCb4PK064417@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 04:37:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom/bde g_bde.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 04:37:04 PST Modified files: sys/geom/bde g_bde.c Log: Unconditionally make our provider with G_PF_CANDELETE. Revision Changes Path 1.9 +1 -0 src/sys/geom/bde/g_bde.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:38: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D7CB37B401; Tue, 11 Feb 2003 04:37:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 204A343F85; Tue, 11 Feb 2003 04:37:59 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCbwbv064492; Tue, 11 Feb 2003 04:37:58 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCbwci064491; Tue, 11 Feb 2003 04:37:58 -0800 (PST) Message-Id: <200302111237.h1BCbwci064491@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Tue, 11 Feb 2003 04:37:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/11 04:37:58 PST Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs Log: MFC: sync with 1.112 Revision Changes Path 1.11.2.36 +19 -1 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:42: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAF3F37B401; Tue, 11 Feb 2003 04:42:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AFCF43FAF; Tue, 11 Feb 2003 04:42:06 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCg6bv067338; Tue, 11 Feb 2003 04:42:06 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCg61W067337; Tue, 11 Feb 2003 04:42:06 -0800 (PST) Message-Id: <200302111242.h1BCg61W067337@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Tue, 11 Feb 2003 04:42:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/11 04:42:06 PST Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs.h usbdevs_data.h Log: Sync to 1.11.2.36 of usbdevs Revision Changes Path 1.32.2.34 +20 -3 src/sys/dev/usb/usbdevs.h 1.32.2.34 +67 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:50: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FDB137B401; Tue, 11 Feb 2003 04:49:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F3F843F3F; Tue, 11 Feb 2003 04:49:59 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCnwbv068205; Tue, 11 Feb 2003 04:49:58 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCnwJN068204; Tue, 11 Feb 2003 04:49:58 -0800 (PST) Message-Id: <200302111249.h1BCnwJN068204@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 04:49:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/specfs spec_vnops.c src/sys/geom geom_dev.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 04:49:58 PST Modified files: sys/fs/specfs spec_vnops.c sys/geom geom_dev.c Log: Use the SI_CANDELETE flag on the dev_t rather than the D_CANFREE flag on the cdevsw to determine ability to handle the BIO_DELETE request. Revision Changes Path 1.196 +1 -3 src/sys/fs/specfs/spec_vnops.c 1.44 +3 -1 src/sys/geom/geom_dev.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:51:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6368337B401; Tue, 11 Feb 2003 04:51:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0875E43FAF; Tue, 11 Feb 2003 04:51:52 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCppbv070760; Tue, 11 Feb 2003 04:51:51 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCppBC070753; Tue, 11 Feb 2003 04:51:51 -0800 (PST) Message-Id: <200302111251.h1BCppBC070753@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 04:51:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys conf.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 04:51:51 PST Modified files: sys/sys conf.h Log: Retire D_CANFREE flag. Revision Changes Path 1.160 +0 -1 src/sys/sys/conf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 4:58:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55A3A37B401; Tue, 11 Feb 2003 04:58:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECEC143F93; Tue, 11 Feb 2003 04:58:43 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BCwhbv071910; Tue, 11 Feb 2003 04:58:43 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BCwhI1071909; Tue, 11 Feb 2003 04:58:43 -0800 (PST) Message-Id: <200302111258.h1BCwhI1071909@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Tue, 11 Feb 2003 04:58:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umass.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/11 04:58:43 PST Modified files: (Branch: RELENG_4) sys/dev/usb umass.c Log: MFC: 1.74: Make sure to set xfer data length when we force a short inquiry. 1.61: add IGNORE_RESIDUE 1.41: Add a quirk for drives that do not handle long inquiry data. Revision Changes Path 1.11.2.16 +42 -2 src/sys/dev/usb/umass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 5:12:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 222A237B405; Tue, 11 Feb 2003 05:12:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9211943FAF; Tue, 11 Feb 2003 05:12:27 -0800 (PST) (envelope-from hm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BDCRbv078751; Tue, 11 Feb 2003 05:12:27 -0800 (PST) (envelope-from hm@repoman.freebsd.org) Received: (from hm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BDCRH9078747; Tue, 11 Feb 2003 05:12:27 -0800 (PST) Message-Id: <200302111312.h1BDCRH9078747@repoman.freebsd.org> From: Hellmuth Michaelis Date: Tue, 11 Feb 2003 05:12:27 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hm 2003/02/11 05:12:27 PST Modified files: . access access.master access.ports Log: move hm to the new world Revision Changes Path 1.554 +1 -0 CVSROOT/access 1.585 +0 -1 CVSROOT/access.master 1.512 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 5:13:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD26E37B401; Tue, 11 Feb 2003 05:13:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6173443F93; Tue, 11 Feb 2003 05:13:10 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BDDAbv079153; Tue, 11 Feb 2003 05:13:10 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BDDAvm079152; Tue, 11 Feb 2003 05:13:10 -0800 (PST) Message-Id: <200302111313.h1BDDAvm079152@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 05:13:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_io.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 05:13:10 PST Modified files: sys/geom geom_io.c Log: Don't short-circuit zero-length requests of they are BIO_[SG]ETATTR. Revision Changes Path 1.29 +18 -10 src/sys/geom/geom_io.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 5:17:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE16C37B401; Tue, 11 Feb 2003 05:17:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50B7B43F3F; Tue, 11 Feb 2003 05:17:56 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BDHubv079315; Tue, 11 Feb 2003 05:17:56 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BDHuH4079314; Tue, 11 Feb 2003 05:17:56 -0800 (PST) Message-Id: <200302111317.h1BDHuH4079314@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Tue, 11 Feb 2003 05:17:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uvscom.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/11 05:17:56 PST Modified files: (Branch: RELENG_4) sys/dev/usb uvscom.c Log: MFC: 1.12: Add support SUNTAC U-Cable TypeD2 (DS96L) Revision Changes Path 1.9.2.2 +2 -0 src/sys/dev/usb/uvscom.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 5:19: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 001C337B401; Tue, 11 Feb 2003 05:19:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98EBE43F93; Tue, 11 Feb 2003 05:19:01 -0800 (PST) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BDJ1bv079377; Tue, 11 Feb 2003 05:19:01 -0800 (PST) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BDJ1xp079376; Tue, 11 Feb 2003 05:19:01 -0800 (PST) Message-Id: <200302111319.h1BDJ1xp079376@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Tue, 11 Feb 2003 05:19:01 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.i386 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2003/02/11 05:19:01 PST Modified files: sys/conf files.i386 Log: Sort. Revision Changes Path 1.435 +1 -1 src/sys/conf/files.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 6: 9:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 468EB37B401; Tue, 11 Feb 2003 06:09:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD71743F93; Tue, 11 Feb 2003 06:09:48 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BE9mbv097434; Tue, 11 Feb 2003 06:09:48 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BE9mRc097433; Tue, 11 Feb 2003 06:09:48 -0800 (PST) Message-Id: <200302111409.h1BE9mRc097433@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 06:09:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_mbr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 06:09:48 PST Modified files: sys/geom geom_mbr.c Log: Wrap a long line. Revision Changes Path 1.33 +2 -1 src/sys/geom/geom_mbr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 6:10:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77C8D37B401; Tue, 11 Feb 2003 06:10:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C5AD43F3F; Tue, 11 Feb 2003 06:10:49 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BEAmbv098263; Tue, 11 Feb 2003 06:10:48 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BEAmXN098256; Tue, 11 Feb 2003 06:10:48 -0800 (PST) Message-Id: <200302111410.h1BEAmXN098256@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 11 Feb 2003 06:10:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2003/02/11 06:10:48 PST Modified files: libexec/ftpd ftpd.c Log: Kill unnecessary vertical whitespace. Revision Changes Path 1.144 +0 -1 src/libexec/ftpd/ftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 6:12: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CFA337B401; Tue, 11 Feb 2003 06:12:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 207E143F3F; Tue, 11 Feb 2003 06:12:08 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BEC7bv000534; Tue, 11 Feb 2003 06:12:07 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BEC7Da000524; Tue, 11 Feb 2003 06:12:07 -0800 (PST) Message-Id: <200302111412.h1BEC7Da000524@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 06:12:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_disk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 06:12:06 PST Modified files: sys/geom geom_disk.c Log: Propagate DISKFLAG_CANDELETE from struct disk to G_PF_CANDELETE on the provider. Revision Changes Path 1.47 +11 -8 src/sys/geom/geom_disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 6:28:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 261A737B401; Tue, 11 Feb 2003 06:28:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD63843F93; Tue, 11 Feb 2003 06:28:28 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BESSbv004904; Tue, 11 Feb 2003 06:28:28 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BESSqo004903; Tue, 11 Feb 2003 06:28:28 -0800 (PST) Message-Id: <200302111428.h1BESSqo004903@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 11 Feb 2003 06:28:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd Makefile ftpchroot.5 ftpcmd.y ftpd.8 ftpd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2003/02/11 06:28:28 PST Modified files: (Branch: RELENG_4) libexec/ftpd Makefile ftpcmd.y ftpd.8 ftpd.c Added files: (Branch: RELENG_4) libexec/ftpd ftpchroot.5 Log: MFC: Rework the code around chroot(2)/chdir(2). This gives us: - an extended format (and manpage as a consequence) for /etc/ftpchroot, - ability to access NFS mounted home directories with mode 700, - more protection from setting a wrong home directory in passwd(5), - the "/./" feature. ftpd.c 1.135-1.138 ftpcmd.y 1.47 ftpd.8 1.58-1.59 ftpchroot.5 1.2 (added) Revision Changes Path 1.33.2.6 +1 -1 src/libexec/ftpd/Makefile 1.2.2.1 +121 -0 src/libexec/ftpd/ftpchroot.5 (new) 1.16.2.19 +2 -4 src/libexec/ftpd/ftpcmd.y 1.31.2.18 +17 -1 src/libexec/ftpd/ftpd.8 1.62.2.47 +114 -38 src/libexec/ftpd/ftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 6:34:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92AD637B401; Tue, 11 Feb 2003 06:34:18 -0800 (PST) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB33E43FA3; Tue, 11 Feb 2003 06:34:17 -0800 (PST) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.12.6/8.12.5) with SMTP id h1BEY7P4021986; Tue, 11 Feb 2003 09:34:07 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Tue, 11 Feb 2003 09:34:06 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Juli Mallett Cc: Peter Wemm , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs Makefile mkfs.c newfs.c newfs.h ref.test In-Reply-To: <20030210220423.A36674@FreeBSD.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 10 Feb 2003, Juli Mallett wrote: > > Umm, I object! This is a massive performance loss on disks without track > > write buffering (eg: many raid systems).. While it isn't so bad for ufs2 > > newfs, it is a Big Deal for ufs1 for interchangeability. > > OK. I was kind of hoping to put a general write cache (and since we do > reads, a general buffer cache, in a sense) into libufs, but I suppose I > could just put back the wc stuff, and avoid calling into libufs for > anything other than bread/bwrite. > > Which would you prefer? Do you know of anything other than newfs where > it matters? If you're going to use a write cache with fsck, you need to be Really Really Careful. The last thing we want is a power-down during fsck to completely hose the system because it violates write-order constraints. Hopefully fsck isn't in the business of producing such things, but caution should be applied. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 6:57:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA27D37B401; Tue, 11 Feb 2003 06:57:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8948943FBF; Tue, 11 Feb 2003 06:57:34 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BEvYbv015816; Tue, 11 Feb 2003 06:57:34 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BEvYAS015815; Tue, 11 Feb 2003 06:57:34 -0800 (PST) Message-Id: <200302111457.h1BEvYAS015815@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 06:57:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys conf.h disk.h src/sys/geom geom.h geom_dev.c geom_disk.c geom_slice.c notes src/sys/geom/bde g_bde.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 06:57:34 PST Modified files: sys/sys conf.h disk.h sys/geom geom.h geom_dev.c geom_disk.c geom_slice.c notes sys/geom/bde g_bde.c Log: Better names for struct disk elements: d_maxsize, d_stripeoffset and d_stripesisze; Introduce si_stripesize and si_stripeoffset in struct cdev so we can make the visible to clustering code. Add stripesize and stripeoffset to providers. DTRT with stripesize and stripeoffset in various places in GEOM. Revision Changes Path 1.10 +2 -0 src/sys/geom/bde/g_bde.c 1.45 +2 -0 src/sys/geom/geom.h 1.45 +2 -0 src/sys/geom/geom_dev.c 1.48 +2 -0 src/sys/geom/geom_disk.c 1.35 +5 -3 src/sys/geom/geom_slice.c 1.3 +30 -0 src/sys/geom/notes 1.161 +2 -0 src/sys/sys/conf.h 1.34 +3 -3 src/sys/sys/disk.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 7:15:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B5AA37B401; Tue, 11 Feb 2003 07:15:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE3EE43FAF; Tue, 11 Feb 2003 07:15:34 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BFFYbv023071; Tue, 11 Feb 2003 07:15:34 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BFFYLj023070; Tue, 11 Feb 2003 07:15:34 -0800 (PST) Message-Id: <200302111515.h1BFFYLj023070@repoman.freebsd.org> From: Christian Weisgerber Date: Tue, 11 Feb 2003 07:15:34 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/11 07:15:34 PST Modified files: . modules Log: add missing pppload --> ports/net/pppload Revision Changes Path 1.6711 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 7:19:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B65D37B401; Tue, 11 Feb 2003 07:19:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F09343FAF; Tue, 11 Feb 2003 07:19:32 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BFJWbv023183; Tue, 11 Feb 2003 07:19:32 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BFJVYL023182; Tue, 11 Feb 2003 07:19:31 -0800 (PST) Message-Id: <200302111519.h1BFJVYL023182@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 11 Feb 2003 07:19:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/alpha _fpmath.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/11 07:19:31 PST Modified files: lib/libc/alpha _fpmath.h Log: Force cvsup mirrors to refetch this file. Revision Changes Path 1.2 +0 -0 src/lib/libc/alpha/_fpmath.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 7:20:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D55F337B401; Tue, 11 Feb 2003 07:20:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D7843F93; Tue, 11 Feb 2003 07:20:35 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BFKZbv023720; Tue, 11 Feb 2003 07:20:35 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BFKZip023713; Tue, 11 Feb 2003 07:20:35 -0800 (PST) Message-Id: <200302111520.h1BFKZip023713@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 07:20:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom/bde g_bde.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 07:20:35 PST Modified files: sys/geom/bde g_bde.c Log: Typo in last commit. Revision Changes Path 1.11 +2 -2 src/sys/geom/bde/g_bde.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 7:23:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 957E137B405; Tue, 11 Feb 2003 07:23:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E870A43F75; Tue, 11 Feb 2003 07:23:41 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BFNfbv026675; Tue, 11 Feb 2003 07:23:41 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BFNfNv026674; Tue, 11 Feb 2003 07:23:41 -0800 (PST) Message-Id: <200302111523.h1BFNfNv026674@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 07:23:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_slice.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 07:23:41 PST Modified files: sys/geom geom_slice.c Log: Don't divide by zero if there is no stripewidth specified. Revision Changes Path 1.36 +4 -2 src/sys/geom/geom_slice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 7:54:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFA8137B401; Tue, 11 Feb 2003 07:54:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BA7243FB1; Tue, 11 Feb 2003 07:54:17 -0800 (PST) (envelope-from orion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BFsHbv037507; Tue, 11 Feb 2003 07:54:17 -0800 (PST) (envelope-from orion@repoman.freebsd.org) Received: (from orion@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BFsHfs037506; Tue, 11 Feb 2003 07:54:17 -0800 (PST) Message-Id: <200302111554.h1BFsHfs037506@repoman.freebsd.org> From: Orion Hodson Date: Tue, 11 Feb 2003 07:54:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm vchan.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG orion 2003/02/11 07:54:17 PST Modified files: (Branch: RELENG_4) sys/dev/sound/pcm vchan.c Log: MFC r1.11: Remove mono encodings from vchan format and mixer description. Revision Changes Path 1.5.2.4 +0 -2 src/sys/dev/sound/pcm/vchan.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 8:10:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 978E237B401; Tue, 11 Feb 2003 08:10:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36FBA43F85; Tue, 11 Feb 2003 08:10:32 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BGAVbv041717; Tue, 11 Feb 2003 08:10:31 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BGAV5H041715; Tue, 11 Feb 2003 08:10:31 -0800 (PST) Message-Id: <200302111610.h1BGAV5H041715@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 11 Feb 2003 08:10:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2003/02/11 08:10:31 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: ftpd(8) -h, -P, "/./" in login pathnames; ftpchroot(5). Revision Changes Path 1.22.2.327 +21 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 8:54:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B2E937B401; Tue, 11 Feb 2003 08:54:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BEE043F93; Tue, 11 Feb 2003 08:54:17 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BGsHbv059262; Tue, 11 Feb 2003 08:54:17 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BGsGBL059261; Tue, 11 Feb 2003 08:54:16 -0800 (PST) Message-Id: <200302111654.h1BGsGBL059261@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 11 Feb 2003 08:54:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2003/02/11 08:54:16 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFCs noted: ftpd(8) -h, -P, "/./"; ftpchroot(5). Revision Changes Path 1.495 +6 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 8:58:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CABD737B401; Tue, 11 Feb 2003 08:58:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C70143F85; Tue, 11 Feb 2003 08:58:54 -0800 (PST) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BGwsbv059398; Tue, 11 Feb 2003 08:58:54 -0800 (PST) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BGwsjJ059397; Tue, 11 Feb 2003 08:58:54 -0800 (PST) Message-Id: <200302111658.h1BGwsjJ059397@repoman.freebsd.org> From: Brian Feldman Date: Tue, 11 Feb 2003 08:58:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm dsp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2003/02/11 08:58:54 PST Modified files: sys/dev/sound/pcm dsp.c Log: Sound devices were being leaked by dsp_open() not actually releasing the channels it allocates if chn_reset() on them resulted in failure. ARROW'D! Revision Changes Path 1.59 +6 -1 src/sys/dev/sound/pcm/dsp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 9:36:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A69037B405; Tue, 11 Feb 2003 09:36:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A144343F85; Tue, 11 Feb 2003 09:36:38 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BHacbv073736; Tue, 11 Feb 2003 09:36:38 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BHacJB073735; Tue, 11 Feb 2003 09:36:38 -0800 (PST) Message-Id: <200302111736.h1BHacJB073735@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 09:36:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 devctl.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 09:36:38 PST Modified files: share/man/man4 devctl.4 Log: Commit a nearly real man page describing the current state of devctl. More work likely needs to happen. This describes things better than the old "this man page intentionally left blank" style man page that I'd committed previously. Nitpickers: comb nits and commit! Revision Changes Path 1.2 +71 -1 src/share/man/man4/devctl.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 9:40:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9089737B401; Tue, 11 Feb 2003 09:40:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB56543F75; Tue, 11 Feb 2003 09:40:56 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BHeubv074926; Tue, 11 Feb 2003 09:40:56 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BHeu3s074918; Tue, 11 Feb 2003 09:40:56 -0800 (PST) Message-Id: <200302111740.h1BHeu3s074918@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 09:40:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 wi.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 09:40:56 PST Modified files: share/man/man4 wi.4 Log: Update man page to match the new world order after Sam updated us to NetBSD's 802.11 infrastructure. Revision Changes Path 1.28 +42 -73 src/share/man/man4/wi.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 10:32:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D40E37B401; Tue, 11 Feb 2003 10:32:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3020443F93; Tue, 11 Feb 2003 10:32:32 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BIWWbv094943; Tue, 11 Feb 2003 10:32:32 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BIWVtZ094942; Tue, 11 Feb 2003 10:32:31 -0800 (PST) Message-Id: <200302111832.h1BIWVtZ094942@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 10:32:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_disk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 10:32:31 PST Modified files: sys/geom geom_disk.c Log: Make a mutex to stop the race coming into geom_disk's done routine. Cut up requests into smaller bits if they are longer than the drivers disk->d_maxsize or dev->si_iosize_max. Properly handle the race condition when using g_clone_bio() is used without having the single-threadedness of g_down/g_up secure locking. Revision Changes Path 1.49 +61 -25 src/sys/geom/geom_disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 10:55: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76CC337B401; Tue, 11 Feb 2003 10:55:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1504343FB1; Tue, 11 Feb 2003 10:55:00 -0800 (PST) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BIsxbv002758; Tue, 11 Feb 2003 10:54:59 -0800 (PST) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BIsxJu002757; Tue, 11 Feb 2003 10:54:59 -0800 (PST) Message-Id: <200302111854.h1BIsxJu002757@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Tue, 11 Feb 2003 10:54:59 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.doc_src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rushani 2003/02/11 10:54:59 PST Modified files: . access.doc_src Log: I will also work on relnotes stuff. Reviewed by: hrs (mentor) Revision Changes Path 1.19 +1 -0 CVSROOT/access.doc_src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 10:56:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC87237B401; Tue, 11 Feb 2003 10:56:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD0643FE5; Tue, 11 Feb 2003 10:56:47 -0800 (PST) (envelope-from rushani@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BIukbv002860; Tue, 11 Feb 2003 10:56:46 -0800 (PST) (envelope-from rushani@repoman.freebsd.org) Received: (from rushani@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BIukAv002859; Tue, 11 Feb 2003 10:56:46 -0800 (PST) Message-Id: <200302111856.h1BIukAv002859@repoman.freebsd.org> From: Hideyuki KURASHINA Date: Tue, 11 Feb 2003 10:56:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/early-adopter article.sgml src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rushani 2003/02/11 10:56:46 PST Modified files: release/doc/ja_JP.eucJP/early-adopter article.sgml release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Catch up the following with the English version: 1.11 -> 1.12 early-adopter/article.sgml 1.493 -> 1.495 relnotes/common/new.sgml Approved by: hrs (mentor) Revision Changes Path 1.6 +9 -13 src/release/doc/ja_JP.eucJP/early-adopter/article.sgml 1.78 +15 -5 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 11:16:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 674C037B406; Tue, 11 Feb 2003 11:16:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0700143FA3; Tue, 11 Feb 2003 11:16:46 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BJGjbv010195; Tue, 11 Feb 2003 11:16:45 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BJGj4Y010194; Tue, 11 Feb 2003 11:16:45 -0800 (PST) Message-Id: <200302111916.h1BJGj4Y010194@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 11 Feb 2003 11:16:45 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2003/02/11 11:16:45 PST Modified files: . modules Log: gnomevfs-extras --> ports/devel/gnomevfs-extras Revision Changes Path 1.6712 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 11:17:24 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B7D137B401; Tue, 11 Feb 2003 11:17:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCE6843F93; Tue, 11 Feb 2003 11:17:19 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BJHJbv010243; Tue, 11 Feb 2003 11:17:19 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BJHJfY010242; Tue, 11 Feb 2003 11:17:19 -0800 (PST) Message-Id: <200302111917.h1BJHJfY010242@repoman.freebsd.org> From: Sean Chittenden Date: Tue, 11 Feb 2003 11:17:19 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.doc access.doc_src access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG seanc 2003/02/11 11:17:19 PST Modified files: . access.doc access.doc_src access.ports Log: Resume getting commit mail. Revision Changes Path 1.462 +1 -0 CVSROOT/access.doc 1.20 +1 -0 CVSROOT/access.doc_src 1.513 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 11:17:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BA9037B401; Tue, 11 Feb 2003 11:17:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A84643F85; Tue, 11 Feb 2003 11:17:31 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BJHUbv010273; Tue, 11 Feb 2003 11:17:30 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BJHUMc010272; Tue, 11 Feb 2003 11:17:30 -0800 (PST) Message-Id: <200302111917.h1BJHUMc010272@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 11 Feb 2003 11:17:30 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2003/02/11 11:17:30 PST Modified files: . modules Log: Remove ports/x11-toolkits/crux...belatedly. Revision Changes Path 1.6713 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 11:21:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 896E637B401; Tue, 11 Feb 2003 11:21:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E02543F93; Tue, 11 Feb 2003 11:21:14 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BJLEbv011950; Tue, 11 Feb 2003 11:21:14 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BJLDZS011949; Tue, 11 Feb 2003 11:21:13 -0800 (PST) Message-Id: <200302111921.h1BJLDZS011949@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 11 Feb 2003 11:21:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/11 11:21:13 PST Modified files: . Makefile.inc1 Log: Add -DNOMAN to the list. Revision Changes Path 1.317 +1 -0 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 11:32:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B18D37B401; Tue, 11 Feb 2003 11:32:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C835A43F93; Tue, 11 Feb 2003 11:32:18 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BJWIbv016791; Tue, 11 Feb 2003 11:32:18 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BJWIqU016787; Tue, 11 Feb 2003 11:32:18 -0800 (PST) Message-Id: <200302111932.h1BJWIqU016787@repoman.freebsd.org> From: Sean Chittenden Date: Tue, 11 Feb 2003 11:32:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/random Makefile random.6 random.c randomize_fd.c randomize_fd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG seanc 2003/02/11 11:32:18 PST Modified files: games/random Makefile random.6 random.c Added files: games/random randomize_fd.c randomize_fd.h Log: Update random(6) to have the ability to randomize a file/stdin based off of lines or words. See the man page for details. Reviewed by: markm MFC after: 3 days Revision Changes Path 1.4 +3 -1 src/games/random/Makefile 1.6 +61 -8 src/games/random/random.6 1.13 +52 -13 src/games/random/random.c 1.1 +219 -0 src/games/random/randomize_fd.c (new) 1.1 +56 -0 src/games/random/randomize_fd.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 11:45:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2034737B401; Tue, 11 Feb 2003 11:45:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B74E243FA3; Tue, 11 Feb 2003 11:45:44 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BJjibv021136; Tue, 11 Feb 2003 11:45:44 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BJjijC021135; Tue, 11 Feb 2003 11:45:44 -0800 (PST) Message-Id: <200302111945.h1BJjijC021135@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 11 Feb 2003 11:45:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/etc make.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/11 11:45:44 PST Modified files: share/examples/etc make.conf Log: Add NOMAN here also. Revision Changes Path 1.210 +1 -0 src/share/examples/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 12:15:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1818237B401; Tue, 11 Feb 2003 12:15:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC45943F85; Tue, 11 Feb 2003 12:15:11 -0800 (PST) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BKFBbv031847; Tue, 11 Feb 2003 12:15:11 -0800 (PST) (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BKFBT9031846; Tue, 11 Feb 2003 12:15:11 -0800 (PST) Message-Id: <200302112015.h1BKFBT9031846@repoman.freebsd.org> From: Jens Schweikhardt Date: Tue, 11 Feb 2003 12:15:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/libkern/ia64 __moddi3.S __umoddi3.S X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG schweikh 2003/02/11 12:15:11 PST Modified files: sys/libkern/ia64 __moddi3.S __umoddi3.S Log: Improve a comment and undo a bogus s/a/an/ in a comment. An asm guru should add more comments explaining which registers hold which variables. Spotted by: bde Revision Changes Path 1.3 +3 -3 src/sys/libkern/ia64/__moddi3.S 1.3 +3 -3 src/sys/libkern/ia64/__umoddi3.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 12:27:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8742937B401; Tue, 11 Feb 2003 12:27:34 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3524F43FBF; Tue, 11 Feb 2003 12:27:33 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1BKRW1o017588; Tue, 11 Feb 2003 12:27:32 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1BKRWl2003197; Tue, 11 Feb 2003 12:27:32 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.6/8.12.6/Submit) id h1BKRW57003196; Tue, 11 Feb 2003 12:27:32 -0800 (PST) Date: Tue, 11 Feb 2003 12:27:32 -0800 From: Marcel Moolenaar To: Jens Schweikhardt Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/libkern/ia64 __moddi3.S __umoddi3.S Message-ID: <20030211202732.GF2881@dhcp01.pn.xcllnt.net> References: <200302112015.h1BKFBT9031846@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302112015.h1BKFBT9031846@repoman.freebsd.org> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 11, 2003 at 12:15:11PM -0800, Jens Schweikhardt wrote: > schweikh 2003/02/11 12:15:11 PST > > Modified files: > sys/libkern/ia64 __moddi3.S __umoddi3.S > Log: > Improve a comment and undo a bogus s/a/an/ in a comment. An asm guru > should add more comments explaining which registers hold which variables. Can you explain yourself. The comments in __moddi3.S (at least) are quite clear: : // Step (1) // y0 = 1 / b in f8 // Step (2) // q0 = a * y0 in f10 // Step (3) // e0 = 1 - b * y0 in f9 : -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:12:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59D4737B401; Tue, 11 Feb 2003 13:12:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F280B43F3F; Tue, 11 Feb 2003 13:12:43 -0800 (PST) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLChbv053510; Tue, 11 Feb 2003 13:12:43 -0800 (PST) (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLChkT053509; Tue, 11 Feb 2003 13:12:43 -0800 (PST) Message-Id: <200302112112.h1BLChkT053509@repoman.freebsd.org> From: Joerg Wunsch Date: Tue, 11 Feb 2003 13:12:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/vinum vinum.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joerg 2003/02/11 13:12:43 PST Modified files: sys/dev/vinum vinum.c Log: Deregister the dev_clone event handler when unloading the module. Bad things might happen otherwise. Noticed by: Michael Reifenberger Revision Changes Path 1.51 +5 -1 src/sys/dev/vinum/vinum.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:23:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6440C37B401; Tue, 11 Feb 2003 13:23:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 097F343F3F; Tue, 11 Feb 2003 13:23:35 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLNYbv057167; Tue, 11 Feb 2003 13:23:34 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLNYCT057166; Tue, 11 Feb 2003 13:23:34 -0800 (PST) Message-Id: <200302112123.h1BLNYCT057166@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 13:23:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_disk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 13:23:34 PST Modified files: sys/geom geom_disk.c Log: Check disk->d_maxsize/dev->si_iosize_max at open time rather than in strategy. Printf a warning and use DFLTPHYS if the drive has not set a size. Revision Changes Path 1.50 +7 -10 src/sys/geom/geom_disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:24:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9371037B401; Tue, 11 Feb 2003 13:24:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 184F843F85; Tue, 11 Feb 2003 13:24:26 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLOPbv057205; Tue, 11 Feb 2003 13:24:25 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLOPv1057204; Tue, 11 Feb 2003 13:24:25 -0800 (PST) Message-Id: <200302112124.h1BLOPv1057204@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 13:24:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_dev.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 13:24:25 PST Modified files: sys/geom geom_dev.c Log: Advertise MAXPHYS upwards, we will split as necessary before we get to the bottom of things. Revision Changes Path 1.46 +1 -1 src/sys/geom/geom_dev.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:29:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6142137B401; Tue, 11 Feb 2003 13:29:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06E5243F3F; Tue, 11 Feb 2003 13:29:54 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLTrbv057402; Tue, 11 Feb 2003 13:29:53 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLTrS8057401; Tue, 11 Feb 2003 13:29:53 -0800 (PST) Message-Id: <200302112129.h1BLTrS8057401@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 13:29:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ccd ccd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 13:29:53 PST Modified files: sys/dev/ccd ccd.c Log: Announce our ability to do MAXPHYS transfers. Revision Changes Path 1.124 +1 -0 src/sys/dev/ccd/ccd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:30:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8968637B401; Tue, 11 Feb 2003 13:30:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CBE943FAF; Tue, 11 Feb 2003 13:30:29 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLUTbv057698; Tue, 11 Feb 2003 13:30:29 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLUS8d057696; Tue, 11 Feb 2003 13:30:28 -0800 (PST) Message-Id: <200302112130.h1BLUS8d057696@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 13:30:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 13:30:28 PST Modified files: sys/cam/scsi scsi_da.c Log: Announce our ability to do DFLTPHYS sized transfers. Revision Changes Path 1.125 +1 -0 src/sys/cam/scsi/scsi_da.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:31:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B53C137B401; Tue, 11 Feb 2003 13:31:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D4E243FA3; Tue, 11 Feb 2003 13:31:57 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLVubv059971; Tue, 11 Feb 2003 13:31:56 -0800 (PST) (envelope-from mike@repoman.freebsd.org) Received: (from mike@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLVuU0059967; Tue, 11 Feb 2003 13:31:56 -0800 (PST) Message-Id: <200302112131.h1BLVuU0059967@repoman.freebsd.org> From: Mike Barcroft Date: Tue, 11 Feb 2003 13:31:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/msgs msgs.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2003/02/11 13:31:56 PST Modified files: (Branch: RELENG_4) usr.bin/msgs msgs.c Log: MFC rev 1.25: Fix singular/plural confusion in a printf. Revision Changes Path 1.15.2.2 +3 -2 src/usr.bin/msgs/msgs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:38: 5 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5AFE37B401; Tue, 11 Feb 2003 13:38:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36EA943FB1; Tue, 11 Feb 2003 13:38:03 -0800 (PST) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLc2bv061073; Tue, 11 Feb 2003 13:38:03 -0800 (PST) (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLc28D061072; Tue, 11 Feb 2003 13:38:02 -0800 (PST) Message-Id: <200302112138.h1BLc28D061072@repoman.freebsd.org> From: Wes Peters Date: Tue, 11 Feb 2003 13:38:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/fortune/datfiles fortunes X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wes 2003/02/11 13:38:02 PST Modified files: games/fortune/datfiles fortunes Log: Add Warner Losh quote. Submitted by: Alexandr Kovalenko Revision Changes Path 1.104 +4 -0 src/games/fortune/datfiles/fortunes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:43:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BC1F37B401; Tue, 11 Feb 2003 13:43:15 -0800 (PST) Received: from smtp-relay.omnis.com (smtp-relay.omnis.com [216.239.128.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7C5B43FBD; Tue, 11 Feb 2003 13:43:14 -0800 (PST) (envelope-from wes@softweyr.com) Received: from salty.rapid.stbernard.com (corp-2.ipinc.com [199.245.188.2]) by smtp-relay.omnis.com (Postfix) with ESMTP id B8B8243609; Tue, 11 Feb 2003 13:43:12 -0800 (PST) From: Wesley Peters Organization: Softweyr To: Mike Barcroft , Daniel Eischen Subject: Re: cvs commit: src/include pthread.h src/lib/libc_r/uthread uthread_attr_getstack.c uthread_attr_setstack.c src/lib/libpthread/thread thr_attr_getstack.c thr_attr_setstack.c src/lib/libc_r/man pthread_attr.3 Date: Tue, 11 Feb 2003 13:43:09 -0800 User-Agent: KMail/1.5 Cc: Marcel Moolenaar , Julian Elischer , src-committers@FreeBSD.org, cvs-src@FreeBSD.org References: <20030210230933.GB1094@athlon.pn.xcllnt.net> <20030210223348.F40864@espresso.q9media.com> In-Reply-To: <20030210223348.F40864@espresso.q9media.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302111343.09969.wes@softweyr.com> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday 10 February 2003 19:33, Mike Barcroft wrote: > Daniel Eischen writes: > > On Mon, 10 Feb 2003, Marcel Moolenaar wrote: > > > On Mon, Feb 10, 2003 at 01:43:33PM -0800, Julian Elischer wrote: > > > > It's a "by invitation" list.. I just "invited" you :-) > > > > > > > > (becasue that's what software I happen to have on my interjet.. > > > > terry might be able to make it run differently but I haven't > > > > the knowledge to do so). > > > > > > Any reason why it isn't a FreeBSD (hosted) mailing list so that > > > people can keep track of what's going on? > > > > Shhhhh. We want to keep out the riff-raff :-) > > You're welcome to use the -standards list to discuss pthreads. The > signal to noise ratio is quite good and there's language-lawyers > galore. I think that's the riff-raff they were referring to. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:48:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E564637B401; Tue, 11 Feb 2003 13:48:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75E8A43FBF; Tue, 11 Feb 2003 13:48:20 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLmKbv064696; Tue, 11 Feb 2003 13:48:20 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLmKoo064695; Tue, 11 Feb 2003 13:48:20 -0800 (PST) Message-Id: <200302112148.h1BLmKoo064695@repoman.freebsd.org> From: Sam Leffler Date: Tue, 11 Feb 2003 13:48:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bridge.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sam 2003/02/11 13:48:20 PST Modified files: sys/net bridge.c Log: PFIL_HOOKS optimization: check if at least one hook is present before munging the IP header to pass to the hooks Revision Changes Path 1.65 +3 -2 src/sys/net/bridge.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:50:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5FA237B401; Tue, 11 Feb 2003 13:50:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D5243FA3; Tue, 11 Feb 2003 13:50:28 -0800 (PST) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLoSbv065269; Tue, 11 Feb 2003 13:50:28 -0800 (PST) (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLoR6a065261; Tue, 11 Feb 2003 13:50:27 -0800 (PST) Message-Id: <200302112150.h1BLoR6a065261@repoman.freebsd.org> From: Oliver Braun Date: Tue, 11 Feb 2003 13:50:27 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obraun 2003/02/11 13:50:27 PST Modified files: . modules Log: vcp --> ports/sysutils/vcp Revision Changes Path 1.6714 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 13:56:24 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D67737B401; Tue, 11 Feb 2003 13:56:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C3BD43FBD; Tue, 11 Feb 2003 13:56:21 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BLuLbv068430; Tue, 11 Feb 2003 13:56:21 -0800 (PST) (envelope-from mike@repoman.freebsd.org) Received: (from mike@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BLuLWC068429; Tue, 11 Feb 2003 13:56:21 -0800 (PST) Message-Id: <200302112156.h1BLuLWC068429@repoman.freebsd.org> From: Mike Barcroft Date: Tue, 11 Feb 2003 13:56:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen Makefile.inc signbit.3 signbit.c src/lib/msun/src math.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2003/02/11 13:56:21 PST Modified files: lib/libc/gen Makefile.inc lib/msun/src math.h Added files: lib/libc/gen signbit.3 signbit.c Log: Implement C99's signbit() macro. Revision Changes Path 1.102 +3 -2 src/lib/libc/gen/Makefile.inc 1.1 +57 -0 src/lib/libc/gen/signbit.3 (new) 1.1 +40 -0 src/lib/libc/gen/signbit.c (new) 1.22 +2 -0 src/lib/msun/src/math.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 14:17:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38FFE37B401; Tue, 11 Feb 2003 14:17:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE28243FBD; Tue, 11 Feb 2003 14:17:49 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BMHnbv075651; Tue, 11 Feb 2003 14:17:49 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BMHnpu075650; Tue, 11 Feb 2003 14:17:49 -0800 (PST) Message-Id: <200302112217.h1BMHnpu075650@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 11 Feb 2003 14:17:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/11 14:17:49 PST Added files: tools/tools/tinderbox Makefile tinderbox.pl Log: Say hello to Tinderbox 2.0, the choice of a new generation! Revision Changes Path 1.1 +8 -0 src/tools/tools/tinderbox/Makefile (new) 1.1 +438 -0 src/tools/tools/tinderbox/tinderbox.pl (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 14:30:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C67E837B405; Tue, 11 Feb 2003 14:30:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5A7743FBD; Tue, 11 Feb 2003 14:30:26 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BMUQbv079705; Tue, 11 Feb 2003 14:30:26 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BMUQPt079703; Tue, 11 Feb 2003 14:30:26 -0800 (PST) Message-Id: <200302112230.h1BMUQPt079703@repoman.freebsd.org> From: Poul-Henning Kamp Date: Tue, 11 Feb 2003 14:30:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys bio.h src/sys/geom geom_io.c geom_kern.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/11 14:30:26 PST Modified files: sys/sys bio.h sys/geom geom_io.c geom_kern.c Log: Implement a bio-taskqueue to reduce number of context switches in disk I/O processing. The intent is that the disk driver in its hardware interrupt routine will simply schedule the bio on the task queue with a routine to finish off whatever needs done. The g_up thread will then schedule this routine, the likely outcome of which is a biodone() which queues the bio on g_up's regular queue where it will be picked up and processed. Compared to the using the regular taskqueue, this saves one contextswitch. Change our scheduling of the g_up and g_down queues to be water-tight, at the cost of breaking the userland regression test-shims. Input and ideas from: scottl Revision Changes Path 1.30 +56 -11 src/sys/geom/geom_io.c 1.23 +0 -10 src/sys/geom/geom_kern.c 1.127 +9 -0 src/sys/sys/bio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 14:34:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B288837B401; Tue, 11 Feb 2003 14:34:10 -0800 (PST) Received: from espresso.q9media.com (espresso.q9media.com [65.39.129.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B49543FB1; Tue, 11 Feb 2003 14:34:09 -0800 (PST) (envelope-from mike@espresso.q9media.com) Received: by espresso.q9media.com (Postfix, from userid 1002) id 44B929C5B; Tue, 11 Feb 2003 17:22:02 -0500 (EST) Date: Tue, 11 Feb 2003 17:22:02 -0500 From: Mike Barcroft To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030211172202.I40864@espresso.q9media.com> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302112217.h1BMHnpu075650@repoman.freebsd.org>; from des@FreeBSD.org on Tue, Feb 11, 2003 at 02:17:49PM -0800 Organization: The FreeBSD Project Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > des 2003/02/11 14:17:49 PST > > Added files: > tools/tools/tinderbox Makefile tinderbox.pl > Log: > Say hello to Tinderbox 2.0, the choice of a new generation! > > Revision Changes Path > 1.1 +8 -0 src/tools/tools/tinderbox/Makefile (new) > 1.1 +438 -0 src/tools/tools/tinderbox/tinderbox.pl (new) I think it would be really cool to send failure reports to developers that have updated a file in the current run. To do this we'd need a verbose option for cvs update or use CVSup so we could get committer logins. Then just create a recipient list that gets appended to with each broken run, and cleared on each successful run. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 15:41: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62E6037B401; Tue, 11 Feb 2003 15:41:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0149A43FAF; Tue, 11 Feb 2003 15:41:01 -0800 (PST) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1BNf0bv005624; Tue, 11 Feb 2003 15:41:00 -0800 (PST) (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1BNf0G7005617; Tue, 11 Feb 2003 15:41:00 -0800 (PST) Message-Id: <200302112341.h1BNf0G7005617@repoman.freebsd.org> From: Greg Lehey Date: Tue, 11 Feb 2003 15:41:00 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.doc access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grog 2003/02/11 15:41:00 PST Modified files: . access access.doc access.master access.ports Log: Choose to receive CVS log messages again. Revision Changes Path 1.555 +1 -0 CVSROOT/access 1.463 +1 -0 CVSROOT/access.doc 1.586 +0 -1 CVSROOT/access.master 1.514 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 15:45:24 2003 Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C70A37B405; Tue, 11 Feb 2003 15:45:22 -0800 (PST) Received: from green.bikeshed.org (alkzv7e9buecpox0@green.bikeshed.org [10.0.0.1] (may be forged)) by green.bikeshed.org (8.12.7/8.12.6) with ESMTP id h1BNjLSq004067; Tue, 11 Feb 2003 18:45:21 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost) by green.bikeshed.org (8.12.7/8.12.6/Submit) with ESMTP id h1BNjKMs004063; Tue, 11 Feb 2003 18:45:21 -0500 (EST) Message-Id: <200302112345.h1BNjKMs004063@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Poul-Henning Kamp Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys bio.h src/sys/geom geom_io.c geom_kern.c In-Reply-To: Your message of "Tue, 11 Feb 2003 14:30:26 PST." <200302112230.h1BMUQPt079703@repoman.freebsd.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 11 Feb 2003 18:45:20 -0500 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Poul-Henning Kamp wrote: > phk 2003/02/11 14:30:26 PST > > Modified files: > sys/sys bio.h > sys/geom geom_io.c geom_kern.c > Log: > Implement a bio-taskqueue to reduce number of context switches in > disk I/O processing. > [...] > Revision Changes Path > 1.30 +56 -11 src/sys/geom/geom_io.c > 1.23 +0 -10 src/sys/geom/geom_kern.c > 1.127 +9 -0 src/sys/sys/bio.h Anyone wanna benchmark this? :-) -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 15:54:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61C2F37B401; Tue, 11 Feb 2003 15:54:16 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51D4143FBD; Tue, 11 Feb 2003 15:54:15 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1BNsEnN099036 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Tue, 11 Feb 2003 15:54:15 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <1a1501c2d228$e1ed5f30$52557f42@errno.com> From: "Sam Leffler" To: "Poul-Henning Kamp" , "Brian F. Feldman" Cc: , , References: <200302112345.h1BNjKMs004063@green.bikeshed.org> Subject: Re: cvs commit: src/sys/sys bio.h src/sys/geom geom_io.c geom_kern.c Date: Tue, 11 Feb 2003 15:54:14 -0800 Organization: Errno Consulting 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.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Poul-Henning Kamp wrote: > > phk 2003/02/11 14:30:26 PST > > > > Modified files: > > sys/sys bio.h > > sys/geom geom_io.c geom_kern.c > > Log: > > Implement a bio-taskqueue to reduce number of context switches in > > disk I/O processing. > > [...] > > Revision Changes Path > > 1.30 +56 -11 src/sys/geom/geom_io.c > > 1.23 +0 -10 src/sys/geom/geom_kern.c > > 1.127 +9 -0 src/sys/sys/bio.h > > Anyone wanna benchmark this? :-) Presumably he's done so before committing it... Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 16:33:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C278037B401; Tue, 11 Feb 2003 16:33:53 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-67-119-52-61.dsl.lsan03.pacbell.net [67.119.52.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE01043F85; Tue, 11 Feb 2003 16:33:50 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id CB24A67C87; Tue, 11 Feb 2003 16:33:42 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 9DAD5759; Tue, 11 Feb 2003 16:33:42 -0800 (PST) Date: Tue, 11 Feb 2003 16:33:42 -0800 From: Kris Kennaway To: Mike Barcroft Cc: Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030212003341.GA30639@rot13.obsecurity.org> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <20030211172202.I40864@espresso.q9media.com> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Feb 11, 2003 at 05:22:02PM -0500, Mike Barcroft wrote: > I think it would be really cool to send failure reports to developers > that have updated a file in the current run. To do this we'd need a > verbose option for cvs update or use CVSup so we could get committer > logins. Then just create a recipient list that gets appended to with > each broken run, and cleared on each successful run. I've wanted to do this for my ports INDEX tinderbox as well, but couldn't work out how to obtain the user names from cvs. Kris --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+SZZlWry0BWjoQKURArrsAKCy0cWxCvt50JIgcdDrr6UuaxtHggCg6PvB 7Rfr4FfBWCb6V4LpGnZWYfI= =JpoY -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 16:42:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1D9337B401; Tue, 11 Feb 2003 16:42:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5469143FBD; Tue, 11 Feb 2003 16:42:13 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C0gDbv028408; Tue, 11 Feb 2003 16:42:13 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C0gDVL028407; Tue, 11 Feb 2003 16:42:13 -0800 (PST) Message-Id: <200302120042.h1C0gDVL028407@repoman.freebsd.org> From: Jeffrey Hsu Date: Tue, 11 Feb 2003 16:42:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_syncache.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/11 16:42:12 PST Modified files: sys/netinet tcp_syncache.c Log: Properly document that syncache timer processing requires an exclusive TCP protocol lock. Revision Changes Path 1.36 +3 -3 src/sys/netinet/tcp_syncache.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 17: 1:48 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id BB8E437B401; Tue, 11 Feb 2003 17:01:45 -0800 (PST) Date: Tue, 11 Feb 2003 19:01:45 -0600 From: Juli Mallett To: Kris Kennaway Cc: Mike Barcroft , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030211190145.B48782@FreeBSD.org> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> <20030212003341.GA30639@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030212003341.GA30639@rot13.obsecurity.org>; from kris@obsecurity.org on Tue, Feb 11, 2003 at 04:33:42PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: Kris Kennaway [ Data: 2003-02-11 ] [ Subjecte: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl ] > On Tue, Feb 11, 2003 at 05:22:02PM -0500, Mike Barcroft wrote: > > > I think it would be really cool to send failure reports to developers > > that have updated a file in the current run. To do this we'd need a > > verbose option for cvs update or use CVSup so we could get committer > > logins. Then just create a recipient list that gets appended to with > > each broken run, and cleared on each successful run. > > I've wanted to do this for my ports INDEX tinderbox as well, but > couldn't work out how to obtain the user names from cvs. If you have a list of the files which changed, intercepting the commit mail doesn't even need done (that'd be the most obvious way to track both deltas and committers), "ident" should spit out $FreeBSD$ in most cases, in others, "cvs status" maybe? Thanx, juli. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 18:21:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11A6D37B401; Tue, 11 Feb 2003 18:21:28 -0800 (PST) Received: from smtp03.iprimus.com.au (smtp03.iprimus.com.au [210.50.30.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D22D43F85; Tue, 11 Feb 2003 18:21:26 -0800 (PST) (envelope-from tim@robbins.dropbear.id.au) Received: from smtp02.iprimus.net.au (210.50.76.70) by smtp03.iprimus.com.au (6.7.010) id 3E3E0A810017AC62; Wed, 12 Feb 2003 13:21:24 +1100 Received: from dilbert.robbins.dropbear.id.au ([210.50.200.72]) by smtp02.iprimus.net.au with Microsoft SMTPSVC(5.0.2195.5600); Wed, 12 Feb 2003 13:21:22 +1100 Received: from dilbert.robbins.dropbear.id.au (1cb2hy61q4m0dc47@localhost [127.0.0.1]) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6) with ESMTP id h1C2LF7W099697; Wed, 12 Feb 2003 13:21:17 +1100 (EST) (envelope-from tim@dilbert.robbins.dropbear.id.au) Received: (from tim@localhost) by dilbert.robbins.dropbear.id.au (8.12.6/8.12.6/Submit) id h1C2LDk7099696; Wed, 12 Feb 2003 13:21:13 +1100 (EST) (envelope-from tim) Date: Wed, 12 Feb 2003 13:21:13 +1100 From: Tim Robbins To: Sean Chittenden Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/games/random Makefile random.6 random.c randomize_fd.c randomize_fd.h Message-ID: <20030212132113.A99070@dilbert.robbins.dropbear.id.au> References: <200302111932.h1BJWIqU016787@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200302111932.h1BJWIqU016787@repoman.freebsd.org>; from seanc@FreeBSD.org on Tue, Feb 11, 2003 at 11:32:18AM -0800 X-OriginalArrivalTime: 12 Feb 2003 02:21:23.0727 (UTC) FILETIME=[7036C1F0:01C2D23D] Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 11, 2003 at 11:32:18AM -0800, Sean Chittenden wrote: > seanc 2003/02/11 11:32:18 PST > > Modified files: > games/random Makefile random.6 random.c > Added files: > games/random randomize_fd.c randomize_fd.h > Log: > Update random(6) to have the ability to randomize a file/stdin based > off of lines or words. See the man page for details. > > Reviewed by: markm > MFC after: 3 days Please fix the style bugs before MFCing it. Also fix randomize_fd() so that it properly handles the case where read() returns less than the amount of data that was requested so that it can work on FIFOs, character devices, sockets, etc. This looks suspiscious too and will mysteriously break if another option is implemented that takes an argument: 151 if ((fd = open(filename, O_RDONLY, 0)) < 0) 152 err(1, "%s", optarg); Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 18:30: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EF6937B405; Tue, 11 Feb 2003 18:30:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C89343FAF; Tue, 11 Feb 2003 18:30:04 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C2U4bv065373; Tue, 11 Feb 2003 18:30:04 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C2U4h1065372; Tue, 11 Feb 2003 18:30:04 -0800 (PST) Message-Id: <200302120230.h1C2U4h1065372@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 11 Feb 2003 18:30:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/11 18:30:04 PST Modified files: share/man/man5 make.conf.5 Log: Document the NOMAN option. Revision Changes Path 1.69 +3 -0 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 18:38:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 058FA37B401; Tue, 11 Feb 2003 18:38:32 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-67-119-52-61.dsl.lsan03.pacbell.net [67.119.52.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 164A543F93; Tue, 11 Feb 2003 18:38:30 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id F290167C87; Tue, 11 Feb 2003 18:38:28 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id D933B1014; Tue, 11 Feb 2003 18:38:28 -0800 (PST) Date: Tue, 11 Feb 2003 18:38:28 -0800 From: Kris Kennaway To: Juli Mallett Cc: Kris Kennaway , Mike Barcroft , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030212023828.GB31134@rot13.obsecurity.org> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> <20030212003341.GA30639@rot13.obsecurity.org> <20030211190145.B48782@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="b5gNqxB1S1yM7hjW" Content-Disposition: inline In-Reply-To: <20030211190145.B48782@FreeBSD.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --b5gNqxB1S1yM7hjW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 11, 2003 at 07:01:45PM -0600, Juli Mallett wrote: > * De: Kris Kennaway [ Data: 2003-02-11 ] > [ Subjecte: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox= .pl ] > > On Tue, Feb 11, 2003 at 05:22:02PM -0500, Mike Barcroft wrote: > >=20 > > > I think it would be really cool to send failure reports to developers > > > that have updated a file in the current run. To do this we'd need a > > > verbose option for cvs update or use CVSup so we could get committer > > > logins. Then just create a recipient list that gets appended to with > > > each broken run, and cleared on each successful run. > >=20 > > I've wanted to do this for my ports INDEX tinderbox as well, but > > couldn't work out how to obtain the user names from cvs. >=20 > If you have a list of the files which changed, intercepting the commit > mail doesn't even need done (that'd be the most obvious way to track > both deltas and committers), "ident" should spit out $FreeBSD$ in most > cases, in others, "cvs status" maybe? Unfortunately 'cvs status' doesn't display a username. You'd have to parse 'cvs log', I suppose. Kris --b5gNqxB1S1yM7hjW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+SbOkWry0BWjoQKURAnadAJ4jRV+3qsG32V2pj5EWk8b0er8gHgCg2WqN DY0pkyPjFnJEIHK5mj8t3zA= =7iKU -----END PGP SIGNATURE----- --b5gNqxB1S1yM7hjW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 18:50:46 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id D3D9637B401; Tue, 11 Feb 2003 18:50:44 -0800 (PST) Date: Tue, 11 Feb 2003 20:50:44 -0600 From: Juli Mallett To: Kris Kennaway Cc: Mike Barcroft , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030211205044.A60350@FreeBSD.org> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> <20030212003341.GA30639@rot13.obsecurity.org> <20030211190145.B48782@FreeBSD.org> <20030212023828.GB31134@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030212023828.GB31134@rot13.obsecurity.org>; from kris@obsecurity.org on Tue, Feb 11, 2003 at 06:38:28PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: Kris Kennaway [ Data: 2003-02-11 ] [ Subjecte: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl ] > > If you have a list of the files which changed, intercepting the commit > > mail doesn't even need done (that'd be the most obvious way to track > > both deltas and committers), "ident" should spit out $FreeBSD$ in most > > cases, in others, "cvs status" maybe? > > Unfortunately 'cvs status' doesn't display a username. You'd have to > parse 'cvs log', I suppose. cvs log -rrevision file | \ perl -pe 'my ($author) = /author: [^;]+;/; print $author . "\n";' Not too much parse trouble. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 19:29:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCEFD37B401; Tue, 11 Feb 2003 19:29:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FFD743F3F; Tue, 11 Feb 2003 19:29:39 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C3Tdbv086768; Tue, 11 Feb 2003 19:29:39 -0800 (PST) (envelope-from mike@repoman.freebsd.org) Received: (from mike@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C3TdjK086767; Tue, 11 Feb 2003 19:29:39 -0800 (PST) Message-Id: <200302120329.h1C3TdjK086767@repoman.freebsd.org> From: Mike Barcroft Date: Tue, 11 Feb 2003 19:29:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen signbit.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2003/02/11 19:29:39 PST Modified files: lib/libc/gen signbit.3 Log: This manual is called SIGNBIT(3) not FPCLASSIFY(3). Revision Changes Path 1.2 +1 -1 src/lib/libc/gen/signbit.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 19:55:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24C3A37B401; Tue, 11 Feb 2003 19:55:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B913143FAF; Tue, 11 Feb 2003 19:55:39 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C3tdbv097458; Tue, 11 Feb 2003 19:55:39 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C3tdGA097457; Tue, 11 Feb 2003 19:55:39 -0800 (PST) Message-Id: <200302120355.h1C3tdGA097457@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 11 Feb 2003 19:55:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail/mail.local mail.local.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2003/02/11 19:55:39 PST Modified files: (Branch: RELENG_4) contrib/sendmail/mail.local mail.local.c Log: MFC: Even if biff is turned off, we still need to set curoff as the code uses that if there is an error writing to the mailbox. Note this bug is only in the FreeBSD code, not the vendor code (which doesn't offer nobiff). Revision Changes Path 1.20 +3 -2 src/contrib/sendmail/mail.local/mail.local.c Revision Changes Path 1.6.6.11 +4 -3 src/contrib/sendmail/mail.local/mail.local.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 19:56:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C39A037B401; Tue, 11 Feb 2003 19:56:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61FEE43FA3; Tue, 11 Feb 2003 19:56:47 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C3ulbv097511; Tue, 11 Feb 2003 19:56:47 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C3ulfY097510; Tue, 11 Feb 2003 19:56:47 -0800 (PST) Message-Id: <200302120356.h1C3ulfY097510@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 11 Feb 2003 19:56:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults rc.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2003/02/11 19:56:47 PST Modified files: (Branch: RELENG_4) etc/defaults rc.conf Log: MFC: /etc/rc.network isn't built to handle a value of "DEFAULT" (nor should it be). Using that string leads rc.network to execute: # sysctl -w vfs.nfs.bufpackets=DEFAULT vfs.nfs.bufpackets: 4 -> 0 Which isn't what was intended. Revision Changes Path 1.168 +1 -1 src/etc/defaults/rc.conf Revision Changes Path 1.53.2.62 +1 -1 src/etc/defaults/rc.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 19:57:23 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B8BE37B401; Tue, 11 Feb 2003 19:57:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 918CB43F85; Tue, 11 Feb 2003 19:57:20 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C3vKbv097553; Tue, 11 Feb 2003 19:57:20 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C3vKrR097552; Tue, 11 Feb 2003 19:57:20 -0800 (PST) Message-Id: <200302120357.h1C3vKrR097552@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 11 Feb 2003 19:57:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2003/02/11 19:57:20 PST Modified files: (Branch: RELENG_4) share/man/man5 rc.conf.5 Log: MFC: Correct the man page for nfs_bufpackets. DEFAULT is not an acceptable value. Revision Changes Path 1.173 +1 -3 src/share/man/man5/rc.conf.5 Revision Changes Path 1.64.2.50 +5 -4 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 19:57:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFFA637B401; Tue, 11 Feb 2003 19:57:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BEFA43FBD; Tue, 11 Feb 2003 19:57:53 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C3vrbv097587; Tue, 11 Feb 2003 19:57:53 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C3vrB8097586; Tue, 11 Feb 2003 19:57:53 -0800 (PST) Message-Id: <200302120357.h1C3vrB8097586@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 11 Feb 2003 19:57:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mail Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2003/02/11 19:57:52 PST Modified files: (Branch: RELENG_4) etc/mail Makefile Log: MFC: Allow multiple aliases files to be rebuilt Revision Changes Path 1.33 +5 -3 src/etc/mail/Makefile Revision Changes Path 1.9.2.23 +5 -3 src/etc/mail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20: 1:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE09837B401; Tue, 11 Feb 2003 20:01:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BCEF43F75; Tue, 11 Feb 2003 20:01:44 -0800 (PST) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C41ibv099569; Tue, 11 Feb 2003 20:01:44 -0800 (PST) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C41imS099568; Tue, 11 Feb 2003 20:01:44 -0800 (PST) Message-Id: <200302120401.h1C41imS099568@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Tue, 11 Feb 2003 20:01:44 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gibbs 2003/02/11 20:01:43 PST Modified files: . access access.master Log: Make the move. Revision Changes Path 1.556 +1 -0 CVSROOT/access 1.587 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20:12:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4256F37B401; Tue, 11 Feb 2003 20:12:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB17043F3F; Tue, 11 Feb 2003 20:12:23 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C4CNbv004277; Tue, 11 Feb 2003 20:12:23 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C4CNnq004273; Tue, 11 Feb 2003 20:12:23 -0800 (PST) Message-Id: <200302120412.h1C4CNnq004273@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 20:12:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/rc.d pccard X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 20:12:23 PST Modified files: etc/rc.d pccard Log: Now that we don't have the NODEVFS case, we can just check to see if a device node exists directly to see if OLDCARD is compiled into the kernel. This eliminates the scary warning that people using NEWCARD are seeing when they have pccard_enable=YES in their /etc/rc.conf files. Revision Changes Path 1.28 +3 -0 src/etc/rc.d/pccard To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20:22:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E36EE37B401; Tue, 11 Feb 2003 20:22:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8485243FDD; Tue, 11 Feb 2003 20:22:41 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C4Mebv008212; Tue, 11 Feb 2003 20:22:40 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C4MeHS008208; Tue, 11 Feb 2003 20:22:40 -0800 (PST) Message-Id: <200302120422.h1C4MeHS008208@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 20:22:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/rc.d devd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 20:22:40 PST Modified files: etc/rc.d devd Log: Start devd after the networking stuff, but before we mount the critical remote systems. This lets us run commands from devd that aren't on the / partition. This also means we can remove some kludges from the networking startup that I added a while ago that caused other problems. There's still a race in starting devd that needs to be fixed in devd so that things present at boot will be configured by the time devd does daemon(). That race will be fixed later. Revision Changes Path 1.5 +2 -2 src/etc/rc.d/devd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20:26:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 955DF37B401; Tue, 11 Feb 2003 20:26:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 388F743FA3; Tue, 11 Feb 2003 20:26:11 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C4QBbv008555; Tue, 11 Feb 2003 20:26:11 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C4QAjM008554; Tue, 11 Feb 2003 20:26:10 -0800 (PST) Message-Id: <200302120426.h1C4QAjM008554@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 20:26:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/rc.d network1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 20:26:10 PST Modified files: etc/rc.d network1 Log: Back out 1.143 and 1.144. They are no longer needed now that we start devd later in the boot process. This should fix all the problems people have had with those commits. Diskless should be working again, and those that mount /usr with nfs should be able to do that again too. Revision Changes Path 1.145 +0 -6 src/etc/rc.d/network1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20:35:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F8D37B401; Tue, 11 Feb 2003 20:35:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58F6D43FA3; Tue, 11 Feb 2003 20:35:38 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C4Zcbv012324; Tue, 11 Feb 2003 20:35:38 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C4Zb0s012323; Tue, 11 Feb 2003 20:35:37 -0800 (PST) Message-Id: <200302120435.h1C4Zb0s012323@repoman.freebsd.org> From: Alan Cox Date: Tue, 11 Feb 2003 20:35:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/11 20:35:37 PST Modified files: sys/i386/i386 pmap.c Log: Remove kptobj. Instead, use VM_ALLOC_NOOBJ. Revision Changes Path 1.385 +2 -9 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20:38:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F75737B401; Tue, 11 Feb 2003 20:38:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D9543F75; Tue, 11 Feb 2003 20:38:20 -0800 (PST) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C4cKbv012471; Tue, 11 Feb 2003 20:38:20 -0800 (PST) (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C4cJRk012470; Tue, 11 Feb 2003 20:38:19 -0800 (PST) Message-Id: <200302120438.h1C4cJRk012470@repoman.freebsd.org> From: Cy Schubert Date: Tue, 11 Feb 2003 20:38:19 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cy 2003/02/11 20:38:19 PST Modified files: . modules Log: Resurrect pam_krb5 for MIT KRB5. Approved by: nectar Revision Changes Path 1.6715 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 20:48:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3489037B401; Tue, 11 Feb 2003 20:48:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDA2943FB1; Tue, 11 Feb 2003 20:48:15 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C4mFbv016029; Tue, 11 Feb 2003 20:48:15 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C4mFra016028; Tue, 11 Feb 2003 20:48:15 -0800 (PST) Message-Id: <200302120448.h1C4mFra016028@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 20:48:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus_cis.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 20:48:15 PST Modified files: sys/dev/cardbus cardbus_cis.c Log: Whitespace nits. Revision Changes Path 1.30 +2 -2 src/sys/dev/cardbus/cardbus_cis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 21:54:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6678C37B401; Tue, 11 Feb 2003 21:54:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B49543F93; Tue, 11 Feb 2003 21:54:23 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C5sMbv040859; Tue, 11 Feb 2003 21:54:22 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C5sMk6040858; Tue, 11 Feb 2003 21:54:22 -0800 (PST) Message-Id: <200302120554.h1C5sMk6040858@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 21:54:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 21:54:22 PST Modified files: sys/dev/cardbus cardbus.c Log: MFp4: Don't reach inside of rman to r_dev. Use rman_get_device instead. Revision Changes Path 1.32 +5 -7 src/sys/dev/cardbus/cardbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 21:57: 5 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98F3C37B401; Tue, 11 Feb 2003 21:57:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 398F743F93; Tue, 11 Feb 2003 21:57:03 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C5v3bv041003; Tue, 11 Feb 2003 21:57:03 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C5v2AS041002; Tue, 11 Feb 2003 21:57:02 -0800 (PST) Message-Id: <200302120557.h1C5v2AS041002@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 21:57:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 21:57:02 PST Modified files: sys/dev/cardbus cardbus.c Log: MFp4: Second part of the kldload patches for cardbus. This makes kldload of a driver for a device that's inserted now appears to work. To make it work, we only do a power cycle of the card if there's no children drivers attached. This likely is papering over bogosities in the power system. The power sequence needs to be re-written, so I'll not worry about the papering over until the re-write. Revision Changes Path 1.33 +11 -0 src/sys/dev/cardbus/cardbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22: 6:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FCBD37B401; Tue, 11 Feb 2003 22:06:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00B5043FD7; Tue, 11 Feb 2003 22:06:31 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C66Vbv044678; Tue, 11 Feb 2003 22:06:31 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C66VPw044677; Tue, 11 Feb 2003 22:06:31 -0800 (PST) Message-Id: <200302120606.h1C66VPw044677@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 11 Feb 2003 22:06:31 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG edwin 2003/02/11 22:06:31 PST Modified files: . modules Log: pear-Archive_Tar --> ports/archivers/pear-Archive_Tar Revision Changes Path 1.6716 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22:11:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 171DA37B405; Tue, 11 Feb 2003 22:11:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC8F643F3F; Tue, 11 Feb 2003 22:11:47 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C6Blbv047227; Tue, 11 Feb 2003 22:11:47 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C6BlFl047220; Tue, 11 Feb 2003 22:11:47 -0800 (PST) Message-Id: <200302120611.h1C6BlFl047220@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 22:11:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus_cis.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 22:11:47 PST Modified files: sys/dev/cardbus cardbus_cis.c Log: MF-p4: Kill the slightly bogus #define for DECODE_PROTOTYPE Be less verbose. Hide most (all I hope) of the CIS parsing behind cardbus_debug_cis (which is set with hw.cardbus.debug_cis=1). This doesn't fix problems with parsing, but should make cardbus less chatty. There appears to be some issues still with the parsing of the CIS, but this won't fix them. Prompted by: scottl Revision Changes Path 1.31 +154 -80 src/sys/dev/cardbus/cardbus_cis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22:22: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E66537B401; Tue, 11 Feb 2003 22:22:03 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E3A43FA3; Tue, 11 Feb 2003 22:22:02 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id h1C6LxRj097055; Tue, 11 Feb 2003 22:21:59 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id h1C6KiQt097040; Tue, 11 Feb 2003 22:20:44 -0800 (PST) Date: Tue, 11 Feb 2003 22:20:43 -0800 From: "David O'Brien" To: Kris Kennaway Cc: Mike Barcroft , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030212062043.GA97007@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> <20030212003341.GA30639@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030212003341.GA30639@rot13.obsecurity.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 11, 2003 at 04:33:42PM -0800, Kris Kennaway wrote: > On Tue, Feb 11, 2003 at 05:22:02PM -0500, Mike Barcroft wrote: > > > I think it would be really cool to send failure reports to developers > > that have updated a file in the current run. To do this we'd need a > > verbose option for cvs update or use CVSup so we could get committer > > logins. Then just create a recipient list that gets appended to with > > each broken run, and cleared on each successful run. > > I've wanted to do this for my ports INDEX tinderbox as well, but > couldn't work out how to obtain the user names from cvs. Use "cvsup -L 2", you'll get committer login's + rev's added. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22:46:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1AA237B401; Tue, 11 Feb 2003 22:46:09 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9AB943FA3; Tue, 11 Feb 2003 22:46:08 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h1C6k73Y087033; Tue, 11 Feb 2003 23:46:07 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 11 Feb 2003 23:46:04 -0700 (MST) Message-Id: <20030211.234604.23470202.imp@bsdimp.com> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cardbus cardbus_cis.c From: "M. Warner Losh" In-Reply-To: <200302120611.h1C6BlFl047220@repoman.freebsd.org> References: <200302120611.h1C6BlFl047220@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <200302120611.h1C6BlFl047220@repoman.freebsd.org> Warner Losh writes: : imp 2003/02/11 22:11:47 PST : : Modified files: : sys/dev/cardbus cardbus_cis.c : Log: : MF-p4: : Kill the slightly bogus #define for DECODE_PROTOTYPE : Be less verbose. Hide most (all I hope) of the CIS : parsing behind cardbus_debug_cis (which is set with : hw.cardbus.debug_cis=1). : : This doesn't fix problems with parsing, but should make cardbus : less chatty. There appears to be some issues still with the : parsing of the CIS, but this won't fix them. : : Prompted by: scottl This also includes fixes to the NID parsing, which will make xircom dc cards' NIC addresses correct (but not for ru@, since he has a different problem). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22:48:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EEB237B401; Tue, 11 Feb 2003 22:48:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C839543FA3; Tue, 11 Feb 2003 22:48:45 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C6mjbv059189; Tue, 11 Feb 2003 22:48:45 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C6mjC5059188; Tue, 11 Feb 2003 22:48:45 -0800 (PST) Message-Id: <200302120648.h1C6mjC5059188@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Tue, 11 Feb 2003 22:48:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 firewire.4 fwe.4 fwohci.4 sbp.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/11 22:48:45 PST Modified files: share/man/man4 firewire.4 fwe.4 fwohci.4 sbp.4 Log: Add description about kldload and security note. Revision Changes Path 1.5 +8 -0 src/share/man/man4/firewire.4 1.3 +6 -0 src/share/man/man4/fwe.4 1.4 +13 -0 src/share/man/man4/fwohci.4 1.5 +7 -0 src/share/man/man4/sbp.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22:50:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E27737B401; Tue, 11 Feb 2003 22:50:33 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-67-119-52-61.dsl.lsan03.pacbell.net [67.119.52.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id D261943F75; Tue, 11 Feb 2003 22:50:31 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 4D4E367B88; Tue, 11 Feb 2003 22:50:31 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 23983759; Tue, 11 Feb 2003 22:50:31 -0800 (PST) Date: Tue, 11 Feb 2003 22:50:31 -0800 From: Kris Kennaway To: David O'Brien Cc: Kris Kennaway , Mike Barcroft , Dag-Erling Smorgrav , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030212065030.GA32133@rot13.obsecurity.org> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> <20030212003341.GA30639@rot13.obsecurity.org> <20030212062043.GA97007@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline In-Reply-To: <20030212062043.GA97007@dragon.nuxi.com> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 11, 2003 at 10:20:43PM -0800, David O'Brien wrote: > > I've wanted to do this for my ports INDEX tinderbox as well, but > > couldn't work out how to obtain the user names from cvs. >=20 > Use "cvsup -L 2", you'll get committer login's + rev's added. But I don't use cvsup to update the collection (because I often need to maintain local patches) Kris --tKW2IUtsqtDRztdT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+Se62Wry0BWjoQKURAhE7AJ9ePoQLoj1saQ9VL848tLPviyAx+QCg4+qk sAa4h0lPJMW1Qc9qKfYoduI= =47Zo -----END PGP SIGNATURE----- --tKW2IUtsqtDRztdT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 22:58:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 558A537B401; Tue, 11 Feb 2003 22:58:23 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E57A43F75; Tue, 11 Feb 2003 22:58:22 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 42C812A8C3; Tue, 11 Feb 2003 22:58:22 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Warner Losh Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cardbus cardbus.c In-Reply-To: <200302120554.h1C5sMk6040858@repoman.freebsd.org> Date: Tue, 11 Feb 2003 22:58:22 -0800 From: Peter Wemm Message-Id: <20030212065822.42C812A8C3@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Warner Losh wrote: > imp 2003/02/11 21:54:22 PST > > Modified files: > sys/dev/cardbus cardbus.c > Log: > MFp4: > Don't reach inside of rman to r_dev. Use rman_get_device instead. Thats fine, if there was a rman_get_device() function.... ../../../dev/cardbus/cardbus.c: In function `cardbus_set_resource': ../../../dev/cardbus/cardbus.c:548: warning: implicit declaration of function `rman_get_device' ../../../dev/cardbus/cardbus.c:548: warning: comparison between pointer and integer ../../../dev/cardbus/cardbus.c: In function `cardbus_delete_resource': ../../../dev/cardbus/cardbus.c:609: warning: comparison between pointer and integer ../../../dev/cardbus/cardbus.c: In function `cardbus_release_all_resources': ../../../dev/cardbus/cardbus.c:666: warning: comparison between pointer and integer ../../../dev/cardbus/cardbus.c: In function `cardbus_alloc_resource': ../../../dev/cardbus/cardbus.c:709: warning: comparison between pointer and integer *** Error code 1 Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Tue Feb 11 23: 0:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 887A637B401; Tue, 11 Feb 2003 23:00:44 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C678C43F93; Tue, 11 Feb 2003 23:00:43 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id h1C70gRj097502; Tue, 11 Feb 2003 23:00:42 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id h1C6xRjq097475; Tue, 11 Feb 2003 22:59:27 -0800 (PST) Date: Tue, 11 Feb 2003 22:59:27 -0800 From: "David O'Brien" To: Kris Kennaway Cc: Mike Barcroft , Dag-Erling Smorgrav , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030212065927.GA97454@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> <20030212003341.GA30639@rot13.obsecurity.org> <20030212062043.GA97007@dragon.nuxi.com> <20030212065030.GA32133@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030212065030.GA32133@rot13.obsecurity.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 11, 2003 at 10:50:31PM -0800, Kris Kennaway wrote: > On Tue, Feb 11, 2003 at 10:20:43PM -0800, David O'Brien wrote: > > > > I've wanted to do this for my ports INDEX tinderbox as well, but > > > couldn't work out how to obtain the user names from cvs. > > > > Use "cvsup -L 2", you'll get committer login's + rev's added. > > But I don't use cvsup to update the collection (because I often need > to maintain local patches) CVSup the ,v files and then do a check out from that. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 23: 1: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC45537B401; Tue, 11 Feb 2003 23:01:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F09A43F75; Tue, 11 Feb 2003 23:01:00 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C710bv063740; Tue, 11 Feb 2003 23:01:00 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C710AK063732; Tue, 11 Feb 2003 23:01:00 -0800 (PST) Message-Id: <200302120701.h1C710AK063732@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 23:01:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys rman.h src/sys/kern subr_rman.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 23:01:00 PST Modified files: sys/sys rman.h sys/kern subr_rman.c Log: Implement rman_get_device # I though this was alredy implemented Pointy hat on my head shown by: peter Revision Changes Path 1.29 +6 -0 src/sys/kern/subr_rman.c 1.19 +1 -0 src/sys/sys/rman.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 23:16:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85C1837B401; Tue, 11 Feb 2003 23:16:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B78E43FA3; Tue, 11 Feb 2003 23:16:16 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C7GFbv070049; Tue, 11 Feb 2003 23:16:16 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C7GFNj070048; Tue, 11 Feb 2003 23:16:15 -0800 (PST) Message-Id: <200302120716.h1C7GFNj070048@repoman.freebsd.org> From: Warner Losh Date: Tue, 11 Feb 2003 23:16:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_dc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/11 23:16:15 PST Modified files: sys/pci if_dc.c Log: Minor correction to comment: PNIC and XIRCOM have eeprom, its just non-standard. Revision Changes Path 1.93 +1 -1 src/sys/pci/if_dc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Tue Feb 11 23:25: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EBA137B401; Tue, 11 Feb 2003 23:24:59 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11FFE43FA3; Tue, 11 Feb 2003 23:24:59 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id ED4A42A8C3; Tue, 11 Feb 2003 23:24:58 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "M. Warner Losh" Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cardbus cardbus_cis.c In-Reply-To: <20030211.234604.23470202.imp@bsdimp.com> Date: Tue, 11 Feb 2003 23:24:58 -0800 From: Peter Wemm Message-Id: <20030212072458.ED4A42A8C3@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "M. Warner Losh" wrote: > In message: <200302120611.h1C6BlFl047220@repoman.freebsd.org> > Warner Losh writes: > : imp 2003/02/11 22:11:47 PST > : > : Modified files: > : sys/dev/cardbus cardbus_cis.c > : Log: > : MF-p4: > : Kill the slightly bogus #define for DECODE_PROTOTYPE > : Be less verbose. Hide most (all I hope) of the CIS > : parsing behind cardbus_debug_cis (which is set with > : hw.cardbus.debug_cis=1). > : > : This doesn't fix problems with parsing, but should make cardbus > : less chatty. There appears to be some issues still with the > : parsing of the CIS, but this won't fix them. > : > : Prompted by: scottl > > This also includes fixes to the NID parsing, which will make xircom > dc cards' NIC addresses correct (but not for ru@, since he has a > different problem). Yes it does, thank you! cbb0: at device 12.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 pcib0: slot 12 INTA is routed to irq 9 cbb1: at device 12.1 on pci0 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 pcib0: slot 12 INTB is routed to irq 9 ... acpi_cpu: throttling enabled, 8 steps (100% to 12.5%), currently 100.0% cardbus1: Invalid BAR number: 27(06) dc0: port 0x1080-0x10ff mem 0x88002000-0x880020ff,0x88002100-0x8800217f irq 9 at device 0.0 on cardbus1 dc0: Ethernet address: 00:10:a4:f6:8e:d1 miibus0: on dc0 tdkphy0: on miibus0 tdkphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ata1-slave: ATAPI identify retries exceeded ad0: 28615MB [58140/16/63] at ata0-master UDMA33 acd0: DVD-ROM at ata1-master PIO4 This fixes the very strange ethernet addresses that it used to have and the off-by-one shifted version for the last few weeks. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Tue Feb 11 23:46: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A4DF37B401; Tue, 11 Feb 2003 23:46:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DA4243F75; Tue, 11 Feb 2003 23:46:01 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C7k1bv080874; Tue, 11 Feb 2003 23:46:01 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C7k1hZ080873; Tue, 11 Feb 2003 23:46:01 -0800 (PST) Message-Id: <200302120746.h1C7k1hZ080873@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 11 Feb 2003 23:46:01 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG edwin 2003/02/11 23:46:01 PST Modified files: . modules Log: pike74 -> ports/lang/pike74 Revision Changes Path 1.6717 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 0: 6:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A7B837B401; Wed, 12 Feb 2003 00:06:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DD1B43FB1; Wed, 12 Feb 2003 00:06:07 -0800 (PST) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C867bv087995; Wed, 12 Feb 2003 00:06:07 -0800 (PST) (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C8673O087994; Wed, 12 Feb 2003 00:06:07 -0800 (PST) Message-Id: <200302120806.h1C8673O087994@repoman.freebsd.org> From: Maxim Konovalov Date: Wed, 12 Feb 2003 00:06:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults pccard.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2003/02/12 00:06:07 PST Modified files: (Branch: RELENG_4) etc/defaults pccard.conf Log: MFC rev. 1.257: ep(4) does not have link0 and link1 options. Revision Changes Path 1.98.2.36 +2 -3 src/etc/defaults/pccard.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 0:19: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E89E937B401; Wed, 12 Feb 2003 00:18:58 -0800 (PST) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAD3D43F93; Wed, 12 Feb 2003 00:18:57 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1C8IieJ006422; Wed, 12 Feb 2003 09:18:44 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: "Sam Leffler" Cc: "Brian F. Feldman" , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys bio.h src/sys/geom geom_io.c geom_kern.c From: phk@phk.freebsd.dk In-Reply-To: Your message of "Tue, 11 Feb 2003 15:54:14 PST." <1a1501c2d228$e1ed5f30$52557f42@errno.com> Date: Wed, 12 Feb 2003 09:18:44 +0100 Message-ID: <6421.1045037924@critter.freebsd.dk> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <1a1501c2d228$e1ed5f30$52557f42@errno.com>, "Sam Leffler" writes: >> Poul-Henning Kamp wrote: >> > phk 2003/02/11 14:30:26 PST >> > >> > Modified files: >> > sys/sys bio.h >> > sys/geom geom_io.c geom_kern.c >> > Log: >> > Implement a bio-taskqueue to reduce number of context switches in >> > disk I/O processing. >> > [...] >> > Revision Changes Path >> > 1.30 +56 -11 src/sys/geom/geom_io.c >> > 1.23 +0 -10 src/sys/geom/geom_kern.c >> > 1.127 +9 -0 src/sys/sys/bio.h >> >> Anyone wanna benchmark this? :-) > >Presumably he's done so before committing it... Actually not, I have only tested it for functionality, but I belive Scott is close to being able to benchmark it. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | 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-src" in the body of the message From owner-cvs-src Wed Feb 12 0:25:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1974437B401; Wed, 12 Feb 2003 00:25:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADAF943FAF; Wed, 12 Feb 2003 00:25:31 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C8PVbv095135; Wed, 12 Feb 2003 00:25:31 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C8PVMS095134; Wed, 12 Feb 2003 00:25:31 -0800 (PST) Message-Id: <200302120825.h1C8PVMS095134@repoman.freebsd.org> From: Wilko Bulte Date: Wed, 12 Feb 2003 00:25:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2003/02/12 00:25:31 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Note that graphics performance on Miata generally is better with the graphics card in a 64bit PCI slot. Revision Changes Path 1.56 +2 -1 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 0:33:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 118B037B401; Wed, 12 Feb 2003 00:33:54 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC10743FA3; Wed, 12 Feb 2003 00:33:52 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id D9EB2536E; Wed, 12 Feb 2003 09:33:50 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mike Barcroft Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 09:33:50 +0100 In-Reply-To: <20030211172202.I40864@espresso.q9media.com> (Mike Barcroft's message of "Tue, 11 Feb 2003 17:22:02 -0500") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mike Barcroft writes: > I think it would be really cool to send failure reports to developers > that have updated a file in the current run. Figuring out who those people are is Very Difficult[tm]. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 0:46: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76D7837B401; Wed, 12 Feb 2003 00:46:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D89BA43FA3; Wed, 12 Feb 2003 00:46:07 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C8k7bv002481; Wed, 12 Feb 2003 00:46:07 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C8k70X002480; Wed, 12 Feb 2003 00:46:07 -0800 (PST) Message-Id: <200302120846.h1C8k70X002480@repoman.freebsd.org> From: Wilko Bulte Date: Wed, 12 Feb 2003 00:46:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2003/02/12 00:46:07 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Note that graphics performance on Miata generally is better with the graphics card in a 64bit PCI slot. Revision Changes Path 1.13.2.32 +2 -1 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 0:55:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 881A937B401; Wed, 12 Feb 2003 00:55:35 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 375B243F85; Wed, 12 Feb 2003 00:55:34 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1]) by cirb503493.alcatel.com.au (8.12.5/8.12.5) with ESMTP id h1C8tWLZ053790; Wed, 12 Feb 2003 19:55:32 +1100 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.6/8.12.5/Submit) id h1C8tW3r053789; Wed, 12 Feb 2003 19:55:32 +1100 (EST) Date: Wed, 12 Feb 2003 19:55:32 +1100 From: Peter Jeremy To: "David O'Brien" Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, legacy-committers@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/yacc skeleton.c Message-ID: <20030212085531.GA53497@cirb503493.alcatel.com.au> References: <200302070339.h173dRvU071460@repoman.freebsd.org> <20030208062131.GA7362@dragon.nuxi.com> <20030208063406.GG88781@elvis.mu.org> <20030208064621.GA7566@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030208064621.GA7566@dragon.nuxi.com> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 07, 2003 at 10:46:21PM -0800, David O'Brien wrote: >If one really, really must do something about this, add a new switch to >Yacc telling it you want to target only FreeBSD. If someone really wants to go this path, I'd suggest they either use a "4.4BSD" switch - which assumes the presence of - or a "gcc={2,3}" switch - which allows the use of gcc-specific keywords. This would make the "clean" yacc output usable on systems other than FreeBSD. Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 1:13:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D504B37B401; Wed, 12 Feb 2003 01:13:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7879743FAF; Wed, 12 Feb 2003 01:13:37 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C9Dbbv013080; Wed, 12 Feb 2003 01:13:37 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C9Dbfu013073; Wed, 12 Feb 2003 01:13:37 -0800 (PST) Message-Id: <200302120913.h1C9Dbfu013073@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 01:13:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/12 01:13:36 PST Modified files: tools/tools/tinderbox tinderbox.pl Log: Make "CURRENT" the default branch, and special-case it in the update code so it results in -A rather than -rCURRENT. Revision Changes Path 1.2 +2 -2 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 1:16:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 287A637B401; Wed, 12 Feb 2003 01:16:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC40943F3F; Wed, 12 Feb 2003 01:16:24 -0800 (PST) (envelope-from alane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C9GObv013261; Wed, 12 Feb 2003 01:16:24 -0800 (PST) (envelope-from alane@repoman.freebsd.org) Received: (from alane@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C9GO0O013260; Wed, 12 Feb 2003 01:16:24 -0800 (PST) Message-Id: <200302120916.h1C9GO0O013260@repoman.freebsd.org> From: Alan Eldridge Date: Wed, 12 Feb 2003 01:16:24 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alane 2003/02/12 01:16:24 PST Modified files: . modules Log: ruby-jttui --> ports/devel/ruby-jttui Revision Changes Path 1.6718 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 1:25:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B07137B401; Wed, 12 Feb 2003 01:25:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACAB743F3F; Wed, 12 Feb 2003 01:25:38 -0800 (PST) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C9Pcbv016894; Wed, 12 Feb 2003 01:25:38 -0800 (PST) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C9PciG016893; Wed, 12 Feb 2003 01:25:38 -0800 (PST) Message-Id: <200302120925.h1C9PciG016893@repoman.freebsd.org> From: Luigi Rizzo Date: Wed, 12 Feb 2003 01:25:38 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2003/02/12 01:25:38 PST Modified files: . access access.master access.ports Log: move myself into src & port committer lists Revision Changes Path 1.557 +1 -0 CVSROOT/access 1.588 +0 -1 CVSROOT/access.master 1.515 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 1:32:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D39237B401; Wed, 12 Feb 2003 01:32:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B236A43FA3; Wed, 12 Feb 2003 01:32:43 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C9Whbv020326; Wed, 12 Feb 2003 01:32:43 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C9WhUo020325; Wed, 12 Feb 2003 01:32:43 -0800 (PST) Message-Id: <200302120932.h1C9WhUo020325@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 12 Feb 2003 01:32:43 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG edwin 2003/02/12 01:32:43 PST Modified files: . modules Log: unix2tcp --> ports/net/unix2tcp Revision Changes Path 1.6719 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 1:48:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24EDD37B401; Wed, 12 Feb 2003 01:48:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74EFC43FD7; Wed, 12 Feb 2003 01:48:27 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C9mRbv024286; Wed, 12 Feb 2003 01:48:27 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C9mRNd024285; Wed, 12 Feb 2003 01:48:27 -0800 (PST) Message-Id: <200302120948.h1C9mRNd024285@repoman.freebsd.org> From: Poul-Henning Kamp Date: Wed, 12 Feb 2003 01:48:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_int.h geom_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/12 01:48:27 PST Modified files: sys/geom geom_int.h geom_subr.c Log: Implement a handle for efficient implementation of perforations in lower extremities. Setting bit 4 in debugflags (sysctl kern.geom.debugflags=16) will allow any open to succeed on rank#1 providers. This will generally correspond to the physical disk devices: ad0, da0, md0 etc. This fundamentally violates the mechanics of GEOMs autoconfiguration, and is only provided as a debugging facility, so obviously error reports on GEOM where this bit is or has been set will not be accepted. Revision Changes Path 1.11 +7 -4 src/sys/geom/geom_int.h 1.30 +6 -3 src/sys/geom/geom_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 1:51:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E779237B401; Wed, 12 Feb 2003 01:51:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A4943FB1; Wed, 12 Feb 2003 01:51:47 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1C9plbv026850; Wed, 12 Feb 2003 01:51:47 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1C9pl7l026849; Wed, 12 Feb 2003 01:51:47 -0800 (PST) Message-Id: <200302120951.h1C9pl7l026849@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 01:51:47 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/whereintheworld whereintheworld.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/12 01:51:47 PST Modified files: tools/tools/whereintheworld whereintheworld.pl Log: Teach whereintheworld to preserve TinderboxNG log messages. Revision Changes Path 1.4 +5 -1 src/tools/tools/whereintheworld/whereintheworld.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 4:35:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0683E37B401; Wed, 12 Feb 2003 04:35:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C09743FAF; Wed, 12 Feb 2003 04:35:26 -0800 (PST) (envelope-from mwlucas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CCZQbv085481; Wed, 12 Feb 2003 04:35:26 -0800 (PST) (envelope-from mwlucas@repoman.freebsd.org) Received: (from mwlucas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CCZQkn085480; Wed, 12 Feb 2003 04:35:26 -0800 (PST) Message-Id: <200302121235.h1CCZQkn085480@repoman.freebsd.org> From: Michael Lucas Date: Wed, 12 Feb 2003 04:35:26 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mwlucas 2003/02/12 04:35:26 PST Modified files: . access.master Log: Pull myself. Revision Changes Path 1.589 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 5: 1: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A749E37B401; Wed, 12 Feb 2003 05:01:00 -0800 (PST) Received: from gvr.gvr.org (gvr.gvr.org [212.61.40.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C58043FAF; Wed, 12 Feb 2003 05:00:59 -0800 (PST) (envelope-from guido@gvr.org) Received: by gvr.gvr.org (Postfix, from userid 657) id 6FCA31B; Wed, 12 Feb 2003 14:00:57 +0100 (CET) Date: Wed, 12 Feb 2003 14:00:57 +0100 From: Guido van Rooij To: Jeffrey Hsu Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c Message-ID: <20030212130057.GA27427@gvr.gvr.org> References: <200302120042.h1C0gDVL028407@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302120042.h1C0gDVL028407@repoman.freebsd.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 11, 2003 at 04:42:12PM -0800, Jeffrey Hsu wrote: > hsu 2003/02/11 16:42:12 PST > > Modified files: > sys/netinet tcp_syncache.c > Log: > Properly document that syncache timer processing requires an > exclusive TCP protocol lock. This seems like a strange way of telling us you need a write-lock instead of a read lock... -Guido To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 5:20:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A80C537B401; Wed, 12 Feb 2003 05:20:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 498A243FBD; Wed, 12 Feb 2003 05:20:40 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CDKebv000606; Wed, 12 Feb 2003 05:20:40 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CDKewE000600; Wed, 12 Feb 2003 05:20:40 -0800 (PST) Message-Id: <200302121320.h1CDKewE000600@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Wed, 12 Feb 2003 05:20:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usb_quirks.c usbdevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/12 05:20:39 PST Modified files: sys/dev/usb usb_quirks.c usbdevs Log: Add support YAMAHA NetVolante Routers NetVolante RTA54i Broadband&ISDN Router NetVolante RTA55i Broadband VoIP Router NetVolante RTW65b Broadband Wireless Router NetVolante RTW65i Broadband&ISDN Wireless Router PR: bin/42574 Submitted by: Yoshihiko Sarumaru Revision Changes Path 1.32 +9 -0 src/sys/dev/usb/usb_quirks.c 1.113 +4 -0 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 5:22:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11DE437B401; Wed, 12 Feb 2003 05:22:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A873F43FB1; Wed, 12 Feb 2003 05:22:55 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CDMtbv003303; Wed, 12 Feb 2003 05:22:55 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CDMt9r003302; Wed, 12 Feb 2003 05:22:55 -0800 (PST) Message-Id: <200302121322.h1CDMt9r003302@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Wed, 12 Feb 2003 05:22:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/12 05:22:55 PST Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Sync to 1.113 of usbdevs Revision Changes Path 1.122 +5 -1 src/sys/dev/usb/usbdevs.h 1.122 +25 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 6: 0:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E83CE37B401; Wed, 12 Feb 2003 06:00:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B4AA43F93; Wed, 12 Feb 2003 06:00:16 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CE0Gbv014192; Wed, 12 Feb 2003 06:00:16 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CE0G4A014191; Wed, 12 Feb 2003 06:00:16 -0800 (PST) Message-Id: <200302121400.h1CE0G4A014191@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Wed, 12 Feb 2003 06:00:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usb_quirks.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/12 06:00:15 PST Modified files: (Branch: RELENG_4) sys/dev/usb usb_quirks.c Log: MFC: 1.27: support bcdDevice == ANY Revision Changes Path 1.21.2.7 +1 -1 src/sys/dev/usb/usb_quirks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 6: 6: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7646C37B401; Wed, 12 Feb 2003 06:05:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16E0E43F93; Wed, 12 Feb 2003 06:05:59 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CE5wbv017689; Wed, 12 Feb 2003 06:05:58 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CE5wia017688; Wed, 12 Feb 2003 06:05:58 -0800 (PST) Message-Id: <200302121405.h1CE5wia017688@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Wed, 12 Feb 2003 06:05:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usb_quirks.c usbdevs X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/12 06:05:58 PST Modified files: (Branch: RELENG_4) sys/dev/usb usb_quirks.c usbdevs Log: MFC: Add support YAMAHA NetVolante Routers usbdevs: 1.113 usb_quirks.c: 1.32 Revision Changes Path 1.21.2.8 +9 -0 src/sys/dev/usb/usb_quirks.c 1.11.2.37 +4 -0 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 6: 7:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 141E137B401; Wed, 12 Feb 2003 06:07:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA25A43FAF; Wed, 12 Feb 2003 06:07:24 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CE7Obv017768; Wed, 12 Feb 2003 06:07:24 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CE7OqD017767; Wed, 12 Feb 2003 06:07:24 -0800 (PST) Message-Id: <200302121407.h1CE7OqD017767@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Wed, 12 Feb 2003 06:07:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/12 06:07:24 PST Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs.h usbdevs_data.h Log: Sync to 1.11.2.37 of usbdevs Revision Changes Path 1.32.2.35 +5 -1 src/sys/dev/usb/usbdevs.h 1.32.2.35 +25 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 7:42: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32CDA37B401; Wed, 12 Feb 2003 07:41:59 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACEE43F3F; Wed, 12 Feb 2003 07:41:57 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id CAA29984; Thu, 13 Feb 2003 02:41:54 +1100 Date: Thu, 13 Feb 2003 02:42:15 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Warner Losh Cc: src-committers@FreeBSD.org, , Subject: Re: cvs commit: src/sys/sys rman.h src/sys/kern subr_rman.c In-Reply-To: <200302120701.h1C710AK063732@repoman.freebsd.org> Message-ID: <20030213023337.N8859-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 11 Feb 2003, Warner Losh wrote: > imp 2003/02/11 23:01:00 PST > > Modified files: > sys/sys rman.h > sys/kern subr_rman.c > Log: > Implement rman_get_device > > # I though this was alredy implemented > > Pointy hat on my head shown by: peter > > Revision Changes Path > 1.29 +6 -0 src/sys/kern/subr_rman.c > 1.19 +1 -0 src/sys/sys/rman.h I thought that the original bug was caused by rman implementing simple-to- implement interfaces like this using macros (and thus having to export its internals). It now uses functions for all function-like interfaces, but it still exports the internals. One of the internals is the layering violation of depending on bus space typedefs. All clients have to know about this and include before . Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 8:20:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27B537B401; Wed, 12 Feb 2003 08:20:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6355D43F93; Wed, 12 Feb 2003 08:20:47 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CGKlbv065149; Wed, 12 Feb 2003 08:20:47 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CGKlAN065147; Wed, 12 Feb 2003 08:20:47 -0800 (PST) Message-Id: <200302121620.h1CGKlAN065147@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 12 Feb 2003 08:20:47 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nork 2003/02/12 08:20:47 PST Modified files: . modules Log: gtkglext --> ports/x11-toolkits/gtkglext Revision Changes Path 1.6720 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 8:28:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E52C237B406 for ; Wed, 12 Feb 2003 08:28:19 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F8543F75 for ; Wed, 12 Feb 2003 08:28:07 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1CGRqHk022944 for ; Wed, 12 Feb 2003 18:27:52 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1CGRqHR022922 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 12 Feb 2003 18:27:52 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1CGRjdg022888; Wed, 12 Feb 2003 18:27:45 +0200 (EET) Date: Wed, 12 Feb 2003 18:27:45 +0200 From: Ruslan Ermilov To: Dag-Erling Smorgrav Cc: Mike Barcroft , src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/tools/tools/tinderbox Makefile tinderbox.pl Message-ID: <20030212162745.GB16512@sunbay.com> References: <200302112217.h1BMHnpu075650@repoman.freebsd.org> <20030211172202.I40864@espresso.q9media.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="A6N2fC+uXW/VQSAv" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --A6N2fC+uXW/VQSAv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 12, 2003 at 09:33:50AM +0100, Dag-Erling Smorgrav wrote: > Mike Barcroft writes: > > I think it would be really cool to send failure reports to developers > > that have updated a file in the current run. >=20 > Figuring out who those people are is Very Difficult[tm]. >=20 Shouldn't be. You set up a tinderbox to run at specific times during the day, you use the -D option of update/checkout to pick up the files. You then check what files have changed (new/updated/deleted). You then parse "cvs rlog" for changed files with the -d D1 From: Tor Egge Date: Wed, 12 Feb 2003 08:30:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_disk.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tegge 2003/02/12 08:30:46 PST Modified files: sys/geom geom_disk.c Log: Correctly set bio_data in cloned children when cutting up large requests. Revision Changes Path 1.51 +1 -1 src/sys/geom/geom_disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 9:26:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8232237B401; Wed, 12 Feb 2003 09:26:30 -0800 (PST) Received: from fump.kawo2.rwth-aachen.de (fump.kawo2.RWTH-Aachen.DE [134.130.181.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6268143F93; Wed, 12 Feb 2003 09:26:29 -0800 (PST) (envelope-from alex@fump.kawo2.rwth-aachen.de) Received: from fump.kawo2.rwth-aachen.de (localhost [127.0.0.1]) by fump.kawo2.rwth-aachen.de (8.12.6/8.12.6) with ESMTP id h1CHQRBs070603; Wed, 12 Feb 2003 18:26:28 +0100 (CET) (envelope-from alex@fump.kawo2.rwth-aachen.de) Received: (from alex@localhost) by fump.kawo2.rwth-aachen.de (8.12.6/8.12.6/Submit) id h1CHQR5C070602; Wed, 12 Feb 2003 18:26:27 +0100 (CET) Date: Wed, 12 Feb 2003 18:26:27 +0100 From: Alexander Langer To: Brian Feldman Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sound/pcm dsp.c Message-ID: <20030212172627.GC70239@fump.kawo2.rwth-aachen.de> References: <200302111658.h1BGwsjJ059397@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302111658.h1BGwsjJ059397@repoman.freebsd.org> X-PGP-Fingerprint: 7EC1 5B98 4554 2A63 9079 2B2F 9A94 CD6F 7F14 EFA4 X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Brian Feldman (green@FreeBSD.org): > Sound devices were being leaked by dsp_open() not actually releasing the > channels it allocates if chn_reset() on them resulted in failure. > ARROW'D! Not having looked further: Does this happen to fix the problems people are seeing when autovchans are enabled? thanks Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10: 3:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E86C437B401; Wed, 12 Feb 2003 10:03:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B69F43F75; Wed, 12 Feb 2003 10:03:55 -0800 (PST) (envelope-from davidc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CI3tbv003217; Wed, 12 Feb 2003 10:03:55 -0800 (PST) (envelope-from davidc@repoman.freebsd.org) Received: (from davidc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CI3t2v003216; Wed, 12 Feb 2003 10:03:55 -0800 (PST) Message-Id: <200302121803.h1CI3t2v003216@repoman.freebsd.org> From: Chad David Date: Wed, 12 Feb 2003 10:03:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/yacc skeleton.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG davidc 2003/02/12 10:03:55 PST Modified files: usr.bin/yacc skeleton.c Log: Add __unused to the declaration of yyrcsid in a more portable way. Discussed with: alfred, bde, jmallett, obrien Revision Changes Path 1.37 +4 -1 src/usr.bin/yacc/skeleton.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:16:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98D1E37B401; Wed, 12 Feb 2003 10:16:25 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8D2F43FBF; Wed, 12 Feb 2003 10:16:24 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id D047E2A8C6; Wed, 12 Feb 2003 10:16:24 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Tor Egge Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom geom_disk.c In-Reply-To: <200302121630.h1CGUkEO068618@repoman.freebsd.org> Date: Wed, 12 Feb 2003 10:16:24 -0800 From: Peter Wemm Message-Id: <20030212181624.D047E2A8C6@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Tor Egge wrote: > tegge 2003/02/12 08:30:46 PST > > Modified files: > sys/geom geom_disk.c > Log: > Correctly set bio_data in cloned children when cutting up large requests. Something is broken.. Did you just fix this? Waiting 2 seconds for SCSI devices to settle da0 at mpt0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: Serial Number 3FD1L4YT da0: 160.000MB/s transfers (80.000MHz, offset 63, 16bit), Tagged Queueing Enabled da0: 34732MB (71132960 512 byte sectors: 255H 63S/T 4427C) GEOM: new disk da0 [hang] Stopped at siointr1+0x5e1: addl r14=-2062400,gp db> ps pid proc addr uid ppid pgrp flag stat wmesg wchan cmd 43 e00000003e0a8918 a000000022004000 0 0 0 0000204 norm[SLPQ nfsidl e000000000a67588][SLP] nfsiod 3 42 e00000003e0a8c20 a000000022006000 0 0 0 0000204 norm[SLPQ nfsidl e000000000a67580][SLP] nfsiod 2 41 e00000003e0a8f28 a000000022008000 0 0 0 0000204 norm[SLPQ nfsidl e000000000a67578][SLP] nfsiod 1 40 e00000003e0a9230 a00000002200a000 0 0 0 0000204 norm[SLPQ nfsidl e000000000a67570][SLP] nfsiod 0 39 e00000003e0a9538 a00000002200c000 0 0 0 0000204 norm[SLPQ syncer e000000000a58210][SLP] syncer 38 e00000003e0a9840 a00000002200e000 0 0 0 0000204 norm[SLPQ vlruwt e00000003e0a9840][SLP] vnlru 37 e00000003e0a9b48 a000000022010000 0 0 0 0000204 norm[SLPQ psleep e000000000adc128][SLP] bufdaemon 36 e00000003e314918 a000000021c3a000 0 0 0 000020c norm[RUNQ] pagezero 9 e00000003e314c20 a000000021c3c000 0 0 0 0000204 norm[SLPQ psleep e000000000ade6b4][SLP] vmdaemon 8 e00000003e314f28 a000000021c3e000 0 0 0 0000204 norm[SLPQ psleep e000000000a6dd9c][SLP] pagedaemon 35 e00000003e315230 a000000021c40000 0 0 0 0000204 new [IWAIT] intr: sio4 34 e00000003e315538 a000000021c42000 0 0 0 0000204 new [IWAIT] intr: sio3 33 e00000003e315840 a000000021c44000 0 0 0 0000204 norm[RUNQ] swi0: tty:sio 32 e00000003e315b48 a000000021c46000 0 0 0 0000204 norm[IWAIT] intr: puc0 31 e00000003e30a000 a000000021c48000 0 0 0 0000204 new [IWAIT] intr: bge0 30 e00000003e30a308 a000000021c4a000 0 0 0 0000204 norm[IWAIT] intr: mpt1 29 e00000003e30a610 a000000021c4c000 0 0 0 0000204 norm[RUNQ] intr: mpt0 28 e00000003e30a918 a000000021c4e000 0 0 0 0000204 new [IWAIT] intr: fxp0 27 e00000003e30ac20 a000000021c50000 0 0 0 0000204 norm[IWAIT] intr: atapci0+ 26 e00000003e30af28 a000000021c52000 0 0 0 0000204 norm[SLPQ usbevt e000000001e05420][SLP] usb1 25 e00000003e2fa308 a00000001e822000 0 0 0 0000204 new [IWAIT] intr: ohci1 24 e00000003e2fa610 a00000001e824000 0 0 0 0000204 norm[SLPQ usbtsk e000000000a47c68][SLP] usbtask 23 e00000003e2fa918 a00000001e826000 0 0 0 0000204 norm[SLPQ usbevt e000000000482420][SLP] usb0 22 e00000003e2fac20 a00000001e828000 0 0 0 0000204 new [IWAIT] intr: ohci0 21 e00000003e2faf28 a00000001e82a000 0 0 0 0000204 norm[SLPQ nothing e000000000aa1528][SLP] acpi_thermal 7 e00000003e2fb230 a00000001e82c000 0 0 0 0000204 norm[SLPQ actask e000000000a38368][SLP] acpi_task2 6 e00000003e2fb538 a00000001e82e000 0 0 0 0000204 norm[SLPQ actask e000000000a38368][SLP] acpi_task1 5 e00000003e2fb840 a00000001e830000 0 0 0 0000204 norm[SLPQ actask e000000000a38368][SLP] acpi_task0 20 e00000003e2fbb48 a00000001e832000 0 0 0 0000204 new [IWAIT] intr: acpi0 19 e00000003e314000 a000000021c34000 0 0 0 0000204 new [IWAIT] swi5: acpitaskq 18 e00000003e314308 a000000021c36000 0 0 0 0000204 new [IWAIT] swi5: task queue 17 e00000003e314610 a000000021c38000 0 0 0 0000204 norm[IWAIT] swi3: cambio 16 e00000003e2f0000 a00000001e80c000 0 0 0 0000204 new [IWAIT] swi2: camnet 15 e00000003e2f0308 a00000001e80e000 0 0 0 0000204 norm[SLPQ sleep e000000000aa1920][SLP] random 4 e00000003e2f0610 a00000001e810000 0 0 0 0000204 norm[CPU 0] g_down 3 e00000003e2f0918 a00000001e812000 0 0 0 0000204 norm[SLPQ g_up e000000000a4ed28][SLP] g_up 2 e00000003e2f0c20 a00000001e814000 0 0 0 0000204 norm[SLPQ gread e0000000023e1000][SLP] g_event 14 e00000003e2f0f28 a00000001e816000 0 0 0 0000204 new [IWAIT] swi4: vm 13 e00000003e2f1230 a00000001e818000 0 0 0 000020c norm[RUNQ] swi6: tty:sio clock 12 e00000003e2f1538 a00000001e81a000 0 0 0 0000204 new [IWAIT] swi1: net 11 e00000003e2f1840 a00000001e81c000 0 0 0 000020c norm[Can run] idle 1 e00000003e2f1b48 a00000001e81e000 0 0 0 0000200 norm[SLPQ g_waitidle e000000000ad0ce0][SLP] swapper 10 e00000003e2fa000 a00000001e820000 0 0 0 0000204 norm[CVQ ktrace e000000000ad5870][SLP] ktrace 0 e000000000a4ff88 e000000000002000 0 0 0 0000200 norm[SLPQ sched e000000000a4ff88][SLP] swapper db> The process that is about to become init is waiting for geom to stop, but it has hung instead. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Wed Feb 12 10:35:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F1F837B401; Wed, 12 Feb 2003 10:35:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F12C143FB1; Wed, 12 Feb 2003 10:35:45 -0800 (PST) (envelope-from patrick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CIZjbv013955; Wed, 12 Feb 2003 10:35:45 -0800 (PST) (envelope-from patrick@repoman.freebsd.org) Received: (from patrick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CIZjig013954; Wed, 12 Feb 2003 10:35:45 -0800 (PST) Message-Id: <200302121835.h1CIZjig013954@repoman.freebsd.org> From: "Patrick S. Gardella" Date: Wed, 12 Feb 2003 10:35:45 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG patrick 2003/02/12 10:35:45 PST Modified files: . access.master Log: Complete the final step I missed the first time. Remove myself. Revision Changes Path 1.590 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:49: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8774D37B401; Wed, 12 Feb 2003 10:48:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E3343FAF; Wed, 12 Feb 2003 10:48:58 -0800 (PST) (envelope-from mph@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CImvbv017606; Wed, 12 Feb 2003 10:48:57 -0800 (PST) (envelope-from mph@repoman.freebsd.org) Received: (from mph@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CImvZf017605; Wed, 12 Feb 2003 10:48:57 -0800 (PST) Message-Id: <200302121848.h1CImvZf017605@repoman.freebsd.org> From: Matthew Hunt Date: Wed, 12 Feb 2003 10:48:57 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mph 2003/02/12 10:48:57 PST Modified files: . access access.master access.ports Log: Move myself to ports and src. Revision Changes Path 1.558 +1 -0 CVSROOT/access 1.591 +0 -1 CVSROOT/access.master 1.516 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:55:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C01E637B401; Wed, 12 Feb 2003 10:55:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FF1B43FB1; Wed, 12 Feb 2003 10:55:45 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CItjbv021210; Wed, 12 Feb 2003 10:55:45 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CItibN021209; Wed, 12 Feb 2003 10:55:44 -0800 (PST) Message-Id: <200302121855.h1CItibN021209@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 10:55:44 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 10:55:44 PST Modified files: . access.master Log: julian has moved, remove from access.master as per instructions Revision Changes Path 1.592 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:56:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31FF837B401; Wed, 12 Feb 2003 10:56:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C669A43FB1; Wed, 12 Feb 2003 10:56:11 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CIuBbv021255; Wed, 12 Feb 2003 10:56:11 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CIuB8T021254; Wed, 12 Feb 2003 10:56:11 -0800 (PST) Message-Id: <200302121856.h1CIuB8T021254@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 10:56:11 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 10:56:11 PST Modified files: . access.master Log: arved has moved, remove from access.master as per instructions Revision Changes Path 1.593 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:56:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2ACF37B401; Wed, 12 Feb 2003 10:56:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428FA43F75; Wed, 12 Feb 2003 10:56:43 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CIuhbv021292; Wed, 12 Feb 2003 10:56:43 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CIuhOn021291; Wed, 12 Feb 2003 10:56:43 -0800 (PST) Message-Id: <200302121856.h1CIuhOn021291@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 10:56:42 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 10:56:42 PST Modified files: . access.master Log: davidxu has moved, remove from access.master as per instructions Revision Changes Path 1.594 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:57: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 775F537B405; Wed, 12 Feb 2003 10:57:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB33343FBF; Wed, 12 Feb 2003 10:57:04 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CIv4bv021338; Wed, 12 Feb 2003 10:57:04 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CIv4MT021337; Wed, 12 Feb 2003 10:57:04 -0800 (PST) Message-Id: <200302121857.h1CIv4MT021337@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 10:57:04 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 10:57:04 PST Modified files: . access.master Log: jim has moved, remove from access.master as per instructions Revision Changes Path 1.595 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:58: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7DF537B401; Wed, 12 Feb 2003 10:57:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46E6743F85; Wed, 12 Feb 2003 10:57:58 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CIvwbv021398; Wed, 12 Feb 2003 10:57:58 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CIvwGn021397; Wed, 12 Feb 2003 10:57:58 -0800 (PST) Message-Id: <200302121857.h1CIvwGn021397@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 10:57:58 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 10:57:58 PST Modified files: . access.master Log: seanc has moved, remove from access.master as per instructions Revision Changes Path 1.596 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 10:58:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AF4F37B401; Wed, 12 Feb 2003 10:58:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFA0143F85; Wed, 12 Feb 2003 10:58:24 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CIwObv021454; Wed, 12 Feb 2003 10:58:24 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CIwOWW021453; Wed, 12 Feb 2003 10:58:24 -0800 (PST) Message-Id: <200302121858.h1CIwOWW021453@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 10:58:24 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 10:58:24 PST Modified files: . access.master Log: suz has moved, remove from access.master as per instructions Revision Changes Path 1.597 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 11: 5:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBDEA37B401; Wed, 12 Feb 2003 11:05:20 -0800 (PST) Received: from cvsup.no.freebsd.org (c2h5oh.idi.ntnu.no [129.241.103.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CC3743F93; Wed, 12 Feb 2003 11:05:19 -0800 (PST) (envelope-from Tor.Egge@cvsup.no.freebsd.org) Received: from localhost (localhost [127.0.0.1]) by cvsup.no.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CJ5HE0034654; Wed, 12 Feb 2003 19:05:17 GMT (envelope-from tegge@cvsup.no.freebsd.org) To: peter@wemm.org Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom geom_disk.c From: Tor.Egge@cvsup.no.freebsd.org In-Reply-To: <20030212181624.D047E2A8C6@canning.wemm.org> References: <200302121630.h1CGUkEO068618@repoman.freebsd.org> <20030212181624.D047E2A8C6@canning.wemm.org> X-Mailer: Mew version 1.94.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20030212190517L.tegge@cvsup.no.freebsd.org> Date: Wed, 12 Feb 2003 19:05:17 GMT X-Dispatcher: imput version 20000228(IM140) Lines: 17 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Tor Egge wrote: > > tegge 2003/02/12 08:30:46 PST > > > > Modified files: > > sys/geom geom_disk.c > > Log: > > Correctly set bio_data in cloned children when cutting up large requests. > > Something is broken.. Did you just fix this? On my machine, I got file corruption, e.g. cvsup complained about a bad checkouts.cvs file, and manual inspection with 'vi' indicated that it was corrupted. Manual inspection after booting with an older kernel did not show the corruption. After correcting the sign of the bio_data adjustment, the corruption problem disappeared. - Tor Egge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 11: 5:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BAEB37B401; Wed, 12 Feb 2003 11:05:30 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EB2D43F85; Wed, 12 Feb 2003 11:05:29 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CJ5Tbv025173; Wed, 12 Feb 2003 11:05:29 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CJ5TVZ025172; Wed, 12 Feb 2003 11:05:29 -0800 (PST) Message-Id: <200302121905.h1CJ5TVZ025172@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 11:05:29 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 11:05:29 PST Modified files: . access access.master Log: mckusick is a src committer, I'm not going to let him get away Revision Changes Path 1.559 +1 -0 CVSROOT/access 1.598 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 11:19:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 609B737B407; Wed, 12 Feb 2003 11:19:10 -0800 (PST) Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA6BC43F3F; Wed, 12 Feb 2003 11:19:09 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from FreeBSD.org ([63.193.112.125]) by mta6.snfc21.pbi.net (iPlanet Messaging Server 5.1 HotFix 1.6 (built Oct 18 2002)) with ESMTP id <0HA700J3GMX8MM@mta6.snfc21.pbi.net>; Wed, 12 Feb 2003 11:17:32 -0800 (PST) Date: Wed, 12 Feb 2003 11:20:31 -0800 From: Jeffrey Hsu Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c In-reply-to: Message from Guido van Rooij "of Wed, 12 Feb 2003 14:00:57 +0100." <20030212130057.GA27427@gvr.gvr.org> To: Guido van Rooij Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-id: <0HA700J3HMX8MM@mta6.snfc21.pbi.net> MIME-version: 1.0 X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Feb 11, 2003 at 04:42:12PM -0800, Jeffrey Hsu wrote: > > hsu 2003/02/11 16:42:12 PST > > > > Modified files: > > sys/netinet tcp_syncache.c > > Log: > > Properly document that syncache timer processing requires an > > exclusive TCP protocol lock. > > This seems like a strange way of telling us you need a write-lock instead > of a read lock... > > -Guido A write lock is an exclusive lock. (A read lock is a shared lock.) Since INP_INFO_RLOCK() and INP_INFO_WLOCK() are both currently defined to be the same mutex lock, this commit doesn't change anything other than documenting for future reference when shared access can occur and when exclusive access is required. Jeffrey To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 11:23:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD6EC37B401; Wed, 12 Feb 2003 11:23:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E5FE43FE0; Wed, 12 Feb 2003 11:23:12 -0800 (PST) (envelope-from dcs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CJNCbv032264; Wed, 12 Feb 2003 11:23:12 -0800 (PST) (envelope-from dcs@repoman.freebsd.org) Received: (from dcs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CJNCsj032263; Wed, 12 Feb 2003 11:23:12 -0800 (PST) Message-Id: <200302121923.h1CJNCsj032263@repoman.freebsd.org> From: "Daniel C. Sobral" Date: Wed, 12 Feb 2003 11:23:12 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dcs 2003/02/12 11:23:12 PST Modified files: . access access.master Log: Grumble. Revision Changes Path 1.560 +1 -0 CVSROOT/access 1.599 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 11:27: 5 2003 Delivered-To: cvs-src@freebsd.org Received: from green.bikeshed.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C6A6C37B401; Wed, 12 Feb 2003 11:27:03 -0800 (PST) Received: from green.bikeshed.org (7nm0te865ypqf9ed@green.bikeshed.org [10.0.0.1] (may be forged)) by green.bikeshed.org (8.12.7/8.12.6) with ESMTP id h1CJR2Sq016575; Wed, 12 Feb 2003 14:27:02 -0500 (EST) (envelope-from green@green.bikeshed.org) Received: from localhost (green@localhost) by green.bikeshed.org (8.12.7/8.12.6/Submit) with ESMTP id h1CJR0YG016571; Wed, 12 Feb 2003 14:27:01 -0500 (EST) Message-Id: <200302121927.h1CJR0YG016571@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alexander Langer Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sound/pcm dsp.c In-Reply-To: Your message of "Wed, 12 Feb 2003 18:26:27 +0100." <20030212172627.GC70239@fump.kawo2.rwth-aachen.de> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 12 Feb 2003 14:27:00 -0500 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Langer wrote: > Thus spake Brian Feldman (green@FreeBSD.org): > > > Sound devices were being leaked by dsp_open() not actually releasing the > > channels it allocates if chn_reset() on them resulted in failure. > > ARROW'D! > > Not having looked further: Does this happen to fix the problems people > are seeing when autovchans are enabled? I don't know what other problems people saw, not being caught up on mail, but I imagine what you're referring to is probably what I fixed :) -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 11:34:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27DC37B401; Wed, 12 Feb 2003 11:34:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 663E643F85; Wed, 12 Feb 2003 11:34:35 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CJYZbv036031; Wed, 12 Feb 2003 11:34:35 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CJYYa1036026; Wed, 12 Feb 2003 11:34:34 -0800 (PST) Message-Id: <200302121934.h1CJYYa1036026@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 11:34:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bridge.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 11:34:34 PST Modified files: sys/net bridge.c Log: Do not do an assignment in a truth test (previous commit) or gcc gives a warning which breaks builds. cc1: warnings being treated as errors src/sys/net/bridge.c: In function `bdg_forward': sys/net/bridge.c:931: warning: suggest parentheses around assignment used as truth value *** Error code 1 Revision Changes Path 1.66 +1 -1 src/sys/net/bridge.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 12: 3:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CD9237B401; Wed, 12 Feb 2003 12:03:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3058543FDD; Wed, 12 Feb 2003 12:03:42 -0800 (PST) (envelope-from mike@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CK3fbv046920; Wed, 12 Feb 2003 12:03:41 -0800 (PST) (envelope-from mike@repoman.freebsd.org) Received: (from mike@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CK3faK046919; Wed, 12 Feb 2003 12:03:41 -0800 (PST) Message-Id: <200302122003.h1CK3faK046919@repoman.freebsd.org> From: Mike Barcroft Date: Wed, 12 Feb 2003 12:03:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/alpha/gen isinf.c src/lib/libc/gen Makefile.inc fpclassify.3 isgreater.3 isinf.3 src/lib/libc/i386/gen isinf.c src/lib/libc/ia64/gen isinf.c src/lib/libc/powerpc/gen isinf.c src/lib/libc/sparc64/gen isinf.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2003/02/12 12:03:41 PST Modified files: lib/libc/alpha/gen isinf.c lib/libc/gen Makefile.inc fpclassify.3 lib/libc/i386/gen isinf.c lib/libc/ia64/gen isinf.c lib/libc/powerpc/gen isinf.c lib/libc/sparc64/gen isinf.c lib/msun/src math.h s_isnan.c s_isnanf.c Added files: lib/libc/gen isgreater.3 Removed files: lib/libc/gen isinf.3 Log: o Implement C99 classification macros isfinite(), isinf(), isnan(), isnormal(). The current isinf() and isnan() are perserved for binary compatibility with 5.0, but new programs will use the macros. o Implement C99 comparison macros isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), isunordered(). Submitted by: David Schultz Revision Changes Path 1.5 +5 -0 src/lib/libc/alpha/gen/isinf.c 1.103 +6 -2 src/lib/libc/gen/Makefile.inc 1.2 +56 -8 src/lib/libc/gen/fpclassify.3 1.1 +102 -0 src/lib/libc/gen/isgreater.3 (new) 1.8 +0 -80 src/lib/libc/gen/isinf.3 (dead) 1.10 +2 -0 src/lib/libc/i386/gen/isinf.c 1.4 +5 -0 src/lib/libc/ia64/gen/isinf.c 1.2 +5 -0 src/lib/libc/powerpc/gen/isinf.c 1.4 +5 -0 src/lib/libc/sparc64/gen/isinf.c 1.23 +24 -12 src/lib/msun/src/math.h 1.7 +4 -0 src/lib/msun/src/s_isnan.c 1.7 +4 -0 src/lib/msun/src/s_isnanf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 12:18:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2C2037B401; Wed, 12 Feb 2003 12:18:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8572E43FA3; Wed, 12 Feb 2003 12:18:08 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CKI8bv050672; Wed, 12 Feb 2003 12:18:08 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CKI863050671; Wed, 12 Feb 2003 12:18:08 -0800 (PST) Message-Id: <200302122018.h1CKI863050671@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 12:18:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/12 12:18:08 PST Modified files: tools/tools/tinderbox tinderbox.pl Log: Slight cleanup; adjust verbosity; unlink the logfile before opening it to tickle 'tail -F'. Revision Changes Path 1.3 +8 -7 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 12:23:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91D4537B401; Wed, 12 Feb 2003 12:23:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34E3643F75; Wed, 12 Feb 2003 12:23:28 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CKNSbv054140; Wed, 12 Feb 2003 12:23:28 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CKNRA7054139; Wed, 12 Feb 2003 12:23:27 -0800 (PST) Message-Id: <200302122023.h1CKNRA7054139@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 12:23:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox Makefile tbmaster.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/12 12:23:27 PST Modified files: tools/tools/tinderbox Makefile Added files: tools/tools/tinderbox tbmaster.pl Log: Welcome tbmaster, TinderboxNG's better half. Revision Changes Path 1.2 +1 -1 src/tools/tools/tinderbox/Makefile 1.1 +147 -0 src/tools/tools/tinderbox/tbmaster.pl (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 12:29: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6111D37B405; Wed, 12 Feb 2003 12:29:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4388F43FD7; Wed, 12 Feb 2003 12:29:06 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CKT6bv054336; Wed, 12 Feb 2003 12:29:06 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CKT6xC054335; Wed, 12 Feb 2003 12:29:06 -0800 (PST) Message-Id: <200302122029.h1CKT6xC054335@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 12:29:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/12 12:29:05 PST Modified files: tools/tools/tinderbox tinderbox.pl Log: NO_KERNELCLEAN was a booboo. Revision Changes Path 1.4 +0 -1 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 13: 6:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3FFA37B401; Wed, 12 Feb 2003 13:06:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84D7C43F75; Wed, 12 Feb 2003 13:06:20 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CL6Kbv068649; Wed, 12 Feb 2003 13:06:20 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CL6KtN068648; Wed, 12 Feb 2003 13:06:20 -0800 (PST) Message-Id: <200302122106.h1CL6KtN068648@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 12 Feb 2003 13:06:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/12 13:06:20 PST Modified files: tools/tools/tinderbox tbmaster.pl Log: Simplify the log accumulation code. It turns out that the trick of looking for ^===> can give quite annoying false positives, especially when building kernels, so drop it; the context can be inferred from make's "Stop in /foo/bar/baz" messages anyway. Also add a case that I'd missed the first time around (which happens to be the common case, not the exception...) Revision Changes Path 1.2 +6 -5 src/tools/tools/tinderbox/tbmaster.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 14:19:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03BFC37B401; Wed, 12 Feb 2003 14:19:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9905243FDF; Wed, 12 Feb 2003 14:19:34 -0800 (PST) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CMJYbv093742; Wed, 12 Feb 2003 14:19:34 -0800 (PST) (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CMJYsU093741; Wed, 12 Feb 2003 14:19:34 -0800 (PST) Message-Id: <200302122219.h1CMJYsU093741@repoman.freebsd.org> From: Martin Blapp Date: Wed, 12 Feb 2003 14:19:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_dc.c if_dcreg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2003/02/12 14:19:34 PST Modified files: (Branch: RELENG_4) sys/pci if_dc.c if_dcreg.h Log: MFC Rev. 1.80, 1.81 Dynamically configure the width of the srom. This code comes from OpenBSD who got the code (or the idea) from the NetBSD tlp driver. MFC Rev. 1.67 Fix Conexant chips which always reports carrier lost on full duplex mode. Reviewed by: phk, imp Revision Changes Path 1.9.2.39 +127 -29 src/sys/pci/if_dc.c 1.4.2.21 +2 -1 src/sys/pci/if_dcreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 15: 1:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794D737B401; Wed, 12 Feb 2003 15:01:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19D0743FAF; Wed, 12 Feb 2003 15:01:52 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CN1pbv010839; Wed, 12 Feb 2003 15:01:51 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CN1pnG010838; Wed, 12 Feb 2003 15:01:51 -0800 (PST) Message-Id: <200302122301.h1CN1pnG010838@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 12 Feb 2003 15:01:51 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG edwin 2003/02/12 15:01:51 PST Modified files: . modules Log: p5-ResourcePool-Resource-Net-LDAP --> ports/net/p5-ResourcePool-Resource-Net-LDAP Revision Changes Path 1.6721 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 15:33:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 211F437B407; Wed, 12 Feb 2003 15:33:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7A5043F75; Wed, 12 Feb 2003 15:33:13 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CNXDbv022834; Wed, 12 Feb 2003 15:33:13 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CNXDYM022833; Wed, 12 Feb 2003 15:33:13 -0800 (PST) Message-Id: <200302122333.h1CNXDYM022833@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 12 Feb 2003 15:33:13 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG edwin 2003/02/12 15:33:13 PST Modified files: . modules Log: p5-ResourcePool-Resource-DBI --> ports/databases/p5-ResourcePool-Resource-DBI Revision Changes Path 1.6722 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 15:55:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4096437B401; Wed, 12 Feb 2003 15:55:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2864D43FBD; Wed, 12 Feb 2003 15:55:08 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1CNt7bv030231; Wed, 12 Feb 2003 15:55:07 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1CNt7pX030230; Wed, 12 Feb 2003 15:55:07 -0800 (PST) Message-Id: <200302122355.h1CNt7pX030230@repoman.freebsd.org> From: Jeffrey Hsu Date: Wed, 12 Feb 2003 15:55:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in_pcb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/12 15:55:07 PST Modified files: sys/netinet in_pcb.c Log: in_pcbnotifyall() requires an exclusive protocol lock for notify functions which modify the connection list, namely, tcp_notify(). Revision Changes Path 1.117 +7 -7 src/sys/netinet/in_pcb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 16: 8:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72DED37B401; Wed, 12 Feb 2003 16:08:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1553143FA3; Wed, 12 Feb 2003 16:08:57 -0800 (PST) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D08ubv034059; Wed, 12 Feb 2003 16:08:56 -0800 (PST) (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D08u2L034058; Wed, 12 Feb 2003 16:08:56 -0800 (PST) Message-Id: <200302130008.h1D08u2L034058@repoman.freebsd.org> From: Thomas Quinot Date: Wed, 12 Feb 2003 16:08:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/syslogd syslog.conf.5 syslogd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG thomas 2003/02/12 16:08:56 PST Modified files: usr.sbin/syslogd syslog.conf.5 syslogd.c Log: Allow multiple hosts or programs to be named in program or host specifications, eg: !foo,bar *.* /var/log/only_foo_or_bar.log !-foo,bar *.* /var/log/all_except_foo_or_bar.log Reviewed by: roberto Not objected to by: arch@ Revision Changes Path 1.32 +12 -0 src/usr.sbin/syslogd/syslog.conf.5 1.112 +27 -6 src/usr.sbin/syslogd/syslogd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 16:26:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 303C637B401; Wed, 12 Feb 2003 16:26:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B000943FD7; Wed, 12 Feb 2003 16:26:34 -0800 (PST) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D0QYbv041313; Wed, 12 Feb 2003 16:26:34 -0800 (PST) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D0QYOY041312; Wed, 12 Feb 2003 16:26:34 -0800 (PST) Message-Id: <200302130026.h1D0QYOY041312@repoman.freebsd.org> From: Edwin Groothuis Date: Wed, 12 Feb 2003 16:26:34 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG edwin 2003/02/12 16:26:34 PST Modified files: . modules Log: Move wmshutdown module to the right directory Revision Changes Path 1.6723 +1 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 17: 0:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BE8A37B406; Wed, 12 Feb 2003 17:00:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFBAB43F93; Wed, 12 Feb 2003 17:00:26 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D10Qbv052529; Wed, 12 Feb 2003 17:00:26 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D10Q1r052528; Wed, 12 Feb 2003 17:00:26 -0800 (PST) Message-Id: <200302130100.h1D10Q1r052528@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 17:00:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/gpt show.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 17:00:26 PST Modified files: sbin/gpt show.c Log: Show the paritition types that we recognize in human readable format. eg: pluto2# gpt show da0 start end size contents 0 0 1 PMBR 1 1 1 Pri GPT header 2 33 32 Pri GPT table 34 401595 401562 GPT part - EFI System partition 401596 925883 524288 GPT part - FreeBSD ufs partition 925884 9314491 8388608 GPT part - FreeBSD swap partition ... It'll print a plain uuid string for unrecognized types. Revision Changes Path 1.6 +28 -4 src/sbin/gpt/show.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 17:34: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12AB437B401; Wed, 12 Feb 2003 17:34:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC96A43FA3; Wed, 12 Feb 2003 17:33:59 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D1Xxbv066647; Wed, 12 Feb 2003 17:33:59 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D1XxOC066646; Wed, 12 Feb 2003 17:33:59 -0800 (PST) Message-Id: <200302130133.h1D1XxOC066646@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 17:33:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 17:33:59 PST Modified files: sys/kern kern_shutdown.c Log: Print "Stack backtrace:" right before dumping the backtrace. We cannot expect end users to automatically recognize a stack trace for what it is. Revision Changes Path 1.140 +2 -1 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 17:35:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC12337B401; Wed, 12 Feb 2003 17:35:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FE8643F75; Wed, 12 Feb 2003 17:35:57 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D1Zvbv066761; Wed, 12 Feb 2003 17:35:57 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D1ZudJ066760; Wed, 12 Feb 2003 17:35:56 -0800 (PST) Message-Id: <200302130135.h1D1ZudJ066760@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 17:35:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_witness.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 17:35:56 PST Modified files: sys/kern subr_witness.c Log: Add a 'debug.witness_trace' sysctl (and tunable) when DDB is present. This causes LOR and could-sleep messages to come with a stack trace. Revision Changes Path 1.136 +16 -2 src/sys/kern/subr_witness.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 17:52:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1377637B401; Wed, 12 Feb 2003 17:52:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A10143FCB; Wed, 12 Feb 2003 17:52:45 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D1qjbv073904; Wed, 12 Feb 2003 17:52:45 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D1qjDi073903; Wed, 12 Feb 2003 17:52:45 -0800 (PST) Message-Id: <200302130152.h1D1qjDi073903@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 17:52:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 17:52:45 PST Modified files: sys/i386/i386 pmap.c Log: Turn of PG_PS and PG_G for Pentium-4 cpus at boot time. This is so that we can stop turning off PG_G and PG_PS globally for releases. Revision Changes Path 1.386 +30 -2 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 18:15: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 926ED37B401; Wed, 12 Feb 2003 18:15:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32BEC43F75; Wed, 12 Feb 2003 18:15:05 -0800 (PST) (envelope-from jon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D2F5bv081553; Wed, 12 Feb 2003 18:15:05 -0800 (PST) (envelope-from jon@repoman.freebsd.org) Received: (from jon@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D2F4ll081552; Wed, 12 Feb 2003 18:15:04 -0800 (PST) Message-Id: <200302130215.h1D2F4ll081552@repoman.freebsd.org> From: Jonathan Chen Date: Wed, 12 Feb 2003 18:15:04 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jon 2003/02/12 18:15:04 PST Modified files: . access access.master Log: everyone else is doing it... Revision Changes Path 1.561 +1 -0 CVSROOT/access 1.600 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 18:42: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E613B37B401; Wed, 12 Feb 2003 18:42:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8932443F3F; Wed, 12 Feb 2003 18:42:07 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D2g7bv091587; Wed, 12 Feb 2003 18:42:07 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D2g7x4091583; Wed, 12 Feb 2003 18:42:07 -0800 (PST) Message-Id: <200302130242.h1D2g7x4091583@repoman.freebsd.org> From: Peter Wemm Date: Wed, 12 Feb 2003 18:42:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/12 18:42:07 PST Modified files: sys/i386/i386 pmap.c Log: Oops. I mis-remembered about the P4 problems. It was 5.0-DP2 that was shipped with DISABLE_PG_G and DISABLE_PSE, not 5.0-REL. *blush* Disable the code - but still leave it there in case its still lurking. Revision Changes Path 1.387 +3 -3 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 19:42:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0554A37B401; Wed, 12 Feb 2003 19:42:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6091943F85; Wed, 12 Feb 2003 19:42:54 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D3gsbv013833; Wed, 12 Feb 2003 19:42:54 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D3grK8013830; Wed, 12 Feb 2003 19:42:53 -0800 (PST) Message-Id: <200302130342.h1D3grK8013830@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Wed, 12 Feb 2003 19:42:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 sbp.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/12 19:42:53 PST Modified files: share/man/man4 sbp.4 Log: Add description about device detaching. Revision Changes Path 1.6 +9 -0 src/share/man/man4/sbp.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 20:35: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7EF437B401; Wed, 12 Feb 2003 20:35:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DB1743F3F; Wed, 12 Feb 2003 20:35:05 -0800 (PST) (envelope-from benno@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D4Z5bv031854; Wed, 12 Feb 2003 20:35:05 -0800 (PST) (envelope-from benno@repoman.freebsd.org) Received: (from benno@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D4Z5WQ031853; Wed, 12 Feb 2003 20:35:05 -0800 (PST) Message-Id: <200302130435.h1D4Z5WQ031853@repoman.freebsd.org> From: Benno Rice Date: Wed, 12 Feb 2003 20:35:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG benno 2003/02/12 20:35:04 PST Modified files: sys/boot Makefile Log: Don't bother to build ficl if NOFORTH is defined. Revision Changes Path 1.15 +2 -0 src/sys/boot/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 22:39:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38B2D37B401; Wed, 12 Feb 2003 22:39:30 -0800 (PST) Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AEEF43FAF; Wed, 12 Feb 2003 22:39:28 -0800 (PST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: from zibbi.icomtek.csir.co.za (localhost [IPv6:::1]) by zibbi.icomtek.csir.co.za (8.12.6/8.12.6) with ESMTP id h1D6dPbw025017; Thu, 13 Feb 2003 08:39:25 +0200 (SAST) (envelope-from jhay@zibbi.icomtek.csir.co.za) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.12.6/8.12.6/Submit) id h1D6dPW1025016; Thu, 13 Feb 2003 08:39:25 +0200 (SAST) Date: Thu, 13 Feb 2003 08:39:25 +0200 From: John Hay To: Peter Wemm Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c Message-ID: <20030213063925.GA24720@zibbi.icomtek.csir.co.za> References: <200302130242.h1D2g7x4091583@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302130242.h1D2g7x4091583@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 12, 2003 at 06:42:07PM -0800, Peter Wemm wrote: > peter 2003/02/12 18:42:07 PST > > Modified files: > sys/i386/i386 pmap.c > Log: > Oops. I mis-remembered about the P4 problems. It was 5.0-DP2 that > was shipped with DISABLE_PG_G and DISABLE_PSE, not 5.0-REL. *blush* > Disable the code - but still leave it there in case its still lurking. > > Revision Changes Path > 1.387 +3 -3 src/sys/i386/i386/pmap.c I still needed DISABLE_PG_G and DISABLE_PSE when I upgraded my 1.7G P4 from 4.x to -CURRENT in January. Without it I got signal 10's. Before the upgrade, the machine was building 4-stable releases every night without a glitch and after the upgrade (with DISABLE_PG_G and DISABLE_PSE added) it is again performing without problems... well that is except for the vchan sound, but that is another story. :-) John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 22:45:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EADF37B401; Wed, 12 Feb 2003 22:45:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FC4143F75; Wed, 12 Feb 2003 22:45:32 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D6jVbv078523; Wed, 12 Feb 2003 22:45:31 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D6jVr6078522; Wed, 12 Feb 2003 22:45:31 -0800 (PST) Message-Id: <200302130645.h1D6jVr6078522@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 12 Feb 2003 22:45:31 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2003/02/12 22:45:31 PST Modified files: . modules Log: mmail --> ports/news/mmail Revision Changes Path 1.6724 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 23: 3:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D56537B401; Wed, 12 Feb 2003 23:03:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E329343F93; Wed, 12 Feb 2003 23:03:44 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D73ibv085939; Wed, 12 Feb 2003 23:03:44 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D73igf085938; Wed, 12 Feb 2003 23:03:44 -0800 (PST) Message-Id: <200302130703.h1D73igf085938@repoman.freebsd.org> From: Alan Cox Date: Wed, 12 Feb 2003 23:03:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/ia64/ia64 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/12 23:03:44 PST Modified files: sys/alpha/alpha pmap.c sys/ia64/ia64 pmap.c Log: MFi386 Remove kptobj. Instead, use VM_ALLOC_NOOBJ. Revision Changes Path 1.120 +4 -10 src/sys/alpha/alpha/pmap.c 1.92 +2 -8 src/sys/ia64/ia64/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Wed Feb 12 23:17:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D10F437B401; Wed, 12 Feb 2003 23:17:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7467643F93; Wed, 12 Feb 2003 23:17:39 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D7Hdbv089638; Wed, 12 Feb 2003 23:17:39 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D7Hdjr089637; Wed, 12 Feb 2003 23:17:39 -0800 (PST) Message-Id: <200302130717.h1D7Hdjr089637@repoman.freebsd.org> From: Eric Anholt Date: Wed, 12 Feb 2003 23:17:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agp_i810.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anholt 2003/02/12 23:17:39 PST Modified files: sys/pci agp_i810.c Log: Add Intel 85x/86x AGP support. Submitted by: David Dawes Revision Changes Path 1.17 +88 -16 src/sys/pci/agp_i810.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 0:25:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0921F37B401; Thu, 13 Feb 2003 00:25:36 -0800 (PST) Received: from gvr.gvr.org (gvr.gvr.org [212.61.40.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id F169343FB1; Thu, 13 Feb 2003 00:25:34 -0800 (PST) (envelope-from guido@gvr.org) Received: by gvr.gvr.org (Postfix, from userid 657) id AE10C1B; Thu, 13 Feb 2003 09:25:33 +0100 (CET) Date: Thu, 13 Feb 2003 09:25:33 +0100 From: Guido van Rooij To: Jeffrey Hsu Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_syncache.c Message-ID: <20030213082533.GA37720@gvr.gvr.org> References: <20030212130057.GA27427@gvr.gvr.org> <0HA700J3HMX8MM@mta6.snfc21.pbi.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0HA700J3HMX8MM@mta6.snfc21.pbi.net> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 12, 2003 at 11:20:31AM -0800, Jeffrey Hsu wrote: > > > Properly document that syncache timer processing requires an > > > exclusive TCP protocol lock. > > > > This seems like a strange way of telling us you need a write-lock instead > > of a read lock... > > > > -Guido > > A write lock is an exclusive lock. (A read lock is a shared lock.) > Since INP_INFO_RLOCK() and INP_INFO_WLOCK() are both currently > defined to be the same mutex lock, this commit doesn't change anything > other than documenting for future reference when shared access can occur > and when exclusive access is required. Argh..I misread TCP protocol lock as TCP protocol hack..pfff. -Guido To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 0:56:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E7EF37B401; Thu, 13 Feb 2003 00:56:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21F6F43F3F; Thu, 13 Feb 2003 00:56:42 -0800 (PST) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D8ufbv025275; Thu, 13 Feb 2003 00:56:41 -0800 (PST) (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D8ufJn025274; Thu, 13 Feb 2003 00:56:41 -0800 (PST) Message-Id: <200302130856.h1D8ufJn025274@repoman.freebsd.org> From: Peter Grehan Date: Thu, 13 Feb 2003 00:56:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/powerpc/powerpc in_cksum.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grehan 2003/02/13 00:56:41 PST Modified files: sys/powerpc/powerpc in_cksum.c Log: Missed odd address test when transcribing the Alpha version. This fixes the checksum problems seen with telnet. Revision Changes Path 1.2 +1 -1 src/sys/powerpc/powerpc/in_cksum.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 1:54: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1261337B401; Thu, 13 Feb 2003 01:54:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAA5943FBF; Thu, 13 Feb 2003 01:53:59 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D9rxbv046545; Thu, 13 Feb 2003 01:53:59 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D9rxlg046544; Thu, 13 Feb 2003 01:53:59 -0800 (PST) Message-Id: <200302130953.h1D9rxlg046544@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 13 Feb 2003 01:53:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_resource.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/13 01:53:59 PST Modified files: sys/kern kern_resource.c Log: Add an XXX comment noting that getrusage() accesses p_stats->p_ru and p_stats->p_cru without holding the appropriate locks. Revision Changes Path 1.116 +1 -0 src/sys/kern/kern_resource.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 2: 0: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06B3037B401; Thu, 13 Feb 2003 02:00:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D8BA43F93; Thu, 13 Feb 2003 01:59:59 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1D9xxbv046813; Thu, 13 Feb 2003 01:59:59 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1D9xxxU046812; Thu, 13 Feb 2003 01:59:59 -0800 (PST) Message-Id: <200302130959.h1D9xxxU046812@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 01:59:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 01:59:59 PST Modified files: tools/tools/tinderbox tbmaster.pl Log: - run the tinderbox script in verbose mode - use /\bStop\b/ instead of /^\*\*\* Error/ to identify errors Revision Changes Path 1.3 +2 -2 src/tools/tools/tinderbox/tbmaster.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 2: 5:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D2AF37B401; Thu, 13 Feb 2003 02:05:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F354943FA3; Thu, 13 Feb 2003 02:05:20 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DA5Kbv050280; Thu, 13 Feb 2003 02:05:20 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DA5KKB050279; Thu, 13 Feb 2003 02:05:20 -0800 (PST) Message-Id: <200302131005.h1DA5KKB050279@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 02:05:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern init_main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 02:05:20 PST Modified files: sys/kern init_main.c Log: It seems the extra precautions are no longer needed. Revision Changes Path 1.225 +0 -2 src/sys/kern/init_main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 2:52:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D13F937B401; Thu, 13 Feb 2003 02:52:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 739AB43F75; Thu, 13 Feb 2003 02:52:47 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DAqlbv067920; Thu, 13 Feb 2003 02:52:47 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DAqkXf067917; Thu, 13 Feb 2003 02:52:46 -0800 (PST) Message-Id: <200302131052.h1DAqkXf067917@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 02:52:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 02:52:46 PST Modified files: tools/tools/tinderbox tbmaster.pl Log: Move away the old log file before starting the tinderbox so we don't accidentally post the old log if the tinderbox script failed to start altogether. Revision Changes Path 1.4 +1 -0 src/tools/tools/tinderbox/tbmaster.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 3: 6:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C627437B401; Thu, 13 Feb 2003 03:06:47 -0800 (PST) Received: from mx0.freebsd-services.com (survey.codeburst.net [195.149.39.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6077143F3F; Thu, 13 Feb 2003 03:06:42 -0800 (PST) (envelope-from paul@freebsd-services.com) Received: by mx0.freebsd-services.com (Postfix, from userid 1002) id 6396F1B212; Thu, 13 Feb 2003 11:06:37 +0000 (GMT) Date: Thu, 13 Feb 2003 11:06:37 +0000 From: Paul Richards To: Peter Wemm Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030213110636.GA42543@survey.codeburst.net> References: <200302130133.h1D1XxOC066646@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302130133.h1D1XxOC066646@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 12, 2003 at 05:33:59PM -0800, Peter Wemm wrote: > peter 2003/02/12 17:33:59 PST > > Modified files: > sys/kern kern_shutdown.c > Log: > Print "Stack backtrace:" right before dumping the backtrace. We cannot > expect end users to automatically recognize a stack trace for what it is. I'd hope that end users would never see one...... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 3:23:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B60B37B401; Thu, 13 Feb 2003 03:23:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D92843F75; Thu, 13 Feb 2003 03:23:08 -0800 (PST) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DBN7bv079396; Thu, 13 Feb 2003 03:23:07 -0800 (PST) (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DBN770079395; Thu, 13 Feb 2003 03:23:07 -0800 (PST) Message-Id: <200302131123.h1DBN770079395@repoman.freebsd.org> From: Doug Barton Date: Thu, 13 Feb 2003 03:23:07 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2003/02/13 03:23:07 PST Modified files: . modules Log: Add the hawk port I just committed Revision Changes Path 1.6725 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 3:57:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D4E037B401; Thu, 13 Feb 2003 03:57:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E639D43FD7; Thu, 13 Feb 2003 03:57:13 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DBvDbv090319; Thu, 13 Feb 2003 03:57:13 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DBvDBq090318; Thu, 13 Feb 2003 03:57:13 -0800 (PST) Message-Id: <200302131157.h1DBvDBq090318@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 03:57:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 03:57:13 PST Modified files: tools/tools/tinderbox tbmaster.pl Log: Place the logs in the tinderbox directory rather than cwd. Revision Changes Path 1.5 +2 -1 src/tools/tools/tinderbox/tbmaster.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4: 2:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD06B37B405; Thu, 13 Feb 2003 04:02:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC24C43FE1; Thu, 13 Feb 2003 04:02:51 -0800 (PST) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DC2pbv093472; Thu, 13 Feb 2003 04:02:51 -0800 (PST) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DC2p9g093468; Thu, 13 Feb 2003 04:02:51 -0800 (PST) Message-Id: <200302131202.h1DC2p9g093468@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 13 Feb 2003 04:02:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/ipfw change_rules.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brueffer 2003/02/13 04:02:51 PST Modified files: share/examples/ipfw change_rules.sh Log: Various spelling and grammar fixes PR: 44312 Submitted by: Chris Pepper MFC after: 3 days Revision Changes Path 1.5 +9 -9 src/share/examples/ipfw/change_rules.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4: 6:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD57037B401; Thu, 13 Feb 2003 04:06:43 -0800 (PST) Received: from milan.hitnet.rwth-aachen.de (milan.hitnet.RWTH-Aachen.DE [137.226.181.144]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE6B43F3F; Thu, 13 Feb 2003 04:06:42 -0800 (PST) (envelope-from chris@unixpages.org) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) by milan.hitnet.rwth-aachen.de (Postfix) with ESMTP id 89B10A91E; Thu, 13 Feb 2003 13:06:40 +0100 (CET) Received: by gondor.middleearth (Postfix, from userid 1001) id 5A53445FF; Thu, 13 Feb 2003 13:06:40 +0100 (CET) Date: Thu, 13 Feb 2003 13:06:40 +0100 From: Christian Brueffer To: Christian Brueffer Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/examples/ipfw change_rules.sh Message-ID: <20030213120640.GC603@unixpages.org> References: <200302131202.h1DC2p9g093468@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QRj9sO5tAVLaXnSD" Content-Disposition: inline In-Reply-To: <200302131202.h1DC2p9g093468@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --QRj9sO5tAVLaXnSD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 13, 2003 at 04:02:51AM -0800, Christian Brueffer wrote: > brueffer 2003/02/13 04:02:51 PST >=20 > Modified files: > share/examples/ipfw change_rules.sh=20 > Log: > Various spelling and grammar fixes > =20 > PR: 44312 > Submitted by: Chris Pepper > MFC after: 3 days > =20 > Revision Changes Path > 1.5 +9 -9 src/share/examples/ipfw/change_rules.sh >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message >=20 >=20 Should have been Approved by: ceri (mentor) too. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --QRj9sO5tAVLaXnSD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+S4pQbHYXjKDtmC0RApdRAJ9c7svNN4V8+TG8N+NR5y7yueag/QCfdSxi agUKw6aKFd0fsLEi1tF9drU= =Qw5D -----END PGP SIGNATURE----- --QRj9sO5tAVLaXnSD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4:14:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C355637B401; Thu, 13 Feb 2003 04:14:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 625D943FBD; Thu, 13 Feb 2003 04:14:42 -0800 (PST) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DCEgbv097595; Thu, 13 Feb 2003 04:14:42 -0800 (PST) (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DCEggB097594; Thu, 13 Feb 2003 04:14:42 -0800 (PST) Message-Id: <200302131214.h1DCEggB097594@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 13 Feb 2003 04:14:42 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG vanilla 2003/02/13 04:14:42 PST Modified files: . modules Log: Activate php-dbg. Revision Changes Path 1.6726 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4:40:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B084237B401; Thu, 13 Feb 2003 04:40:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50D4D43FA3; Thu, 13 Feb 2003 04:40:25 -0800 (PST) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DCePbv005277; Thu, 13 Feb 2003 04:40:25 -0800 (PST) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DCePD4005275; Thu, 13 Feb 2003 04:40:25 -0800 (PST) Message-Id: <200302131240.h1DCePD4005275@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 13 Feb 2003 04:40:25 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2003/02/13 04:40:25 PST Modified files: . modules Log: babytrans --> ports/deskutils/babytrans Revision Changes Path 1.6727 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4:52:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 494E037B401; Thu, 13 Feb 2003 04:52:33 -0800 (PST) Received: from nebula.wanadoo.fr (ca-sqy-4-173.abo.wanadoo.fr [80.8.57.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id B04D443FA3; Thu, 13 Feb 2003 04:52:31 -0800 (PST) (envelope-from dak@wanadoo.fr) Received: from nebula.wanadoo.fr (localhost.wanadoo.fr [127.0.0.1]) by nebula.wanadoo.fr (8.12.7/8.12.7) with ESMTP id h1DCqKTM012357; Thu, 13 Feb 2003 13:52:20 +0100 (CET) (envelope-from dak@nebula.wanadoo.fr) Received: (from dak@localhost) by nebula.wanadoo.fr (8.12.7/8.12.7/Submit) id h1DCqKIW012355; Thu, 13 Feb 2003 13:52:20 +0100 (CET) Date: Thu, 13 Feb 2003 13:52:04 +0100 From: Aurelien Nephtali To: Peter Wemm Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030213125204.GA12333@nebula.wanadoo.fr> References: <200302130133.h1D1XxOC066646@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7AUc2qLy4jB3hD7Z" Content-Disposition: inline In-Reply-To: <200302130133.h1D1XxOC066646@repoman.freebsd.org> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --7AUc2qLy4jB3hD7Z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, It could be good now to log the backtrace :/ When one occurs it goes nowhere so if you cannot copy it on the moment, it = is lost forever (without talking about stopping the console and using Page UP = and Page Down). Only the LOR is logged + 'Stack backtrace:'. -- Aurelien On Wed, Feb 12, 2003 at 05:33:59PM -0800, Peter Wemm wrote: > peter 2003/02/12 17:33:59 PST >=20 > Modified files: > sys/kern kern_shutdown.c=20 > Log: > Print "Stack backtrace:" right before dumping the backtrace. We cannot > expect end users to automatically recognize a stack trace for what it i= s. > =20 > Revision Changes Path > 1.140 +2 -1 src/sys/kern/kern_shutdown.c >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message --7AUc2qLy4jB3hD7Z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+S5T0DNsbHbt8ok8RAgkpAJ0SrqGV8hfPH3J2HoJRN36TjT14PQCfZRZC jL5p2QclHiA7+xDkx1lAiT8= =YEUG -----END PGP SIGNATURE----- --7AUc2qLy4jB3hD7Z-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4:55:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB2F37B401; Thu, 13 Feb 2003 04:55:18 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DAF143F93; Thu, 13 Feb 2003 04:55:18 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DCtIbv012157; Thu, 13 Feb 2003 04:55:18 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DCtITC012156; Thu, 13 Feb 2003 04:55:18 -0800 (PST) Message-Id: <200302131255.h1DCtITC012156@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 13 Feb 2003 04:55:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs uvscom.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/13 04:55:18 PST Modified files: sys/dev/usb usbdevs uvscom.c Log: Add support SUNTAC Ir-Trinity IS96U PR: 48212 Submitted by: Masaharu FUJITA Revision Changes Path 1.114 +1 -0 src/sys/dev/usb/usbdevs 1.13 +2 -0 src/sys/dev/usb/uvscom.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 4:57:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E2F37B401; Thu, 13 Feb 2003 04:57:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED0C043FBF; Thu, 13 Feb 2003 04:57:24 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DCvObv012284; Thu, 13 Feb 2003 04:57:24 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DCvOBh012283; Thu, 13 Feb 2003 04:57:24 -0800 (PST) Message-Id: <200302131257.h1DCvOBh012283@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 13 Feb 2003 04:57:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/13 04:57:24 PST Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Sync to 1.114 of usbdevs Revision Changes Path 1.123 +2 -1 src/sys/dev/usb/usbdevs.h 1.123 +7 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 5: 3:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61EFB37B401; Thu, 13 Feb 2003 05:03:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0456843F93; Thu, 13 Feb 2003 05:03:26 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DD3Pbv015798; Thu, 13 Feb 2003 05:03:25 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DD3Ptt015797; Thu, 13 Feb 2003 05:03:25 -0800 (PST) Message-Id: <200302131303.h1DD3Ptt015797@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 13 Feb 2003 05:03:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs uvscom.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/13 05:03:25 PST Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs uvscom.c Log: MFC: Add support SUNTAC Ir-Trinity IS96U usbdevs: 1.114 uvscom.c: 1.13 Revision Changes Path 1.11.2.38 +1 -0 src/sys/dev/usb/usbdevs 1.9.2.3 +2 -0 src/sys/dev/usb/uvscom.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 5: 6:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F2B637B401; Thu, 13 Feb 2003 05:06:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74E7543F85; Thu, 13 Feb 2003 05:06:38 -0800 (PST) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DD6cbv015943; Thu, 13 Feb 2003 05:06:38 -0800 (PST) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DD6cCk015942; Thu, 13 Feb 2003 05:06:38 -0800 (PST) Message-Id: <200302131306.h1DD6cCk015942@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 13 Feb 2003 05:06:38 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sanpei 2003/02/13 05:06:38 PST Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs.h usbdevs_data.h Log: Sync to 1.11.2.38 of usbdevs Revision Changes Path 1.32.2.36 +2 -1 src/sys/dev/usb/usbdevs.h 1.32.2.36 +7 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 5:16:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10E0537B401; Thu, 13 Feb 2003 05:16:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5C3F43F3F; Thu, 13 Feb 2003 05:16:51 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DDGpbv019606; Thu, 13 Feb 2003 05:16:51 -0800 (PST) (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DDGpFV019605; Thu, 13 Feb 2003 05:16:51 -0800 (PST) Message-Id: <200302131316.h1DDGpFV019605@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 13 Feb 2003 05:16:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/namedb named.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG keramida 2003/02/13 05:16:51 PST Modified files: (Branch: RELENG_4) etc/namedb named.conf Log: MFC: 1.14: Misc grammar, typo and wording fixes of comments. Revision Changes Path 1.6.2.7 +11 -11 src/etc/namedb/named.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 5:36: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E29ED37B401; Thu, 13 Feb 2003 05:35:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F0E43F3F; Thu, 13 Feb 2003 05:35:58 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DDZwbv026722; Thu, 13 Feb 2003 05:35:58 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DDZw29026721; Thu, 13 Feb 2003 05:35:58 -0800 (PST) Message-Id: <200302131335.h1DDZw29026721@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Thu, 13 Feb 2003 05:35:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire firewire.c firewirereg.h fwohci.c sbp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/13 05:35:58 PST Modified files: sys/dev/firewire firewire.c firewirereg.h fwohci.c sbp.c Log: firewire/fwohci - Drain fwohci TX queue first then drain xfer queue which has not started. - Check validity of the received packet length. - Don't allocate too large buffer for xfer receive buf. sbp - Fix panic for some CROM which doesn't have a text leaf. This could fix the PR kern/48129 but no feedback has been gotten from the originator yet. - Put back some M_NOWAIT flags into malloc which could be called in interrupt context for 4-stable. Revision Changes Path 1.38 +13 -8 src/sys/dev/firewire/firewire.c 1.19 +1 -0 src/sys/dev/firewire/firewirereg.h 1.40 +39 -37 src/sys/dev/firewire/fwohci.c 1.30 +22 -5 src/sys/dev/firewire/sbp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 5:42:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 281C037B401; Thu, 13 Feb 2003 05:42:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 600DF43FE5; Thu, 13 Feb 2003 05:42:20 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DDgJbv029778; Thu, 13 Feb 2003 05:42:19 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DDgJp8029777; Thu, 13 Feb 2003 05:42:19 -0800 (PST) Message-Id: <200302131342.h1DDgJp8029777@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Thu, 13 Feb 2003 05:42:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/firewire/firewire Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/13 05:42:19 PST Modified files: sys/modules/firewire/firewire Makefile Log: Remove unnecessary EXPORT_SYMS. Revision Changes Path 1.6 +0 -2 src/sys/modules/firewire/firewire/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 6:27:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 286AB37B401; Thu, 13 Feb 2003 06:27:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF2AA43FBF; Thu, 13 Feb 2003 06:27:11 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DERBbv044780; Thu, 13 Feb 2003 06:27:11 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DERBKp044779; Thu, 13 Feb 2003 06:27:11 -0800 (PST) Message-Id: <200302131427.h1DERBKp044779@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 06:27:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox make.conf tinderbox.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 06:27:11 PST Removed files: tools/tools/tinderbox make.conf tinderbox.sh Log: GC the old tinderbox script. Revision Changes Path 1.2 +0 -11 src/tools/tools/tinderbox/make.conf (dead) 1.2 +0 -80 src/tools/tools/tinderbox/tinderbox.sh (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 7:59:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 713EE37B401; Thu, 13 Feb 2003 07:59:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B7A543FAF; Thu, 13 Feb 2003 07:59:14 -0800 (PST) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DFxDbv077229; Thu, 13 Feb 2003 07:59:13 -0800 (PST) (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DFxD25077228; Thu, 13 Feb 2003 07:59:13 -0800 (PST) Message-Id: <200302131559.h1DFxD25077228@repoman.freebsd.org> From: "James E. Housley" Date: Thu, 13 Feb 2003 07:59:13 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2003/02/13 07:59:13 PST Modified files: . modules Log: Remove the *-rtems-chill references. Revision Changes Path 1.6728 +0 -6 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9: 5:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6425C37B401; Thu, 13 Feb 2003 09:05:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0491343F93; Thu, 13 Feb 2003 09:05:11 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DH5Abv002087; Thu, 13 Feb 2003 09:05:10 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DH5AwS002086; Thu, 13 Feb 2003 09:05:10 -0800 (PST) Message-Id: <200302131705.h1DH5AwS002086@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 13 Feb 2003 09:05:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf malloc.c rtld.c rtld.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/13 09:05:10 PST Modified files: libexec/rtld-elf malloc.c rtld.c rtld.h Log: Remove /usr/lib/elf from a default search path. Move xprintf to malloc.c, it is only used there. Make static. Submitted by: phantom Revision Changes Path 1.7 +16 -1 src/libexec/rtld-elf/malloc.c 1.73 +0 -17 src/libexec/rtld-elf/rtld.c 1.25 +1 -1 src/libexec/rtld-elf/rtld.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9: 8:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA1A37B401; Thu, 13 Feb 2003 09:08:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E297943F75; Thu, 13 Feb 2003 09:08:23 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DH8Nbv002215; Thu, 13 Feb 2003 09:08:23 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DH8NaF002214; Thu, 13 Feb 2003 09:08:23 -0800 (PST) Message-Id: <200302131708.h1DH8NaF002214@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 13 Feb 2003 09:08:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/inetd inetd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2003/02/13 09:08:23 PST Modified files: usr.sbin/inetd inetd.c Log: The tcp_wrappers function `fromhost()' can fail. In such cases, the `struct sockaddr' will not be allocated. Reported by: nectar MFC after: 2 days Revision Changes Path 1.117 +16 -2 src/usr.sbin/inetd/inetd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:35: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9249A37B401; Thu, 13 Feb 2003 09:34:58 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD3A943F93; Thu, 13 Feb 2003 09:34:56 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id EAA21217; Fri, 14 Feb 2003 04:34:46 +1100 Date: Fri, 14 Feb 2003 04:35:12 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Aurelien Nephtali Cc: Peter Wemm , , , Subject: Re: cvs commit: src/sys/kern kern_shutdown.c In-Reply-To: <20030213125204.GA12333@nebula.wanadoo.fr> Message-ID: <20030214041205.X4349-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003, Aurelien Nephtali wrote: > It could be good now to log the backtrace :/ > When one occurs it goes nowhere so if you cannot copy it on the moment, it is > lost forever (without talking about stopping the console and using Page UP and > Page Down). Only the LOR is logged + 'Stack backtrace:'. db_print_backtrace() never really worked, since ddb uses db_printf() but ordinary printf() should be used (except when db_print_backtrace() is actually from within ddb). Workaround: use a serial console. I think the correct fix is to replace db_printf() by printf(). printf() can decide what to do more easily than callers of *printf() can (by checking db_active). This would also avoid the once common error of calling printf() instead of db_printf() from ddb commands, and make printf() work right when it is called from functions that are called from within ddb using ddb's call command (printf() should act like db_printf() then). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:35: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D3037B413; Thu, 13 Feb 2003 09:35:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD99C43FAF; Thu, 13 Feb 2003 09:35:00 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DHZ0bv012777; Thu, 13 Feb 2003 09:35:00 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DHZ007012776; Thu, 13 Feb 2003 09:35:00 -0800 (PST) Message-Id: <200302131735.h1DHZ007012776@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 13 Feb 2003 09:35:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf malloc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/13 09:35:00 PST Modified files: libexec/rtld-elf malloc.c Log: Add missing include files I forgot about in previous commit. Revision Changes Path 1.8 +2 -0 src/libexec/rtld-elf/malloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:42:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD1B437B401; Thu, 13 Feb 2003 09:42:16 -0800 (PST) Received: from nebula.wanadoo.fr (ca-sqy-4-136.abo.wanadoo.fr [80.8.57.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94D8943F85; Thu, 13 Feb 2003 09:42:14 -0800 (PST) (envelope-from dak@wanadoo.fr) Received: from nebula.wanadoo.fr (localhost.wanadoo.fr [127.0.0.1]) by nebula.wanadoo.fr (8.12.7/8.12.7) with ESMTP id h1DHg1TM014239; Thu, 13 Feb 2003 18:42:01 +0100 (CET) (envelope-from dak@nebula.wanadoo.fr) Received: (from dak@localhost) by nebula.wanadoo.fr (8.12.7/8.12.7/Submit) id h1DHg1ja014238; Thu, 13 Feb 2003 18:42:01 +0100 (CET) Date: Thu, 13 Feb 2003 18:42:00 +0100 From: Aurelien Nephtali To: Bruce Evans Cc: Peter Wemm , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030213174200.GA14220@nebula.wanadoo.fr> References: <20030213125204.GA12333@nebula.wanadoo.fr> <20030214041205.X4349-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="envbJBWh7q8WU6mo" Content-Disposition: inline In-Reply-To: <20030214041205.X4349-100000@gamplex.bde.org> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --envbJBWh7q8WU6mo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 04:35:12AM +1100, Bruce Evans wrote: > On Thu, 13 Feb 2003, Aurelien Nephtali wrote: >=20 > > It could be good now to log the backtrace :/ > > When one occurs it goes nowhere so if you cannot copy it on the moment,= it is > > lost forever (without talking about stopping the console and using Page= UP and > > Page Down). Only the LOR is logged + 'Stack backtrace:'. >=20 > db_print_backtrace() never really worked, since ddb uses db_printf() but > ordinary printf() should be used (except when db_print_backtrace() is > actually from within ddb). >=20 > Workaround: use a serial console. Serial consoles seem to be a good thing, only if a COM port is present ... = :/ If someone has set up a parallel console ... mail me please :) >=20 > I think the correct fix is to replace db_printf() by printf(). printf() = can > decide what to do more easily than callers of *printf() can (by checking > db_active). This would also avoid the once common error of calling print= f() > instead of db_printf() from ddb commands, and make printf() work right wh= en > it is called from functions that are called from within ddb using ddb's > call command (printf() should act like db_printf() then). If this fix is correct and can be done without breaking everything, can som= eone do it please ? -- Aurelien --envbJBWh7q8WU6mo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+S9joDNsbHbt8ok8RAhiiAJ4ymdGkLFG+hpWLScRGR/3bLY/QYwCgpyQg wBOgude1/+eHlsLFTPh4uC8= =WbCd -----END PGP SIGNATURE----- --envbJBWh7q8WU6mo-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:47:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EDF337B401; Thu, 13 Feb 2003 09:47:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C131343F93; Thu, 13 Feb 2003 09:47:44 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DHlibv016543; Thu, 13 Feb 2003 09:47:44 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DHliKi016542; Thu, 13 Feb 2003 09:47:44 -0800 (PST) Message-Id: <200302131747.h1DHliKi016542@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 13 Feb 2003 09:47:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include dlfcn.h src/sys/sys link_elf.h src/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/13 09:47:44 PST Modified files: include dlfcn.h sys/sys link_elf.h libexec/rtld-elf rtld.h rtld.c lib/libc/gen dlfcn.c Log: Implement dlinfo() function. Introdice RTLD_SELF special handle and properly process it within dlsym() and dlinfo() functions. The intention is to improve our compatibility with Solaris and to make a Java port easier. Partially submitted by: phantom Revision Changes Path 1.19 +34 -3 src/include/dlfcn.h 1.10 +8 -0 src/lib/libc/gen/dlfcn.c 1.74 +262 -32 src/libexec/rtld-elf/rtld.c 1.26 +1 -1 src/libexec/rtld-elf/rtld.h 1.25 +13 -2 src/sys/sys/link_elf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:55:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2103B37B401; Thu, 13 Feb 2003 09:55:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA01043F85; Thu, 13 Feb 2003 09:55:12 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DHtCbv020107; Thu, 13 Feb 2003 09:55:12 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DHtC0O020106; Thu, 13 Feb 2003 09:55:12 -0800 (PST) Message-Id: <200302131755.h1DHtC0O020106@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Feb 2003 09:55:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/13 09:55:12 PST Modified files: . UPDATING Log: Acutally document how to make a LINT kernel config, besides telling all it is gone. Revision Changes Path 1.243 +2 -1 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:55:52 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE5F437B401; Thu, 13 Feb 2003 09:55:50 -0800 (PST) Received: from baraca.united.net.ua (ns.united.net.ua [193.111.8.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5063A43FD7; Thu, 13 Feb 2003 09:55:46 -0800 (PST) (envelope-from sobomax@portaone.com) Received: from vega.vega.com (xDSL-2-2.united.net.ua [193.111.9.226]) by baraca.united.net.ua (8.12.6/8.12.6) with ESMTP id h1DHtf0A004237; Thu, 13 Feb 2003 19:55:42 +0200 (EET) (envelope-from sobomax@portaone.com) Received: from portaone.com (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.12.6/8.12.5) with ESMTP id h1DHunUk006207; Thu, 13 Feb 2003 19:56:49 +0200 (EET) (envelope-from sobomax@portaone.com) Message-ID: <3E4BDC2A.7989571A@portaone.com> Date: Thu, 13 Feb 2003 19:55:54 +0200 From: Maxim Sobolev Organization: Porta Software Ltd X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Alexander Kabaev Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/sys/sys link_elf.hsrc/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c References: <200302131747.h1DHliKi016542@repoman.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Kabaev wrote: > > kan 2003/02/13 09:47:44 PST > > Modified files: > include dlfcn.h > sys/sys link_elf.h > libexec/rtld-elf rtld.h rtld.c > lib/libc/gen dlfcn.c > Log: > Implement dlinfo() function. > > Introdice RTLD_SELF special handle and properly process it within > dlsym() and dlinfo() functions. > > The intention is to improve our compatibility with Solaris and > to make a Java port easier. > > Partially submitted by: phantom > > Revision Changes Path > 1.19 +34 -3 src/include/dlfcn.h > 1.10 +8 -0 src/lib/libc/gen/dlfcn.c > 1.74 +262 -32 src/libexec/rtld-elf/rtld.c > 1.26 +1 -1 src/libexec/rtld-elf/rtld.h > 1.25 +13 -2 src/sys/sys/link_elf.h Please update documentation as well. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 9:57:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97F2637B401; Thu, 13 Feb 2003 09:57:25 -0800 (PST) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8040143FAF; Thu, 13 Feb 2003 09:57:24 -0800 (PST) (envelope-from ak03@gte.com) Received: from kanpc.gte.com (localhost [IPv6:::1]) by h132-197-179-27.gte.com (8.12.6/8.12.6) with ESMTP id h1DHvNQa040211; Thu, 13 Feb 2003 12:57:23 -0500 (EST) (envelope-from ak03@kanpc.gte.com) Received: (from ak03@localhost) by kanpc.gte.com (8.12.6/8.12.6/Submit) id h1DHvN72040210; Thu, 13 Feb 2003 12:57:23 -0500 (EST) Date: Thu, 13 Feb 2003 12:57:23 -0500 From: Alexander Kabaev To: Maxim Sobolev Cc: kan@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/sys/sys link_elf.hsrc/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c Message-Id: <20030213125723.47b4d15c.ak03@gte.com> In-Reply-To: <3E4BDC2A.7989571A@portaone.com> References: <200302131747.h1DHliKi016542@repoman.freebsd.org> <3E4BDC2A.7989571A@portaone.com> Organization: Verizon Data Services X-Mailer: Sylpheed version 0.8.10claws8 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexey is presumably working on it. He volunteered :) On Thu, 13 Feb 2003 19:55:54 +0200 Maxim Sobolev wrote: > Alexander Kabaev wrote: > > > > kan 2003/02/13 09:47:44 PST > > > > Modified files: > > include dlfcn.h > > sys/sys link_elf.h > > libexec/rtld-elf rtld.h rtld.c > > lib/libc/gen dlfcn.c > > Log: > > Implement dlinfo() function. > > > > Introdice RTLD_SELF special handle and properly process it within > > dlsym() and dlinfo() functions. > > > > The intention is to improve our compatibility with Solaris and > > to make a Java port easier. > > > > Partially submitted by: phantom > > > > Revision Changes Path > > 1.19 +34 -3 src/include/dlfcn.h > > 1.10 +8 -0 src/lib/libc/gen/dlfcn.c > > 1.74 +262 -32 src/libexec/rtld-elf/rtld.c > > 1.26 +1 -1 src/libexec/rtld-elf/rtld.h > > 1.25 +13 -2 src/sys/sys/link_elf.h > > Please update documentation as well. > > -Maxim -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10: 3:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2003837B401; Thu, 13 Feb 2003 10:03:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C203543FBD; Thu, 13 Feb 2003 10:03:21 -0800 (PST) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DI3Lbv024086; Thu, 13 Feb 2003 10:03:21 -0800 (PST) (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DI3L5h024085; Thu, 13 Feb 2003 10:03:21 -0800 (PST) Message-Id: <200302131803.h1DI3L5h024085@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 13 Feb 2003 10:03:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING src/contrib/sendmail FREEBSD-upgrade KNOWNBUGS README RELEASE_NOTES src/contrib/sendmail/cf README sendmail.schema src/contrib/sendmail/cf/cf submit.cf submit.mc src/contrib/sendmail/cf/feature local_procmail.m4 src/contrib/sendmail/cf/m4 ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2003/02/13 10:03:21 PST Modified files: (Branch: RELENG_4) . UPDATING contrib/sendmail FREEBSD-upgrade KNOWNBUGS README RELEASE_NOTES contrib/sendmail/cf README sendmail.schema contrib/sendmail/cf/cf submit.cf submit.mc contrib/sendmail/cf/feature local_procmail.m4 contrib/sendmail/cf/m4 cfhead.m4 proto.m4 version.m4 contrib/sendmail/contrib cidrexpand doublebounce.pl contrib/sendmail/doc/op op.me contrib/sendmail/include/libmilter mfapi.h mfdef.h milter.h contrib/sendmail/include/libsmdb smdb.h contrib/sendmail/include/sm conf.h fdset.h contrib/sendmail/include/sm/os sm_os_unixware.h contrib/sendmail/libmilter README comm.c engine.c handler.c libmilter.h listener.c main.c signal.c contrib/sendmail/libmilter/docs smfi_settimeout.html contrib/sendmail/libsm local.h mbdb.c refill.c stdio.c contrib/sendmail/libsmdb smdb2.c contrib/sendmail/libsmutil cf.c contrib/sendmail/mail.local mail.local.c contrib/sendmail/mailstats mailstats.8 contrib/sendmail/smrsh smrsh.c contrib/sendmail/src Makefile.m4 README SECURITY TRACEFLAGS collect.c conf.c conf.h control.c daemon.c deliver.c envelope.c headers.c mailq.1 main.c map.c mci.c milter.c parseaddr.c queue.c readcf.c recipient.c sasl.c savemail.c sendmail.h sfsasl.c srvrsmtp.c sysexits.c tls.c trace.c udb.c usersmtp.c util.c version.c contrib/sendmail/vacation vacation.c Added files: (Branch: RELENG_4) contrib/sendmail/include/sm bdb.h Log: MFC: sendmail 8.12.7 Revision Changes Path 1.73.2.79 +7 -0 src/UPDATING 1.1.2.14 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.3.2.6 +7 -1 src/contrib/sendmail/KNOWNBUGS 1.1.1.3.2.5 +20 -5 src/contrib/sendmail/README 1.1.1.3.2.13 +113 -1 src/contrib/sendmail/RELEASE_NOTES 1.1.1.3.2.13 +108 -59 src/contrib/sendmail/cf/README 1.1.1.1.2.6 +11 -10 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.1.2.3 +5 -2 src/contrib/sendmail/cf/cf/submit.mc 1.1.1.2.6.2 +6 -2 src/contrib/sendmail/cf/feature/local_procmail.m4 1.3.6.7 +4 -4 src/contrib/sendmail/cf/m4/cfhead.m4 1.1.1.4.2.12 +49 -15 src/contrib/sendmail/cf/m4/proto.m4 1.1.1.3.2.13 +2 -2 src/contrib/sendmail/cf/m4/version.m4 1.1.1.1.2.3 +3 -3 src/contrib/sendmail/cf/sendmail.schema 1.1.1.1.2.2 +29 -7 src/contrib/sendmail/contrib/cidrexpand 1.1.1.1.6.1 +197 -204 src/contrib/sendmail/contrib/doublebounce.pl 1.1.1.3.2.13 +112 -49 src/contrib/sendmail/doc/op/op.me 1.1.1.1.2.7 +3 -2 src/contrib/sendmail/include/libmilter/mfapi.h 1.1.1.1.2.2 +4 -1 src/contrib/sendmail/include/libmilter/mfdef.h 1.1.1.1.2.7 +2 -2 src/contrib/sendmail/include/libmilter/milter.h 1.1.1.1.2.6 +2 -5 src/contrib/sendmail/include/libsmdb/smdb.h 1.1.1.1.2.1 +47 -0 src/contrib/sendmail/include/sm/bdb.h (new) 1.1.1.1.2.6 +64 -37 src/contrib/sendmail/include/sm/conf.h 1.1.1.1.2.2 +9 -3 src/contrib/sendmail/include/sm/fdset.h 1.1.1.1.2.2 +13 -3 src/contrib/sendmail/include/sm/os/sm_os_unixware.h 1.1.1.1.2.8 +2 -2 src/contrib/sendmail/libmilter/README 1.1.1.1.2.7 +4 -12 src/contrib/sendmail/libmilter/comm.c 1.1.1.1.2.2 +5 -2 src/contrib/sendmail/libmilter/docs/smfi_settimeout.html 1.1.1.1.2.8 +21 -21 src/contrib/sendmail/libmilter/engine.c 1.1.1.1.2.5 +3 -3 src/contrib/sendmail/libmilter/handler.c 1.1.1.1.2.8 +3 -3 src/contrib/sendmail/libmilter/libmilter.h 1.1.1.1.2.10 +20 -13 src/contrib/sendmail/libmilter/listener.c 1.1.1.1.2.8 +7 -7 src/contrib/sendmail/libmilter/main.c 1.1.1.1.2.6 +4 -1 src/contrib/sendmail/libmilter/signal.c 1.1.1.1.2.3 +6 -1 src/contrib/sendmail/libsm/local.h 1.1.1.1.2.4 +8 -5 src/contrib/sendmail/libsm/mbdb.c 1.1.1.1.2.2 +6 -1 src/contrib/sendmail/libsm/refill.c 1.1.1.1.2.3 +7 -3 src/contrib/sendmail/libsm/stdio.c 1.1.1.1.2.7 +5 -5 src/contrib/sendmail/libsmdb/smdb2.c 1.1.1.1.2.3 +19 -14 src/contrib/sendmail/libsmutil/cf.c 1.6.6.12 +29 -4 src/contrib/sendmail/mail.local/mail.local.c 1.1.1.2.6.7 +4 -4 src/contrib/sendmail/mailstats/mailstats.8 1.3.6.10 +10 -10 src/contrib/sendmail/smrsh/smrsh.c 1.1.1.3.2.7 +1 -2 src/contrib/sendmail/src/Makefile.m4 1.1.1.3.2.12 +38 -13 src/contrib/sendmail/src/README 1.1.1.1.2.3 +3 -2 src/contrib/sendmail/src/SECURITY 1.1.1.2.6.6 +6 -1 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.4.2.11 +11 -1 src/contrib/sendmail/src/collect.c 1.5.2.12 +53 -13 src/contrib/sendmail/src/conf.c 1.6.2.12 +5 -2 src/contrib/sendmail/src/conf.h 1.1.1.2.2.8 +9 -1 src/contrib/sendmail/src/control.c 1.1.1.3.2.11 +43 -33 src/contrib/sendmail/src/daemon.c 1.1.1.3.2.12 +40 -5 src/contrib/sendmail/src/deliver.c 1.1.1.3.2.8 +40 -2 src/contrib/sendmail/src/envelope.c 1.4.2.8 +4 -4 src/contrib/sendmail/src/headers.c 1.3.6.9 +25 -3 src/contrib/sendmail/src/mailq.1 1.1.1.3.2.13 +32 -18 src/contrib/sendmail/src/main.c 1.1.1.3.2.13 +42 -17 src/contrib/sendmail/src/map.c 1.3.6.9 +4 -2 src/contrib/sendmail/src/mci.c 1.1.1.1.2.14 +26 -18 src/contrib/sendmail/src/milter.c 1.1.1.2.6.11 +2 -1 src/contrib/sendmail/src/parseaddr.c 1.1.1.3.2.12 +68 -68 src/contrib/sendmail/src/queue.c 1.1.1.4.2.13 +43 -9 src/contrib/sendmail/src/readcf.c 1.1.1.3.2.7 +2 -2 src/contrib/sendmail/src/recipient.c 1.1.1.1.2.6 +2 -2 src/contrib/sendmail/src/sasl.c 1.4.2.9 +3 -21 src/contrib/sendmail/src/savemail.c 1.1.1.4.2.13 +43 -19 src/contrib/sendmail/src/sendmail.h 1.1.1.1.2.11 +6 -2 src/contrib/sendmail/src/sfsasl.c 1.1.1.2.6.12 +119 -44 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.2.6.3 +8 -3 src/contrib/sendmail/src/sysexits.c 1.1.1.1.2.3 +16 -16 src/contrib/sendmail/src/tls.c 1.1.1.2.6.5 +2 -2 src/contrib/sendmail/src/trace.c 1.1.1.3.2.5 +7 -13 src/contrib/sendmail/src/udb.c 1.1.1.3.2.11 +15 -6 src/contrib/sendmail/src/usersmtp.c 1.1.1.3.2.10 +33 -1 src/contrib/sendmail/src/util.c 1.1.1.3.2.13 +2 -2 src/contrib/sendmail/src/version.c 1.1.1.1.2.10 +2 -2 src/contrib/sendmail/vacation/vacation.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:18:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48E8D37B401; Thu, 13 Feb 2003 10:18:51 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C5D43F3F; Thu, 13 Feb 2003 10:18:48 -0800 (PST) (envelope-from phantom@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h1DKOhvb038157; Thu, 13 Feb 2003 20:24:43 GMT Received: (from phantom@localhost) by phantom.cris.net (8.12.6/8.12.2) id h1DIPaaj005111; Thu, 13 Feb 2003 20:25:36 +0200 (EET) (envelope-from phantom) Date: Thu, 13 Feb 2003 20:25:36 +0200 From: Alexey Zelkin To: Alexander Kabaev Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/sys/sys link_elf.h src/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c Message-ID: <20030213202536.A5080@phantom.cris.net> References: <200302131747.h1DHliKi016542@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200302131747.h1DHliKi016542@repoman.freebsd.org>; from kan@FreeBSD.org on Thu, Feb 13, 2003 at 09:47:44AM -0800 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks! On Thu, Feb 13, 2003 at 09:47:44AM -0800, Alexander Kabaev wrote: > kan 2003/02/13 09:47:44 PST > > Modified files: > include dlfcn.h > sys/sys link_elf.h > libexec/rtld-elf rtld.h rtld.c > lib/libc/gen dlfcn.c > Log: > Implement dlinfo() function. > > Introdice RTLD_SELF special handle and properly process it within > dlsym() and dlinfo() functions. > > The intention is to improve our compatibility with Solaris and > to make a Java port easier. Actually not easer, but make its behaviour more close to original Solaris JDK. > Partially submitted by: phantom > > Revision Changes Path > 1.19 +34 -3 src/include/dlfcn.h > 1.10 +8 -0 src/lib/libc/gen/dlfcn.c > 1.74 +262 -32 src/libexec/rtld-elf/rtld.c > 1.26 +1 -1 src/libexec/rtld-elf/rtld.h > 1.25 +13 -2 src/sys/sys/link_elf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:21:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4A237B401; Thu, 13 Feb 2003 10:21:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52A4743F93; Thu, 13 Feb 2003 10:21:33 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DILXbv029639; Thu, 13 Feb 2003 10:21:33 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DILWm1029630; Thu, 13 Feb 2003 10:21:32 -0800 (PST) Message-Id: <200302131821.h1DILWm1029630@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:21:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:21:32 PST Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Add 'libgeom' to list of valid .Lb arguments Revision Changes Path 1.21 +1 -0 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:23:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DA3937B401; Thu, 13 Feb 2003 10:23:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10DE343FAF; Thu, 13 Feb 2003 10:23:14 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DINDbv031250; Thu, 13 Feb 2003 10:23:13 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DINDhV031249; Thu, 13 Feb 2003 10:23:13 -0800 (PST) Message-Id: <200302131823.h1DINDhV031249@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:23:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:23:13 PST Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: FreeBSD 5.x does not provide libskey anymore, remove reference Revision Changes Path 1.22 +0 -1 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:25:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AD7537B401; Thu, 13 Feb 2003 10:25:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1BEA43FBD; Thu, 13 Feb 2003 10:25:48 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DIPmbv031342; Thu, 13 Feb 2003 10:25:48 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DIPm9G031341; Thu, 13 Feb 2003 10:25:48 -0800 (PST) Message-Id: <200302131825.h1DIPm9G031341@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:25:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libgeom libgeom.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:25:48 PST Modified files: lib/libgeom libgeom.3 Log: Fix some mdoc issues: add .Nd to NAME section, use valid .Lb argument, use .Fn there appropriate Revision Changes Path 1.2 +16 -15 src/lib/libgeom/libgeom.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:27: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FC4E37B401; Thu, 13 Feb 2003 10:27:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4416A43F75; Thu, 13 Feb 2003 10:27:06 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DIR6bv031397; Thu, 13 Feb 2003 10:27:06 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DIR5tu031396; Thu, 13 Feb 2003 10:27:05 -0800 (PST) Message-Id: <200302131827.h1DIR5tu031396@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:27:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libgeom Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:27:05 PST Modified files: lib/libgeom Makefile Log: Add appropriate MLINKS for functions documented in libgeom.3 Revision Changes Path 1.4 +10 -0 src/lib/libgeom/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:35: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 346B837B401; Thu, 13 Feb 2003 10:35:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC84C43F75; Thu, 13 Feb 2003 10:35:05 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DIZ5bv034899; Thu, 13 Feb 2003 10:35:05 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DIZ5lK034898; Thu, 13 Feb 2003 10:35:05 -0800 (PST) Message-Id: <200302131835.h1DIZ5lK034898@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:35:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:35:05 PST Modified files: lib/libc_r/man Makefile.inc Log: Rehash MLINKS: add missing ones for recently added pthread_attr_{get,set}stack() functions and remove links for 3 non-existent functions Revision Changes Path 1.17 +2 -3 src/lib/libc_r/man/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:36:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0054237B401; Thu, 13 Feb 2003 10:36:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97DCE43F75; Thu, 13 Feb 2003 10:36:48 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DIambv034972; Thu, 13 Feb 2003 10:36:48 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DIamud034971; Thu, 13 Feb 2003 10:36:48 -0800 (PST) Message-Id: <200302131836.h1DIamud034971@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:36:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man pthread_attr.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:36:48 PST Modified files: lib/libc_r/man pthread_attr.3 Log: Add cross reference for pthread_attr_get_np() Revision Changes Path 1.13 +1 -0 src/lib/libc_r/man/pthread_attr.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:39: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DCE337B401; Thu, 13 Feb 2003 10:39:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4F4343FBD; Thu, 13 Feb 2003 10:39:06 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DId6bv035120; Thu, 13 Feb 2003 10:39:06 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DId6am035119; Thu, 13 Feb 2003 10:39:06 -0800 (PST) Message-Id: <200302131839.h1DId6am035119@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 10:39:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man pthread_attr_get_np.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 10:39:06 PST Modified files: lib/libc_r/man pthread_attr_get_np.3 Log: Break important implementation detail note into IMPLEMENTATION DETAILS section. Add cross reference to pthread_attr_getstack() function. MFC after: 1 day Revision Changes Path 1.6 +7 -3 src/lib/libc_r/man/pthread_attr_get_np.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 10:59:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A38C37B401; Thu, 13 Feb 2003 10:59:31 -0800 (PST) Received: from baraca.united.net.ua (ns.united.net.ua [193.111.8.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDAB243FBD; Thu, 13 Feb 2003 10:59:29 -0800 (PST) (envelope-from sobomax@portaone.com) Received: from vega.vega.com (xDSL-2-2.united.net.ua [193.111.9.226]) by baraca.united.net.ua (8.12.6/8.12.6) with ESMTP id h1DIxO0A010513; Thu, 13 Feb 2003 20:59:26 +0200 (EET) (envelope-from sobomax@portaone.com) Received: from portaone.com (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.12.6/8.12.5) with ESMTP id h1DJ0WUk006532; Thu, 13 Feb 2003 21:00:32 +0200 (EET) (envelope-from sobomax@portaone.com) Message-ID: <3E4BEB1A.26E06922@portaone.com> Date: Thu, 13 Feb 2003 20:59:38 +0200 From: Maxim Sobolev Organization: Porta Software Ltd X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Alexander Kabaev Cc: kan@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/sys/sys link_elf.hsrc/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c References: <200302131747.h1DHliKi016542@repoman.freebsd.org> <3E4BDC2A.7989571A@portaone.com> <20030213125723.47b4d15c.ak03@gte.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Kabaev wrote: > > Alexey is presumably working on it. He volunteered :) That's fine, but I would recommend the following rule of thumb "commit a new feature only along with documentation. If documentation isn't ready then don't commit at all until it is finished." -Maxim > > On Thu, 13 Feb 2003 19:55:54 +0200 > Maxim Sobolev wrote: > > > Alexander Kabaev wrote: > > > > > > kan 2003/02/13 09:47:44 PST > > > > > > Modified files: > > > include dlfcn.h > > > sys/sys link_elf.h > > > libexec/rtld-elf rtld.h rtld.c > > > lib/libc/gen dlfcn.c > > > Log: > > > Implement dlinfo() function. > > > > > > Introdice RTLD_SELF special handle and properly process it within > > > dlsym() and dlinfo() functions. > > > > > > The intention is to improve our compatibility with Solaris and > > > to make a Java port easier. > > > > > > Partially submitted by: phantom > > > > > > Revision Changes Path > > > 1.19 +34 -3 src/include/dlfcn.h > > > 1.10 +8 -0 src/lib/libc/gen/dlfcn.c > > > 1.74 +262 -32 src/libexec/rtld-elf/rtld.c > > > 1.26 +1 -1 src/libexec/rtld-elf/rtld.h > > > 1.25 +13 -2 src/sys/sys/link_elf.h > > > > Please update documentation as well. > > > > -Maxim > > -- > Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 11: 6:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A423037B401; Thu, 13 Feb 2003 11:06:11 -0800 (PST) Received: from h132-197-179-27.gte.com (h132-197-179-27.gte.com [132.197.179.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 929EF43FB1; Thu, 13 Feb 2003 11:06:10 -0800 (PST) (envelope-from ak03@gte.com) Received: from kanpc.gte.com (localhost [IPv6:::1]) by h132-197-179-27.gte.com (8.12.6/8.12.6) with ESMTP id h1DJ69Qa043175; Thu, 13 Feb 2003 14:06:09 -0500 (EST) (envelope-from ak03@kanpc.gte.com) Received: (from ak03@localhost) by kanpc.gte.com (8.12.6/8.12.6/Submit) id h1DJ690P043171; Thu, 13 Feb 2003 14:06:09 -0500 (EST) Date: Thu, 13 Feb 2003 14:06:09 -0500 From: Alexander Kabaev To: Maxim Sobolev Cc: kan@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/sys/sys link_elf.hsrc/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c Message-Id: <20030213140609.15c9c0f4.ak03@gte.com> In-Reply-To: <3E4BEB1A.26E06922@portaone.com> References: <200302131747.h1DHliKi016542@repoman.freebsd.org> <3E4BDC2A.7989571A@portaone.com> <20030213125723.47b4d15c.ak03@gte.com> <3E4BEB1A.26E06922@portaone.com> Organization: Verizon Data Services X-Mailer: Sylpheed version 0.8.10claws8 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003 20:59:38 +0200 Maxim Sobolev wrote: > > That's fine, but I would recommend the following rule of thumb "commit > a new feature only along with documentation. If documentation isn't > ready then don't commit at all until it is finished." And in my turn I would recommend you to stop bugging me about it. If missing man page bothers you so much, go ahead and write it yourself. Otherwise wait for it to become available. I needed this code to get some testing as soon as possible. It is slated for MFC and with code freeze happening this week waiting for man page to be completed was not an option. Man page is getting cared of as we speak. -- Alexander Kabaev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 11:24:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3334C37B401; Thu, 13 Feb 2003 11:24:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCB8E43FA3; Thu, 13 Feb 2003 11:24:19 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DJOJbv052927; Thu, 13 Feb 2003 11:24:19 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DJOJME052926; Thu, 13 Feb 2003 11:24:19 -0800 (PST) Message-Id: <200302131924.h1DJOJME052926@repoman.freebsd.org> From: Eric Anholt Date: Thu, 13 Feb 2003 11:24:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agpreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anholt 2003/02/13 11:24:19 PST Modified files: sys/pci agpreg.h Log: Add agpreg.h missed in commit to agp_i810 (adding i85x/i86x AGP support). Revision Changes Path 1.7 +26 -0 src/sys/pci/agpreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 11:28:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71E2537B401; Thu, 13 Feb 2003 11:28:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16AC643F85; Thu, 13 Feb 2003 11:28:09 -0800 (PST) (envelope-from fanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DJS8bv053097; Thu, 13 Feb 2003 11:28:08 -0800 (PST) (envelope-from fanf@repoman.freebsd.org) Received: (from fanf@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DJS8Hs053096; Thu, 13 Feb 2003 11:28:08 -0800 (PST) Message-Id: <200302131928.h1DJS8Hs053096@repoman.freebsd.org> From: Tony Finch Date: Thu, 13 Feb 2003 11:28:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh sh.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fanf 2003/02/13 11:28:08 PST Modified files: (Branch: RELENG_4) bin/sh sh.1 Log: MFC 1.84: improved formatting Revision Changes Path 1.39.2.25 +2 -0 src/bin/sh/sh.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 11:39:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34D3C37B406; Thu, 13 Feb 2003 11:39:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBD6A43FAF; Thu, 13 Feb 2003 11:39:54 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DJdsbv056772; Thu, 13 Feb 2003 11:39:54 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DJdsKr056771; Thu, 13 Feb 2003 11:39:54 -0800 (PST) Message-Id: <200302131939.h1DJdsKr056771@repoman.freebsd.org> From: Alan Cox Date: Thu, 13 Feb 2003 11:39:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_pipe.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/13 11:39:54 PST Modified files: sys/kern sys_pipe.c Log: Use atomic ops to update amountpipekva. Amountpipekva represents the total kernel virtual address space used by all pipes. It is, thus, outside the scope of any individual pipe lock. Revision Changes Path 1.130 +8 -5 src/sys/kern/sys_pipe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 11:58:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B68B837B401; Thu, 13 Feb 2003 11:58:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5831C43F3F; Thu, 13 Feb 2003 11:58:33 -0800 (PST) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DJwXbv064299; Thu, 13 Feb 2003 11:58:33 -0800 (PST) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DJwXw1064298; Thu, 13 Feb 2003 11:58:33 -0800 (PST) Message-Id: <200302131958.h1DJwXw1064298@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 13 Feb 2003 11:58:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hrs 2003/02/13 11:58:33 PST Modified files: (Branch: RELENG_4) release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Catch up with the English version: 1.22.2.325 -> 1.22.2.327 relnotes/common/new.sgml Revision Changes Path 1.5.2.40 +27 -1 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 12: 5:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F76937B401; Thu, 13 Feb 2003 12:05:45 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB6C43F93; Thu, 13 Feb 2003 12:05:44 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 9254DAE1C6; Thu, 13 Feb 2003 12:05:44 -0800 (PST) Date: Thu, 13 Feb 2003 12:05:44 -0800 From: Alfred Perlstein To: Alexey Zelkin Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc_r/man Makefile.inc Message-ID: <20030213200544.GA88781@elvis.mu.org> References: <200302131835.h1DIZ5lK034898@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302131835.h1DIZ5lK034898@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Alexey Zelkin [030213 10:35] wrote: > phantom 2003/02/13 10:35:05 PST > > Modified files: > lib/libc_r/man Makefile.inc > Log: > Rehash MLINKS: add missing ones for recently added pthread_attr_{get,set}stack() > functions and remove links for 3 non-existent functions thank you! > > Revision Changes Path > 1.17 +2 -3 src/lib/libc_r/man/Makefile.inc -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 12: 8:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C30237B401; Thu, 13 Feb 2003 12:08:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B53B043FB1; Thu, 13 Feb 2003 12:08:12 -0800 (PST) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DK8Cbv067908; Thu, 13 Feb 2003 12:08:12 -0800 (PST) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DK8CSe067907; Thu, 13 Feb 2003 12:08:12 -0800 (PST) Message-Id: <200302132008.h1DK8CSe067907@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 13 Feb 2003 12:08:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hrs 2003/02/13 12:08:12 PST Modified files: share/man/man5 rc.conf.5 Log: Document start_if.${ifn} scripts. Not objected to by: -doc Revision Changes Path 1.174 +6 -0 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 12:15:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B34F437B401; Thu, 13 Feb 2003 12:15:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BF5D43F75; Thu, 13 Feb 2003 12:15:27 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DKFRbv071422; Thu, 13 Feb 2003 12:15:27 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DKFRDH071421; Thu, 13 Feb 2003 12:15:27 -0800 (PST) Message-Id: <200302132015.h1DKFRDH071421@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 13 Feb 2003 12:15:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/kerberos5/include crypto-headers.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/13 12:15:26 PST Modified files: (Branch: RELENG_4) kerberos5/include crypto-headers.h Log: MFC 1.2: Define OPENSSL_DES_LIBDES_COMPATIBILITY. Revision Changes Path 1.1.2.2 +1 -0 src/kerberos5/include/crypto-headers.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 12:21:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D222737B401; Thu, 13 Feb 2003 12:21:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57AE443FBD; Thu, 13 Feb 2003 12:21:55 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DKLtbv074123; Thu, 13 Feb 2003 12:21:55 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DKLt7c074122; Thu, 13 Feb 2003 12:21:55 -0800 (PST) Message-Id: <200302132021.h1DKLt7c074122@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 13 Feb 2003 12:21:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/heimdal/kuser kuser_locl.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/13 12:21:55 PST Modified files: (Branch: RELENG_4) crypto/heimdal/kuser kuser_locl.h Log: MFC 1.1.1.2: Add a missing include. Revision Changes Path 1.1.1.1.2.1 +2 -1 src/crypto/heimdal/kuser/kuser_locl.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 12:49:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A01C37B401; Thu, 13 Feb 2003 12:49:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD4C443F3F; Thu, 13 Feb 2003 12:49:15 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DKnFbv082174; Thu, 13 Feb 2003 12:49:15 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DKnFuv082173; Thu, 13 Feb 2003 12:49:15 -0800 (PST) Message-Id: <200302132049.h1DKnFuv082173@repoman.freebsd.org> From: Christian Weisgerber Date: Thu, 13 Feb 2003 12:49:15 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/13 12:49:15 PST Modified files: . modules Log: Remove garbage. Revision Changes Path 1.6729 +1 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13: 3:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 728E737B401; Thu, 13 Feb 2003 13:03:13 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0197543FB1; Thu, 13 Feb 2003 13:03:13 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id D8D952A8B4; Thu, 13 Feb 2003 13:03:12 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Bruce Evans Cc: Aurelien Nephtali , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c In-Reply-To: <20030214041205.X4349-100000@gamplex.bde.org> Date: Thu, 13 Feb 2003 13:03:12 -0800 From: Peter Wemm Message-Id: <20030213210312.D8D952A8B4@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bruce Evans wrote: > On Thu, 13 Feb 2003, Aurelien Nephtali wrote: > > > It could be good now to log the backtrace :/ > > When one occurs it goes nowhere so if you cannot copy it on the moment, it is > > lost forever (without talking about stopping the console and using Page UP and > > Page Down). Only the LOR is logged + 'Stack backtrace:'. > > db_print_backtrace() never really worked, since ddb uses db_printf() but > ordinary printf() should be used (except when db_print_backtrace() is > actually from within ddb). > > Workaround: use a serial console. We probably should go a little further and provide something that isn't dependent on DDB. Since we have the symbols available in most cases (even without DDB), we may as well use them. Then we can tweak the logging so that it comes out in the way most useful for collecting for bug reports. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Thu Feb 13 13: 5: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDDAB37B401; Thu, 13 Feb 2003 13:04:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E83A43F85; Thu, 13 Feb 2003 13:04:59 -0800 (PST) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DL4xbv089255; Thu, 13 Feb 2003 13:04:59 -0800 (PST) (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DL4xa0089254; Thu, 13 Feb 2003 13:04:59 -0800 (PST) Message-Id: <200302132104.h1DL4xa0089254@repoman.freebsd.org> From: Ville Skyttä Date: Thu, 13 Feb 2003 13:04:59 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scop 2003/02/13 13:04:59 PST Modified files: . access.master Log: I'm a projects committer (already taken care of there). Revision Changes Path 1.601 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:13:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 741FA37B401; Thu, 13 Feb 2003 13:13:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17CF943FB1; Thu, 13 Feb 2003 13:13:11 -0800 (PST) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLDAbv092848; Thu, 13 Feb 2003 13:13:10 -0800 (PST) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLDARX092847; Thu, 13 Feb 2003 13:13:10 -0800 (PST) Message-Id: <200302132113.h1DLDARX092847@repoman.freebsd.org> From: Peter Wemm Date: Thu, 13 Feb 2003 13:13:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2003/02/13 13:13:10 PST Modified files: sys/modules Makefile Log: We only provide agp drivers for the intel chipsets, move the agp subdir to the i386-only section. Revision Changes Path 1.303 +1 -1 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:18:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA97337B405; Thu, 13 Feb 2003 13:18:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59A5743FA3; Thu, 13 Feb 2003 13:18:20 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLIKbv093028; Thu, 13 Feb 2003 13:18:20 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLIK0O093027; Thu, 13 Feb 2003 13:18:20 -0800 (PST) Message-Id: <200302132118.h1DLIK0O093027@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 13:18:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 13:18:20 PST Modified files: tools/tools/tinderbox tbmaster.pl Log: Complete overhaul of the configuration system, allowing the user to select one of multiple configurations at runtime. Revision Changes Path 1.6 +81 -41 src/tools/tools/tinderbox/tbmaster.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:19:23 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BC5237B401; Thu, 13 Feb 2003 13:19:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1A5E43F93; Thu, 13 Feb 2003 13:19:20 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLJKbv093073; Thu, 13 Feb 2003 13:19:20 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLJKcL093072; Thu, 13 Feb 2003 13:19:20 -0800 (PST) Message-Id: <200302132119.h1DLJKcL093072@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 13:19:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 13:19:20 PST Modified files: tools/tools/tinderbox tinderbox.pl Log: Pass KERNCONF on the command line rather than in the environment, since the command line is included in the log. Revision Changes Path 1.5 +2 -4 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:21:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECFEF37B405; Thu, 13 Feb 2003 13:21:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6052243FE0; Thu, 13 Feb 2003 13:21:52 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLLqbv095596; Thu, 13 Feb 2003 13:21:52 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLLovx095558; Thu, 13 Feb 2003 13:21:50 -0800 (PST) Message-Id: <200302132121.h1DLLovx095558@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 13:21:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/13 13:21:50 PST Modified files: tools/tools/tinderbox tinderbox.pl Log: Make the tinderbox log lines less obtrusive. Revision Changes Path 1.6 +2 -4 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:34:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 489FD37B401; Thu, 13 Feb 2003 13:34:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F2843FBF; Thu, 13 Feb 2003 13:34:36 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLYabv000441; Thu, 13 Feb 2003 13:34:36 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLYaJj000440; Thu, 13 Feb 2003 13:34:36 -0800 (PST) Message-Id: <200302132134.h1DLYaJj000440@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 13 Feb 2003 13:34:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/kerberosIV/admin adm_locl.h src/crypto/kerberosIV/appl/afsutil kstring2key.c src/crypto/kerberosIV/appl/bsd bsd_locl.h src/crypto/kerberosIV/appl/ftp/ftp ftp_locl.h src/crypto/kerberosIV/appl/telnet/libtelnet enc_des.c kerberos.c krb4encpwd.c ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/13 13:34:36 PST Modified files: (Branch: RELENG_4) crypto/kerberosIV/admin adm_locl.h crypto/kerberosIV/appl/afsutil kstring2key.c crypto/kerberosIV/appl/bsd bsd_locl.h crypto/kerberosIV/appl/ftp/ftp ftp_locl.h crypto/kerberosIV/appl/telnet/libtelnet enc_des.c kerberos.c krb4encpwd.c crypto/kerberosIV/appl/telnet/telnetd telnetd.h crypto/kerberosIV/kadmin kadm_locl.h crypto/kerberosIV/lib/kadm kadm_cli_wrap.c kadm_locl.h crypto/kerberosIV/lib/krb krb-protos.h krb.h krb_check_auth.c mk_priv.c rd_priv.c recvauth.c sendauth.c solaris_compat.c crypto/kerberosIV/server kerberos.c Log: MFC 1.4 src/crypto/kerberosIV/admin/adm_locl.h, 1.4 src/crypto/kerberosIV/appl/afsutil/kstring2key.c, 1.7 src/crypto/kerberosIV/appl/bsd/bsd_locl.h, 1.4 src/crypto/kerberosIV/appl/ftp/ftp/ftp_locl.h, 1.4 src/crypto/kerberosIV/appl/telnet/libtelnet/enc_des.c, 1.5 src/crypto/kerberosIV/appl/telnet/libtelnet/kerberos.c, 1.5 src/crypto/kerberosIV/appl/telnet/libtelnet/krb4encpwd.c, 1.5 src/crypto/kerberosIV/appl/telnet/telnetd/telnetd.h, 1.4 src/crypto/kerberosIV/kadmin/kadm_locl.h, 1.3 src/crypto/kerberosIV/lib/kadm/kadm_cli_wrap.c, 1.4 src/crypto/kerberosIV/lib/kadm/kadm_locl.h, 1.2 src/crypto/kerberosIV/lib/krb/krb-protos.h, 1.8 src/crypto/kerberosIV/lib/krb/krb.h, 1.2 src/crypto/kerberosIV/lib/krb/krb_check_auth.c, 1.2 src/crypto/kerberosIV/lib/krb/mk_priv.c, 1.2 src/crypto/kerberosIV/lib/krb/rd_priv.c, 1.2 src/crypto/kerberosIV/lib/krb/recvauth.c, 1.2 src/crypto/kerberosIV/lib/krb/sendauth.c, 1.2 src/crypto/kerberosIV/lib/krb/solaris_compat.c, 1.5 src/crypto/kerberosIV/server/kerberos.c: Make the Kerberos 4 bits build against OpenSSL 0.9.7. Revision Changes Path 1.2.2.1 +2 -1 src/crypto/kerberosIV/admin/adm_locl.h 1.2.2.1 +2 -1 src/crypto/kerberosIV/appl/afsutil/kstring2key.c 1.4.2.2 +2 -1 src/crypto/kerberosIV/appl/bsd/bsd_locl.h 1.2.2.1 +2 -1 src/crypto/kerberosIV/appl/ftp/ftp/ftp_locl.h 1.2.2.1 +2 -1 src/crypto/kerberosIV/appl/telnet/libtelnet/enc_des.c 1.2.2.2 +2 -1 src/crypto/kerberosIV/appl/telnet/libtelnet/kerberos.c 1.2.2.2 +2 -1 src/crypto/kerberosIV/appl/telnet/libtelnet/krb4encpwd.c 1.2.2.2 +2 -1 src/crypto/kerberosIV/appl/telnet/telnetd/telnetd.h 1.2.2.1 +2 -1 src/crypto/kerberosIV/kadmin/kadm_locl.h 1.1.1.3.2.2 +2 -2 src/crypto/kerberosIV/lib/kadm/kadm_cli_wrap.c 1.2.2.1 +2 -1 src/crypto/kerberosIV/lib/kadm/kadm_locl.h 1.1.1.2.2.2 +6 -5 src/crypto/kerberosIV/lib/krb/krb-protos.h 1.6.2.1 +2 -1 src/crypto/kerberosIV/lib/krb/krb.h 1.1.1.2.2.1 +2 -1 src/crypto/kerberosIV/lib/krb/krb_check_auth.c 1.1.1.3.2.1 +2 -1 src/crypto/kerberosIV/lib/krb/mk_priv.c 1.1.1.3.2.1 +2 -1 src/crypto/kerberosIV/lib/krb/rd_priv.c 1.1.1.2.2.1 +2 -1 src/crypto/kerberosIV/lib/krb/recvauth.c 1.1.1.3.2.1 +2 -1 src/crypto/kerberosIV/lib/krb/sendauth.c 1.1.1.2.2.1 +3 -2 src/crypto/kerberosIV/lib/krb/solaris_compat.c 1.2.2.2 +2 -1 src/crypto/kerberosIV/server/kerberos.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:36:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1545D37B401; Thu, 13 Feb 2003 13:36:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A96C243F75; Thu, 13 Feb 2003 13:36:52 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLaqbv000541; Thu, 13 Feb 2003 13:36:52 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLaqiW000540; Thu, 13 Feb 2003 13:36:52 -0800 (PST) Message-Id: <200302132136.h1DLaqiW000540@repoman.freebsd.org> From: Christian Weisgerber Date: Thu, 13 Feb 2003 13:36:52 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/13 13:36:52 PST Modified files: . modules Log: Match erroneous ports module entries to actual paths. Revision Changes Path 1.6730 +2 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:41:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4BCD37B401; Thu, 13 Feb 2003 13:41:55 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BDA943F85; Thu, 13 Feb 2003 13:41:55 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 01DA8536E; Thu, 13 Feb 2003 22:41:52 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Wemm Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 22:41:52 +0100 In-Reply-To: <200302132113.h1DLDARX092847@repoman.freebsd.org> (Peter Wemm's message of "Thu, 13 Feb 2003 13:13:10 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302132113.h1DLDARX092847@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Wemm writes: > Log: > We only provide agp drivers for the intel chipsets, move the agp > subdir to the i386-only section. Some Alphas have AGP slots. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:55:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A887F37B405; Thu, 13 Feb 2003 13:55:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECC7F43FBF; Thu, 13 Feb 2003 13:55:13 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLtDbv007818; Thu, 13 Feb 2003 13:55:13 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLtDAk007817; Thu, 13 Feb 2003 13:55:13 -0800 (PST) Message-Id: <200302132155.h1DLtDAk007817@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Feb 2003 13:55:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf NOTES src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/13 13:55:13 PST Modified files: sys/conf NOTES sys/i386/conf NOTES Log: Only i386 has npx device. Revision Changes Path 1.1127 +0 -1 src/sys/conf/NOTES 1.1073 +3 -0 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:57:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2DC937B401; Thu, 13 Feb 2003 13:57:41 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30E4743FBD; Thu, 13 Feb 2003 13:57:40 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1DLva1o029963; Thu, 13 Feb 2003 13:57:36 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1DLvaKQ000868; Thu, 13 Feb 2003 13:57:36 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1DLvW33000867; Thu, 13 Feb 2003 13:57:32 -0800 (PST) Date: Thu, 13 Feb 2003 13:57:32 -0800 From: Marcel Moolenaar To: Dag-Erling Smorgrav Cc: Peter Wemm , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030213215732.GF553@athlon.pn.xcllnt.net> References: <200302132113.h1DLDARX092847@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 10:41:52PM +0100, Dag-Erling Smorgrav wrote: > Peter Wemm writes: > > Log: > > We only provide agp drivers for the intel chipsets, move the agp > > subdir to the i386-only section. > > Some Alphas have AGP slots. As do ia64 calculators. Even HP's zx1 based calculators have AGP. None of them are supported by us I think, but that's a different story. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 13:57:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8733A37B40D; Thu, 13 Feb 2003 13:57:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27DC143F93; Thu, 13 Feb 2003 13:57:43 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DLvgbv007945; Thu, 13 Feb 2003 13:57:42 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DLvgZP007944; Thu, 13 Feb 2003 13:57:42 -0800 (PST) Message-Id: <200302132157.h1DLvgZP007944@repoman.freebsd.org> From: Christian Weisgerber Date: Thu, 13 Feb 2003 13:57:42 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/13 13:57:42 PST Modified files: . modules Log: Add missing ports module entries (except language categories). Revision Changes Path 1.6731 +131 -6 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14: 1:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55DFC37B401; Thu, 13 Feb 2003 14:01:49 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF38443F93; Thu, 13 Feb 2003 14:01:48 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id C3BB02A89E; Thu, 13 Feb 2003 14:01:48 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile In-Reply-To: Date: Thu, 13 Feb 2003 14:01:48 -0800 From: Peter Wemm Message-Id: <20030213220148.C3BB02A89E@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav wrote: > Peter Wemm writes: > > Log: > > We only provide agp drivers for the intel chipsets, move the agp > > subdir to the i386-only section. > > Some Alphas have AGP slots. Indeed, but we do not have drivers for them. Even the nearest likely candidate (agp_amd.c which *might* be usable with an alpha cpu, if anybody has made such a motherboard) has i386-specific stuff in it. And then there are things like this: agp_flush_cache() { #ifdef __i386__ wbinvd(); #endif } .. which are there to "make it compile" rather than actually work. Having this being built by default is just wasting compile time on non-i386 systems, especially since it isn't a state ready to be used yet. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Thu Feb 13 14: 3:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC04E37B401; Thu, 13 Feb 2003 14:03:08 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DD5C43FCB; Thu, 13 Feb 2003 14:03:08 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 597CD2A8C3; Thu, 13 Feb 2003 14:03:08 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Marcel Moolenaar Cc: Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile In-Reply-To: <20030213215732.GF553@athlon.pn.xcllnt.net> Date: Thu, 13 Feb 2003 14:03:08 -0800 From: Peter Wemm Message-Id: <20030213220308.597CD2A8C3@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Marcel Moolenaar wrote: > On Thu, Feb 13, 2003 at 10:41:52PM +0100, Dag-Erling Smorgrav wrote: > > Peter Wemm writes: > > > Log: > > > We only provide agp drivers for the intel chipsets, move the agp > > > subdir to the i386-only section. > > > > Some Alphas have AGP slots. > > As do ia64 calculators. Even HP's zx1 based calculators have AGP. > None of them are supported by us I think, but that's a different > story. Indeed. even the sys/pci/agp.c is a group of subroutines for the core chipset drivers. None of the agp/* stuff is useful unless you have a motherboard based on a recognized core chipset. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Thu Feb 13 14: 4:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C52B37B401; Thu, 13 Feb 2003 14:04:39 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9D3243FBD; Thu, 13 Feb 2003 14:04:38 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E954D536F; Thu, 13 Feb 2003 23:04:36 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Marcel Moolenaar Cc: Peter Wemm , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 23:04:36 +0100 In-Reply-To: <20030213215732.GF553@athlon.pn.xcllnt.net> (Marcel Moolenaar's message of "Thu, 13 Feb 2003 13:57:32 -0800") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302132113.h1DLDARX092847@repoman.freebsd.org> <20030213215732.GF553@athlon.pn.xcllnt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Marcel Moolenaar writes: > On Thu, Feb 13, 2003 at 10:41:52PM +0100, Dag-Erling Smorgrav wrote: > > Peter Wemm writes: > > > We only provide agp drivers for the intel chipsets, move the agp > > > subdir to the i386-only section. > > Some Alphas have AGP slots. > As do ia64 calculators. Even HP's zx1 based calculators have AGP. > None of them are supported by us I think, but that's a different > story. My point is that the agp module used to build and load fine on Alpha (though I don't know if it worked, as my PWS doesn't have an AGP slot). Then Eric commits a patch which broke Alpha support, and instead of trying to rectify the problem with a few well-placed #ifdefs, Peter just yanks it from the Alpha build. Is that really the way to go? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:10:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 855B937B401; Thu, 13 Feb 2003 14:10:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20A4943FBD; Thu, 13 Feb 2003 14:10:11 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMAAbv011663; Thu, 13 Feb 2003 14:10:10 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMAA0q011662; Thu, 13 Feb 2003 14:10:10 -0800 (PST) Message-Id: <200302132210.h1DMAA0q011662@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 14:10:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man pthread_attr_setcreatesuspend_np.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutexattr_getkind_np.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_set_name_np.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 14:10:10 PST Added files: lib/libc_r/man pthread_attr_setcreatesuspend_np.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutexattr_getkind_np.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_set_name_np.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 Log: Finally! Document all undocumented functions in libc_r. Add manual pages for following functions: . pthread_attr_setcreatesuspend_np(3) . pthread_main_np(3) . pthread_multi_np(3) . pthread_single_np(3) . pthread_mutexattr_getkind_np(3) . pthread_mutexattr_setkind_np(3) . pthread_resume_all_np(3) . pthread_resume_np(3) . pthread_set_name_np(3) . pthread_suspend_all_np(3) . pthread_suspend_np(3) . pthread_switch_add_np(3) . pthread_switch_delete_np(3) MFC after: 3 days Revision Changes Path 1.1 +74 -0 src/lib/libc_r/man/pthread_attr_setcreatesuspend_np.3 (new) 1.1 +67 -0 src/lib/libc_r/man/pthread_main_np.3 (new) 1.1 +64 -0 src/lib/libc_r/man/pthread_multi_np.3 (new) 1.1 +84 -0 src/lib/libc_r/man/pthread_mutexattr_getkind_np.3 (new) 1.1 +55 -0 src/lib/libc_r/man/pthread_resume_all_np.3 (new) 1.1 +76 -0 src/lib/libc_r/man/pthread_resume_np.3 (new) 1.1 +59 -0 src/lib/libc_r/man/pthread_set_name_np.3 (new) 1.1 +56 -0 src/lib/libc_r/man/pthread_suspend_all_np.3 (new) 1.1 +74 -0 src/lib/libc_r/man/pthread_suspend_np.3 (new) 1.1 +87 -0 src/lib/libc_r/man/pthread_switch_add_np.3 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:11:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D50337B401; Thu, 13 Feb 2003 14:11:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30B2C43FBF; Thu, 13 Feb 2003 14:11:20 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMBJbv013362; Thu, 13 Feb 2003 14:11:19 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMBJO9013353; Thu, 13 Feb 2003 14:11:19 -0800 (PST) Message-Id: <200302132211.h1DMBJO9013353@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 14:11:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man pthread_attr_get_np.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 14:11:19 PST Modified files: lib/libc_r/man pthread_attr_get_np.3 Log: Add AUTHORS section Revision Changes Path 1.7 +6 -0 src/lib/libc_r/man/pthread_attr_get_np.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:11:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A789637B401; Thu, 13 Feb 2003 14:11:45 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABD4C43F85; Thu, 13 Feb 2003 14:11:44 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1DMBi1o030064; Thu, 13 Feb 2003 14:11:44 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1DMBiKQ000920; Thu, 13 Feb 2003 14:11:44 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1DMBiX7000919; Thu, 13 Feb 2003 14:11:44 -0800 (PST) Date: Thu, 13 Feb 2003 14:11:44 -0800 From: Marcel Moolenaar To: Dag-Erling Smorgrav Cc: Peter Wemm , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030213221144.GH553@athlon.pn.xcllnt.net> References: <200302132113.h1DLDARX092847@repoman.freebsd.org> <20030213215732.GF553@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 11:04:36PM +0100, Dag-Erling Smorgrav wrote: > Marcel Moolenaar writes: > > On Thu, Feb 13, 2003 at 10:41:52PM +0100, Dag-Erling Smorgrav wrote: > > > Peter Wemm writes: > > > > We only provide agp drivers for the intel chipsets, move the agp > > > > subdir to the i386-only section. > > > Some Alphas have AGP slots. > > As do ia64 calculators. Even HP's zx1 based calculators have AGP. > > None of them are supported by us I think, but that's a different > > story. > > My point is that the agp module used to build and load fine on Alpha > (though I don't know if it worked, as my PWS doesn't have an AGP > slot). Then Eric commits a patch which broke Alpha support, and > instead of trying to rectify the problem with a few well-placed > #ifdefs, Peter just yanks it from the Alpha build. Is that really the > way to go? Not really, but then again if AGP really only works on i386, even though theoretically it could work on other platforms as well, we would be fooling ourselves if we continued to build on non-i386. In short: I don't mind, it can always be changed to include alpha or ia64 when appropriate. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:12:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1907537B401; Thu, 13 Feb 2003 14:12:57 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE2D143F85; Thu, 13 Feb 2003 14:12:56 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMCubv014918; Thu, 13 Feb 2003 14:12:56 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMCuEK014917; Thu, 13 Feb 2003 14:12:56 -0800 (PST) Message-Id: <200302132212.h1DMCuEK014917@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 14:12:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/man Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 14:12:56 PST Modified files: lib/libc_r/man Makefile.inc Log: Enable just committed manual pages, update MLINKS Revision Changes Path 1.18 +13 -0 src/lib/libc_r/man/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:13:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE5C737B401; Thu, 13 Feb 2003 14:13:35 -0800 (PST) Received: from angelica.unixdaemons.com (angelica.unixdaemons.com [209.148.64.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id E11D143F93; Thu, 13 Feb 2003 14:13:34 -0800 (PST) (envelope-from hiten@angelica.unixdaemons.com) Received: from angelica.unixdaemons.com (hiten@localhost.unixdaemons.com [127.0.0.1]) by angelica.unixdaemons.com (8.12.7/8.12.1) with ESMTP id h1DMDWeG097926; Thu, 13 Feb 2003 17:13:32 -0500 (EST) Received: (from hiten@localhost) by angelica.unixdaemons.com (8.12.7/8.12.1/Submit) id h1DMDWHT097925; Thu, 13 Feb 2003 17:13:32 -0500 (EST) (envelope-from hiten) Date: Thu, 13 Feb 2003 17:13:32 -0500 From: Hiten Pandya To: Alexey Zelkin Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libc_r/man pthread_attr_setcreatesuspend_np.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutexattr_getkind_np.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_set_name_np.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 Message-ID: <20030213221332.GA93611@unixdaemons.com> References: <200302132210.h1DMAA0q011662@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302132210.h1DMAA0q011662@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD i386 X-Public-Key: http://www.pittgoth.com/~hiten/pubkey.asc X-URL: http://www.unixdaemons.com/~hiten X-PGP: http://pgp.mit.edu:11371/pks/lookup?search=Hiten+Pandya&op=index Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 02:10:10PM -0800, Alexey Zelkin wrote the words in effect of: > phantom 2003/02/13 14:10:10 PST > > Added files: > lib/libc_r/man pthread_attr_setcreatesuspend_np.3 > pthread_main_np.3 pthread_multi_np.3 > pthread_mutexattr_getkind_np.3 > pthread_resume_all_np.3 > pthread_resume_np.3 pthread_set_name_np.3 > pthread_suspend_all_np.3 > pthread_suspend_np.3 > pthread_switch_add_np.3 > Log: > Finally! Document all undocumented functions in libc_r. > > Add manual pages for following functions: > > . pthread_attr_setcreatesuspend_np(3) > . pthread_main_np(3) > . pthread_multi_np(3) > . pthread_single_np(3) > . pthread_mutexattr_getkind_np(3) > . pthread_mutexattr_setkind_np(3) > . pthread_resume_all_np(3) > . pthread_resume_np(3) > . pthread_set_name_np(3) > . pthread_suspend_all_np(3) > . pthread_suspend_np(3) > . pthread_switch_add_np(3) > . pthread_switch_delete_np(3) Yay! Thanks! -- Hiten Pandya (hiten@unixdaemons.com, hiten@uk.FreeBSD.org) http://www.unixdaemons.com/~hiten/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:14:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D995737B401; Thu, 13 Feb 2003 14:14:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F28B43FBD; Thu, 13 Feb 2003 14:14:23 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMENbv015141; Thu, 13 Feb 2003 14:14:23 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMEMVv015140; Thu, 13 Feb 2003 14:14:22 -0800 (PST) Message-Id: <200302132214.h1DMEMVv015140@repoman.freebsd.org> From: Jeffrey Hsu Date: Thu, 13 Feb 2003 14:14:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/13 14:14:22 PST Modified files: sys/netinet tcp_input.c Log: The protocol lock is always held in the dropafterack case, so we don't need to check for it at runtime. Revision Changes Path 1.189 +2 -2 src/sys/netinet/tcp_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:17:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6338737B401; Thu, 13 Feb 2003 14:17:30 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id F421D43FD7; Thu, 13 Feb 2003 14:17:29 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id DD3D32A8C1; Thu, 13 Feb 2003 14:17:29 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: Marcel Moolenaar , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile In-Reply-To: Date: Thu, 13 Feb 2003 14:17:29 -0800 From: Peter Wemm Message-Id: <20030213221729.DD3D32A8C1@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav wrote: > Marcel Moolenaar writes: > > On Thu, Feb 13, 2003 at 10:41:52PM +0100, Dag-Erling Smorgrav wrote: > > > Peter Wemm writes: > > > > We only provide agp drivers for the intel chipsets, move the agp > > > > subdir to the i386-only section. > > > Some Alphas have AGP slots. > > As do ia64 calculators. Even HP's zx1 based calculators have AGP. > > None of them are supported by us I think, but that's a different > > story. > > My point is that the agp module used to build and load fine on Alpha > (though I don't know if it worked, as my PWS doesn't have an AGP > slot). Then Eric commits a patch which broke Alpha support, and > instead of trying to rectify the problem with a few well-placed > #ifdefs, Peter just yanks it from the Alpha build. Is that really the > way to go? It was broken on everything. /vol/vol0/users/des/tinderbox/CURRENT/sparc64/sparc64/src/sys/pci/ \ agp_i810.c:353: `AGP_I855_GCC1_GMS_STOLEN_16M' undeclared (first use in this function) sys/pci-142> grep AGP_I855_GCC1_GMS_STOLEN_16M * agp_i810.c: case AGP_I855_GCC1_GMS_STOLEN_16M: agpreg.h:#define AGP_I855_GCC1_GMS_STOLEN_16M 0x40 The lines in agpreg.h were what Eric added after the fact. This is an i386-only chipset. It shouldn't have been in the sparc64, ia64, and alpha builds. It certainly shouldn't be in powerpc whenever we start doing builds for that. And IMHO, we certainly shouldn't be building/installing/releasing something that we *know* hard locks the machine (Drew's report on agp_amd.c locking up the UP1000). Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Thu Feb 13 14:17:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B18E37B401; Thu, 13 Feb 2003 14:17:42 -0800 (PST) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A54BA43FBD; Thu, 13 Feb 2003 14:17:41 -0800 (PST) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.6/8.12.2) with ESMTP id h1DMHfRj087598; Thu, 13 Feb 2003 14:17:41 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.6/8.12.6/Submit) id h1DMGPNP087591; Thu, 13 Feb 2003 14:16:25 -0800 (PST) Date: Thu, 13 Feb 2003 14:16:25 -0800 From: "David O'Brien" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030213221625.GA86465@dragon.nuxi.com> Reply-To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200302132113.h1DLDARX092847@repoman.freebsd.org> <20030213215732.GF553@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 11:04:36PM +0100, Dag-Erling Smorgrav wrote: > Marcel Moolenaar writes: > > On Thu, Feb 13, 2003 at 10:41:52PM +0100, Dag-Erling Smorgrav wrote: > > > Peter Wemm writes: > > > > We only provide agp drivers for the intel chipsets, move the agp > > > > subdir to the i386-only section. > > > Some Alphas have AGP slots. > > As do ia64 calculators. Even HP's zx1 based calculators have AGP. > > None of them are supported by us I think, but that's a different > > story. > > My point is that the agp module used to build and load fine on Alpha > (though I don't know if it worked, as my PWS doesn't have an AGP > slot). ... > #ifdefs, Peter just yanks it from the Alpha build. Is that really the > way to go? Yes it *definitely* is. If something doesn't work on an Alpha, I (as one of the Alpha committers) don't want to build it. Period. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:17:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ABFF37B406; Thu, 13 Feb 2003 14:17:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFC8E43F85; Thu, 13 Feb 2003 14:17:43 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMHhbv015334; Thu, 13 Feb 2003 14:17:43 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMHhkc015333; Thu, 13 Feb 2003 14:17:43 -0800 (PST) Message-Id: <200302132217.h1DMHhkc015333@repoman.freebsd.org> From: Christian Weisgerber Date: Thu, 13 Feb 2003 14:17:43 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/13 14:17:43 PST Modified files: . modules Log: Remove duplicates. Revision Changes Path 1.6732 +0 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:24:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D02DB37B401; Thu, 13 Feb 2003 14:24:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DBC743F3F; Thu, 13 Feb 2003 14:24:44 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMOibv018916; Thu, 13 Feb 2003 14:24:44 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMOic3018915; Thu, 13 Feb 2003 14:24:44 -0800 (PST) Message-Id: <200302132224.h1DMOic3018915@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Feb 2003 14:24:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC src/sys/i386/conf GENERIC src/sys/ia64/conf GENERIC src/sys/pc98/conf GENERIC src/sys/powerpc/conf GENERIC src/sys/sparc64/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/13 14:24:44 PST Modified files: sys/alpha/conf GENERIC sys/i386/conf GENERIC sys/ia64/conf GENERIC sys/pc98/conf GENERIC sys/powerpc/conf GENERIC sys/sparc64/conf GENERIC Log: Fix the style of the SCHED_4BSD commit. Revision Changes Path 1.156 +1 -1 src/sys/alpha/conf/GENERIC 1.376 +1 -1 src/sys/i386/conf/GENERIC 1.49 +1 -1 src/sys/ia64/conf/GENERIC 1.229 +1 -1 src/sys/pc98/conf/GENERIC 1.25 +1 -1 src/sys/powerpc/conf/GENERIC 1.48 +1 -1 src/sys/sparc64/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:27:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB9037B401; Thu, 13 Feb 2003 14:27:26 -0800 (PST) Received: from haystack.lclark.edu (lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 1154543FAF; Thu, 13 Feb 2003 14:27:21 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021314264932029 ; Thu, 13 Feb 2003 14:26:49 -0800 Subject: Re: cvs commit: src/sys/modules Makefile From: Eric Anholt To: Peter Wemm Cc: Dag-Erling Smorgrav , Marcel Moolenaar , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20030213221729.DD3D32A8C1@canning.wemm.org> References: <20030213221729.DD3D32A8C1@canning.wemm.org> Content-Type: text/plain Organization: Message-Id: <1045175342.11981.1.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 13 Feb 2003 14:29:02 -0800 Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 14:17, Peter Wemm wrote: > The lines in agpreg.h were what Eric added after the fact. This is an > i386-only chipset. It shouldn't have been in the sparc64, ia64, and alpha > builds. It certainly shouldn't be in powerpc whenever we start doing > builds for that. > > And IMHO, we certainly shouldn't be building/installing/releasing something > that we *know* hard locks the machine (Drew's report on agp_amd.c locking > up the UP1000). He said that he tried that when agp_amd first came out. agp_amd was broken on that chipset for all architectures for some time. I am working on a patch to only build the appropriate stuff for each arch. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:27:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2D0937B401; Thu, 13 Feb 2003 14:27:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E7343F85; Thu, 13 Feb 2003 14:27:40 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMRebv019072; Thu, 13 Feb 2003 14:27:40 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMRe8O019071; Thu, 13 Feb 2003 14:27:40 -0800 (PST) Message-Id: <200302132227.h1DMRe8O019071@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Feb 2003 14:27:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/powerpc/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/13 14:27:40 PST Modified files: sys/powerpc/conf GENERIC Log: Fix whitespace problems with option lines. Revision Changes Path 1.26 +31 -31 src/sys/powerpc/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:31: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF6D937B401; Thu, 13 Feb 2003 14:30:58 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E04343FBD; Thu, 13 Feb 2003 14:30:58 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 769DA2A8C1; Thu, 13 Feb 2003 14:30:58 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Eric Anholt Cc: Dag-Erling Smorgrav , Marcel Moolenaar , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile In-Reply-To: <1045175342.11981.1.camel@leguin> Date: Thu, 13 Feb 2003 14:30:58 -0800 From: Peter Wemm Message-Id: <20030213223058.769DA2A8C1@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Eric Anholt wrote: > On Thu, 2003-02-13 at 14:17, Peter Wemm wrote: > > The lines in agpreg.h were what Eric added after the fact. This is an > > i386-only chipset. It shouldn't have been in the sparc64, ia64, and alpha > > builds. It certainly shouldn't be in powerpc whenever we start doing > > builds for that. > > > > And IMHO, we certainly shouldn't be building/installing/releasing something > > that we *know* hard locks the machine (Drew's report on agp_amd.c locking > > up the UP1000). > > He said that he tried that when agp_amd first came out. agp_amd was > broken on that chipset for all architectures for some time. > > I am working on a patch to only build the appropriate stuff for each > arch. That would be much better. Please feel free to replace my hack. But please don't enable it on platforms that it doesn't work on. For example, we have: void agp_flush_cache() { #ifdef __i386__ wbinvd(); #endif } There's no alpha or ia64 support, so don't enable it there unless this cache flushing isn't needed. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Thu Feb 13 14:33:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFA3937B401; Thu, 13 Feb 2003 14:33:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7112C43F75; Thu, 13 Feb 2003 14:33:27 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMXRbv022594; Thu, 13 Feb 2003 14:33:27 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMXRrJ022593; Thu, 13 Feb 2003 14:33:27 -0800 (PST) Message-Id: <200302132233.h1DMXRrJ022593@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 13 Feb 2003 14:33:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf NOTES src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/13 14:33:27 PST Modified files: sys/conf NOTES sys/i386/conf NOTES Log: FB_INSTALL_CDEV not usable on Alpha. Revision Changes Path 1.1128 +0 -1 src/sys/conf/NOTES 1.1074 +2 -0 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:35:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0758637B401; Thu, 13 Feb 2003 14:35:37 -0800 (PST) Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36C2243FA3; Thu, 13 Feb 2003 14:35:36 -0800 (PST) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id AECB52F; Thu, 13 Feb 2003 16:35:35 -0600 (CST) Received: by madman.celabo.org (Postfix, from userid 1001) id 08A4E78C43; Thu, 13 Feb 2003 16:35:19 -0600 (CST) Date: Thu, 13 Feb 2003 16:35:18 -0600 From: "Jacques A. Vidrine" To: Alexey Zelkin Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc_r/man pthread_attr_setcreatesuspend_np.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutexattr_getkind_np.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_set_name_np.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 Message-ID: <20030213223518.GB79197@madman.celabo.org> References: <200302132210.h1DMAA0q011662@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302132210.h1DMAA0q011662@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.1i-ja.1 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 02:10:10PM -0800, Alexey Zelkin wrote: > phantom 2003/02/13 14:10:10 PST > > Added files: > lib/libc_r/man pthread_attr_setcreatesuspend_np.3 > pthread_main_np.3 pthread_multi_np.3 > pthread_mutexattr_getkind_np.3 > pthread_resume_all_np.3 > pthread_resume_np.3 pthread_set_name_np.3 > pthread_suspend_all_np.3 > pthread_suspend_np.3 > pthread_switch_add_np.3 > Log: > Finally! Document all undocumented functions in libc_r. Yeah! You da man! ((bad) pun intended) Cheers, -- Jacques A. Vidrine http://www.celabo.org/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:47:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB9F37B401; Thu, 13 Feb 2003 14:47:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E4FE43F93; Thu, 13 Feb 2003 14:47:42 -0800 (PST) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DMlgbv026378; Thu, 13 Feb 2003 14:47:42 -0800 (PST) (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DMlgfV026377; Thu, 13 Feb 2003 14:47:42 -0800 (PST) Message-Id: <200302132247.h1DMlgfV026377@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 13 Feb 2003 14:47:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf rtld.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kan 2003/02/13 14:47:42 PST Modified files: libexec/rtld-elf rtld.c Log: Fix a typo in rtld_dirname. Revision Changes Path 1.75 +1 -1 src/libexec/rtld-elf/rtld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 14:55:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA0A237B401; Thu, 13 Feb 2003 14:55:37 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5599043FBD; Thu, 13 Feb 2003 14:55:36 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id DD442536F; Thu, 13 Feb 2003 23:55:34 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alexey Zelkin Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc_r/man pthread_attr_setcreatesuspend_np.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutexattr_getkind_np.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_set_name_np.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 From: Dag-Erling Smorgrav Date: Thu, 13 Feb 2003 23:55:34 +0100 In-Reply-To: <200302132210.h1DMAA0q011662@repoman.freebsd.org> (Alexey Zelkin's message of "Thu, 13 Feb 2003 14:10:10 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302132210.h1DMAA0q011662@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexey Zelkin writes: > Log: > Finally! Document all undocumented functions in libc_r. Excellent work! DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 15: 2: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D56D837B401; Thu, 13 Feb 2003 15:01:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79A4543F93; Thu, 13 Feb 2003 15:01:59 -0800 (PST) (envelope-from mdodd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DN1xbv032332; Thu, 13 Feb 2003 15:01:59 -0800 (PST) (envelope-from mdodd@repoman.freebsd.org) Received: (from mdodd@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DN1xmC032326; Thu, 13 Feb 2003 15:01:59 -0800 (PST) Message-Id: <200302132301.h1DN1xmC032326@repoman.freebsd.org> From: "Matthew N. Dodd" Date: Thu, 13 Feb 2003 15:01:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ep if_ep_isa.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mdodd 2003/02/13 15:01:59 PST Modified files: sys/dev/ep if_ep_isa.c Log: Bandaid the bits that use the elink_foo() functions which are i386 only at this point. Revision Changes Path 1.13 +10 -2 src/sys/dev/ep/if_ep_isa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 15: 7:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C9A837B401; Thu, 13 Feb 2003 15:07:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E69A43F75; Thu, 13 Feb 2003 15:07:29 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1DN7Tbv033613; Thu, 13 Feb 2003 15:07:29 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1DN7StF033612; Thu, 13 Feb 2003 15:07:28 -0800 (PST) Message-Id: <200302132307.h1DN7StF033612@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 13 Feb 2003 15:07:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf Makefile rtld.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/13 15:07:28 PST Modified files: libexec/rtld-elf Makefile rtld.1 Log: Advertize rtld(1) as ld.so(1) in manual pages world Revision Changes Path 1.17 +2 -1 src/libexec/rtld-elf/Makefile 1.31 +1 -0 src/libexec/rtld-elf/rtld.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 16:28:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3C0A37B401; Thu, 13 Feb 2003 16:28:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 764EE43F3F; Thu, 13 Feb 2003 16:28:49 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E0Snbv062112; Thu, 13 Feb 2003 16:28:49 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E0SnuE062111; Thu, 13 Feb 2003 16:28:49 -0800 (PST) Message-Id: <200302140028.h1E0SnuE062111@repoman.freebsd.org> From: Kirk McKusick Date: Thu, 13 Feb 2003 16:28:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_balloc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2003/02/13 16:28:49 PST Modified files: sys/ufs/ffs ffs_alloc.c ffs_balloc.c Log: Correct lines incorrectly added to the copyright message. Submitted by: Frank van der Linden Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.108 +0 -3 src/sys/ufs/ffs/ffs_alloc.c 1.40 +0 -3 src/sys/ufs/ffs/ffs_balloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 16:31: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4AC537B401; Thu, 13 Feb 2003 16:31:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3337743FB1; Thu, 13 Feb 2003 16:31:07 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E0V7bv063359; Thu, 13 Feb 2003 16:31:07 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E0V6Cs063358; Thu, 13 Feb 2003 16:31:06 -0800 (PST) Message-Id: <200302140031.h1E0V6Cs063358@repoman.freebsd.org> From: Kirk McKusick Date: Thu, 13 Feb 2003 16:31:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c ffs_balloc.c X-FreeBSD-CVS-Branch: RELENG_5_0 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2003/02/13 16:31:06 PST Modified files: (Branch: RELENG_5_0) sys/ufs/ffs ffs_alloc.c ffs_balloc.c Log: Correct lines incorrectly added to the copyright message. Submitted by: Frank van der Linden Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.103.2.1 +0 -3 src/sys/ufs/ffs/ffs_alloc.c 1.39.2.1 +0 -3 src/sys/ufs/ffs/ffs_balloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 16:35:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73FF937B401; Thu, 13 Feb 2003 16:35:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1431B43F75; Thu, 13 Feb 2003 16:35:45 -0800 (PST) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E0Zibv065695; Thu, 13 Feb 2003 16:35:44 -0800 (PST) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E0ZiNa065694; Thu, 13 Feb 2003 16:35:44 -0800 (PST) Message-Id: <200302140035.h1E0ZiNa065694@repoman.freebsd.org> From: Ceri Davies Date: Thu, 13 Feb 2003 16:35:44 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.doc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2003/02/13 16:35:44 PST Modified files: . access.doc Log: roam is joining the ranks of doc committers at his own request. I am to be his mentor; welcome aboard! Approved by: doceng@ Revision Changes Path 1.464 +1 -0 CVSROOT/access.doc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 16:49:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB7F37B401; Thu, 13 Feb 2003 16:49:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B9243FB1; Thu, 13 Feb 2003 16:49:42 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E0ngbv069377; Thu, 13 Feb 2003 16:49:42 -0800 (PST) (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E0ngih069376; Thu, 13 Feb 2003 16:49:42 -0800 (PST) Message-Id: <200302140049.h1E0ngih069376@repoman.freebsd.org> From: Giorgos Keramidas Date: Thu, 13 Feb 2003 16:49:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys setuid.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG keramida 2003/02/13 16:49:42 PST Modified files: (Branch: RELENG_4) lib/libc/sys setuid.2 Log: MFC: 1.22: Typo fixes. Revision Changes Path 1.13.2.7 +1 -1 src/lib/libc/sys/setuid.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 18: 4:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA2D37B401; Thu, 13 Feb 2003 18:04:37 -0800 (PST) Received: from haystack.lclark.edu (lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id E79A543F3F; Thu, 13 Feb 2003 18:04:27 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021318040029589 ; Thu, 13 Feb 2003 18:04:00 -0800 Subject: Re: cvs commit: src/sys/modules Makefile From: Eric Anholt To: Peter Wemm Cc: Dag-Erling Smorgrav , Marcel Moolenaar , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20030213223058.769DA2A8C1@canning.wemm.org> References: <20030213223058.769DA2A8C1@canning.wemm.org> Content-Type: text/plain Organization: Message-Id: <1045185451.11981.17.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 13 Feb 2003 18:06:15 -0800 Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 14:30, Peter Wemm wrote: > Eric Anholt wrote: > > On Thu, 2003-02-13 at 14:17, Peter Wemm wrote: > > > The lines in agpreg.h were what Eric added after the fact. This is an > > > i386-only chipset. It shouldn't have been in the sparc64, ia64, and alpha > > > builds. It certainly shouldn't be in powerpc whenever we start doing > > > builds for that. > > > > > > And IMHO, we certainly shouldn't be building/installing/releasing something > > > that we *know* hard locks the machine (Drew's report on agp_amd.c locking > > > up the UP1000). > > > > He said that he tried that when agp_amd first came out. agp_amd was > > broken on that chipset for all architectures for some time. > > > > I am working on a patch to only build the appropriate stuff for each > > arch. > > That would be much better. Please feel free to replace my hack. > But please don't enable it on platforms that it doesn't work on. > > For example, we have: > void > agp_flush_cache() > { > #ifdef __i386__ > wbinvd(); > #endif > } > > There's no alpha or ia64 support, so don't enable it there unless this > cache flushing isn't needed. Here's a patch to remove the arch-specific drivers from conf/files and only enable them for the appropriate architectures. As far as flush_cache on alpha, everyone else (NetBSD, linux) just does a memory barrier there, and linux has a note that it's probably wrong but they're not sure. http://people.freebsd.org/~anholt/files/agp-alphadiff Does this look appropriate? -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 18:18:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BE3037B401; Thu, 13 Feb 2003 18:18:51 -0800 (PST) Received: from is2.mh.itc.u-tokyo.ac.jp (is2.mh.itc.u-tokyo.ac.jp [133.11.205.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8DEA43FDF; Thu, 13 Feb 2003 18:18:45 -0800 (PST) (envelope-from simokawa@sat.t.u-tokyo.ac.jp) Received: from is2.mh.itc.u-tokyo.ac.jp (is2.mh.itc.u-tokyo.ac.jp [127.0.0.1]) by is2.mh.itc.u-tokyo.ac.jp (Postfix) with ESMTP id AE37237806A; Fri, 14 Feb 2003 11:18:42 +0900 (JST) Received: from mailhosting.itc.u-tokyo.ac.jp (IDENT:mirapoint@mailhosting.itc.u-tokyo.ac.jp [133.11.205.3]) by is2.mh.itc.u-tokyo.ac.jp (8.11.3/8.11.3) with ESMTP id h1E2IgR30843; Fri, 14 Feb 2003 11:18:42 +0900 Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [133.11.135.3]) by mailhosting.itc.u-tokyo.ac.jp (Mirapoint Messaging Server MOS 2.9.3.2) with ESMTP id AHV78345; Fri, 14 Feb 2003 11:18:41 +0900 (JST) Date: Fri, 14 Feb 2003 11:18:41 +0900 Message-ID: From: Hidetoshi Shimokawa To: Aurelien Nephtali Cc: Bruce Evans , Peter Wemm , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c In-Reply-To: <20030213174200.GA14220@nebula.wanadoo.fr> References: <20030213125204.GA12333@nebula.wanadoo.fr> <20030214041205.X4349-100000@gamplex.bde.org> <20030213174200.GA14220@nebula.wanadoo.fr> User-Agent: Wanderlust/2.11.0 (Wonderwall) REMI/1.14.3 (Matsudai) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.4 (patch 8) (Honest Recruiter) (i386--freebsd) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7: #j7i14gu$jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Thu, 13 Feb 2003 18:42:00 +0100, Aurelien Nephtali wrote: > > [1 ] > On Fri, Feb 14, 2003 at 04:35:12AM +1100, Bruce Evans wrote: > > On Thu, 13 Feb 2003, Aurelien Nephtali wrote: > > > > > It could be good now to log the backtrace :/ > > > When one occurs it goes nowhere so if you cannot copy it on the moment, it is > > > lost forever (without talking about stopping the console and using Page UP and > > > Page Down). Only the LOR is logged + 'Stack backtrace:'. > > > > db_print_backtrace() never really worked, since ddb uses db_printf() but > > ordinary printf() should be used (except when db_print_backtrace() is > > actually from within ddb). > > > > Workaround: use a serial console. > > Serial consoles seem to be a good thing, only if a COM port is present ... :/ > If someone has set up a parallel console ... mail me please :) I have set up a FireWire console, see the freebad-arch article I posted recenty if you have two spare FireWire NICs. http://people.freebsd.org/~simokawa/firewire/dcons-20030212.tar.gz /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 18:32:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9BAE37B401; Thu, 13 Feb 2003 18:32:19 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DA2D43FA3; Thu, 13 Feb 2003 18:32:18 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1E2WI1o031145; Thu, 13 Feb 2003 18:32:18 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1E2WIKQ001625; Thu, 13 Feb 2003 18:32:18 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1E2WIOt001624; Thu, 13 Feb 2003 18:32:18 -0800 (PST) Date: Thu, 13 Feb 2003 18:32:18 -0800 From: Marcel Moolenaar To: Eric Anholt Cc: Peter Wemm , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030214023218.GA1573@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1045185451.11981.17.camel@leguin> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 06:06:15PM -0800, Eric Anholt wrote: > > Here's a patch to remove the arch-specific drivers from conf/files and > only enable them for the appropriate architectures. As far as > flush_cache on alpha, everyone else (NetBSD, linux) just does a memory > barrier there, and linux has a note that it's probably wrong but they're > not sure. > > http://people.freebsd.org/~anholt/files/agp-alphadiff > > Does this look appropriate? I think so. There's just one nit: agp_flush_cache(). Can we not rename it to cpu_flush_cache() and have some MD header define it appropriately (or if the implementation is non-trivial have it defined in some MD source file)? -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 19:10: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F21037B401; Thu, 13 Feb 2003 19:10:00 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E30CA43F3F; Thu, 13 Feb 2003 19:09:59 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E39xbv019436; Thu, 13 Feb 2003 19:09:59 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E39xY2019435; Thu, 13 Feb 2003 19:09:59 -0800 (PST) Message-Id: <200302140309.h1E39xY2019435@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Thu, 13 Feb 2003 19:09:59 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire sbp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/13 19:09:59 PST Modified files: sys/dev/firewire sbp.c Log: - Though I got a feedback from the originator of kern/48129 that the previous revision fixed the panic, I found the problem exits in another part of the function by investigating the crom dump sent by him. The search was started in the middle of bus info block and the routine misunderstood the EUI64 as a crom entry. This problem is fixed. PR: kern/48129 Fix incorrect type mask included in a logical unit number and check the validity of the lun. Revision Changes Path 1.31 +18 -12 src/sys/dev/firewire/sbp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 19:20:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9614137B401; Thu, 13 Feb 2003 19:20:42 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26C5043FA3; Thu, 13 Feb 2003 19:20:42 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id 0DB982A8C3; Thu, 13 Feb 2003 19:20:42 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alexander Kabaev Cc: Maxim Sobolev , kan@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include dlfcn.h src/sys/sys link_elf.hsrc/libexec/rtld-elf rtld.c rtld.h src/lib/libc/gen dlfcn.c In-Reply-To: <20030213140609.15c9c0f4.ak03@gte.com> Date: Thu, 13 Feb 2003 19:20:42 -0800 From: Peter Wemm Message-Id: <20030214032042.0DB982A8C3@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alexander Kabaev wrote: > On Thu, 13 Feb 2003 20:59:38 +0200 > Maxim Sobolev wrote: > > > > That's fine, but I would recommend the following rule of thumb "commit > > a new feature only along with documentation. If documentation isn't > > ready then don't commit at all until it is finished." > > And in my turn I would recommend you to stop bugging me about it. If > missing man page bothers you so much, go ahead and write it yourself. > Otherwise wait for it to become available. > > I needed this code to get some testing as soon as possible. It is > slated for MFC and with code freeze happening this week waiting for man > page to be completed was not an option. Man page is getting cared of as > we speak. I for one am grateful for every extra minute of testing exposure. Yes, under ideal circumstances, the docs should go with it. But since the clock is cointing down for 4.8, that adds extra constraints to the ideal. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Thu Feb 13 19:39:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ADDF37B401; Thu, 13 Feb 2003 19:39:25 -0800 (PST) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4B8943F3F; Thu, 13 Feb 2003 19:39:23 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from mobile.pittgoth.com ([192.168.0.5]) by pittgoth.com (8.12.6/8.12.6) with SMTP id h1E3dMfI046844; Thu, 13 Feb 2003 22:39:22 -0500 (EST) (envelope-from trhodes@FreeBSD.org) Date: Thu, 13 Feb 2003 22:39:34 -0500 From: Tom Rhodes To: Ceri Davies Cc: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access.doc Message-Id: <20030213223934.2dfd3793.trhodes@FreeBSD.org> In-Reply-To: <200302140035.h1E0ZiNa065694@repoman.freebsd.org> References: <200302140035.h1E0ZiNa065694@repoman.freebsd.org> X-Mailer: Sylpheed version 0.8.9claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 13 Feb 2003 16:35:44 -0800 (PST) Ceri Davies wrote: > ceri 2003/02/13 16:35:44 PST > > Modified files: > . access.doc > Log: > roam is joining the ranks of doc committers at his own request. > I am to be his mentor; welcome aboard! > > Approved by: doceng@ > > Revision Changes Path > 1.464 +1 -0 CVSROOT/access.doc > Its about time, roam! I remember several months ago (over 6?) when you explained to me in private mail: ``I should get a -doc mentor'' and now you have one. Welcome to the ranks!!!! Need a task list?? -- Tom Rhodes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 19:41: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 111E637B401; Thu, 13 Feb 2003 19:41:06 -0800 (PST) Received: from haystack.lclark.edu (haystack.lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 7EE0843FAF; Thu, 13 Feb 2003 19:40:32 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021319395913145 ; Thu, 13 Feb 2003 19:39:59 -0800 Subject: Re: cvs commit: src/sys/modules Makefile From: Eric Anholt To: Marcel Moolenaar Cc: Peter Wemm , Dag-Erling Smorgrav , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20030214023218.GA1573@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> <20030214023218.GA1573@athlon.pn.xcllnt.net> Content-Type: text/plain Organization: Message-Id: <1045194133.11981.87.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 13 Feb 2003 19:42:14 -0800 Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 18:32, Marcel Moolenaar wrote: > On Thu, Feb 13, 2003 at 06:06:15PM -0800, Eric Anholt wrote: > > > > Here's a patch to remove the arch-specific drivers from conf/files and > > only enable them for the appropriate architectures. As far as > > flush_cache on alpha, everyone else (NetBSD, linux) just does a memory > > barrier there, and linux has a note that it's probably wrong but they're > > not sure. > > > > http://people.freebsd.org/~anholt/files/agp-alphadiff > > > > Does this look appropriate? > > I think so. There's just one nit: agp_flush_cache(). Can we not > rename it to cpu_flush_cache() and have some MD header define it > appropriately (or if the implementation is non-trivial have it > defined in some MD source file)? Well, the problem is that it only actually flushes the cache on one architecture (i386) so far. I don't know if the alpha_mb() helps at all, I was just following the herd on this one. I've been digging through the AMD docs trying to figure out if it snoops the cpu cache when getting tlb entries (if so we don't need the cache flush), but can't find anything. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 20:30:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AEEE37B401; Thu, 13 Feb 2003 20:30:30 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32C6743FBF; Thu, 13 Feb 2003 20:30:29 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1E4US1o031608; Thu, 13 Feb 2003 20:30:28 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1E4USKQ001917; Thu, 13 Feb 2003 20:30:28 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1E4USCv001916; Thu, 13 Feb 2003 20:30:28 -0800 (PST) Date: Thu, 13 Feb 2003 20:30:28 -0800 From: Marcel Moolenaar To: Eric Anholt Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030214043028.GA1797@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> <20030214023218.GA1573@athlon.pn.xcllnt.net> <1045194133.11981.87.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1045194133.11981.87.camel@leguin> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 07:42:14PM -0800, Eric Anholt wrote: > On Thu, 2003-02-13 at 18:32, Marcel Moolenaar wrote: > > On Thu, Feb 13, 2003 at 06:06:15PM -0800, Eric Anholt wrote: > > > > > > Here's a patch to remove the arch-specific drivers from conf/files and > > > only enable them for the appropriate architectures. As far as > > > flush_cache on alpha, everyone else (NetBSD, linux) just does a memory > > > barrier there, and linux has a note that it's probably wrong but they're > > > not sure. > > > > > > http://people.freebsd.org/~anholt/files/agp-alphadiff > > > > > > Does this look appropriate? > > > > I think so. There's just one nit: agp_flush_cache(). Can we not > > rename it to cpu_flush_cache() and have some MD header define it > > appropriately (or if the implementation is non-trivial have it > > defined in some MD source file)? > > Well, the problem is that it only actually flushes the cache on one > architecture (i386) so far. I don't know if the alpha_mb() helps at > all, I was just following the herd on this one. I've been digging > through the AMD docs trying to figure out if it snoops the cpu cache > when getting tlb entries (if so we don't need the cache flush), but > can't find anything. In that case, we'd better make sure there's cache coherency. Do we actually have the code structured in a way that allows having the flushing chipset dependent (not to mention dependent on the address)? -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 20:48: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD36E37B401; Thu, 13 Feb 2003 20:48:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 528E843F3F; Thu, 13 Feb 2003 20:48:07 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E4m7bv055462; Thu, 13 Feb 2003 20:48:07 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E4m7M0055461; Thu, 13 Feb 2003 20:48:07 -0800 (PST) Message-Id: <200302140448.h1E4m7M0055461@repoman.freebsd.org> From: Mike Silbersack Date: Thu, 13 Feb 2003 20:48:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/md5 md5.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2003/02/13 20:48:06 PST Modified files: sbin/md5 md5.c Log: Improvements to md5.c so that it uses getrusage to time benchmarks, and prints out results in float format. Revision Changes Path 1.29 +12 -8 src/sbin/md5/md5.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 21:30:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C6337B401; Thu, 13 Feb 2003 21:30:43 -0800 (PST) Received: from haystack.lclark.edu (haystack.lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 0102843F85; Thu, 13 Feb 2003 21:30:39 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021321301820380 ; Thu, 13 Feb 2003 21:30:18 -0800 Subject: Re: cvs commit: src/sys/modules Makefile From: Eric Anholt To: Marcel Moolenaar Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20030214043028.GA1797@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> <20030214023218.GA1573@athlon.pn.xcllnt.net> <1045194133.11981.87.camel@leguin> <20030214043028.GA1797@athlon.pn.xcllnt.net> Content-Type: text/plain Organization: Message-Id: <1045200753.84507.54.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 13 Feb 2003 21:32:33 -0800 Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 20:30, Marcel Moolenaar wrote: > On Thu, Feb 13, 2003 at 07:42:14PM -0800, Eric Anholt wrote: > > On Thu, 2003-02-13 at 18:32, Marcel Moolenaar wrote: > > > On Thu, Feb 13, 2003 at 06:06:15PM -0800, Eric Anholt wrote: > > > > > > > > Here's a patch to remove the arch-specific drivers from conf/files and > > > > only enable them for the appropriate architectures. As far as > > > > flush_cache on alpha, everyone else (NetBSD, linux) just does a memory > > > > barrier there, and linux has a note that it's probably wrong but they're > > > > not sure. > > > > > > > > http://people.freebsd.org/~anholt/files/agp-alphadiff > > > > > > > > Does this look appropriate? > > > > > > I think so. There's just one nit: agp_flush_cache(). Can we not > > > rename it to cpu_flush_cache() and have some MD header define it > > > appropriately (or if the implementation is non-trivial have it > > > defined in some MD source file)? > > > > Well, the problem is that it only actually flushes the cache on one > > architecture (i386) so far. I don't know if the alpha_mb() helps at > > all, I was just following the herd on this one. I've been digging > > through the AMD docs trying to figure out if it snoops the cpu cache > > when getting tlb entries (if so we don't need the cache flush), but > > can't find anything. > > In that case, we'd better make sure there's cache coherency. Do we > actually have the code structured in a way that allows having the > flushing chipset dependent (not to mention dependent on the address)? No, currently all the cache flushes (four in agp.c, three in i810 and amd code) are unconditional agp_flush_cache calls after modifying the gatt entries. They aren't tied to a specific memory range, but could be pretty easily, if not the most efficiently, by pushing some of them into the (un)bind_pages. There's probably a better way. Of the two I've looked at so far (AMD 760, i815 gmch), neither do snoops when fetching tlb entries. I'm guessing that others will be the same. So I don't think there'll probably be a need for chipset-specific cache flushing. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 22:17:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2137437B401; Thu, 13 Feb 2003 22:17:18 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EE0C43F85; Thu, 13 Feb 2003 22:17:15 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1E6H91o031959; Thu, 13 Feb 2003 22:17:09 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1E6H9KQ002219; Thu, 13 Feb 2003 22:17:09 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1E6H9m4002218; Thu, 13 Feb 2003 22:17:09 -0800 (PST) Date: Thu, 13 Feb 2003 22:17:08 -0800 From: Marcel Moolenaar To: Eric Anholt Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030214061708.GA2109@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> <20030214023218.GA1573@athlon.pn.xcllnt.net> <1045194133.11981.87.camel@leguin> <20030214043028.GA1797@athlon.pn.xcllnt.net> <1045200753.84507.54.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1045200753.84507.54.camel@leguin> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 09:32:33PM -0800, Eric Anholt wrote: > > > > In that case, we'd better make sure there's cache coherency. Do we > > actually have the code structured in a way that allows having the > > flushing chipset dependent (not to mention dependent on the address)? > > No, currently all the cache flushes (four in agp.c, three in i810 and > amd code) are unconditional agp_flush_cache calls after modifying the > gatt entries. They aren't tied to a specific memory range, but could be > pretty easily, if not the most efficiently, by pushing some of them into > the (un)bind_pages. There's probably a better way. I wonder: do we actually need to flush at all? GART updates are PCI/AGP writes and should be coherent, right? Isn't updating the SGM (system graphics memory) itself that needs cache flushes to make sure the AGP device gets the right data? Also, on ia64 bus I/O is done with a virtual address that has the non-cacheable property. Flushing would not be required irrespective. Anyway: the nit was about having conditional compilation based on the architecture, not whether the code was actually required. When in doubt, commit the code :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 22:21:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 057FD37B405; Thu, 13 Feb 2003 22:21:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AF8043F85; Thu, 13 Feb 2003 22:21:19 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E6LJbv089616; Thu, 13 Feb 2003 22:21:19 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E6LJ6k089596; Thu, 13 Feb 2003 22:21:19 -0800 (PST) Message-Id: <200302140621.h1E6LJ6k089596@repoman.freebsd.org> From: Warner Losh Date: Thu, 13 Feb 2003 22:21:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/exca exca.c excareg.h excavar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/13 22:21:18 PST Modified files: sys/dev/exca exca.c excareg.h excavar.h Log: Massive overhaul of exca to help with the isa efforts: o chip_name arrays ifdef'd out. o use the OLDCARD-like get/put functions so we can support differnt types of mappings. o Write the beggings of is this a valid exca device and introduce more chipset support. # this is partially a wip, but also needed because some other cahnges I've # made require some of these changes. Revision Changes Path 1.7 +197 -55 src/sys/dev/exca/exca.c 1.3 +15 -2 src/sys/dev/exca/excareg.h 1.4 +28 -7 src/sys/dev/exca/excavar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 22:21:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31CD337B401; Thu, 13 Feb 2003 22:21:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C825F43FAF; Thu, 13 Feb 2003 22:21:51 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E6Lpbv090485; Thu, 13 Feb 2003 22:21:51 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E6Lpr7090474; Thu, 13 Feb 2003 22:21:51 -0800 (PST) Message-Id: <200302140621.h1E6Lpr7090474@repoman.freebsd.org> From: Warner Losh Date: Thu, 13 Feb 2003 22:21:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/13 22:21:51 PST Modified files: sys/dev/pccbb pccbb.c Log: o transition from exca_write to exca_putb and read->getb. This is so that we can have additional different types of bridges. o remove now bogus comment. o Don't clear CARD_OK when we can't attach a card. o minor style nits # this make kldload of cardbus drivers work for me when the card is # present on boot. Revision Changes Path 1.65 +7 -15 src/sys/dev/pccbb/pccbb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 22:31:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43D1A37B401; Thu, 13 Feb 2003 22:31:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB44743FBD; Thu, 13 Feb 2003 22:31:45 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E6Vjbv093979; Thu, 13 Feb 2003 22:31:45 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E6VjAa093975; Thu, 13 Feb 2003 22:31:45 -0800 (PST) Message-Id: <200302140631.h1E6VjAa093975@repoman.freebsd.org> From: Eric Anholt Date: Thu, 13 Feb 2003 22:31:45 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agp_i810.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anholt 2003/02/13 22:31:45 PST Modified files: sys/pci agp_i810.c Log: Remove an extra agp_flush_cache(). The i810 case that needs it already has it. Revision Changes Path 1.18 +0 -5 src/sys/pci/agp_i810.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 22:33:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D0BD37B401; Thu, 13 Feb 2003 22:33:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 144DB43FAF; Thu, 13 Feb 2003 22:33:53 -0800 (PST) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E6Xqbv095028; Thu, 13 Feb 2003 22:33:52 -0800 (PST) (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E6Xq3Y095027; Thu, 13 Feb 2003 22:33:52 -0800 (PST) Message-Id: <200302140633.h1E6Xq3Y095027@repoman.freebsd.org> From: Eric Anholt Date: Thu, 13 Feb 2003 22:33:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files files.alpha files.i386 files.pc98 src/sys/pci agp.c src/sys/modules Makefile src/sys/modules/agp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anholt 2003/02/13 22:33:52 PST Modified files: sys/conf files files.alpha files.i386 files.pc98 sys/pci agp.c sys/modules Makefile sys/modules/agp Makefile Log: Split the arch-specific AGP files into the appropriate files.* and do the same for the agp module, and add agp to the list of modules to compile for alpha. Add an alpha_mb() to agp_flush_cache for alpha -- it's not correct but may improve the situation, and it's what linux and NetBSD do. Revision Changes Path 1.758 +0 -6 src/sys/conf/files 1.99 +1 -0 src/sys/conf/files.alpha 1.436 +6 -0 src/sys/conf/files.i386 1.263 +6 -0 src/sys/conf/files.pc98 1.304 +2 -1 src/sys/modules/Makefile 1.9 +7 -2 src/sys/modules/agp/Makefile 1.25 +6 -0 src/sys/pci/agp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 23: 2:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5DBE37B401; Thu, 13 Feb 2003 23:02:17 -0800 (PST) Received: from haystack.lclark.edu (lclark.edu [149.175.1.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 6041143F85; Thu, 13 Feb 2003 23:02:12 -0800 (PST) (envelope-from eta@lclark.edu) Received: from [149.175.30.191] ([149.175.30.191]) by haystack.lclark.edu (SAVSMTP 3.0.0.44) with SMTP id M2003021323020112901 ; Thu, 13 Feb 2003 23:02:01 -0800 Subject: Re: cvs commit: src/sys/modules Makefile From: Eric Anholt To: Marcel Moolenaar Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20030214061708.GA2109@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> <20030214023218.GA1573@athlon.pn.xcllnt.net> <1045194133.11981.87.camel@leguin> <20030214043028.GA1797@athlon.pn.xcllnt.net> <1045200753.84507.54.camel@leguin> <20030214061708.GA2109@athlon.pn.xcllnt.net> Content-Type: text/plain Organization: Message-Id: <1045206256.84507.99.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 13 Feb 2003 23:04:17 -0800 Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 2003-02-13 at 22:17, Marcel Moolenaar wrote: > On Thu, Feb 13, 2003 at 09:32:33PM -0800, Eric Anholt wrote: > > > > > > In that case, we'd better make sure there's cache coherency. Do we > > > actually have the code structured in a way that allows having the > > > flushing chipset dependent (not to mention dependent on the address)? > > > > No, currently all the cache flushes (four in agp.c, three in i810 and > > amd code) are unconditional agp_flush_cache calls after modifying the > > gatt entries. They aren't tied to a specific memory range, but could be > > pretty easily, if not the most efficiently, by pushing some of them into > > the (un)bind_pages. There's probably a better way. > > I wonder: do we actually need to flush at all? GART updates are PCI/AGP > writes and should be coherent, right? > Isn't updating the SGM (system graphics memory) itself that needs > cache flushes to make sure the AGP device gets the right data? > > Also, on ia64 bus I/O is done with a virtual address that has the > non-cacheable property. Flushing would not be required irrespective. Ack! For the i810 case, that's true. For some reason I had been thinking that they were all acting like agp_amd.c, which just writes to the vaddr of the malloced/busdma'ed gatt. Maybe chipset-specific flushing would be a good idea. Not sure quite what you mean by SGM. Are you referring to what the i810 does? If so, that ought to be referenced through the (coherent) aperture, I would think. Also a little confused by the ia64 thing. How is that going to behave differently than an i386 then? Not reorder writes to the bus? > Anyway: the nit was about having conditional compilation based on the > architecture, not whether the code was actually required. When in doubt, > commit the code :-) Committed the update, anyway. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 23:30:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F303637B401; Thu, 13 Feb 2003 23:30:41 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A0E543FCB; Thu, 13 Feb 2003 23:30:40 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1E7Ud1o032239; Thu, 13 Feb 2003 23:30:39 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1E7UdKQ002428; Thu, 13 Feb 2003 23:30:39 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1E7UcgU002427; Thu, 13 Feb 2003 23:30:38 -0800 (PST) Date: Thu, 13 Feb 2003 23:30:38 -0800 From: Marcel Moolenaar To: Eric Anholt Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030214073038.GA2349@athlon.pn.xcllnt.net> References: <20030213223058.769DA2A8C1@canning.wemm.org> <1045185451.11981.17.camel@leguin> <20030214023218.GA1573@athlon.pn.xcllnt.net> <1045194133.11981.87.camel@leguin> <20030214043028.GA1797@athlon.pn.xcllnt.net> <1045200753.84507.54.camel@leguin> <20030214061708.GA2109@athlon.pn.xcllnt.net> <1045206256.84507.99.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1045206256.84507.99.camel@leguin> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 13, 2003 at 11:04:17PM -0800, Eric Anholt wrote: > > Not sure quite what you mean by SGM. A term from the AGP specification. It means the system memory used by the graphics controller alongside its local graphics memory (LGM) or LFB. It's the memory you address through the GART. > Also a little confused by the ia64 thing. How is that going to behave > differently than an i386 then? Not reorder writes to the bus? You can set attributes on virtual addresses. The attributes are on the regions to be precise. One of the attributes is the cachability attr. If a region is marked as uncacheable, the processor will not cache read/writes in that region and cache flushes are unnecessary. Memory ordering is weak anyway, so reordering can still happen. I don't think you have that level of control on i386. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Thu Feb 13 23:34:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9670237B401; Thu, 13 Feb 2003 23:34:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39DDA43FB1; Thu, 13 Feb 2003 23:34:29 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E7YTbv016606; Thu, 13 Feb 2003 23:34:29 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E7YS9U016605; Thu, 13 Feb 2003 23:34:28 -0800 (PST) Message-Id: <200302140734.h1E7YS9U016605@repoman.freebsd.org> From: Alan Cox Date: Thu, 13 Feb 2003 23:34:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/13 23:34:28 PST Modified files: sys/i386/i386 pmap.c Log: - Add a mutex for synchronizing the use of CMAP/CADDR 1 and 2. - Eliminate small style differences between pmap_zero_page(), pmap_copy_page(), etc. Revision Changes Path 1.388 +12 -9 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 0:22: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A08ED37B401; Fri, 14 Feb 2003 00:22:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A39D43FBF; Fri, 14 Feb 2003 00:22:04 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E8M4bv035257; Fri, 14 Feb 2003 00:22:04 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E8M4fv035256; Fri, 14 Feb 2003 00:22:04 -0800 (PST) Message-Id: <200302140822.h1E8M4fv035256@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Feb 2003 00:22:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 firewire.4 fwe.4 fwohci.4 sbp.4 src/sys/dev/firewire firewire.c firewirereg.h fwohci.c sbp.c src/sys/modules/firewire/firewire Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/14 00:22:04 PST Modified files: (Branch: RELENG_4) share/man/man4 firewire.4 fwe.4 fwohci.4 sbp.4 sys/dev/firewire firewire.c firewirereg.h fwohci.c sbp.c sys/modules/firewire/firewire Makefile Log: Sync with -current: * firewire/fwohci - Drain fwohci TX queue first then drain xfer queue which has not started. - Check validity of the received packet length. - Don't allocate too large buffer for xfer receive buf. * sbp - Fix for PR kern/48129. - Put back some M_NOWAIT flags into malloc arg. * Makefile - Remove unnecessary EXPORT_SYMS. * Man page updates. Revision Changes Path 1.1.2.3 +8 -0 src/share/man/man4/firewire.4 1.2.4.2 +6 -0 src/share/man/man4/fwe.4 1.1.2.3 +13 -0 src/share/man/man4/fwohci.4 1.1.2.3 +16 -0 src/share/man/man4/sbp.4 1.3.2.14 +13 -8 src/sys/dev/firewire/firewire.c 1.1.2.10 +1 -0 src/sys/dev/firewire/firewirereg.h 1.1.2.13 +39 -37 src/sys/dev/firewire/fwohci.c 1.5.2.12 +39 -16 src/sys/dev/firewire/sbp.c 1.2.2.4 +0 -2 src/sys/modules/firewire/firewire/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 0:36:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65A5437B405 for ; Fri, 14 Feb 2003 00:36:34 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F5EA43F93 for ; Fri, 14 Feb 2003 00:36:27 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1E8aMKT076791 for ; Fri, 14 Feb 2003 10:36:22 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1E8aMHR076769 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Feb 2003 10:36:22 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1E8aL8l076764; Fri, 14 Feb 2003 10:36:21 +0200 (EET) Date: Fri, 14 Feb 2003 10:36:21 +0200 From: Ruslan Ermilov To: Alexey Zelkin Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/libexec/rtld-elf Makefile rtld.1 Message-ID: <20030214083621.GC73152@sunbay.com> References: <200302132307.h1DN7StF033612@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2JFBq9zoW8cOFH7v" Content-Disposition: inline In-Reply-To: <200302132307.h1DN7StF033612@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --2JFBq9zoW8cOFH7v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 13, 2003 at 03:07:28PM -0800, Alexey Zelkin wrote: > phantom 2003/02/13 15:07:28 PST >=20 > Modified files: > libexec/rtld-elf Makefile rtld.1=20 > Log: > Advertize rtld(1) as ld.so(1) in manual pages world > =20 > Revision Changes Path > 1.17 +2 -1 src/libexec/rtld-elf/Makefile > 1.31 +1 -0 src/libexec/rtld-elf/rtld.1 >=20 Why this? Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --2JFBq9zoW8cOFH7v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TKqFUkv4P6juNwoRAsbnAJ9uwRpFEVmSlhbkmhms3nfVURqyxgCfbdVQ xtihB2dRQXvXHg4Gy01cfNk= =uAYc -----END PGP SIGNATURE----- --2JFBq9zoW8cOFH7v-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 0:41:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A18737B401; Fri, 14 Feb 2003 00:41:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F7CC43FCB; Fri, 14 Feb 2003 00:41:26 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E8fQbv043704; Fri, 14 Feb 2003 00:41:26 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E8fPHr043699; Fri, 14 Feb 2003 00:41:25 -0800 (PST) Message-Id: <200302140841.h1E8fPHr043699@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 00:41:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf OLDCARD X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 00:41:25 PST Modified files: sys/i386/conf OLDCARD Log: Diff reduction to GENERIC. Revision Changes Path 1.17 +2 -2 src/sys/i386/conf/OLDCARD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 0:44:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1AE137B401; Fri, 14 Feb 2003 00:44:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7205243FE1; Fri, 14 Feb 2003 00:44:44 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E8iibv045827; Fri, 14 Feb 2003 00:44:44 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E8ihoV045825; Fri, 14 Feb 2003 00:44:43 -0800 (PST) Message-Id: <200302140844.h1E8ihoV045825@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 14 Feb 2003 00:44:43 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nork 2003/02/14 00:44:43 PST Modified files: . modules Log: mod_perl2 --> ports/www/mod_perl2 Revision Changes Path 1.6733 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 0:59:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE8E037B401; Fri, 14 Feb 2003 00:59:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 920FB43F93; Fri, 14 Feb 2003 00:59:49 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E8xnbv051316; Fri, 14 Feb 2003 00:59:49 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E8xnXu051315; Fri, 14 Feb 2003 00:59:49 -0800 (PST) Message-Id: <200302140859.h1E8xnXu051315@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Feb 2003 00:59:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/14 00:59:49 PST Modified files: sys/compat/linux linux_misc.c Log: Obtain proc lock around modification of p_siglist in linux_wait4(). Revision Changes Path 1.135 +2 -0 src/sys/compat/linux/linux_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 1:12:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48BC737B401; Fri, 14 Feb 2003 01:12:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E170243F93; Fri, 14 Feb 2003 01:12:12 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E9CCbv059387; Fri, 14 Feb 2003 01:12:12 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E9CCxh059386; Fri, 14 Feb 2003 01:12:12 -0800 (PST) Message-Id: <200302140912.h1E9CCxh059386@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Feb 2003 01:12:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/14 01:12:12 PST Modified files: sys/netsmb smb_subr.c Log: Lock proc while manipulating p_sigmask p_sigignore and p_siglist. Revision Changes Path 1.13 +5 -1 src/sys/netsmb/smb_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 1:16:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 141CF37B401; Fri, 14 Feb 2003 01:16:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC55543F85; Fri, 14 Feb 2003 01:16:43 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E9Ghbv060798; Fri, 14 Feb 2003 01:16:43 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E9GhEc060797; Fri, 14 Feb 2003 01:16:43 -0800 (PST) Message-Id: <200302140916.h1E9GhEc060797@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Feb 2003 01:16:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netncp ncp_ncp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/14 01:16:43 PST Modified files: sys/netncp ncp_ncp.c Log: Lock proc while accessing p_siglist p_sigmask and p_sigignore. Not tested because netncp does not compile. Revision Changes Path 1.13 +5 -1 src/sys/netncp/ncp_ncp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 1:18:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FF8C37B401; Fri, 14 Feb 2003 01:18:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C51BB43F3F; Fri, 14 Feb 2003 01:18:44 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1E9Iibv061189; Fri, 14 Feb 2003 01:18:44 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1E9Iik1061188; Fri, 14 Feb 2003 01:18:44 -0800 (PST) Message-Id: <200302140918.h1E9Iik1061188@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 14 Feb 2003 01:18:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tbmaster.pl tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/14 01:18:44 PST Modified files: tools/tools/tinderbox tbmaster.pl tinderbox.pl Log: Decrease verbosity, fix some configuration problems. Revision Changes Path 1.7 +6 -7 src/tools/tools/tinderbox/tbmaster.pl 1.7 +0 -1 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 2: 7:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 955EA37B401; Fri, 14 Feb 2003 02:07:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 398C543F3F; Fri, 14 Feb 2003 02:07:44 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EA7hbv080652; Fri, 14 Feb 2003 02:07:43 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EA7hFK080650; Fri, 14 Feb 2003 02:07:43 -0800 (PST) Message-Id: <200302141007.h1EA7hFK080650@repoman.freebsd.org> From: Alexey Zelkin Date: Fri, 14 Feb 2003 02:07:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen dlinfo.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/14 02:07:43 PST Added files: lib/libc/gen dlinfo.3 Log: Add manual page for dlinfo(3). It's still need some work and add examples, but it's better than nothing already. Revision Changes Path 1.1 +191 -0 src/lib/libc/gen/dlinfo.3 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 2: 9: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F1A337B401; Fri, 14 Feb 2003 02:08:58 -0800 (PST) Received: from relay1.cris.net (relay1.cris.net [212.110.128.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id C940643F85; Fri, 14 Feb 2003 02:08:54 -0800 (PST) (envelope-from phantom@phantom.cris.net) Received: from phantom.cris.net (root@phantom.cris.net [212.110.130.74]) by relay1.cris.net (8.12.6/8.12.6) with ESMTP id h1ECEwvb068412; Fri, 14 Feb 2003 12:14:59 GMT Received: (from phantom@localhost) by phantom.cris.net (8.12.6/8.12.2) id h1EAFjW9009812; Fri, 14 Feb 2003 12:15:45 +0200 (EET) (envelope-from phantom) Date: Fri, 14 Feb 2003 12:15:45 +0200 From: Alexey Zelkin To: Ruslan Ermilov Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/libexec/rtld-elf Makefile rtld.1 Message-ID: <20030214121545.A9756@phantom.cris.net> References: <200302132307.h1DN7StF033612@repoman.freebsd.org> <20030214083621.GC73152@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030214083621.GC73152@sunbay.com>; from ru@freebsd.org on Fri, Feb 14, 2003 at 10:36:21AM +0200 X-Operating-System: FreeBSD 4.7-STABLE i386 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, Only to allow people who typing 'man ld.so' or 'apropos ld.so' to get document that they are expected. On Fri, Feb 14, 2003 at 10:36:21AM +0200, Ruslan Ermilov wrote: > On Thu, Feb 13, 2003 at 03:07:28PM -0800, Alexey Zelkin wrote: > > phantom 2003/02/13 15:07:28 PST > > > > Modified files: > > libexec/rtld-elf Makefile rtld.1 > > Log: > > Advertize rtld(1) as ld.so(1) in manual pages world > > > > Revision Changes Path > > 1.17 +2 -1 src/libexec/rtld-elf/Makefile > > 1.31 +1 -0 src/libexec/rtld-elf/rtld.1 > > > Why this? > > > Cheers, > -- > Ruslan Ermilov Sysadmin and DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 2:19:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04ADA37B401; Fri, 14 Feb 2003 02:19:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B22C43FB1; Fri, 14 Feb 2003 02:19:51 -0800 (PST) (envelope-from roger@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EAJpbv085766; Fri, 14 Feb 2003 02:19:51 -0800 (PST) (envelope-from roger@repoman.freebsd.org) Received: (from roger@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EAJpcX085764; Fri, 14 Feb 2003 02:19:51 -0800 (PST) Message-Id: <200302141019.h1EAJpcX085764@repoman.freebsd.org> From: Roger Hardiman Date: Fri, 14 Feb 2003 02:19:51 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master access.ports X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roger 2003/02/14 02:19:51 PST Modified files: . access access.master access.ports Log: Move out of access.master Revision Changes Path 1.562 +1 -0 CVSROOT/access 1.602 +0 -1 CVSROOT/access.master 1.517 +1 -0 CVSROOT/access.ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 2:54:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EE8137B401; Fri, 14 Feb 2003 02:54:38 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2263143FA3; Fri, 14 Feb 2003 02:54:38 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EAsbbv004773; Fri, 14 Feb 2003 02:54:37 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EAsba5004772; Fri, 14 Feb 2003 02:54:37 -0800 (PST) Message-Id: <200302141054.h1EAsba5004772@repoman.freebsd.org> From: Alexey Zelkin Date: Fri, 14 Feb 2003 02:54:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen dlinfo.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/14 02:54:37 PST Modified files: lib/libc/gen dlinfo.3 Log: Follow Solaris's manual page and describe Link_map structure here Revision Changes Path 1.2 +29 -1 src/lib/libc/gen/dlinfo.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 2:57:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36D3337B401; Fri, 14 Feb 2003 02:57:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFC2F43F3F; Fri, 14 Feb 2003 02:57:20 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EAvKbv005248; Fri, 14 Feb 2003 02:57:20 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EAvKA6005246; Fri, 14 Feb 2003 02:57:20 -0800 (PST) Message-Id: <200302141057.h1EAvKA6005246@repoman.freebsd.org> From: Alexey Zelkin Date: Fri, 14 Feb 2003 02:57:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen dlopen.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/14 02:57:20 PST Modified files: lib/libc/gen dlopen.3 Log: o Document that dlsym()'s behaviour with new special handle RTLD_SELF o Add cross reference to dlinfo(3) o Minor mdoc nits Revision Changes Path 1.26 +16 -1 src/lib/libc/gen/dlopen.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 4:19:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C82B37B401; Fri, 14 Feb 2003 04:19:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E85543F93; Fri, 14 Feb 2003 04:19:26 -0800 (PST) (envelope-from markp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ECJQbv044977; Fri, 14 Feb 2003 04:19:26 -0800 (PST) (envelope-from markp@repoman.freebsd.org) Received: (from markp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ECJPMD044975; Fri, 14 Feb 2003 04:19:25 -0800 (PST) Message-Id: <200302141219.h1ECJPMD044975@repoman.freebsd.org> From: Mark Pulford Date: Fri, 14 Feb 2003 04:19:25 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markp 2003/02/14 04:19:25 PST Modified files: . modules Log: xspy --> ports/security/xspy Revision Changes Path 1.6734 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 4:25: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1988637B401; Fri, 14 Feb 2003 04:25:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A55A343F85; Fri, 14 Feb 2003 04:25:00 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ECP0bv049230; Fri, 14 Feb 2003 04:25:00 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ECP0eK049229; Fri, 14 Feb 2003 04:25:00 -0800 (PST) Message-Id: <200302141225.h1ECP0eK049229@repoman.freebsd.org> From: Jacques Vidrine Date: Fri, 14 Feb 2003 04:25:00 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile.asm X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/14 04:25:00 PST Modified files: secure/lib/libcrypto Makefile.asm Log: Correct path for finding asm-generating files. Revision Changes Path 1.3 +6 -6 src/secure/lib/libcrypto/Makefile.asm To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 4:42:44 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BB3B37B401; Fri, 14 Feb 2003 04:42:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2111C43FAF; Fri, 14 Feb 2003 04:42:43 -0800 (PST) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ECggbv058504; Fri, 14 Feb 2003 04:42:42 -0800 (PST) (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ECgg37058502; Fri, 14 Feb 2003 04:42:42 -0800 (PST) Message-Id: <200302141242.h1ECgg37058502@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 14 Feb 2003 04:42:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2003/02/14 04:42:42 PST Modified files: (Branch: RELENG_4) libexec/ftpd ftpd.c Log: MFC 1.143: Use LOG_AUTHPRIV to hide the username attempted during an invalid login from everyone but sysadmins. Revision Changes Path 1.62.2.48 +5 -1 src/libexec/ftpd/ftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 4:44: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BD2F37B401; Fri, 14 Feb 2003 04:44:08 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4028043F75; Fri, 14 Feb 2003 04:44:08 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ECi8bv058919; Fri, 14 Feb 2003 04:44:08 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ECi8xm058918; Fri, 14 Feb 2003 04:44:08 -0800 (PST) Message-Id: <200302141244.h1ECi8xm058918@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 04:44:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_synch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 04:44:07 PST Modified files: sys/kern kern_synch.c Log: Print a backtrace in case we tsleep from inside of DDB. Revision Changes Path 1.210 +1 -0 src/sys/kern/kern_synch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 4:44:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6897237B401; Fri, 14 Feb 2003 04:44:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D27843F85; Fri, 14 Feb 2003 04:44:49 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ECimbv059063; Fri, 14 Feb 2003 04:44:48 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ECimG1059062; Fri, 14 Feb 2003 04:44:48 -0800 (PST) Message-Id: <200302141244.h1ECimG1059062@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 04:44:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 04:44:48 PST Modified files: sys/kern kern_shutdown.c Log: style. Revision Changes Path 1.141 +20 -8 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:10:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1708737B401; Fri, 14 Feb 2003 05:10:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABA3043F3F; Fri, 14 Feb 2003 05:10:41 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDAebv068831; Fri, 14 Feb 2003 05:10:40 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDAega068830; Fri, 14 Feb 2003 05:10:40 -0800 (PST) Message-Id: <200302141310.h1EDAega068830@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 05:10:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_intr.c src/sys/dev/ata ata-all.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 05:10:40 PST Modified files: sys/kern kern_intr.c sys/dev/ata ata-all.c Log: Fix crash dumps on ata and scsi. To fix scsi, don't wait for ithreads if we're dumping, it makes the debugger sad. To fix ata, use what appears to be a polling method if we're dumping, I stole this from tmm but added code to ensure that this change is only in effect while dumping. Tested by: des Revision Changes Path 1.165 +2 -1 src/sys/dev/ata/ata-all.c 1.88 +2 -1 src/sys/kern/kern_intr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:18:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09F5837B401; Fri, 14 Feb 2003 05:18:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A125643F3F; Fri, 14 Feb 2003 05:18:51 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDIpbv071807; Fri, 14 Feb 2003 05:18:51 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDIp5J071806; Fri, 14 Feb 2003 05:18:51 -0800 (PST) Message-Id: <200302141318.h1EDIp5J071806@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 05:18:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_mount.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 05:18:51 PST Modified files: sys/kern vfs_mount.c Log: Add kasserts to catch bad API usage. Submitted by: Hiten Pandya Revision Changes Path 1.98 +6 -0 src/sys/kern/vfs_mount.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:20:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EA8237B401; Fri, 14 Feb 2003 05:20:11 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DBF943FBD; Fri, 14 Feb 2003 05:20:11 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id EF3ADAE2AE; Fri, 14 Feb 2003 05:20:10 -0800 (PST) Date: Fri, 14 Feb 2003 05:20:10 -0800 From: Alfred Perlstein To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_intr.c src/sys/dev/ata ata-all.c Message-ID: <20030214132010.GL93252@elvis.mu.org> References: <200302141310.h1EDAega068830@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302141310.h1EDAega068830@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Alfred Perlstein [030214 05:10] wrote: > alfred 2003/02/14 05:10:40 PST > > Modified files: > sys/kern kern_intr.c > sys/dev/ata ata-all.c > Log: > Fix crash dumps on ata and scsi. > > To fix scsi, don't wait for ithreads if we're dumping, it makes the > debugger sad. > > To fix ata, use what appears to be a polling method if we're dumping, > I stole this from tmm but added code to ensure that this change is > only in effect while dumping. > > Tested by: des > > Revision Changes Path > 1.165 +2 -1 src/sys/dev/ata/ata-all.c > 1.88 +2 -1 src/sys/kern/kern_intr.c Someone already has said "but scsi dumps worked!" .. not true for all. db> call doadump Dumping 511 MB mi_switch(1,1,c401d0e0,c14fc400,e) at mi_switch+0x21d ithread_schedule(c14ffa80,1,d7bd48dc,c01367ef,c14f7a40) at ithread_schedule+0xf9 swi_sched(c14f7a40,0,d7bd48f8,c016afae,d7bd4948) at swi_sched+0x38 xpt_done(d7bd4948,c401d0e0,c14fc400,d000,2) at xpt_done+0x4f ahc_run_qoutfifo(c14fc400,d7bd4948,ea4c,c4001c40,d7bd492c) at ahc_run_qoutfifo+0 x6e ahc_intr(c14fc400,c4001c80,c4159800,d7bd4948,200) at ahc_intr+0xbd xpt_polled_action(d7bd4948,206af400,0,a,d7bd4a10) at xpt_polled_action+0x9c dadump(c416ab00,c03af920,0,206af400,0,200) at dadump+0x19b dumpsys(c0387cc0,c0387ce0,b,d7bd4aa8,c01e50e0) at dumpsys+0x28b doadump(0,0,0,0,0,0,0,0,0,0) at doadump+0x20 db_fncall(0,0,c038e000,d7bd4b10,0) at db_fncall+0x7c db_command(c034ae00,c034ac20,c0343ad0,c0343ad4,c031c612) at db_command+0xfb db_command_loop(0,0,d7bd4c80,c036ee08,d7bd4bfc) at db_command_loop+0x5c db_trap(3,0,1,3,c3fd50e0) at db_trap+0x5e kdb_trap(3,0,d7bd4c38) at kdb_trap+0xe6 trap(18,10,10,c14fb800,c403a400) at trap+0x39f calltrap() at calltrap+0x5 -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:28:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D8B137B401; Fri, 14 Feb 2003 05:28:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20BC943F75; Fri, 14 Feb 2003 05:28:45 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDSibv075434; Fri, 14 Feb 2003 05:28:44 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDSi12075433; Fri, 14 Feb 2003 05:28:44 -0800 (PST) Message-Id: <200302141328.h1EDSi12075433@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 05:28:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_mount.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 05:28:44 PST Modified files: sys/kern vfs_mount.c Log: KASSERT format string does not need newline termination Revision Changes Path 1.99 +2 -2 src/sys/kern/vfs_mount.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:30:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB18C37B401; Fri, 14 Feb 2003 05:30:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6450943F93; Fri, 14 Feb 2003 05:30:26 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDUQbv075675; Fri, 14 Feb 2003 05:30:26 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDUQtI075670; Fri, 14 Feb 2003 05:30:26 -0800 (PST) Message-Id: <200302141330.h1EDUQtI075670@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 14 Feb 2003 05:30:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_mount.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/14 05:30:26 PST Modified files: sys/kern vfs_mount.c Log: Style nit. Revision Changes Path 1.100 +2 -4 src/sys/kern/vfs_mount.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:36:18 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8202537B401; Fri, 14 Feb 2003 05:36:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2259943FD7; Fri, 14 Feb 2003 05:36:17 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDaGbv079056; Fri, 14 Feb 2003 05:36:16 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDaGcX079055; Fri, 14 Feb 2003 05:36:16 -0800 (PST) Message-Id: <200302141336.h1EDaGcX079055@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 05:36:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/groff/tmac doc-syms src/gnu/usr.bin/groff/tmac mdoc.local X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 05:36:16 PST Modified files: contrib/groff/tmac doc-syms gnu/usr.bin/groff/tmac mdoc.local Log: Moved the libugidfw library definition out from contributed source to where it actually belongs. Submitted by: phantom Revision Changes Path 1.43 +0 -1 src/contrib/groff/tmac/doc-syms 1.23 +1 -0 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:43:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C670D37B405; Fri, 14 Feb 2003 05:43:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4A4243F93; Fri, 14 Feb 2003 05:43:23 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDhNbv082690; Fri, 14 Feb 2003 05:43:23 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDhNAQ082689; Fri, 14 Feb 2003 05:43:23 -0800 (PST) Message-Id: <200302141343.h1EDhNAQ082689@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 05:43:23 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 05:43:23 PST Modified files: . exclude Log: Need to "restore" a bunch of groff files to the vendor version. Revision Changes Path 1.69 +1 -0 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:44:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E981E37B401; Fri, 14 Feb 2003 05:44:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94E4F43F93; Fri, 14 Feb 2003 05:44:04 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDi4bv082770; Fri, 14 Feb 2003 05:44:04 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDi4I8082769; Fri, 14 Feb 2003 05:44:04 -0800 (PST) Message-Id: <200302141344.h1EDi4I8082769@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 05:44:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/groff mdate.sh src/contrib/groff/man groff_out.man src/contrib/groff/tmac doc-common doc-ditroff doc-nroff doc-syms strip.sed X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 05:44:04 PST Modified files: contrib/groff mdate.sh contrib/groff/man groff_out.man contrib/groff/tmac doc-common doc-ditroff doc-nroff doc-syms strip.sed Log: Use the stock (FSF) version of this file. Revision Changes Path 1.7 +0 -3 src/contrib/groff/man/groff_out.man 1.5 +0 -2 src/contrib/groff/mdate.sh 1.60 +0 -1 src/contrib/groff/tmac/doc-common 1.7 +0 -1 src/contrib/groff/tmac/doc-ditroff 1.8 +0 -1 src/contrib/groff/tmac/doc-nroff 1.44 +0 -1 src/contrib/groff/tmac/doc-syms 1.5 +0 -1 src/contrib/groff/tmac/strip.sed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 5:44:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 359AA37B401; Fri, 14 Feb 2003 05:44:39 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CDA143FA3; Fri, 14 Feb 2003 05:44:39 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EDidbv082800; Fri, 14 Feb 2003 05:44:39 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EDicYD082799; Fri, 14 Feb 2003 05:44:38 -0800 (PST) Message-Id: <200302141344.h1EDicYD082799@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 05:44:38 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 05:44:38 PST Modified files: . exclude Log: Done. Revision Changes Path 1.70 +0 -1 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 6: 3:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53ACF37B401; Fri, 14 Feb 2003 06:03:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E842543FA3; Fri, 14 Feb 2003 06:03:30 -0800 (PST) (envelope-from jmas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EE3Ubv089937; Fri, 14 Feb 2003 06:03:30 -0800 (PST) (envelope-from jmas@repoman.freebsd.org) Received: (from jmas@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EE3UpK089936; Fri, 14 Feb 2003 06:03:30 -0800 (PST) Message-Id: <200302141403.h1EE3UpK089936@repoman.freebsd.org> From: "Jose M. Alcaide" Date: Fri, 14 Feb 2003 06:03:30 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access.doc access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmas 2003/02/14 06:03:30 PST Modified files: . access.doc access.master Log: Good bye, access.master. Hello, access.doc. Revision Changes Path 1.465 +1 -0 CVSROOT/access.doc 1.603 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 6: 9:24 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFCB037B401; Fri, 14 Feb 2003 06:09:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 824AC43F93; Fri, 14 Feb 2003 06:09:22 -0800 (PST) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EE9Mbv090126; Fri, 14 Feb 2003 06:09:22 -0800 (PST) (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EE9Msn090125; Fri, 14 Feb 2003 06:09:22 -0800 (PST) Message-Id: <200302141409.h1EE9Msn090125@repoman.freebsd.org> From: Maxim Konovalov Date: Fri, 14 Feb 2003 06:09:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/ipfw Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2003/02/14 06:09:21 PST Modified files: (Branch: RELENG_4) sys/modules/ipfw Makefile Log: o Respect IPFW2 compile time flag, build ipfw2 kld module as well. PR: kern/46494 Submitted by: Oleg Koreshkov Reviewed by: luigi Revision Changes Path 1.11.2.1 +6 -1 src/sys/modules/ipfw/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 6:23:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 951E937B401; Fri, 14 Feb 2003 06:23:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 389EB43FAF; Fri, 14 Feb 2003 06:23:21 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EENLbv097065; Fri, 14 Feb 2003 06:23:21 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EENKLL097064; Fri, 14 Feb 2003 06:23:20 -0800 (PST) Message-Id: <200302141423.h1EENKLL097064@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Feb 2003 06:23:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh jobs.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/14 06:23:20 PST Modified files: (Branch: RELENG_4) bin/sh jobs.c Log: MFC rev. 1.60: When job control is disabled, never show the job id when reporting the status of a background process that has terminated because of a signal. Revision Changes Path 1.27.2.9 +2 -1 src/bin/sh/jobs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 6:37:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 132B837B401; Fri, 14 Feb 2003 06:37:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA46243FA3; Fri, 14 Feb 2003 06:37:26 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EEbQbv000861; Fri, 14 Feb 2003 06:37:26 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EEbQKI000860; Fri, 14 Feb 2003 06:37:26 -0800 (PST) Message-Id: <200302141437.h1EEbQKI000860@repoman.freebsd.org> From: Jacques Vidrine Date: Fri, 14 Feb 2003 06:37:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/kerberosIV/kadmin kpasswd_standalone.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/14 06:37:26 PST Modified files: crypto/kerberosIV/kadmin kpasswd_standalone.c Log: When `des_read_pw_string' is a macro, as in OpenSSL 0.9.7, an attempt to declare a prototype for it will croak. Revision Changes Path 1.4 +2 -2 src/crypto/kerberosIV/kadmin/kpasswd_standalone.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:11:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A431137B401; Fri, 14 Feb 2003 07:11:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3963643FA3; Fri, 14 Feb 2003 07:11:28 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFBRbv014154; Fri, 14 Feb 2003 07:11:27 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFBRXO014147; Fri, 14 Feb 2003 07:11:27 -0800 (PST) Message-Id: <200302141511.h1EFBRXO014147@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 07:11:27 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 07:11:27 PST Modified files: . exclude Log: Temporarily exclude src/gnu/usr.bin/groff/tmac/hyphen.ru to allow an MFC. Revision Changes Path 1.71 +1 -0 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:15:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D065237B401; Fri, 14 Feb 2003 07:15:35 -0800 (PST) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2293643F3F; Fri, 14 Feb 2003 07:15:35 -0800 (PST) (envelope-from sam@errno.com) Received: from melange (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.5/8.12.1) with ESMTP id h1EFFUnN014195 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 14 Feb 2003 07:15:34 -0800 (PST)?g (envelope-from sam@errno.com)œ X-Authentication-Warning: ebb.errno.com: Host melange.errno.com [66.127.85.82] claimed to be melange Message-ID: <275601c2d43b$ebd9e580$52557f42@errno.com> From: "Sam Leffler" To: "Alfred Perlstein" , , , References: <200302141244.h1ECimG1059062@repoman.freebsd.org> Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Date: Fri, 14 Feb 2003 07:15:30 -0800 Organization: Errno Consulting MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > alfred 2003/02/14 04:44:48 PST > > Modified files: > sys/kern kern_shutdown.c > Log: > style. > > Revision Changes Path > 1.141 +20 -8 src/sys/kern/kern_shutdown.c > http://cvsweb.FreeBSD.org/src/sys/kern/kern_shutdown.c.diff?r1=1.140&r2=1.14 1 More like "gratuitous style". Sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:17:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1457A37B401; Fri, 14 Feb 2003 07:17:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC3C843F3F; Fri, 14 Feb 2003 07:17:10 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFHAbv015926; Fri, 14 Feb 2003 07:17:10 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFHAAt015925; Fri, 14 Feb 2003 07:17:10 -0800 (PST) Message-Id: <200302141517.h1EFHAAt015925@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Feb 2003 07:17:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/14 07:17:10 PST Modified files: (Branch: RELENG_4) . Makefile.inc1 Log: MFC: Add -DNOMAN to the list. Revision Changes Path 1.141.2.59 +1 -0 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:22:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B134B37B401; Fri, 14 Feb 2003 07:22:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689C443FBD; Fri, 14 Feb 2003 07:22:15 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFMFbv020974; Fri, 14 Feb 2003 07:22:15 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFMFOI020969; Fri, 14 Feb 2003 07:22:15 -0800 (PST) Message-Id: <200302141522.h1EFMFOI020969@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 07:22:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/groff ChangeLog FREEBSD-Xlist INSTALL INSTALL.gen MANIFEST MORE.STUFF Makefile.ccpg Makefile.comm Makefile.cpg Makefile.in Makefile.man Makefile.sub NEWS PROBLEMS README REVISION VERSION aclocal.m4 configure configure.ac mdate.sh ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 07:22:15 PST Modified files: (Branch: RELENG_4) contrib/groff ChangeLog FREEBSD-Xlist INSTALL INSTALL.gen MORE.STUFF Makefile.ccpg Makefile.comm Makefile.cpg Makefile.in Makefile.man Makefile.sub NEWS PROBLEMS README REVISION VERSION aclocal.m4 configure configure.ac mdate.sh test-groff win32-diffs contrib/groff/contrib/mm ChangeLog Makefile.sim Makefile.sub README groff_mm.man groff_mmse.man m.tmac mmroff.man mmroff.pl contrib/groff/doc grnexmpl.me groff.texinfo pic.ms texinfo.tex contrib/groff/font/devX100 CB CBI CI CR HB HBI HI HR NB NBI NI NR S TB TBI TI TR contrib/groff/font/devX100-12 CB CBI CI CR HB HBI HI HR NB NBI NI NR S TB TBI TI TR contrib/groff/font/devX75 CB CBI CI CR HB HBI HI HR NB NBI NI NR S TB TBI TI TR contrib/groff/font/devX75-12 CB CBI CI CR HB HBI HI HR NB NBI NI NR S TB TBI TI TR contrib/groff/font/devascii R.proto contrib/groff/font/devcp1047 R.proto contrib/groff/font/devdvi CW CWI DESC.in HB HI MI Makefile.sub S SA contrib/groff/font/devdvi/generate CompileFonts Makefile msam.map texb.map texi.map texmi.map texr.map texsy.map textt.map contrib/groff/font/devhtml DESC.proto Makefile.sub R.proto contrib/groff/font/devlatin1 R.proto contrib/groff/font/devlbp CB CI CR EB EI ER HB HBI HI HNB HNBI HNI HNR HR Makefile.sub TB TBI TI TR contrib/groff/font/devlj4 ALBB ALBR AOB AOI AOR CB CBI CI CLARENDON CORONET CR GB GBI GI GR LGB LGI LGR MARIGOLD OB OBI OI OR TB TBI TI TR UB UBI UCB UCBI UCI UCR UI UR contrib/groff/font/devlj4/generate Makefile text.map contrib/groff/font/devps AB ABI AI AR BMB BMBI BMI BMR CB CBI CI CR HB HBI HI HNB HNBI HNI HNR HR Makefile.sub NB NBI NI NR PB PBI PI PR S TB TBI TI TR ZCMI ZD ZDR prologue.ps symbolmap text.enc contrib/groff/font/devps/generate Makefile dingbats.map dingbats.rmap lgreekmap symbolchars textmap contrib/groff/font/devutf8 NOTES R.proto contrib/groff/man Makefile.sub groff.man groff_char.man groff_font.man groff_out.man roff.man contrib/groff/src/devices/grodvi Makefile.sub dvi.cc grodvi.man contrib/groff/src/devices/grohtml Makefile.sub grohtml.man html-text.cc html-text.h html.h output.cc post-html.cc contrib/groff/src/devices/grolbp Makefile.sub grolbp.man lbp.cc lbp.h contrib/groff/src/devices/grolj4 Makefile.sub grolj4.man lj4.cc contrib/groff/src/devices/grops Makefile.sub TODO grops.man ps.cc ps.h psrm.cc contrib/groff/src/devices/grotty Makefile.sub grotty.man tty.cc contrib/groff/src/include Makefile.sub driver.h errarg.h font.h getopt.h html-strings.h lib.h nonposix.h posix.h printer.h stringclass.h contrib/groff/src/libs/libbib Makefile.sub index.cc linear.cc map.c search.cc contrib/groff/src/libs/libdriver Makefile.sub input.cc printer.cc contrib/groff/src/libs/libgroff Makefile.sub errarg.cc font.cc fontfile.cc getopt.c getopt1.c itoa.c matherr.c maxfilename.cc nametoindex.cc new.cc putenv.c searchpath.cc strerror.c string.cc strtol.c tmpfile.cc contrib/groff/src/preproc/eqn Makefile.sub box.cc eqn.h eqn.man lex.cc limit.cc main.cc other.cc over.cc script.cc sqrt.cc contrib/groff/src/preproc/grn Makefile.sub README gprint.h grn.man hdb.cc hgraph.cc main.cc contrib/groff/src/preproc/html Makefile.sub pre-html.cc contrib/groff/src/preproc/pic Makefile.sub common.cc common.h lex.cc main.cc object.cc object.h output.h pic.h pic.man pic.y tex.cc troff.cc contrib/groff/src/preproc/refer Makefile.sub command.cc refer.cc refer.h contrib/groff/src/preproc/soelim Makefile.sub soelim.cc contrib/groff/src/preproc/tbl Makefile.sub main.cc table.h tbl.man contrib/groff/src/roff/groff Makefile.sub groff.cc groff.man pipeline.c pipeline.h contrib/groff/src/roff/grog Makefile.sub grog.man grog.pl grog.sh contrib/groff/src/roff/nroff nroff.man nroff.sh contrib/groff/src/roff/troff Makefile.sub TODO charinfo.h dictionary.cc div.cc div.h env.cc env.h input.cc node.cc node.h number.cc request.h symbol.cc symbol.h token.h troff.h troff.man contrib/groff/src/utils/addftinfo Makefile.sub addftinfo.cc contrib/groff/src/utils/afmtodit afmtodit.man afmtodit.pl contrib/groff/src/utils/hpftodit Makefile.sub hpftodit.cc contrib/groff/src/utils/indxbib Makefile.sub indxbib.cc signal.c contrib/groff/src/utils/lkbib Makefile.sub lkbib.cc contrib/groff/src/utils/lookbib Makefile.sub lookbib.cc contrib/groff/src/utils/pfbtops Makefile.sub pfbtops.c contrib/groff/src/utils/tfmtodit Makefile.sub tfmtodit.cc tfmtodit.man contrib/groff/src/xditview ChangeLog DviChar.c Imakefile.in parse.c xditview.c contrib/groff/tmac Makefile.sub X.tmac Xps.tmac an-old.tmac andoc.tmac doc-common doc-ditroff doc-nroff doc.tmac dvi.tmac e.tmac groff_man.man groff_mdoc.man groff_ms.man html.tmac hyphen.us latin1.tmac lbp.tmac lj4.tmac ps.tmac psold.tmac pspic.tmac s.tmac trace.tmac troffrc troffrc-end tty-char.tmac tty.tmac www.tmac gnu/usr.bin/groff Makefile.inc gnu/usr.bin/groff/contrib/mm Makefile gnu/usr.bin/groff/font Makefile.dev gnu/usr.bin/groff/font/devdvi Makefile gnu/usr.bin/groff/font/devhtml Makefile gnu/usr.bin/groff/font/devlbp Makefile gnu/usr.bin/groff/font/devps Makefile gnu/usr.bin/groff/man Makefile gnu/usr.bin/groff/src/devices/grohtml Makefile gnu/usr.bin/groff/src/libs/libgroff Makefile gnu/usr.bin/groff/src/preproc Makefile gnu/usr.bin/groff/src/preproc/html Makefile gnu/usr.bin/groff/tmac Makefile mdoc.local Added files: (Branch: RELENG_4) contrib/groff MANIFEST stamp-h.in contrib/groff/contrib/eqn2graph Makefile.sub eqn2graph.man eqn2graph.sh contrib/groff/contrib/groffer ChangeLog Makefile.sub TODO groffer.man groffer.sh contrib/groff/contrib/mm mm.tmac mmse.tmac contrib/groff/contrib/mom BUGS ChangeLog Makefile.sub NEWS TODO copyright groff_mom.man mom.tmac om.tmac contrib/groff/contrib/mom/examples README.mom elvis_syntax letter.mom macros.mom penguin.ps typeset.mom typewrite.mom contrib/groff/contrib/mom/momdoc appendices.html cover.html definitions.html docelement.html docprocessing.html goodies.html headfootpage.html inlines.html intro.html letters.html rectoverso.html reserved.html toc.html typemacdoc.html typesetting.html using.html contrib/groff/contrib/pic2graph Makefile.sub pic2graph.man pic2graph.sh contrib/groff/doc Makefile.in Makefile.sub fdl.texi gnu.eps gnu.png gnu.xpm groff groff-1 groff-10 groff-11 groff-2 groff-3 groff-4 groff-5 groff-6 groff-7 groff-8 groff-9 webpage.ms contrib/groff/font/devdvi CWEC CWIEC CWITC CWTC HBEC HBI HBIEC HBITC HBTC HIEC HITC HR HREC HRTC TB TBEC TBI TBIEC TBITC TBTC TI TIEC TITC TR TREC TRTC contrib/groff/font/devdvi/generate ec.map tc.map contrib/groff/man ditroff.man groff_diff.man groff_tmac.man contrib/groff/src/devices/grohtml html-table.cc html-table.h contrib/groff/src/include color.h config.hin geometry.h htmlhint.h paper.h contrib/groff/src/libs/libgroff color.cc geometry.cc htmlhint.cc invalid.cc mksdir.cc mkstemp.cc paper.cc tmpname.cc contrib/groff/src/preproc/html pushback.cc pushback.h contrib/groff/tmac README cp1047.tmac ec.tmac groff_trace.man groff_www.man gnu/usr.bin/groff/contrib/groffer Makefile gnu/usr.bin/groff/src/include config.h gnu/usr.bin/groff/tmac hyphen.ru ru.KOI8-R Removed files: (Branch: RELENG_4) contrib/groff/doc Makefile homepage.ms contrib/groff/font/devdvi B BI H I R contrib/groff/font/devdvi/generate cork.map contrib/groff/src/include htmlindicate.h contrib/groff/src/libs/libgroff htmlindicate.cc illegal.cc contrib/groff/src/preproc/html pushbackbuffer.cc pushbackbuffer.h contrib/groff/tmac groff_mwww.man groff_tmac.man mwww.tmac gnu/usr.bin/groff/tmac hyphen.us-ru koi8-r Log: MFC: Groff 1.18.1. Revision Changes Path 1.1.1.3.2.4 +3809 -32 src/contrib/groff/ChangeLog 1.1.2.2 +2 -0 src/contrib/groff/FREEBSD-Xlist 1.1.1.3.2.3 +4 -3 src/contrib/groff/INSTALL 1.1.1.1.8.2 +81 -38 src/contrib/groff/INSTALL.gen 1.1.1.1.4.1 +152 -0 src/contrib/groff/MANIFEST (new) 1.1.1.1.2.4 +27 -3 src/contrib/groff/MORE.STUFF 1.1.1.1.8.2 +1 -1 src/contrib/groff/Makefile.ccpg 1.1.1.2.2.3 +52 -29 src/contrib/groff/Makefile.comm 1.1.1.1.8.2 +1 -1 src/contrib/groff/Makefile.cpg 1.1.1.2.2.4 +142 -52 src/contrib/groff/Makefile.in 1.1.1.1.8.2 +1 -1 src/contrib/groff/Makefile.man 1.1.1.2.2.2 +23 -4 src/contrib/groff/Makefile.sub 1.1.1.3.2.4 +558 -40 src/contrib/groff/NEWS 1.1.1.2.2.3 +423 -367 src/contrib/groff/PROBLEMS 1.1.1.3.2.3 +1 -1 src/contrib/groff/README 1.1.1.1.2.4 +1 -1 src/contrib/groff/REVISION 1.1.1.3.2.3 +1 -1 src/contrib/groff/VERSION 1.1.1.2.2.4 +160 -39 src/contrib/groff/aclocal.m4 1.1.1.2.2.4 +3124 -1202 src/contrib/groff/configure 1.1.1.1.2.2 +24 -5 src/contrib/groff/configure.ac 1.1.1.1.4.1 +19 -0 src/contrib/groff/contrib/eqn2graph/Makefile.sub (new) 1.1.1.1.4.1 +97 -0 src/contrib/groff/contrib/eqn2graph/eqn2graph.man (new) 1.1.1.1.4.1 +74 -0 src/contrib/groff/contrib/eqn2graph/eqn2graph.sh (new) 1.1.1.1.4.1 +460 -0 src/contrib/groff/contrib/groffer/ChangeLog (new) 1.1.1.1.4.1 +47 -0 src/contrib/groff/contrib/groffer/Makefile.sub (new) 1.1.1.1.4.1 +53 -0 src/contrib/groff/contrib/groffer/TODO (new) 1.1.1.1.4.1 +2836 -0 src/contrib/groff/contrib/groffer/groffer.man (new) 1.1.1.1.4.1 +4419 -0 src/contrib/groff/contrib/groffer/groffer.sh (new) 1.1.1.1.2.2 +95 -1 src/contrib/groff/contrib/mm/ChangeLog 1.1.1.1.2.2 +6 -6 src/contrib/groff/contrib/mm/Makefile.sim 1.1.1.1.2.2 +13 -6 src/contrib/groff/contrib/mm/Makefile.sub 1.1.1.1.2.2 +1 -7 src/contrib/groff/contrib/mm/README 1.1.1.1.2.3 +396 -195 src/contrib/groff/contrib/mm/groff_mm.man 1.1.1.1.2.3 +2 -2 src/contrib/groff/contrib/mm/groff_mmse.man 1.1.1.1.2.3 +92 -60 src/contrib/groff/contrib/mm/m.tmac 1.1.1.1.4.1 +3 -0 src/contrib/groff/contrib/mm/mm.tmac (new) 1.1.1.1.2.3 +2 -5 src/contrib/groff/contrib/mm/mmroff.man 1.1.1.1.2.2 +6 -3 src/contrib/groff/contrib/mm/mmroff.pl 1.1.1.1.4.1 +3 -0 src/contrib/groff/contrib/mm/mmse.tmac (new) 1.1.1.1.4.1 +76 -0 src/contrib/groff/contrib/mom/BUGS (new) 1.1.1.1.4.1 +390 -0 src/contrib/groff/contrib/mom/ChangeLog (new) 1.1.1.1.4.1 +125 -0 src/contrib/groff/contrib/mom/Makefile.sub (new) 1.1.1.1.4.1 +183 -0 src/contrib/groff/contrib/mom/NEWS (new) 1.1.1.1.4.1 +21 -0 src/contrib/groff/contrib/mom/TODO (new) 1.1.1.1.4.1 +24 -0 src/contrib/groff/contrib/mom/copyright (new) 1.1.1.1.4.1 +56 -0 src/contrib/groff/contrib/mom/examples/README.mom (new) 1.1.1.1.4.1 +130 -0 src/contrib/groff/contrib/mom/examples/elvis_syntax (new) 1.1.1.1.4.1 +34 -0 src/contrib/groff/contrib/mom/examples/letter.mom (new) 1.1.1.1.4.1 +668 -0 src/contrib/groff/contrib/mom/examples/macros.mom (new) 1.1.1.1.4.1 +461 -0 src/contrib/groff/contrib/mom/examples/penguin.ps (new) 1.1.1.1.4.1 +534 -0 src/contrib/groff/contrib/mom/examples/typeset.mom (new) 1.1.1.1.4.1 +233 -0 src/contrib/groff/contrib/mom/examples/typewrite.mom (new) 1.1.1.1.4.1 +95 -0 src/contrib/groff/contrib/mom/groff_mom.man (new) 1.1.1.1.4.1 +3 -0 src/contrib/groff/contrib/mom/mom.tmac (new) 1.1.1.1.4.1 +185 -0 src/contrib/groff/contrib/mom/momdoc/appendices.html (new) 1.1.1.1.4.1 +49 -0 src/contrib/groff/contrib/mom/momdoc/cover.html (new) 1.1.1.1.4.1 +653 -0 src/contrib/groff/contrib/mom/momdoc/definitions.html (new) 1.1.1.1.4.1 +2320 -0 src/contrib/groff/contrib/mom/momdoc/docelement.html (new) 1.1.1.1.4.1 +1799 -0 src/contrib/groff/contrib/mom/momdoc/docprocessing.html (new) 1.1.1.1.4.1 +926 -0 src/contrib/groff/contrib/mom/momdoc/goodies.html (new) 1.1.1.1.4.1 +1305 -0 src/contrib/groff/contrib/mom/momdoc/headfootpage.html (new) 1.1.1.1.4.1 +595 -0 src/contrib/groff/contrib/mom/momdoc/inlines.html (new) 1.1.1.1.4.1 +386 -0 src/contrib/groff/contrib/mom/momdoc/intro.html (new) 1.1.1.1.4.1 +316 -0 src/contrib/groff/contrib/mom/momdoc/letters.html (new) 1.1.1.1.4.1 +257 -0 src/contrib/groff/contrib/mom/momdoc/rectoverso.html (new) 1.1.1.1.4.1 +1044 -0 src/contrib/groff/contrib/mom/momdoc/reserved.html (new) 1.1.1.1.4.1 +208 -0 src/contrib/groff/contrib/mom/momdoc/toc.html (new) 1.1.1.1.4.1 +169 -0 src/contrib/groff/contrib/mom/momdoc/typemacdoc.html (new) 1.1.1.1.4.1 +3744 -0 src/contrib/groff/contrib/mom/momdoc/typesetting.html (new) 1.1.1.1.4.1 +223 -0 src/contrib/groff/contrib/mom/momdoc/using.html (new) 1.1.1.1.4.1 +9265 -0 src/contrib/groff/contrib/mom/om.tmac (new) 1.1.1.1.4.1 +19 -0 src/contrib/groff/contrib/pic2graph/Makefile.sub (new) 1.1.1.1.4.1 +123 -0 src/contrib/groff/contrib/pic2graph/pic2graph.man (new) 1.1.1.1.4.1 +83 -0 src/contrib/groff/contrib/pic2graph/pic2graph.sh (new) 1.1.1.3.2.3 +0 -84 src/contrib/groff/doc/Makefile (dead) 1.1.1.1.4.1 +136 -0 src/contrib/groff/doc/Makefile.in (new) 1.1.1.1.4.1 +202 -0 src/contrib/groff/doc/Makefile.sub (new) 1.1.1.1.4.1 +403 -0 src/contrib/groff/doc/fdl.texi (new) 1.1.1.1.4.1 +1018 -0 src/contrib/groff/doc/gnu.eps (new) 1.1.1.1.4.1 +35 -0 src/contrib/groff/doc/gnu.png (new) 1.1.1.1.4.1 +198 -0 src/contrib/groff/doc/gnu.xpm (new) 1.1.1.1.2.2 +0 -2 src/contrib/groff/doc/grnexmpl.me 1.1.1.1.4.1 +297 -0 src/contrib/groff/doc/groff (new) 1.1.1.1.4.1 +1386 -0 src/contrib/groff/doc/groff-1 (new) 1.1.1.1.4.1 +208 -0 src/contrib/groff/doc/groff-10 (new) 1.1.1.1.4.1 +1536 -0 src/contrib/groff/doc/groff-11 (new) 1.1.1.1.4.1 +1683 -0 src/contrib/groff/doc/groff-2 (new) 1.1.1.1.4.1 +1374 -0 src/contrib/groff/doc/groff-3 (new) 1.1.1.1.4.1 +1316 -0 src/contrib/groff/doc/groff-4 (new) 1.1.1.1.4.1 +1185 -0 src/contrib/groff/doc/groff-5 (new) 1.1.1.1.4.1 +1415 -0 src/contrib/groff/doc/groff-6 (new) 1.1.1.1.4.1 +1608 -0 src/contrib/groff/doc/groff-7 (new) 1.1.1.1.4.1 +1268 -0 src/contrib/groff/doc/groff-8 (new) 1.1.1.1.4.1 +931 -0 src/contrib/groff/doc/groff-9 (new) 1.1.1.1.4.4 +7207 -2898 src/contrib/groff/doc/groff.texinfo 1.1.1.1.2.4 +0 -164 src/contrib/groff/doc/homepage.ms (dead) 1.1.1.2.4.4 +947 -592 src/contrib/groff/doc/pic.ms 1.1.1.1.2.2 +771 -363 src/contrib/groff/doc/texinfo.tex 1.1.1.1.4.1 +969 -0 src/contrib/groff/doc/webpage.ms (new) 1.1.1.1.2.2 +6 -98 src/contrib/groff/font/devX100-12/CB 1.1.1.1.2.2 +6 -98 src/contrib/groff/font/devX100-12/CBI 1.1.1.1.2.2 +6 -98 src/contrib/groff/font/devX100-12/CI 1.1.1.1.2.2 +6 -98 src/contrib/groff/font/devX100-12/CR 1.1.1.1.2.2 +24 -116 src/contrib/groff/font/devX100-12/HB 1.1.1.1.2.2 +11 -103 src/contrib/groff/font/devX100-12/HBI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100-12/HI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100-12/HR 1.1.1.1.2.2 +14 -106 src/contrib/groff/font/devX100-12/NB 1.1.1.1.2.2 +11 -103 src/contrib/groff/font/devX100-12/NBI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100-12/NI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100-12/NR 1.1.1.1.2.2 +2 -9 src/contrib/groff/font/devX100-12/S 1.1.1.1.2.2 +32 -124 src/contrib/groff/font/devX100-12/TB 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100-12/TBI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100-12/TI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100-12/TR 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/CB 1.1.1.1.2.2 +6 -98 src/contrib/groff/font/devX100/CBI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/CI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX100/CR 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/HB 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/HBI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/HI 1.1.1.1.2.2 +11 -103 src/contrib/groff/font/devX100/HR 1.1.1.1.2.2 +13 -105 src/contrib/groff/font/devX100/NB 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/NBI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX100/NI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100/NR 1.1.1.1.2.2 +1 -8 src/contrib/groff/font/devX100/S 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/TB 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100/TBI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX100/TI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX100/TR 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75-12/CB 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75-12/CBI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75-12/CI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75-12/CR 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX75-12/HB 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75-12/HBI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75-12/HI 1.1.1.1.2.2 +10 -102 src/contrib/groff/font/devX75-12/HR 1.1.1.1.2.2 +11 -103 src/contrib/groff/font/devX75-12/NB 1.1.1.1.2.2 +11 -103 src/contrib/groff/font/devX75-12/NBI 1.1.1.1.2.2 +10 -102 src/contrib/groff/font/devX75-12/NI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75-12/NR 1.1.1.1.2.2 +1 -8 src/contrib/groff/font/devX75-12/S 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75-12/TB 1.1.1.1.2.2 +11 -103 src/contrib/groff/font/devX75-12/TBI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75-12/TI 1.1.1.1.2.2 +22 -114 src/contrib/groff/font/devX75-12/TR 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75/CB 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75/CBI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75/CI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75/CR 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75/HB 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75/HBI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75/HI 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75/HR 1.1.1.1.2.2 +12 -104 src/contrib/groff/font/devX75/NB 1.1.1.1.2.2 +10 -102 src/contrib/groff/font/devX75/NBI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX75/NI 1.1.1.1.2.2 +12 -104 src/contrib/groff/font/devX75/NR 1.1.1.1.2.2 +2 -9 src/contrib/groff/font/devX75/S 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX75/TB 1.1.1.1.2.2 +8 -100 src/contrib/groff/font/devX75/TBI 1.1.1.1.2.2 +7 -99 src/contrib/groff/font/devX75/TI 1.1.1.1.2.2 +9 -101 src/contrib/groff/font/devX75/TR 1.1.1.1.2.2 +1 -0 src/contrib/groff/font/devascii/R.proto 1.1.1.1.2.2 +4 -95 src/contrib/groff/font/devcp1047/R.proto 1.1.1.1.2.2 +0 -358 src/contrib/groff/font/devdvi/B (dead) 1.1.1.1.2.2 +0 -365 src/contrib/groff/font/devdvi/BI (dead) 1.1.1.1.2.2 +8 -16 src/contrib/groff/font/devdvi/CW 1.1.1.1.4.1 +280 -0 src/contrib/groff/font/devdvi/CWEC (new) 1.1.1.1.2.2 +8 -16 src/contrib/groff/font/devdvi/CWI 1.1.1.1.4.1 +281 -0 src/contrib/groff/font/devdvi/CWIEC (new) 1.1.1.1.4.1 +139 -0 src/contrib/groff/font/devdvi/CWITC (new) 1.1.1.1.4.1 +138 -0 src/contrib/groff/font/devdvi/CWTC (new) 1.1.1.1.2.2 +4 -3 src/contrib/groff/font/devdvi/DESC.in 1.1.1.1.2.2 +0 -307 src/contrib/groff/font/devdvi/H (dead) 1.1.1.1.2.2 +12 -24 src/contrib/groff/font/devdvi/HB 1.1.1.1.4.1 +1578 -0 src/contrib/groff/font/devdvi/HBEC (new) 1.1.1.1.4.1 +296 -0 src/contrib/groff/font/devdvi/HBI (new) 1.1.1.1.4.1 +1579 -0 src/contrib/groff/font/devdvi/HBIEC (new) 1.1.1.1.4.1 +139 -0 src/contrib/groff/font/devdvi/HBITC (new) 1.1.1.1.4.1 +138 -0 src/contrib/groff/font/devdvi/HBTC (new) 1.1.1.1.2.2 +12 -24 src/contrib/groff/font/devdvi/HI 1.1.1.1.4.1 +1579 -0 src/contrib/groff/font/devdvi/HIEC (new) 1.1.1.1.4.1 +139 -0 src/contrib/groff/font/devdvi/HITC (new) 1.1.1.1.4.1 +295 -0 src/contrib/groff/font/devdvi/HR (new) 1.1.1.1.4.1 +1578 -0 src/contrib/groff/font/devdvi/HREC (new) 1.1.1.1.4.1 +138 -0 src/contrib/groff/font/devdvi/HRTC (new) 1.1.1.1.2.2 +0 -366 src/contrib/groff/font/devdvi/I (dead) 1.1.1.1.2.2 +2 -2 src/contrib/groff/font/devdvi/MI 1.1.1.1.2.2 +9 -3 src/contrib/groff/font/devdvi/Makefile.sub 1.1.1.1.2.2 +0 -441 src/contrib/groff/font/devdvi/R (dead) 1.1.1.1.2.2 +8 -11 src/contrib/groff/font/devdvi/S 1.1.1.1.2.2 +1 -3 src/contrib/groff/font/devdvi/SA 1.1.1.1.4.1 +346 -0 src/contrib/groff/font/devdvi/TB (new) 1.1.1.1.4.1 +1706 -0 src/contrib/groff/font/devdvi/TBEC (new) 1.1.1.1.4.1 +352 -0 src/contrib/groff/font/devdvi/TBI (new) 1.1.1.1.4.1 +1768 -0 src/contrib/groff/font/devdvi/TBIEC (new) 1.1.1.1.4.1 +139 -0 src/contrib/groff/font/devdvi/TBITC (new) 1.1.1.1.4.1 +138 -0 src/contrib/groff/font/devdvi/TBTC (new) 1.1.1.1.4.1 +353 -0 src/contrib/groff/font/devdvi/TI (new) 1.1.1.1.4.1 +1768 -0 src/contrib/groff/font/devdvi/TIEC (new) 1.1.1.1.4.1 +139 -0 src/contrib/groff/font/devdvi/TITC (new) 1.1.1.1.4.1 +429 -0 src/contrib/groff/font/devdvi/TR (new) 1.1.1.1.4.1 +1706 -0 src/contrib/groff/font/devdvi/TREC (new) 1.1.1.1.4.1 +138 -0 src/contrib/groff/font/devdvi/TRTC (new) 1.1.1.1.2.2 +1 -1 src/contrib/groff/font/devdvi/generate/CompileFonts 1.1.1.1.2.2 +105 -10 src/contrib/groff/font/devdvi/generate/Makefile 1.1.1.1.2.2 +0 -206 src/contrib/groff/font/devdvi/generate/cork.map (dead) 1.1.1.1.4.1 +206 -0 src/contrib/groff/font/devdvi/generate/ec.map (new) 1.1.1.1.2.2 +2 -2 src/contrib/groff/font/devdvi/generate/msam.map 1.1.1.1.4.1 +58 -0 src/contrib/groff/font/devdvi/generate/tc.map (new) 1.1.1.1.2.2 +12 -12 src/contrib/groff/font/devdvi/generate/texb.map 1.1.1.1.2.2 +13 -13 src/contrib/groff/font/devdvi/generate/texi.map 1.1.1.1.2.2 +1 -1 src/contrib/groff/font/devdvi/generate/texmi.map 1.1.1.1.2.2 +12 -12 src/contrib/groff/font/devdvi/generate/texr.map 1.1.1.1.2.2 +6 -6 src/contrib/groff/font/devdvi/generate/texsy.map 1.1.1.1.2.2 +8 -8 src/contrib/groff/font/devdvi/generate/textt.map 1.1.1.1.2.2 +1 -1 src/contrib/groff/font/devhtml/DESC.proto 1.1.1.1.2.2 +1 -1 src/contrib/groff/font/devhtml/Makefile.sub 1.1.1.1.2.2 +277 -201 src/contrib/groff/font/devhtml/R.proto 1.1.1.1.2.2 +4 -95 src/contrib/groff/font/devlatin1/R.proto 1.1.1.1.2.2 +2 -59 src/contrib/groff/font/devlbp/CB 1.1.1.1.2.2 +2 -59 src/contrib/groff/font/devlbp/CI 1.1.1.1.2.2 +2 -59 src/contrib/groff/font/devlbp/CR 1.1.1.1.2.2 +2 -59 src/contrib/groff/font/devlbp/EB 1.1.1.1.2.2 +2 -59 src/contrib/groff/font/devlbp/EI 1.1.1.1.2.2 +2 -59 src/contrib/groff/font/devlbp/ER 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HB 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HBI 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HI 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HNB 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HNBI 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HNI 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HNR 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/HR 1.1.1.1.2.2 +4 -1 src/contrib/groff/font/devlbp/Makefile.sub 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/TB 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/TBI 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/TI 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devlbp/TR 1.1.1.1.2.2 +95 -200 src/contrib/groff/font/devlj4/ALBB 1.1.1.1.2.2 +95 -200 src/contrib/groff/font/devlj4/ALBR 1.1.1.1.2.2 +95 -194 src/contrib/groff/font/devlj4/AOB 1.1.1.1.2.2 +95 -197 src/contrib/groff/font/devlj4/AOI 1.1.1.1.2.2 +95 -193 src/contrib/groff/font/devlj4/AOR 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/CB 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/CBI 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/CI 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/CLARENDON 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/CORONET 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/CR 1.1.1.1.2.2 +95 -197 src/contrib/groff/font/devlj4/GB 1.1.1.1.2.2 +95 -200 src/contrib/groff/font/devlj4/GBI 1.1.1.1.2.2 +95 -199 src/contrib/groff/font/devlj4/GI 1.1.1.1.2.2 +95 -202 src/contrib/groff/font/devlj4/GR 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/LGB 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/LGI 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/LGR 1.1.1.1.2.2 +95 -186 src/contrib/groff/font/devlj4/MARIGOLD 1.1.1.1.2.2 +95 -199 src/contrib/groff/font/devlj4/OB 1.1.1.1.2.2 +95 -200 src/contrib/groff/font/devlj4/OBI 1.1.1.1.2.2 +95 -202 src/contrib/groff/font/devlj4/OI 1.1.1.1.2.2 +95 -202 src/contrib/groff/font/devlj4/OR 1.1.1.1.2.2 +95 -204 src/contrib/groff/font/devlj4/TB 1.1.1.1.2.2 +95 -205 src/contrib/groff/font/devlj4/TBI 1.1.1.1.2.2 +95 -207 src/contrib/groff/font/devlj4/TI 1.1.1.1.2.2 +95 -201 src/contrib/groff/font/devlj4/TR 1.1.1.1.2.2 +95 -198 src/contrib/groff/font/devlj4/UB 1.1.1.1.2.2 +95 -197 src/contrib/groff/font/devlj4/UBI 1.1.1.1.2.2 +95 -198 src/contrib/groff/font/devlj4/UCB 1.1.1.1.2.2 +95 -198 src/contrib/groff/font/devlj4/UCBI 1.1.1.1.2.2 +95 -200 src/contrib/groff/font/devlj4/UCI 1.1.1.1.2.2 +95 -198 src/contrib/groff/font/devlj4/UCR 1.1.1.1.2.2 +95 -199 src/contrib/groff/font/devlj4/UI 1.1.1.1.2.2 +95 -198 src/contrib/groff/font/devlj4/UR 1.1.1.1.2.2 +2 -2 src/contrib/groff/font/devlj4/generate/Makefile 1.1.1.1.2.2 +4 -95 src/contrib/groff/font/devlj4/generate/text.map 1.1.1.1.2.2 +224 -320 src/contrib/groff/font/devps/AB 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/ABI 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/AI 1.1.1.1.2.2 +225 -321 src/contrib/groff/font/devps/AR 1.1.1.1.2.2 +225 -321 src/contrib/groff/font/devps/BMB 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/BMBI 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/BMI 1.1.1.1.2.2 +225 -321 src/contrib/groff/font/devps/BMR 1.1.1.1.2.2 +222 -313 src/contrib/groff/font/devps/CB 1.1.1.1.2.2 +4 -95 src/contrib/groff/font/devps/CBI 1.1.1.1.2.2 +4 -95 src/contrib/groff/font/devps/CI 1.1.1.1.2.2 +221 -312 src/contrib/groff/font/devps/CR 1.1.1.1.2.2 +223 -318 src/contrib/groff/font/devps/HB 1.1.1.1.2.2 +4 -99 src/contrib/groff/font/devps/HBI 1.1.1.1.2.2 +4 -127 src/contrib/groff/font/devps/HI 1.1.1.1.2.2 +223 -318 src/contrib/groff/font/devps/HNB 1.1.1.1.2.2 +4 -99 src/contrib/groff/font/devps/HNBI 1.1.1.1.2.2 +4 -127 src/contrib/groff/font/devps/HNI 1.1.1.1.2.2 +222 -345 src/contrib/groff/font/devps/HNR 1.1.1.1.2.2 +222 -345 src/contrib/groff/font/devps/HR 1.1.1.1.2.2 +2 -2 src/contrib/groff/font/devps/Makefile.sub 1.1.1.1.2.2 +221 -316 src/contrib/groff/font/devps/NB 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/NBI 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/NI 1.1.1.1.2.2 +221 -317 src/contrib/groff/font/devps/NR 1.1.1.1.2.2 +223 -319 src/contrib/groff/font/devps/PB 1.1.1.1.2.2 +4 -98 src/contrib/groff/font/devps/PBI 1.1.1.1.2.2 +4 -99 src/contrib/groff/font/devps/PI 1.1.1.1.2.2 +222 -318 src/contrib/groff/font/devps/PR 1.1.1.1.2.2 +180 -182 src/contrib/groff/font/devps/S 1.1.1.1.2.2 +220 -316 src/contrib/groff/font/devps/TB 1.1.1.1.2.2 +4 -99 src/contrib/groff/font/devps/TBI 1.1.1.1.2.2 +4 -100 src/contrib/groff/font/devps/TI 1.1.1.1.2.2 +222 -318 src/contrib/groff/font/devps/TR 1.1.1.1.2.2 +4 -96 src/contrib/groff/font/devps/ZCMI 1.1.1.1.2.2 +186 -186 src/contrib/groff/font/devps/ZD 1.1.1.1.2.2 +186 -186 src/contrib/groff/font/devps/ZDR 1.1.1.1.2.2 +25 -21 src/contrib/groff/font/devps/generate/Makefile 1.1.1.1.2.2 +3 -0 src/contrib/groff/font/devps/generate/dingbats.map 1.1.1.1.2.2 +3 -0 src/contrib/groff/font/devps/generate/dingbats.rmap 1.1.1.1.2.2 +3 -0 src/contrib/groff/font/devps/generate/lgreekmap 1.1.1.1.2.2 +3 -0 src/contrib/groff/font/devps/generate/symbolchars 1.1.1.1.2.2 +9 -95 src/contrib/groff/font/devps/generate/textmap 1.1.1.1.2.2 +21 -4 src/contrib/groff/font/devps/prologue.ps 1.1.1.1.2.2 +15 -95 src/contrib/groff/font/devps/symbolmap 1.1.1.1.2.2 +6 -1 src/contrib/groff/font/devps/text.enc 1.1.1.1.2.2 +23 -31 src/contrib/groff/font/devutf8/NOTES 1.1.1.1.2.2 +21 -96 src/contrib/groff/font/devutf8/R.proto 1.1.1.1.8.2 +4 -1 src/contrib/groff/man/Makefile.sub 1.1.1.1.4.1 +199 -0 src/contrib/groff/man/ditroff.man (new) 1.1.1.1.2.4 +1801 -1288 src/contrib/groff/man/groff.man 1.1.1.1.8.4 +708 -231 src/contrib/groff/man/groff_char.man 1.1.1.1.4.1 +3650 -0 src/contrib/groff/man/groff_diff.man (new) 1.1.1.1.8.4 +323 -120 src/contrib/groff/man/groff_font.man 1.3.2.3 +1853 -220 src/contrib/groff/man/groff_out.man 1.1.1.1.4.1 +1124 -0 src/contrib/groff/man/groff_tmac.man (new) 1.1.1.1.2.4 +1141 -407 src/contrib/groff/man/roff.man 1.2.6.4 +0 -2 src/contrib/groff/mdate.sh 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/devices/grodvi/Makefile.sub 1.1.1.1.2.3 +58 -24 src/contrib/groff/src/devices/grodvi/dvi.cc 1.1.1.1.2.3 +223 -16 src/contrib/groff/src/devices/grodvi/grodvi.man 1.1.1.1.2.3 +7 -4 src/contrib/groff/src/devices/grohtml/Makefile.sub 1.1.1.1.2.3 +82 -16 src/contrib/groff/src/devices/grohtml/grohtml.man 1.1.1.1.4.1 +687 -0 src/contrib/groff/src/devices/grohtml/html-table.cc (new) 1.1.1.1.4.1 +130 -0 src/contrib/groff/src/devices/grohtml/html-table.h (new) 1.1.1.1.2.3 +358 -223 src/contrib/groff/src/devices/grohtml/html-text.cc 1.1.1.1.2.3 +71 -55 src/contrib/groff/src/devices/grohtml/html-text.h 1.1.1.1.2.2 +1 -2 src/contrib/groff/src/devices/grohtml/html.h 1.1.1.1.2.3 +37 -19 src/contrib/groff/src/devices/grohtml/output.cc 1.1.1.1.2.3 +1626 -821 src/contrib/groff/src/devices/grohtml/post-html.cc 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/devices/grolbp/Makefile.sub 1.1.1.1.2.2 +29 -50 src/contrib/groff/src/devices/grolbp/grolbp.man 1.1.1.1.2.3 +504 -530 src/contrib/groff/src/devices/grolbp/lbp.cc 1.1.1.1.2.3 +1 -1 src/contrib/groff/src/devices/grolbp/lbp.h 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/devices/grolj4/Makefile.sub 1.1.1.1.2.3 +12 -9 src/contrib/groff/src/devices/grolj4/grolj4.man 1.1.1.1.2.3 +27 -32 src/contrib/groff/src/devices/grolj4/lj4.cc 1.1.1.1.2.2 +3 -3 src/contrib/groff/src/devices/grops/Makefile.sub 1.1.1.1.2.2 +0 -3 src/contrib/groff/src/devices/grops/TODO 1.1.1.1.2.3 +315 -66 src/contrib/groff/src/devices/grops/grops.man 1.1.1.1.2.3 +165 -93 src/contrib/groff/src/devices/grops/ps.cc 1.1.1.1.2.2 +2 -1 src/contrib/groff/src/devices/grops/ps.h 1.1.1.1.2.3 +31 -3 src/contrib/groff/src/devices/grops/psrm.cc 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/devices/grotty/Makefile.sub 1.4.2.3 +196 -41 src/contrib/groff/src/devices/grotty/grotty.man 1.1.1.1.2.3 +302 -36 src/contrib/groff/src/devices/grotty/tty.cc 1.1.1.1.2.2 +3 -2 src/contrib/groff/src/include/Makefile.sub 1.1.1.1.4.1 +87 -0 src/contrib/groff/src/include/color.h (new) 1.1.1.1.4.1 +150 -0 src/contrib/groff/src/include/config.hin (new) 1.1.1.1.2.2 +5 -3 src/contrib/groff/src/include/driver.h 1.1.1.1.2.2 +4 -3 src/contrib/groff/src/include/errarg.h 1.1.1.1.2.2 +5 -1 src/contrib/groff/src/include/font.h 1.1.1.1.4.1 +27 -0 src/contrib/groff/src/include/geometry.h (new) 1.1.1.1.2.3 +13 -12 src/contrib/groff/src/include/getopt.h 1.1.1.1.2.2 +1 -5 src/contrib/groff/src/include/html-strings.h 1.1.1.1.4.1 +37 -0 src/contrib/groff/src/include/htmlhint.h (new) 1.1.1.1.2.2 +0 -59 src/contrib/groff/src/include/htmlindicate.h (dead) 1.1.1.1.2.3 +45 -12 src/contrib/groff/src/include/lib.h 1.1.1.1.2.3 +19 -7 src/contrib/groff/src/include/nonposix.h 1.1.1.1.4.1 +37 -0 src/contrib/groff/src/include/paper.h (new) 1.1.1.1.2.2 +13 -1 src/contrib/groff/src/include/posix.h 1.1.1.1.2.2 +46 -19 src/contrib/groff/src/include/printer.h 1.1.1.1.2.2 +3 -2 src/contrib/groff/src/include/stringclass.h 1.1.1.1.2.2 +5 -5 src/contrib/groff/src/libs/libbib/Makefile.sub 1.1.1.1.2.3 +2 -3 src/contrib/groff/src/libs/libbib/index.cc 1.1.1.1.2.2 +3 -3 src/contrib/groff/src/libs/libbib/linear.cc 1.1.1.1.2.2 +8 -1 src/contrib/groff/src/libs/libbib/map.c 1.1.1.1.2.2 +4 -3 src/contrib/groff/src/libs/libbib/search.cc 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/libs/libdriver/Makefile.sub 1.1.1.1.2.2 +1737 -427 src/contrib/groff/src/libs/libdriver/input.cc 1.1.1.1.2.2 +34 -89 src/contrib/groff/src/libs/libdriver/printer.cc 1.1.1.1.2.3 +57 -40 src/contrib/groff/src/libs/libgroff/Makefile.sub 1.1.1.1.4.1 +363 -0 src/contrib/groff/src/libs/libgroff/color.cc (new) 1.1.1.1.2.2 +15 -5 src/contrib/groff/src/libs/libgroff/errarg.cc 1.1.1.1.2.3 +127 -31 src/contrib/groff/src/libs/libgroff/font.cc 1.1.1.1.2.2 +5 -4 src/contrib/groff/src/libs/libgroff/fontfile.cc 1.1.1.1.4.1 +286 -0 src/contrib/groff/src/libs/libgroff/geometry.cc (new) 1.1.1.1.2.3 +282 -67 src/contrib/groff/src/libs/libgroff/getopt.c 1.1.1.1.2.2 +8 -8 src/contrib/groff/src/libs/libgroff/getopt1.c 1.1.1.1.4.1 +59 -0 src/contrib/groff/src/libs/libgroff/htmlhint.cc (new) 1.1.1.1.2.2 +0 -97 src/contrib/groff/src/libs/libgroff/htmlindicate.cc (dead) 1.5.2.2 +0 -62 src/contrib/groff/src/libs/libgroff/illegal.cc (dead) 1.2.4.1 +62 -0 src/contrib/groff/src/libs/libgroff/invalid.cc (new) 1.1.1.1.2.2 +16 -1 src/contrib/groff/src/libs/libgroff/itoa.c 1.1.1.1.2.2 +5 -1 src/contrib/groff/src/libs/libgroff/matherr.c 1.1.1.1.2.2 +2 -0 src/contrib/groff/src/libs/libgroff/maxfilename.cc 1.1.1.1.4.1 +34 -0 src/contrib/groff/src/libs/libgroff/mksdir.cc (new) 1.1.1.1.4.1 +34 -0 src/contrib/groff/src/libs/libgroff/mkstemp.cc (new) 1.1.1.1.2.2 +4 -5 src/contrib/groff/src/libs/libgroff/nametoindex.cc 1.1.1.1.2.2 +3 -2 src/contrib/groff/src/libs/libgroff/new.cc 1.1.1.1.4.1 +84 -0 src/contrib/groff/src/libs/libgroff/paper.cc (new) 1.1.1.1.2.2 +5 -1 src/contrib/groff/src/libs/libgroff/putenv.c 1.1.1.1.2.2 +4 -4 src/contrib/groff/src/libs/libgroff/searchpath.cc 1.1.1.1.2.2 +5 -1 src/contrib/groff/src/libs/libgroff/strerror.c 1.1.1.1.2.2 +34 -4 src/contrib/groff/src/libs/libgroff/string.cc 1.1.1.1.2.2 +6 -1 src/contrib/groff/src/libs/libgroff/strtol.c 1.1.1.1.2.3 +83 -78 src/contrib/groff/src/libs/libgroff/tmpfile.cc 1.1.1.1.4.1 +116 -0 src/contrib/groff/src/libs/libgroff/tmpname.cc (new) 1.1.1.1.2.2 +18 -18 src/contrib/groff/src/preproc/eqn/Makefile.sub 1.1.1.1.2.2 +13 -13 src/contrib/groff/src/preproc/eqn/box.cc 1.1.1.1.2.2 +3 -4 src/contrib/groff/src/preproc/eqn/eqn.h 1.1.1.1.2.3 +13 -3 src/contrib/groff/src/preproc/eqn/eqn.man 1.1.1.1.2.3 +4 -4 src/contrib/groff/src/preproc/eqn/lex.cc 1.1.1.1.2.2 +6 -6 src/contrib/groff/src/preproc/eqn/limit.cc 1.1.1.1.2.3 +17 -41 src/contrib/groff/src/preproc/eqn/main.cc 1.1.1.1.2.2 +6 -6 src/contrib/groff/src/preproc/eqn/other.cc 1.1.1.1.2.3 +7 -6 src/contrib/groff/src/preproc/eqn/over.cc 1.1.1.1.2.2 +8 -8 src/contrib/groff/src/preproc/eqn/script.cc 1.1.1.1.2.2 +9 -9 src/contrib/groff/src/preproc/eqn/sqrt.cc 1.1.1.1.2.2 +5 -5 src/contrib/groff/src/preproc/grn/Makefile.sub 1.1.1.1.2.2 +9 -1 src/contrib/groff/src/preproc/grn/README 1.1.1.1.2.2 +2 -0 src/contrib/groff/src/preproc/grn/gprint.h 1.1.1.1.2.3 +14 -15 src/contrib/groff/src/preproc/grn/grn.man 1.1.1.1.2.2 +18 -5 src/contrib/groff/src/preproc/grn/hdb.cc 1.1.1.1.2.2 +21 -9 src/contrib/groff/src/preproc/grn/hgraph.cc 1.1.1.1.2.3 +3 -3 src/contrib/groff/src/preproc/grn/main.cc 1.1.1.1.2.3 +3 -3 src/contrib/groff/src/preproc/html/Makefile.sub 1.1.1.1.2.3 +522 -481 src/contrib/groff/src/preproc/html/pre-html.cc 1.1.1.1.4.1 +333 -0 src/contrib/groff/src/preproc/html/pushback.cc (new) 1.1.1.1.4.1 +54 -0 src/contrib/groff/src/preproc/html/pushback.h (new) 1.1.1.1.2.3 +0 -338 src/contrib/groff/src/preproc/html/pushbackbuffer.cc (dead) 1.1.1.1.2.2 +0 -54 src/contrib/groff/src/preproc/html/pushbackbuffer.h (dead) 1.1.1.1.2.2 +11 -11 src/contrib/groff/src/preproc/pic/Makefile.sub 1.1.1.1.2.2 +0 -1 src/contrib/groff/src/preproc/pic/common.cc 1.1.1.1.2.2 +4 -0 src/contrib/groff/src/preproc/pic/common.h 1.1.1.1.2.2 +61 -9 src/contrib/groff/src/preproc/pic/lex.cc 1.1.1.1.2.3 +9 -9 src/contrib/groff/src/preproc/pic/main.cc 1.1.1.1.2.2 +101 -40 src/contrib/groff/src/preproc/pic/object.cc 1.1.1.1.2.2 +8 -1 src/contrib/groff/src/preproc/pic/object.h 1.1.1.1.2.2 +6 -2 src/contrib/groff/src/preproc/pic/output.h 1.1.1.1.2.2 +4 -4 src/contrib/groff/src/preproc/pic/pic.h 1.1.1.1.2.3 +180 -41 src/contrib/groff/src/preproc/pic/pic.man 1.1.1.1.2.3 +124 -72 src/contrib/groff/src/preproc/pic/pic.y 1.1.1.1.2.2 +26 -0 src/contrib/groff/src/preproc/pic/tex.cc 1.1.1.1.2.2 +70 -13 src/contrib/groff/src/preproc/pic/troff.cc 1.1.1.1.2.2 +7 -7 src/contrib/groff/src/preproc/refer/Makefile.sub 1.1.1.1.2.3 +4 -3 src/contrib/groff/src/preproc/refer/command.cc 1.1.1.1.2.3 +11 -11 src/contrib/groff/src/preproc/refer/refer.cc 1.1.1.1.2.2 +3 -4 src/contrib/groff/src/preproc/refer/refer.h 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/preproc/soelim/Makefile.sub 1.1.1.1.2.3 +2 -3 src/contrib/groff/src/preproc/soelim/soelim.cc 1.1.1.1.2.2 +3 -3 src/contrib/groff/src/preproc/tbl/Makefile.sub 1.1.1.1.2.3 +17 -17 src/contrib/groff/src/preproc/tbl/main.cc 1.1.1.1.2.2 +6 -4 src/contrib/groff/src/preproc/tbl/table.h 1.1.1.1.2.3 +307 -41 src/contrib/groff/src/preproc/tbl/tbl.man 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/roff/groff/Makefile.sub 1.1.1.1.2.3 +38 -17 src/contrib/groff/src/roff/groff/groff.cc 1.6.2.3 +1511 -414 src/contrib/groff/src/roff/groff/groff.man 1.1.1.1.2.3 +14 -10 src/contrib/groff/src/roff/groff/pipeline.c 1.1.1.1.2.2 +3 -2 src/contrib/groff/src/roff/groff/pipeline.h 1.1.1.1.2.3 +8 -1 src/contrib/groff/src/roff/grog/Makefile.sub 1.1.1.1.2.3 +4 -3 src/contrib/groff/src/roff/grog/grog.man 1.1.1.1.2.3 +20 -8 src/contrib/groff/src/roff/grog/grog.pl 1.1.1.1.2.3 +9 -3 src/contrib/groff/src/roff/grog/grog.sh 1.7.2.3 +13 -9 src/contrib/groff/src/roff/nroff/nroff.man 1.11.2.3 +6 -11 src/contrib/groff/src/roff/nroff/nroff.sh 1.1.1.1.2.2 +10 -10 src/contrib/groff/src/roff/troff/Makefile.sub 1.1.1.1.2.2 +0 -3 src/contrib/groff/src/roff/troff/TODO 1.1.1.1.2.2 +34 -4 src/contrib/groff/src/roff/troff/charinfo.h 1.1.1.1.2.3 +1 -1 src/contrib/groff/src/roff/troff/dictionary.cc 1.1.1.1.2.3 +14 -9 src/contrib/groff/src/roff/troff/div.cc 1.1.1.1.2.3 +2 -0 src/contrib/groff/src/roff/troff/div.h 1.1.1.1.2.3 +493 -114 src/contrib/groff/src/roff/troff/env.cc 1.1.1.1.2.3 +26 -7 src/contrib/groff/src/roff/troff/env.h 1.1.1.1.2.3 +1173 -526 src/contrib/groff/src/roff/troff/input.cc 1.1.1.1.2.2 +460 -193 src/contrib/groff/src/roff/troff/node.cc 1.1.1.1.2.4 +32 -19 src/contrib/groff/src/roff/troff/node.h 1.1.1.1.2.2 +7 -2 src/contrib/groff/src/roff/troff/number.cc 1.1.1.1.2.2 +7 -3 src/contrib/groff/src/roff/troff/request.h 1.1.1.1.2.2 +9 -5 src/contrib/groff/src/roff/troff/symbol.cc 1.1.1.1.2.2 +8 -1 src/contrib/groff/src/roff/troff/symbol.h 1.1.1.1.2.3 +18 -3 src/contrib/groff/src/roff/troff/token.h 1.1.1.1.2.2 +12 -6 src/contrib/groff/src/roff/troff/troff.h 1.1.1.1.2.3 +410 -2215 src/contrib/groff/src/roff/troff/troff.man 1.1.1.1.2.2 +3 -3 src/contrib/groff/src/utils/addftinfo/Makefile.sub 1.1.1.1.2.3 +2 -3 src/contrib/groff/src/utils/addftinfo/addftinfo.cc 1.1.1.1.2.3 +56 -3 src/contrib/groff/src/utils/afmtodit/afmtodit.man 1.1.1.1.2.3 +3 -2 src/contrib/groff/src/utils/afmtodit/afmtodit.pl 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/utils/hpftodit/Makefile.sub 1.1.1.1.2.3 +2 -21 src/contrib/groff/src/utils/hpftodit/hpftodit.cc 1.1.1.1.2.3 +3 -3 src/contrib/groff/src/utils/indxbib/Makefile.sub 1.1.1.1.2.3 +7 -19 src/contrib/groff/src/utils/indxbib/indxbib.cc 1.1.1.1.2.2 +5 -1 src/contrib/groff/src/utils/indxbib/signal.c 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/utils/lkbib/Makefile.sub 1.1.1.1.2.3 +2 -3 src/contrib/groff/src/utils/lkbib/lkbib.cc 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/utils/lookbib/Makefile.sub 1.1.1.1.2.3 +5 -4 src/contrib/groff/src/utils/lookbib/lookbib.cc 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/utils/pfbtops/Makefile.sub 1.1.1.1.2.3 +5 -0 src/contrib/groff/src/utils/pfbtops/pfbtops.c 1.1.1.1.2.2 +2 -2 src/contrib/groff/src/utils/tfmtodit/Makefile.sub 1.1.1.1.2.3 +2 -3 src/contrib/groff/src/utils/tfmtodit/tfmtodit.cc 1.1.1.1.2.3 +19 -1 src/contrib/groff/src/utils/tfmtodit/tfmtodit.man 1.1.1.1.2.3 +50 -0 src/contrib/groff/src/xditview/ChangeLog 1.1.1.1.2.2 +511 -513 src/contrib/groff/src/xditview/DviChar.c 1.1.1.1.2.3 +6 -2 src/contrib/groff/src/xditview/Imakefile.in 1.1.1.1.2.2 +16 -11 src/contrib/groff/src/xditview/parse.c 1.1.1.1.2.2 +3 -1 src/contrib/groff/src/xditview/xditview.c 1.1.1.1.4.1 +1 -0 src/contrib/groff/stamp-h.in (new) 1.1.1.1.8.4 +7 -6 src/contrib/groff/test-groff 1.1.1.2.2.3 +7 -5 src/contrib/groff/tmac/Makefile.sub 1.1.1.1.4.1 +20 -0 src/contrib/groff/tmac/README (new) 1.1.1.1.2.2 +43 -34 src/contrib/groff/tmac/X.tmac 1.1.1.1.2.2 +48 -39 src/contrib/groff/tmac/Xps.tmac 1.1.1.1.2.3 +106 -22 src/contrib/groff/tmac/an-old.tmac 1.1.1.1.2.2 +5 -0 src/contrib/groff/tmac/andoc.tmac 1.1.1.1.4.1 +105 -0 src/contrib/groff/tmac/cp1047.tmac (new) 1.21.2.28 +31 -18 src/contrib/groff/tmac/doc-common 1.1.1.1.8.5 +20 -11 src/contrib/groff/tmac/doc-ditroff 1.1.1.1.8.6 +20 -11 src/contrib/groff/tmac/doc-nroff 1.1.1.1.2.7 +62 -58 src/contrib/groff/tmac/doc.tmac 1.1.1.1.2.2 +691 -110 src/contrib/groff/tmac/dvi.tmac 1.1.1.1.2.2 +20 -20 src/contrib/groff/tmac/e.tmac 1.1.1.1.4.1 +57 -0 src/contrib/groff/tmac/ec.tmac (new) 1.1.1.1.4.4 +36 -26 src/contrib/groff/tmac/groff_man.man 1.1.1.1.4.10 +67 -37 src/contrib/groff/tmac/groff_mdoc.man 1.1.1.1.8.3 +973 -130 src/contrib/groff/tmac/groff_ms.man 1.1.1.1.2.3 +0 -291 src/contrib/groff/tmac/groff_mwww.man (dead) 1.1.1.1.2.4 +0 -451 src/contrib/groff/tmac/groff_tmac.man (dead) 1.1.1.1.4.1 +546 -0 src/contrib/groff/tmac/groff_trace.man (new) 1.1.1.1.4.1 +415 -0 src/contrib/groff/tmac/groff_www.man (new) 1.1.1.1.2.2 +686 -20 src/contrib/groff/tmac/html.tmac 1.1.1.1.2.2 +19 -2 src/contrib/groff/tmac/hyphen.us 1.1.1.1.2.2 +99 -97 src/contrib/groff/tmac/latin1.tmac 1.1.1.1.2.2 +4 -0 src/contrib/groff/tmac/lbp.tmac 1.1.1.1.2.2 +11 -6 src/contrib/groff/tmac/lj4.tmac 1.1.1.1.2.2 +0 -3 src/contrib/groff/tmac/mwww.tmac (dead) 1.1.1.1.2.2 +583 -22 src/contrib/groff/tmac/ps.tmac 1.1.1.1.2.2 +1 -1 src/contrib/groff/tmac/psold.tmac 1.1.1.1.2.2 +96 -50 src/contrib/groff/tmac/pspic.tmac 1.1.1.1.2.2 +91 -41 src/contrib/groff/tmac/s.tmac 1.1.1.1.2.2 +43 -11 src/contrib/groff/tmac/trace.tmac 1.6.2.3 +26 -8 src/contrib/groff/tmac/troffrc 1.1.1.1.2.4 +5 -5 src/contrib/groff/tmac/troffrc-end 1.1.1.1.2.2 +199 -186 src/contrib/groff/tmac/tty-char.tmac 1.1.1.1.2.2 +65 -39 src/contrib/groff/tmac/tty.tmac 1.1.1.1.2.3 +506 -120 src/contrib/groff/tmac/www.tmac 1.1.1.1.2.4 +179 -519 src/contrib/groff/win32-diffs 2.3.6.2 +12 -33 src/gnu/usr.bin/groff/Makefile.inc 1.1.4.1 +7 -0 src/gnu/usr.bin/groff/contrib/groffer/Makefile (new) 1.1.2.6 +2 -2 src/gnu/usr.bin/groff/contrib/mm/Makefile 2.8.2.4 +2 -7 src/gnu/usr.bin/groff/font/Makefile.dev 1.1.2.2 +11 -6 src/gnu/usr.bin/groff/font/devdvi/Makefile 1.1.2.2 +2 -2 src/gnu/usr.bin/groff/font/devhtml/Makefile 1.1.2.2 +3 -2 src/gnu/usr.bin/groff/font/devlbp/Makefile 1.1.2.2 +3 -3 src/gnu/usr.bin/groff/font/devps/Makefile 1.5.8.4 +4 -3 src/gnu/usr.bin/groff/man/Makefile 1.1.2.3 +1 -1 src/gnu/usr.bin/groff/src/devices/grohtml/Makefile 1.2.4.1 +153 -0 src/gnu/usr.bin/groff/src/include/config.h (new) 1.1.2.4 +5 -5 src/gnu/usr.bin/groff/src/libs/libgroff/Makefile 1.1.2.2 +2 -5 src/gnu/usr.bin/groff/src/preproc/Makefile 1.1.2.3 +1 -1 src/gnu/usr.bin/groff/src/preproc/html/Makefile 1.21.2.8 +11 -9 src/gnu/usr.bin/groff/tmac/Makefile 1.1.1.1.4.1 +3893 -0 src/gnu/usr.bin/groff/tmac/hyphen.ru (new) 1.1.12.2 +0 -4834 src/gnu/usr.bin/groff/tmac/hyphen.us-ru (dead) 1.2.2.6 +0 -136 src/gnu/usr.bin/groff/tmac/koi8-r (dead) 1.2.2.17 +3 -8 src/gnu/usr.bin/groff/tmac/mdoc.local 1.9.4.1 +137 -0 src/gnu/usr.bin/groff/tmac/ru.KOI8-R (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:24:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B69F37B401; Fri, 14 Feb 2003 07:24:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9735443FB1; Fri, 14 Feb 2003 07:24:27 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFORbv021751; Fri, 14 Feb 2003 07:24:27 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFOR5W021750; Fri, 14 Feb 2003 07:24:27 -0800 (PST) Message-Id: <200302141524.h1EFOR5W021750@repoman.freebsd.org> From: Christian Weisgerber Date: Fri, 14 Feb 2003 07:24:27 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/14 07:24:27 PST Modified files: . modules Log: dvorak7min --> ports/misc/dvorak7min Revision Changes Path 1.6735 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:25:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0BED37B401; Fri, 14 Feb 2003 07:25:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4438543F3F; Fri, 14 Feb 2003 07:25:27 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFPRbv021814; Fri, 14 Feb 2003 07:25:27 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFPQWf021813; Fri, 14 Feb 2003 07:25:26 -0800 (PST) Message-Id: <200302141525.h1EFPQWf021813@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Feb 2003 07:25:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/14 07:25:26 PST Modified files: (Branch: RELENG_4) share/man/man5 make.conf.5 Log: MFC: Add NOMAN. Revision Changes Path 1.12.2.27 +3 -0 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:26:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17EC437B401; Fri, 14 Feb 2003 07:26:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFE2943F75; Fri, 14 Feb 2003 07:26:48 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFQmbv021876; Fri, 14 Feb 2003 07:26:48 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFQmHn021875; Fri, 14 Feb 2003 07:26:48 -0800 (PST) Message-Id: <200302141526.h1EFQmHn021875@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Feb 2003 07:26:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/14 07:26:48 PST Modified files: (Branch: RELENG_4) share/man/man5 make.conf.5 Log: .Xr ksh 1, should be .Xr ksh 1 , Fixed. Revision Changes Path 1.12.2.28 +1 -1 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:27: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4E4937B401; Fri, 14 Feb 2003 07:26:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EF2D43FBF; Fri, 14 Feb 2003 07:26:58 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFQwbv021906; Fri, 14 Feb 2003 07:26:58 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFQvFJ021905; Fri, 14 Feb 2003 07:26:57 -0800 (PST) Message-Id: <200302141526.h1EFQvFJ021905@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 07:26:57 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT exclude X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 07:26:57 PST Modified files: . exclude Log: MFC done. Revision Changes Path 1.72 +0 -1 CVSROOT/exclude To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:28:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2FF637B401; Fri, 14 Feb 2003 07:28:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA2BA43FCB; Fri, 14 Feb 2003 07:28:08 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFS8bv021969; Fri, 14 Feb 2003 07:28:08 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFS85F021968; Fri, 14 Feb 2003 07:28:08 -0800 (PST) Message-Id: <200302141528.h1EFS85F021968@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Feb 2003 07:28:08 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults make.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/14 07:28:08 PST Modified files: (Branch: RELENG_4) etc/defaults make.conf Log: Add NOMAN here also. Revision Changes Path 1.97.2.77 +1 -0 src/etc/defaults/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:36:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6575637B405 for ; Fri, 14 Feb 2003 07:36:51 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BCA743FB1 for ; Fri, 14 Feb 2003 07:36:47 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1EFah12033199 for ; Fri, 14 Feb 2003 17:36:43 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1EFagHR033177 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Feb 2003 17:36:42 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1EFagkm033172; Fri, 14 Feb 2003 17:36:42 +0200 (EET) Date: Fri, 14 Feb 2003 17:36:42 +0200 From: Ruslan Ermilov To: Tom Rhodes Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/examples/etc make.conf Message-ID: <20030214153642.GA31267@sunbay.com> References: <200302111945.h1BJjijC021135@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cNdxnHkX5QqsyA0e" Content-Disposition: inline In-Reply-To: <200302111945.h1BJjijC021135@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --cNdxnHkX5QqsyA0e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 11, 2003 at 11:45:44AM -0800, Tom Rhodes wrote: > trhodes 2003/02/11 11:45:44 PST >=20 > Modified files: > share/examples/etc make.conf=20 > Log: > Add NOMAN here also. > =20 > Revision Changes Path > 1.210 +1 -0 src/share/examples/etc/make.conf >=20 You forgot the `=3D' sign. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --cNdxnHkX5QqsyA0e Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TQ0KUkv4P6juNwoRAoqaAJ4sInaYYy/khHcD/L/RWR9AUHvvsACePZrd oW01kxH0OM9kF3UMVY0qHAg= =eCsD -----END PGP SIGNATURE----- --cNdxnHkX5QqsyA0e-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:38:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0455637B401; Fri, 14 Feb 2003 07:38:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97D2C43FB1; Fri, 14 Feb 2003 07:38:52 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFcqbv025639; Fri, 14 Feb 2003 07:38:52 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFcqqQ025638; Fri, 14 Feb 2003 07:38:52 -0800 (PST) Message-Id: <200302141538.h1EFcqqQ025638@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 07:38:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/man man.c src/gnu/usr.bin/groff/tmac mdoc.local X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 07:38:52 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/man/man man.c gnu/usr.bin/groff/tmac mdoc.local Log: MFC: Pass man(1)'s idea of a manpage's locale down to mdoc(7). Revision Changes Path 1.2.2.18 +2 -2 src/gnu/usr.bin/groff/tmac/mdoc.local 1.37.2.10 +13 -2 src/gnu/usr.bin/man/man/man.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 7:52:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC36C37B401; Fri, 14 Feb 2003 07:52:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FB4E43F93; Fri, 14 Feb 2003 07:52:33 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EFqXbv032397; Fri, 14 Feb 2003 07:52:33 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EFqXFb032381; Fri, 14 Feb 2003 07:52:33 -0800 (PST) Message-Id: <200302141552.h1EFqXFb032381@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Feb 2003 07:52:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire fwohci_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/14 07:52:32 PST Modified files: sys/dev/firewire fwohci_pci.c Log: Clear the bus reset event flag as soon as possible after the initialization has completed to start transactions even when interrupt is disabled during the boot process. Revision Changes Path 1.16 +9 -0 src/sys/dev/firewire/fwohci_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8: 2: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05F6E37B401; Fri, 14 Feb 2003 08:01:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FA8643F85; Fri, 14 Feb 2003 08:01:58 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EG1wbv036248; Fri, 14 Feb 2003 08:01:58 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EG1wFb036244; Fri, 14 Feb 2003 08:01:58 -0800 (PST) Message-Id: <200302141601.h1EG1wFb036244@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 08:01:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 08:01:58 PST Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Recognize FreeBSD 5.1; libc_gen/signbit.3 has set the precedent. Revision Changes Path 1.24 +3 -0 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:21:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 141D037B401; Fri, 14 Feb 2003 08:21:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9C9043FBF; Fri, 14 Feb 2003 08:21:50 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EGLobv043585; Fri, 14 Feb 2003 08:21:50 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EGLoos043579; Fri, 14 Feb 2003 08:21:50 -0800 (PST) Message-Id: <200302141621.h1EGLoos043579@repoman.freebsd.org> From: Warner Losh Date: Fri, 14 Feb 2003 08:21:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/devd devd.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/14 08:21:50 PST Modified files: sbin/devd devd.8 Log: devd bugs section is now OBE Revision Changes Path 1.6 +0 -3 src/sbin/devd/devd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:34:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FB3E37B401; Fri, 14 Feb 2003 08:34:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F9FE43FB1; Fri, 14 Feb 2003 08:34:37 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EGYbbv048187; Fri, 14 Feb 2003 08:34:37 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EGYaWI048186; Fri, 14 Feb 2003 08:34:36 -0800 (PST) Message-Id: <200302141634.h1EGYaWI048186@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 14 Feb 2003 08:34:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2003/02/14 08:34:36 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: NewReno fixed (+MFC), libgeom(3), pam_ssh(8) rewrite, syslogd(8) multiple hosts/programs in syslog.conf(5). MFCs noted: CanBe, sendmail-8.12.7. Revision Changes Path 1.496 +18 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:37:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B79937B401; Fri, 14 Feb 2003 08:37:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D3F243F75; Fri, 14 Feb 2003 08:37:11 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EGbAbv048328; Fri, 14 Feb 2003 08:37:10 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EGbAJ4048327; Fri, 14 Feb 2003 08:37:10 -0800 (PST) Message-Id: <200302141637.h1EGbAJ4048327@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 14 Feb 2003 08:37:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2003/02/14 08:37:10 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: CanBe, TCP NewReno fix, groff-1.18.1, sendmail-8.12.7. Revision Changes Path 1.22.2.328 +13 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:38:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1207C37B401; Fri, 14 Feb 2003 08:38:38 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id F327243FA3; Fri, 14 Feb 2003 08:38:34 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 9D75E679DA; Fri, 14 Feb 2003 08:38:34 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 91344E5E; Fri, 14 Feb 2003 08:38:34 -0800 (PST) Date: Fri, 14 Feb 2003 08:38:34 -0800 From: Kris Kennaway To: Alfred Perlstein Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_intr.c src/sys/dev/ata ata-all.c Message-ID: <20030214163834.GD849@rot13.obsecurity.org> References: <200302141310.h1EDAega068830@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4zI0WCX1RcnW9Hbu" Content-Disposition: inline In-Reply-To: <200302141310.h1EDAega068830@repoman.freebsd.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --4zI0WCX1RcnW9Hbu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 05:10:40AM -0800, Alfred Perlstein wrote: > alfred 2003/02/14 05:10:40 PST >=20 > Modified files: > sys/kern kern_intr.c=20 > sys/dev/ata ata-all.c=20 > Log: > Fix crash dumps on ata and scsi. Thankyou!!! Kris --4zI0WCX1RcnW9Hbu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TRuJWry0BWjoQKURAgoEAKCGHLdzA7UALa3py2mVAqotDlmxFwCg5+qc bjAi2aUOmlKFW170wzadaQU= =VQi9 -----END PGP SIGNATURE----- --4zI0WCX1RcnW9Hbu-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:44:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F265337B401; Fri, 14 Feb 2003 08:44:19 -0800 (PST) Received: from sccrmhc02.attbi.com (sccrmhc02.attbi.com [204.127.202.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D2343F75; Fri, 14 Feb 2003 08:44:19 -0800 (PST) (envelope-from bmah@employees.org) Received: from bmah.dyndns.org (12-240-204-110.client.attbi.com[12.240.204.110]) by sccrmhc02.attbi.com (sccrmhc02) with ESMTP id <20030214164418002003324ie>; Fri, 14 Feb 2003 16:44:18 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.6/8.12.6) with ESMTP id h1EGiHRG079479; Fri, 14 Feb 2003 08:44:17 -0800 (PST) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.6/8.12.6/Submit) id h1EGiHM2079478; Fri, 14 Feb 2003 08:44:17 -0800 (PST) (envelope-from bmah) Date: Fri, 14 Feb 2003 08:44:17 -0800 From: "Bruce A. Mah" To: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml Message-ID: <20030214164417.GA79379@intruder.bmah.org> References: <200302141637.h1EGbAJ4048327@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline In-Reply-To: <200302141637.h1EGbAJ4048327@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-url: http://www.employees.org/~bmah/ Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable If memory serves me right, Bruce A. Mah wrote: > bmah 2003/02/14 08:37:10 PST >=20 > Modified files: (Branch: RELENG_4) > release/doc/en_US.ISO8859-1/relnotes/common new.sgml=20 > Log: > MFC: CanBe, TCP NewReno fix, groff-1.18.1, sendmail-8.12.7. > =20 > Revision Changes Path > 1.22.2.328 +13 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/= new.sgml Forgot to mention (in case anyone's reading *real* closely) that I marked CanBe as an i386 feature (even though it's apparently just for pc98) because we don't build a separate pc98 release notes document for RELENG_4. Bruce. --n8g4imXOkfNTN/H1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TRzg2MoxcVugUsMRAtHVAJ9NNx8UkbMCIKVwT8XykKC+dLNRIACeKIoq LCz9+/zhf8tDXMsYtuiEpKs= =qwgE -----END PGP SIGNATURE----- --n8g4imXOkfNTN/H1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:49:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2141537B405 for ; Fri, 14 Feb 2003 08:49:33 -0800 (PST) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id D498E43FA3 for ; Fri, 14 Feb 2003 08:48:45 -0800 (PST) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (root@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with SMTP id h1EGmWYf042844 for ; Fri, 14 Feb 2003 18:48:32 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Sunbay) with ESMTP id h1EGmVHR042817 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 14 Feb 2003 18:48:31 +0200 (EET) (envelope-from ru@whale.sunbay.crimea.ua) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.6/8.12.6/Submit) id h1EGmVD8042812; Fri, 14 Feb 2003 18:48:31 +0200 (EET) Date: Fri, 14 Feb 2003 18:48:31 +0200 From: Ruslan Ermilov To: Warner Losh Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/devd devd.8 Message-ID: <20030214164831.GD39984@sunbay.com> References: <200302141621.h1EGLoos043579@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Km1U/tdNT/EmXiR1" Content-Disposition: inline In-Reply-To: <200302141621.h1EGLoos043579@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Km1U/tdNT/EmXiR1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 14, 2003 at 08:21:50AM -0800, Warner Losh wrote: > imp 2003/02/14 08:21:50 PST >=20 > Modified files: > sbin/devd devd.8=20 > Log: > devd bugs section is now OBE > =20 > Revision Changes Path > 1.6 +0 -3 src/sbin/devd/devd.8 >=20 Thanks! devd.conf(5) has the same atavism too. Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age --Km1U/tdNT/EmXiR1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+TR3fUkv4P6juNwoRAoeWAJ4ur/gxDQMSrlj1KrYBgn0Wq1DbNgCfWeyh 5ke0b3cX9NsPmpIEL19X+yY= =AXuf -----END PGP SIGNATURE----- --Km1U/tdNT/EmXiR1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:50:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 020BF37B401; Fri, 14 Feb 2003 08:50:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A0B43F85; Fri, 14 Feb 2003 08:50:13 -0800 (PST) (envelope-from bmilekic@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EGoDbv052029; Fri, 14 Feb 2003 08:50:13 -0800 (PST) (envelope-from bmilekic@repoman.freebsd.org) Received: (from bmilekic@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EGoDl6052028; Fri, 14 Feb 2003 08:50:13 -0800 (PST) Message-Id: <200302141650.h1EGoDl6052028@repoman.freebsd.org> From: Bosko Milekic Date: Fri, 14 Feb 2003 08:50:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_mbuf.c subr_mchain.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmilekic 2003/02/14 08:50:13 PST Modified files: sys/kern subr_mbuf.c subr_mchain.c Log: Make m_getm() always return the top of the newly allocated chain, as opposed to returning the top of the old chain when there was one and the top of the newly allocated chain if there was no old chain. Actually, it should be noted that prior to this fix, although the comment above m_getm() advertised that m_getm() would return the top of the old chain (if an old chain was being passed in) it actually [wrongly] was returning the tail mbuf in the old chain instead. This is a bug but since the one use of m_getm() in the tree luckily did not depend on the behavior, it happened to work out without notice. Harti Brandt pointed out that the advertised behavior was actually not the real behavior and so this change makes m_getm() ALWAYS return the newly allocated chain (and fixes the comment). This is less confusing and is the best course of action as then the caller is always able to have both a reference to the top of the original chain (because it's passing it in in the call) and a reference to the newly attached chain. Although the API is slightly modified, I don't think that any third-party code uses m_getm() and if it does, it surely can't be working properly because the old behavior was bogus. API bug pointed out by: Harti Brandt Revision Changes Path 1.37 +2 -4 src/sys/kern/subr_mbuf.c 1.12 +0 -1 src/sys/kern/subr_mchain.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 8:55:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B3C837B401; Fri, 14 Feb 2003 08:55:44 -0800 (PST) Received: from tesla.distributel.net (nat.MTL.distributel.NET [66.38.181.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 643CA43FBD; Fri, 14 Feb 2003 08:55:43 -0800 (PST) (envelope-from bmilekic@unixdaemons.com) Received: (from bmilekic@localhost) by tesla.distributel.net (8.11.6/8.11.6) id h1EGtbI54170; Fri, 14 Feb 2003 11:55:37 -0500 (EST) (envelope-from bmilekic@unixdaemons.com) Date: Fri, 14 Feb 2003 11:55:37 -0500 From: Bosko Milekic To: Bosko Milekic Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_mbuf.c subr_mchain.c Message-ID: <20030214115537.B54113@unixdaemons.com> References: <200302141650.h1EGoDl6052028@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200302141650.h1EGoDl6052028@repoman.freebsd.org>; from bmilekic@FreeBSD.org on Fri, Feb 14, 2003 at 08:50:13AM -0800 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 14, 2003 at 08:50:13AM -0800, Bosko Milekic wrote: > bmilekic 2003/02/14 08:50:13 PST > > Modified files: > sys/kern subr_mbuf.c subr_mchain.c > Log: > Make m_getm() always return the top of the newly allocated chain, as > opposed to returning the top of the old chain when there was one and > the top of the newly allocated chain if there was no old chain. > > Actually, it should be noted that prior to this fix, although the > comment above m_getm() advertised that m_getm() would return the > top of the old chain (if an old chain was being passed in) it > actually [wrongly] was returning the tail mbuf in the old chain > instead. This is a bug but since the one use of m_getm() in > the tree luckily did not depend on the behavior, it happened > to work out without notice. > > Harti Brandt pointed out that the advertised behavior was actually > not the real behavior and so this change makes m_getm() ALWAYS > return the newly allocated chain (and fixes the comment). This > is less confusing and is the best course of action as then the > caller is always able to have both a reference to the top of > the original chain (because it's passing it in in the call) and > a reference to the newly attached chain. Although the API is > slightly modified, I don't think that any third-party code uses > m_getm() and if it does, it surely can't be working properly > because the old behavior was bogus. > > API bug pointed out by: Harti Brandt P.S.: Harti Brandt is actually a committer, so: Pointed out by: harti Sorry about that. :-) > Revision Changes Path > 1.37 +2 -4 src/sys/kern/subr_mbuf.c > 1.12 +0 -1 src/sys/kern/subr_mchain.c -- Bosko Milekic * bmilekic@unixdaemons.com * bmilekic@FreeBSD.org "If we open a quarrel between the past and the present, we shall find that we have lost the future." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 9:41:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7C2D37B401 for ; Fri, 14 Feb 2003 09:41:56 -0800 (PST) Received: from tara.freenix.org (keltia.freenix.org [62.4.20.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8F6743FBF for ; Fri, 14 Feb 2003 09:41:55 -0800 (PST) (envelope-from roberto@tara.freenix.org) Received: by tara.freenix.org (Postfix/TLS, from userid 101) id 51FE52A8D; Fri, 14 Feb 2003 18:41:54 +0100 (CET) Date: Fri, 14 Feb 2003 18:41:54 +0100 From: Ollivier Robert To: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_intr.c src/sys/dev/ata ata-all.c Message-ID: <20030214174154.GA516@tara.freenix.org> Mail-Followup-To: cvs-src@FreeBSD.org References: <200302141310.h1EDAega068830@repoman.freebsd.org> <20030214132010.GL93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214132010.GL93252@elvis.mu.org> X-Operating-System: FreeBSD 5.0-CURRENT K6-3D/266 & 2x PIII/800 SMP User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG According to Alfred Perlstein: > Someone already has said "but scsi dumps worked!" .. not true for all. > > db> call doadump From within DDB maybe not but my vaio has been happily dumping for a long time... -- 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-src" in the body of the message From owner-cvs-src Fri Feb 14 11:20: 2 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08C4237B401; Fri, 14 Feb 2003 11:20:01 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7FEC43FDF; Fri, 14 Feb 2003 11:19:57 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 96C30AE2DD; Fri, 14 Feb 2003 11:19:57 -0800 (PST) Date: Fri, 14 Feb 2003 11:19:57 -0800 From: Alfred Perlstein To: Sam Leffler Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030214191957.GO93252@elvis.mu.org> References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <275601c2d43b$ebd9e580$52557f42@errno.com> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Sam Leffler [030214 07:15] wrote: > > alfred 2003/02/14 04:44:48 PST > > > > Modified files: > > sys/kern kern_shutdown.c > > Log: > > style. > > > > Revision Changes Path > > 1.141 +20 -8 src/sys/kern/kern_shutdown.c > > > http://cvsweb.FreeBSD.org/src/sys/kern/kern_shutdown.c.diff?r1=1.140&r2=1.14 > 1 > > More like "gratuitous style". More like when looking at the file in otder to fix other things I was so turned off by it that it offended me and for that reason needed fixing. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 11:49:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B204C37B401; Fri, 14 Feb 2003 11:49:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56C0F43F85; Fri, 14 Feb 2003 11:49:20 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EJnKbv017352; Fri, 14 Feb 2003 11:49:20 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EJnKFS017351; Fri, 14 Feb 2003 11:49:20 -0800 (PST) Message-Id: <200302141949.h1EJnKFS017351@repoman.freebsd.org> From: Warner Losh Date: Fri, 14 Feb 2003 11:49:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/devd devd.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/14 11:49:20 PST Modified files: sbin/devd devd.conf.5 Log: The bugs section hasn't been true since before 5.0-R Revision Changes Path 1.7 +0 -3 src/sbin/devd/devd.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 12: 4:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29C2E37B401; Fri, 14 Feb 2003 12:04:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C13B143FE1; Fri, 14 Feb 2003 12:04:44 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EK4ibv025410; Fri, 14 Feb 2003 12:04:44 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EK4iQd025409; Fri, 14 Feb 2003 12:04:44 -0800 (PST) Message-Id: <200302142004.h1EK4iQd025409@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Feb 2003 12:04:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/etc make.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/14 12:04:44 PST Modified files: share/examples/etc make.conf Log: Move NOMAN down the section without underscore characters. Add a forgotten `=' sign. Thanks to: ru, bde Revision Changes Path 1.211 +1 -1 src/share/examples/etc/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 12: 9:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92E3337B401; Fri, 14 Feb 2003 12:09:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 351B243FAF; Fri, 14 Feb 2003 12:09:27 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EK9Rbv025568; Fri, 14 Feb 2003 12:09:27 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EK9Qkd025567; Fri, 14 Feb 2003 12:09:26 -0800 (PST) Message-Id: <200302142009.h1EK9Qkd025567@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 14 Feb 2003 12:09:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults make.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/14 12:09:26 PST Modified files: (Branch: RELENG_4) etc/defaults make.conf Log: MFC: Move NOMAN down the list. Thanks to: bde Revision Changes Path 1.97.2.78 +1 -1 src/etc/defaults/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 13: 5:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3F0537B401; Fri, 14 Feb 2003 13:05:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F4D743F93; Fri, 14 Feb 2003 13:05:36 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EL5abv047906; Fri, 14 Feb 2003 13:05:36 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EL5Z2C047905; Fri, 14 Feb 2003 13:05:35 -0800 (PST) Message-Id: <200302142105.h1EL5Z2C047905@repoman.freebsd.org> From: Kirk McKusick Date: Fri, 14 Feb 2003 13:05:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpfs dumpfs.c src/sbin/fsck_ffs fsck.h src/sbin/newfs mkfs.c newfs.c newfs.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2003/02/14 13:05:35 PST Modified files: sbin/dumpfs dumpfs.c sbin/fsck_ffs fsck.h sbin/newfs mkfs.c newfs.c newfs.h Log: Correct lines incorrectly added to the copyright message. Add missing period. Submitted by: Bruce Evans Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.36 +1 -4 src/sbin/dumpfs/dumpfs.c 1.29 +1 -4 src/sbin/fsck_ffs/fsck.h 1.72 +1 -4 src/sbin/newfs/mkfs.c 1.71 +1 -4 src/sbin/newfs/newfs.c 1.13 +1 -4 src/sbin/newfs/newfs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 13: 8:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58C2337B401; Fri, 14 Feb 2003 13:08:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E81C043F85; Fri, 14 Feb 2003 13:08:14 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EL8Ebv048102; Fri, 14 Feb 2003 13:08:14 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EL8EWm048101; Fri, 14 Feb 2003 13:08:14 -0800 (PST) Message-Id: <200302142108.h1EL8EWm048101@repoman.freebsd.org> From: Kirk McKusick Date: Fri, 14 Feb 2003 13:08:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpfs dumpfs.c src/sbin/fsck_ffs fsck.h src/sbin/newfs mkfs.c newfs.c newfs.h X-FreeBSD-CVS-Branch: RELENG_5_0 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2003/02/14 13:08:14 PST Modified files: (Branch: RELENG_5_0) sbin/dumpfs dumpfs.c sbin/fsck_ffs fsck.h sbin/newfs mkfs.c newfs.c newfs.h Log: Correct lines incorrectly added to the copyright message. Add missing period. Submitted by: Bruce Evans Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.27.2.1 +1 -4 src/sbin/dumpfs/dumpfs.c 1.28.2.1 +1 -4 src/sbin/fsck_ffs/fsck.h 1.67.2.1 +1 -4 src/sbin/newfs/mkfs.c 1.66.2.1 +1 -4 src/sbin/newfs/newfs.c 1.8.2.1 +1 -4 src/sbin/newfs/newfs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 13:32: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E635437B401; Fri, 14 Feb 2003 13:31:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6ED43FDF; Fri, 14 Feb 2003 13:31:58 -0800 (PST) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ELVwbv057948; Fri, 14 Feb 2003 13:31:58 -0800 (PST) (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ELVwvm057944; Fri, 14 Feb 2003 13:31:58 -0800 (PST) Message-Id: <200302142131.h1ELVwvm057944@repoman.freebsd.org> From: Kirk McKusick Date: Fri, 14 Feb 2003 13:31:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2003/02/14 13:31:58 PST Modified files: sbin/newfs mkfs.c sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Log: Replace use of random() with arc4random() to provide less guessable values for the initial inode generation numbers in newfs and for newly allocated inode generation numbers in the kernel. Submitted by: Theo de Raadt Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.73 +5 -5 src/sbin/newfs/mkfs.c 1.109 +2 -2 src/sys/ufs/ffs/ffs_alloc.c 1.204 +1 -1 src/sys/ufs/ffs/ffs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 13:33:30 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id B280537B401; Fri, 14 Feb 2003 13:33:28 -0800 (PST) Date: Fri, 14 Feb 2003 15:33:28 -0600 From: Juli Mallett To: Kirk McKusick Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Message-ID: <20030214153328.A78405@FreeBSD.org> References: <200302142131.h1ELVwvm057944@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200302142131.h1ELVwvm057944@repoman.freebsd.org>; from mckusick@FreeBSD.org on Fri, Feb 14, 2003 at 01:31:58PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: Kirk McKusick [ Data: 2003-02-14 ] [ Subjecte: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ] > mckusick 2003/02/14 13:31:58 PST > > Modified files: > sbin/newfs mkfs.c > sys/ufs/ffs ffs_alloc.c ffs_vfsops.c > Log: > Replace use of random() with arc4random() to provide less guessable > values for the initial inode generation numbers in newfs and for > newly allocated inode generation numbers in the kernel. Are the sequences for it also repeatable in the newfs case for e.g. the regression tests, where it is used unseeded? Thanx, juli. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD Never trust an ELF, COFF or Mach-O! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 13:47:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 346EC37B401; Fri, 14 Feb 2003 13:47:54 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E0C143FBF; Fri, 14 Feb 2003 13:47:53 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1ELlnbL002684; Fri, 14 Feb 2003 13:47:49 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1ELlnOv002683; Fri, 14 Feb 2003 13:47:49 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Fri, 14 Feb 2003 13:47:48 -0800 From: David Schultz To: Alfred Perlstein Cc: Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030214214748.GA2520@HAL9000.homeunix.com> Mail-Followup-To: Alfred Perlstein , Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> <20030214191957.GO93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214191957.GO93252@elvis.mu.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Alfred Perlstein : > * Sam Leffler [030214 07:15] wrote: > > > alfred 2003/02/14 04:44:48 PST > > > > > > Modified files: > > > sys/kern kern_shutdown.c > > > Log: > > > style. > > > > > > Revision Changes Path > > > 1.141 +20 -8 src/sys/kern/kern_shutdown.c > > > > > http://cvsweb.FreeBSD.org/src/sys/kern/kern_shutdown.c.diff?r1=1.140&r2=1.14 > > 1 > > > > More like "gratuitous style". > > More like when looking at the file in otder to fix other things I was so > turned off by it that it offended me and for that reason needed fixing. A single extra space at the end of a line offends you? Some of the ``style problems'' fixed by this commit aren't even in style(9). However, the following IS in style(9): Stylistic changes (including whitespace changes) are hard on the source repository and are to be avoided without good reason. People don't seem to understand that violating this principle makes it very hard to maintain local patches. If the file is being modified heavily anyway and there are major formatting bugs, then there's nothing wrong with a few style fixes, but people need to keep in mind that they *are* creating a hassle for others. Don't take this personally, even though I'm using this commit as an example; this is a generic complaint of mine against a practice, not meant as an attack on any specific individuals. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 13:51:51 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id BC71937B401; Fri, 14 Feb 2003 13:51:47 -0800 (PST) Date: Fri, 14 Feb 2003 15:51:47 -0600 From: Juli Mallett To: Alfred Perlstein , Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030214155147.A79372@FreeBSD.org> References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> <20030214191957.GO93252@elvis.mu.org> <20030214214748.GA2520@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030214214748.GA2520@HAL9000.homeunix.com>; from dschultz@uclink.Berkeley.EDU on Fri, Feb 14, 2003 at 01:47:48PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: David Schultz [ Data: 2003-02-14 ] [ Subjecte: Re: cvs commit: src/sys/kern kern_shutdown.c ] > Thus spake Alfred Perlstein : > > * Sam Leffler [030214 07:15] wrote: > > > > style. > > > More like "gratuitous style". > > More like when looking at the file in otder to fix other things I was so > > turned off by it that it offended me and for that reason needed fixing. > > A single extra space at the end of a line offends you? Some of > the ``style problems'' fixed by this commit aren't even in > style(9). However, the following IS in style(9): > > Stylistic changes (including whitespace changes) are hard > on the source repository and are to be avoided without > good reason. I got the impression he might be doing work on said file, in which case people prefer if you commit style changes seperately, if you do make them. Sweeping the tree for style reasons sucks unless there's some sort of marginally good reason, or you're doing it as part of something else. For example, when cleaning all the __P out of our OOL, it'd have made sense to adjust nearby line lengths and comments so the stylistic consistency would remain. juli. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD Never trust an ELF, COFF or Mach-O! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 14:13: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA4CC37B405; Fri, 14 Feb 2003 14:13:01 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5034443F75; Fri, 14 Feb 2003 14:13:01 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 18C66AE272; Fri, 14 Feb 2003 14:13:01 -0800 (PST) Date: Fri, 14 Feb 2003 14:13:01 -0800 From: Alfred Perlstein To: Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030214221301.GU93252@elvis.mu.org> References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> <20030214191957.GO93252@elvis.mu.org> <20030214214748.GA2520@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214214748.GA2520@HAL9000.homeunix.com> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * David Schultz [030214 13:48] wrote: > > > > More like when looking at the file in otder to fix other things I was so > > turned off by it that it offended me and for that reason needed fixing. > > A single extra space at the end of a line offends you? Some of > the ``style problems'' fixed by this commit aren't even in > style(9). However, the following IS in style(9): What part of "i needed to work on this file and the badness of the style made it hard for me to do so" don't you understand? I really have better things to do, so should you. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 14:15:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34D5537B405; Fri, 14 Feb 2003 14:15:11 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96AB443F93; Fri, 14 Feb 2003 14:15:05 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1EMF3EJ059745; Sat, 15 Feb 2003 01:15:04 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1EMF38Q059744; Sat, 15 Feb 2003 01:15:03 +0300 (MSK) (envelope-from ache) Date: Sat, 15 Feb 2003 01:15:03 +0300 From: "Andrey A. Chernov" To: Juli Mallett Cc: Kirk McKusick , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Message-ID: <20030214221503.GA59673@nagual.pp.ru> References: <200302142131.h1ELVwvm057944@repoman.freebsd.org> <20030214153328.A78405@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214153328.A78405@FreeBSD.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 14, 2003 at 15:33:28 -0600, Juli Mallett wrote: > * De: Kirk McKusick [ Data: 2003-02-14 ] > [ Subjecte: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ] > > mckusick 2003/02/14 13:31:58 PST > > > > Modified files: > > sbin/newfs mkfs.c > > sys/ufs/ffs ffs_alloc.c ffs_vfsops.c > > Log: > > Replace use of random() with arc4random() to provide less guessable > > values for the initial inode generation numbers in newfs and for > > newly allocated inode generation numbers in the kernel. > > Are the sequences for it also repeatable in the newfs case for e.g. the > regression tests, where it is used unseeded? Obvious answer - no. BTW, this fix really fixes nothing for FreeBSD case because we already use srandomdev() (for non-regression case). -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 14:18:26 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id BCA6937B401; Fri, 14 Feb 2003 14:18:23 -0800 (PST) Date: Fri, 14 Feb 2003 16:18:23 -0600 From: Juli Mallett To: "Andrey A. Chernov" Cc: Kirk McKusick , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Message-ID: <20030214161823.A82579@FreeBSD.org> References: <200302142131.h1ELVwvm057944@repoman.freebsd.org> <20030214153328.A78405@FreeBSD.org> <20030214221503.GA59673@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20030214221503.GA59673@nagual.pp.ru>; from ache@nagual.pp.ru on Sat, Feb 15, 2003 at 01:15:03AM +0300 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: "Andrey A. Chernov" [ Data: 2003-02-14 ] [ Subjecte: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ] > On Fri, Feb 14, 2003 at 15:33:28 -0600, Juli Mallett wrote: > > * De: Kirk McKusick [ Data: 2003-02-14 ] > > [ Subjecte: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ] > > > mckusick 2003/02/14 13:31:58 PST > > > > > > Modified files: > > > sbin/newfs mkfs.c > > > sys/ufs/ffs ffs_alloc.c ffs_vfsops.c > > > Log: > > > Replace use of random() with arc4random() to provide less guessable > > > values for the initial inode generation numbers in newfs and for > > > newly allocated inode generation numbers in the kernel. > > > > Are the sequences for it also repeatable in the newfs case for e.g. the > > regression tests, where it is used unseeded? > > Obvious answer - no. > > BTW, this fix really fixes nothing for FreeBSD case because we already use > srandomdev() (for non-regression case). Yes, I thought so, but I figured Kirk would stumble over that himself. Fixing OpenBSD deficiency by breaking FreeBSD behaviour is odd :( Thanx, juli. -- Juli Mallett AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD Never trust an ELF, COFF or Mach-O! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 14:26: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE9D537B405; Fri, 14 Feb 2003 14:25:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43EB443FBD; Fri, 14 Feb 2003 14:25:59 -0800 (PST) (envelope-from fenner@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EMPxbv077553; Fri, 14 Feb 2003 14:25:59 -0800 (PST) (envelope-from fenner@repoman.freebsd.org) Received: (from fenner@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EMPwdG077552; Fri, 14 Feb 2003 14:25:58 -0800 (PST) Message-Id: <200302142225.h1EMPwdG077552@repoman.freebsd.org> From: Bill Fenner Date: Fri, 14 Feb 2003 14:25:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_vlan.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fenner 2003/02/14 14:25:58 PST Modified files: (Branch: RELENG_4) sys/net if_vlan.c Log: MFC 1.46: Implement SIOCGIFMEDIA for vlan devices Revision Changes Path 1.15.2.13 +23 -0 src/sys/net/if_vlan.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 14:39:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B13F37B401; Fri, 14 Feb 2003 14:38:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 591A843F3F; Fri, 14 Feb 2003 14:38:24 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1EMcObv085323; Fri, 14 Feb 2003 14:38:24 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1EMcOX1085322; Fri, 14 Feb 2003 14:38:24 -0800 (PST) Message-Id: <200302142238.h1EMcOX1085322@repoman.freebsd.org> From: Jacques Vidrine Date: Fri, 14 Feb 2003 14:38:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING src/crypto/kerberosIV/admin kdb_edit.c kdb_init.c src/crypto/kerberosIV/kadmin kadmin.c kpasswd_standalone.c ksrvutil.c ksrvutil_get.c random_password.c src/crypto/kerberosIV/server kerberos.c src/crypto/openssl CHANGES ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/14 14:38:23 PST Modified files: (Branch: RELENG_4) . UPDATING crypto/kerberosIV/admin kdb_edit.c kdb_init.c crypto/kerberosIV/kadmin kadmin.c kpasswd_standalone.c ksrvutil.c ksrvutil_get.c random_password.c crypto/kerberosIV/server kerberos.c crypto/openssl CHANGES Configure FAQ FREEBSD-Xlist INSTALL Makefile.org Makefile.ssl NEWS PROBLEMS README README.ENGINE config e_os.h e_os2.h openssl.spec crypto/openssl/apps CA.pl CA.pl.in Makefile.ssl app_rand.c apps.c apps.h asn1pars.c ca.c ciphers.c crl.c crl2p7.c dgst.c dh.c dhparam.c dsa.c dsaparam.c enc.c errstr.c gendh.c gendsa.c genrsa.c nseq.c openssl.c openssl.cnf passwd.c pkcs12.c pkcs7.c pkcs8.c progs.h progs.pl rand.c req.c rsa.c rsautl.c s_apps.h s_cb.c s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c spkac.c testdsa.h verify.c version.c winrand.c x509.c crypto/openssl/bugs stream.c crypto/openssl/crypto Makefile.ssl cpt_err.c cryptlib.c cryptlib.h crypto.h cversion.c ebcdic.c ex_data.c md32_common.h mem.c mem_dbg.c opensslconf.h opensslconf.h.in opensslv.h symhacks.h tmdiff.c uid.c crypto/openssl/crypto/asn1 Makefile.ssl a_bitstr.c a_bool.c a_bytes.c a_d2i_fp.c a_digest.c a_dup.c a_enum.c a_gentm.c a_i2d_fp.c a_int.c a_object.c a_octet.c a_print.c a_set.c a_sign.c a_strex.c a_strnid.c a_time.c a_type.c a_utctm.c a_utf8.c a_verify.c asn1.h asn1_err.c asn1_lib.c asn1_mac.h asn1_par.c asn_pack.c d2i_pr.c d2i_pu.c f_int.c i2d_pr.c i2d_pu.c n_pkey.c nsseq.c p5_pbe.c p5_pbev2.c p8_pkey.c t_crl.c t_pkey.c t_req.c t_spki.c t_x509.c t_x509a.c x_algor.c x_attrib.c x_crl.c x_exten.c x_info.c x_name.c x_pubkey.c x_req.c x_sig.c x_spki.c x_val.c x_x509.c x_x509a.c crypto/openssl/crypto/bf Makefile.ssl bf_opts.c bf_skey.c bfspeed.c bftest.c blowfish.h crypto/openssl/crypto/bio Makefile.ssl b_print.c b_sock.c bf_buff.c bf_nbio.c bf_null.c bio.h bio_cb.c bio_err.c bio_lib.c bss_acpt.c bss_bio.c bss_conn.c bss_fd.c bss_file.c bss_log.c bss_mem.c bss_sock.c crypto/openssl/crypto/bn Makefile.ssl bn.h bn_add.c bn_asm.c bn_ctx.c bn_div.c bn_err.c bn_exp.c bn_exp2.c bn_gcd.c bn_lcl.h bn_lib.c bn_mont.c bn_mpi.c bn_mul.c bn_prime.c bn_print.c bn_rand.c bn_recp.c bn_shift.c bn_sqr.c bn_word.c bnspeed.c bntest.c divtest.c expspeed.c exptest.c crypto/openssl/crypto/bn/asm README bn-586.pl crypto/openssl/crypto/buffer Makefile.ssl buf_err.c buffer.c buffer.h crypto/openssl/crypto/cast Makefile.ssl cast.h cast_lcl.h cast_spd.c castopts.c casttest.c crypto/openssl/crypto/comp Makefile.ssl c_rle.c c_zlib.c comp.h comp_err.c crypto/openssl/crypto/conf Makefile.ssl cnf_save.c conf.h conf_api.c conf_api.h conf_def.c conf_err.c conf_lib.c crypto/openssl/crypto/des Makefile.ssl cbc3_enc.c cbc_cksm.c cfb64ede.c cfb64enc.c cfb_enc.c des.c des.h des_enc.c des_locl.h des_opts.c des_ver.h destest.c ecb3_enc.c ecb_enc.c ede_cbcm_enc.c enc_read.c enc_writ.c fcrypt.c fcrypt_b.c ncbc_enc.c ofb64ede.c ofb64enc.c ofb_enc.c pcbc_enc.c qud_cksm.c rand_key.c read2pwd.c read_pwd.c rpc_enc.c rpw.c set_key.c speed.c spr.h str2key.c xcbc_enc.c crypto/openssl/crypto/des/asm crypt586.pl des-586.pl des686.pl desboth.pl crypto/openssl/crypto/dh Makefile.ssl dh.h dh_check.c dh_err.c dh_key.c dh_lib.c dhtest.c crypto/openssl/crypto/dsa Makefile.ssl dsa.h dsa_asn1.c dsa_err.c dsa_gen.c dsa_key.c dsa_lib.c dsa_ossl.c dsa_sign.c dsa_vrf.c dsatest.c crypto/openssl/crypto/dso Makefile.ssl README dso.h dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c crypto/openssl/crypto/err Makefile.ssl err.c err.h err_all.c err_prn.c openssl.ec crypto/openssl/crypto/evp Makefile.ssl bio_b64.c bio_enc.c bio_md.c bio_ok.c c_all.c c_allc.c c_alld.c digest.c e_bf.c e_cast.c e_des.c e_des3.c e_idea.c e_null.c e_rc2.c e_rc4.c e_rc5.c e_xcbc_d.c encode.c evp.h evp_enc.c evp_err.c evp_key.c evp_lib.c evp_locl.h evp_pbe.c evp_pkey.c m_dss.c m_dss1.c m_md2.c m_md4.c m_md5.c m_mdc2.c m_null.c m_ripemd.c m_sha.c m_sha1.c names.c p5_crpt.c p5_crpt2.c p_dec.c p_enc.c p_lib.c p_open.c p_seal.c p_sign.c p_verify.c crypto/openssl/crypto/hmac Makefile.ssl hmac.c hmac.h hmactest.c crypto/openssl/crypto/idea Makefile.ssl i_cbc.c i_cfb64.c i_ecb.c i_ofb64.c i_skey.c idea.h idea_lcl.h idea_spd.c ideatest.c version crypto/openssl/crypto/lhash Makefile.ssl lh_stats.c lhash.c lhash.h crypto/openssl/crypto/md2 Makefile.ssl md2.h md2_dgst.c md2_one.c md2test.c crypto/openssl/crypto/md4 Makefile.ssl md4.c md4.h md4_dgst.c md4_one.c md4test.c crypto/openssl/crypto/md5 Makefile.ssl md5.h md5_dgst.c md5_locl.h md5_one.c md5test.c crypto/openssl/crypto/md5/asm md5-sparcv9.S crypto/openssl/crypto/mdc2 Makefile.ssl mdc2.h mdc2_one.c mdc2dgst.c mdc2test.c crypto/openssl/crypto/objects Makefile.ssl o_names.c obj_dat.c obj_dat.h obj_dat.pl obj_err.c obj_lib.c obj_mac.h obj_mac.num objects.h objects.pl objects.txt crypto/openssl/crypto/pem Makefile.ssl pem.h pem_all.c pem_err.c pem_info.c pem_lib.c pem_seal.c pem_sign.c crypto/openssl/crypto/perlasm cbc.pl x86asm.pl x86ms.pl x86nasm.pl x86unix.pl crypto/openssl/crypto/pkcs12 Makefile.ssl p12_add.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c p12_init.c p12_key.c p12_kiss.c p12_mutl.c p12_npas.c p12_utl.c pk12err.c pkcs12.h crypto/openssl/crypto/pkcs7 Makefile.ssl bio_ber.c enc.c example.c pk7_doit.c pk7_lib.c pk7_smime.c pkcs7.h pkcs7err.c sign.c verify.c crypto/openssl/crypto/rand Makefile.ssl md_rand.c rand.h rand_egd.c rand_err.c rand_lcl.h rand_lib.c rand_win.c randfile.c randtest.c crypto/openssl/crypto/rc2 Makefile.ssl rc2.h rc2speed.c rc2test.c crypto/openssl/crypto/rc4 Makefile.ssl rc4.c rc4.h rc4speed.c rc4test.c crypto/openssl/crypto/rc5 Makefile.ssl rc5.h rc5_ecb.c rc5_locl.h rc5speed.c rc5test.c crypto/openssl/crypto/ripemd Makefile.ssl ripemd.h rmd_dgst.c rmd_one.c rmdtest.c crypto/openssl/crypto/rsa Makefile.ssl rsa.h rsa_chk.c rsa_eay.c rsa_err.c rsa_lib.c rsa_none.c rsa_null.c rsa_oaep.c rsa_pk1.c rsa_saos.c rsa_sign.c rsa_ssl.c rsa_test.c crypto/openssl/crypto/sha Makefile.ssl sha.h sha1_one.c sha1dgst.c sha1test.c sha_dgst.c sha_locl.h sha_one.c shatest.c crypto/openssl/crypto/stack Makefile.ssl safestack.h stack.c crypto/openssl/crypto/threads mttest.c th-lock.c crypto/openssl/crypto/txt_db Makefile.ssl txt_db.c txt_db.h crypto/openssl/crypto/x509 Makefile.ssl by_file.c x509.h x509_att.c x509_cmp.c x509_d2.c x509_err.c x509_ext.c x509_lu.c x509_obj.c x509_req.c x509_trs.c x509_txt.c x509_v3.c x509_vfy.c x509_vfy.h x509spki.c x_all.c crypto/openssl/crypto/x509v3 Makefile.ssl ext_dat.h v3_akey.c v3_alt.c v3_bcons.c v3_bitst.c v3_conf.c v3_cpols.c v3_crld.c v3_enum.c v3_extku.c v3_genn.c v3_info.c v3_int.c v3_lib.c v3_pku.c v3_prn.c v3_purp.c v3_skey.c v3_sxnet.c v3_utl.c v3conf.c v3err.c v3prin.c x509v3.h crypto/openssl/demos b64.c spkigen.c crypto/openssl/demos/bio saccept.c sconnect.c crypto/openssl/demos/maurice example1.c example3.c loadkeys.c crypto/openssl/demos/sign sign.c crypto/openssl/demos/ssl cli.cpp inetdsrv.cpp serv.cpp crypto/openssl/demos/state_machine state_machine.c crypto/openssl/doc c-indentation.el openssl.txt standards.txt crypto/openssl/doc/apps CA.pl.pod ca.pod ciphers.pod enc.pod openssl.pod passwd.pod pkcs12.pod pkcs7.pod rand.pod req.pod rsa.pod s_client.pod s_server.pod smime.pod speed.pod version.pod x509.pod crypto/openssl/doc/crypto BIO_f_md.pod BIO_s_accept.pod BIO_s_bio.pod BIO_s_connect.pod BIO_s_socket.pod BN_CTX_new.pod BN_add.pod BN_add_word.pod BN_bn2bin.pod BN_copy.pod BN_generate_prime.pod BN_mod_inverse.pod BN_mod_mul_montgomery.pod BN_mod_mul_reciprocal.pod BN_new.pod BN_rand.pod BN_zero.pod DH_generate_key.pod DH_generate_parameters.pod DH_new.pod DH_set_method.pod DSA_SIG_new.pod DSA_do_sign.pod DSA_dup_DH.pod DSA_generate_key.pod DSA_generate_parameters.pod DSA_new.pod DSA_set_method.pod DSA_sign.pod DSA_size.pod ERR_get_error.pod EVP_DigestInit.pod EVP_EncryptInit.pod EVP_SealInit.pod EVP_SignInit.pod EVP_VerifyInit.pod OPENSSL_VERSION_NUMBER.pod RAND_bytes.pod RAND_egd.pod RAND_set_rand_method.pod RSA_check_key.pod RSA_generate_key.pod RSA_new.pod RSA_print.pod RSA_private_encrypt.pod RSA_public_encrypt.pod RSA_set_method.pod RSA_sign.pod RSA_sign_ASN1_OCTET_STRING.pod RSA_size.pod bn.pod bn_internal.pod crypto.pod d2i_DHparams.pod d2i_RSAPublicKey.pod des.pod dh.pod dsa.pod evp.pod hmac.pod lhash.pod rand.pod rsa.pod threads.pod crypto/openssl/doc/ssl SSL_CTX_add_session.pod SSL_CTX_ctrl.pod SSL_CTX_set_cert_verify_callback.pod SSL_CTX_set_options.pod SSL_CTX_set_session_cache_mode.pod SSL_CTX_set_verify.pod SSL_alert_type_string.pod SSL_rstate_string.pod SSL_state_string.pod ssl.pod crypto/openssl/ssl Makefile.ssl bio_ssl.c s23_clnt.c s23_lib.c s23_meth.c s23_pkt.c s23_srvr.c s2_clnt.c s2_enc.c s2_lib.c s2_meth.c s2_pkt.c s2_srvr.c s3_both.c s3_clnt.c s3_enc.c s3_lib.c s3_meth.c s3_pkt.c s3_srvr.c ssl.h ssl2.h ssl3.h ssl_algs.c ssl_asn1.c ssl_cert.c ssl_ciph.c ssl_err.c ssl_err2.c ssl_lib.c ssl_locl.h ssl_rsa.c ssl_sess.c ssl_stat.c ssl_task.c ssl_txt.c ssltest.c t1_clnt.c t1_enc.c t1_meth.c t1_srvr.c tls1.h crypto/openssl/test Makefile.ssl methtest.c tcrl testca testgen testssl tpkcs7 tpkcs7d treq trsa tsid tx509 crypto/openssl/tools Makefile.ssl c_rehash c_rehash.in crypto/openssl/util clean-depend.pl domd libeay.num mk1mf.pl mkcerts.sh mkdef.pl mkerr.pl mkfiles.pl mklink.pl mkstack.pl pod2mantest point.sh selftest.pl ssleay.num crypto/openssl/util/pl BC-16.pl BC-32.pl Mingw32.pl VC-16.pl VC-32.pl crypto/telnet/libtelnet enc_des.c kerberos.c etc Makefile etc/defaults make.conf etc/mtree BSD.usr.dist gnu/usr.bin/man/manpath manpath.config secure/lib/libcrypto Makefile Makefile.inc opensslconf-alpha.h opensslconf-i386.h secure/lib/libssl Makefile secure/usr.bin/openssl Makefile share/man/man5 make.conf.5 sys/sys param.h Added files: (Branch: RELENG_4) crypto/openssl README.ASN1 crypto/openssl/apps engine.c ocsp.c crypto/openssl/certs RegTP-4R.pem RegTP-5R.pem RegTP-6R.pem crypto/openssl/crypto mem_clr.c o_time.c o_time.h ossl_typ.h crypto/openssl/crypto/aes Makefile.ssl README aes.h aes_cbc.c aes_cfb.c aes_core.c aes_ctr.c aes_ecb.c aes_locl.h aes_misc.c aes_ofb.c crypto/openssl/crypto/asn1 asn1t.h asn_moid.c tasn_dec.c tasn_enc.c tasn_fre.c tasn_new.c tasn_prn.c tasn_typ.c tasn_utl.c x_bignum.c x_long.c crypto/openssl/crypto/bn bn_kron.c bn_mod.c bn_sqrt.c crypto/openssl/crypto/bn/asm x86_64-gcc.c crypto/openssl/crypto/conf README conf_mall.c conf_mod.c conf_sap.c crypto/openssl/crypto/des FILES0 des_old.c des_old.h des_old2.c crypto/openssl/crypto/dh dh_asn1.c crypto/openssl/crypto/ec Makefile.ssl ec.h ec_cvt.c ec_err.c ec_lcl.h ec_lib.c ec_mult.c ecp_mont.c ecp_nist.c ecp_recp.c ecp_smpl.c ectest.c crypto/openssl/crypto/engine Makefile.ssl README eng_all.c eng_cnf.c eng_ctrl.c eng_dyn.c eng_err.c eng_fat.c eng_init.c eng_int.h eng_lib.c eng_list.c eng_openssl.c eng_pkey.c eng_table.c engine.h enginetest.c hw.ec hw_4758_cca.c hw_4758_cca_err.c hw_4758_cca_err.h hw_aep.c hw_aep_err.c hw_aep_err.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h hw_cryptodev.c hw_cswift.c hw_cswift_err.c hw_cswift_err.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h tb_cipher.c tb_dh.c tb_digest.c tb_dsa.c tb_rand.c tb_rsa.c crypto/openssl/crypto/engine/vendor_defns aep.h atalla.h cswift.h hw_4758_cca.h hw_ubsec.h hwcryptohook.h sureware.h crypto/openssl/crypto/evp e_aes.c evp_acnf.c evp_test.c evptests.txt openbsd_hw.c crypto/openssl/crypto/krb5 Makefile.ssl krb5_asn.c krb5_asn.h crypto/openssl/crypto/ocsp Makefile.ssl ocsp.h ocsp_asn.c ocsp_cl.c ocsp_err.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_prn.c ocsp_srv.c ocsp_vfy.c crypto/openssl/crypto/pem pem_oth.c pem_pk8.c pem_pkey.c pem_x509.c pem_xaux.c crypto/openssl/crypto/pkcs12 p12_asn.c p12_p8d.c p12_p8e.c crypto/openssl/crypto/pkcs7 pk7_asn1.c crypto/openssl/crypto/rand rand_os2.c rand_unix.c rand_vms.c crypto/openssl/crypto/rsa rsa_asn1.c crypto/openssl/crypto/ui Makefile.ssl ui.h ui_compat.c ui_compat.h ui_err.c ui_lib.c ui_locl.h ui_openssl.c ui_util.c crypto/openssl/crypto/x509 x509cset.c crypto/openssl/crypto/x509v3 v3_akeya.c v3_ocsp.c crypto/openssl/demos/asn1 README.ASN1 ocsp.c crypto/openssl/demos/easy_tls Makefile README cacerts.pem cert.pem easy-tls.c easy-tls.h test.c test.h crypto/openssl/demos/engines/cluster_labs Makefile cluster_labs.h hw_cluster_labs.c hw_cluster_labs.ec hw_cluster_labs_err.c hw_cluster_labs_err.h crypto/openssl/demos/engines/ibmca Makefile hw_ibmca.c hw_ibmca.ec hw_ibmca_err.c hw_ibmca_err.h ica_openssl_api.h crypto/openssl/demos/engines/rsaref Makefile README build.com rsaref.c rsaref.ec rsaref_err.c rsaref_err.h crypto/openssl/demos/engines/zencod Makefile hw_zencod.c hw_zencod.ec hw_zencod.h hw_zencod_err.c hw_zencod_err.h crypto/openssl/demos/tunala A-client.pem A-server.pem CA.pem INSTALL Makefile Makefile.am README autogunk.sh autoungunk.sh breakage.c buffer.c cb.c configure.in ip.c sm.c tunala.c tunala.h crypto/openssl/demos/x509 README mkcert.c mkreq.c crypto/openssl/doc/HOWTO certificates.txt crypto/openssl/doc/apps ocsp.pod crypto/openssl/doc/crypto ASN1_OBJECT_new.pod ASN1_STRING_length.pod ASN1_STRING_new.pod ASN1_STRING_print_ex.pod BN_swap.pod EVP_BytesToKey.pod EVP_PKEY_new.pod EVP_PKEY_set1_RSA.pod OBJ_nid2obj.pod PKCS12_create.pod PKCS12_parse.pod PKCS7_decrypt.pod PKCS7_encrypt.pod PKCS7_sign.pod PKCS7_verify.pod SMIME_read_PKCS7.pod SMIME_write_PKCS7.pod X509_NAME_ENTRY_get_object.pod X509_NAME_add_entry_by_txt.pod X509_NAME_get_index_by_NID.pod X509_NAME_print_ex.pod X509_new.pod d2i_ASN1_OBJECT.pod d2i_DSAPublicKey.pod d2i_PKCS8PrivateKey.pod d2i_X509.pod d2i_X509_ALGOR.pod d2i_X509_CRL.pod d2i_X509_NAME.pod d2i_X509_REQ.pod d2i_X509_SIG.pod engine.pod pem.pod ui.pod ui_compat.pod crypto/openssl/doc/ssl SSL_CTX_set_generate_session_id.pod SSL_CTX_set_max_cert_list.pod SSL_CTX_set_msg_callback.pod crypto/openssl/os2 OS2-EMX.cmd crypto/openssl/ssl kssl.c kssl.h kssl_lcl.h crypto/openssl/test dummytest.c crypto/openssl/util extract-names.pl crypto/openssl/util/pl OS2-EMX.pl VC-CE.pl secure/lib/libcrypto Makefile.asm Makefile.man secure/lib/libcrypto/i386 bf-586.s bf-686.s bn-586.s cast-586.s co-586.s crypt586.s des-586.s md5-586.s rc4-586.s rc5-586.s rmd-586.s sha1-586.s secure/lib/libcrypto/man ASN1_OBJECT_new.3 ASN1_STRING_length.3 ASN1_STRING_new.3 ASN1_STRING_print_ex.3 BIO_ctrl.3 BIO_f_base64.3 BIO_f_buffer.3 BIO_f_cipher.3 BIO_f_md.3 BIO_f_null.3 BIO_f_ssl.3 BIO_find_type.3 BIO_new.3 BIO_push.3 BIO_read.3 BIO_s_accept.3 BIO_s_bio.3 BIO_s_connect.3 BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3 BIO_s_null.3 BIO_s_socket.3 BIO_set_callback.3 BIO_should_retry.3 BN_CTX_new.3 BN_CTX_start.3 BN_add.3 BN_add_word.3 BN_bn2bin.3 BN_cmp.3 BN_copy.3 BN_generate_prime.3 BN_mod_inverse.3 BN_mod_mul_montgomery.3 BN_mod_mul_reciprocal.3 BN_new.3 BN_num_bytes.3 BN_rand.3 BN_set_bit.3 BN_swap.3 BN_zero.3 CRYPTO_set_ex_data.3 DH_generate_key.3 DH_generate_parameters.3 DH_get_ex_new_index.3 DH_new.3 DH_set_method.3 DH_size.3 DSA_SIG_new.3 DSA_do_sign.3 DSA_dup_DH.3 DSA_generate_key.3 DSA_generate_parameters.3 DSA_get_ex_new_index.3 DSA_new.3 DSA_set_method.3 DSA_sign.3 DSA_size.3 ERR_GET_LIB.3 ERR_clear_error.3 ERR_error_string.3 ERR_get_error.3 ERR_load_crypto_strings.3 ERR_load_strings.3 ERR_print_errors.3 ERR_put_error.3 ERR_remove_state.3 EVP_BytesToKey.3 EVP_DigestInit.3 EVP_EncryptInit.3 EVP_OpenInit.3 EVP_PKEY_new.3 EVP_PKEY_set1_RSA.3 EVP_SealInit.3 EVP_SignInit.3 EVP_VerifyInit.3 OBJ_nid2obj.3 OPENSSL_VERSION_NUMBER.3 OpenSSL_add_all_algorithms.3 PKCS12_create.3 PKCS12_parse.3 PKCS7_decrypt.3 PKCS7_encrypt.3 PKCS7_sign.3 PKCS7_verify.3 RAND_add.3 RAND_bytes.3 RAND_cleanup.3 RAND_egd.3 RAND_load_file.3 RAND_set_rand_method.3 RSA_blinding_on.3 RSA_check_key.3 RSA_generate_key.3 RSA_get_ex_new_index.3 RSA_new.3 RSA_padding_add_PKCS1_type_1.3 RSA_print.3 RSA_private_encrypt.3 RSA_public_encrypt.3 RSA_set_method.3 RSA_sign.3 RSA_sign_ASN1_OCTET_STRING.3 RSA_size.3 SMIME_read_PKCS7.3 SMIME_write_PKCS7.3 X509_NAME_ENTRY_get_object.3 X509_NAME_add_entry_by_txt.3 X509_NAME_get_index_by_NID.3 X509_NAME_print_ex.3 X509_new.3 bio.3 blowfish.3 bn.3 bn_internal.3 buffer.3 crypto.3 d2i_ASN1_OBJECT.3 d2i_DHparams.3 d2i_DSAPublicKey.3 d2i_PKCS8PrivateKey.3 d2i_RSAPublicKey.3 d2i_X509.3 d2i_X509_ALGOR.3 d2i_X509_CRL.3 d2i_X509_NAME.3 d2i_X509_REQ.3 d2i_X509_SIG.3 des.3 des_modes.3 dh.3 dsa.3 engine.3 err.3 evp.3 hmac.3 lh_stats.3 lhash.3 md5.3 mdc2.3 pem.3 rand.3 rc4.3 ripemd.3 rsa.3 sha.3 threads.3 ui.3 ui_compat.3 secure/lib/libssl Makefile.man secure/lib/libssl/man SSL_CIPHER_get_name.3 SSL_COMP_add_compression_method.3 SSL_CTX_add_extra_chain_cert.3 SSL_CTX_add_session.3 SSL_CTX_ctrl.3 SSL_CTX_flush_sessions.3 SSL_CTX_free.3 SSL_CTX_get_ex_new_index.3 SSL_CTX_get_verify_mode.3 SSL_CTX_load_verify_locations.3 SSL_CTX_new.3 SSL_CTX_sess_number.3 SSL_CTX_sess_set_cache_size.3 SSL_CTX_sess_set_get_cb.3 SSL_CTX_sessions.3 SSL_CTX_set_cert_store.3 SSL_CTX_set_cert_verify_callback.3 SSL_CTX_set_cipher_list.3 SSL_CTX_set_client_CA_list.3 SSL_CTX_set_client_cert_cb.3 SSL_CTX_set_default_passwd_cb.3 SSL_CTX_set_generate_session_id.3 SSL_CTX_set_info_callback.3 SSL_CTX_set_max_cert_list.3 SSL_CTX_set_mode.3 SSL_CTX_set_msg_callback.3 SSL_CTX_set_options.3 SSL_CTX_set_quiet_shutdown.3 SSL_CTX_set_session_cache_mode.3 SSL_CTX_set_session_id_context.3 SSL_CTX_set_ssl_version.3 SSL_CTX_set_timeout.3 SSL_CTX_set_tmp_dh_callback.3 SSL_CTX_set_tmp_rsa_callback.3 SSL_CTX_set_verify.3 SSL_CTX_use_certificate.3 SSL_SESSION_free.3 SSL_SESSION_get_ex_new_index.3 SSL_SESSION_get_time.3 SSL_accept.3 SSL_alert_type_string.3 SSL_clear.3 SSL_connect.3 SSL_do_handshake.3 SSL_free.3 SSL_get_SSL_CTX.3 SSL_get_ciphers.3 SSL_get_client_CA_list.3 SSL_get_current_cipher.3 SSL_get_default_timeout.3 SSL_get_error.3 SSL_get_ex_data_X509_STORE_CTX_idx.3 SSL_get_ex_new_index.3 SSL_get_fd.3 SSL_get_peer_cert_chain.3 SSL_get_peer_certificate.3 SSL_get_rbio.3 SSL_get_session.3 SSL_get_verify_result.3 SSL_get_version.3 SSL_library_init.3 SSL_load_client_CA_file.3 SSL_new.3 SSL_pending.3 SSL_read.3 SSL_rstate_string.3 SSL_session_reused.3 SSL_set_bio.3 SSL_set_connect_state.3 SSL_set_fd.3 SSL_set_session.3 SSL_set_shutdown.3 SSL_set_verify_result.3 SSL_shutdown.3 SSL_state_string.3 SSL_want.3 SSL_write.3 d2i_SSL_SESSION.3 ssl.3 secure/usr.bin/openssl Makefile.man secure/usr.bin/openssl/man CA.pl.1 asn1parse.1 ca.1 ciphers.1 config.1 crl.1 crl2pkcs7.1 dgst.1 dhparam.1 dsa.1 dsaparam.1 enc.1 gendsa.1 genrsa.1 nseq.1 ocsp.1 openssl.1 passwd.1 pkcs12.1 pkcs7.1 pkcs8.1 rand.1 req.1 rsa.1 rsautl.1 s_client.1 s_server.1 sess_id.1 smime.1 speed.1 spkac.1 verify.1 version.1 x509.1 Removed files: (Branch: RELENG_4) crypto/openssl/crypto/asn1 a_bmp.c a_null.c a_vis.c d2i_dhp.c d2i_dsap.c d2i_r_pr.c d2i_r_pu.c d2i_s_pr.c d2i_s_pu.c i2d_dhp.c i2d_dsap.c i2d_r_pr.c i2d_r_pu.c i2d_s_pr.c i2d_s_pu.c p7_dgst.c p7_enc.c p7_enc_c.c p7_evp.c p7_i_s.c p7_lib.c p7_recip.c p7_s_e.c p7_signd.c p7_signi.c crypto/openssl/crypto/bn test.c crypto/openssl/crypto/des FILES crypto/openssl/crypto/pkcs12 p12_bags.c p12_lib.c p12_mac.c p12_sbag.c crypto/openssl/doc/crypto BIO_new_bio_pair.pod crypto/openssl/perl MANIFEST Makefile.PL OpenSSL.pm OpenSSL.xs README.1ST openssl.h openssl_bio.xs openssl_bn.xs openssl_cipher.xs openssl_digest.xs openssl_err.xs openssl_ssl.xs openssl_x509.xs typemap crypto/openssl/perl/t 01-use.t 02-version.t 03-bio.t secure/lib/libcrypto des_crypt.3 Log: MFC OpenSSL 0.9.7 Revision Changes Path 1.73.2.80 +4 -0 src/UPDATING 1.1.1.3.2.1 +2 -4 src/crypto/kerberosIV/admin/kdb_edit.c 1.1.1.3.2.1 +2 -4 src/crypto/kerberosIV/admin/kdb_init.c 1.1.1.3.2.1 +2 -2 src/crypto/kerberosIV/kadmin/kadmin.c 1.1.8.3 +2 -2 src/crypto/kerberosIV/kadmin/kpasswd_standalone.c 1.1.1.3.2.1 +2 -12 src/crypto/kerberosIV/kadmin/ksrvutil.c 1.1.1.3.2.1 +3 -9 src/crypto/kerberosIV/kadmin/ksrvutil_get.c 1.1.1.2.2.1 +3 -2 src/crypto/kerberosIV/kadmin/random_password.c 1.2.2.3 +3 -4 src/crypto/kerberosIV/server/kerberos.c 1.1.1.1.2.5 +1892 -3 src/crypto/openssl/CHANGES 1.1.1.1.2.5 +516 -218 src/crypto/openssl/Configure 1.1.1.1.2.6 +89 -1 src/crypto/openssl/FAQ 1.1.2.4 +0 -0 src/crypto/openssl/FREEBSD-Xlist 1.1.1.1.2.4 +28 -5 src/crypto/openssl/INSTALL 1.1.1.1.2.6 +163 -61 src/crypto/openssl/Makefile.org 1.1.1.1.2.6 +169 -67 src/crypto/openssl/Makefile.ssl 1.1.1.1.2.6 +60 -0 src/crypto/openssl/NEWS 1.1.1.1.2.3 +31 -1 src/crypto/openssl/PROBLEMS 1.1.1.1.2.6 +2 -2 src/crypto/openssl/README 1.1.1.1.2.1 +187 -0 src/crypto/openssl/README.ASN1 (new) 1.1.1.1.2.3 +267 -41 src/crypto/openssl/README.ENGINE 1.1.1.1.2.5 +8 -3 src/crypto/openssl/apps/CA.pl 1.1.1.1.2.3 +8 -3 src/crypto/openssl/apps/CA.pl.in 1.1.1.1.2.5 +744 -532 src/crypto/openssl/apps/Makefile.ssl 1.1.1.1.2.3 +12 -9 src/crypto/openssl/apps/app_rand.c 1.1.1.1.2.4 +696 -60 src/crypto/openssl/apps/apps.c 1.1.1.1.2.3 +131 -19 src/crypto/openssl/apps/apps.h 1.1.1.1.2.4 +6 -2 src/crypto/openssl/apps/asn1pars.c 1.1.1.1.2.4 +1390 -309 src/crypto/openssl/apps/ca.c 1.1.1.1.2.3 +12 -11 src/crypto/openssl/apps/ciphers.c 1.1.1.1.2.3 +22 -9 src/crypto/openssl/apps/crl.c 1.1.1.1.2.3 +5 -3 src/crypto/openssl/apps/crl2p7.c 1.1.1.1.2.4 +81 -36 src/crypto/openssl/apps/dgst.c 1.1.1.1.2.3 +18 -4 src/crypto/openssl/apps/dh.c 1.1.1.1.2.3 +25 -12 src/crypto/openssl/apps/dhparam.c 1.1.1.1.2.3 +26 -5 src/crypto/openssl/apps/dsa.c 1.1.1.1.2.5 +18 -3 src/crypto/openssl/apps/dsaparam.c 1.1.1.1.2.4 +64 -82 src/crypto/openssl/apps/enc.c 1.1.1.1.2.1 +520 -0 src/crypto/openssl/apps/engine.c (new) 1.1.1.1.2.3 +3 -2 src/crypto/openssl/apps/errstr.c 1.1.1.1.2.3 +20 -6 src/crypto/openssl/apps/gendh.c 1.1.1.1.2.3 +34 -8 src/crypto/openssl/apps/gendsa.c 1.1.1.1.2.3 +44 -10 src/crypto/openssl/apps/genrsa.c 1.1.1.1.2.3 +4 -4 src/crypto/openssl/apps/nseq.c 1.1.1.1.2.1 +1228 -0 src/crypto/openssl/apps/ocsp.c (new) 1.1.1.1.2.4 +184 -37 src/crypto/openssl/apps/openssl.c 1.1.1.1.2.6 +12 -2 src/crypto/openssl/apps/openssl.cnf 1.1.1.1.2.4 +50 -43 src/crypto/openssl/apps/passwd.c 1.1.1.1.2.4 +72 -41 src/crypto/openssl/apps/pkcs12.c 1.1.1.1.2.4 +15 -3 src/crypto/openssl/apps/pkcs7.c 1.1.1.1.2.3 +28 -18 src/crypto/openssl/apps/pkcs8.c 1.1.1.1.2.3 +95 -59 src/crypto/openssl/apps/progs.h 1.1.1.1.2.3 +17 -13 src/crypto/openssl/apps/progs.pl 1.1.1.1.2.3 +74 -5 src/crypto/openssl/apps/rand.c 1.1.1.1.2.5 +425 -175 src/crypto/openssl/apps/req.c 1.1.1.1.2.3 +51 -71 src/crypto/openssl/apps/rsa.c 1.1.1.1.2.3 +24 -6 src/crypto/openssl/apps/rsautl.c 1.1.1.1.2.2 +58 -9 src/crypto/openssl/apps/s_apps.h 1.1.1.1.2.2 +314 -3 src/crypto/openssl/apps/s_cb.c 1.1.1.1.2.5 +172 -30 src/crypto/openssl/apps/s_client.c 1.1.1.1.2.4 +233 -53 src/crypto/openssl/apps/s_server.c 1.1.1.1.2.3 +42 -29 src/crypto/openssl/apps/s_socket.c 1.1.1.1.2.3 +45 -31 src/crypto/openssl/apps/s_time.c 1.1.1.1.2.3 +4 -3 src/crypto/openssl/apps/sess_id.c 1.1.1.1.2.4 +76 -49 src/crypto/openssl/apps/smime.c 1.3.2.5 +809 -318 src/crypto/openssl/apps/speed.c 1.1.1.1.2.3 +27 -20 src/crypto/openssl/apps/spkac.c 1.1.1.1.2.2 +69 -3 src/crypto/openssl/apps/testdsa.h 1.1.1.1.2.3 +39 -38 src/crypto/openssl/apps/verify.c 1.1.1.1.2.2 +81 -9 src/crypto/openssl/apps/version.c 1.1.1.1.2.2 +0 -1 src/crypto/openssl/apps/winrand.c 1.1.1.1.2.5 +141 -67 src/crypto/openssl/apps/x509.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/bugs/stream.c 1.1.1.1.2.1 +19 -0 src/crypto/openssl/certs/RegTP-4R.pem (new) 1.1.1.1.2.1 +19 -0 src/crypto/openssl/certs/RegTP-5R.pem (new) 1.1.1.1.2.1 +19 -0 src/crypto/openssl/certs/RegTP-6R.pem (new) 1.1.1.1.2.6 +181 -52 src/crypto/openssl/config 1.1.1.1.2.5 +79 -64 src/crypto/openssl/crypto/Makefile.ssl 1.1.1.1.2.1 +103 -0 src/crypto/openssl/crypto/aes/Makefile.ssl (new) 1.1.1.1.2.1 +3 -0 src/crypto/openssl/crypto/aes/README (new) 1.1.1.1.2.1 +112 -0 src/crypto/openssl/crypto/aes/aes.h (new) 1.1.1.1.2.1 +111 -0 src/crypto/openssl/crypto/aes/aes_cbc.c (new) 1.1.1.1.2.1 +157 -0 src/crypto/openssl/crypto/aes/aes_cfb.c (new) 1.1.1.1.2.1 +1257 -0 src/crypto/openssl/crypto/aes/aes_core.c (new) 1.1.1.1.2.1 +128 -0 src/crypto/openssl/crypto/aes/aes_ctr.c (new) 1.1.1.1.2.1 +73 -0 src/crypto/openssl/crypto/aes/aes_ecb.c (new) 1.1.1.1.2.1 +85 -0 src/crypto/openssl/crypto/aes/aes_locl.h (new) 1.1.1.1.2.1 +64 -0 src/crypto/openssl/crypto/aes/aes_misc.c (new) 1.1.1.1.2.1 +142 -0 src/crypto/openssl/crypto/aes/aes_ofb.c (new) 1.1.1.1.2.5 +782 -975 src/crypto/openssl/crypto/asn1/Makefile.ssl 1.1.1.1.2.4 +9 -53 src/crypto/openssl/crypto/asn1/a_bitstr.c 1.1.1.1.2.2 +0 -89 src/crypto/openssl/crypto/asn1/a_bmp.c (dead) 1.1.1.1.2.1 +3 -1 src/crypto/openssl/crypto/asn1/a_bool.c 1.1.1.1.2.3 +3 -14 src/crypto/openssl/crypto/asn1/a_bytes.c 1.1.1.1.2.1 +80 -13 src/crypto/openssl/crypto/asn1/a_d2i_fp.c 1.1.1.1.2.3 +20 -4 src/crypto/openssl/crypto/asn1/a_digest.c 1.1.1.1.2.3 +26 -2 src/crypto/openssl/crypto/asn1/a_dup.c 1.1.1.1.2.4 +3 -58 src/crypto/openssl/crypto/asn1/a_enum.c 1.1.1.1.2.4 +22 -13 src/crypto/openssl/crypto/asn1/a_gentm.c 1.1.1.1.2.3 +52 -2 src/crypto/openssl/crypto/asn1/a_i2d_fp.c 1.1.1.1.2.4 +9 -57 src/crypto/openssl/crypto/asn1/a_int.c 1.1.1.1.2.2 +0 -119 src/crypto/openssl/crypto/asn1/a_null.c (dead) 1.1.1.1.2.3 +3 -3 src/crypto/openssl/crypto/asn1/a_object.c 1.1.1.1.2.2 +0 -24 src/crypto/openssl/crypto/asn1/a_octet.c 1.1.1.1.2.2 +0 -70 src/crypto/openssl/crypto/asn1/a_print.c 1.1.1.1.2.3 +3 -0 src/crypto/openssl/crypto/asn1/a_set.c 1.1.1.1.2.4 +90 -4 src/crypto/openssl/crypto/asn1/a_sign.c 1.1.1.1.2.2 +45 -16 src/crypto/openssl/crypto/asn1/a_strex.c 1.1.1.1.2.5 +4 -2 src/crypto/openssl/crypto/asn1/a_strnid.c 1.1.1.1.2.4 +55 -24 src/crypto/openssl/crypto/asn1/a_time.c 1.1.1.1.2.3 +3 -274 src/crypto/openssl/crypto/asn1/a_type.c 1.1.1.1.2.4 +8 -63 src/crypto/openssl/crypto/asn1/a_utctm.c 1.1.1.1.2.3 +0 -27 src/crypto/openssl/crypto/asn1/a_utf8.c 1.1.1.1.2.3 +58 -2 src/crypto/openssl/crypto/asn1/a_verify.c 1.1.1.1.2.2 +0 -89 src/crypto/openssl/crypto/asn1/a_vis.c (dead) 1.1.1.1.2.4 +360 -406 src/crypto/openssl/crypto/asn1/asn1.h 1.1.1.1.2.2 +47 -159 src/crypto/openssl/crypto/asn1/asn1_err.c 1.1.1.1.2.7 +1 -1 src/crypto/openssl/crypto/asn1/asn1_lib.c 1.1.1.1.2.4 +6 -29 src/crypto/openssl/crypto/asn1/asn1_mac.h 1.1.1.1.2.3 +1 -6 src/crypto/openssl/crypto/asn1/asn1_par.c 1.1.1.1.2.1 +846 -0 src/crypto/openssl/crypto/asn1/asn1t.h (new) 1.1.1.1.2.1 +95 -0 src/crypto/openssl/crypto/asn1/asn_moid.c (new) 1.1.1.1.2.2 +47 -1 src/crypto/openssl/crypto/asn1/asn_pack.c 1.1.1.1.2.3 +0 -102 src/crypto/openssl/crypto/asn1/d2i_dhp.c (dead) 1.1.1.1.2.4 +0 -99 src/crypto/openssl/crypto/asn1/d2i_dsap.c (dead) 1.1.1.1.2.2 +12 -4 src/crypto/openssl/crypto/asn1/d2i_pr.c 1.1.1.1.2.1 +12 -4 src/crypto/openssl/crypto/asn1/d2i_pu.c 1.1.1.1.2.3 +0 -129 src/crypto/openssl/crypto/asn1/d2i_r_pr.c (dead) 1.1.1.1.2.3 +0 -103 src/crypto/openssl/crypto/asn1/d2i_r_pu.c (dead) 1.1.1.1.2.3 +0 -106 src/crypto/openssl/crypto/asn1/d2i_s_pr.c (dead) 1.1.1.1.2.3 +0 -121 src/crypto/openssl/crypto/asn1/d2i_s_pu.c (dead) 1.1.1.1.2.3 +8 -3 src/crypto/openssl/crypto/asn1/f_int.c 1.1.1.1.2.3 +0 -128 src/crypto/openssl/crypto/asn1/i2d_dhp.c (dead) 1.1.1.1.2.3 +0 -117 src/crypto/openssl/crypto/asn1/i2d_dsap.c (dead) 1.1.1.1.2.1 +8 -2 src/crypto/openssl/crypto/asn1/i2d_pr.c 1.1.1.1.2.1 +8 -2 src/crypto/openssl/crypto/asn1/i2d_pu.c 1.1.1.1.2.3 +0 -133 src/crypto/openssl/crypto/asn1/i2d_r_pr.c (dead) 1.1.1.1.2.3 +0 -118 src/crypto/openssl/crypto/asn1/i2d_r_pu.c (dead) 1.1.1.1.2.3 +0 -123 src/crypto/openssl/crypto/asn1/i2d_s_pr.c (dead) 1.1.1.1.2.3 +0 -129 src/crypto/openssl/crypto/asn1/i2d_s_pu.c (dead) 1.1.1.1.2.3 +132 -187 src/crypto/openssl/crypto/asn1/n_pkey.c 1.1.1.1.2.2 +14 -50 src/crypto/openssl/crypto/asn1/nsseq.c 1.1.1.1.2.3 +6 -41 src/crypto/openssl/crypto/asn1/p5_pbe.c 1.1.1.1.2.3 +18 -97 src/crypto/openssl/crypto/asn1/p5_pbev2.c 1.1.1.1.2.3 +0 -121 src/crypto/openssl/crypto/asn1/p7_dgst.c (dead) 1.1.1.1.2.3 +0 -111 src/crypto/openssl/crypto/asn1/p7_enc.c (dead) 1.1.1.1.2.3 +0 -120 src/crypto/openssl/crypto/asn1/p7_enc_c.c (dead) 1.1.1.1.2.3 +0 -119 src/crypto/openssl/crypto/asn1/p7_evp.c (dead) 1.1.1.1.2.3 +0 -111 src/crypto/openssl/crypto/asn1/p7_i_s.c (dead) 1.1.1.1.2.4 +0 -393 src/crypto/openssl/crypto/asn1/p7_lib.c (dead) 1.1.1.1.2.3 +0 -125 src/crypto/openssl/crypto/asn1/p7_recip.c (dead) 1.1.1.1.2.3 +0 -145 src/crypto/openssl/crypto/asn1/p7_s_e.c (dead) 1.1.1.1.2.3 +0 -135 src/crypto/openssl/crypto/asn1/p7_signd.c (dead) 1.1.1.1.2.3 +0 -150 src/crypto/openssl/crypto/asn1/p7_signi.c (dead) 1.1.1.1.2.3 +18 -61 src/crypto/openssl/crypto/asn1/p8_pkey.c 1.1.1.1.2.2 +12 -44 src/crypto/openssl/crypto/asn1/t_crl.c 1.1.1.1.2.4 +32 -46 src/crypto/openssl/crypto/asn1/t_pkey.c 1.1.1.1.2.2 +156 -134 src/crypto/openssl/crypto/asn1/t_req.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/asn1/t_spki.c 1.1.1.1.2.4 +199 -105 src/crypto/openssl/crypto/asn1/t_x509.c 1.1.1.1.2.3 +3 -3 src/crypto/openssl/crypto/asn1/t_x509a.c 1.1.1.1.2.1 +958 -0 src/crypto/openssl/crypto/asn1/tasn_dec.c (new) 1.1.1.1.2.1 +497 -0 src/crypto/openssl/crypto/asn1/tasn_enc.c (new) 1.1.1.1.2.1 +229 -0 src/crypto/openssl/crypto/asn1/tasn_fre.c (new) 1.1.1.1.2.1 +351 -0 src/crypto/openssl/crypto/asn1/tasn_new.c (new) 1.1.1.1.2.1 +198 -0 src/crypto/openssl/crypto/asn1/tasn_prn.c (new) 1.1.1.1.2.1 +133 -0 src/crypto/openssl/crypto/asn1/tasn_typ.c (new) 1.1.1.1.2.1 +253 -0 src/crypto/openssl/crypto/asn1/tasn_utl.c (new) 1.1.1.1.2.3 +61 -106 src/crypto/openssl/crypto/asn1/x_algor.c 1.1.1.1.2.3 +34 -81 src/crypto/openssl/crypto/asn1/x_attrib.c 1.1.1.1.2.1 +137 -0 src/crypto/openssl/crypto/asn1/x_bignum.c (new) 1.1.1.1.2.4 +72 -258 src/crypto/openssl/crypto/asn1/x_crl.c 1.1.1.1.2.3 +62 -130 src/crypto/openssl/crypto/asn1/x_exten.c 1.1.1.1.2.3 +1 -1 src/crypto/openssl/crypto/asn1/x_info.c 1.1.1.1.2.1 +163 -0 src/crypto/openssl/crypto/asn1/x_long.c (new) 1.1.1.1.2.4 +180 -189 src/crypto/openssl/crypto/asn1/x_name.c 1.1.1.1.2.4 +28 -60 src/crypto/openssl/crypto/asn1/x_pubkey.c 1.1.1.1.2.3 +46 -191 src/crypto/openssl/crypto/asn1/x_req.c 1.1.1.1.2.3 +6 -47 src/crypto/openssl/crypto/asn1/x_sig.c 1.1.1.1.2.3 +14 -99 src/crypto/openssl/crypto/asn1/x_spki.c 1.1.1.1.2.3 +6 -46 src/crypto/openssl/crypto/asn1/x_val.c 1.1.1.1.2.3 +64 -91 src/crypto/openssl/crypto/asn1/x_x509.c 1.1.1.1.2.3 +9 -66 src/crypto/openssl/crypto/asn1/x_x509a.c 1.1.1.1.2.4 +15 -14 src/crypto/openssl/crypto/bf/Makefile.ssl 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/bf/bf_opts.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/bf/bf_skey.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/bf/bfspeed.c 1.1.1.1.2.3 +7 -5 src/crypto/openssl/crypto/bf/bftest.c 1.1.1.1.2.2 +5 -3 src/crypto/openssl/crypto/bf/blowfish.h 1.1.1.1.2.5 +74 -102 src/crypto/openssl/crypto/bio/Makefile.ssl 1.1.1.1.2.5 +7 -7 src/crypto/openssl/crypto/bio/b_print.c 1.1.1.1.2.5 +28 -10 src/crypto/openssl/crypto/bio/b_sock.c 1.1.1.1.2.4 +1 -2 src/crypto/openssl/crypto/bio/bf_buff.c 1.1.1.1.2.4 +0 -1 src/crypto/openssl/crypto/bio/bf_nbio.c 1.1.1.1.2.3 +0 -1 src/crypto/openssl/crypto/bio/bf_null.c 1.1.1.1.2.4 +19 -10 src/crypto/openssl/crypto/bio/bio.h 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/bio/bio_cb.c 1.1.1.1.2.3 +4 -2 src/crypto/openssl/crypto/bio/bio_err.c 1.1.1.1.2.3 +22 -9 src/crypto/openssl/crypto/bio/bio_lib.c 1.1.1.1.2.3 +15 -3 src/crypto/openssl/crypto/bio/bss_acpt.c 1.1.1.1.2.4 +5 -6 src/crypto/openssl/crypto/bio/bss_bio.c 1.1.1.1.2.3 +10 -9 src/crypto/openssl/crypto/bio/bss_conn.c 1.1.1.1.2.1 +223 -3 src/crypto/openssl/crypto/bio/bss_fd.c 1.1.1.1.2.3 +19 -5 src/crypto/openssl/crypto/bio/bss_file.c 1.1.1.1.2.4 +17 -11 src/crypto/openssl/crypto/bio/bss_log.c 1.1.1.1.2.3 +6 -2 src/crypto/openssl/crypto/bio/bss_mem.c 1.1.1.1.2.3 +9 -128 src/crypto/openssl/crypto/bio/bss_sock.c 1.1.1.1.2.5 +153 -127 src/crypto/openssl/crypto/bn/Makefile.ssl 1.1.1.1.2.3 +4 -0 src/crypto/openssl/crypto/bn/asm/README 1.1.1.1.2.1 +211 -2 src/crypto/openssl/crypto/bn/asm/bn-586.pl 1.1.1.1.2.1 +575 -0 src/crypto/openssl/crypto/bn/asm/x86_64-gcc.c (new) 1.1.1.1.2.5 +99 -74 src/crypto/openssl/crypto/bn/bn.h 1.1.1.1.2.2 +7 -5 src/crypto/openssl/crypto/bn/bn_add.c 1.1.1.1.2.3 +11 -11 src/crypto/openssl/crypto/bn/bn_asm.c 1.1.1.1.2.3 +12 -1 src/crypto/openssl/crypto/bn/bn_ctx.c 1.1.1.1.2.5 +49 -43 src/crypto/openssl/crypto/bn/bn_div.c 1.1.1.1.2.4 +9 -2 src/crypto/openssl/crypto/bn/bn_err.c 1.1.1.1.2.3 +99 -253 src/crypto/openssl/crypto/bn/bn_exp.c 1.1.1.1.2.3 +20 -7 src/crypto/openssl/crypto/bn/bn_exp2.c 1.1.1.1.2.3 +311 -31 src/crypto/openssl/crypto/bn/bn_gcd.c 1.1.1.1.2.1 +182 -0 src/crypto/openssl/crypto/bn/bn_kron.c (new) 1.1.1.1.2.3 +50 -11 src/crypto/openssl/crypto/bn/bn_lcl.h 1.1.1.1.2.4 +204 -142 src/crypto/openssl/crypto/bn/bn_lib.c 1.1.1.1.2.1 +296 -0 src/crypto/openssl/crypto/bn/bn_mod.c (new) 1.1.1.1.2.4 +29 -34 src/crypto/openssl/crypto/bn/bn_mont.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/bn/bn_mpi.c 1.1.1.1.2.4 +11 -3 src/crypto/openssl/crypto/bn/bn_mul.c 1.1.1.1.2.3 +10 -9 src/crypto/openssl/crypto/bn/bn_prime.c 1.1.1.1.2.3 +3 -3 src/crypto/openssl/crypto/bn/bn_print.c 1.1.1.1.2.5 +2 -1 src/crypto/openssl/crypto/bn/bn_rand.c 1.1.1.1.2.3 +29 -19 src/crypto/openssl/crypto/bn/bn_recp.c 1.1.1.1.2.3 +4 -4 src/crypto/openssl/crypto/bn/bn_shift.c 1.1.1.1.2.4 +8 -8 src/crypto/openssl/crypto/bn/bn_sqr.c 1.1.1.1.2.1 +387 -0 src/crypto/openssl/crypto/bn/bn_sqrt.c (new) 1.1.1.1.2.3 +4 -1 src/crypto/openssl/crypto/bn/bn_word.c 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/bn/bnspeed.c 1.1.1.1.2.3 +221 -52 src/crypto/openssl/crypto/bn/bntest.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/bn/divtest.c 1.1.1.1.2.2 +157 -19 src/crypto/openssl/crypto/bn/expspeed.c 1.1.1.1.2.2 +12 -9 src/crypto/openssl/crypto/bn/exptest.c 1.1.1.1.2.1 +0 -241 src/crypto/openssl/crypto/bn/test.c (dead) 1.1.1.1.2.4 +12 -11 src/crypto/openssl/crypto/buffer/Makefile.ssl 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/buffer/buf_err.c 1.1.1.1.2.2 +58 -0 src/crypto/openssl/crypto/buffer/buffer.c 1.1.1.1.2.2 +9 -0 src/crypto/openssl/crypto/buffer/buffer.h 1.1.1.1.2.3 +14 -14 src/crypto/openssl/crypto/cast/Makefile.ssl 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/cast/cast.h 1.1.1.1.2.2 +9 -3 src/crypto/openssl/crypto/cast/cast_lcl.h 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/cast/cast_spd.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/cast/castopts.c 1.1.1.1.2.2 +4 -2 src/crypto/openssl/crypto/cast/casttest.c 1.1.1.1.2.4 +27 -20 src/crypto/openssl/crypto/comp/Makefile.ssl 1.1.1.1.2.1 +1 -0 src/crypto/openssl/crypto/comp/c_rle.c 1.1.1.1.2.1 +134 -7 src/crypto/openssl/crypto/comp/c_zlib.c 1.1.1.1.2.4 +0 -2 src/crypto/openssl/crypto/comp/comp.h 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/comp/comp_err.c 1.1.1.1.2.4 +96 -19 src/crypto/openssl/crypto/conf/Makefile.ssl 1.1.1.1.2.1 +78 -0 src/crypto/openssl/crypto/conf/README (new) 1.1.1.1.2.1 +4 -3 src/crypto/openssl/crypto/conf/cnf_save.c 1.1.1.1.2.5 +90 -17 src/crypto/openssl/crypto/conf/conf.h 1.1.1.1.2.3 +34 -16 src/crypto/openssl/crypto/conf/conf_api.c 1.1.1.1.2.2 +7 -5 src/crypto/openssl/crypto/conf/conf_api.h 1.1.1.1.2.3 +58 -22 src/crypto/openssl/crypto/conf/conf_def.c 1.1.1.1.2.4 +16 -2 src/crypto/openssl/crypto/conf/conf_err.c 1.1.1.1.2.3 +84 -75 src/crypto/openssl/crypto/conf/conf_lib.c 1.1.1.1.2.1 +76 -0 src/crypto/openssl/crypto/conf/conf_mall.c (new) 1.1.1.1.2.1 +616 -0 src/crypto/openssl/crypto/conf/conf_mod.c (new) 1.1.1.1.2.1 +107 -0 src/crypto/openssl/crypto/conf/conf_sap.c (new) 1.1.1.1.2.3 +7 -2 src/crypto/openssl/crypto/cpt_err.c 1.1.1.1.2.5 +38 -17 src/crypto/openssl/crypto/cryptlib.c 1.1.1.1.2.4 +5 -5 src/crypto/openssl/crypto/cryptlib.h 1.1.1.1.2.5 +94 -36 src/crypto/openssl/crypto/crypto.h 1.1.1.1.2.1 +8 -0 src/crypto/openssl/crypto/cversion.c 1.1.1.1.2.1 +0 -96 src/crypto/openssl/crypto/des/FILES (dead) 1.1.1.1.2.1 +96 -0 src/crypto/openssl/crypto/des/FILES0 (new) 1.1.1.1.2.4 +204 -83 src/crypto/openssl/crypto/des/Makefile.ssl 1.1.1.1.2.1 +26 -23 src/crypto/openssl/crypto/des/asm/crypt586.pl 1.1.1.1.2.2 +32 -35 src/crypto/openssl/crypto/des/asm/des-586.pl 1.1.1.1.2.2 +10 -10 src/crypto/openssl/crypto/des/asm/des686.pl 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/des/asm/desboth.pl 1.1.1.1.2.2 +26 -26 src/crypto/openssl/crypto/des/cbc3_enc.c 1.1.1.1.2.2 +4 -4 src/crypto/openssl/crypto/des/cbc_cksm.c 1.1.1.1.2.1 +9 -8 src/crypto/openssl/crypto/des/cfb64ede.c 1.1.1.1.2.2 +5 -5 src/crypto/openssl/crypto/des/cfb64enc.c 1.1.1.1.2.2 +4 -4 src/crypto/openssl/crypto/des/cfb_enc.c 1.1.1.1.2.3 +72 -68 src/crypto/openssl/crypto/des/des.c 1.2.2.5 +131 -161 src/crypto/openssl/crypto/des/des.h 1.1.1.1.2.2 +27 -26 src/crypto/openssl/crypto/des/des_enc.c 1.1.1.1.2.2 +54 -38 src/crypto/openssl/crypto/des/des_locl.h 1.1.1.1.2.1 +271 -0 src/crypto/openssl/crypto/des/des_old.c (new) 1.1.1.1.2.1 +441 -0 src/crypto/openssl/crypto/des/des_old.h (new) 1.1.1.1.2.1 +82 -0 src/crypto/openssl/crypto/des/des_old2.c (new) 1.1.1.1.2.3 +106 -106 src/crypto/openssl/crypto/des/des_opts.c 1.1.1.1.2.1 +12 -2 src/crypto/openssl/crypto/des/des_ver.h 1.1.1.1.2.2 +60 -43 src/crypto/openssl/crypto/des/destest.c 1.1.1.1.2.1 +5 -4 src/crypto/openssl/crypto/des/ecb3_enc.c 1.1.1.1.2.2 +5 -6 src/crypto/openssl/crypto/des/ecb_enc.c 1.1.1.1.2.2 +12 -12 src/crypto/openssl/crypto/des/ede_cbcm_enc.c 1.1.1.1.2.3 +14 -14 src/crypto/openssl/crypto/des/enc_read.c 1.1.1.1.2.3 +8 -8 src/crypto/openssl/crypto/des/enc_writ.c 1.1.1.1.2.3 +11 -18 src/crypto/openssl/crypto/des/fcrypt.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/des/fcrypt_b.c 1.1.1.1.2.3 +10 -10 src/crypto/openssl/crypto/des/ncbc_enc.c 1.1.1.1.2.1 +11 -10 src/crypto/openssl/crypto/des/ofb64ede.c 1.1.1.1.2.2 +5 -5 src/crypto/openssl/crypto/des/ofb64enc.c 1.1.1.1.2.2 +4 -3 src/crypto/openssl/crypto/des/ofb_enc.c 1.1.1.1.2.2 +5 -4 src/crypto/openssl/crypto/des/pcbc_enc.c 1.1.1.1.2.3 +2 -2 src/crypto/openssl/crypto/des/qud_cksm.c 1.1.1.1.2.2 +4 -9 src/crypto/openssl/crypto/des/rand_key.c 1.1.1.1.2.1 +66 -11 src/crypto/openssl/crypto/des/read2pwd.c 1.1.1.1.2.4 +47 -37 src/crypto/openssl/crypto/des/read_pwd.c 1.1.1.1.2.2 +6 -6 src/crypto/openssl/crypto/des/rpc_enc.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/des/rpw.c 1.1.1.1.2.2 +24 -19 src/crypto/openssl/crypto/des/set_key.c 1.1.1.1.2.3 +27 -27 src/crypto/openssl/crypto/des/speed.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/des/spr.h 1.1.1.1.2.2 +36 -18 src/crypto/openssl/crypto/des/str2key.c 1.1.1.1.2.2 +10 -9 src/crypto/openssl/crypto/des/xcbc_enc.c 1.1.1.1.2.4 +53 -36 src/crypto/openssl/crypto/dh/Makefile.ssl 1.1.1.1.2.4 +26 -23 src/crypto/openssl/crypto/dh/dh.h 1.1.1.1.2.1 +87 -0 src/crypto/openssl/crypto/dh/dh_asn1.c (new) 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/dh/dh_check.c 1.1.1.1.2.3 +3 -3 src/crypto/openssl/crypto/dh/dh_err.c 1.1.1.1.2.5 +25 -19 src/crypto/openssl/crypto/dh/dh_key.c 1.1.1.1.2.5 +81 -30 src/crypto/openssl/crypto/dh/dh_lib.c 1.1.1.1.2.4 +17 -7 src/crypto/openssl/crypto/dh/dhtest.c 1.1.1.1.2.4 +86 -63 src/crypto/openssl/crypto/dsa/Makefile.ssl 1.1.1.1.2.4 +40 -33 src/crypto/openssl/crypto/dsa/dsa.h 1.1.1.1.2.4 +127 -84 src/crypto/openssl/crypto/dsa/dsa_asn1.c 1.1.1.1.2.3 +4 -3 src/crypto/openssl/crypto/dsa/dsa_err.c 1.1.1.1.2.2 +10 -8 src/crypto/openssl/crypto/dsa/dsa_gen.c 1.1.1.1.2.4 +1 -2 src/crypto/openssl/crypto/dsa/dsa_key.c 1.1.1.1.2.5 +86 -33 src/crypto/openssl/crypto/dsa/dsa_lib.c 1.1.1.1.2.5 +7 -1 src/crypto/openssl/crypto/dsa/dsa_ossl.c 1.1.1.1.2.2 +1 -0 src/crypto/openssl/crypto/dsa/dsa_sign.c 1.1.1.1.2.2 +2 -1 src/crypto/openssl/crypto/dsa/dsa_vrf.c 1.1.1.1.2.2 +22 -8 src/crypto/openssl/crypto/dsa/dsatest.c 1.1.1.1.2.3 +37 -36 src/crypto/openssl/crypto/dso/Makefile.ssl 1.1.1.1.2.2 +11 -13 src/crypto/openssl/crypto/dso/README 1.1.1.1.2.3 +119 -45 src/crypto/openssl/crypto/dso/dso.h 1.1.1.1.2.3 +73 -45 src/crypto/openssl/crypto/dso/dso_dl.c 1.1.1.1.2.3 +55 -42 src/crypto/openssl/crypto/dso/dso_dlfcn.c 1.1.1.1.2.2 +15 -8 src/crypto/openssl/crypto/dso/dso_err.c 1.1.1.1.2.2 +157 -24 src/crypto/openssl/crypto/dso/dso_lib.c 1.1.1.1.2.4 +2 -1 src/crypto/openssl/crypto/ebcdic.c 1.1.1.1.2.1 +128 -0 src/crypto/openssl/crypto/ec/Makefile.ssl (new) 1.1.1.1.2.1 +245 -0 src/crypto/openssl/crypto/ec/ec.h (new) 1.1.1.1.2.1 +80 -0 src/crypto/openssl/crypto/ec/ec_cvt.c (new) 1.1.1.1.2.1 +151 -0 src/crypto/openssl/crypto/ec/ec_err.c (new) 1.1.1.1.2.1 +277 -0 src/crypto/openssl/crypto/ec/ec_lcl.h (new) 1.1.1.1.2.1 +654 -0 src/crypto/openssl/crypto/ec/ec_lib.c (new) 1.1.1.1.2.1 +473 -0 src/crypto/openssl/crypto/ec/ec_mult.c (new) 1.1.1.1.2.1 +304 -0 src/crypto/openssl/crypto/ec/ecp_mont.c (new) 1.1.1.1.2.1 +134 -0 src/crypto/openssl/crypto/ec/ecp_nist.c (new) 1.1.1.1.2.1 +133 -0 src/crypto/openssl/crypto/ec/ecp_recp.c (new) 1.1.1.1.2.1 +1717 -0 src/crypto/openssl/crypto/ec/ecp_smpl.c (new) 1.1.1.1.2.1 +639 -0 src/crypto/openssl/crypto/ec/ectest.c (new) 1.1.1.1.2.1 +538 -0 src/crypto/openssl/crypto/engine/Makefile.ssl (new) 1.1.1.1.2.1 +211 -0 src/crypto/openssl/crypto/engine/README (new) 1.1.1.2.2.1 +113 -0 src/crypto/openssl/crypto/engine/eng_all.c (new) 1.1.1.1.2.1 +242 -0 src/crypto/openssl/crypto/engine/eng_cnf.c (new) 1.1.1.1.2.1 +387 -0 src/crypto/openssl/crypto/engine/eng_ctrl.c (new) 1.1.1.1.2.1 +460 -0 src/crypto/openssl/crypto/engine/eng_dyn.c (new) 1.1.1.1.2.1 +166 -0 src/crypto/openssl/crypto/engine/eng_err.c (new) 1.1.1.1.2.1 +147 -0 src/crypto/openssl/crypto/engine/eng_fat.c (new) 1.1.1.1.2.1 +157 -0 src/crypto/openssl/crypto/engine/eng_init.c (new) 1.1.1.1.2.1 +185 -0 src/crypto/openssl/crypto/engine/eng_int.h (new) 1.1.1.1.2.1 +321 -0 src/crypto/openssl/crypto/engine/eng_lib.c (new) 1.1.1.1.2.1 +394 -0 src/crypto/openssl/crypto/engine/eng_list.c (new) 1.1.1.1.2.1 +361 -0 src/crypto/openssl/crypto/engine/eng_openssl.c (new) 1.1.1.1.2.1 +157 -0 src/crypto/openssl/crypto/engine/eng_pkey.c (new) 1.1.1.1.2.1 +361 -0 src/crypto/openssl/crypto/engine/eng_table.c (new) 1.1.1.1.2.1 +716 -0 src/crypto/openssl/crypto/engine/engine.h (new) 1.1.1.1.2.1 +274 -0 src/crypto/openssl/crypto/engine/enginetest.c (new) 1.1.1.1.2.1 +8 -0 src/crypto/openssl/crypto/engine/hw.ec (new) 1.1.1.1.2.1 +969 -0 src/crypto/openssl/crypto/engine/hw_4758_cca.c (new) 1.1.1.1.2.1 +149 -0 src/crypto/openssl/crypto/engine/hw_4758_cca_err.c (new) 1.1.1.1.2.1 +93 -0 src/crypto/openssl/crypto/engine/hw_4758_cca_err.h (new) 1.1.1.1.2.1 +1119 -0 src/crypto/openssl/crypto/engine/hw_aep.c (new) 1.1.1.1.2.1 +157 -0 src/crypto/openssl/crypto/engine/hw_aep_err.c (new) 1.1.1.1.2.1 +101 -0 src/crypto/openssl/crypto/engine/hw_aep_err.h (new) 1.1.1.1.2.1 +594 -0 src/crypto/openssl/crypto/engine/hw_atalla.c (new) 1.1.1.1.2.1 +145 -0 src/crypto/openssl/crypto/engine/hw_atalla_err.c (new) 1.1.1.1.2.1 +89 -0 src/crypto/openssl/crypto/engine/hw_atalla_err.h (new) 1.1.1.2.2.1 +1132 -0 src/crypto/openssl/crypto/engine/hw_cryptodev.c (new) 1.1.1.1.2.1 +997 -0 src/crypto/openssl/crypto/engine/hw_cswift.c (new) 1.1.1.1.2.1 +149 -0 src/crypto/openssl/crypto/engine/hw_cswift_err.c (new) 1.1.1.1.2.1 +93 -0 src/crypto/openssl/crypto/engine/hw_cswift_err.h (new) 1.1.1.1.2.1 +1388 -0 src/crypto/openssl/crypto/engine/hw_ncipher.c (new) 1.1.1.1.2.1 +157 -0 src/crypto/openssl/crypto/engine/hw_ncipher_err.c (new) 1.1.1.1.2.1 +101 -0 src/crypto/openssl/crypto/engine/hw_ncipher_err.h (new) 1.1.1.1.2.1 +418 -0 src/crypto/openssl/crypto/engine/hw_nuron.c (new) 1.1.1.1.2.1 +142 -0 src/crypto/openssl/crypto/engine/hw_nuron_err.c (new) 1.1.1.1.2.1 +86 -0 src/crypto/openssl/crypto/engine/hw_nuron_err.h (new) 1.1.1.1.2.1 +1039 -0 src/crypto/openssl/crypto/engine/hw_sureware.c (new) 1.1.1.1.2.1 +150 -0 src/crypto/openssl/crypto/engine/hw_sureware_err.c (new) 1.1.1.1.2.1 +94 -0 src/crypto/openssl/crypto/engine/hw_sureware_err.h (new) 1.1.1.1.2.1 +1061 -0 src/crypto/openssl/crypto/engine/hw_ubsec.c (new) 1.1.1.1.2.1 +151 -0 src/crypto/openssl/crypto/engine/hw_ubsec_err.c (new) 1.1.1.1.2.1 +95 -0 src/crypto/openssl/crypto/engine/hw_ubsec_err.h (new) 1.1.1.1.2.1 +145 -0 src/crypto/openssl/crypto/engine/tb_cipher.c (new) 1.1.1.1.2.1 +120 -0 src/crypto/openssl/crypto/engine/tb_dh.c (new) 1.1.1.1.2.1 +145 -0 src/crypto/openssl/crypto/engine/tb_digest.c (new) 1.1.1.1.2.1 +120 -0 src/crypto/openssl/crypto/engine/tb_dsa.c (new) 1.1.1.1.2.1 +120 -0 src/crypto/openssl/crypto/engine/tb_rand.c (new) 1.1.1.1.2.1 +120 -0 src/crypto/openssl/crypto/engine/tb_rsa.c (new) 1.1.1.1.2.1 +178 -0 src/crypto/openssl/crypto/engine/vendor_defns/aep.h (new) 1.1.1.1.2.1 +48 -0 src/crypto/openssl/crypto/engine/vendor_defns/atalla.h (new) 1.1.1.1.2.1 +234 -0 src/crypto/openssl/crypto/engine/vendor_defns/cswift.h (new) 1.1.1.1.2.1 +149 -0 src/crypto/openssl/crypto/engine/vendor_defns/hw_4758_cca.h (new) 1.1.1.1.2.1 +100 -0 src/crypto/openssl/crypto/engine/vendor_defns/hw_ubsec.h (new) 1.1.1.1.2.1 +486 -0 src/crypto/openssl/crypto/engine/vendor_defns/hwcryptohook.h (new) 1.1.1.1.2.1 +239 -0 src/crypto/openssl/crypto/engine/vendor_defns/sureware.h (new) 1.1.1.1.2.5 +27 -24 src/crypto/openssl/crypto/err/Makefile.ssl 1.1.1.1.2.5 +423 -190 src/crypto/openssl/crypto/err/err.c 1.1.1.1.2.4 +103 -83 src/crypto/openssl/crypto/err/err.h 1.2.2.5 +29 -25 src/crypto/openssl/crypto/err/err_all.c 1.1.1.1.2.2 +23 -24 src/crypto/openssl/crypto/err/err_prn.c 1.1.1.1.2.3 +19 -11 src/crypto/openssl/crypto/err/openssl.ec 1.1.1.1.2.4 +654 -511 src/crypto/openssl/crypto/evp/Makefile.ssl 1.1.1.1.2.4 +1 -0 src/crypto/openssl/crypto/evp/bio_b64.c 1.1.1.1.2.4 +13 -9 src/crypto/openssl/crypto/evp/bio_enc.c 1.1.1.1.2.3 +15 -15 src/crypto/openssl/crypto/evp/bio_md.c 1.1.1.1.2.3 +30 -24 src/crypto/openssl/crypto/evp/bio_ok.c 1.1.1.1.2.2 +14 -2 src/crypto/openssl/crypto/evp/c_all.c 1.1.1.1.2.3 +37 -10 src/crypto/openssl/crypto/evp/c_allc.c 1.1.1.1.2.4 +9 -13 src/crypto/openssl/crypto/evp/c_alld.c 1.1.1.1.2.1 +239 -17 src/crypto/openssl/crypto/evp/digest.c 1.1.1.1.2.1 +100 -0 src/crypto/openssl/crypto/evp/e_aes.c (new) 1.1.1.1.2.3 +11 -3 src/crypto/openssl/crypto/evp/e_bf.c 1.1.1.1.2.2 +12 -4 src/crypto/openssl/crypto/evp/e_cast.c 1.1.1.1.2.2 +11 -10 src/crypto/openssl/crypto/evp/e_des.c 1.1.1.1.2.2 +58 -30 src/crypto/openssl/crypto/evp/e_des3.c 1.1.1.1.2.2 +15 -9 src/crypto/openssl/crypto/evp/e_idea.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/evp/e_null.c 1.1.1.1.2.2 +39 -31 src/crypto/openssl/crypto/evp/e_rc2.c 1.1.1.1.2.2 +21 -13 src/crypto/openssl/crypto/evp/e_rc4.c 1.1.1.1.2.2 +39 -32 src/crypto/openssl/crypto/evp/e_rc5.c 1.1.1.1.2.3 +25 -14 src/crypto/openssl/crypto/evp/e_xcbc_d.c 1.1.1.1.2.4 +2 -0 src/crypto/openssl/crypto/evp/encode.c 1.2.2.5 +276 -228 src/crypto/openssl/crypto/evp/evp.h 1.1.1.1.2.1 +74 -0 src/crypto/openssl/crypto/evp/evp_acnf.c (new) 1.1.1.1.2.2 +233 -63 src/crypto/openssl/crypto/evp/evp_enc.c 1.1.1.1.2.3 +9 -2 src/crypto/openssl/crypto/evp/evp_err.c 1.1.1.1.2.4 +29 -14 src/crypto/openssl/crypto/evp/evp_key.c 1.1.1.1.2.2 +2 -0 src/crypto/openssl/crypto/evp/evp_lib.c 1.1.1.1.2.2 +92 -33 src/crypto/openssl/crypto/evp/evp_locl.h 1.1.1.1.2.2 +5 -5 src/crypto/openssl/crypto/evp/evp_pbe.c 1.1.1.1.2.3 +14 -10 src/crypto/openssl/crypto/evp/evp_pkey.c 1.1.1.1.2.1 +395 -0 src/crypto/openssl/crypto/evp/evp_test.c (new) 1.1.1.1.2.1 +183 -0 src/crypto/openssl/crypto/evp/evptests.txt (new) 1.1.1.1.2.1 +18 -6 src/crypto/openssl/crypto/evp/m_dss.c 1.1.1.1.2.1 +18 -6 src/crypto/openssl/crypto/evp/m_dss1.c 1.1.1.1.2.1 +19 -6 src/crypto/openssl/crypto/evp/m_md2.c 1.1.1.1.2.3 +19 -6 src/crypto/openssl/crypto/evp/m_md4.c 1.1.1.1.2.1 +19 -6 src/crypto/openssl/crypto/evp/m_md5.c 1.1.1.1.2.1 +19 -6 src/crypto/openssl/crypto/evp/m_mdc2.c 1.1.1.1.2.1 +16 -9 src/crypto/openssl/crypto/evp/m_null.c 1.1.1.1.2.1 +18 -6 src/crypto/openssl/crypto/evp/m_ripemd.c 1.1.1.1.2.1 +18 -6 src/crypto/openssl/crypto/evp/m_sha.c 1.1.1.1.2.1 +18 -6 src/crypto/openssl/crypto/evp/m_sha1.c 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/evp/names.c 1.1.1.1.2.1 +446 -0 src/crypto/openssl/crypto/evp/openbsd_hw.c (new) 1.1.1.1.2.2 +27 -23 src/crypto/openssl/crypto/evp/p5_crpt.c 1.1.1.1.2.2 +11 -8 src/crypto/openssl/crypto/evp/p5_crpt2.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/evp/p_dec.c 1.1.1.1.2.1 +3 -3 src/crypto/openssl/crypto/evp/p_enc.c 1.1.1.1.2.3 +25 -21 src/crypto/openssl/crypto/evp/p_lib.c 1.1.1.1.2.3 +8 -8 src/crypto/openssl/crypto/evp/p_open.c 1.1.1.1.2.3 +12 -9 src/crypto/openssl/crypto/evp/p_seal.c 1.1.1.1.2.1 +5 -3 src/crypto/openssl/crypto/evp/p_sign.c 1.1.1.1.2.1 +4 -2 src/crypto/openssl/crypto/evp/p_verify.c 1.1.1.1.2.4 +514 -101 src/crypto/openssl/crypto/ex_data.c 1.1.1.1.2.3 +18 -13 src/crypto/openssl/crypto/hmac/Makefile.ssl 1.1.1.1.2.2 +36 -15 src/crypto/openssl/crypto/hmac/hmac.c 1.1.1.1.2.3 +9 -3 src/crypto/openssl/crypto/hmac/hmac.h 1.1.1.1.2.2 +20 -4 src/crypto/openssl/crypto/hmac/hmactest.c 1.4.2.5 +9 -10 src/crypto/openssl/crypto/idea/Makefile.ssl 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/i_cbc.c 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/i_cfb64.c 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/i_ecb.c 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/i_ofb64.c 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/i_skey.c 1.4.2.5 +1 -2 src/crypto/openssl/crypto/idea/idea.h 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/idea_lcl.h 1.4.2.5 +3 -4 src/crypto/openssl/crypto/idea/idea_spd.c 1.4.2.5 +4 -3 src/crypto/openssl/crypto/idea/ideatest.c 1.4.2.5 +0 -1 src/crypto/openssl/crypto/idea/version 1.1.1.1.2.1 +90 -0 src/crypto/openssl/crypto/krb5/Makefile.ssl (new) 1.1.1.1.2.1 +167 -0 src/crypto/openssl/crypto/krb5/krb5_asn.c (new) 1.1.1.1.2.1 +256 -0 src/crypto/openssl/crypto/krb5/krb5_asn.h (new) 1.1.1.1.2.4 +10 -9 src/crypto/openssl/crypto/lhash/Makefile.ssl 1.1.1.1.2.2 +41 -67 src/crypto/openssl/crypto/lhash/lh_stats.c 1.1.1.1.2.3 +36 -27 src/crypto/openssl/crypto/lhash/lhash.c 1.1.1.1.2.3 +71 -21 src/crypto/openssl/crypto/lhash/lhash.h 1.1.1.1.2.5 +11 -8 src/crypto/openssl/crypto/md2/Makefile.ssl 1.1.1.1.2.3 +4 -4 src/crypto/openssl/crypto/md2/md2.h 1.1.1.1.2.2 +13 -9 src/crypto/openssl/crypto/md2/md2_dgst.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/md2/md2_one.c 1.1.1.1.2.2 +9 -4 src/crypto/openssl/crypto/md2/md2test.c 1.1.1.1.2.3 +43 -13 src/crypto/openssl/crypto/md32_common.h 1.1.1.1.2.3 +13 -7 src/crypto/openssl/crypto/md4/Makefile.ssl 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/md4/md4.c 1.1.1.1.2.2 +8 -6 src/crypto/openssl/crypto/md4/md4.h 1.1.1.1.2.2 +6 -33 src/crypto/openssl/crypto/md4/md4_dgst.c 1.1.1.1.2.2 +2 -1 src/crypto/openssl/crypto/md4/md4_one.c 1.1.1.1.2.2 +8 -3 src/crypto/openssl/crypto/md4/md4test.c 1.1.1.1.2.4 +13 -7 src/crypto/openssl/crypto/md5/Makefile.ssl 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/md5/asm/md5-sparcv9.S 1.1.1.1.2.2 +8 -6 src/crypto/openssl/crypto/md5/md5.h 1.1.1.1.2.2 +6 -33 src/crypto/openssl/crypto/md5/md5_dgst.c 1.1.1.1.2.3 +2 -2 src/crypto/openssl/crypto/md5/md5_locl.h 1.1.1.1.2.2 +2 -1 src/crypto/openssl/crypto/md5/md5_one.c 1.1.1.1.2.2 +8 -3 src/crypto/openssl/crypto/md5/md5test.c 1.1.1.1.2.4 +18 -11 src/crypto/openssl/crypto/mdc2/Makefile.ssl 1.1.1.1.2.3 +5 -5 src/crypto/openssl/crypto/mdc2/mdc2.h 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/mdc2/mdc2_one.c 1.1.1.1.2.3 +15 -12 src/crypto/openssl/crypto/mdc2/mdc2dgst.c 1.1.1.1.2.2 +18 -12 src/crypto/openssl/crypto/mdc2/mdc2test.c 1.1.1.1.2.4 +138 -26 src/crypto/openssl/crypto/mem.c 1.1.1.1.2.1 +75 -0 src/crypto/openssl/crypto/mem_clr.c (new) 1.1.1.1.2.4 +66 -38 src/crypto/openssl/crypto/mem_dbg.c 1.1.1.1.2.1 +203 -0 src/crypto/openssl/crypto/o_time.c (new) 1.1.1.1.2.1 +66 -0 src/crypto/openssl/crypto/o_time.h (new) 1.1.1.1.2.5 +27 -24 src/crypto/openssl/crypto/objects/Makefile.ssl 1.1.1.1.2.4 +121 -26 src/crypto/openssl/crypto/objects/o_names.c 1.1.1.1.2.4 +29 -21 src/crypto/openssl/crypto/objects/obj_dat.c 1.1.1.1.2.4 +1988 -612 src/crypto/openssl/crypto/objects/obj_dat.h 1.1.1.1.2.4 +1 -1 src/crypto/openssl/crypto/objects/obj_dat.pl 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/objects/obj_err.c 1.1.1.1.2.2 +4 -3 src/crypto/openssl/crypto/objects/obj_lib.c 1.1.1.1.2.3 +1051 -29 src/crypto/openssl/crypto/objects/obj_mac.h 1.1.1.1.2.3 +248 -2 src/crypto/openssl/crypto/objects/obj_mac.num 1.1.1.1.2.4 +16 -10 src/crypto/openssl/crypto/objects/objects.h 1.1.1.1.2.3 +2 -0 src/crypto/openssl/crypto/objects/objects.pl 1.1.1.1.2.3 +320 -14 src/crypto/openssl/crypto/objects/objects.txt 1.1.1.1.2.1 +293 -0 src/crypto/openssl/crypto/ocsp/Makefile.ssl (new) 1.1.1.1.2.1 +619 -0 src/crypto/openssl/crypto/ocsp/ocsp.h (new) 1.1.1.1.2.1 +182 -0 src/crypto/openssl/crypto/ocsp/ocsp_asn.c (new) 1.1.1.1.2.1 +370 -0 src/crypto/openssl/crypto/ocsp/ocsp_cl.c (new) 1.1.1.1.2.1 +139 -0 src/crypto/openssl/crypto/ocsp/ocsp_err.c (new) 1.1.1.1.2.1 +528 -0 src/crypto/openssl/crypto/ocsp/ocsp_ext.c (new) 1.1.1.1.2.1 +167 -0 src/crypto/openssl/crypto/ocsp/ocsp_ht.c (new) 1.1.1.1.2.1 +261 -0 src/crypto/openssl/crypto/ocsp/ocsp_lib.c (new) 1.1.1.1.2.1 +291 -0 src/crypto/openssl/crypto/ocsp/ocsp_prn.c (new) 1.1.1.1.2.1 +264 -0 src/crypto/openssl/crypto/ocsp/ocsp_srv.c (new) 1.1.1.1.2.1 +444 -0 src/crypto/openssl/crypto/ocsp/ocsp_vfy.c (new) 1.1.1.1.2.2 +20 -7 src/crypto/openssl/crypto/opensslconf.h 1.1.1.1.2.2 +5 -2 src/crypto/openssl/crypto/opensslconf.h.in 1.1.1.1.2.6 +3 -3 src/crypto/openssl/crypto/opensslv.h 1.1.1.1.2.1 +122 -0 src/crypto/openssl/crypto/ossl_typ.h (new) 1.1.1.1.2.3 +204 -72 src/crypto/openssl/crypto/pem/Makefile.ssl 1.1.1.1.2.4 +22 -15 src/crypto/openssl/crypto/pem/pem.h 1.1.1.1.2.2 +8 -15 src/crypto/openssl/crypto/pem/pem_all.c 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/pem/pem_err.c 1.1.1.1.2.5 +8 -7 src/crypto/openssl/crypto/pem/pem_info.c 1.1.1.1.2.4 +51 -249 src/crypto/openssl/crypto/pem/pem_lib.c 1.1.1.1.2.1 +85 -0 src/crypto/openssl/crypto/pem/pem_oth.c (new) 1.1.1.1.2.1 +243 -0 src/crypto/openssl/crypto/pem/pem_pk8.c (new) 1.1.1.1.2.1 +140 -0 src/crypto/openssl/crypto/pem/pem_pkey.c (new) 1.1.1.1.2.3 +18 -15 src/crypto/openssl/crypto/pem/pem_seal.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/pem/pem_sign.c 1.1.1.1.2.1 +69 -0 src/crypto/openssl/crypto/pem/pem_x509.c (new) 1.1.1.1.2.1 +68 -0 src/crypto/openssl/crypto/pem/pem_xaux.c (new) 1.1.1.1.2.1 +24 -17 src/crypto/openssl/crypto/perlasm/cbc.pl 1.1.1.1.2.2 +6 -0 src/crypto/openssl/crypto/perlasm/x86asm.pl 1.1.1.1.2.2 +7 -2 src/crypto/openssl/crypto/perlasm/x86ms.pl 1.1.1.1.2.2 +7 -2 src/crypto/openssl/crypto/perlasm/x86nasm.pl 1.1.1.1.2.3 +105 -3 src/crypto/openssl/crypto/perlasm/x86unix.pl 1.1.1.1.2.4 +227 -210 src/crypto/openssl/crypto/pkcs12/Makefile.ssl 1.1.1.1.2.3 +44 -47 src/crypto/openssl/crypto/pkcs12/p12_add.c 1.1.1.1.2.1 +125 -0 src/crypto/openssl/crypto/pkcs12/p12_asn.c (new) 1.1.1.1.2.4 +31 -124 src/crypto/openssl/crypto/pkcs12/p12_attr.c 1.1.1.1.2.3 +0 -192 src/crypto/openssl/crypto/pkcs12/p12_bags.c (dead) 1.1.1.1.2.2 +7 -7 src/crypto/openssl/crypto/pkcs12/p12_crpt.c 1.1.1.1.2.3 +3 -3 src/crypto/openssl/crypto/pkcs12/p12_crt.c 1.1.1.1.2.3 +29 -40 src/crypto/openssl/crypto/pkcs12/p12_decr.c 1.1.1.1.2.2 +0 -8 src/crypto/openssl/crypto/pkcs12/p12_init.c 1.1.1.1.2.4 +10 -8 src/crypto/openssl/crypto/pkcs12/p12_key.c 1.1.1.1.2.4 +5 -5 src/crypto/openssl/crypto/pkcs12/p12_kiss.c 1.1.1.1.2.3 +0 -111 src/crypto/openssl/crypto/pkcs12/p12_lib.c (dead) 1.1.1.1.2.3 +0 -110 src/crypto/openssl/crypto/pkcs12/p12_mac.c (dead) 1.1.1.1.2.3 +9 -6 src/crypto/openssl/crypto/pkcs12/p12_mutl.c 1.1.1.1.2.3 +5 -5 src/crypto/openssl/crypto/pkcs12/p12_npas.c 1.1.1.1.2.1 +68 -0 src/crypto/openssl/crypto/pkcs12/p12_p8d.c (new) 1.1.1.1.2.1 +97 -0 src/crypto/openssl/crypto/pkcs12/p12_p8e.c (new) 1.1.1.1.2.2 +0 -234 src/crypto/openssl/crypto/pkcs12/p12_sbag.c (dead) 1.1.1.1.2.3 +32 -8 src/crypto/openssl/crypto/pkcs12/p12_utl.c 1.1.1.1.2.2 +2 -2 src/crypto/openssl/crypto/pkcs12/pk12err.c 1.1.1.1.2.5 +51 -75 src/crypto/openssl/crypto/pkcs12/pkcs12.h 1.1.1.1.2.5 +100 -74 src/crypto/openssl/crypto/pkcs7/Makefile.ssl 1.1.1.1.2.3 +4 -4 src/crypto/openssl/crypto/pkcs7/bio_ber.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/pkcs7/enc.c 1.1.1.1.2.2 +1 -0 src/crypto/openssl/crypto/pkcs7/example.c 1.1.1.1.2.1 +213 -0 src/crypto/openssl/crypto/pkcs7/pk7_asn1.c (new) 1.1.1.1.2.5 +45 -55 src/crypto/openssl/crypto/pkcs7/pk7_doit.c 1.1.1.1.2.2 +22 -7 src/crypto/openssl/crypto/pkcs7/pk7_lib.c 1.1.1.1.2.4 +17 -8 src/crypto/openssl/crypto/pkcs7/pk7_smime.c 1.1.1.1.2.4 +24 -78 src/crypto/openssl/crypto/pkcs7/pkcs7.h 1.1.1.1.2.2 +2 -3 src/crypto/openssl/crypto/pkcs7/pkcs7err.c 1.1.1.1.2.2 +4 -4 src/crypto/openssl/crypto/pkcs7/sign.c 1.1.1.1.2.3 +4 -4 src/crypto/openssl/crypto/pkcs7/verify.c 1.1.1.1.2.4 +115 -29 src/crypto/openssl/crypto/rand/Makefile.ssl 1.1.1.1.2.6 +14 -12 src/crypto/openssl/crypto/rand/md_rand.c 1.1.1.1.2.5 +12 -19 src/crypto/openssl/crypto/rand/rand.h 1.1.1.1.2.5 +179 -59 src/crypto/openssl/crypto/rand/rand_egd.c 1.1.1.1.2.2 +3 -2 src/crypto/openssl/crypto/rand/rand_err.c 1.1.1.1.2.2 +17 -43 src/crypto/openssl/crypto/rand/rand_lcl.h 1.1.1.1.2.2 +76 -27 src/crypto/openssl/crypto/rand/rand_lib.c 1.1.1.1.2.1 +147 -0 src/crypto/openssl/crypto/rand/rand_os2.c (new) 1.1.1.1.2.1 +245 -0 src/crypto/openssl/crypto/rand/rand_unix.c (new) 1.1.1.1.2.1 +135 -0 src/crypto/openssl/crypto/rand/rand_vms.c (new) 1.1.1.1.2.4 +64 -77 src/crypto/openssl/crypto/rand/rand_win.c 1.1.1.1.2.5 +14 -13 src/crypto/openssl/crypto/rand/randfile.c 1.1.1.1.2.2 +11 -2 src/crypto/openssl/crypto/rand/randtest.c 1.1.1.1.2.2 +9 -9 src/crypto/openssl/crypto/rc2/Makefile.ssl 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/rc2/rc2.h 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/rc2/rc2speed.c 1.1.1.1.2.2 +4 -2 src/crypto/openssl/crypto/rc2/rc2test.c 1.1.1.1.2.3 +6 -6 src/crypto/openssl/crypto/rc4/Makefile.ssl 1.1.1.1.2.1 +5 -5 src/crypto/openssl/crypto/rc4/rc4.c 1.1.1.1.2.3 +1 -1 src/crypto/openssl/crypto/rc4/rc4.h 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/rc4/rc4speed.c 1.1.1.1.2.2 +4 -2 src/crypto/openssl/crypto/rc4/rc4test.c 1.1.1.1.2.3 +9 -9 src/crypto/openssl/crypto/rc5/Makefile.ssl 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/rc5/rc5.h 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/rc5/rc5_ecb.c 1.1.1.1.2.2 +22 -2 src/crypto/openssl/crypto/rc5/rc5_locl.h 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/rc5/rc5speed.c 1.1.1.1.2.2 +4 -2 src/crypto/openssl/crypto/rc5/rc5test.c 1.1.1.1.2.4 +11 -7 src/crypto/openssl/crypto/ripemd/Makefile.ssl 1.1.1.1.2.2 +8 -6 src/crypto/openssl/crypto/ripemd/ripemd.h 1.1.1.1.2.2 +8 -7 src/crypto/openssl/crypto/ripemd/rmd_dgst.c 1.1.1.1.2.2 +2 -1 src/crypto/openssl/crypto/ripemd/rmd_one.c 1.1.1.1.2.2 +8 -3 src/crypto/openssl/crypto/ripemd/rmdtest.c 1.1.1.1.2.4 +120 -77 src/crypto/openssl/crypto/rsa/Makefile.ssl 1.2.2.6 +77 -71 src/crypto/openssl/crypto/rsa/rsa.h 1.1.1.1.2.1 +121 -0 src/crypto/openssl/crypto/rsa/rsa_asn1.c (new) 1.1.1.1.2.1 +1 -1 src/crypto/openssl/crypto/rsa/rsa_chk.c 1.2.4.4 +34 -23 src/crypto/openssl/crypto/rsa/rsa_eay.c 1.1.1.1.2.3 +2 -2 src/crypto/openssl/crypto/rsa/rsa_err.c 1.2.2.5 +82 -38 src/crypto/openssl/crypto/rsa/rsa_lib.c 1.1.1.1.2.1 +4 -4 src/crypto/openssl/crypto/rsa/rsa_none.c 1.1.1.1.2.2 +12 -11 src/crypto/openssl/crypto/rsa/rsa_null.c 1.1.1.1.2.4 +22 -18 src/crypto/openssl/crypto/rsa/rsa_oaep.c 1.1.1.1.2.2 +7 -7 src/crypto/openssl/crypto/rsa/rsa_pk1.c 1.1.1.1.2.3 +11 -9 src/crypto/openssl/crypto/rsa/rsa_saos.c 1.1.1.1.2.3 +24 -17 src/crypto/openssl/crypto/rsa/rsa_sign.c 1.1.1.1.2.3 +5 -5 src/crypto/openssl/crypto/rsa/rsa_ssl.c 1.1.1.1.2.2 +9 -5 src/crypto/openssl/crypto/rsa/rsa_test.c 1.1.1.1.2.3 +18 -10 src/crypto/openssl/crypto/sha/Makefile.ssl 1.1.1.1.2.2 +13 -11 src/crypto/openssl/crypto/sha/sha.h 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/sha/sha1_one.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/sha/sha1dgst.c 1.1.1.1.2.2 +13 -7 src/crypto/openssl/crypto/sha/sha1test.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/sha/sha_dgst.c 1.1.1.1.2.3 +8 -7 src/crypto/openssl/crypto/sha/sha_locl.h 1.1.1.1.2.1 +3 -2 src/crypto/openssl/crypto/sha/sha_one.c 1.1.1.1.2.2 +13 -7 src/crypto/openssl/crypto/sha/shatest.c 1.1.1.1.2.4 +7 -7 src/crypto/openssl/crypto/stack/Makefile.ssl 1.1.1.1.2.2 +378 -0 src/crypto/openssl/crypto/stack/safestack.h 1.1.1.1.2.3 +8 -6 src/crypto/openssl/crypto/stack/stack.c 1.1.1.1.2.2 +124 -3 src/crypto/openssl/crypto/symhacks.h 1.1.1.1.2.3 +4 -4 src/crypto/openssl/crypto/threads/mttest.c 1.1.1.1.2.3 +3 -3 src/crypto/openssl/crypto/threads/th-lock.c 1.1.1.1.2.3 +31 -29 src/crypto/openssl/crypto/tmdiff.c 1.1.1.1.2.4 +7 -7 src/crypto/openssl/crypto/txt_db/Makefile.ssl 1.1.1.1.2.4 +6 -6 src/crypto/openssl/crypto/txt_db/txt_db.c 1.1.1.1.2.2 +3 -3 src/crypto/openssl/crypto/txt_db/txt_db.h 1.1.1.1.2.1 +117 -0 src/crypto/openssl/crypto/ui/Makefile.ssl (new) 1.1.1.1.2.1 +387 -0 src/crypto/openssl/crypto/ui/ui.h (new) 1.1.1.1.2.1 +67 -0 src/crypto/openssl/crypto/ui/ui_compat.c (new) 1.1.1.1.2.1 +83 -0 src/crypto/openssl/crypto/ui/ui_compat.h (new) 1.1.1.1.2.1 +111 -0 src/crypto/openssl/crypto/ui/ui_err.c (new) 1.1.1.2.2.1 +901 -0 src/crypto/openssl/crypto/ui/ui_lib.c (new) 1.1.1.1.2.1 +148 -0 src/crypto/openssl/crypto/ui/ui_locl.h (new) 1.1.1.1.2.1 +673 -0 src/crypto/openssl/crypto/ui/ui_openssl.c (new) 1.1.1.2.2.1 +91 -0 src/crypto/openssl/crypto/ui/ui_util.c (new) 1.1.1.1.2.2 +4 -3 src/crypto/openssl/crypto/uid.c 1.1.1.1.2.5 +309 -231 src/crypto/openssl/crypto/x509/Makefile.ssl 1.1.1.1.2.2 +11 -10 src/crypto/openssl/crypto/x509/by_file.c 1.1.1.1.2.4 +147 -178 src/crypto/openssl/crypto/x509/x509.h 1.1.1.1.2.2 +13 -13 src/crypto/openssl/crypto/x509/x509_att.c 1.1.1.1.2.4 +132 -22 src/crypto/openssl/crypto/x509/x509_cmp.c 1.1.1.1.2.2 +1 -1 src/crypto/openssl/crypto/x509/x509_d2.c 1.1.1.1.2.2 +6 -2 src/crypto/openssl/crypto/x509/x509_err.c 1.1.1.1.2.2 +19 -0 src/crypto/openssl/crypto/x509/x509_ext.c 1.1.1.1.2.3 +34 -6 src/crypto/openssl/crypto/x509/x509_lu.c 1.1.1.1.2.3 +1 -0 src/crypto/openssl/crypto/x509/x509_obj.c 1.1.1.1.2.3 +8 -8 src/crypto/openssl/crypto/x509/x509_req.c 1.1.1.1.2.4 +23 -4 src/crypto/openssl/crypto/x509/x509_trs.c 1.1.1.1.2.4 +7 -1 src/crypto/openssl/crypto/x509/x509_txt.c 1.1.1.1.2.2 +5 -4 src/crypto/openssl/crypto/x509/x509_v3.c 1.1.1.1.2.4 +302 -41 src/crypto/openssl/crypto/x509/x509_vfy.c 1.1.1.1.2.4 +40 -25 src/crypto/openssl/crypto/x509/x509_vfy.h 1.1.1.1.2.1 +169 -0 src/crypto/openssl/crypto/x509/x509cset.c (new) 1.1.1.1.2.3 +0 -1 src/crypto/openssl/crypto/x509/x509spki.c 1.1.1.1.2.3 +63 -140 src/crypto/openssl/crypto/x509/x_all.c 1.1.1.1.2.5 +363 -267 src/crypto/openssl/crypto/x509v3/Makefile.ssl 1.1.1.1.2.2 +14 -2 src/crypto/openssl/crypto/x509v3/ext_dat.h 1.1.1.1.2.3 +6 -65 src/crypto/openssl/crypto/x509v3/v3_akey.c 1.1.1.1.2.1 +72 -0 src/crypto/openssl/crypto/x509v3/v3_akeya.c (new) 1.1.1.1.2.4 +84 -28 src/crypto/openssl/crypto/x509v3/v3_alt.c 1.1.1.1.2.3 +9 -49 src/crypto/openssl/crypto/x509v3/v3_bcons.c 1.1.1.1.2.2 +1 -0 src/crypto/openssl/crypto/x509v3/v3_bitst.c 1.1.1.1.2.3 +247 -152 src/crypto/openssl/crypto/x509v3/v3_conf.c 1.1.1.1.2.3 +45 -283 src/crypto/openssl/crypto/x509v3/v3_cpols.c 1.1.1.1.2.3 +33 -156 src/crypto/openssl/crypto/x509v3/v3_crld.c 1.1.1.1.2.2 +5 -7 src/crypto/openssl/crypto/x509v3/v3_enum.c 1.1.1.1.2.2 +65 -73 src/crypto/openssl/crypto/x509v3/v3_extku.c 1.1.1.1.2.3 +36 -226 src/crypto/openssl/crypto/x509v3/v3_genn.c 1.1.1.1.2.3 +43 -86 src/crypto/openssl/crypto/x509v3/v3_info.c 1.1.1.1.2.2 +4 -7 src/crypto/openssl/crypto/x509v3/v3_int.c 1.1.1.1.2.3 +78 -2 src/crypto/openssl/crypto/x509v3/v3_lib.c 1.1.1.1.2.1 +272 -0 src/crypto/openssl/crypto/x509v3/v3_ocsp.c (new) 1.1.1.1.2.3 +9 -52 src/crypto/openssl/crypto/x509v3/v3_pku.c 1.1.1.1.2.4 +74 -6 src/crypto/openssl/crypto/x509v3/v3_prn.c 1.1.1.1.2.4 +97 -7 src/crypto/openssl/crypto/x509v3/v3_purp.c 1.1.1.1.2.2 +5 -10 src/crypto/openssl/crypto/x509v3/v3_skey.c 1.1.1.1.2.3 +19 -97 src/crypto/openssl/crypto/x509v3/v3_sxnet.c 1.1.1.1.2.4 +29 -10 src/crypto/openssl/crypto/x509v3/v3_utl.c 1.1.1.1.2.1 +0 -1 src/crypto/openssl/crypto/x509v3/v3conf.c 1.1.1.1.2.2 +7 -2 src/crypto/openssl/crypto/x509v3/v3err.c 1.1.1.1.2.1 +0 -2 src/crypto/openssl/crypto/x509v3/v3prin.c 1.1.1.1.2.4 +139 -136 src/crypto/openssl/crypto/x509v3/x509v3.h 1.1.1.1.2.1 +7 -0 src/crypto/openssl/demos/asn1/README.ASN1 (new) 1.1.1.1.2.1 +366 -0 src/crypto/openssl/demos/asn1/ocsp.c (new) 1.1.1.1.2.3 +0 -2 src/crypto/openssl/demos/b64.c 1.1.1.1.2.2 +5 -0 src/crypto/openssl/demos/bio/saccept.c 1.1.1.1.2.2 +5 -0 src/crypto/openssl/demos/bio/sconnect.c 1.1.1.1.2.1 +123 -0 src/crypto/openssl/demos/easy_tls/Makefile (new) 1.1.1.1.2.1 +65 -0 src/crypto/openssl/demos/easy_tls/README (new) 1.1.1.1.2.1 +18 -0 src/crypto/openssl/demos/easy_tls/cacerts.pem (new) 1.1.1.1.2.1 +31 -0 src/crypto/openssl/demos/easy_tls/cert.pem (new) 1.1.1.1.2.1 +1240 -0 src/crypto/openssl/demos/easy_tls/easy-tls.c (new) 1.1.1.1.2.1 +57 -0 src/crypto/openssl/demos/easy_tls/easy-tls.h (new) 1.1.1.1.2.1 +244 -0 src/crypto/openssl/demos/easy_tls/test.c (new) 1.1.1.1.2.1 +11 -0 src/crypto/openssl/demos/easy_tls/test.h (new) 1.1.1.1.2.1 +114 -0 src/crypto/openssl/demos/engines/cluster_labs/Makefile (new) 1.1.1.1.2.1 +35 -0 src/crypto/openssl/demos/engines/cluster_labs/cluster_labs.h (new) 1.1.1.1.2.1 +721 -0 src/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs.c (new) 1.1.1.1.2.1 +8 -0 src/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs.ec (new) 1.1.1.1.2.1 +151 -0 src/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.c (new) 1.1.1.1.2.1 +95 -0 src/crypto/openssl/demos/engines/cluster_labs/hw_cluster_labs_err.h (new) 1.1.1.1.2.1 +114 -0 src/crypto/openssl/demos/engines/ibmca/Makefile (new) 1.1.1.1.2.1 +920 -0 src/crypto/openssl/demos/engines/ibmca/hw_ibmca.c (new) 1.1.1.1.2.1 +8 -0 src/crypto/openssl/demos/engines/ibmca/hw_ibmca.ec (new) 1.1.1.1.2.1 +154 -0 src/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.c (new) 1.1.1.1.2.1 +98 -0 src/crypto/openssl/demos/engines/ibmca/hw_ibmca_err.h (new) 1.1.1.1.2.1 +189 -0 src/crypto/openssl/demos/engines/ibmca/ica_openssl_api.h (new) 1.1.1.1.2.1 +135 -0 src/crypto/openssl/demos/engines/rsaref/Makefile (new) 1.1.1.1.2.1 +22 -0 src/crypto/openssl/demos/engines/rsaref/README (new) 1.1.1.1.2.1 +85 -0 src/crypto/openssl/demos/engines/rsaref/build.com (new) 1.1.1.1.2.1 +685 -0 src/crypto/openssl/demos/engines/rsaref/rsaref.c (new) 1.1.1.1.2.1 +8 -0 src/crypto/openssl/demos/engines/rsaref/rsaref.ec (new) 1.1.1.1.2.1 +161 -0 src/crypto/openssl/demos/engines/rsaref/rsaref_err.c (new) 1.1.1.1.2.1 +109 -0 src/crypto/openssl/demos/engines/rsaref/rsaref_err.h (new) 1.1.1.1.2.1 +114 -0 src/crypto/openssl/demos/engines/zencod/Makefile (new) 1.1.1.1.2.1 +1739 -0 src/crypto/openssl/demos/engines/zencod/hw_zencod.c (new) 1.1.1.1.2.1 +8 -0 src/crypto/openssl/demos/engines/zencod/hw_zencod.ec (new) 1.1.1.1.2.1 +160 -0 src/crypto/openssl/demos/engines/zencod/hw_zencod.h (new) 1.1.1.1.2.1 +151 -0 src/crypto/openssl/demos/engines/zencod/hw_zencod_err.c (new) 1.1.1.1.2.1 +95 -0 src/crypto/openssl/demos/engines/zencod/hw_zencod_err.h (new) 1.1.1.1.2.2 +2 -4 src/crypto/openssl/demos/maurice/example1.c 1.1.1.1.2.1 +4 -2 src/crypto/openssl/demos/maurice/example3.c 1.1.1.1.2.2 +2 -7 src/crypto/openssl/demos/maurice/loadkeys.c 1.1.1.1.2.1 +2 -2 src/crypto/openssl/demos/sign/sign.c 1.1.1.1.2.1 +2 -1 src/crypto/openssl/demos/spkigen.c 1.1.1.1.2.2 +2 -2 src/crypto/openssl/demos/ssl/cli.cpp 1.1.1.1.2.1 +2 -2 src/crypto/openssl/demos/ssl/inetdsrv.cpp 1.1.1.1.2.1 +2 -2 src/crypto/openssl/demos/ssl/serv.cpp 1.1.1.1.2.2 +34 -13 src/crypto/openssl/demos/state_machine/state_machine.c 1.1.1.1.2.1 +84 -0 src/crypto/openssl/demos/tunala/A-client.pem (new) 1.1.1.1.2.1 +84 -0 src/crypto/openssl/demos/tunala/A-server.pem (new) 1.1.1.1.2.1 +24 -0 src/crypto/openssl/demos/tunala/CA.pem (new) 1.1.1.1.2.1 +107 -0 src/crypto/openssl/demos/tunala/INSTALL (new) 1.1.1.1.2.1 +41 -0 src/crypto/openssl/demos/tunala/Makefile (new) 1.1.1.1.2.1 +7 -0 src/crypto/openssl/demos/tunala/Makefile.am (new) 1.1.1.1.2.1 +233 -0 src/crypto/openssl/demos/tunala/README (new) 1.1.1.1.2.1 +25 -0 src/crypto/openssl/demos/tunala/autogunk.sh (new) 1.1.1.1.2.1 +18 -0 src/crypto/openssl/demos/tunala/autoungunk.sh (new) 1.1.1.1.2.1 +66 -0 src/crypto/openssl/demos/tunala/breakage.c (new) 1.1.1.1.2.1 +205 -0 src/crypto/openssl/demos/tunala/buffer.c (new) 1.1.1.1.2.1 +133 -0 src/crypto/openssl/demos/tunala/cb.c (new) 1.1.1.1.2.1 +28 -0 src/crypto/openssl/demos/tunala/configure.in (new) 1.1.1.1.2.1 +146 -0 src/crypto/openssl/demos/tunala/ip.c (new) 1.1.1.1.2.1 +151 -0 src/crypto/openssl/demos/tunala/sm.c (new) 1.1.1.1.2.1 +1093 -0 src/crypto/openssl/demos/tunala/tunala.c (new) 1.1.1.1.2.1 +214 -0 src/crypto/openssl/demos/tunala/tunala.h (new) 1.1.1.1.2.1 +3 -0 src/crypto/openssl/demos/x509/README (new) 1.1.1.1.2.1 +168 -0 src/crypto/openssl/demos/x509/mkcert.c (new) 1.1.1.1.2.1 +157 -0 src/crypto/openssl/demos/x509/mkreq.c (new) 1.1.1.1.2.1 +85 -0 src/crypto/openssl/doc/HOWTO/certificates.txt (new) 1.1.1.1.2.3 +5 -0 src/crypto/openssl/doc/apps/CA.pl.pod 1.1.1.1.2.4 +142 -26 src/crypto/openssl/doc/apps/ca.pod 1.1.1.1.2.3 +49 -1 src/crypto/openssl/doc/apps/ciphers.pod 1.1.1.1.2.3 +12 -4 src/crypto/openssl/doc/apps/enc.pod 1.1.1.1.2.1 +348 -0 src/crypto/openssl/doc/apps/ocsp.pod (new) 1.1.1.1.2.4 +4 -0 src/crypto/openssl/doc/apps/openssl.pod 1.1.1.1.2.3 +8 -2 src/crypto/openssl/doc/apps/passwd.pod 1.1.1.1.2.4 +1 -1 src/crypto/openssl/doc/apps/pkcs12.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/apps/pkcs7.pod 1.1.1.1.2.3 +1 -1 src/crypto/openssl/doc/apps/rand.pod 1.1.1.1.2.3 +61 -6 src/crypto/openssl/doc/apps/req.pod 1.1.1.1.2.3 +1 -1 src/crypto/openssl/doc/apps/rsa.pod 1.1.1.1.2.3 +15 -2 src/crypto/openssl/doc/apps/s_client.pod 1.1.1.1.2.4 +22 -0 src/crypto/openssl/doc/apps/s_server.pod 1.1.1.1.2.4 +2 -2 src/crypto/openssl/doc/apps/smime.pod 1.1.1.1.2.3 +14 -0 src/crypto/openssl/doc/apps/speed.pod 1.1.1.1.2.2 +8 -0 src/crypto/openssl/doc/apps/version.pod 1.1.1.1.2.3 +126 -21 src/crypto/openssl/doc/apps/x509.pod 1.1.1.1.2.3 +4 -6 src/crypto/openssl/doc/c-indentation.el 1.1.1.1.2.1 +43 -0 src/crypto/openssl/doc/crypto/ASN1_OBJECT_new.pod (new) 1.1.1.1.2.1 +81 -0 src/crypto/openssl/doc/crypto/ASN1_STRING_length.pod (new) 1.1.1.1.2.1 +44 -0 src/crypto/openssl/doc/crypto/ASN1_STRING_new.pod (new) 1.1.1.1.2.1 +96 -0 src/crypto/openssl/doc/crypto/ASN1_STRING_print_ex.pod (new) 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BIO_f_md.pod 1.1.1.1.2.2 +0 -102 src/crypto/openssl/doc/crypto/BIO_new_bio_pair.pod (dead) 1.1.1.1.2.2 +22 -11 src/crypto/openssl/doc/crypto/BIO_s_accept.pod 1.1.1.1.2.2 +54 -2 src/crypto/openssl/doc/crypto/BIO_s_bio.pod 1.1.1.1.2.2 +22 -12 src/crypto/openssl/doc/crypto/BIO_s_connect.pod 1.1.1.1.2.2 +7 -5 src/crypto/openssl/doc/crypto/BIO_s_socket.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BN_CTX_new.pod 1.1.1.1.2.2 +59 -32 src/crypto/openssl/doc/crypto/BN_add.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BN_add_word.pod 1.1.1.1.2.4 +1 -1 src/crypto/openssl/doc/crypto/BN_bn2bin.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BN_copy.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BN_generate_prime.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BN_mod_inverse.pod 1.1.1.1.2.3 +14 -8 src/crypto/openssl/doc/crypto/BN_mod_mul_montgomery.pod 1.1.1.1.2.3 +1 -1 src/crypto/openssl/doc/crypto/BN_mod_mul_reciprocal.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/BN_new.pod 1.1.1.1.2.4 +1 -1 src/crypto/openssl/doc/crypto/BN_rand.pod 1.1.1.1.2.1 +23 -0 src/crypto/openssl/doc/crypto/BN_swap.pod (new) 1.1.1.1.2.3 +4 -1 src/crypto/openssl/doc/crypto/BN_zero.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/DH_generate_key.pod 1.1.1.1.2.2 +2 -1 src/crypto/openssl/doc/crypto/DH_generate_parameters.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/DH_new.pod 1.1.1.1.2.3 +60 -27 src/crypto/openssl/doc/crypto/DH_set_method.pod 1.1.1.1.2.2 +2 -1 src/crypto/openssl/doc/crypto/DSA_SIG_new.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/DSA_do_sign.pod 1.1.1.1.2.2 +2 -2 src/crypto/openssl/doc/crypto/DSA_dup_DH.pod 1.1.1.1.2.2 +2 -1 src/crypto/openssl/doc/crypto/DSA_generate_key.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/DSA_generate_parameters.pod 1.1.1.1.2.2 +3 -2 src/crypto/openssl/doc/crypto/DSA_new.pod 1.1.1.1.2.3 +61 -27 src/crypto/openssl/doc/crypto/DSA_set_method.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/DSA_sign.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/DSA_size.pod 1.1.1.1.2.3 +21 -8 src/crypto/openssl/doc/crypto/ERR_get_error.pod 1.1.1.1.2.1 +67 -0 src/crypto/openssl/doc/crypto/EVP_BytesToKey.pod (new) 1.1.1.1.2.4 +89 -35 src/crypto/openssl/doc/crypto/EVP_DigestInit.pod 1.1.1.1.2.4 +223 -73 src/crypto/openssl/doc/crypto/EVP_EncryptInit.pod 1.1.1.1.2.1 +47 -0 src/crypto/openssl/doc/crypto/EVP_PKEY_new.pod (new) 1.1.1.1.2.1 +80 -0 src/crypto/openssl/doc/crypto/EVP_PKEY_set1_RSA.pod (new) 1.1.1.1.2.3 +2 -0 src/crypto/openssl/doc/crypto/EVP_SealInit.pod 1.1.1.1.2.4 +25 -14 src/crypto/openssl/doc/crypto/EVP_SignInit.pod 1.1.1.1.2.4 +25 -11 src/crypto/openssl/doc/crypto/EVP_VerifyInit.pod 1.1.1.1.2.1 +149 -0 src/crypto/openssl/doc/crypto/OBJ_nid2obj.pod (new) 1.1.1.1.2.4 +6 -0 src/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod 1.1.1.1.2.1 +57 -0 src/crypto/openssl/doc/crypto/PKCS12_create.pod (new) 1.1.1.1.2.1 +50 -0 src/crypto/openssl/doc/crypto/PKCS12_parse.pod (new) 1.1.1.1.2.1 +53 -0 src/crypto/openssl/doc/crypto/PKCS7_decrypt.pod (new) 1.1.1.1.2.1 +65 -0 src/crypto/openssl/doc/crypto/PKCS7_encrypt.pod (new) 1.1.1.1.2.1 +85 -0 src/crypto/openssl/doc/crypto/PKCS7_sign.pod (new) 1.1.1.1.2.1 +116 -0 src/crypto/openssl/doc/crypto/PKCS7_verify.pod (new) 1.1.1.1.2.2 +2 -1 src/crypto/openssl/doc/crypto/RAND_bytes.pod 1.1.1.1.2.4 +18 -0 src/crypto/openssl/doc/crypto/RAND_egd.pod 1.1.1.1.2.2 +35 -11 src/crypto/openssl/doc/crypto/RAND_set_rand_method.pod 1.1.1.1.2.3 +21 -2 src/crypto/openssl/doc/crypto/RSA_check_key.pod 1.1.1.1.2.3 +2 -1 src/crypto/openssl/doc/crypto/RSA_generate_key.pod 1.1.1.1.2.2 +5 -2 src/crypto/openssl/doc/crypto/RSA_new.pod 1.1.1.1.2.3 +3 -3 src/crypto/openssl/doc/crypto/RSA_print.pod 1.1.1.1.2.2 +2 -1 src/crypto/openssl/doc/crypto/RSA_private_encrypt.pod 1.1.1.1.2.3 +2 -5 src/crypto/openssl/doc/crypto/RSA_public_encrypt.pod 1.1.1.1.2.3 +89 -41 src/crypto/openssl/doc/crypto/RSA_set_method.pod 1.1.1.1.2.2 +2 -2 src/crypto/openssl/doc/crypto/RSA_sign.pod 1.1.1.1.2.2 +2 -2 src/crypto/openssl/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod 1.1.1.1.2.2 +1 -1 src/crypto/openssl/doc/crypto/RSA_size.pod 1.1.1.1.2.1 +71 -0 src/crypto/openssl/doc/crypto/SMIME_read_PKCS7.pod (new) 1.1.1.1.2.1 +59 -0 src/crypto/openssl/doc/crypto/SMIME_write_PKCS7.pod (new) 1.1.1.1.2.1 +72 -0 src/crypto/openssl/doc/crypto/X509_NAME_ENTRY_get_object.pod (new) 1.1.1.1.2.1 +110 -0 src/crypto/openssl/doc/crypto/X509_NAME_add_entry_by_txt.pod (new) 1.1.1.1.2.1 +106 -0 src/crypto/openssl/doc/crypto/X509_NAME_get_index_by_NID.pod (new) 1.1.1.1.2.1 +105 -0 src/crypto/openssl/doc/crypto/X509_NAME_print_ex.pod (new) 1.1.1.1.2.1 +37 -0 src/crypto/openssl/doc/crypto/X509_new.pod (new) 1.1.1.1.2.4 +12 -4 src/crypto/openssl/doc/crypto/bn.pod 1.1.1.1.2.3 +10 -9 src/crypto/openssl/doc/crypto/bn_internal.pod 1.1.1.1.2.4 +16 -0 src/crypto/openssl/doc/crypto/crypto.pod 1.1.1.1.2.1 +29 -0 src/crypto/openssl/doc/crypto/d2i_ASN1_OBJECT.pod (new) 1.1.1.1.2.2 +7 -7 src/crypto/openssl/doc/crypto/d2i_DHparams.pod 1.1.1.1.2.1 +82 -0 src/crypto/openssl/doc/crypto/d2i_DSAPublicKey.pod (new) 1.1.1.1.2.1 +56 -0 src/crypto/openssl/doc/crypto/d2i_PKCS8PrivateKey.pod (new) 1.1.1.1.2.2 +33 -6 src/crypto/openssl/doc/crypto/d2i_RSAPublicKey.pod 1.1.1.1.2.1 +231 -0 src/crypto/openssl/doc/crypto/d2i_X509.pod (new) 1.1.1.1.2.1 +30 -0 src/crypto/openssl/doc/crypto/d2i_X509_ALGOR.pod (new) 1.1.1.1.2.1 +37 -0 src/crypto/openssl/doc/crypto/d2i_X509_CRL.pod (new) 1.1.1.1.2.1 +31 -0 src/crypto/openssl/doc/crypto/d2i_X509_NAME.pod (new) 1.1.1.1.2.1 +36 -0 src/crypto/openssl/doc/crypto/d2i_X509_REQ.pod (new) 1.1.1.1.2.1 +30 -0 src/crypto/openssl/doc/crypto/d2i_X509_SIG.pod (new) 1.1.1.1.2.4 +154 -172 src/crypto/openssl/doc/crypto/des.pod 1.1.1.1.2.2 +22 -12 src/crypto/openssl/doc/crypto/dh.pod 1.1.1.1.2.2 +28 -18 src/crypto/openssl/doc/crypto/dsa.pod 1.1.1.1.2.1 +621 -0 src/crypto/openssl/doc/crypto/engine.pod (new) 1.1.1.1.2.3 +9 -1 src/crypto/openssl/doc/crypto/evp.pod 1.1.1.1.2.3 +30 -4 src/crypto/openssl/doc/crypto/hmac.pod 1.1.1.1.2.3 +170 -31 src/crypto/openssl/doc/crypto/lhash.pod 1.1.1.1.2.1 +476 -0 src/crypto/openssl/doc/crypto/pem.pod (new) 1.1.1.1.2.4 +21 -3 src/crypto/openssl/doc/crypto/rand.pod 1.1.1.1.2.4 +21 -14 src/crypto/openssl/doc/crypto/rsa.pod 1.1.1.1.2.4 +1 -1 src/crypto/openssl/doc/crypto/threads.pod 1.1.1.1.2.1 +194 -0 src/crypto/openssl/doc/crypto/ui.pod (new) 1.1.1.1.2.1 +55 -0 src/crypto/openssl/doc/crypto/ui_compat.pod (new) 1.1.1.1.2.3 +1 -1 src/crypto/openssl/doc/openssl.txt 1.1.1.1.2.2 +8 -0 src/crypto/openssl/doc/ssl/SSL_CTX_add_session.pod 1.1.1.1.2.2 +2 -2 src/crypto/openssl/doc/ssl/SSL_CTX_ctrl.pod 1.1.1.1.2.2 +20 -20 src/crypto/openssl/doc/ssl/SSL_CTX_set_cert_verify_callback.pod 1.1.1.1.2.1 +150 -0 src/crypto/openssl/doc/ssl/SSL_CTX_set_generate_session_id.pod (new) 1.1.1.1.2.1 +77 -0 src/crypto/openssl/doc/ssl/SSL_CTX_set_max_cert_list.pod (new) 1.1.1.1.2.1 +99 -0 src/crypto/openssl/doc/ssl/SSL_CTX_set_msg_callback.pod (new) 1.1.1.2.2.3 +34 -14 src/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod 1.1.1.2.2.3 +42 -13 src/crypto/openssl/doc/ssl/SSL_CTX_set_session_cache_mode.pod 1.1.1.1.2.3 +1 -1 src/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod 1.1.1.1.2.2 +4 -4 src/crypto/openssl/doc/ssl/SSL_alert_type_string.pod 1.1.1.1.2.2 +2 -2 src/crypto/openssl/doc/ssl/SSL_rstate_string.pod 1.1.1.1.2.2 +2 -2 src/crypto/openssl/doc/ssl/SSL_state_string.pod 1.1.1.1.2.5 +12 -1 src/crypto/openssl/doc/ssl/ssl.pod 1.1.1.1.2.2 +153 -18 src/crypto/openssl/doc/standards.txt 1.1.1.1.2.5 +126 -65 src/crypto/openssl/e_os.h 1.1.1.1.2.3 +244 -12 src/crypto/openssl/e_os2.h 1.1.1.1.2.5 +6 -9 src/crypto/openssl/openssl.spec 1.1.1.1.2.1 +66 -0 src/crypto/openssl/os2/OS2-EMX.cmd (new) 1.1.1.1.2.1 +0 -17 src/crypto/openssl/perl/MANIFEST (dead) 1.1.1.1.2.1 +0 -45 src/crypto/openssl/perl/Makefile.PL (dead) 1.1.1.1.2.1 +0 -90 src/crypto/openssl/perl/OpenSSL.pm (dead) 1.1.1.1.2.1 +0 -82 src/crypto/openssl/perl/OpenSSL.xs (dead) 1.1.1.1.2.1 +0 -4 src/crypto/openssl/perl/README.1ST (dead) 1.1.1.1.2.1 +0 -96 src/crypto/openssl/perl/openssl.h (dead) 1.1.1.1.2.1 +0 -450 src/crypto/openssl/perl/openssl_bio.xs (dead) 1.1.1.1.2.1 +0 -593 src/crypto/openssl/perl/openssl_bn.xs (dead) 1.1.1.1.2.1 +0 -154 src/crypto/openssl/perl/openssl_cipher.xs (dead) 1.1.1.1.2.1 +0 -84 src/crypto/openssl/perl/openssl_digest.xs (dead) 1.1.1.1.2.1 +0 -47 src/crypto/openssl/perl/openssl_err.xs (dead) 1.1.1.1.2.1 +0 -483 src/crypto/openssl/perl/openssl_ssl.xs (dead) 1.1.1.1.2.1 +0 -75 src/crypto/openssl/perl/openssl_x509.xs (dead) 1.1.1.1.2.1 +0 -13 src/crypto/openssl/perl/t/01-use.t (dead) 1.1.1.1.2.1 +0 -10 src/crypto/openssl/perl/t/02-version.t (dead) 1.1.1.1.2.1 +0 -16 src/crypto/openssl/perl/t/03-bio.t (dead) 1.1.1.1.2.1 +0 -96 src/crypto/openssl/perl/typemap (dead) 1.1.1.1.2.5 +698 -563 src/crypto/openssl/ssl/Makefile.ssl 1.1.1.1.2.3 +7 -1 src/crypto/openssl/ssl/bio_ssl.c 1.1.1.1.2.1 +2157 -0 src/crypto/openssl/ssl/kssl.c (new) 1.1.1.1.2.1 +173 -0 src/crypto/openssl/ssl/kssl.h (new) 1.1.1.1.2.1 +87 -0 src/crypto/openssl/ssl/kssl_lcl.h (new) 1.2.2.5 +28 -15 src/crypto/openssl/ssl/s23_clnt.c 1.2.2.5 +3 -5 src/crypto/openssl/ssl/s23_lib.c 1.1.1.1.2.2 +13 -6 src/crypto/openssl/ssl/s23_meth.c 1.1.1.1.2.3 +1 -54 src/crypto/openssl/ssl/s23_pkt.c 1.2.2.5 +31 -82 src/crypto/openssl/ssl/s23_srvr.c 1.2.2.6 +76 -31 src/crypto/openssl/ssl/s2_clnt.c 1.2.2.6 +11 -9 src/crypto/openssl/ssl/s2_enc.c 1.2.2.6 +49 -35 src/crypto/openssl/ssl/s2_lib.c 1.2.2.5 +15 -10 src/crypto/openssl/ssl/s2_meth.c 1.2.2.5 +6 -3 src/crypto/openssl/ssl/s2_pkt.c 1.2.2.6 +67 -27 src/crypto/openssl/ssl/s2_srvr.c 1.1.1.1.2.5 +40 -20 src/crypto/openssl/ssl/s3_both.c 1.1.1.1.2.6 +284 -119 src/crypto/openssl/ssl/s3_clnt.c 1.1.1.1.2.5 +92 -68 src/crypto/openssl/ssl/s3_enc.c 1.1.1.1.2.5 +461 -50 src/crypto/openssl/ssl/s3_lib.c 1.1.1.1.2.1 +13 -6 src/crypto/openssl/ssl/s3_meth.c 1.1.1.1.2.5 +26 -13 src/crypto/openssl/ssl/s3_pkt.c 1.1.1.1.2.6 +249 -61 src/crypto/openssl/ssl/s3_srvr.c 1.1.1.1.2.6 +317 -110 src/crypto/openssl/ssl/ssl.h 1.1.1.1.2.5 +1 -2 src/crypto/openssl/ssl/ssl2.h 1.1.1.1.2.4 +47 -13 src/crypto/openssl/ssl/ssl3.h 1.1.1.1.2.2 +15 -11 src/crypto/openssl/ssl/ssl_algs.c 1.1.1.1.2.5 +50 -3 src/crypto/openssl/ssl/ssl_asn1.c 1.1.1.1.2.5 +126 -27 src/crypto/openssl/ssl/ssl_cert.c 1.1.1.1.2.3 +75 -8 src/crypto/openssl/ssl/ssl_ciph.c 1.1.1.1.2.6 +18 -3 src/crypto/openssl/ssl/ssl_err.c 1.1.1.1.2.1 +1 -1 src/crypto/openssl/ssl/ssl_err2.c 1.1.1.1.2.5 +317 -99 src/crypto/openssl/ssl/ssl_lib.c 1.1.1.1.2.6 +48 -38 src/crypto/openssl/ssl/ssl_locl.h 1.1.1.1.2.1 +22 -22 src/crypto/openssl/ssl/ssl_rsa.c 1.1.1.1.2.6 +102 -35 src/crypto/openssl/ssl/ssl_sess.c 1.1.1.1.2.3 +20 -20 src/crypto/openssl/ssl/ssl_stat.c 1.1.1.1.2.2 +2 -2 src/crypto/openssl/ssl/ssl_task.c 1.1.1.1.2.3 +13 -1 src/crypto/openssl/ssl/ssl_txt.c 1.1.1.1.2.4 +284 -27 src/crypto/openssl/ssl/ssltest.c 1.1.1.1.2.1 +13 -6 src/crypto/openssl/ssl/t1_clnt.c 1.1.1.1.2.5 +131 -38 src/crypto/openssl/ssl/t1_enc.c 1.1.1.1.2.1 +14 -6 src/crypto/openssl/ssl/t1_meth.c 1.1.1.1.2.1 +13 -6 src/crypto/openssl/ssl/t1_srvr.c 1.1.1.1.2.3 +31 -0 src/crypto/openssl/ssl/tls1.h 1.1.1.1.2.5 +502 -157 src/crypto/openssl/test/Makefile.ssl 1.1.1.1.2.1 +48 -0 src/crypto/openssl/test/dummytest.c (new) 1.1.1.1.2.1 +2 -2 src/crypto/openssl/test/methtest.c 1.1.1.1.2.1 +5 -1 src/crypto/openssl/test/tcrl 1.1.1.1.2.1 +5 -1 src/crypto/openssl/test/testca 1.1.1.1.2.2 +5 -1 src/crypto/openssl/test/testgen 1.1.1.1.2.2 +48 -31 src/crypto/openssl/test/testssl 1.1.1.1.2.1 +5 -1 src/crypto/openssl/test/tpkcs7 1.1.1.1.2.1 +5 -1 src/crypto/openssl/test/tpkcs7d 1.1.1.1.2.2 +5 -1 src/crypto/openssl/test/treq 1.1.1.1.2.2 +5 -1 src/crypto/openssl/test/trsa 1.1.1.1.2.1 +5 -1 src/crypto/openssl/test/tsid 1.1.1.1.2.1 +5 -1 src/crypto/openssl/test/tx509 1.1.1.1.2.1 +9 -6 src/crypto/openssl/tools/Makefile.ssl 1.1.1.1.2.5 +6 -4 src/crypto/openssl/tools/c_rehash 1.1.1.1.2.3 +6 -4 src/crypto/openssl/tools/c_rehash.in 1.1.1.1.2.2 +18 -2 src/crypto/openssl/util/clean-depend.pl 1.1.1.1.2.3 +25 -2 src/crypto/openssl/util/domd 1.1.1.1.2.1 +22 -0 src/crypto/openssl/util/extract-names.pl (new) 1.1.1.1.2.5 +1105 -238 src/crypto/openssl/util/libeay.num 1.1.1.1.2.4 +68 -46 src/crypto/openssl/util/mk1mf.pl 1.1.1.1.2.1 +3 -3 src/crypto/openssl/util/mkcerts.sh 1.1.1.1.2.5 +729 -294 src/crypto/openssl/util/mkdef.pl 1.1.1.1.2.5 +147 -48 src/crypto/openssl/util/mkerr.pl 1.1.1.1.2.2 +6 -1 src/crypto/openssl/util/mkfiles.pl 1.1.1.1.2.3 +12 -3 src/crypto/openssl/util/mklink.pl 1.1.1.1.2.2 +1 -1 src/crypto/openssl/util/mkstack.pl 1.1.1.1.2.1 +2 -2 src/crypto/openssl/util/pl/BC-16.pl 1.1.1.1.2.4 +3 -4 src/crypto/openssl/util/pl/BC-32.pl 1.1.1.1.2.5 +8 -7 src/crypto/openssl/util/pl/Mingw32.pl 1.1.1.1.2.1 +117 -0 src/crypto/openssl/util/pl/OS2-EMX.pl (new) 1.1.1.1.2.1 +1 -2 src/crypto/openssl/util/pl/VC-16.pl 1.1.1.1.2.4 +4 -5 src/crypto/openssl/util/pl/VC-32.pl 1.1.1.1.2.1 +111 -0 src/crypto/openssl/util/pl/VC-CE.pl (new) 1.1.1.1.2.2 +15 -10 src/crypto/openssl/util/pod2mantest 1.1.1.1.2.1 +5 -1 src/crypto/openssl/util/point.sh 1.1.1.1.2.4 +3 -7 src/crypto/openssl/util/selftest.pl 1.1.1.1.2.4 +47 -27 src/crypto/openssl/util/ssleay.num 1.3.2.2 +1 -7 src/crypto/telnet/libtelnet/enc_des.c 1.3.2.2 +1 -7 src/crypto/telnet/libtelnet/kerberos.c 1.219.2.37 +1 -0 src/etc/Makefile 1.97.2.79 +0 -7 src/etc/defaults/make.conf 1.188.2.40 +20 -0 src/etc/mtree/BSD.usr.dist 1.15.2.1 +2 -1 src/gnu/usr.bin/man/manpath/manpath.config 1.15.2.14 +159 -303 src/secure/lib/libcrypto/Makefile 1.3.2.1 +60 -0 src/secure/lib/libcrypto/Makefile.asm (new) 1.7.2.10 +114 -32 src/secure/lib/libcrypto/Makefile.inc 1.1.2.1 +730 -0 src/secure/lib/libcrypto/Makefile.man (new) 1.1.1.2.2.2 +0 -509 src/secure/lib/libcrypto/des_crypt.3 (dead) 1.1.4.1 +932 -0 src/secure/lib/libcrypto/i386/bf-586.s (new) 1.1.4.1 +902 -0 src/secure/lib/libcrypto/i386/bf-686.s (new) 1.1.4.1 +890 -0 src/secure/lib/libcrypto/i386/bn-586.s (new) 1.1.4.1 +971 -0 src/secure/lib/libcrypto/i386/cast-586.s (new) 1.1.4.1 +1270 -0 src/secure/lib/libcrypto/i386/co-586.s (new) 1.1.4.1 +933 -0 src/secure/lib/libcrypto/i386/crypt586.s (new) 1.1.4.1 +3154 -0 src/secure/lib/libcrypto/i386/des-586.s (new) 1.1.4.1 +689 -0 src/secure/lib/libcrypto/i386/md5-586.s (new) 1.1.4.1 +316 -0 src/secure/lib/libcrypto/i386/rc4-586.s (new) 1.1.4.1 +584 -0 src/secure/lib/libcrypto/i386/rc5-586.s (new) 1.1.4.1 +1975 -0 src/secure/lib/libcrypto/i386/rmd-586.s (new) 1.1.4.1 +1960 -0 src/secure/lib/libcrypto/i386/sha1-586.s (new) 1.2.2.1 +176 -0 src/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 (new) 1.2.2.1 +221 -0 src/secure/lib/libcrypto/man/ASN1_STRING_length.3 (new) 1.2.2.1 +177 -0 src/secure/lib/libcrypto/man/ASN1_STRING_new.3 (new) 1.2.2.1 +230 -0 src/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 (new) 1.3.2.1 +267 -0 src/secure/lib/libcrypto/man/BIO_ctrl.3 (new) 1.3.2.1 +224 -0 src/secure/lib/libcrypto/man/BIO_f_base64.3 (new) 1.3.2.1 +207 -0 src/secure/lib/libcrypto/man/BIO_f_buffer.3 (new) 1.3.2.1 +212 -0 src/secure/lib/libcrypto/man/BIO_f_cipher.3 (new) 1.3.2.1 +278 -0 src/secure/lib/libcrypto/man/BIO_f_md.3 (new) 1.3.2.1 +169 -0 src/secure/lib/libcrypto/man/BIO_f_null.3 (new) 1.3.2.1 +497 -0 src/secure/lib/libcrypto/man/BIO_f_ssl.3 (new) 1.3.2.1 +242 -0 src/secure/lib/libcrypto/man/BIO_find_type.3 (new) 1.3.2.1 +203 -0 src/secure/lib/libcrypto/man/BIO_new.3 (new) 1.3.2.1 +208 -0 src/secure/lib/libcrypto/man/BIO_push.3 (new) 1.3.2.1 +203 -0 src/secure/lib/libcrypto/man/BIO_read.3 (new) 1.3.2.1 +343 -0 src/secure/lib/libcrypto/man/BIO_s_accept.3 (new) 1.3.2.1 +325 -0 src/secure/lib/libcrypto/man/BIO_s_bio.3 (new) 1.3.2.1 +332 -0 src/secure/lib/libcrypto/man/BIO_s_connect.3 (new) 1.3.2.1 +229 -0 src/secure/lib/libcrypto/man/BIO_s_fd.3 (new) 1.3.2.1 +286 -0 src/secure/lib/libcrypto/man/BIO_s_file.3 (new) 1.3.2.1 +256 -0 src/secure/lib/libcrypto/man/BIO_s_mem.3 (new) 1.3.2.1 +174 -0 src/secure/lib/libcrypto/man/BIO_s_null.3 (new) 1.3.2.1 +202 -0 src/secure/lib/libcrypto/man/BIO_s_socket.3 (new) 1.3.2.1 +238 -0 src/secure/lib/libcrypto/man/BIO_set_callback.3 (new) 1.3.2.1 +253 -0 src/secure/lib/libcrypto/man/BIO_should_retry.3 (new) 1.3.2.1 +189 -0 src/secure/lib/libcrypto/man/BN_CTX_new.3 (new) 1.3.2.1 +188 -0 src/secure/lib/libcrypto/man/BN_CTX_start.3 (new) 1.3.2.1 +274 -0 src/secure/lib/libcrypto/man/BN_add.3 (new) 1.3.2.1 +196 -0 src/secure/lib/libcrypto/man/BN_add_word.3 (new) 1.3.2.1 +233 -0 src/secure/lib/libcrypto/man/BN_bn2bin.3 (new) 1.3.2.1 +184 -0 src/secure/lib/libcrypto/man/BN_cmp.3 (new) 1.3.2.1 +170 -0 src/secure/lib/libcrypto/man/BN_copy.3 (new) 1.3.2.1 +229 -0 src/secure/lib/libcrypto/man/BN_generate_prime.3 (new) 1.3.2.1 +171 -0 src/secure/lib/libcrypto/man/BN_mod_inverse.3 (new) 1.3.2.1 +240 -0 src/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 (new) 1.3.2.1 +220 -0 src/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 (new) 1.3.2.1 +192 -0 src/secure/lib/libcrypto/man/BN_new.3 (new) 1.3.2.1 +174 -0 src/secure/lib/libcrypto/man/BN_num_bytes.3 (new) 1.3.2.1 +196 -0 src/secure/lib/libcrypto/man/BN_rand.3 (new) 1.3.2.1 +205 -0 src/secure/lib/libcrypto/man/BN_set_bit.3 (new) 1.2.2.1 +160 -0 src/secure/lib/libcrypto/man/BN_swap.3 (new) 1.3.2.1 +195 -0 src/secure/lib/libcrypto/man/BN_zero.3 (new) 1.3.2.1 +186 -0 src/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 (new) 1.3.2.1 +186 -0 src/secure/lib/libcrypto/man/DH_generate_key.3 (new) 1.3.2.1 +207 -0 src/secure/lib/libcrypto/man/DH_generate_parameters.3 (new) 1.3.2.1 +174 -0 src/secure/lib/libcrypto/man/DH_get_ex_new_index.3 (new) 1.3.2.1 +176 -0 src/secure/lib/libcrypto/man/DH_new.3 (new) 1.3.2.1 +276 -0 src/secure/lib/libcrypto/man/DH_set_method.3 (new) 1.3.2.1 +168 -0 src/secure/lib/libcrypto/man/DH_size.3 (new) 1.3.2.1 +176 -0 src/secure/lib/libcrypto/man/DSA_SIG_new.3 (new) 1.3.2.1 +183 -0 src/secure/lib/libcrypto/man/DSA_do_sign.3 (new) 1.3.2.1 +170 -0 src/secure/lib/libcrypto/man/DSA_dup_DH.3 (new) 1.3.2.1 +169 -0 src/secure/lib/libcrypto/man/DSA_generate_key.3 (new) 1.3.2.1 +223 -0 src/secure/lib/libcrypto/man/DSA_generate_parameters.3 (new) 1.3.2.1 +174 -0 src/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 (new) 1.3.2.1 +178 -0 src/secure/lib/libcrypto/man/DSA_new.3 (new) 1.3.2.1 +291 -0 src/secure/lib/libcrypto/man/DSA_set_method.3 (new) 1.3.2.1 +202 -0 src/secure/lib/libcrypto/man/DSA_sign.3 (new) 1.3.2.1 +168 -0 src/secure/lib/libcrypto/man/DSA_size.3 (new) 1.3.2.1 +188 -0 src/secure/lib/libcrypto/man/ERR_GET_LIB.3 (new) 1.3.2.1 +164 -0 src/secure/lib/libcrypto/man/ERR_clear_error.3 (new) 1.3.2.1 +210 -0 src/secure/lib/libcrypto/man/ERR_error_string.3 (new) 1.3.2.1 +213 -0 src/secure/lib/libcrypto/man/ERR_get_error.3 (new) 1.3.2.1 +183 -0 src/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 (new) 1.3.2.1 +192 -0 src/secure/lib/libcrypto/man/ERR_load_strings.3 (new) 1.3.2.1 +186 -0 src/secure/lib/libcrypto/man/ERR_print_errors.3 (new) 1.3.2.1 +180 -0 src/secure/lib/libcrypto/man/ERR_put_error.3 (new) 1.3.2.1 +169 -0 src/secure/lib/libcrypto/man/ERR_remove_state.3 (new) 1.2.2.1 +204 -0 src/secure/lib/libcrypto/man/EVP_BytesToKey.3 (new) 1.3.2.1 +406 -0 src/secure/lib/libcrypto/man/EVP_DigestInit.3 (new) 1.3.2.1 +644 -0 src/secure/lib/libcrypto/man/EVP_EncryptInit.3 (new) 1.3.2.1 +198 -0 src/secure/lib/libcrypto/man/EVP_OpenInit.3 (new) 1.2.2.1 +180 -0 src/secure/lib/libcrypto/man/EVP_PKEY_new.3 (new) 1.2.2.1 +217 -0 src/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 (new) 1.3.2.1 +212 -0 src/secure/lib/libcrypto/man/EVP_SealInit.3 (new) 1.3.2.1 +231 -0 src/secure/lib/libcrypto/man/EVP_SignInit.3 (new) 1.3.2.1 +220 -0 src/secure/lib/libcrypto/man/EVP_VerifyInit.3 (new) 1.2.2.1 +292 -0 src/secure/lib/libcrypto/man/OBJ_nid2obj.3 (new) 1.3.2.1 +230 -0 src/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 (new) 1.3.2.1 +201 -0 src/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 (new) 1.2.2.1 +192 -0 src/secure/lib/libcrypto/man/PKCS12_create.3 (new) 1.2.2.1 +182 -0 src/secure/lib/libcrypto/man/PKCS12_parse.3 (new) 1.2.2.1 +183 -0 src/secure/lib/libcrypto/man/PKCS7_decrypt.3 (new) 1.2.2.1 +195 -0 src/secure/lib/libcrypto/man/PKCS7_encrypt.3 (new) 1.2.2.1 +215 -0 src/secure/lib/libcrypto/man/PKCS7_sign.3 (new) 1.2.2.1 +245 -0 src/secure/lib/libcrypto/man/PKCS7_verify.3 (new) 1.3.2.1 +215 -0 src/secure/lib/libcrypto/man/RAND_add.3 (new) 1.3.2.1 +183 -0 src/secure/lib/libcrypto/man/RAND_bytes.3 (new) 1.3.2.1 +164 -0 src/secure/lib/libcrypto/man/RAND_cleanup.3 (new) 1.3.2.1 +220 -0 src/secure/lib/libcrypto/man/RAND_egd.3 (new) 1.3.2.1 +190 -0 src/secure/lib/libcrypto/man/RAND_load_file.3 (new) 1.3.2.1 +219 -0 src/secure/lib/libcrypto/man/RAND_set_rand_method.3 (new) 1.3.2.1 +179 -0 src/secure/lib/libcrypto/man/RSA_blinding_on.3 (new) 1.3.2.1 +200 -0 src/secure/lib/libcrypto/man/RSA_check_key.3 (new) 1.3.2.1 +193 -0 src/secure/lib/libcrypto/man/RSA_generate_key.3 (new) 1.3.2.1 +257 -0 src/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 (new) 1.3.2.1 +177 -0 src/secure/lib/libcrypto/man/RSA_new.3 (new) 1.3.2.1 +259 -0 src/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 (new) 1.3.2.1 +188 -0 src/secure/lib/libcrypto/man/RSA_print.3 (new) 1.3.2.1 +200 -0 src/secure/lib/libcrypto/man/RSA_private_encrypt.3 (new) 1.3.2.1 +210 -0 src/secure/lib/libcrypto/man/RSA_public_encrypt.3 (new) 1.3.2.1 +356 -0 src/secure/lib/libcrypto/man/RSA_set_method.3 (new) 1.3.2.1 +196 -0 src/secure/lib/libcrypto/man/RSA_sign.3 (new) 1.3.2.1 +194 -0 src/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 (new) 1.3.2.1 +168 -0 src/secure/lib/libcrypto/man/RSA_size.3 (new) 1.2.2.1 +204 -0 src/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 (new) 1.2.2.1 +189 -0 src/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 (new) 1.2.2.1 +204 -0 src/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 (new) 1.2.2.1 +242 -0 src/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 (new) 1.2.2.1 +241 -0 src/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 (new) 1.2.2.1 +239 -0 src/secure/lib/libcrypto/man/X509_NAME_print_ex.3 (new) 1.2.2.1 +171 -0 src/secure/lib/libcrypto/man/X509_new.3 (new) 1.3.2.1 +190 -0 src/secure/lib/libcrypto/man/bio.3 (new) 1.3.2.1 +247 -0 src/secure/lib/libcrypto/man/blowfish.3 (new) 1.3.2.1 +309 -0 src/secure/lib/libcrypto/man/bn.3 (new) 1.3.2.1 +366 -0 src/secure/lib/libcrypto/man/bn_internal.3 (new) 1.3.2.1 +212 -0 src/secure/lib/libcrypto/man/buffer.3 (new) 1.3.2.1 +208 -0 src/secure/lib/libcrypto/man/crypto.3 (new) 1.2.2.1 +165 -0 src/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 (new) 1.3.2.1 +166 -0 src/secure/lib/libcrypto/man/d2i_DHparams.3 (new) 1.2.2.1 +226 -0 src/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 (new) 1.2.2.1 +196 -0 src/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 (new) 1.3.2.1 +208 -0 src/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 (new) 1.2.2.1 +396 -0 src/secure/lib/libcrypto/man/d2i_X509.3 (new) 1.2.2.1 +166 -0 src/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 (new) 1.2.2.1 +175 -0 src/secure/lib/libcrypto/man/d2i_X509_CRL.3 (new) 1.2.2.1 +167 -0 src/secure/lib/libcrypto/man/d2i_X509_NAME.3 (new) 1.2.2.1 +174 -0 src/secure/lib/libcrypto/man/d2i_X509_REQ.3 (new) 1.2.2.1 +166 -0 src/secure/lib/libcrypto/man/d2i_X509_SIG.3 (new) 1.3.2.1 +500 -0 src/secure/lib/libcrypto/man/des.3 (new) 1.2.2.1 +290 -0 src/secure/lib/libcrypto/man/des_modes.3 (new) 1.3.2.1 +223 -0 src/secure/lib/libcrypto/man/dh.3 (new) 1.3.2.1 +262 -0 src/secure/lib/libcrypto/man/dsa.3 (new) 1.2.2.1 +784 -0 src/secure/lib/libcrypto/man/engine.3 (new) 1.3.2.1 +334 -0 src/secure/lib/libcrypto/man/err.3 (new) 1.3.2.1 +181 -0 src/secure/lib/libcrypto/man/evp.3 (new) 1.3.2.1 +239 -0 src/secure/lib/libcrypto/man/hmac.3 (new) 1.3.2.1 +196 -0 src/secure/lib/libcrypto/man/lh_stats.3 (new) 1.3.2.1 +438 -0 src/secure/lib/libcrypto/man/lhash.3 (new) 1.3.2.1 +239 -0 src/secure/lib/libcrypto/man/md5.3 (new) 1.3.2.1 +199 -0 src/secure/lib/libcrypto/man/mdc2.3 (new) 1.2.2.1 +689 -0 src/secure/lib/libcrypto/man/pem.3 (new) 1.3.2.1 +307 -0 src/secure/lib/libcrypto/man/rand.3 (new) 1.3.2.1 +197 -0 src/secure/lib/libcrypto/man/rc4.3 (new) 1.3.2.1 +201 -0 src/secure/lib/libcrypto/man/ripemd.3 (new) 1.3.2.1 +269 -0 src/secure/lib/libcrypto/man/rsa.3 (new) 1.3.2.1 +205 -0 src/secure/lib/libcrypto/man/sha.3 (new) 1.3.2.1 +296 -0 src/secure/lib/libcrypto/man/threads.3 (new) 1.2.2.1 +339 -0 src/secure/lib/libcrypto/man/ui.3 (new) 1.2.2.1 +190 -0 src/secure/lib/libcrypto/man/ui_compat.3 (new) 1.1.2.4 +3 -1 src/secure/lib/libcrypto/opensslconf-alpha.h 1.1.2.4 +4 -2 src/secure/lib/libcrypto/opensslconf-i386.h 1.4.2.8 +13 -12 src/secure/lib/libssl/Makefile 1.1.2.1 +206 -0 src/secure/lib/libssl/Makefile.man (new) 1.2.2.1 +236 -0 src/secure/lib/libssl/man/SSL_CIPHER_get_name.3 (new) 1.2.2.1 +197 -0 src/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 (new) 1.2.2.1 +174 -0 src/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 (new) 1.2.2.1 +205 -0 src/secure/lib/libssl/man/SSL_CTX_add_session.3 (new) 1.2.2.1 +171 -0 src/secure/lib/libssl/man/SSL_CTX_ctrl.3 (new) 1.2.2.1 +185 -0 src/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 (new) 1.2.2.1 +167 -0 src/secure/lib/libssl/man/SSL_CTX_free.3 (new) 1.2.2.1 +193 -0 src/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 (new) 1.2.2.1 +186 -0 src/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 (new) 1.2.2.1 +254 -0 src/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 (new) 1.2.2.1 +215 -0 src/secure/lib/libssl/man/SSL_CTX_new.3 (new) 1.2.2.1 +212 -0 src/secure/lib/libssl/man/SSL_CTX_sess_number.3 (new) 1.2.2.1 +186 -0 src/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 (new) 1.2.2.1 +223 -0 src/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 (new) 1.2.2.1 +170 -0 src/secure/lib/libssl/man/SSL_CTX_sessions.3 (new) 1.2.2.1 +192 -0 src/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 (new) 1.2.2.1 +208 -0 src/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 (new) 1.2.2.1 +205 -0 src/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 (new) 1.2.2.1 +223 -0 src/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 (new) 1.2.2.1 +229 -0 src/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 (new) 1.2.2.1 +213 -0 src/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 (new) 1.2.2.1 +288 -0 src/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 (new) 1.2.2.1 +284 -0 src/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 (new) 1.2.2.1 +212 -0 src/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 (new) 1.2.2.1 +209 -0 src/secure/lib/libssl/man/SSL_CTX_set_mode.3 (new) 1.2.2.1 +225 -0 src/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 (new) 1.2.2.1 +339 -0 src/secure/lib/libssl/man/SSL_CTX_set_options.3 (new) 1.2.2.1 +199 -0 src/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 (new) 1.2.2.1 +257 -0 src/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 (new) 1.2.2.1 +209 -0 src/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 (new) 1.2.2.1 +189 -0 src/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 (new) 1.2.2.1 +194 -0 src/secure/lib/libssl/man/SSL_CTX_set_timeout.3 (new) 1.2.2.1 +312 -0 src/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 (new) 1.2.2.1 +309 -0 src/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 (new) 1.2.2.1 +434 -0 src/secure/lib/libssl/man/SSL_CTX_set_verify.3 (new) 1.2.2.1 +293 -0 src/secure/lib/libssl/man/SSL_CTX_use_certificate.3 (new) 1.2.2.1 +190 -0 src/secure/lib/libssl/man/SSL_SESSION_free.3 (new) 1.2.2.1 +200 -0 src/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 (new) 1.2.2.1 +200 -0 src/secure/lib/libssl/man/SSL_SESSION_get_time.3 (new) 1.2.2.1 +202 -0 src/secure/lib/libssl/man/SSL_accept.3 (new) 1.2.2.1 +360 -0 src/secure/lib/libssl/man/SSL_alert_type_string.3 (new) 1.2.2.1 +197 -0 src/secure/lib/libssl/man/SSL_clear.3 (new) 1.2.2.1 +199 -0 src/secure/lib/libssl/man/SSL_connect.3 (new) 1.2.2.1 +202 -0 src/secure/lib/libssl/man/SSL_do_handshake.3 (new) 1.2.2.1 +180 -0 src/secure/lib/libssl/man/SSL_free.3 (new) 1.2.2.1 +162 -0 src/secure/lib/libssl/man/SSL_get_SSL_CTX.3 (new) 1.2.2.1 +177 -0 src/secure/lib/libssl/man/SSL_get_ciphers.3 (new) 1.2.2.1 +183 -0 src/secure/lib/libssl/man/SSL_get_client_CA_list.3 (new) 1.2.2.1 +179 -0 src/secure/lib/libssl/man/SSL_get_current_cipher.3 (new) 1.2.2.1 +176 -0 src/secure/lib/libssl/man/SSL_get_default_timeout.3 (new) 1.2.2.1 +238 -0 src/secure/lib/libssl/man/SSL_get_error.3 (new) 1.2.2.1 +190 -0 src/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 (new) 1.2.2.1 +198 -0 src/secure/lib/libssl/man/SSL_get_ex_new_index.3 (new) 1.2.2.1 +174 -0 src/secure/lib/libssl/man/SSL_get_fd.3 (new) 1.2.2.1 +181 -0 src/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 (new) 1.2.2.1 +184 -0 src/secure/lib/libssl/man/SSL_get_peer_certificate.3 (new) 1.2.2.1 +170 -0 src/secure/lib/libssl/man/SSL_get_rbio.3 (new) 1.2.2.1 +202 -0 src/secure/lib/libssl/man/SSL_get_session.3 (new) 1.2.2.1 +185 -0 src/secure/lib/libssl/man/SSL_get_verify_result.3 (new) 1.2.2.1 +174 -0 src/secure/lib/libssl/man/SSL_get_version.3 (new) 1.2.2.1 +187 -0 src/secure/lib/libssl/man/SSL_library_init.3 (new) 1.2.2.1 +193 -0 src/secure/lib/libssl/man/SSL_load_client_CA_file.3 (new) 1.2.2.1 +174 -0 src/secure/lib/libssl/man/SSL_new.3 (new) 1.2.2.1 +177 -0 src/secure/lib/libssl/man/SSL_pending.3 (new) 1.2.2.1 +244 -0 src/secure/lib/libssl/man/SSL_read.3 (new) 1.2.2.1 +190 -0 src/secure/lib/libssl/man/SSL_rstate_string.3 (new) 1.2.2.1 +173 -0 src/secure/lib/libssl/man/SSL_session_reused.3 (new) 1.2.2.1 +170 -0 src/secure/lib/libssl/man/SSL_set_bio.3 (new) 1.2.2.1 +191 -0 src/secure/lib/libssl/man/SSL_set_connect_state.3 (new) 1.2.2.1 +183 -0 src/secure/lib/libssl/man/SSL_set_fd.3 (new) 1.2.2.1 +185 -0 src/secure/lib/libssl/man/SSL_set_session.3 (new) 1.2.2.1 +200 -0 src/secure/lib/libssl/man/SSL_set_shutdown.3 (new) 1.2.2.1 +173 -0 src/secure/lib/libssl/man/SSL_set_verify_result.3 (new) 1.2.2.1 +237 -0 src/secure/lib/libssl/man/SSL_shutdown.3 (new) 1.2.2.1 +180 -0 src/secure/lib/libssl/man/SSL_state_string.3 (new) 1.2.2.1 +204 -0 src/secure/lib/libssl/man/SSL_want.3 (new) 1.2.2.1 +235 -0 src/secure/lib/libssl/man/SSL_write.3 (new) 1.2.2.1 +201 -0 src/secure/lib/libssl/man/d2i_SSL_SESSION.3 (new) 1.2.2.1 +814 -0 src/secure/lib/libssl/man/ssl.3 (new) 1.11.2.6 +15 -24 src/secure/usr.bin/openssl/Makefile 1.1.2.1 +42 -0 src/secure/usr.bin/openssl/Makefile.man (new) 1.2.2.1 +302 -0 src/secure/usr.bin/openssl/man/CA.pl.1 (new) 1.2.2.1 +251 -0 src/secure/usr.bin/openssl/man/asn1parse.1 (new) 1.2.2.1 +694 -0 src/secure/usr.bin/openssl/man/ca.1 (new) 1.2.2.1 +497 -0 src/secure/usr.bin/openssl/man/ciphers.1 (new) 1.1.2.1 +282 -0 src/secure/usr.bin/openssl/man/config.1 (new) 1.2.2.1 +237 -0 src/secure/usr.bin/openssl/man/crl.1 (new) 1.2.2.1 +216 -0 src/secure/usr.bin/openssl/man/crl2pkcs7.1 (new) 1.2.2.1 +223 -0 src/secure/usr.bin/openssl/man/dgst.1 (new) 1.2.2.1 +249 -0 src/secure/usr.bin/openssl/man/dhparam.1 (new) 1.2.2.1 +275 -0 src/secure/usr.bin/openssl/man/dsa.1 (new) 1.2.2.1 +222 -0 src/secure/usr.bin/openssl/man/dsaparam.1 (new) 1.2.2.1 +399 -0 src/secure/usr.bin/openssl/man/enc.1 (new) 1.2.2.1 +184 -0 src/secure/usr.bin/openssl/man/gendsa.1 (new) 1.2.2.1 +209 -0 src/secure/usr.bin/openssl/man/genrsa.1 (new) 1.2.2.1 +199 -0 src/secure/usr.bin/openssl/man/nseq.1 (new) 1.2.2.1 +451 -0 src/secure/usr.bin/openssl/man/ocsp.1 (new) 1.2.2.1 +407 -0 src/secure/usr.bin/openssl/man/openssl.1 (new) 1.2.2.1 +203 -0 src/secure/usr.bin/openssl/man/passwd.1 (new) 1.2.2.1 +429 -0 src/secure/usr.bin/openssl/man/pkcs12.1 (new) 1.2.2.1 +223 -0 src/secure/usr.bin/openssl/man/pkcs7.1 (new) 1.2.2.1 +348 -0 src/secure/usr.bin/openssl/man/pkcs8.1 (new) 1.2.2.1 +177 -0 src/secure/usr.bin/openssl/man/rand.1 (new) 1.2.2.1 +693 -0 src/secure/usr.bin/openssl/man/req.1 (new) 1.2.2.1 +301 -0 src/secure/usr.bin/openssl/man/rsa.1 (new) 1.2.2.1 +312 -0 src/secure/usr.bin/openssl/man/rsautl.1 (new) 1.2.2.1 +347 -0 src/secure/usr.bin/openssl/man/s_client.1 (new) 1.2.2.1 +385 -0 src/secure/usr.bin/openssl/man/s_server.1 (new) 1.2.2.1 +258 -0 src/secure/usr.bin/openssl/man/sess_id.1 (new) 1.2.2.1 +473 -0 src/secure/usr.bin/openssl/man/smime.1 (new) 1.2.2.1 +188 -0 src/secure/usr.bin/openssl/man/speed.1 (new) 1.2.2.1 +248 -0 src/secure/usr.bin/openssl/man/spkac.1 (new) 1.2.2.1 +408 -0 src/secure/usr.bin/openssl/man/verify.1 (new) 1.2.2.1 +186 -0 src/secure/usr.bin/openssl/man/version.1 (new) 1.2.2.1 +829 -0 src/secure/usr.bin/openssl/man/x509.1 (new) 1.12.2.29 +0 -9 src/share/man/man5/make.conf.5 1.61.2.36 +1 -1 src/sys/sys/param.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 14:49:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B13F37B401; Fri, 14 Feb 2003 14:49:35 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D118343F93; Fri, 14 Feb 2003 14:49:34 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 93E1DAE279; Fri, 14 Feb 2003 14:49:34 -0800 (PST) Date: Fri, 14 Feb 2003 14:49:34 -0800 From: Alfred Perlstein To: Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG, David Schultz Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030214224934.GW93252@elvis.mu.org> References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> <20030214191957.GO93252@elvis.mu.org> <20030214214748.GA2520@HAL9000.homeunix.com> <20030214221301.GU93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214221301.GU93252@elvis.mu.org> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Alfred Perlstein [030214 14:13] wrote: > * David Schultz [030214 13:48] wrote: > > > > > > More like when looking at the file in otder to fix other things I was so > > > turned off by it that it offended me and for that reason needed fixing. > > > > A single extra space at the end of a line offends you? Some of > > the ``style problems'' fixed by this commit aren't even in > > style(9). However, the following IS in style(9): > > What part of "i needed to work on this file and the badness of the > style made it hard for me to do so" don't you understand? > > I really have better things to do, so should you. Sorry, this was a bit over the top, but I was up until 5am working on stuff that "should work" and this is the first response I get from the community, complaining about some whitespace changes I did in order to make my work easier... not fun. :( -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 15:50:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A9CD37B401; Fri, 14 Feb 2003 15:50:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCA9243FBF; Fri, 14 Feb 2003 15:50:49 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ENonbv013190; Fri, 14 Feb 2003 15:50:49 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ENonnK013176; Fri, 14 Feb 2003 15:50:49 -0800 (PST) Message-Id: <200302142350.h1ENonnK013176@repoman.freebsd.org> From: Wilko Bulte Date: Fri, 14 Feb 2003 15:50:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2003/02/14 15:50:49 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Now that I finally tested ES40 write some notes about these machines. Triggered that ES40 should 'just work by': gallatin Revision Changes Path 1.57 +79 -0 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 15:52:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C181B37B401; Fri, 14 Feb 2003 15:52:28 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDEF843FBF; Fri, 14 Feb 2003 15:52:27 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1ENqPbL003233; Fri, 14 Feb 2003 15:52:25 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1ENqLbs003232; Fri, 14 Feb 2003 15:52:21 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Fri, 14 Feb 2003 15:52:21 -0800 From: David Schultz To: Alfred Perlstein Cc: Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030214235221.GA3200@HAL9000.homeunix.com> Mail-Followup-To: Alfred Perlstein , Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> <20030214191957.GO93252@elvis.mu.org> <20030214214748.GA2520@HAL9000.homeunix.com> <20030214221301.GU93252@elvis.mu.org> <20030214224934.GW93252@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214224934.GW93252@elvis.mu.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Alfred Perlstein : > * Alfred Perlstein [030214 14:13] wrote: > > * David Schultz [030214 13:48] wrote: > > > > > > > > More like when looking at the file in otder to fix other things I was so > > > > turned off by it that it offended me and for that reason needed fixing. > > > > > > A single extra space at the end of a line offends you? Some of > > > the ``style problems'' fixed by this commit aren't even in > > > style(9). However, the following IS in style(9): > > > > What part of "i needed to work on this file and the badness of the > > style made it hard for me to do so" don't you understand? > > > > I really have better things to do, so should you. > > Sorry, this was a bit over the top, but I was up until 5am working > on stuff that "should work" and this is the first response I get > from the community, complaining about some whitespace changes I did > in order to make my work easier... not fun. :( Don't get me wrong---I don't mean to demean your work at all. For me, the key question is: If I update my sources every few days, how often do I have to resolve conflicts? It would be *really* great if whitespace changes always happened in the same places and at around the same times as content changes (in a separate commit, of course). In particular, I think things like trailing whitespace might as well be ignored, since they don't cause problems as misindented and overly long lines do. (Maybe your editing environment makes that difficult, and I can respect that.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 15:53:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 523A637B401; Fri, 14 Feb 2003 15:53:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E293B43FE3; Fri, 14 Feb 2003 15:53:19 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ENrJbv016057; Fri, 14 Feb 2003 15:53:19 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ENrJI5016056; Fri, 14 Feb 2003 15:53:19 -0800 (PST) Message-Id: <200302142353.h1ENrJI5016056@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 14 Feb 2003 15:53:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh machdep.h memalloc.c nodes.c.pat X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/14 15:53:19 PST Modified files: bin/sh memalloc.c nodes.c.pat Removed files: bin/sh machdep.h Log: Use the ALIGN macro from instead of defining our own incorrect version in machdep.h. Delete machdep.h. Revision Changes Path 1.7 +0 -52 src/bin/sh/machdep.h (dead) 1.20 +2 -1 src/bin/sh/memalloc.c 1.9 +2 -1 src/bin/sh/nodes.c.pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 15:54: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B43637B406; Fri, 14 Feb 2003 15:53:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC23843F85; Fri, 14 Feb 2003 15:53:58 -0800 (PST) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1ENrwbv016130; Fri, 14 Feb 2003 15:53:58 -0800 (PST) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1ENrwpN016129; Fri, 14 Feb 2003 15:53:58 -0800 (PST) Message-Id: <200302142353.h1ENrwpN016129@repoman.freebsd.org> From: Wilko Bulte Date: Fri, 14 Feb 2003 15:53:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2003/02/14 15:53:58 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Now that I finally tested ES40 write some notes about these machines. Triggered that ES40 should 'just work by': gallatin Revision Changes Path 1.13.2.33 +79 -0 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 16:24: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63ABF37B407 for ; Fri, 14 Feb 2003 16:24:02 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id EE78043FE9 for ; Fri, 14 Feb 2003 16:23:58 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 39261 invoked by uid 1000); 15 Feb 2003 00:24:00 -0000 Date: Fri, 14 Feb 2003 16:24:00 -0800 (PST) From: Nate Lawson To: Kirk McKusick Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dumpfs dumpfs.c src/sbin/fsck_ffs fsck.h src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: <200302142108.h1EL8EWm048101@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 14 Feb 2003, Kirk McKusick wrote: > Modified files: (Branch: RELENG_5_0) > sbin/dumpfs dumpfs.c > sbin/fsck_ffs fsck.h > sbin/newfs mkfs.c newfs.c newfs.h > Log: > Correct lines incorrectly added to the copyright message. Add missing period. Since 5.0 has gone out, RELENG_5_0 is closed except for security fixes. RELENG_5 should be created somewhere around 5.1R. -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 16:31:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4580C37B405 for ; Fri, 14 Feb 2003 16:31:11 -0800 (PST) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 6234643FAF for ; Fri, 14 Feb 2003 16:31:09 -0800 (PST) (envelope-from nate@rootlabs.com) Received: (qmail 39286 invoked by uid 1000); 15 Feb 2003 00:31:10 -0000 Date: Fri, 14 Feb 2003 16:31:10 -0800 (PST) From: Nate Lawson To: "Andrey A. Chernov" Cc: Juli Mallett , Kirk McKusick , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c In-Reply-To: <20030214221503.GA59673@nagual.pp.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 15 Feb 2003, Andrey A. Chernov wrote: > On Fri, Feb 14, 2003 at 15:33:28 -0600, Juli Mallett wrote: > > Are the sequences for it also repeatable in the newfs case for e.g. the > > regression tests, where it is used unseeded? > > Obvious answer - no. > > BTW, this fix really fixes nothing for FreeBSD case because we already use > srandomdev() (for non-regression case). Speaking totally informally, arc4 is more secure for this purpose than an LFSR despite seeding the latter via srandomdev(). -Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 16:37: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA37437B401; Fri, 14 Feb 2003 16:36:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1491A43FB1; Fri, 14 Feb 2003 16:36:59 -0800 (PST) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F0awbv030642; Fri, 14 Feb 2003 16:36:58 -0800 (PST) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F0awX1030641; Fri, 14 Feb 2003 16:36:58 -0800 (PST) Message-Id: <200302150036.h1F0awX1030641@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 14 Feb 2003 16:36:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/installation/common install.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2003/02/14 16:36:58 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/installation/common install.sgml Log: MFC: FIPS 2.0 supports VFAT and FAT32. Reflect documentation to this fact. install.sgml 1.13->1.14 (Well, I merged the part of this delta that wasn't a gratuitous whitespace change.) PR: 35684 Revision Changes Path 1.1.2.13 +3 -4 src/release/doc/en_US.ISO8859-1/installation/common/install.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 16:37: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A189037B405; Fri, 14 Feb 2003 16:37:00 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31AC943FAF; Fri, 14 Feb 2003 16:37:00 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 04B93AE25A; Fri, 14 Feb 2003 16:36:59 -0800 (PST) Date: Fri, 14 Feb 2003 16:36:59 -0800 From: Alfred Perlstein To: Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030215003659.GY93252@elvis.mu.org> References: <200302141244.h1ECimG1059062@repoman.freebsd.org> <275601c2d43b$ebd9e580$52557f42@errno.com> <20030214191957.GO93252@elvis.mu.org> <20030214214748.GA2520@HAL9000.homeunix.com> <20030214221301.GU93252@elvis.mu.org> <20030214224934.GW93252@elvis.mu.org> <20030214235221.GA3200@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030214235221.GA3200@HAL9000.homeunix.com> User-Agent: Mutt/1.4i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * David Schultz [030214 15:52] wrote: > > Don't get me wrong---I don't mean to demean your work at all. For > me, the key question is: If I update my sources every few days, > how often do I have to resolve conflicts? It would be *really* > great if whitespace changes always happened in the same places and > at around the same times as content changes (in a separate commit, > of course). In particular, I think things like trailing > whitespace might as well be ignored, since they don't cause > problems as misindented and overly long lines do. (Maybe your > editing environment makes that difficult, and I can respect that.) My editing environment highlights trailing whitespace with blinding yellow. :) Please have mercy. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 16:54:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B97237B401; Fri, 14 Feb 2003 16:54:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A04CB43FCB; Fri, 14 Feb 2003 16:54:11 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F0sBbv037757; Fri, 14 Feb 2003 16:54:11 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F0sBja037756; Fri, 14 Feb 2003 16:54:11 -0800 (PST) Message-Id: <200302150054.h1F0sBja037756@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Feb 2003 16:54:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire firewire.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/14 16:54:11 PST Modified files: sys/dev/firewire firewire.c Log: - Increase split transaction timeout from 2 sec to 6 sec. Problem reported by: Michael Reifenberger - Improve debug message. Revision Changes Path 1.39 +3 -3 src/sys/dev/firewire/firewire.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 17:25:41 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 536DE37B401; Fri, 14 Feb 2003 17:25:40 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8E4543FA3; Fri, 14 Feb 2003 17:25:39 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F1Pdbv048657; Fri, 14 Feb 2003 17:25:39 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F1PdGZ048656; Fri, 14 Feb 2003 17:25:39 -0800 (PST) Message-Id: <200302150125.h1F1PdGZ048656@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Feb 2003 17:25:39 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire fwohci_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/14 17:25:39 PST Modified files: sys/dev/firewire fwohci_pci.c Log: Protect calling fwohci_intr() with splfw() for 4-stable. Revision Changes Path 1.17 +3 -1 src/sys/dev/firewire/fwohci_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 17:26:20 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D57337B401; Fri, 14 Feb 2003 17:26:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BA9F43FA3; Fri, 14 Feb 2003 17:26:19 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F1QJbv048693; Fri, 14 Feb 2003 17:26:19 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F1QI96048692; Fri, 14 Feb 2003 17:26:18 -0800 (PST) Message-Id: <200302150126.h1F1QI96048692@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Fri, 14 Feb 2003 17:26:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/firewire firewire.c fwohci_pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG simokawa 2003/02/14 17:26:18 PST Modified files: (Branch: RELENG_4) sys/dev/firewire firewire.c fwohci_pci.c Log: MFC: - Clear the bus reset event flag as soon as possible after the initialization has completed. - Increase split transaction timeout. Revision Changes Path 1.3.2.15 +3 -3 src/sys/dev/firewire/firewire.c 1.3.2.7 +12 -1 src/sys/dev/firewire/fwohci_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 17:46:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96BA037B407; Fri, 14 Feb 2003 17:46:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1757343FDD; Fri, 14 Feb 2003 17:46:23 -0800 (PST) (envelope-from takawata@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F1kMbv055874; Fri, 14 Feb 2003 17:46:22 -0800 (PST) (envelope-from takawata@repoman.freebsd.org) Received: (from takawata@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F1kMPF055873; Fri, 14 Feb 2003 17:46:22 -0800 (PST) Message-Id: <200302150146.h1F1kMPF055873@repoman.freebsd.org> From: Takanori Watanabe Date: Fri, 14 Feb 2003 17:46:22 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica acpi.c acpi_acad.c acpi_battery.c acpi_cmbat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG takawata 2003/02/14 17:46:22 PST Modified files: sys/dev/acpica acpi.c acpi_acad.c acpi_battery.c acpi_cmbat.c Log: Allow non-privilaged user to retrive battery or AC line information. Reviewed by: rwatson Revision Changes Path 1.84 +11 -1 src/sys/dev/acpica/acpi.c 1.14 +5 -0 src/sys/dev/acpica/acpi_acad.c 1.7 +6 -0 src/sys/dev/acpica/acpi_battery.c 1.20 +5 -0 src/sys/dev/acpica/acpi_cmbat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 18:19:52 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6D2837B401; Fri, 14 Feb 2003 18:19:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7724443F93; Fri, 14 Feb 2003 18:19:50 -0800 (PST) (envelope-from wes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F2Jobv066745; Fri, 14 Feb 2003 18:19:50 -0800 (PST) (envelope-from wes@repoman.freebsd.org) Received: (from wes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F2JokN066744; Fri, 14 Feb 2003 18:19:50 -0800 (PST) Message-Id: <200302150219.h1F2JokN066744@repoman.freebsd.org> From: Wes Peters Date: Fri, 14 Feb 2003 18:19:50 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wes 2003/02/14 18:19:50 PST Modified files: . access Log: Welcome Andrew Reiter (arr@) back to the fold. Revision Changes Path 1.563 +1 -0 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 18:25:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 321AB37B401; Fri, 14 Feb 2003 18:25:45 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9DAD43FBF; Fri, 14 Feb 2003 18:25:43 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1F2PgEJ062698; Sat, 15 Feb 2003 05:25:42 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1F2Pgbx062697; Sat, 15 Feb 2003 05:25:42 +0300 (MSK) (envelope-from ache) Date: Sat, 15 Feb 2003 05:25:42 +0300 From: "Andrey A. Chernov" To: Nate Lawson Cc: Juli Mallett , Kirk McKusick , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Message-ID: <20030215022542.GA62285@nagual.pp.ru> References: <20030214221503.GA59673@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 14, 2003 at 16:31:10 -0800, Nate Lawson wrote: > On Sat, 15 Feb 2003, Andrey A. Chernov wrote: > > On Fri, Feb 14, 2003 at 15:33:28 -0600, Juli Mallett wrote: > > > Are the sequences for it also repeatable in the newfs case for e.g. the > > > regression tests, where it is used unseeded? > > > > Obvious answer - no. > > > > BTW, this fix really fixes nothing for FreeBSD case because we already use > > srandomdev() (for non-regression case). > > Speaking totally informally, arc4 is more secure for this purpose than an > LFSR despite seeding the latter via srandomdev(). It isn't big news, arc4random() internal state size is 256 bytes while default random() state size is 124 bytes, but I don't think that anybody can feel that difference inside short range needed for mkfs. The complaint is about broken regression test case, not about srandom()->arc4random() transition taken alone. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 18:26:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 944D837B401; Fri, 14 Feb 2003 18:26:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3272E43FDD; Fri, 14 Feb 2003 18:26:14 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F2QEbv070282; Fri, 14 Feb 2003 18:26:14 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F2QD1q070281; Fri, 14 Feb 2003 18:26:13 -0800 (PST) Message-Id: <200302150226.h1F2QD1q070281@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 18:26:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/config config.h config.y main.c mkheaders.c mkmakefile.c mkoptions.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 18:26:13 PST Modified files: usr.sbin/config config.h config.y main.c mkheaders.c mkmakefile.c mkoptions.c Log: Convert to using macros. Revision Changes Path 1.52 +17 -10 src/usr.sbin/config/config.h 1.57 +7 -16 src/usr.sbin/config/config.y 1.57 +3 -2 src/usr.sbin/config/main.c 1.26 +15 -15 src/usr.sbin/config/mkheaders.c 1.74 +12 -18 src/usr.sbin/config/mkmakefile.c 1.30 +23 -25 src/usr.sbin/config/mkoptions.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 18:37:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A48A437B401; Fri, 14 Feb 2003 18:37:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4677D43F75; Fri, 14 Feb 2003 18:37:58 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F2bwbv074031; Fri, 14 Feb 2003 18:37:58 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F2bwCe074030; Fri, 14 Feb 2003 18:37:58 -0800 (PST) Message-Id: <200302150237.h1F2bwCe074030@repoman.freebsd.org> From: Jeffrey Hsu Date: Fri, 14 Feb 2003 18:37:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_subr.c udp_usrreq.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/14 18:37:58 PST Modified files: sys/netinet tcp_subr.c udp_usrreq.c Log: Take advantage of pre-existing lock-free synchronization and type stable memory to avoid acquiring SMP locks during expensive copyout process. Revision Changes Path 1.150 +3 -4 src/sys/netinet/tcp_subr.c 1.132 +4 -3 src/sys/netinet/udp_usrreq.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 18:39:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8479137B401; Fri, 14 Feb 2003 18:39:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2334343F85; Fri, 14 Feb 2003 18:39:14 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F2dDbv074093; Fri, 14 Feb 2003 18:39:13 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F2dDnu074092; Fri, 14 Feb 2003 18:39:13 -0800 (PST) Message-Id: <200302150239.h1F2dDnu074092@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 14 Feb 2003 18:39:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf OLDCARD src/usr.sbin/config config.y lang.l X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/14 18:39:13 PST Modified files: sys/i386/conf OLDCARD usr.sbin/config config.y lang.l Log: Implemented a simple "nodevice" config(8) command that cancels the effect of the "device" command, and use it to generate the OLDCARD from GENERIC. Suggested by: bde Revision Changes Path 1.18 +6 -243 src/sys/i386/conf/OLDCARD 1.58 +47 -0 src/usr.sbin/config/config.y 1.34 +2 -1 src/usr.sbin/config/lang.l To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 18:43:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3527337B401; Fri, 14 Feb 2003 18:43:37 -0800 (PST) Received: from smtp-relay.omnis.com (smtp-relay.omnis.com [216.239.128.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id A899943F75; Fri, 14 Feb 2003 18:43:36 -0800 (PST) (envelope-from wes@softweyr.com) Received: from salty.rapid.stbernard.com (corp-2.ipinc.com [199.245.188.2]) by smtp-relay.omnis.com (Postfix) with ESMTP id C894443B0F; Fri, 14 Feb 2003 18:41:37 -0800 (PST) From: Wes Peters Organization: Softweyr.com To: Kris Kennaway , Alfred Perlstein Subject: Re: cvs commit: src/sys/kern kern_intr.c src/sys/dev/ata ata-all.c Date: Fri, 14 Feb 2003 18:41:37 -0800 User-Agent: KMail/1.5 Cc: src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200302141310.h1EDAega068830@repoman.freebsd.org> <20030214163834.GD849@rot13.obsecurity.org> In-Reply-To: <20030214163834.GD849@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200302141841.37272.wes@softweyr.com> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Friday 14 February 2003 08:38, Kris Kennaway wrote: > On Fri, Feb 14, 2003 at 05:10:40AM -0800, Alfred Perlstein wrote: > > alfred 2003/02/14 05:10:40 PST > > > > Modified files: > > sys/kern kern_intr.c > > sys/dev/ata ata-all.c > > Log: > > Fix crash dumps on ata and scsi. > > Thankyou!!! Yes, thank you Alfred. Remind me to buy you a cold one next 'Con. It would be best if critical functionality like crash dumps stay working from now on. If you commit work that kills critical functionality like crash dumps, kernel debugging, etc. you should make that your first priority in FreeBSD development until you have restored the broken functionality. It would be really silly to have to write some stupid rule about this, wouldn't it? -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 19:38:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D875737B401; Fri, 14 Feb 2003 19:38:12 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0AFF43FBD; Fri, 14 Feb 2003 19:38:11 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1F3c7bL004012; Fri, 14 Feb 2003 19:38:07 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1F3c7xV004011; Fri, 14 Feb 2003 19:38:07 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Fri, 14 Feb 2003 19:38:07 -0800 From: David Schultz To: "Andrey A. Chernov" Cc: Nate Lawson , Juli Mallett , Kirk McKusick , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Message-ID: <20030215033807.GB3750@HAL9000.homeunix.com> Mail-Followup-To: "Andrey A. Chernov" , Nate Lawson , Juli Mallett , Kirk McKusick , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <20030214221503.GA59673@nagual.pp.ru> <20030215022542.GA62285@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215022542.GA62285@nagual.pp.ru> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Andrey A. Chernov : > On Fri, Feb 14, 2003 at 16:31:10 -0800, Nate Lawson wrote: > > On Sat, 15 Feb 2003, Andrey A. Chernov wrote: > > > On Fri, Feb 14, 2003 at 15:33:28 -0600, Juli Mallett wrote: > > > > Are the sequences for it also repeatable in the newfs case for e.g. the > > > > regression tests, where it is used unseeded? > > > > > > Obvious answer - no. > > > > > > BTW, this fix really fixes nothing for FreeBSD case because we already use > > > srandomdev() (for non-regression case). > > > > Speaking totally informally, arc4 is more secure for this purpose than an > > LFSR despite seeding the latter via srandomdev(). > > It isn't big news, arc4random() internal state size is 256 bytes while > default random() state size is 124 bytes, but I don't think that anybody > can feel that difference inside short range needed for mkfs. The complaint > is about broken regression test case, not about srandom()->arc4random() > transition taken alone. The issue isn't how random the data ``feels'' according to ad hoc tests; the issue is predictability. NFS relies upon generation numbers being unguessable to prevent unauthenticated clients from spoofing file handles. Even if random() is a pretty good PRNG, arc4random() gives people peace of mind because it uses a real cryptographic hash. If you could guess arc4random() values without knowing the entropy pool, that would likely constitute an attack on RC4 itself. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 20: 3:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C7E837B401; Fri, 14 Feb 2003 20:03:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B414D43FA3; Fri, 14 Feb 2003 20:03:25 -0800 (PST) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F43Pbv006027; Fri, 14 Feb 2003 20:03:25 -0800 (PST) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F43PhA006026; Fri, 14 Feb 2003 20:03:25 -0800 (PST) Message-Id: <200302150403.h1F43PhA006026@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 14 Feb 2003 20:03:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hrs 2003/02/14 20:03:25 PST Modified files: share/man/man5 rc.conf.5 Log: Improve the wording. Reviewed by: ru Revision Changes Path 1.175 +9 -4 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:13:24 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A35137B401; Fri, 14 Feb 2003 21:13:22 -0800 (PST) Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02FF043F93; Fri, 14 Feb 2003 21:13:21 -0800 (PST) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id h1F5DKf12296; Sat, 15 Feb 2003 00:13:20 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Sat, 15 Feb 2003 00:13:20 -0500 (EST) From: Jeff Roberson To: Wes Peters Cc: all-committers@FreeBSD.org, , , , Subject: Re: cvs commit: CVSROOT access In-Reply-To: <200302150219.h1F2JokN066744@repoman.freebsd.org> Message-ID: <20030215001257.D23474-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 14 Feb 2003, Wes Peters wrote: > Log: > Welcome Andrew Reiter (arr@) back to the fold. > It's great to have you back arr. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:32: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 057BC37B401; Fri, 14 Feb 2003 21:32:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D55F43F93; Fri, 14 Feb 2003 21:32:04 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5W4bv037114; Fri, 14 Feb 2003 21:32:04 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5W4rF037110; Fri, 14 Feb 2003 21:32:04 -0800 (PST) Message-Id: <200302150532.h1F5W4rF037110@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:32:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/lib/libdialog kernel.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:32:04 PST Modified files: (Branch: RELENG_4) gnu/lib/libdialog kernel.c Log: MFC: Disallow use of libdialog in setugid application Revision Changes Path 1.26.6.1 +8 -0 src/gnu/lib/libdialog/kernel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:33: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECD8037B401; Fri, 14 Feb 2003 21:33:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FECD43FBD; Fri, 14 Feb 2003 21:33:06 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5X6bv037901; Fri, 14 Feb 2003 21:33:06 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5X68d037900; Fri, 14 Feb 2003 21:33:06 -0800 (PST) Message-Id: <200302150533.h1F5X68d037900@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:33:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/manpath manpath.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:33:06 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/man/manpath manpath.c Log: MFC: Don't dump core if none of the directories in /etc/manpath.config exist. Revision Changes Path 1.11.2.2 +4 -1 src/gnu/usr.bin/man/manpath/manpath.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:33:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5D9C37B401; Fri, 14 Feb 2003 21:33:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67D5F43F85; Fri, 14 Feb 2003 21:33:42 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5Xgbv037937; Fri, 14 Feb 2003 21:33:42 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5XgP2037936; Fri, 14 Feb 2003 21:33:42 -0800 (PST) Message-Id: <200302150533.h1F5XgP2037936@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:33:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/patch common.h patch.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:33:42 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/patch common.h patch.c Log: MFC: Prevent stack-smashing buffer overflows in -D and -r options by using buffer-safe string functions. The rest of the code is still probably unsafe. Revision Changes Path 1.7.2.2 +3 -0 src/gnu/usr.bin/patch/common.h 1.16.2.4 +7 -6 src/gnu/usr.bin/patch/patch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:34:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 804A837B401; Fri, 14 Feb 2003 21:34:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24BAD43FAF; Fri, 14 Feb 2003 21:34:53 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5Yqbv037987; Fri, 14 Feb 2003 21:34:52 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5Yqgp037986; Fri, 14 Feb 2003 21:34:52 -0800 (PST) Message-Id: <200302150534.h1F5Yqgp037986@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:34:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdio tmpfile.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:34:52 PST Modified files: (Branch: RELENG_4) lib/libc/stdio tmpfile.c Log: MFC: Ignore TMPDIR if the application is setugid (r1.8 and r1.9). Revision Changes Path 1.4.2.2 +4 -2 src/lib/libc/stdio/tmpfile.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:35:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4249A37B401; Fri, 14 Feb 2003 21:35:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA65C43F85; Fri, 14 Feb 2003 21:35:31 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5ZVbv038066; Fri, 14 Feb 2003 21:35:31 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5ZVxW038065; Fri, 14 Feb 2003 21:35:31 -0800 (PST) Message-Id: <200302150535.h1F5ZVxW038065@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:35:31 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_info.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:35:31 PST Modified files: (Branch: RELENG_4) lib/libc_r/uthread uthread_info.c Log: MFC: Dump in $TMPDIR if !setugid, and use mode 0644 instead of 0666. Revision Changes Path 1.14.2.9 +11 -7 src/lib/libc_r/uthread/uthread_info.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:36: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 229AC37B401; Fri, 14 Feb 2003 21:36:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B496043F75; Fri, 14 Feb 2003 21:36:02 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5a2bv038124; Fri, 14 Feb 2003 21:36:02 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5a2RB038123; Fri, 14 Feb 2003 21:36:02 -0800 (PST) Message-Id: <200302150536.h1F5a2RB038123@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:36:02 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/bootpd bootpd.c dovend.c getether.c hwaddr.c report.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:36:02 PST Modified files: (Branch: RELENG_4) libexec/bootpd bootpd.c dovend.c getether.c hwaddr.c report.h Log: MFC: Format string fixes Revision Changes Path 1.13.2.3 +1 -1 src/libexec/bootpd/bootpd.c 1.5.2.1 +1 -1 src/libexec/bootpd/dovend.c 1.9.2.3 +1 -1 src/libexec/bootpd/getether.c 1.7.2.1 +1 -1 src/libexec/bootpd/hwaddr.c 1.1.1.1.14.2 +1 -1 src/libexec/bootpd/report.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:36:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0323F37B401; Fri, 14 Feb 2003 21:36:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C5FC43F85; Fri, 14 Feb 2003 21:36:25 -0800 (PST) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5aPbv038170; Fri, 14 Feb 2003 21:36:25 -0800 (PST) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5aPGr038169; Fri, 14 Feb 2003 21:36:25 -0800 (PST) Message-Id: <200302150536.h1F5aPGr038169@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 14 Feb 2003 21:36:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.obj.mk X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2003/02/14 21:36:25 PST Modified files: (Branch: RELENG_4) share/mk bsd.obj.mk Log: MFC: Use test -L instead of deprecated test -h Revision Changes Path 1.30.2.10 +1 -1 src/share/mk/bsd.obj.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 21:52:58 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA43A37B401; Fri, 14 Feb 2003 21:52:56 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DDB243F85; Fri, 14 Feb 2003 21:52:56 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F5qubv045269; Fri, 14 Feb 2003 21:52:56 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F5quoQ045268; Fri, 14 Feb 2003 21:52:56 -0800 (PST) Message-Id: <200302150552.h1F5quoQ045268@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 21:52:56 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c kern_event.c kern_exit.c vfs_mount.c src/sys/sys filedesc.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 21:52:56 PST Modified files: sys/kern kern_descrip.c kern_event.c kern_exit.c vfs_mount.c sys/sys filedesc.h Log: Fix LOR with PROC/filedesc. Introduce fdesc_mtx that will be used as a barrier between free'ing filedesc structures. Basically if you want to access another process's filedesc, you want to hold this mutex over the entire operation. Revision Changes Path 1.186 +11 -1 src/sys/kern/kern_descrip.c 1.55 +1 -1 src/sys/kern/kern_event.c 1.194 +1 -1 src/sys/kern/kern_exit.c 1.101 +3 -3 src/sys/kern/vfs_mount.c 1.50 +2 -0 src/sys/sys/filedesc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22: 0:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 269B037B401; Fri, 14 Feb 2003 22:00:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC1E543FBD; Fri, 14 Feb 2003 22:00:11 -0800 (PST) (envelope-from mtm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F60Bbv045507; Fri, 14 Feb 2003 22:00:11 -0800 (PST) (envelope-from mtm@repoman.freebsd.org) Received: (from mtm@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F60BNK045506; Fri, 14 Feb 2003 22:00:11 -0800 (PST) Message-Id: <200302150600.h1F60BNK045506@repoman.freebsd.org> From: Mike Makonnen Date: Fri, 14 Feb 2003 22:00:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/rc.d cleanvar mountcritremote X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mtm 2003/02/14 22:00:11 PST Modified files: etc/rc.d cleanvar mountcritremote Log: When cleaning /var/run make sure the control files are not removed unconditionally when the script is being rerun (when it is called with the reload argument). PR: conf/47517 Approved by: markm (mentor) Revision Changes Path 1.3 +5 -1 src/etc/rc.d/cleanvar 1.5 +1 -1 src/etc/rc.d/mountcritremote To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22: 4:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E320D37B401; Fri, 14 Feb 2003 22:04:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E76C43F3F; Fri, 14 Feb 2003 22:04:55 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F64tbv048954; Fri, 14 Feb 2003 22:04:55 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F64tOm048953; Fri, 14 Feb 2003 22:04:55 -0800 (PST) Message-Id: <200302150604.h1F64tOm048953@repoman.freebsd.org> From: Alfred Perlstein Date: Fri, 14 Feb 2003 22:04:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c kern_event.c sys_pipe.c sys_socket.c uipc_usrreq.c vfs_vnops.c src/sys/sys file.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/14 22:04:55 PST Modified files: sys/kern kern_descrip.c kern_event.c sys_pipe.c sys_socket.c uipc_usrreq.c vfs_vnops.c sys/sys file.h Log: Do not allow kqueues to be passed via unix domain sockets. Revision Changes Path 1.187 +2 -1 src/sys/kern/kern_descrip.c 1.56 +2 -1 src/sys/kern/kern_event.c 1.131 +1 -1 src/sys/kern/sys_pipe.c 1.52 +1 -1 src/sys/kern/sys_socket.c 1.108 +7 -0 src/sys/kern/uipc_usrreq.c 1.182 +1 -1 src/sys/kern/vfs_vnops.c 1.60 +4 -0 src/sys/sys/file.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:10:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC94F37B401; Fri, 14 Feb 2003 22:10:35 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F99643F3F; Fri, 14 Feb 2003 22:10:35 -0800 (PST) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6AZbv049694; Fri, 14 Feb 2003 22:10:35 -0800 (PST) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6AZFR049687; Fri, 14 Feb 2003 22:10:35 -0800 (PST) Message-Id: <200302150610.h1F6AZFR049687@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 14 Feb 2003 22:10:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hrs 2003/02/14 22:10:35 PST Modified files: release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Merge the following from the English version: 1.495 -> 1.496 relnotes/common/new.sgml Revision Changes Path 1.79 +22 -4 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:10:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A707E37B401; Fri, 14 Feb 2003 22:10:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 067B043FAF; Fri, 14 Feb 2003 22:10:45 -0800 (PST) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6Aibv050030; Fri, 14 Feb 2003 22:10:44 -0800 (PST) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6Ai5C050028; Fri, 14 Feb 2003 22:10:44 -0800 (PST) Message-Id: <200302150610.h1F6Ai5C050028@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 14 Feb 2003 22:10:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hrs 2003/02/14 22:10:44 PST Modified files: (Branch: RELENG_4) release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Merge the following from the English version: 1.22.2.327 -> 1.22.2.328 relnotes/common/new.sgml Revision Changes Path 1.5.2.41 +13 -2 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:18:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B119F37B401; Fri, 14 Feb 2003 22:18:27 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61CAD43FA3; Fri, 14 Feb 2003 22:18:27 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6IRbv052715; Fri, 14 Feb 2003 22:18:27 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6IQmS052714; Fri, 14 Feb 2003 22:18:26 -0800 (PST) Message-Id: <200302150618.h1F6IQmS052714@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:18:26 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet - Imported sources X-FreeBSD-CVS-Branch: DARRENR Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:18:26 PST src/sys/contrib/ipfilter/netinet - Imported sources Update of /home/ncvs/src/sys/contrib/ipfilter/netinet In directory repoman.freebsd.org:/tmp/cvs-serv52683 Log Message: Import IPFilter 3.4.31 into -current Status: Vendor Tag: DARRENR Release Tags: v3-4-31 C src/sys/contrib/ipfilter/netinet/ip_auth.c U src/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c U src/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c U src/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c U src/sys/contrib/ipfilter/netinet/ip_h323_pxy.c C src/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c U src/sys/contrib/ipfilter/netinet/ip_frag.h C src/sys/contrib/ipfilter/netinet/ip_frag.c C src/sys/contrib/ipfilter/netinet/ip_fil.h C src/sys/contrib/ipfilter/netinet/ip_fil.c C src/sys/contrib/ipfilter/netinet/ip_compat.h C src/sys/contrib/ipfilter/netinet/ip_auth.h C src/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c C src/sys/contrib/ipfilter/netinet/fil.c C src/sys/contrib/ipfilter/netinet/ip_state.c C src/sys/contrib/ipfilter/netinet/ip_proxy.h C src/sys/contrib/ipfilter/netinet/ip_proxy.c C src/sys/contrib/ipfilter/netinet/ip_nat.h C src/sys/contrib/ipfilter/netinet/ip_nat.c C src/sys/contrib/ipfilter/netinet/ip_log.c U src/sys/contrib/ipfilter/netinet/ip_state.h U src/sys/contrib/ipfilter/netinet/mlfk_ipl.c N src/sys/contrib/ipfilter/netinet/y C src/sys/contrib/ipfilter/netinet/ipl.h N src/sys/contrib/ipfilter/netinet/y.pub 16 conflicts created by this import. Use the following command to help the merge: cvs checkout -jDARRENR:yesterday -jDARRENR src/sys/contrib/ipfilter/netinet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:21:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 739C737B401; Fri, 14 Feb 2003 22:21:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14A5643FE1; Fri, 14 Feb 2003 22:21:15 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6LEbv054395; Fri, 14 Feb 2003 22:21:14 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6LEsT054391; Fri, 14 Feb 2003 22:21:14 -0800 (PST) Message-Id: <200302150621.h1F6LEsT054391@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:21:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet y y.pub X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:21:14 PST Removed files: sys/contrib/ipfilter/netinet y y.pub Log: sometimes i hate it when you leave temp files in a directory you import from Revision Changes Path 1.2 +0 -12 src/sys/contrib/ipfilter/netinet/y (dead) 1.2 +0 -1 src/sys/contrib/ipfilter/netinet/y.pub (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:23:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9E6537B401; Fri, 14 Feb 2003 22:23:46 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EFFA43F93; Fri, 14 Feb 2003 22:23:46 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6Nkbv056280; Fri, 14 Feb 2003 22:23:46 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6Nk7J056279; Fri, 14 Feb 2003 22:23:46 -0800 (PST) Message-Id: <200302150623.h1F6Nk7J056279@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:23:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet fil.c ip_auth.c ip_auth.h ip_compat.h ip_fil.c ip_fil.h ip_frag.c ip_ftp_pxy.c ip_log.c ip_nat.c ip_nat.h ip_proxy.c ip_proxy.h ip_rcmd_pxy.c ip_state.c ipl.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:23:46 PST Modified files: sys/contrib/ipfilter/netinet fil.c ip_auth.c ip_auth.h ip_compat.h ip_fil.c ip_fil.h ip_frag.c ip_ftp_pxy.c ip_log.c ip_nat.c ip_nat.h ip_proxy.c ip_proxy.h ip_rcmd_pxy.c ip_state.c ipl.h Log: Commit import changed from vendor branch of ipfilter to -current head Revision Changes Path 1.35 +50 -13 src/sys/contrib/ipfilter/netinet/fil.c 1.31 +77 -43 src/sys/contrib/ipfilter/netinet/ip_auth.c 1.13 +4 -2 src/sys/contrib/ipfilter/netinet/ip_auth.h 1.20 +2 -0 src/sys/contrib/ipfilter/netinet/ip_compat.h 1.36 +89 -25 src/sys/contrib/ipfilter/netinet/ip_fil.c 1.24 +10 -6 src/sys/contrib/ipfilter/netinet/ip_fil.h 1.24 +1 -1 src/sys/contrib/ipfilter/netinet/ip_frag.c 1.23 +211 -65 src/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c 1.24 +25 -2 src/sys/contrib/ipfilter/netinet/ip_log.c 1.33 +83 -3 src/sys/contrib/ipfilter/netinet/ip_nat.c 1.20 +2 -0 src/sys/contrib/ipfilter/netinet/ip_nat.h 1.22 +11 -11 src/sys/contrib/ipfilter/netinet/ip_proxy.c 1.13 +1 -0 src/sys/contrib/ipfilter/netinet/ip_proxy.h 1.10 +2 -1 src/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c 1.30 +32 -15 src/sys/contrib/ipfilter/netinet/ip_state.c 1.21 +1 -1 src/sys/contrib/ipfilter/netinet/ipl.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:25:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4557437B401; Fri, 14 Feb 2003 22:25:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9CAA43FBF; Fri, 14 Feb 2003 22:25:25 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6PPbv056410; Fri, 14 Feb 2003 22:25:25 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6PPfL056409; Fri, 14 Feb 2003 22:25:25 -0800 (PST) Message-Id: <200302150625.h1F6PPfL056409@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:25:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet ip_auth.c ip_fil.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:25:25 PST Modified files: sys/contrib/ipfilter/netinet ip_auth.c ip_fil.c Log: Commit import changed from vendor branch of ipfilter to -current head Revision Changes Path 1.32 +0 -6 src/sys/contrib/ipfilter/netinet/ip_auth.c 1.37 +0 -6 src/sys/contrib/ipfilter/netinet/ip_fil.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:28: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B324937B401; Fri, 14 Feb 2003 22:27:44 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1B843FB1; Fri, 14 Feb 2003 22:27:44 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6Rhbv056485; Fri, 14 Feb 2003 22:27:43 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6Rh4m056484; Fri, 14 Feb 2003 22:27:43 -0800 (PST) Message-Id: <200302150627.h1F6Rh4m056484@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:27:43 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/ipfilter - Imported sources X-FreeBSD-CVS-Branch: DARRENR Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:27:43 PST src/contrib/ipfilter - Imported sources Update of /home/ncvs/src/contrib/ipfilter In directory repoman.freebsd.org:/tmp/cvs-serv56470 Log Message: Import userland tools for IPFilter 3.4.31 into -current Status: Vendor Tag: DARRENR Release Tags: v3-4-31 U src/contrib/ipfilter/BNF U src/contrib/ipfilter/BugReport U src/contrib/ipfilter/FAQ.FreeBSD U src/contrib/ipfilter/HISTORY U src/contrib/ipfilter/IMPORTANT U src/contrib/ipfilter/INST.FreeBSD-2.2 U src/contrib/ipfilter/INSTALL.FreeBSD U src/contrib/ipfilter/INSTALL.xBSD U src/contrib/ipfilter/IPF.KANJI U src/contrib/ipfilter/IPFILTER.LICENCE U src/contrib/ipfilter/Makefile U src/contrib/ipfilter/NAT.FreeBSD U src/contrib/ipfilter/QNX_OCL.txt U src/contrib/ipfilter/README U src/contrib/ipfilter/UPGRADE_NOTICE U src/contrib/ipfilter/Y2K N src/contrib/ipfilter/bpf.h U src/contrib/ipfilter/bsdinstall U src/contrib/ipfilter/common.c U src/contrib/ipfilter/facpri.c U src/contrib/ipfilter/facpri.h C src/contrib/ipfilter/fil.c U src/contrib/ipfilter/fils.c U src/contrib/ipfilter/inet_addr.c C src/contrib/ipfilter/ip_auth.c C src/contrib/ipfilter/ip_auth.h C src/contrib/ipfilter/ip_compat.h C src/contrib/ipfilter/ip_fil.c C src/contrib/ipfilter/ip_fil.h C src/contrib/ipfilter/ip_frag.c U src/contrib/ipfilter/ip_frag.h C src/contrib/ipfilter/ip_ftp_pxy.c U src/contrib/ipfilter/ip_h323_pxy.c U src/contrib/ipfilter/ip_ipsec_pxy.c U src/contrib/ipfilter/ip_lfil.c C src/contrib/ipfilter/ip_log.c C src/contrib/ipfilter/ip_nat.c C src/contrib/ipfilter/ip_nat.h U src/contrib/ipfilter/ip_netbios_pxy.c C src/contrib/ipfilter/ip_proxy.c C src/contrib/ipfilter/ip_proxy.h U src/contrib/ipfilter/ip_raudio_pxy.c C src/contrib/ipfilter/ip_rcmd_pxy.c U src/contrib/ipfilter/ip_sfil.c C src/contrib/ipfilter/ip_state.c U src/contrib/ipfilter/ip_state.h U src/contrib/ipfilter/ipf.c U src/contrib/ipfilter/ipf.h U src/contrib/ipfilter/ipfs.c U src/contrib/ipfilter/ipft_ef.c U src/contrib/ipfilter/ipft_hx.c U src/contrib/ipfilter/ipft_pc.c U src/contrib/ipfilter/ipft_sn.c U src/contrib/ipfilter/ipft_td.c U src/contrib/ipfilter/ipft_tx.c C src/contrib/ipfilter/ipl.h C src/contrib/ipfilter/ipmon.c U src/contrib/ipfilter/ipnat.c U src/contrib/ipfilter/ipt.c U src/contrib/ipfilter/ipt.h U src/contrib/ipfilter/kmem.c U src/contrib/ipfilter/kmem.h U src/contrib/ipfilter/misc.c U src/contrib/ipfilter/mkfilters U src/contrib/ipfilter/ml_ipl.c U src/contrib/ipfilter/mlf_ipl.c U src/contrib/ipfilter/mlfk_ipl.c U src/contrib/ipfilter/mli_ipl.c U src/contrib/ipfilter/mln_ipl.c U src/contrib/ipfilter/mls_ipl.c U src/contrib/ipfilter/natparse.c U src/contrib/ipfilter/opt.c U src/contrib/ipfilter/parse.c U src/contrib/ipfilter/pcap.h U src/contrib/ipfilter/printnat.c U src/contrib/ipfilter/relay.c U src/contrib/ipfilter/printstate.c U src/contrib/ipfilter/snoop.h U src/contrib/ipfilter/todo U src/contrib/ipfilter/BSD/Makefile U src/contrib/ipfilter/BSD/Makefile.ipsend U src/contrib/ipfilter/BSD/kupgrade U src/contrib/ipfilter/BSD/make-devices U src/contrib/ipfilter/FWTK/Index U src/contrib/ipfilter/FWTK/README U src/contrib/ipfilter/FWTK/README.ipfilter U src/contrib/ipfilter/FWTK/ftp-gw.diff U src/contrib/ipfilter/FWTK/fwtk-2.1-transparency.txt U src/contrib/ipfilter/FWTK/fwtk_transparent.diff U src/contrib/ipfilter/FWTK/fwtkp U src/contrib/ipfilter/FWTK/tproxy.diff U src/contrib/ipfilter/FreeBSD/conf.c.diffs U src/contrib/ipfilter/FreeBSD/files.diffs U src/contrib/ipfilter/FreeBSD/files.newconf.diffs U src/contrib/ipfilter/FreeBSD/files.oldconf.diffs U src/contrib/ipfilter/FreeBSD/filez.diffs U src/contrib/ipfilter/FreeBSD/in_proto.c.diffs U src/contrib/ipfilter/FreeBSD/ip_input.c.diffs U src/contrib/ipfilter/FreeBSD/ip_output.c.diffs U src/contrib/ipfilter/FreeBSD/kinstall U src/contrib/ipfilter/FreeBSD/minstall U src/contrib/ipfilter/FreeBSD/unkinstall U src/contrib/ipfilter/FreeBSD/unminstall U src/contrib/ipfilter/FreeBSD-2.2/files.diffs U src/contrib/ipfilter/FreeBSD-2.2/files.newconf.diffs U src/contrib/ipfilter/FreeBSD-2.2/in_proto.c.diffs U src/contrib/ipfilter/FreeBSD-2.2/ip_input.c.diffs U src/contrib/ipfilter/FreeBSD-2.2/ip_output.c.diffs U src/contrib/ipfilter/FreeBSD-2.2/kinstall U src/contrib/ipfilter/FreeBSD-2.2/minstall U src/contrib/ipfilter/FreeBSD-2.2/unkinstall U src/contrib/ipfilter/FreeBSD-2.2/unminstall U src/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 U src/contrib/ipfilter/FreeBSD-3/kinstall U src/contrib/ipfilter/FreeBSD-3/unkinstall U src/contrib/ipfilter/FreeBSD-4.0/INST.FreeBSD-4 U src/contrib/ipfilter/FreeBSD-4.0/ipv6-patch-4.0 U src/contrib/ipfilter/FreeBSD-4.0/ipv6-patch-4.1 U src/contrib/ipfilter/FreeBSD-4.0/kinstall U src/contrib/ipfilter/FreeBSD-4.0/unkinstall U src/contrib/ipfilter/etc/protocols U src/contrib/ipfilter/etc/services U src/contrib/ipfilter/iplang/BNF U src/contrib/ipfilter/iplang/Makefile U src/contrib/ipfilter/iplang/iplang.h U src/contrib/ipfilter/iplang/iplang.tst U src/contrib/ipfilter/iplang/iplang_l.l C src/contrib/ipfilter/iplang/iplang_y.y U src/contrib/ipfilter/ipsd/Makefile U src/contrib/ipfilter/ipsd/README U src/contrib/ipfilter/ipsd/ipsd.c U src/contrib/ipfilter/ipsd/ipsd.h U src/contrib/ipfilter/ipsd/ipsdr.c U src/contrib/ipfilter/ipsd/linux.h U src/contrib/ipfilter/ipsd/sbpf.c U src/contrib/ipfilter/ipsd/sdlpi.c U src/contrib/ipfilter/ipsd/slinux.c U src/contrib/ipfilter/ipsd/snit.c U src/contrib/ipfilter/ipsd/Celler/ip_compat.h U src/contrib/ipfilter/ipsend/44arp.c U src/contrib/ipfilter/ipsend/Crashable U src/contrib/ipfilter/ipsend/Makefile U src/contrib/ipfilter/ipsend/README U src/contrib/ipfilter/ipsend/arp.c U src/contrib/ipfilter/ipsend/dlcommon.c U src/contrib/ipfilter/ipsend/dltest.h U src/contrib/ipfilter/ipsend/hpux.c U src/contrib/ipfilter/ipsend/in_var.h U src/contrib/ipfilter/ipsend/ip.c U src/contrib/ipfilter/ipsend/ip_var.h U src/contrib/ipfilter/ipsend/ipresend.1 U src/contrib/ipfilter/ipsend/ipresend.c U src/contrib/ipfilter/ipsend/ipsend.1 U src/contrib/ipfilter/ipsend/ipsend.5 C src/contrib/ipfilter/ipsend/ipsend.c U src/contrib/ipfilter/ipsend/ipsend.h U src/contrib/ipfilter/ipsend/ipsopt.c U src/contrib/ipfilter/ipsend/iptest.1 U src/contrib/ipfilter/ipsend/iptest.c C src/contrib/ipfilter/ipsend/iptests.c U src/contrib/ipfilter/ipsend/larp.c U src/contrib/ipfilter/ipsend/linux.h U src/contrib/ipfilter/ipsend/lsock.c U src/contrib/ipfilter/ipsend/resend.c U src/contrib/ipfilter/ipsend/sbpf.c U src/contrib/ipfilter/ipsend/sdlpi.c U src/contrib/ipfilter/ipsend/sirix.c U src/contrib/ipfilter/ipsend/slinux.c U src/contrib/ipfilter/ipsend/snit.c C src/contrib/ipfilter/ipsend/sock.c U src/contrib/ipfilter/ipsend/tcpip.h U src/contrib/ipfilter/ipsend/ultrix.c U src/contrib/ipfilter/ipsend/.OLD/ip_compat.h U src/contrib/ipfilter/l4check/Makefile U src/contrib/ipfilter/l4check/http.check U src/contrib/ipfilter/l4check/http.ok U src/contrib/ipfilter/l4check/l4check.c U src/contrib/ipfilter/l4check/l4check.conf U src/contrib/ipfilter/man/Makefile C src/contrib/ipfilter/man/ipf.4 C src/contrib/ipfilter/man/ipf.5 C src/contrib/ipfilter/man/ipf.8 U src/contrib/ipfilter/man/ipfilter.5 U src/contrib/ipfilter/man/ipfs.8 C src/contrib/ipfilter/man/ipfstat.8 C src/contrib/ipfilter/man/ipftest.1 U src/contrib/ipfilter/man/ipl.4 C src/contrib/ipfilter/man/ipmon.8 U src/contrib/ipfilter/man/ipnat.4 U src/contrib/ipfilter/man/ipnat.5 U src/contrib/ipfilter/man/ipnat.8 U src/contrib/ipfilter/man/mkfilters.1 U src/contrib/ipfilter/perl/Ipfanaly.pl U src/contrib/ipfilter/perl/Isbgraph U src/contrib/ipfilter/perl/LICENSE U src/contrib/ipfilter/perl/Services U src/contrib/ipfilter/perl/ipf-mrtg.pl U src/contrib/ipfilter/perl/logfilter.pl U src/contrib/ipfilter/perl/plog U src/contrib/ipfilter/rules/BASIC.NAT U src/contrib/ipfilter/rules/BASIC_1.FW U src/contrib/ipfilter/rules/BASIC_2.FW U src/contrib/ipfilter/rules/example.1 U src/contrib/ipfilter/rules/example.10 U src/contrib/ipfilter/rules/example.11 U src/contrib/ipfilter/rules/example.12 U src/contrib/ipfilter/rules/example.13 U src/contrib/ipfilter/rules/example.2 U src/contrib/ipfilter/rules/example.3 U src/contrib/ipfilter/rules/example.4 U src/contrib/ipfilter/rules/example.5 U src/contrib/ipfilter/rules/example.6 U src/contrib/ipfilter/rules/example.7 U src/contrib/ipfilter/rules/example.8 U src/contrib/ipfilter/rules/example.9 U src/contrib/ipfilter/rules/example.sr U src/contrib/ipfilter/rules/firewall U src/contrib/ipfilter/rules/ftp-proxy U src/contrib/ipfilter/rules/ftppxy U src/contrib/ipfilter/rules/nat-setup U src/contrib/ipfilter/rules/nat.eg U src/contrib/ipfilter/rules/server U src/contrib/ipfilter/rules/tcpstate U src/contrib/ipfilter/samples/Makefile U src/contrib/ipfilter/samples/ipfilter-pb.gif U src/contrib/ipfilter/samples/proxy.c U src/contrib/ipfilter/samples/userauth.c U src/contrib/ipfilter/test/Makefile U src/contrib/ipfilter/test/dotest U src/contrib/ipfilter/test/dotest6 U src/contrib/ipfilter/test/hextest U src/contrib/ipfilter/test/intest U src/contrib/ipfilter/test/itest U src/contrib/ipfilter/test/logtest U src/contrib/ipfilter/test/mhtest U src/contrib/ipfilter/test/mtest U src/contrib/ipfilter/test/natipftest U src/contrib/ipfilter/test/nattest U src/contrib/ipfilter/test/expected/f1 U src/contrib/ipfilter/test/expected/f10 U src/contrib/ipfilter/test/expected/f11 U src/contrib/ipfilter/test/expected/f12 U src/contrib/ipfilter/test/expected/f13 U src/contrib/ipfilter/test/expected/f14 U src/contrib/ipfilter/test/expected/f15 U src/contrib/ipfilter/test/expected/f16 U src/contrib/ipfilter/test/expected/f17 U src/contrib/ipfilter/test/expected/f2 U src/contrib/ipfilter/test/expected/f3 U src/contrib/ipfilter/test/expected/f4 U src/contrib/ipfilter/test/expected/f5 U src/contrib/ipfilter/test/expected/f6 U src/contrib/ipfilter/test/expected/f7 U src/contrib/ipfilter/test/expected/f8 U src/contrib/ipfilter/test/expected/f9 U src/contrib/ipfilter/test/expected/i1 U src/contrib/ipfilter/test/expected/i10 U src/contrib/ipfilter/test/expected/i11 U src/contrib/ipfilter/test/expected/i12 U src/contrib/ipfilter/test/expected/i2 U src/contrib/ipfilter/test/expected/i3 U src/contrib/ipfilter/test/expected/i4 U src/contrib/ipfilter/test/expected/i5 U src/contrib/ipfilter/test/expected/i6 U src/contrib/ipfilter/test/expected/i7 U src/contrib/ipfilter/test/expected/i8 U src/contrib/ipfilter/test/expected/i9 U src/contrib/ipfilter/test/expected/in1 U src/contrib/ipfilter/test/expected/in2 U src/contrib/ipfilter/test/expected/in3 U src/contrib/ipfilter/test/expected/in4 U src/contrib/ipfilter/test/expected/ipv6.1 U src/contrib/ipfilter/test/expected/ipv6.2 N src/contrib/ipfilter/test/expected/ipv6.3 U src/contrib/ipfilter/test/expected/l1 U src/contrib/ipfilter/test/expected/l1.b U src/contrib/ipfilter/test/expected/n1 U src/contrib/ipfilter/test/expected/n2 U src/contrib/ipfilter/test/expected/n3 U src/contrib/ipfilter/test/expected/n4 U src/contrib/ipfilter/test/expected/n5 U src/contrib/ipfilter/test/expected/n6 U src/contrib/ipfilter/test/expected/n7 U src/contrib/ipfilter/test/expected/ni1 U src/contrib/ipfilter/test/expected/ni2 U src/contrib/ipfilter/test/expected/ni3 U src/contrib/ipfilter/test/expected/ni4 U src/contrib/ipfilter/test/expected/ni5 U src/contrib/ipfilter/test/input/f1 U src/contrib/ipfilter/test/input/f10 U src/contrib/ipfilter/test/input/f11 U src/contrib/ipfilter/test/input/f12 U src/contrib/ipfilter/test/input/f13 U src/contrib/ipfilter/test/input/f14 U src/contrib/ipfilter/test/input/f15 U src/contrib/ipfilter/test/input/f16 U src/contrib/ipfilter/test/input/f17 U src/contrib/ipfilter/test/input/f2 U src/contrib/ipfilter/test/input/f3 U src/contrib/ipfilter/test/input/f4 U src/contrib/ipfilter/test/input/f5 U src/contrib/ipfilter/test/input/f6 U src/contrib/ipfilter/test/input/f7 U src/contrib/ipfilter/test/input/f8 U src/contrib/ipfilter/test/input/f9 U src/contrib/ipfilter/test/input/ipv6.1 U src/contrib/ipfilter/test/input/ipv6.2 N src/contrib/ipfilter/test/input/ipv6.3 U src/contrib/ipfilter/test/input/l1 U src/contrib/ipfilter/test/input/n1 U src/contrib/ipfilter/test/input/n2 U src/contrib/ipfilter/test/input/n3 U src/contrib/ipfilter/test/input/n4 U src/contrib/ipfilter/test/input/n5 U src/contrib/ipfilter/test/input/n6 U src/contrib/ipfilter/test/input/n7 U src/contrib/ipfilter/test/input/ni1 U src/contrib/ipfilter/test/input/ni2 U src/contrib/ipfilter/test/input/ni3 U src/contrib/ipfilter/test/input/ni4 U src/contrib/ipfilter/test/input/ni5 U src/contrib/ipfilter/test/regress/f1 U src/contrib/ipfilter/test/regress/f10 U src/contrib/ipfilter/test/regress/f11 U src/contrib/ipfilter/test/regress/f12 U src/contrib/ipfilter/test/regress/f13 U src/contrib/ipfilter/test/regress/f14 U src/contrib/ipfilter/test/regress/f15 U src/contrib/ipfilter/test/regress/f16 U src/contrib/ipfilter/test/regress/f17 U src/contrib/ipfilter/test/regress/f2 U src/contrib/ipfilter/test/regress/f3 U src/contrib/ipfilter/test/regress/f4 U src/contrib/ipfilter/test/regress/f5 U src/contrib/ipfilter/test/regress/f6 U src/contrib/ipfilter/test/regress/f7 U src/contrib/ipfilter/test/regress/f8 U src/contrib/ipfilter/test/regress/f9 U src/contrib/ipfilter/test/regress/i1 U src/contrib/ipfilter/test/regress/i10 U src/contrib/ipfilter/test/regress/i11 U src/contrib/ipfilter/test/regress/i12 U src/contrib/ipfilter/test/regress/i2 U src/contrib/ipfilter/test/regress/i3 U src/contrib/ipfilter/test/regress/i4 U src/contrib/ipfilter/test/regress/i5 U src/contrib/ipfilter/test/regress/i6 U src/contrib/ipfilter/test/regress/i7 U src/contrib/ipfilter/test/regress/i8 U src/contrib/ipfilter/test/regress/i9 U src/contrib/ipfilter/test/regress/in1 U src/contrib/ipfilter/test/regress/in2 U src/contrib/ipfilter/test/regress/in3 U src/contrib/ipfilter/test/regress/in4 U src/contrib/ipfilter/test/regress/ipv6.1 U src/contrib/ipfilter/test/regress/ipv6.2 N src/contrib/ipfilter/test/regress/ipv6.3 U src/contrib/ipfilter/test/regress/l1 U src/contrib/ipfilter/test/regress/n1 U src/contrib/ipfilter/test/regress/n2 U src/contrib/ipfilter/test/regress/n3 U src/contrib/ipfilter/test/regress/n4 U src/contrib/ipfilter/test/regress/n5 U src/contrib/ipfilter/test/regress/n6 U src/contrib/ipfilter/test/regress/n7 U src/contrib/ipfilter/test/regress/ni1.ipf U src/contrib/ipfilter/test/regress/ni1.nat U src/contrib/ipfilter/test/regress/ni2.ipf U src/contrib/ipfilter/test/regress/ni2.nat U src/contrib/ipfilter/test/regress/ni3.ipf U src/contrib/ipfilter/test/regress/ni3.nat U src/contrib/ipfilter/test/regress/ni4.ipf U src/contrib/ipfilter/test/regress/ni4.nat U src/contrib/ipfilter/test/regress/ni5.ipf U src/contrib/ipfilter/test/regress/ni5.nat 27 conflicts created by this import. Use the following command to help the merge: cvs checkout -jDARRENR:yesterday -jDARRENR src/contrib/ipfilter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:32:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 565B737B401; Fri, 14 Feb 2003 22:32:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 003D543FA3; Fri, 14 Feb 2003 22:32:49 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6Wmbv060083; Fri, 14 Feb 2003 22:32:48 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6WmME060082; Fri, 14 Feb 2003 22:32:48 -0800 (PST) Message-Id: <200302150632.h1F6WmME060082@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:32:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/ipfilter ipmon.c src/contrib/ipfilter/iplang iplang_y.y src/contrib/ipfilter/ipsend ipsend.c iptests.c sock.c src/contrib/ipfilter/man ipf.5 ipf.8 ipfstat.8 ipftest.1 ipmon.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:32:48 PST Modified files: contrib/ipfilter ipmon.c contrib/ipfilter/iplang iplang_y.y contrib/ipfilter/ipsend ipsend.c iptests.c sock.c contrib/ipfilter/man ipf.5 ipf.8 ipfstat.8 ipftest.1 ipmon.8 Log: bring changes in IPFilter to 3.4.31 on to the head Revision Changes Path 1.5 +2 -2 src/contrib/ipfilter/iplang/iplang_y.y 1.16 +1 -1 src/contrib/ipfilter/ipmon.c 1.10 +1 -1 src/contrib/ipfilter/ipsend/ipsend.c 1.9 +41 -5 src/contrib/ipfilter/ipsend/iptests.c 1.14 +2 -2 src/contrib/ipfilter/ipsend/sock.c 1.7 +2 -2 src/contrib/ipfilter/man/ipf.5 1.5 +2 -2 src/contrib/ipfilter/man/ipf.8 1.7 +3 -3 src/contrib/ipfilter/man/ipfstat.8 1.5 +8 -0 src/contrib/ipfilter/man/ipftest.1 1.12 +1 -1 src/contrib/ipfilter/man/ipmon.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Fri Feb 14 22:47:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98E7237B401; Fri, 14 Feb 2003 22:47:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B07343F93; Fri, 14 Feb 2003 22:47:28 -0800 (PST) (envelope-from darrenr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F6lSbv063920; Fri, 14 Feb 2003 22:47:28 -0800 (PST) (envelope-from darrenr@repoman.freebsd.org) Received: (from darrenr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F6lR3R063919; Fri, 14 Feb 2003 22:47:27 -0800 (PST) Message-Id: <200302150647.h1F6lR3R063919@repoman.freebsd.org> From: Darren Reed Date: Fri, 14 Feb 2003 22:47:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet ip_state.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2003/02/14 22:47:27 PST Modified files: sys/contrib/ipfilter/netinet ip_state.c Log: fix bug in updating of interface pointers when resyncing state Revision Changes Path 1.31 +30 -6 src/sys/contrib/ipfilter/netinet/ip_state.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 0:26: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0AF937B401; Sat, 15 Feb 2003 00:25:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5620543F75; Sat, 15 Feb 2003 00:25:58 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F8Pwbv099494; Sat, 15 Feb 2003 00:25:58 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F8Pwcv099493; Sat, 15 Feb 2003 00:25:58 -0800 (PST) Message-Id: <200302150825.h1F8Pwcv099493@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 00:25:58 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_socket.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 00:25:58 PST Modified files: sys/nfsclient nfs_socket.c Log: Lock proc while accessing p_siglist, p_sigmask and p_sigignore in nfs_sigintr(). Revision Changes Path 1.92 +5 -1 src/sys/nfsclient/nfs_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 0:42: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C150E37B401; Sat, 15 Feb 2003 00:42:03 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 673A843FBF; Sat, 15 Feb 2003 00:42:03 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F8g3bv006042; Sat, 15 Feb 2003 00:42:03 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F8g3VU006038; Sat, 15 Feb 2003 00:42:03 -0800 (PST) Message-Id: <200302150842.h1F8g3VU006038@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 00:42:03 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 00:42:03 PST Modified files: sys/kern kern_sig.c Log: All uses of p_siglist are protected by the proc lock now, so there's no need to acquire Giant in sigpending() anymore. Revision Changes Path 1.205 +1 -6 src/sys/kern/kern_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 1:11:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC37637B401; Sat, 15 Feb 2003 01:11:26 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE1B43FBD; Sat, 15 Feb 2003 01:11:25 -0800 (PST) (envelope-from robert@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F9BPbv015905; Sat, 15 Feb 2003 01:11:25 -0800 (PST) (envelope-from robert@repoman.freebsd.org) Received: (from robert@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F9BPaG015904; Sat, 15 Feb 2003 01:11:25 -0800 (PST) Message-Id: <200302150911.h1F9BPaG015904@repoman.freebsd.org> From: Robert Drehmel Date: Sat, 15 Feb 2003 01:11:25 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/fortune/datfiles freebsd-tips X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG robert 2003/02/15 01:11:25 PST Modified files: games/fortune/datfiles freebsd-tips Log: Remove the suggestion to try `hangman', because it does not exist in the base system anymore. Revision Changes Path 1.30 +0 -3 src/games/fortune/datfiles/freebsd-tips To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 1:15:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8511037B401; Sat, 15 Feb 2003 01:15:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ABF443F85; Sat, 15 Feb 2003 01:15:31 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F9FUbv017589; Sat, 15 Feb 2003 01:15:31 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F9FUc9017588; Sat, 15 Feb 2003 01:15:30 -0800 (PST) Message-Id: <200302150915.h1F9FUc9017588@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 01:15:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 01:15:30 PST Modified files: sys/kern kern_sig.c Log: osigpending() no longer needs Giant, for the same reason sigpending() does not. Revision Changes Path 1.206 +0 -3 src/sys/kern/kern_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 1:25:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9704337B401; Sat, 15 Feb 2003 01:25:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A08C43F93; Sat, 15 Feb 2003 01:25:14 -0800 (PST) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F9PEbv021144; Sat, 15 Feb 2003 01:25:14 -0800 (PST) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F9PDrB021143; Sat, 15 Feb 2003 01:25:13 -0800 (PST) Message-Id: <200302150925.h1F9PDrB021143@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 15 Feb 2003 01:25:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netatm/ipatm ipatm_usrreq.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2003/02/15 01:25:13 PST Modified files: (Branch: RELENG_4) sys/netatm/ipatm ipatm_usrreq.c Log: Don't dereference NULL if no responsible ARP service has been registered for this interface. Revision Changes Path 1.5.2.1 +9 -2 src/sys/netatm/ipatm/ipatm_usrreq.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 1:33: 7 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 070B237B401 for ; Sat, 15 Feb 2003 01:33:06 -0800 (PST) Received: from phk.freebsd.dk (phk.freebsd.dk [212.242.86.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1038B43F93 for ; Sat, 15 Feb 2003 01:33:05 -0800 (PST) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by phk.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1F9Wm6E017254; Sat, 15 Feb 2003 09:32:48 GMT (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.6/8.12.6) with ESMTP id h1F9WWdL008835; Sat, 15 Feb 2003 10:32:32 +0100 (CET) (envelope-from phk@phk.freebsd.dk) To: David Schultz Cc: "Andrey A. Chernov" , Nate Lawson , Juli Mallett , Kirk McKusick , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c From: phk@phk.freebsd.dk In-Reply-To: Your message of "Fri, 14 Feb 2003 19:38:07 PST." <20030215033807.GB3750@HAL9000.homeunix.com> Date: Sat, 15 Feb 2003 10:32:32 +0100 Message-ID: <8834.1045301552@critter.freebsd.dk> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20030215033807.GB3750@HAL9000.homeunix.com>, David Schultz writes: >The issue isn't how random the data ``feels'' according to ad hoc >tests; the issue is predictability. NFS relies upon generation >numbers being unguessable to prevent unauthenticated clients from >spoofing file handles. Even if random() is a pretty good PRNG, >arc4random() gives people peace of mind because it uses a real >cryptographic hash. If you could guess arc4random() values >without knowing the entropy pool, that would likely constitute an >attack on RC4 itself. The issue at hand, as far as I'm concerned is that the regression test was broken. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | 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-src" in the body of the message From owner-cvs-src Sat Feb 15 1:50:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D023537B401; Sat, 15 Feb 2003 01:50:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7116443FCB; Sat, 15 Feb 2003 01:50:54 -0800 (PST) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F9osbv029421; Sat, 15 Feb 2003 01:50:54 -0800 (PST) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F9os3U029419; Sat, 15 Feb 2003 01:50:54 -0800 (PST) Message-Id: <200302150950.h1F9os3U029419@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 15 Feb 2003 01:50:53 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG leeym 2003/02/15 01:50:53 PST Modified files: . modules Log: tcpdstat --> ports/net/tcpdstat Revision Changes Path 1.6736 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 1:56:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFAEE37B401; Sat, 15 Feb 2003 01:56:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5076143FD7; Sat, 15 Feb 2003 01:56:10 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1F9uAbv031993; Sat, 15 Feb 2003 01:56:10 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1F9u9T5031992; Sat, 15 Feb 2003 01:56:09 -0800 (PST) Message-Id: <200302150956.h1F9u9T5031992@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 01:56:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 01:56:09 PST Modified files: sys/kern kern_sig.c Log: Acquire Giant around calls to kern_sigaction() in sigaction(), freebsd4_sigaction() and osigaction() instead of around the whole body of those functions. They now no longer hold Giant around calls to copyin() and copyout(), and it is slightly more obvious what Giant is protecting. Revision Changes Path 1.207 +9 -17 src/sys/kern/kern_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 2:26:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F7ED37B401; Sat, 15 Feb 2003 02:26:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C819143F75; Sat, 15 Feb 2003 02:26:10 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FAQAbv042888; Sat, 15 Feb 2003 02:26:10 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FAQALH042887; Sat, 15 Feb 2003 02:26:10 -0800 (PST) Message-Id: <200302151026.h1FAQALH042887@repoman.freebsd.org> From: Sean Chittenden Date: Sat, 15 Feb 2003 02:26:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/random Makefile random.c randomize_fd.c randomize_fd.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG seanc 2003/02/15 02:26:10 PST Modified files: games/random Makefile random.c randomize_fd.c randomize_fd.h Log: flexlint rears its head as well as some style(9) fixes[1]. Fixed a few bugs for a few corner cases and correctly handle the case where read(2) is read()'ing from a non-file descriptor and could get fewer bytes back than the buffer, but it isn't EOF[2]. random(6) extensively tested and believed to be bug free (save performance for large files). Submitted by: mkm [1], tjr[2] Revision Changes Path 1.5 +1 -1 src/games/random/Makefile 1.14 +13 -10 src/games/random/random.c 1.2 +69 -51 src/games/random/randomize_fd.c 1.2 +0 -11 src/games/random/randomize_fd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 2:34:38 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70F7E37B401; Sat, 15 Feb 2003 02:34:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F47343FBD; Sat, 15 Feb 2003 02:34:36 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FAYZbv046498; Sat, 15 Feb 2003 02:34:35 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FAYZJA046497; Sat, 15 Feb 2003 02:34:35 -0800 (PST) Message-Id: <200302151034.h1FAYZJA046497@repoman.freebsd.org> From: Sean Chittenden Date: Sat, 15 Feb 2003 02:34:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/random Makefile random.6 random.c randomize_fd.c randomize_fd.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG seanc 2003/02/15 02:34:35 PST Modified files: (Branch: RELENG_4) games/random Makefile random.6 random.c Added files: (Branch: RELENG_4) games/random randomize_fd.c randomize_fd.h Log: MFC updated random(6) functionality. (Err... meant markm in last commit) Approved by: markm Revision Changes Path 1.1.1.1.14.2 +2 -0 src/games/random/Makefile 1.3.2.3 +61 -8 src/games/random/random.6 1.11.2.1 +61 -19 src/games/random/random.c 1.2.2.1 +237 -0 src/games/random/randomize_fd.c (new) 1.2.2.1 +45 -0 src/games/random/randomize_fd.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 2:51:15 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81CA837B401; Sat, 15 Feb 2003 02:51:14 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 190EA43F75; Sat, 15 Feb 2003 02:51:06 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FAp6bv051525; Sat, 15 Feb 2003 02:51:06 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FAp6qY051518; Sat, 15 Feb 2003 02:51:06 -0800 (PST) Message-Id: <200302151051.h1FAp6qY051518@repoman.freebsd.org> From: Alexey Zelkin Date: Sat, 15 Feb 2003 02:51:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen dlinfo.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/15 02:51:06 PST Modified files: lib/libc/gen dlinfo.3 Log: Add examples of dlinfo() usage to manual page. Revision Changes Path 1.3 +48 -1 src/lib/libc/gen/dlinfo.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 2:52:48 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D1F737B401; Sat, 15 Feb 2003 02:52:47 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FD0843F93; Sat, 15 Feb 2003 02:52:47 -0800 (PST) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FAqlbv053601; Sat, 15 Feb 2003 02:52:47 -0800 (PST) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FAqkZf053600; Sat, 15 Feb 2003 02:52:46 -0800 (PST) Message-Id: <200302151052.h1FAqkZf053600@repoman.freebsd.org> From: Alexey Zelkin Date: Sat, 15 Feb 2003 02:52:46 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2003/02/15 02:52:46 PST Modified files: lib/libc/gen Makefile.inc Log: Add dlinfo(3) manual page to the rank of base system manpages Revision Changes Path 1.104 +2 -2 src/lib/libc/gen/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 2:57:23 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA52237B401; Sat, 15 Feb 2003 02:57:21 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F3643FA3; Sat, 15 Feb 2003 02:57:21 -0800 (PST) (envelope-from seanc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FAvLbv053939; Sat, 15 Feb 2003 02:57:21 -0800 (PST) (envelope-from seanc@repoman.freebsd.org) Received: (from seanc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FAvLN8053938; Sat, 15 Feb 2003 02:57:21 -0800 (PST) Message-Id: <200302151057.h1FAvLN8053938@repoman.freebsd.org> From: Sean Chittenden Date: Sat, 15 Feb 2003 02:57:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar/calendars calendar.history calendar.lotr calendar.world X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG seanc 2003/02/15 02:57:21 PST Modified files: usr.bin/calendar/calendars calendar.history calendar.world Added files: usr.bin/calendar/calendars calendar.lotr Log: Add the Space Shuttle Columbia incident to calendar.history. While here move LOTR "history" events into their own calendar file. Link calendar.lotr into calendar.world to preserve visibility of this pre-trendy gem in BSD. Revision Changes Path 1.25 +3 -37 src/usr.bin/calendar/calendars/calendar.history 1.1 +47 -0 src/usr.bin/calendar/calendars/calendar.lotr (new) 1.5 +1 -0 src/usr.bin/calendar/calendars/calendar.world To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 5:25:13 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5213137B401; Sat, 15 Feb 2003 05:25:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8FA043FA3; Sat, 15 Feb 2003 05:25:11 -0800 (PST) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FDPBbv010535; Sat, 15 Feb 2003 05:25:11 -0800 (PST) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FDPBIu010534; Sat, 15 Feb 2003 05:25:11 -0800 (PST) Message-Id: <200302151325.h1FDPBIu010534@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sat, 15 Feb 2003 05:25:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/inetd inetd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2003/02/15 05:25:11 PST Modified files: (Branch: RELENG_4) usr.sbin/inetd inetd.c Log: MFC 1.117: The tcp_wrappers function `fromhost()' can fail. In such cases, the `struct sockaddr' will not be allocated. Revision Changes Path 1.80.2.10 +16 -2 src/usr.sbin/inetd/inetd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 5:58: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1082F37B405; Sat, 15 Feb 2003 05:58:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF3A44005; Sat, 15 Feb 2003 05:57:54 -0800 (PST) (envelope-from shiba@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FDvrbv021461; Sat, 15 Feb 2003 05:57:53 -0800 (PST) (envelope-from shiba@repoman.freebsd.org) Received: (from shiba@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FDvru9021460; Sat, 15 Feb 2003 05:57:53 -0800 (PST) Message-Id: <200302151357.h1FDvru9021460@repoman.freebsd.org> From: Takeshi Shibagaki Date: Sat, 15 Feb 2003 05:57:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccarddevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shiba 2003/02/15 05:57:52 PST Modified files: sys/dev/pccard pccarddevs Log: Add YIS YWL-11B. This card has same vendor id and product id as XI300 Wireless LAN. Revision Changes Path 1.44 +2 -0 src/sys/dev/pccard/pccarddevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 5:58:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CBF037B401; Sat, 15 Feb 2003 05:58:29 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B071943F85; Sat, 15 Feb 2003 05:58:28 -0800 (PST) (envelope-from shiba@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FDwSbv021507; Sat, 15 Feb 2003 05:58:28 -0800 (PST) (envelope-from shiba@repoman.freebsd.org) Received: (from shiba@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FDwSm1021506; Sat, 15 Feb 2003 05:58:28 -0800 (PST) Message-Id: <200302151358.h1FDwSm1021506@repoman.freebsd.org> From: Takeshi Shibagaki Date: Sat, 15 Feb 2003 05:58:28 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccarddevs.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shiba 2003/02/15 05:58:28 PST Modified files: sys/dev/pccard pccarddevs.h Log: Regen. Revision Changes Path 1.44 +5 -1 src/sys/dev/pccard/pccarddevs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 5:59:57 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E54FB37B401; Sat, 15 Feb 2003 05:59:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E3DE43F85; Sat, 15 Feb 2003 05:59:55 -0800 (PST) (envelope-from shiba@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FDxtbv021563; Sat, 15 Feb 2003 05:59:55 -0800 (PST) (envelope-from shiba@repoman.freebsd.org) Received: (from shiba@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FDxsow021562; Sat, 15 Feb 2003 05:59:54 -0800 (PST) Message-Id: <200302151359.h1FDxsow021562@repoman.freebsd.org> From: Takeshi Shibagaki Date: Sat, 15 Feb 2003 05:59:54 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi_pccard.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shiba 2003/02/15 05:59:54 PST Modified files: sys/dev/wi if_wi_pccard.c Log: Add YIS YWL-11B. This card has same vendor id and product id as XI300 Wireless LAN. So use PCMCIA_CARD2(). Revision Changes Path 1.17 +1 -0 src/sys/dev/wi/if_wi_pccard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 6: 4: 3 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C46137B401; Sat, 15 Feb 2003 06:04:01 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCED343FA3; Sat, 15 Feb 2003 06:04:00 -0800 (PST) (envelope-from markp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FE40bv025139; Sat, 15 Feb 2003 06:04:00 -0800 (PST) (envelope-from markp@repoman.freebsd.org) Received: (from markp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FE40S8025136; Sat, 15 Feb 2003 06:04:00 -0800 (PST) Message-Id: <200302151404.h1FE40S8025136@repoman.freebsd.org> From: Mark Pulford Date: Sat, 15 Feb 2003 06:04:00 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markp 2003/02/15 06:04:00 PST Modified files: . modules Log: afternoonstalker --> ports/games/afternoonstalker Revision Changes Path 1.6737 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 6: 4: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50E8037B4D4; Sat, 15 Feb 2003 06:04:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E628E43F93; Sat, 15 Feb 2003 06:04:05 -0800 (PST) (envelope-from shiba@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FE45bv025165; Sat, 15 Feb 2003 06:04:05 -0800 (PST) (envelope-from shiba@repoman.freebsd.org) Received: (from shiba@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FE45QS025164; Sat, 15 Feb 2003 06:04:05 -0800 (PST) Message-Id: <200302151404.h1FE45QS025164@repoman.freebsd.org> From: Takeshi Shibagaki Date: Sat, 15 Feb 2003 06:04:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults pccard.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shiba 2003/02/15 06:04:05 PST Modified files: etc/defaults pccard.conf Log: Add YIS YWL-11B. Revision Changes Path 1.258 +6 -0 src/etc/defaults/pccard.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 6:30:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69C0437B401; Sat, 15 Feb 2003 06:30:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B49943F75; Sat, 15 Feb 2003 06:30:52 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FEUpbv033560; Sat, 15 Feb 2003 06:30:51 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FEUpt1033558; Sat, 15 Feb 2003 06:30:51 -0800 (PST) Message-Id: <200302151430.h1FEUpt1033558@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 06:30:51 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/whereintheworld whereintheworld.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 06:30:51 PST Modified files: tools/tools/whereintheworld whereintheworld.pl Log: Avoid an undef warning. Revision Changes Path 1.5 +1 -1 src/tools/tools/whereintheworld/whereintheworld.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 7:13:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1411537B401; Sat, 15 Feb 2003 07:13:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8B1A43FAF; Sat, 15 Feb 2003 07:13:24 -0800 (PST) (envelope-from markp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FFDObv050312; Sat, 15 Feb 2003 07:13:24 -0800 (PST) (envelope-from markp@repoman.freebsd.org) Received: (from markp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FFDOhl050311; Sat, 15 Feb 2003 07:13:24 -0800 (PST) Message-Id: <200302151513.h1FFDOhl050311@repoman.freebsd.org> From: Mark Pulford Date: Sat, 15 Feb 2003 07:13:24 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markp 2003/02/15 07:13:24 PST Modified files: . modules Log: amy --> ports/games/amy Revision Changes Path 1.6738 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 7:47:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9330037B401; Sat, 15 Feb 2003 07:47:09 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E95CE43FB1; Sat, 15 Feb 2003 07:47:08 -0800 (PST) (envelope-from markp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FFl8bv061508; Sat, 15 Feb 2003 07:47:08 -0800 (PST) (envelope-from markp@repoman.freebsd.org) Received: (from markp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FFl8JT061507; Sat, 15 Feb 2003 07:47:08 -0800 (PST) Message-Id: <200302151547.h1FFl8JT061507@repoman.freebsd.org> From: Mark Pulford Date: Sat, 15 Feb 2003 07:47:08 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markp 2003/02/15 07:47:08 PST Modified files: . modules Log: di --> ports/sysutils/di Revision Changes Path 1.6739 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 7:51:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D4E37B401; Sat, 15 Feb 2003 07:51:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64C4543FA3; Sat, 15 Feb 2003 07:51:23 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FFpNbv063547; Sat, 15 Feb 2003 07:51:23 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FFpM7Z063543; Sat, 15 Feb 2003 07:51:22 -0800 (PST) Message-Id: <200302151551.h1FFpM7Z063543@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 15 Feb 2003 07:51:22 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arved 2003/02/15 07:51:22 PST Modified files: . modules Log: de-steak --> ports/german/steak Revision Changes Path 1.6740 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8: 1:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CE3237B405; Sat, 15 Feb 2003 08:01:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D8C543F75; Sat, 15 Feb 2003 08:01:37 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FG1bbv067038; Sat, 15 Feb 2003 08:01:37 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FG1a6V067034; Sat, 15 Feb 2003 08:01:36 -0800 (PST) Message-Id: <200302151601.h1FG1a6V067034@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Feb 2003 08:01:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 Makefile miibus.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/15 08:01:36 PST Modified files: share/man/man4 Makefile Added files: share/man/man4 miibus.4 Log: Add a manual page for miibus(4) and attach it to the build. Reviewed by: peter, rwatson (older version) Revision Changes Path 1.189 +1 -0 src/share/man/man4/Makefile 1.1 +107 -0 src/share/man/man4/miibus.4 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8:21:19 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D511C37B401; Sat, 15 Feb 2003 08:21:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75D3443FA3; Sat, 15 Feb 2003 08:21:17 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FGLHbv074212; Sat, 15 Feb 2003 08:21:17 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FGLHwC074205; Sat, 15 Feb 2003 08:21:17 -0800 (PST) Message-Id: <200302151621.h1FGLHwC074205@repoman.freebsd.org> From: Christian Weisgerber Date: Sat, 15 Feb 2003 08:21:17 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/15 08:21:17 PST Modified files: . modules Log: Consistently add L10N prefixes to language-specific ports module entries. Revision Changes Path 1.6741 +34 -34 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8:26:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BAFF37B401; Sat, 15 Feb 2003 08:26:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC23A43FBF; Sat, 15 Feb 2003 08:26:10 -0800 (PST) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FGQAbv076011; Sat, 15 Feb 2003 08:26:10 -0800 (PST) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FGQAf4076010; Sat, 15 Feb 2003 08:26:10 -0800 (PST) Message-Id: <200302151626.h1FGQAf4076010@repoman.freebsd.org> From: Jacques Vidrine Date: Sat, 15 Feb 2003 08:26:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/compat/compat4x.alpha Makefile libcrypto.so.2.gz.uu libssl.so.2.gz.uu src/lib/compat/compat4x.i386 Makefile libcrypto.so.2.gz.uu libssl.so.2.gz.uu X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2003/02/15 08:26:10 PST Modified files: lib/compat/compat4x.alpha Makefile lib/compat/compat4x.i386 Makefile Added files: lib/compat/compat4x.alpha libcrypto.so.2.gz.uu libssl.so.2.gz.uu lib/compat/compat4x.i386 libcrypto.so.2.gz.uu libssl.so.2.gz.uu Log: Add libcrypto.so.2/libssl.so.2 from 4.7-RELEASE CDs. Revision Changes Path 1.14 +2 -0 src/lib/compat/compat4x.alpha/Makefile 1.1 +8037 -0 src/lib/compat/compat4x.alpha/libcrypto.so.2.gz.uu (new) 1.1 +1968 -0 src/lib/compat/compat4x.alpha/libssl.so.2.gz.uu (new) 1.20 +2 -0 src/lib/compat/compat4x.i386/Makefile 1.1 +6758 -0 src/lib/compat/compat4x.i386/libcrypto.so.2.gz.uu (new) 1.1 +1722 -0 src/lib/compat/compat4x.i386/libssl.so.2.gz.uu (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8:29:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAE0E37B401; Sat, 15 Feb 2003 08:29:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CCE943F75; Sat, 15 Feb 2003 08:29:20 -0800 (PST) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FGTKbv076125; Sat, 15 Feb 2003 08:29:20 -0800 (PST) (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FGTKkb076124; Sat, 15 Feb 2003 08:29:20 -0800 (PST) Message-Id: <200302151629.h1FGTKkb076124@repoman.freebsd.org> From: John Hay Date: Sat, 15 Feb 2003 08:29:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.diskless1 src/etc/rc.d initdiskless X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhay 2003/02/15 08:29:20 PST Modified files: etc rc.diskless1 etc/rc.d initdiskless Log: Add another backslash ('\'). Revision Changes Path 1.23 +1 -1 src/etc/rc.d/initdiskless 1.20 +1 -1 src/etc/rc.diskless1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8:34:16 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA27637B405; Sat, 15 Feb 2003 08:34:15 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2755C43FCB; Sat, 15 Feb 2003 08:34:15 -0800 (PST) (envelope-from jhay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FGYEbv079582; Sat, 15 Feb 2003 08:34:14 -0800 (PST) (envelope-from jhay@repoman.freebsd.org) Received: (from jhay@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FGYExN079581; Sat, 15 Feb 2003 08:34:14 -0800 (PST) Message-Id: <200302151634.h1FGYExN079581@repoman.freebsd.org> From: John Hay Date: Sat, 15 Feb 2003 08:34:14 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/rc.d diskless X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhay 2003/02/15 08:34:14 PST Modified files: etc/rc.d diskless Log: kenv moved from /usr/bin/ to /bin/. Revision Changes Path 1.25 +3 -3 src/etc/rc.d/diskless To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8:34:59 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EF3137B405; Sat, 15 Feb 2003 08:34:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCCC43F3F; Sat, 15 Feb 2003 08:34:57 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FGYvbv079624; Sat, 15 Feb 2003 08:34:57 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FGYvIT079623; Sat, 15 Feb 2003 08:34:57 -0800 (PST) Message-Id: <200302151634.h1FGYvIT079623@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Feb 2003 08:34:57 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults make.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/15 08:34:57 PST Modified files: (Branch: RELENG_4) etc/defaults make.conf Log: Add an equal sign which I neglected. Revision Changes Path 1.97.2.80 +1 -1 src/etc/defaults/make.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 8:48:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3A8437B401; Sat, 15 Feb 2003 08:48:32 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D5843F75; Sat, 15 Feb 2003 08:48:32 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FGmWbv083387; Sat, 15 Feb 2003 08:48:32 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FGmWNp083386; Sat, 15 Feb 2003 08:48:32 -0800 (PST) Message-Id: <200302151648.h1FGmWNp083386@repoman.freebsd.org> From: Christian Weisgerber Date: Sat, 15 Feb 2003 08:48:32 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/15 08:48:32 PST Modified files: . modules Log: Add missing ports module entries in language categories. Revision Changes Path 1.6742 +46 -2 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 9: 0:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD7D537B401; Sat, 15 Feb 2003 09:00:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38A8443F85; Sat, 15 Feb 2003 09:00:45 -0800 (PST) (envelope-from shiba@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FH0jbv087337; Sat, 15 Feb 2003 09:00:45 -0800 (PST) (envelope-from shiba@repoman.freebsd.org) Received: (from shiba@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FH0irw087332; Sat, 15 Feb 2003 09:00:44 -0800 (PST) Message-Id: <200302151700.h1FH0irw087332@repoman.freebsd.org> From: Takeshi Shibagaki Date: Sat, 15 Feb 2003 09:00:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults pccard.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shiba 2003/02/15 09:00:44 PST Modified files: (Branch: RELENG_4) etc/defaults pccard.conf Log: Add YIS YWL-11B. Approved by re@freebsd.org Revision Changes Path 1.98.2.37 +6 -0 src/etc/defaults/pccard.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 9:12:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7288837B401; Sat, 15 Feb 2003 09:12:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CBAB43F3F; Sat, 15 Feb 2003 09:12:54 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FHCrbv094091; Sat, 15 Feb 2003 09:12:53 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FHCrpo094090; Sat, 15 Feb 2003 09:12:53 -0800 (PST) Message-Id: <200302151712.h1FHCrpo094090@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Feb 2003 09:12:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 an.4 aue.4 awi.4 bge.4 cue.4 dc.4 ed.4 fxp.4 kue.4 pcn.4 rl.4 sf.4 sis.4 ste.4 tl.4 txp.4 vr.4 wb.4 xl.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/15 09:12:53 PST Modified files: share/man/man4 an.4 aue.4 awi.4 bge.4 cue.4 dc.4 ed.4 fxp.4 kue.4 pcn.4 rl.4 sf.4 sis.4 ste.4 tl.4 txp.4 vr.4 wb.4 xl.4 Log: Xref miibus(4). Revision Changes Path 1.15 +1 -0 src/share/man/man4/an.4 1.15 +2 -1 src/share/man/man4/aue.4 1.12 +1 -0 src/share/man/man4/awi.4 1.6 +1 -0 src/share/man/man4/bge.4 1.15 +2 -1 src/share/man/man4/cue.4 1.19 +1 -0 src/share/man/man4/dc.4 1.35 +1 -0 src/share/man/man4/ed.4 1.27 +1 -0 src/share/man/man4/fxp.4 1.15 +2 -1 src/share/man/man4/kue.4 1.8 +1 -0 src/share/man/man4/pcn.4 1.26 +1 -0 src/share/man/man4/rl.4 1.17 +2 -1 src/share/man/man4/sf.4 1.12 +2 -1 src/share/man/man4/sis.4 1.13 +2 -1 src/share/man/man4/ste.4 1.16 +1 -0 src/share/man/man4/tl.4 1.4 +2 -1 src/share/man/man4/txp.4 1.18 +1 -0 src/share/man/man4/vr.4 1.16 +2 -1 src/share/man/man4/wb.4 1.20 +2 -1 src/share/man/man4/xl.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 9:16:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E88537B401; Sat, 15 Feb 2003 09:16:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3138343FAF; Sat, 15 Feb 2003 09:16:45 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FHGjbv094222; Sat, 15 Feb 2003 09:16:45 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FHGigu094221; Sat, 15 Feb 2003 09:16:44 -0800 (PST) Message-Id: <200302151716.h1FHGigu094221@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Feb 2003 09:16:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 miibus.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/15 09:16:44 PST Modified files: share/man/man4 miibus.4 Log: 1: wi(4) does not need miibus(4). 2: Add arp(4) and netintro(4) to Xrefs. 1: Discussed with: imp Revision Changes Path 1.2 +2 -2 src/share/man/man4/miibus.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 9:20:29 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57BD037B401; Sat, 15 Feb 2003 09:20:28 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF39443FBF; Sat, 15 Feb 2003 09:20:27 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FHKRbv094729; Sat, 15 Feb 2003 09:20:27 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FHKREV094723; Sat, 15 Feb 2003 09:20:27 -0800 (PST) Message-Id: <200302151720.h1FHKREV094723@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 09:20:27 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc pam.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 09:20:27 PST Modified files: (Branch: RELENG_4) etc pam.conf Log: Change the pam_opieaccess examples to "requisite" as per the man page. Revision Changes Path 1.6.2.18 +3 -3 src/etc/pam.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 9:25:27 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3903237B401; Sat, 15 Feb 2003 09:25:26 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFBA043F85; Sat, 15 Feb 2003 09:25:24 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 31F1A536E; Sat, 15 Feb 2003 18:25:23 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jacques Vidrine Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/compat/compat4x.alpha Makefile libcrypto.so.2.gz.uu libssl.so.2.gz.uu src/lib/compat/compat4x.i386 Makefile libcrypto.so.2.gz.uu libssl.so.2.gz.uu From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 18:25:22 +0100 In-Reply-To: <200302151626.h1FGQAf4076010@repoman.freebsd.org> (Jacques Vidrine's message of "Sat, 15 Feb 2003 08:26:10 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302151626.h1FGQAf4076010@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jacques Vidrine writes: > Log: > Add libcrypto.so.2/libssl.so.2 from 4.7-RELEASE CDs. Another one that's missing is libgmp, which prevents me from making a Maude port since Maude is distributed as 4.x binaries: des@des ~/maude-freeBSD/bin% ldd maude.freeBSD maude.freeBSD: libgmp.so.3 => not found (0x0) libm.so.2 => /usr/lib/libm.so.2 (0x280f9000) libc.so.3 => /usr/local/lib/compat/libc.so.3 (0x28117000) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 10:53:28 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 018AD37B401; Sat, 15 Feb 2003 10:53:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6857E43FBF; Sat, 15 Feb 2003 10:53:19 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FIrJbv029971; Sat, 15 Feb 2003 10:53:19 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FIrJ4B029970; Sat, 15 Feb 2003 10:53:19 -0800 (PST) Message-Id: <200302151853.h1FIrJ4B029970@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 15 Feb 2003 10:53:18 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/file - Imported sources X-FreeBSD-CVS-Branch: ZOULAS Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/15 10:53:18 PST src/contrib/file - Imported sources Update of /home/ncvs/src/contrib/file In directory repoman.freebsd.org:/tmp/cvs-serv29960 Log Message: Virgin import of Christos Zoulas's FILE 3.40. Status: Vendor Tag: ZOULAS Release Tags: file_3_40 U src/contrib/file/Header U src/contrib/file/LEGAL.NOTICE U src/contrib/file/Localstuff U src/contrib/file/MAINT U src/contrib/file/Makefile.am U src/contrib/file/Makefile.in U src/contrib/file/Makefile.std U src/contrib/file/README U src/contrib/file/acconfig.h U src/contrib/file/acinclude.m4 U src/contrib/file/aclocal.m4 U src/contrib/file/apprentice.c U src/contrib/file/ascmagic.c U src/contrib/file/compress.c U src/contrib/file/config.h.in U src/contrib/file/configure U src/contrib/file/configure.in U src/contrib/file/file.c U src/contrib/file/file.h U src/contrib/file/file.man U src/contrib/file/fsmagic.c U src/contrib/file/install-sh U src/contrib/file/is_tar.c U src/contrib/file/missing U src/contrib/file/magic.man U src/contrib/file/magic.mime U src/contrib/file/magic2mime U src/contrib/file/mkinstalldirs U src/contrib/file/names.h U src/contrib/file/patchlevel.h U src/contrib/file/print.c U src/contrib/file/readelf.c U src/contrib/file/readelf.h U src/contrib/file/softmagic.c U src/contrib/file/stamp-h.in U src/contrib/file/tar.h U src/contrib/file/Magdir/adventure U src/contrib/file/Magdir/acorn U src/contrib/file/Magdir/adi U src/contrib/file/Magdir/allegro U src/contrib/file/Magdir/alliant U src/contrib/file/Magdir/alpha U src/contrib/file/Magdir/amanda U src/contrib/file/Magdir/amigaos U src/contrib/file/Magdir/animation U src/contrib/file/Magdir/apl U src/contrib/file/Magdir/apple U src/contrib/file/Magdir/applix U src/contrib/file/Magdir/archive U src/contrib/file/Magdir/asterix U src/contrib/file/Magdir/att3b U src/contrib/file/Magdir/audio U src/contrib/file/Magdir/blender U src/contrib/file/Magdir/blit U src/contrib/file/Magdir/bsdi U src/contrib/file/Magdir/c-lang U src/contrib/file/Magdir/cddb U src/contrib/file/Magdir/chi U src/contrib/file/Magdir/cisco U src/contrib/file/Magdir/citrus U src/contrib/file/Magdir/claris U src/contrib/file/Magdir/clipper U src/contrib/file/Magdir/commands U src/contrib/file/Magdir/compress U src/contrib/file/Magdir/cvs U src/contrib/file/Magdir/elf U src/contrib/file/Magdir/console U src/contrib/file/Magdir/convex U src/contrib/file/Magdir/ctags U src/contrib/file/Magdir/database U src/contrib/file/Magdir/diamond U src/contrib/file/Magdir/diff U src/contrib/file/Magdir/digital U src/contrib/file/Magdir/dolby U src/contrib/file/Magdir/dump U src/contrib/file/Magdir/dyadic U src/contrib/file/Magdir/editors U src/contrib/file/Magdir/encore U src/contrib/file/Magdir/epoc U src/contrib/file/Magdir/filesystems U src/contrib/file/Magdir/flash U src/contrib/file/Magdir/fonts U src/contrib/file/Magdir/frame U src/contrib/file/Magdir/freebsd U src/contrib/file/Magdir/fsav U src/contrib/file/Magdir/gimp U src/contrib/file/Magdir/gnu U src/contrib/file/Magdir/grace U src/contrib/file/Magdir/gringotts U src/contrib/file/Magdir/hitachi-sh U src/contrib/file/Magdir/hp U src/contrib/file/Magdir/human68k U src/contrib/file/Magdir/ibm370 U src/contrib/file/Magdir/ibm6000 U src/contrib/file/Magdir/iff U src/contrib/file/Magdir/images U src/contrib/file/Magdir/lex U src/contrib/file/Magdir/lif U src/contrib/file/Magdir/intel U src/contrib/file/Magdir/interleaf U src/contrib/file/Magdir/island U src/contrib/file/Magdir/ispell U src/contrib/file/Magdir/java U src/contrib/file/Magdir/jpeg U src/contrib/file/Magdir/karma U src/contrib/file/Magdir/lecter U src/contrib/file/Magdir/linux U src/contrib/file/Magdir/lisp U src/contrib/file/Magdir/mach U src/contrib/file/Magdir/macintosh U src/contrib/file/Magdir/magic U src/contrib/file/Magdir/mail.news U src/contrib/file/Magdir/maple U src/contrib/file/Magdir/mathematica U src/contrib/file/Magdir/mcrypt U src/contrib/file/Magdir/mime U src/contrib/file/Magdir/mips U src/contrib/file/Magdir/mirage U src/contrib/file/Magdir/mkid U src/contrib/file/Magdir/mlssa U src/contrib/file/Magdir/mmdf U src/contrib/file/Magdir/modem U src/contrib/file/Magdir/motorola U src/contrib/file/Magdir/msdos U src/contrib/file/Magdir/msvc U src/contrib/file/Magdir/natinst U src/contrib/file/Magdir/ncr U src/contrib/file/Magdir/netbsd U src/contrib/file/Magdir/news U src/contrib/file/Magdir/netscape U src/contrib/file/Magdir/nitpicker U src/contrib/file/Magdir/octave U src/contrib/file/Magdir/olf U src/contrib/file/Magdir/os2 U src/contrib/file/Magdir/os9 U src/contrib/file/Magdir/osf1 U src/contrib/file/Magdir/palm U src/contrib/file/Magdir/parix U src/contrib/file/Magdir/pbm U src/contrib/file/Magdir/pdf U src/contrib/file/Magdir/pdp U src/contrib/file/Magdir/perl U src/contrib/file/Magdir/pgp U src/contrib/file/Magdir/pkgadd U src/contrib/file/Magdir/plus5 U src/contrib/file/Magdir/printer U src/contrib/file/Magdir/project U src/contrib/file/Magdir/psdbms U src/contrib/file/Magdir/pulsar U src/contrib/file/Magdir/pyramid U src/contrib/file/Magdir/python U src/contrib/file/Magdir/riff U src/contrib/file/Magdir/rpm U src/contrib/file/Magdir/rtf U src/contrib/file/Magdir/sc U src/contrib/file/Magdir/sccs U src/contrib/file/Magdir/sendmail U src/contrib/file/Magdir/sequent U src/contrib/file/Magdir/sgml U src/contrib/file/Magdir/sharc U src/contrib/file/Magdir/sketch U src/contrib/file/Magdir/sun U src/contrib/file/Magdir/sniffer U src/contrib/file/Magdir/smalltalk U src/contrib/file/Magdir/softquad U src/contrib/file/Magdir/spectrum U src/contrib/file/Magdir/sysex U src/contrib/file/Magdir/teapot U src/contrib/file/Magdir/terminfo U src/contrib/file/Magdir/tex U src/contrib/file/Magdir/tgif U src/contrib/file/Magdir/ti-8x U src/contrib/file/Magdir/timezone U src/contrib/file/Magdir/troff U src/contrib/file/Magdir/tuxedo U src/contrib/file/Magdir/typeset U src/contrib/file/Magdir/unknown U src/contrib/file/Magdir/uuencode U src/contrib/file/Magdir/varied.out U src/contrib/file/Magdir/vax U src/contrib/file/Magdir/vicar U src/contrib/file/Magdir/visx U src/contrib/file/Magdir/vms U src/contrib/file/Magdir/vmware U src/contrib/file/Magdir/vorbis U src/contrib/file/Magdir/vxl U src/contrib/file/Magdir/wordperfect U src/contrib/file/Magdir/xdelta U src/contrib/file/Magdir/xenix U src/contrib/file/Magdir/zilog U src/contrib/file/Magdir/zyxel No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 10:58: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A20FB37B401; Sat, 15 Feb 2003 10:58:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A8943F75; Sat, 15 Feb 2003 10:58:07 -0800 (PST) (envelope-from arr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FIw7bv030129; Sat, 15 Feb 2003 10:58:07 -0800 (PST) (envelope-from arr@repoman.freebsd.org) Received: (from arr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FIw7Mp030128; Sat, 15 Feb 2003 10:58:07 -0800 (PST) Message-Id: <200302151858.h1FIw7Mp030128@repoman.freebsd.org> From: "Andrew R. Reiter" Date: Sat, 15 Feb 2003 10:58:07 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_cache.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arr 2003/02/15 10:58:06 PST Modified files: sys/kern vfs_cache.c Log: - Remove old comment for PURGE() as it no longer exists and implied it was a comment to cache_zap(). - Add a comment to quickly state what cache_zap() does. Reviewed by: phk, mux Revision Changes Path 1.78 +4 -2 src/sys/kern/vfs_cache.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 11: 5:12 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C380037B401; Sat, 15 Feb 2003 11:05:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6604643FA3; Sat, 15 Feb 2003 11:05:10 -0800 (PST) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FJ5Abv033644; Sat, 15 Feb 2003 11:05:10 -0800 (PST) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FJ5ARZ033643; Sat, 15 Feb 2003 11:05:10 -0800 (PST) Message-Id: <200302151905.h1FJ5ARZ033643@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 15 Feb 2003 11:05:10 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/file config.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2003/02/15 11:05:10 PST Modified files: usr.bin/file config.h Log: Update for version 3.40. * We have inttypes.h (yes, even in RELENG_4). * We now have GNU getopt, so lets be the first thing in the tree to acutally use it... Revision Changes Path 1.6 +8 -2 src/usr.bin/file/config.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 11:17:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40A5537B401; Sat, 15 Feb 2003 11:17:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9E4443F93; Sat, 15 Feb 2003 11:17:30 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FJHUbv037295; Sat, 15 Feb 2003 11:17:30 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FJHU4G037294; Sat, 15 Feb 2003 11:17:30 -0800 (PST) Message-Id: <200302151917.h1FJHU4G037294@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Feb 2003 11:17:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 usb.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/15 11:17:30 PST Modified files: share/man/man4 usb.4 Log: Update xrefs to point at other usb pages. Revision Changes Path 1.27 +2 -0 src/share/man/man4/usb.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 11:21:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E7F437B401; Sat, 15 Feb 2003 11:21:43 -0800 (PST) Received: from canning.wemm.org (canning.wemm.org [192.203.228.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB8C43F3F; Sat, 15 Feb 2003 11:21:43 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by canning.wemm.org (Postfix) with ESMTP id E79BE2A89E; Sat, 15 Feb 2003 11:21:42 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Marcel Moolenaar Cc: Eric Anholt , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile In-Reply-To: <20030214061708.GA2109@athlon.pn.xcllnt.net> Date: Sat, 15 Feb 2003 11:21:42 -0800 From: Peter Wemm Message-Id: <20030215192142.E79BE2A89E@canning.wemm.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Marcel Moolenaar wrote: > On Thu, Feb 13, 2003 at 09:32:33PM -0800, Eric Anholt wrote: > > > > > > In that case, we'd better make sure there's cache coherency. Do we > > > actually have the code structured in a way that allows having the > > > flushing chipset dependent (not to mention dependent on the address)? > > > > No, currently all the cache flushes (four in agp.c, three in i810 and > > amd code) are unconditional agp_flush_cache calls after modifying the > > gatt entries. They aren't tied to a specific memory range, but could be > > pretty easily, if not the most efficiently, by pushing some of them into > > the (un)bind_pages. There's probably a better way. > > I wonder: do we actually need to flush at all? GART updates are PCI/AGP > writes and should be coherent, right? Consider the remap table. It is external to the cpu, on the far side of the writeback cache. Changing remap entries with pending writes would be interesting. AGP isn't necessarily coherent either. > Also, on ia64 bus I/O is done with a virtual address that has the > non-cacheable property. Flushing would not be required irrespective. What about user mmaped IO? eg: when the Xserver has got stuff remapped down into user memory? And what if the remap table is changed underneath that? On i386, the MTRR stuff is used to control cache behavior so that the userland portions can be in writeback mode. I dont recall what happens on ia64. I really dont understand this stuff well enough. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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-src" in the body of the message From owner-cvs-src Sat Feb 15 11:23:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED72437B401; Sat, 15 Feb 2003 11:23:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92F9043F3F; Sat, 15 Feb 2003 11:23:37 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FJNbbv040766; Sat, 15 Feb 2003 11:23:37 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FJNbYp040765; Sat, 15 Feb 2003 11:23:37 -0800 (PST) Message-Id: <200302151923.h1FJNbYp040765@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Feb 2003 11:23:37 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/15 11:23:37 PST Modified files: sys/i386/i386 pmap.c Log: Assert that the kernel map's system mutex is held in pmap_growkernel(). Revision Changes Path 1.389 +1 -0 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 11:32:54 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCCB137B401; Sat, 15 Feb 2003 11:32:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 601FE43F93; Sat, 15 Feb 2003 11:32:52 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FJWqbv044367; Sat, 15 Feb 2003 11:32:52 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FJWqIZ044366; Sat, 15 Feb 2003 11:32:52 -0800 (PST) Message-Id: <200302151932.h1FJWqIZ044366@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 11:32:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/tools/tinderbox tinderbox.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 11:32:52 PST Modified files: tools/tools/tinderbox tinderbox.pl Log: Log to stdout if no file was specified. Revision Changes Path 1.8 +8 -9 src/tools/tools/tinderbox/tinderbox.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 11:38:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9151937B401; Sat, 15 Feb 2003 11:38:24 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E61F43FB1; Sat, 15 Feb 2003 11:38:24 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FJcObv044688; Sat, 15 Feb 2003 11:38:24 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FJcNpO044687; Sat, 15 Feb 2003 11:38:23 -0800 (PST) Message-Id: <200302151938.h1FJcNpO044687@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Feb 2003 11:38:23 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm pmap.h vm_kern.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/15 11:38:23 PST Modified files: sys/vm pmap.h vm_kern.h Log: Move kernel_vm_end's declaration to pmap.h; add a comment regarding the synchronization of access to kernel_vm_end. Revision Changes Path 1.53 +5 -0 src/sys/vm/pmap.h 1.25 +0 -2 src/sys/vm/vm_kern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 12: 1:11 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1361337B401; Sat, 15 Feb 2003 12:01:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC0C043FA3; Sat, 15 Feb 2003 12:01:09 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FK19bv052818; Sat, 15 Feb 2003 12:01:09 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FK19Jp052811; Sat, 15 Feb 2003 12:01:09 -0800 (PST) Message-Id: <200302152001.h1FK19Jp052811@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Feb 2003 12:01:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_map.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/15 12:01:09 PST Modified files: sys/vm vm_map.c Log: Remove the acquisition and release of Giant around pmap_growkernel(). It's unnecessary for two reasons: (1) Giant is at present already held in such cases and (2) our various implementations of pmap_growkernel() look to be MP safe. (For example, for sparc64 the proof of (2) is trivial.) Revision Changes Path 1.284 +0 -2 src/sys/vm/vm_map.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 12:27:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3817C37B401; Sat, 15 Feb 2003 12:27:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD28143FAF; Sat, 15 Feb 2003 12:27:50 -0800 (PST) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FKRobv062606; Sat, 15 Feb 2003 12:27:50 -0800 (PST) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FKRo2Q062605; Sat, 15 Feb 2003 12:27:50 -0800 (PST) Message-Id: <200302152027.h1FKRo2Q062605@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 15 Feb 2003 12:27:50 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arved 2003/02/15 12:27:50 PST Modified files: . modules Log: pyslsk --> ports/net/pyslsk Revision Changes Path 1.6743 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 12:58:35 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E99EE37B401; Sat, 15 Feb 2003 12:58:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C2D043F93; Sat, 15 Feb 2003 12:58:33 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FKwXbv073300; Sat, 15 Feb 2003 12:58:33 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FKwXCU073299; Sat, 15 Feb 2003 12:58:33 -0800 (PST) Message-Id: <200302152058.h1FKwXCU073299@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 15 Feb 2003 12:58:33 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2003/02/15 12:58:33 PST Modified files: sys/ia64/ia64 pmap.c Log: Fix misuse of Maxmem in the calculation of the VHPT size. Maxmem is already in pages, so we should not convert from bytes to pages. The result of this bug was bad scaling of the VHPT relative to the available memory. Submitted by: Arun Sharma Revision Changes Path 1.93 +1 -1 src/sys/ia64/ia64/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 13:22:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E180437B405; Sat, 15 Feb 2003 13:22:20 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CD9043FAF; Sat, 15 Feb 2003 13:22:20 -0800 (PST) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FLMKbv083480; Sat, 15 Feb 2003 13:22:20 -0800 (PST) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FLMKr5083476; Sat, 15 Feb 2003 13:22:20 -0800 (PST) Message-Id: <200302152122.h1FLMKr5083476@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 15 Feb 2003 13:22:20 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/syscons/apm apm_saver.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2003/02/15 13:22:20 PST Modified files: sys/dev/syscons/apm apm_saver.c Log: Added dependency on the apm(4) module. Revision Changes Path 1.7 +1 -0 src/sys/dev/syscons/apm/apm_saver.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 14:11: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 501B137B405; Sat, 15 Feb 2003 14:10:59 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E49AD43F85; Sat, 15 Feb 2003 14:10:58 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FMAwbv099382; Sat, 15 Feb 2003 14:10:58 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FMAwrJ099374; Sat, 15 Feb 2003 14:10:58 -0800 (PST) Message-Id: <200302152210.h1FMAwrJ099374@repoman.freebsd.org> From: Christian Weisgerber Date: Sat, 15 Feb 2003 14:10:58 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/15 14:10:58 PST Modified files: . modules Log: Remove entry for nonexistent port. Revision Changes Path 1.6744 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 14:28:36 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB13137B401; Sat, 15 Feb 2003 14:28:34 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FAC743F75; Sat, 15 Feb 2003 14:28:34 -0800 (PST) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FMSYbv005848; Sat, 15 Feb 2003 14:28:34 -0800 (PST) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FMSYBr005847; Sat, 15 Feb 2003 14:28:34 -0800 (PST) Message-Id: <200302152228.h1FMSYBr005847@repoman.freebsd.org> From: Tom Rhodes Date: Sat, 15 Feb 2003 14:28:34 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2003/02/15 14:28:34 PST Modified files: share/man/man4 Makefile Log: Link several of the if_* modules to their respected manual pages. Revision Changes Path 1.190 +40 -0 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 14:29: 8 2003 Delivered-To: cvs-src@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 931) id E2AF937B401; Sat, 15 Feb 2003 14:29:06 -0800 (PST) Date: Sat, 15 Feb 2003 16:29:06 -0600 From: Juli Mallett To: Tom Rhodes Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 Makefile Message-ID: <20030215162906.A93566@FreeBSD.org> References: <200302152228.h1FMSYBr005847@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200302152228.h1FMSYBr005847@repoman.freebsd.org>; from trhodes@FreeBSD.org on Sat, Feb 15, 2003 at 02:28:34PM -0800 Organisation: The FreeBSD Project X-Alternate-Addresses: , , , , X-Towel: Yes X-LiveJournal: flata, jmallett X-Negacore: Yes Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * De: Tom Rhodes [ Data: 2003-02-15 ] [ Subjecte: cvs commit: src/share/man/man4 Makefile ] > trhodes 2003/02/15 14:28:34 PST > > Modified files: > share/man/man4 Makefile > Log: > Link several of the if_* modules to their respected manual pages. Thanks! -- Juli Mallett - AIM: BSDFlata -- IRC: juli on EFnet OpenDarwin, Mono, FreeBSD Developer - ircd-hybrid Developer, EFnet addict FreeBSD on MIPS-Anything on FreeBSD - Never trust an ELF, COFF or Mach-O! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 14:43: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02C0D37B401; Sat, 15 Feb 2003 14:43:07 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62C7543FA3; Sat, 15 Feb 2003 14:43:06 -0800 (PST) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FMh6bv012866; Sat, 15 Feb 2003 14:43:06 -0800 (PST) (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FMh6Ub012865; Sat, 15 Feb 2003 14:43:06 -0800 (PST) Message-Id: <200302152243.h1FMh6Ub012865@repoman.freebsd.org> From: Tor Egge Date: Sat, 15 Feb 2003 14:43:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c kern_fork.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tegge 2003/02/15 14:43:06 PST Modified files: sys/kern kern_descrip.c kern_fork.c Log: Avoid file lock leakage when linuxthreads port or rfork is used: - Mark the process leader as having an advisory lock - Check if process leader is marked as having advisory lock when closing file - Check that file is still open after lock has been obtained - Don't allow file descriptor table sharing between processes with different leaders PR: 10265 Reviewed by: alfred Revision Changes Path 1.188 +51 -15 src/sys/kern/kern_descrip.c 1.182 +7 -0 src/sys/kern/kern_fork.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15: 5:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 895E137B401; Sat, 15 Feb 2003 15:05:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CBA443F75; Sat, 15 Feb 2003 15:05:49 -0800 (PST) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FN5nbv020196; Sat, 15 Feb 2003 15:05:49 -0800 (PST) (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FN5md1020195; Sat, 15 Feb 2003 15:05:48 -0800 (PST) Message-Id: <200302152305.h1FN5md1020195@repoman.freebsd.org> From: Giorgos Keramidas Date: Sat, 15 Feb 2003 15:05:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG keramida 2003/02/15 15:05:48 PST Modified files: etc/mtree BSD.usr.dist Log: Remove {man,cat}n from /usr/share/man. They had been added for TCL, but it's no longer a part of the base-system and buildworld works fine here after deleting them both on disk and from the mtree spec files. Not objected to by: kris, silence on -audit Revision Changes Path 1.272 +0 -10 src/etc/mtree/BSD.usr.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:16:43 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 973BD37B401; Sat, 15 Feb 2003 15:16:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B12543FBF; Sat, 15 Feb 2003 15:16:42 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNGgbv023859; Sat, 15 Feb 2003 15:16:42 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNGfUQ023858; Sat, 15 Feb 2003 15:16:41 -0800 (PST) Message-Id: <200302152316.h1FNGfUQ023858@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 15:16:41 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/login login.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 15:16:41 PST Modified files: usr.bin/login login.c Log: Set PAM_RHOST to "localhost" if no remote host was specified. This allows pam_opieaccess() to work as expected for local logins. Revision Changes Path 1.94 +2 -1 src/usr.bin/login/login.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:17:42 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E16C37B401; Sat, 15 Feb 2003 15:17:41 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C840643F3F; Sat, 15 Feb 2003 15:17:40 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNHebv023896; Sat, 15 Feb 2003 15:17:40 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNHeGm023895; Sat, 15 Feb 2003 15:17:40 -0800 (PST) Message-Id: <200302152317.h1FNHeGm023895@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 15:17:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc opieaccess X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 15:17:40 PST Modified files: etc opieaccess Log: Allow password logins from localhost (including the console). Revision Changes Path 1.3 +2 -2 src/etc/opieaccess To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:20: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AF8437B401; Sat, 15 Feb 2003 15:20:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3FF143FAF; Sat, 15 Feb 2003 15:20:04 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNK4bv023996; Sat, 15 Feb 2003 15:20:04 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNK47L023995; Sat, 15 Feb 2003 15:20:04 -0800 (PST) Message-Id: <200302152320.h1FNK47L023995@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 15:20:04 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/login login.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 15:20:04 PST Modified files: usr.bin/login login.c Log: Back out previous commit, I wasn't thinking clearly. Revision Changes Path 1.95 +1 -2 src/usr.bin/login/login.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:25:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E34FD37B401; Sat, 15 Feb 2003 15:25:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8692543FB1; Sat, 15 Feb 2003 15:25:12 -0800 (PST) (envelope-from arr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNPCbv027434; Sat, 15 Feb 2003 15:25:12 -0800 (PST) (envelope-from arr@repoman.freebsd.org) Received: (from arr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNPCG7027433; Sat, 15 Feb 2003 15:25:12 -0800 (PST) Message-Id: <200302152325.h1FNPCG7027433@repoman.freebsd.org> From: "Andrew R. Reiter" Date: Sat, 15 Feb 2003 15:25:12 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_cache.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG arr 2003/02/15 15:25:12 PST Modified files: sys/kern vfs_cache.c Log: - Update a couple of comments to make sense with what today's code is doing (stale comments make arr something something ;)). Revision Changes Path 1.79 +12 -6 src/sys/kern/vfs_cache.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:26:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD62437B401; Sat, 15 Feb 2003 15:26:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E99343FCB; Sat, 15 Feb 2003 15:26:49 -0800 (PST) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNQnbv027547; Sat, 15 Feb 2003 15:26:49 -0800 (PST) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNQnAr027546; Sat, 15 Feb 2003 15:26:49 -0800 (PST) Message-Id: <200302152326.h1FNQnAr027546@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 15 Feb 2003 15:26:49 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2003/02/15 15:26:49 PST Modified files: lib/libpam/modules/pam_opieaccess pam_opieaccess.c Log: Assume "localhost" if no remote host was specified. This is safe from a POLA point of view since the stock /etc/opieaccess now allows localhost. Revision Changes Path 1.11 +4 -3 src/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:27:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4389A37B401; Sat, 15 Feb 2003 15:27:10 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id F363443FDD; Sat, 15 Feb 2003 15:27:08 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1FNR61o068345; Sat, 15 Feb 2003 15:27:06 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1FNR62r000841; Sat, 15 Feb 2003 15:27:06 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1FNR6Bp000840; Sat, 15 Feb 2003 15:27:06 -0800 (PST) Date: Sat, 15 Feb 2003 15:27:06 -0800 From: Marcel Moolenaar To: Peter Wemm Cc: Eric Anholt , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile Message-ID: <20030215232706.GA621@athlon.pn.xcllnt.net> References: <20030214061708.GA2109@athlon.pn.xcllnt.net> <20030215192142.E79BE2A89E@canning.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215192142.E79BE2A89E@canning.wemm.org> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 11:21:42AM -0800, Peter Wemm wrote: > Marcel Moolenaar wrote: > > On Thu, Feb 13, 2003 at 09:32:33PM -0800, Eric Anholt wrote: > > > > > > > > In that case, we'd better make sure there's cache coherency. Do we > > > > actually have the code structured in a way that allows having the > > > > flushing chipset dependent (not to mention dependent on the address)? > > > > > > No, currently all the cache flushes (four in agp.c, three in i810 and > > > amd code) are unconditional agp_flush_cache calls after modifying the > > > gatt entries. They aren't tied to a specific memory range, but could be > > > pretty easily, if not the most efficiently, by pushing some of them into > > > the (un)bind_pages. There's probably a better way. > > > > I wonder: do we actually need to flush at all? GART updates are PCI/AGP > > writes and should be coherent, right? > > Consider the remap table. It is external to the cpu, on the far side of > the writeback cache. Changing remap entries with pending writes would > be interesting. AGP isn't necessarily coherent either. Isn't this a synchronisation issue more than a coherency issue? See also below. > > Also, on ia64 bus I/O is done with a virtual address that has the > > non-cacheable property. Flushing would not be required irrespective. > > What about user mmaped IO? eg: when the Xserver has got stuff remapped > down into user memory? And what if the remap table is changed underneath > that? On i386, the MTRR stuff is used to control cache behavior so that > the userland portions can be in writeback mode. I dont recall what happens > on ia64. We don't have any FreeBSD experience with that on ia64, because we don't have AGP nor X :-) I was about to try the upcoming 4.3.0 and I should be able to hack up AGP support for the BigSur so we could try if we really want to. My first guess is that you use the acceptance form of the memory fence instruction (ie mf.a). The CPU will wait until prior memory reads have returned data and prior memory writes are accepted by the platform, before it will initiate a new transaction on the bus. You may want to add another memory fence for ordering... > I really dont understand this stuff well enough. I built the following (possibly wrong, likely incomplete) picture: o Memory accesses between the AGP device and memory are generally not visible on the system bus (FSB). Hence coherency is not guaranteed. o The GART (remapping table) is accessed in a chipset dependent way and/or stored in a chipset dependent way. The GART is controlled by the "core logic" (=chipset) and thus coherent with system memory, but not coherent with the AGP device. Since the remapping is performed by the chipset, coherency should be guaranteed (???) o AGP is relatively platform specific due to performance requirements and may behave differently between different chipsets. To me this means that updating the GART in principle only requires special interaction on the AGP bus itself. No cache flushes are needed. Coherency between main memory and the AGP device is something that's between the AGP device and the driver. The only thing the driver has to worry about is to make sure memory accesses made by the processor are visible by the AGP device by making sure the access actually hits memory, before kicking the AGP device. This is platform and chipset dependent and may sometimes requires a cache flush. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:35:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9307737B401; Sat, 15 Feb 2003 15:35:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3498843F85; Sat, 15 Feb 2003 15:35:12 -0800 (PST) (envelope-from mpp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNZBbv031157; Sat, 15 Feb 2003 15:35:11 -0800 (PST) (envelope-from mpp@repoman.freebsd.org) Received: (from mpp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNZBFZ031156; Sat, 15 Feb 2003 15:35:11 -0800 (PST) Message-Id: <200302152335.h1FNZBFZ031156@repoman.freebsd.org> From: Mike Pritchard Date: Sat, 15 Feb 2003 15:35:11 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access access.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mpp 2003/02/15 15:35:11 PST Modified files: . access access.master Log: Move out of access.master. Revision Changes Path 1.564 +1 -0 CVSROOT/access 1.604 +0 -1 CVSROOT/access.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:36:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FB8B37B401; Sat, 15 Feb 2003 15:36:29 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74D3743FAF; Sat, 15 Feb 2003 15:36:27 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNaQEJ072317; Sun, 16 Feb 2003 02:36:26 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNaPXg072316; Sun, 16 Feb 2003 02:36:25 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:36:25 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc opieaccess Message-ID: <20030215233625.GA72156@nagual.pp.ru> References: <200302152317.h1FNHeGm023895@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302152317.h1FNHeGm023895@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 15:17:40 -0800, Dag-Erling Smorgrav wrote: > des 2003/02/15 15:17:40 PST > > Modified files: > etc opieaccess > Log: > Allow password logins from localhost (including the console). As I remember, it is already allowed by default in opieaccess() code. There is no needs to add it explicetely. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:37: 4 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8611637B401; Sat, 15 Feb 2003 15:37:02 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D77E043F75; Sat, 15 Feb 2003 15:37:01 -0800 (PST) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1FNb1bv031257; Sat, 15 Feb 2003 15:37:01 -0800 (PST) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1FNatQZ031252; Sat, 15 Feb 2003 15:36:55 -0800 (PST) Message-Id: <200302152336.h1FNatQZ031252@repoman.freebsd.org> From: Christian Weisgerber Date: Sat, 15 Feb 2003 15:36:55 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2003/02/15 15:36:55 PST Modified files: . modules Log: Remove entry for nonexistent port. Revision Changes Path 1.6745 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:37:45 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 989D937B401; Sat, 15 Feb 2003 15:37:43 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D13043F75; Sat, 15 Feb 2003 15:37:42 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNbfEJ072334; Sun, 16 Feb 2003 02:37:41 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNbfbJ072333; Sun, 16 Feb 2003 02:37:41 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:37:41 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/login login.c Message-ID: <20030215233741.GB72156@nagual.pp.ru> References: <200302152316.h1FNGfUQ023858@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302152316.h1FNGfUQ023858@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 15:16:41 -0800, Dag-Erling Smorgrav wrote: > des 2003/02/15 15:16:41 PST > > Modified files: > usr.bin/login login.c > Log: > Set PAM_RHOST to "localhost" if no remote host was specified. This allows > pam_opieaccess() to work as expected for local logins. I think it is already works, empty host treated as localhost in opieaccess() and local logins already allowed by default with no special setup required. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:39:49 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DE4A37B401; Sat, 15 Feb 2003 15:39:48 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id E725C43FDD; Sat, 15 Feb 2003 15:39:44 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNdhEJ072368; Sun, 16 Feb 2003 02:39:43 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNdhiq072367; Sun, 16 Feb 2003 02:39:43 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:39:43 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030215233943.GC72156@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302152326.h1FNQnAr027546@repoman.freebsd.org> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 15:26:49 -0800, Dag-Erling Smorgrav wrote: > des 2003/02/15 15:26:49 PST > > Modified files: > lib/libpam/modules/pam_opieaccess pam_opieaccess.c > Log: > Assume "localhost" if no remote host was specified. This is safe from a > POLA point of view since the stock /etc/opieaccess now allows localhost. There is no needs to explicately allow localhost in /etc/opieaccess. It is already works by default, as designed, see OPIE code. Your this and /etc/opieaccess changes breaks POLA. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:41:30 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5140637B405; Sat, 15 Feb 2003 15:41:29 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3C7A43FA3; Sat, 15 Feb 2003 15:41:28 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E600E536F; Sun, 16 Feb 2003 00:41:26 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc opieaccess From: Dag-Erling Smorgrav Date: Sun, 16 Feb 2003 00:41:26 +0100 In-Reply-To: <20030215233625.GA72156@nagual.pp.ru> ("Andrey A. Chernov"'s message of "Sun, 16 Feb 2003 02:36:25 +0300") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302152317.h1FNHeGm023895@repoman.freebsd.org> <20030215233625.GA72156@nagual.pp.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > As I remember, it is already allowed by default in opieaccess() code. > There is no needs to add it explicetely. No, it isn't. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:41:51 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28BD337B406; Sat, 15 Feb 2003 15:41:50 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A3E643F3F; Sat, 15 Feb 2003 15:41:49 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 7FEB15375; Sun, 16 Feb 2003 00:41:48 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/login login.c From: Dag-Erling Smorgrav Date: Sun, 16 Feb 2003 00:41:48 +0100 In-Reply-To: <20030215233741.GB72156@nagual.pp.ru> ("Andrey A. Chernov"'s message of "Sun, 16 Feb 2003 02:37:41 +0300") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302152316.h1FNGfUQ023858@repoman.freebsd.org> <20030215233741.GB72156@nagual.pp.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > I think it is already works, empty host treated as localhost in > opieaccess() and local logins already allowed by default with no special > setup required. No, that is not the case. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:44:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70F8537B405; Sat, 15 Feb 2003 15:44:09 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4093243F85; Sat, 15 Feb 2003 15:44:08 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNi7EJ072473; Sun, 16 Feb 2003 02:44:07 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNi6dn072472; Sun, 16 Feb 2003 02:44:06 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:44:06 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030215234406.GD72156@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215233943.GC72156@nagual.pp.ru> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 02:39:43 +0300, Andrey A. Chernov wrote: > On Sat, Feb 15, 2003 at 15:26:49 -0800, Dag-Erling Smorgrav wrote: > > des 2003/02/15 15:26:49 PST > > > > Modified files: > > lib/libpam/modules/pam_opieaccess pam_opieaccess.c > > Log: > > Assume "localhost" if no remote host was specified. This is safe from a > > POLA point of view since the stock /etc/opieaccess now allows localhost. > > There is no needs to explicately allow localhost in /etc/opieaccess. It is > already works by default, as designed, see OPIE code. Your this and > /etc/opieaccess changes breaks POLA. Look at this code from accessfile.c: if (!host[0]) /* Local login, okay */ return (1); -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:44:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8534237B401; Sat, 15 Feb 2003 15:44:48 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 460CF43F85; Sat, 15 Feb 2003 15:44:47 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNikEJ072499; Sun, 16 Feb 2003 02:44:46 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNik9S072498; Sun, 16 Feb 2003 02:44:46 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:44:46 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/login login.c Message-ID: <20030215234446.GE72156@nagual.pp.ru> References: <200302152316.h1FNGfUQ023858@repoman.freebsd.org> <20030215233741.GB72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 00:41:48 +0100, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > I think it is already works, empty host treated as localhost in > > opieaccess() and local logins already allowed by default with no special > > setup required. > > No, that is not the case. if (!host[0]) /* Local login, okay */ return (1); -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:45:33 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E63437B406; Sat, 15 Feb 2003 15:45:32 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00AEF43FAF; Sat, 15 Feb 2003 15:45:31 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNjUEJ072519; Sun, 16 Feb 2003 02:45:30 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNjU8i072518; Sun, 16 Feb 2003 02:45:30 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:45:30 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc opieaccess Message-ID: <20030215234530.GF72156@nagual.pp.ru> References: <200302152317.h1FNHeGm023895@repoman.freebsd.org> <20030215233625.GA72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 00:41:26 +0100, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > As I remember, it is already allowed by default in opieaccess() code. > > There is no needs to add it explicetely. > > No, it isn't. Yes, it is. You miss this code from accessfile.c: if (!host[0]) /* Local login, okay */ return (1); -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:46:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5862C37B405; Sat, 15 Feb 2003 15:46:30 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A523343FB1; Sat, 15 Feb 2003 15:46:29 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A5A47536E; Sun, 16 Feb 2003 00:46:27 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c From: Dag-Erling Smorgrav Date: Sun, 16 Feb 2003 00:46:27 +0100 In-Reply-To: <20030215233943.GC72156@nagual.pp.ru> ("Andrey A. Chernov"'s message of "Sun, 16 Feb 2003 02:39:43 +0300") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > There is no needs to explicately allow localhost in /etc/opieaccess. It is > already works by default, as designed, see OPIE code. It does not work by default; pam_opieaccess previously had special- case code to handle this (by explicitly allowing non-OPIE logins when PAM_RHOST was NULL). This behaviour was very surprising to people who wanted to prevent OPIE users from using their passwords even locally, as they had no way of knowing that login(1) happened to set PAM_RHOST to NULL for local logins. > Your this and > /etc/opieaccess changes breaks POLA. How? They preserve historical behaviour while allowing admins to implement a stricter policy, should they wish to do so. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:47:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10C7037B407; Sat, 15 Feb 2003 15:47:51 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A45443FB1; Sat, 15 Feb 2003 15:47:48 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id F1B5D5371; Sun, 16 Feb 2003 00:47:46 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c From: Dag-Erling Smorgrav Date: Sun, 16 Feb 2003 00:47:46 +0100 In-Reply-To: <20030215234406.GD72156@nagual.pp.ru> ("Andrey A. Chernov"'s message of "Sun, 16 Feb 2003 02:44:06 +0300") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> <20030215234406.GD72156@nagual.pp.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > Look at this code from accessfile.c: > if (!host[0]) > /* Local login, okay */ > return (1); That is an *empty* host name, not a NULL one. Go bother someone else. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:48:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2732037B409; Sat, 15 Feb 2003 15:48:33 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 928A143F3F; Sat, 15 Feb 2003 15:48:31 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNmUEJ072581; Sun, 16 Feb 2003 02:48:30 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNmUMs072580; Sun, 16 Feb 2003 02:48:30 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:48:30 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/login login.c Message-ID: <20030215234830.GG72156@nagual.pp.ru> References: <200302152316.h1FNGfUQ023858@repoman.freebsd.org> <20030215233741.GB72156@nagual.pp.ru> <20030215234446.GE72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215234446.GE72156@nagual.pp.ru> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 02:44:46 +0300, Andrey A. Chernov wrote: > On Sun, Feb 16, 2003 at 00:41:48 +0100, Dag-Erling Smorgrav wrote: > > "Andrey A. Chernov" writes: > > > I think it is already works, empty host treated as localhost in > > > opieaccess() and local logins already allowed by default with no special > > > setup required. > > > > No, that is not the case. > > if (!host[0]) > /* Local login, okay */ > return (1); I mean it was in accessfile.c for ages and your explicit "localhost" break this code too. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:51:47 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 175E637B405; Sat, 15 Feb 2003 15:51:45 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBCDB43F3F; Sat, 15 Feb 2003 15:51:43 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNpgEJ072617; Sun, 16 Feb 2003 02:51:42 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNpgIB072616; Sun, 16 Feb 2003 02:51:42 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:51:42 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030215235142.GH72156@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> <20030215234406.GD72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 00:47:46 +0100, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > Look at this code from accessfile.c: > > if (!host[0]) > > /* Local login, okay */ > > return (1); > > That is an *empty* host name, not a NULL one. Go bother someone else. Empty host name means localhost, i.e. occurse for localhost case. Your explicit addition of "localhost" string break this code, since "" != "localhost". After adding "localhost" breakage you forced to change /etc/opieaccess because default "" case for localhost not works anymore. Correct solution will be: if (host == NULL) host = ""; -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 15:56: 0 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3FFC37B401; Sat, 15 Feb 2003 15:55:58 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6CCB43F3F; Sat, 15 Feb 2003 15:55:57 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1FNtuEJ072673; Sun, 16 Feb 2003 02:55:56 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1FNtu6T072672; Sun, 16 Feb 2003 02:55:56 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 02:55:56 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030215235556.GI72156@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 00:46:27 +0100, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > There is no needs to explicately allow localhost in /etc/opieaccess. It is > > already works by default, as designed, see OPIE code. > > It does not work by default; pam_opieaccess previously had special- > case code to handle this (by explicitly allowing non-OPIE logins when > PAM_RHOST was NULL). This behaviour was very surprising to people who > wanted to prevent OPIE users from using their passwords even locally, > as they had no way of knowing that login(1) happened to set PAM_RHOST > to NULL for local logins. It means that pam_opieaccess() tries to handle localhost before accessfile.c instead of correctly passing "" there for localhost case. > > /etc/opieaccess changes breaks POLA. > > How? They preserve historical behaviour while allowing admins to > implement a stricter policy, should they wish to do so. In non-PAMified OPIE environment there was no needs to directly specify localhost in /etc/opieaccess. Old configurations becomes broken after your change because miss "new" addition. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 16: 7:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED08037B401; Sat, 15 Feb 2003 16:07:15 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DDAD43F93; Sat, 15 Feb 2003 16:07:14 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G07DEJ072967; Sun, 16 Feb 2003 03:07:13 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G07D6X072966; Sun, 16 Feb 2003 03:07:13 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 03:07:12 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030216000711.GA72930@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> <20030215235556.GI72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215235556.GI72156@nagual.pp.ru> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 02:55:56 +0300, Andrey A. Chernov wrote: > > It does not work by default; pam_opieaccess previously had special- > > case code to handle this (by explicitly allowing non-OPIE logins when > > PAM_RHOST was NULL). This behaviour was very surprising to people who > > wanted to prevent OPIE users from using their passwords even locally, > > as they had no way of knowing that login(1) happened to set PAM_RHOST > > to NULL for local logins. > > It means that pam_opieaccess() tries to handle localhost before > accessfile.c instead of correctly passing "" there for localhost case. To summarize it, localhost is "" for OPIE functions. Not NULL, not "localhost" string. PAM code must be fixed to pass what OPIE expected, i.e. "", instead of hacking OPIE code and config to do something unusual. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 16:11: 8 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AD1937B401; Sat, 15 Feb 2003 16:11:06 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB7043FAF; Sat, 15 Feb 2003 16:11:05 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G0B3EJ073032; Sun, 16 Feb 2003 03:11:04 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G0B3e0073031; Sun, 16 Feb 2003 03:11:03 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 03:11:02 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030216001101.GB72930@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> <20030215235556.GI72156@nagual.pp.ru> <20030216000711.GA72930@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030216000711.GA72930@nagual.pp.ru> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 03:07:12 +0300, Andrey A. Chernov wrote: > > To summarize it, localhost is "" for OPIE functions. Not NULL, not > "localhost" string. PAM code must be fixed to pass what OPIE expected, > i.e. "", instead of hacking OPIE code and config to do something unusual. I mean this code must be added before passing host to OPIE functions: if (host == NULL || strcasecmp(host, "localhost") == 0) host = ""; -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 16:20:26 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32E9037B401; Sat, 15 Feb 2003 16:20:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C996E43FBD; Sat, 15 Feb 2003 16:20:24 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G0KObv046086; Sat, 15 Feb 2003 16:20:24 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G0KO9T046083; Sat, 15 Feb 2003 16:20:24 -0800 (PST) Message-Id: <200302160020.h1G0KO9T046083@repoman.freebsd.org> From: Scott Long Date: Sat, 15 Feb 2003 16:20:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus_cis.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2003/02/15 16:20:24 PST Modified files: sys/dev/cardbus cardbus_cis.c Log: Clean up the CIS BAR parsing code by removing several pointless checks. Don't complain about the Option ROM BAR type since it's perfectly valid. Revision Changes Path 1.32 +19 -19 src/sys/dev/cardbus/cardbus_cis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 16:36:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63ECB37B401; Sat, 15 Feb 2003 16:36:15 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C60343FBD; Sat, 15 Feb 2003 16:36:14 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G0aDEJ073458; Sun, 16 Feb 2003 03:36:13 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G0aCYW073457; Sun, 16 Feb 2003 03:36:12 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 03:36:12 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Correct patch (was Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c) Message-ID: <20030216003612.GA73416@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> <20030215235556.GI72156@nagual.pp.ru> <20030216000711.GA72930@nagual.pp.ru> <20030216001101.GB72930@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030216001101.GB72930@nagual.pp.ru> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 03:11:02 +0300, Andrey A. Chernov wrote: > I mean this code must be added before passing host to OPIE functions: Here is exact patch to pam_opieaccess.c Please commit it and back out your /etc/opieaccess change --- pam_opieaccess.c.bak Sun Feb 16 02:26:49 2003 +++ pam_opieaccess.c Sun Feb 16 03:32:57 2003 @@ -42,6 +42,7 @@ #include #include #include +#include #include #include @@ -73,8 +74,8 @@ r = pam_get_item(pamh, PAM_RHOST, (const void **)&rhost); if (r != PAM_SUCCESS) return (r); - if (rhost == NULL) - rhost = "localhost"; + if (rhost == NULL || strcasecmp(rhost, "localhost") == 0) + rhost = ""; if (opieaccessfile(rhost) != 0 && opiealways(pwent->pw_dir) != 0) return (PAM_SUCCESS); -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 16:43:31 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AED0537B401; Sat, 15 Feb 2003 16:43:29 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 741F843F3F; Sat, 15 Feb 2003 16:43:28 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G0hREJ073523; Sun, 16 Feb 2003 03:43:27 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G0hRDZ073522; Sun, 16 Feb 2003 03:43:27 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 03:43:26 +0300 From: "Andrey A. Chernov" To: Dag-Erling Smorgrav Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.c Message-ID: <20030216004325.GA73498@nagual.pp.ru> References: <200302152326.h1FNQnAr027546@repoman.freebsd.org> <20030215233943.GC72156@nagual.pp.ru> <20030215234406.GD72156@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 16, 2003 at 00:47:46 +0100, Dag-Erling Smorgrav wrote: > "Andrey A. Chernov" writes: > > Look at this code from accessfile.c: > > if (!host[0]) > > /* Local login, okay */ > > return (1); > > That is an *empty* host name, not a NULL one. Go bother someone else. There NO empty host name in OPIE sense. Empty host variable means localhost for OPIE for ages. Read comment /* Local login, okay */ I can't bother someone else, because it is you who broke things. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 16:57:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6CDF37B401; Sat, 15 Feb 2003 16:57:48 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A55243F93; Sat, 15 Feb 2003 16:57:48 -0800 (PST) (envelope-from chris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G0vmbv064855; Sat, 15 Feb 2003 16:57:48 -0800 (PST) (envelope-from chris@repoman.freebsd.org) Received: (from chris@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G0vmNS064854; Sat, 15 Feb 2003 16:57:48 -0800 (PST) Message-Id: <200302160057.h1G0vmNS064854@repoman.freebsd.org> From: Chris Costello Date: Sat, 15 Feb 2003 16:57:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 mac.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chris 2003/02/15 16:57:48 PST Modified files: share/man/man4 mac.4 Log: Include a section about enabling MAC on UFS2 file systems. UFS1 is a bit more challenging and will be added later. Sponsored by: DARPA, Network Associates Laboratories Revision Changes Path 1.7 +28 -0 src/share/man/man4/mac.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:14:10 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDB4537B401; Sat, 15 Feb 2003 17:14:06 -0800 (PST) Received: from 12-234-22-23.client.attbi.com (12-234-22-23.client.attbi.com [12.234.22.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AFD943FAF; Sat, 15 Feb 2003 17:14:04 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from 12-234-22-23.client.attbi.com (5g61y9nroaa29xng@localhost [127.0.0.1]) by 12-234-22-23.client.attbi.com (8.12.6/8.12.6) with ESMTP id h1G1E4dw063923; Sat, 15 Feb 2003 17:14:04 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by 12-234-22-23.client.attbi.com (8.12.6/8.12.6/Submit) with ESMTP id h1G1Dtv7063920; Sat, 15 Feb 2003 17:13:55 -0800 (PST) Date: Sat, 15 Feb 2003 17:13:55 -0800 (PST) From: Doug Barton To: Sean Chittenden Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Mark Murray Subject: Re: cvs commit: src/games/random Makefile random.6 random.c randomize_fd.c randomize_fd.h In-Reply-To: <200302151034.h1FAYZJA046497@repoman.freebsd.org> Message-ID: <20030215171231.H63308@12-234-22-23.pyvrag.nggov.pbz> References: <200302151034.h1FAYZJA046497@repoman.freebsd.org> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I didn't see any commits fixing the style bugs that tjr mentioned. I'm also not sure that 4 days is a sufficient waiting period... Usually a week is minimal for this kind of change. Also, didn't you just commit over the code freeze? Doug On Sat, 15 Feb 2003, Sean Chittenden wrote: > seanc 2003/02/15 02:34:35 PST > > Modified files: (Branch: RELENG_4) > games/random Makefile random.6 random.c > Added files: (Branch: RELENG_4) > games/random randomize_fd.c randomize_fd.h > Log: > MFC updated random(6) functionality. (Err... meant markm in last commit) > > Approved by: markm > > Revision Changes Path > 1.1.1.1.14.2 +2 -0 src/games/random/Makefile > 1.3.2.3 +61 -8 src/games/random/random.6 > 1.11.2.1 +61 -19 src/games/random/random.c > 1.2.2.1 +237 -0 src/games/random/randomize_fd.c (new) > 1.2.2.1 +45 -0 src/games/random/randomize_fd.h (new) > > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/games/random/Makefile.diff?&r1=1.1.1.1.14.1&r2=1.1.1.1.14.2&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/games/random/random.6.diff?&r1=1.3.2.2&r2=1.3.2.3&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/games/random/random.c.diff?&r1=1.11.2.0&r2=1.11.2.1&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/games/random/randomize_fd.c > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/games/random/randomize_fd.h > > -- "The last time France wanted more evidence, it rolled right through Paris with a German flag." - David Letterman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:18:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2E0337B401; Sat, 15 Feb 2003 17:18:54 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53B1E43F3F; Sat, 15 Feb 2003 17:18:54 -0800 (PST) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G1Isbv066229; Sat, 15 Feb 2003 17:18:54 -0800 (PST) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G1IsXB066228; Sat, 15 Feb 2003 17:18:54 -0800 (PST) Message-Id: <200302160118.h1G1IsXB066228@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 15 Feb 2003 17:18:54 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2003/02/15 17:18:54 PST Modified files: . modules Log: fontilus --> ports/x11-fonts/fontilus Revision Changes Path 1.6746 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:24:40 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 721AF37B401; Sat, 15 Feb 2003 17:24:38 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AC6B43F93; Sat, 15 Feb 2003 17:24:36 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id MAA26519; Sun, 16 Feb 2003 12:24:34 +1100 Date: Sun, 16 Feb 2003 12:25:10 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Juli Mallett Cc: Kirk McKusick , , , Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c In-Reply-To: <20030214153328.A78405@FreeBSD.org> Message-ID: <20030216121332.Y20233-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 14 Feb 2003, Juli Mallett wrote: > * De: Kirk McKusick [ Data: 2003-02-14 ] > [ Subjecte: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c ] > > mckusick 2003/02/14 13:31:58 PST > > > > Modified files: > > sbin/newfs mkfs.c > > sys/ufs/ffs ffs_alloc.c ffs_vfsops.c > > Log: > > Replace use of random() with arc4random() to provide less guessable > > values for the initial inode generation numbers in newfs and for > > newly allocated inode generation numbers in the kernel. > > Are the sequences for it also repeatable in the newfs case for e.g. the > regression tests, where it is used unseeded? Probably not. Randomness caused me problems in the kernel when I tried to figure out why soft-updates allocated blocks more 10-30% more pessimally than !soft-updates (for the benchmark of reading back files in creation order after untarring /usr/src to a new file system and remounting). I just ifdefed out the randomness, but should have done more for cylinder group allocation since the pessimization might depend on that. IIRC, soft-updates gives some randomness anyway because it delays some allocations. The pessimization seemed to have something to do with not putting blocks in such a good place for delayed allocations. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:30:34 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DFF137B401; Sat, 15 Feb 2003 17:30:33 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 010E343F75; Sat, 15 Feb 2003 17:30:33 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G1UWbv067037; Sat, 15 Feb 2003 17:30:32 -0800 (PST) (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G1UWBP067035; Sat, 15 Feb 2003 17:30:32 -0800 (PST) Message-Id: <200302160130.h1G1UWBP067035@repoman.freebsd.org> From: Matt Jacob Date: Sat, 15 Feb 2003 17:30:32 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ispfw asm_2300.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2003/02/15 17:30:32 PST Modified files: sys/dev/ispfw asm_2300.h Log: Roll to latest level. Revision Changes Path 1.5 +5868 -5870 src/sys/dev/ispfw/asm_2300.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:32:55 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACC8937B401; Sat, 15 Feb 2003 17:32:53 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50A1243F75; Sat, 15 Feb 2003 17:32:53 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G1Wrbv067302; Sat, 15 Feb 2003 17:32:53 -0800 (PST) (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G1WrfV067301; Sat, 15 Feb 2003 17:32:53 -0800 (PST) Message-Id: <200302160132.h1G1WrfV067301@repoman.freebsd.org> From: Matt Jacob Date: Sat, 15 Feb 2003 17:32:53 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2003/02/15 17:32:53 PST Modified files: sys/dev/isp isp.c Log: Pick up some compilation warning fixes from NetBSD. If we don't have ISP_FW_CRASH_DUMP defined, we have to do a isp_reinit in the core code- not the platform code- so fix the ISP_CONN_FATAL case. Revision Changes Path 1.103 +7 -7 src/sys/dev/isp/isp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:37:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1B2237B401; Sat, 15 Feb 2003 17:37:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5496543FBD; Sat, 15 Feb 2003 17:37:52 -0800 (PST) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G1bqbv067525; Sat, 15 Feb 2003 17:37:52 -0800 (PST) (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G1bq9N067524; Sat, 15 Feb 2003 17:37:52 -0800 (PST) Message-Id: <200302160137.h1G1bq9N067524@repoman.freebsd.org> From: Matt Jacob Date: Sat, 15 Feb 2003 17:37:52 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp_target.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2003/02/15 17:37:52 PST Modified files: sys/dev/isp isp_target.c Log: Make sure we propagate rxid && iid in isp_target_put_atio Revision Changes Path 1.24 +2 -0 src/sys/dev/isp/isp_target.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:46:22 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A454237B401; Sat, 15 Feb 2003 17:46:13 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBE3B43F75; Sat, 15 Feb 2003 17:46:09 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id MAA27873; Sun, 16 Feb 2003 12:46:04 +1100 Date: Sun, 16 Feb 2003 12:46:41 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: David Schultz Cc: Alfred Perlstein , Sam Leffler , , , Subject: Re: cvs commit: src/sys/kern kern_shutdown.c In-Reply-To: <20030214214748.GA2520@HAL9000.homeunix.com> Message-ID: <20030216122520.A20233-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 14 Feb 2003, David Schultz wrote: > Thus spake Alfred Perlstein : > > * Sam Leffler [030214 07:15] wrote: > > > More like "gratuitous style". > > > > More like when looking at the file in otder to fix other things I was so > > turned off by it that it offended me and for that reason needed fixing. > > A single extra space at the end of a line offends you? Some of It offends me if I look at the lines using something that is affected by the spaces. > the ``style problems'' fixed by this commit aren't even in > style(9). However, the following IS in style(9): Most are. The patch fixes the following style bugs: (1) white space at EOL: 3 instances (2) long line: 4 instances (3) missing blank line after (null) declarations: 8 instances (4) missing blank space after keyword: 1 instance I only really care about (2) and (4). The others mainly get in the way of automatic fixing. indent(1) only understands (1) and (4). style(9) documents (3) and (4) explicitly and (1) and (2) by example. (4) is bogus IMO but it is Normally followed in BSD sources. > Stylistic changes (including whitespace changes) are hard > on the source repository and are to be avoided without > good reason. > > People don't seem to understand that violating this principle > makes it very hard to maintain local patches. If the file is I know a bit about this problem since I have 100000 lines of local patches (including 28000 lines in kern which have to be merged by hand for almost every change). However, I like alfred's changes. Even kern is becoming very ugly due to inconsistent styles. Formatting changes are very easy to merge compared with semantic changes unless they are done globally. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 17:56:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C7C537B401; Sat, 15 Feb 2003 17:56:48 -0800 (PST) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FBF943FAF; Sat, 15 Feb 2003 17:56:46 -0800 (PST) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 61F3F51A2B; Sun, 16 Feb 2003 12:26:44 +1030 (CST) Date: Sun, 16 Feb 2003 12:26:44 +1030 From: Greg 'groggy' Lehey To: Ruslan Ermilov Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf OLDCARD src/usr.sbin/config config.y lang.l Message-ID: <20030216015644.GR83043@wantadilla.lemis.com> References: <200302150239.h1F2dDnu074092@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="l2C7pJE7HE4aLL3l" Content-Disposition: inline In-Reply-To: <200302150239.h1F2dDnu074092@repoman.freebsd.org> User-Agent: Mutt/1.4i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --l2C7pJE7HE4aLL3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Friday, 14 February 2003 at 18:39:13 -0800, Ruslan Ermilov wrote: > ru 2003/02/14 18:39:13 PST > > Modified files: > sys/i386/conf OLDCARD > usr.sbin/config config.y lang.l > Log: > Implemented a simple "nodevice" config(8) command that cancels > the effect of the "device" command, and use it to generate the > OLDCARD from GENERIC. Nice one! Greg -- See complete headers for address and phone numbers --l2C7pJE7HE4aLL3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQE+Tu/cIubykFB6QiMRAh8TAJ96qsVTJsqa7rJp1LQvircs0y6BLQCfV+yn kWADDqzJcGj/JCTQp45g74Y= =tNC2 -----END PGP SIGNATURE----- --l2C7pJE7HE4aLL3l-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18: 2:46 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C51337B406; Sat, 15 Feb 2003 18:02:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E4A543FB1; Sat, 15 Feb 2003 18:02:45 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G22ibv069162; Sat, 15 Feb 2003 18:02:44 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G22iqn069161; Sat, 15 Feb 2003 18:02:44 -0800 (PST) Message-Id: <200302160202.h1G22iqn069161@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Feb 2003 18:02:44 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pci pci.c pci_private.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/15 18:02:44 PST Modified files: sys/dev/pci pci.c pci_private.h Log: Use rman_get_device rather than rle->resl->r_dev. make pci_hdrtypedata and pci_read_extcap accessible (but maybe in the end we'll make them private again). Revision Changes Path 1.208 +3 -7 src/sys/dev/pci/pci.c 1.5 +3 -1 src/sys/dev/pci/pci_private.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18: 6:53 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0268437B401; Sat, 15 Feb 2003 18:06:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE38C43F85; Sat, 15 Feb 2003 18:06:50 -0800 (PST) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G26obv069345; Sat, 15 Feb 2003 18:06:50 -0800 (PST) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G26oYb069344; Sat, 15 Feb 2003 18:06:50 -0800 (PST) Message-Id: <200302160206.h1G26oYb069344@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Feb 2003 18:06:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2003/02/15 18:06:50 PST Modified files: sys/dev/cardbus cardbus.c Log: Checkpoint a work in progress: o Use the common pci_* routines in preference to the copied and hacked routines from an ancient pci.c. This saves 509 lines in cardbus.c. More savings to follow when I convert the resource code over. In the past when I've done this the resource code conversion breaks cardbus in subtle ways so I'm doing a 1/2 way checkpoint this time. cardbus still works for me the same as it did before. It also looks like cardbus devices now show up as pci bus devices to pciconf -l, but maybe that was happening before. Inspired by a patch from Justin Gibbs many moons ago. When he finishes his kobj multiple inheritance work, we can transition the finished version of this work to that fairly easily. Revision Changes Path 1.34 +23 -532 src/sys/dev/cardbus/cardbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:15:17 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46C7437B401; Sat, 15 Feb 2003 18:15:16 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E14BE43FA3; Sat, 15 Feb 2003 18:15:15 -0800 (PST) (envelope-from hsu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G2FFbv069908; Sat, 15 Feb 2003 18:15:15 -0800 (PST) (envelope-from hsu@repoman.freebsd.org) Received: (from hsu@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G2FFWM069907; Sat, 15 Feb 2003 18:15:15 -0800 (PST) Message-Id: <200302160215.h1G2FFWM069907@repoman.freebsd.org> From: Jeffrey Hsu Date: Sat, 15 Feb 2003 18:15:15 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hsu 2003/02/15 18:15:15 PST Modified files: sys/kern vfs_syscalls.c Log: Remove extraneous FILEDESC_LOCK around atomic read. Revision Changes Path 1.309 +0 -2 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:26:32 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65EE037B401; Sat, 15 Feb 2003 18:26:31 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B78343FD7; Sat, 15 Feb 2003 18:26:31 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G2QUbv070504; Sat, 15 Feb 2003 18:26:30 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G2QU6H070503; Sat, 15 Feb 2003 18:26:30 -0800 (PST) Message-Id: <200302160226.h1G2QU6H070503@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 18:26:30 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 18:26:30 PST Modified files: sys/i386/linux syscalls.master Log: Mark linux_sigpending() as MPSAFE. Revision Changes Path 1.49 +1 -1 src/sys/i386/linux/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:28:37 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5144C37B401; Sat, 15 Feb 2003 18:28:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E554443F75; Sat, 15 Feb 2003 18:28:35 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G2SZbv070582; Sat, 15 Feb 2003 18:28:35 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G2SZpD070581; Sat, 15 Feb 2003 18:28:35 -0800 (PST) Message-Id: <200302160228.h1G2SZpD070581@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 18:28:35 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 18:28:35 PST Modified files: sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c Log: Regen from syscalls.master 1.49. Revision Changes Path 1.52 +8 -2 src/sys/i386/linux/linux_proto.h 1.46 +1 -1 src/sys/i386/linux/linux_syscall.h 1.52 +2 -2 src/sys/i386/linux/linux_sysent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:31: 6 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB02E37B401; Sat, 15 Feb 2003 18:31:05 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FEB943FCB; Sat, 15 Feb 2003 18:31:05 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G2V5bv071035; Sat, 15 Feb 2003 18:31:05 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G2V5hJ071034; Sat, 15 Feb 2003 18:31:05 -0800 (PST) Message-Id: <200302160231.h1G2V5hJ071034@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 18:31:05 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/linux syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 18:31:05 PST Modified files: sys/alpha/linux syscalls.master Log: Mark linux_sigpending() as MPSAFE. Revision Changes Path 1.52 +1 -1 src/sys/alpha/linux/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:32:19 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F269737B401; Sat, 15 Feb 2003 18:32:17 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 939A743FBF; Sat, 15 Feb 2003 18:32:17 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G2WHbv071078; Sat, 15 Feb 2003 18:32:17 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G2WHCk071077; Sat, 15 Feb 2003 18:32:17 -0800 (PST) Message-Id: <200302160232.h1G2WHCk071077@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 18:32:17 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/linux linux_proto.h linux_syscall.h linux_sysent.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 18:32:17 PST Modified files: sys/alpha/linux linux_proto.h linux_syscall.h linux_sysent.c Log: Regen from syscalls.master 1.52. Revision Changes Path 1.12 +8 -2 src/sys/alpha/linux/linux_proto.h 1.10 +1 -1 src/sys/alpha/linux/linux_syscall.h 1.10 +2 -2 src/sys/alpha/linux/linux_sysent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:33:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B37FC37B401; Sat, 15 Feb 2003 18:33:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56FF343FB1; Sat, 15 Feb 2003 18:33:13 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G2XDbv071127; Sat, 15 Feb 2003 18:33:13 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G2XD9w071126; Sat, 15 Feb 2003 18:33:13 -0800 (PST) Message-Id: <200302160233.h1G2XD9w071126@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 18:33:13 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_signal.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 18:33:13 PST Modified files: sys/compat/linux linux_signal.c Log: Add MPSAFE comment to linux_sigpending(). Revision Changes Path 1.39 +3 -0 src/sys/compat/linux/linux_signal.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 18:39:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 929A937B401; Sat, 15 Feb 2003 18:39:20 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 901AF43F93; Sat, 15 Feb 2003 18:39:19 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.6/8.12.3) with ESMTP id h1G2dI3Y019823; Sat, 15 Feb 2003 19:39:18 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 15 Feb 2003 19:39:10 -0700 (MST) Message-Id: <20030215.193910.121221310.imp@bsdimp.com> To: shiba@FreeBSD.org Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/pccard pccarddevs From: "M. Warner Losh" In-Reply-To: <200302151357.h1FDvru9021460@repoman.freebsd.org> References: <200302151357.h1FDvru9021460@repoman.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <200302151357.h1FDvru9021460@repoman.freebsd.org> Takeshi Shibagaki writes: : Add YIS YWL-11B. This card has same vendor id and product id : as XI300 Wireless LAN. If it has the same vendor id and product id as XI300 Wireless LAN card and both are supported by the same driver, why would an entry even be needed at all? In general, I've tried to not worry about identifying the card down tot the exact modle when dealing with mimics like this. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 19:18:25 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 413CF37B401; Sat, 15 Feb 2003 19:18:23 -0800 (PST) Received: from HAL9000.homeunix.com (12-233-57-224.client.attbi.com [12.233.57.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37CA043F93; Sat, 15 Feb 2003 19:18:22 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: from HAL9000.homeunix.com (localhost [127.0.0.1]) by HAL9000.homeunix.com (8.12.6/8.12.5) with ESMTP id h1G3IIQb000788; Sat, 15 Feb 2003 19:18:18 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Received: (from das@localhost) by HAL9000.homeunix.com (8.12.6/8.12.5/Submit) id h1G3IIYO000787; Sat, 15 Feb 2003 19:18:18 -0800 (PST) (envelope-from dschultz@uclink.Berkeley.EDU) Date: Sat, 15 Feb 2003 19:18:18 -0800 From: David Schultz To: Bruce Evans Cc: Alfred Perlstein , Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20030216031818.GA733@HAL9000.homeunix.com> Mail-Followup-To: Bruce Evans , Alfred Perlstein , Sam Leffler , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <20030214214748.GA2520@HAL9000.homeunix.com> <20030216122520.A20233-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030216122520.A20233-100000@gamplex.bde.org> Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thus spake Bruce Evans : > On Fri, 14 Feb 2003, David Schultz wrote: > > A single extra space at the end of a line offends you? Some of > > It offends me if I look at the lines using something that is affected > by the spaces. > > > the ``style problems'' fixed by this commit aren't even in > > style(9). However, the following IS in style(9): ... > I know a bit about this problem since I have 100000 lines of local > patches (including 28000 lines in kern which have to be merged by > hand for almost every change). However, I like alfred's changes. > Even kern is becoming very ugly due to inconsistent styles. > Formatting changes are very easy to merge compared with semantic > changes unless they are done globally. Okay, you've got me beat. I guess I don't have quite as high standards as you and Alfred, nor do I use those wonderfully pedantic editing tools that display these stylistic solecisms in bright yellow. (They don't blink and beep too, do they? ;-) I work at various times on code in many styles in about half a dozen languages, so things I consider unreadable are more likely to include two-space indents and wrapped lines. I can see that I won't be able to argue with the status quo on this one, but I would still prefer it if people cut down on fixing the smaller nits, except in the vicinity of recent content changes. (Bruce, your practice of getting people to address these issues right away works great, I think.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 19:28:14 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95C1337B401; Sat, 15 Feb 2003 19:28:12 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3745243F75; Sat, 15 Feb 2003 19:28:12 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G3SCbv074209; Sat, 15 Feb 2003 19:28:12 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G3SB3s074208; Sat, 15 Feb 2003 19:28:11 -0800 (PST) Message-Id: <200302160328.h1G3SB3s074208@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 15 Feb 2003 19:28:11 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh machdep.h memalloc.c nodes.c.pat X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tjr 2003/02/15 19:28:11 PST Modified files: bin/sh memalloc.c nodes.c.pat Added files: bin/sh machdep.h Log: Temporarily back out machdep.h/ALIGN changes. It seems that on sparc64, using the alignment from sys/param.h (16) instead of the alignment from machdep.h (8) tickled a nasty bug in the memory allocator that I haven't been able to track down yet. Revision Changes Path 1.8 +52 -0 src/bin/sh/machdep.h (new) 1.21 +1 -2 src/bin/sh/memalloc.c 1.10 +1 -2 src/bin/sh/nodes.c.pat To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 19:45: 9 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57ADF37B401; Sat, 15 Feb 2003 19:45:08 -0800 (PST) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B0C43F3F; Sat, 15 Feb 2003 19:45:06 -0800 (PST) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.7/8.12.7) with ESMTP id h1G3j5EJ075139; Sun, 16 Feb 2003 06:45:05 +0300 (MSK) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.7/8.12.6/Submit) id h1G3iv5g075135; Sun, 16 Feb 2003 06:44:57 +0300 (MSK) (envelope-from ache) Date: Sun, 16 Feb 2003 06:44:57 +0300 From: "Andrey A. Chernov" To: Nate Lawson , Juli Mallett , Kirk McKusick , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/newfs mkfs.c src/sys/ufs/ffs ffs_alloc.c ffs_vfsops.c Message-ID: <20030216034457.GA75065@nagual.pp.ru> References: <20030214221503.GA59673@nagual.pp.ru> <20030215022542.GA62285@nagual.pp.ru> <20030215033807.GB3750@HAL9000.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030215033807.GB3750@HAL9000.homeunix.com> User-Agent: Mutt/1.5.1i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 14, 2003 at 19:38:07 -0800, David Schultz wrote: > NFS relies upon generation > numbers being unguessable to prevent unauthenticated clients from > spoofing file handles. We talk about mkfs change only. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 21:42: 1 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4025537B401; Sat, 15 Feb 2003 21:41:59 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3305143FBF; Sat, 15 Feb 2003 21:41:58 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1G5fv1o069831; Sat, 15 Feb 2003 21:41:57 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1G5fv2r001986; Sat, 15 Feb 2003 21:41:57 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1G5fv0c001985; Sat, 15 Feb 2003 21:41:57 -0800 (PST) Date: Sat, 15 Feb 2003 21:41:57 -0800 From: Marcel Moolenaar To: "Tim J. Robbins" Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/sh machdep.h memalloc.c nodes.c.pat Message-ID: <20030216054157.GA1973@athlon.pn.xcllnt.net> References: <200302160328.h1G3SB3s074208@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200302160328.h1G3SB3s074208@repoman.freebsd.org> User-Agent: Mutt/1.5.3i Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 15, 2003 at 07:28:11PM -0800, Tim J. Robbins wrote: > tjr 2003/02/15 19:28:11 PST > > Modified files: > bin/sh memalloc.c nodes.c.pat > Added files: > bin/sh machdep.h > Log: > Temporarily back out machdep.h/ALIGN changes. It seems that on sparc64, > using the alignment from sys/param.h (16) instead of the alignment > from machdep.h (8) tickled a nasty bug in the memory allocator that I > haven't been able to track down yet. I noticed that stalloc() in memalloc.c always yields an 8-byte aligned address due to the fact that the space field in struct stack_block is 8-byte aligned on 64-bit architectures. A fix for this would look something like: Index: memalloc.c =================================================================== RCS file: /home/ncvs/src/bin/sh/memalloc.c,v retrieving revision 1.19 diff -u -r1.19 memalloc.c --- memalloc.c 30 Jun 2002 05:15:03 -0000 1.19 +++ memalloc.c 16 Feb 2003 05:39:51 -0000 @@ -139,8 +139,8 @@ sp = ckmalloc(sizeof(struct stack_block) - MINSIZE + blocksize); sp->prev = stackp; - stacknxt = sp->space; - stacknleft = blocksize; + stacknxt = ALIGN(sp->space); + stacknleft = TRUNC(blocksize); stackp = sp; INTON; } I left TRUNC undefined. It's purpose is to adjust for the alignment of stacknxt. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 22: 8:56 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C34D737B401; Sat, 15 Feb 2003 22:08:55 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67BB543FBD; Sat, 15 Feb 2003 22:08:55 -0800 (PST) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G68tbv083471; Sat, 15 Feb 2003 22:08:55 -0800 (PST) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G68t9U083470; Sat, 15 Feb 2003 22:08:55 -0800 (PST) Message-Id: <200302160608.h1G68t9U083470@repoman.freebsd.org> From: Alfred Perlstein Date: Sat, 15 Feb 2003 22:08:55 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sysv_shm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2003/02/15 22:08:55 PST Modified files: sys/kern sysv_shm.c Log: prevent overflow in shminfo.shmmax Revision Changes Path 1.79 +5 -1 src/sys/kern/sysv_shm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 22:27:39 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1532537B401; Sat, 15 Feb 2003 22:27:37 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6617D43F75; Sat, 15 Feb 2003 22:27:36 -0800 (PST) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G6Rabv084660; Sat, 15 Feb 2003 22:27:36 -0800 (PST) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G6RaF1084659; Sat, 15 Feb 2003 22:27:36 -0800 (PST) Message-Id: <200302160627.h1G6RaF1084659@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sat, 15 Feb 2003 22:27:36 -0800 (PST) To: all-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nork 2003/02/15 22:27:36 PST Modified files: . modules Log: db41-nocrypto --> ports/databases/db41-nocrypto Revision Changes Path 1.6747 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message From owner-cvs-src Sat Feb 15 22:36:50 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A351037B401; Sat, 15 Feb 2003 22:36:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4924343F93; Sat, 15 Feb 2003 22:36:49 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h1G6anbv085250; Sat, 15 Feb 2003 22:36:49 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h1G6amZW085249; Sat, 15 Feb 2003 22:36:48 -0800 (PST) Message-Id: <200302160636.h1G6amZW085249@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Feb 2003 22:36:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_pageq.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2003/02/15 22:36:48 PST Modified files: sys/vm vm_pageq.c Log: Remove GIANT_REQUIRED from vm_pageq_remove(). Revision Changes Path 1.8 +0 -1 src/sys/vm/vm_pageq.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message