From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:01:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794D416A4CE; Sun, 8 Aug 2004 00:01:16 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A17243D1D; Sun, 8 Aug 2004 00:01:16 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.5.51] (adsl-64-171-186-94.dsl.snfc21.pacbell.net [64.171.186.94]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7801D8U022239; Sat, 7 Aug 2004 17:01:13 -0700 Message-ID: <41156D48.8030304@root.org> Date: Sat, 07 Aug 2004 17:01:12 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "M. Warner Losh" References: <200408060450.i764ouJu097994@repoman.freebsd.org> <200408061014.22594.jhb@FreeBSD.org> <4114681D.5020902@root.org> <20040806.233528.74404627.imp@bsdimp.com> In-Reply-To: <20040806.233528.74404627.imp@bsdimp.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: jhb@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:01:16 -0000 M. Warner Losh wrote: > In message: <4114681D.5020902@root.org> > Nate Lawson writes: > : John Baldwin wrote: > : > On Friday 06 August 2004 12:50 am, Nate Lawson wrote: > : > > : >>njl 2004-08-06 04:50:56 UTC > : >> > : >> FreeBSD src repository > : >> > : >> Modified files: > : >> sys/dev/acpica acpi_pci_link.c > : >> Log: > : >> Refine updates to PCI irq routing. Check _STA and _CRS but only print a > : >> message if they are incorrect. Also, remove the hack of allowing the > : >> initial irq setting to not be in _PRS. As before, the old behavior can > : >>be regained by defining ACPI_OLD_PCI_LINK. > : > > : > > : > Note that I had to back out this removal of the initial IRQ hack because it > : > broke things for many people. The problem is that the current link code > : > doesn't do a good job of picking virgin IRQs. > : > > : > : I plan to take this to the logical conclusion. I agree you were on the > : right track but didn't go far enough. :) I'll send patches in a few days. > > I know that Linux uses (used) a system where it would assign weights > to the interrupts. It then would route to the least weighted > interrupt possible, and then add some factor to its weight so that it > was less likely to be picked for the next interrupt. Don't know how > well that scales, esp for SMP boxes with ioapic. The initial weights, > however, heavily biased against the interrupts used by the standard > set of PC-AT devices: 3 (sio), 4 (sio), 6 (fdc), 7 (ppc), 12 (psm) and > ata (14, 15). There was also a mask of invalid IRQs. We do that too although the algorithm can use improvement (see acpi_pci_link.c). The problem I'm fixing is that we have parallel code in acpi_pcib_route and acpi_pci_link that each does half the problem well but don't work properly together. The acpi_pcib_route code does well at handling the _PRT but fails utterly at doing a good job of routing an unrouted interrupt (it just picks the first one, which is often 3). The acpi_pci_link code has lots of heuristics for balancing interrupts and programming links but fails utterly at communicating that to the acpi_pcib_route code (it depends on _CRS being correct, which is too much to ask of BIOS authors). The end result is that things really only work well when the BIOS initializes the links for us. Luckily, that is often the case. > This degrated to a round robin assignment of interrupts that weren't > heavily weighted against. This is generically fair, but might not be > optimal for a given system (since it might round robin the two biggest > interrupt sources together)... Yes, acpi_pci_link does this. My work is to join the two, allowing them to communicate properly and eliminate duplicate code (that is not quite right). The longer term work, which jhb@ started, is to make pci links proper devices, standardize APIs, clean up acpi_pci_link, etc. -- Nate From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:28:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77C0F16A4CE; Sun, 8 Aug 2004 00:28:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EFA643D1D; Sun, 8 Aug 2004 00:28:07 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780S70t082516; Sun, 8 Aug 2004 00:28:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780S7jd082515; Sun, 8 Aug 2004 00:28:07 GMT (envelope-from marcel) Message-Id: <200408080028.i780S7jd082515@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 8 Aug 2004 00:28:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c trap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:28:07 -0000 marcel 2004-08-08 00:28:07 UTC FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c trap.c Log: Implement single stepping when we leave the kernel through the EPC syscall path. The basic problem is that we cannot set the single stepping flag directly, because we don't leave the kernel via an interrupt return. So, we need another way to set the single stepping flag. The way we do this is by enabling the lower-privilege transfer trap, which gets raised when we drop the privilege level. However, since we're still running in kernel space (sec), we're not yet done. We clear the lower- privilege transfer trap, enable the taken-branch trap and continue exiting the kernel until we branch into user space. Given the current code, there's a total of two traps this way before we can raise SIGTRAP. Revision Changes Path 1.182 +22 -2 src/sys/ia64/ia64/machdep.c 1.103 +41 -2 src/sys/ia64/ia64/trap.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:31:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DDC116A4CE; Sun, 8 Aug 2004 00:31:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E241743D1F; Sun, 8 Aug 2004 00:31:58 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780VwlO082699; Sun, 8 Aug 2004 00:31:58 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780VwmV082698; Sun, 8 Aug 2004 00:31:58 GMT (envelope-from alc) Message-Id: <200408080031.i780VwmV082698@repoman.freebsd.org> From: Alan Cox Date: Sun, 8 Aug 2004 00:31:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:31:59 -0000 alc 2004-08-08 00:31:58 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: With the advent of pmap locking it makes sense for pmap_copy() to be less forgiving about inconsistencies in the source pmap. Also, remove a new- line character terminating a nearby panic string. Revision Changes Path 1.491 +3 -3 src/sys/amd64/amd64/pmap.c 1.494 +3 -3 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:43:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B50CC16A4CE; Sun, 8 Aug 2004 00:43:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C0743D41; Sun, 8 Aug 2004 00:43:21 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780hLf3083028; Sun, 8 Aug 2004 00:43:21 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780hLDF083027; Sun, 8 Aug 2004 00:43:21 GMT (envelope-from kientzle) Message-Id: <200408080043.i780hLDF083027@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 00:43:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_write.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:43:21 -0000 kientzle 2004-08-08 00:43:21 UTC FreeBSD src repository Modified files: lib/libarchive archive_write.c Log: If you don't need a header, don't bother including it. Revision Changes Path 1.11 +0 -1 src/lib/libarchive/archive_write.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:48:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5D0F16A4CE; Sun, 8 Aug 2004 00:48:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6EB943D39; Sun, 8 Aug 2004 00:48:39 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780mddB083184; Sun, 8 Aug 2004 00:48:39 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780md0m083183; Sun, 8 Aug 2004 00:48:39 GMT (envelope-from kientzle) Message-Id: <200408080048.i780md0m083183@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 00:48:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile.am X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:48:40 -0000 kientzle 2004-08-08 00:48:39 UTC FreeBSD src repository Modified files: lib/libarchive Makefile.am Log: The configure-built Makefile wasn't installing archive.h Revision Changes Path 1.2 +3 -2 src/lib/libarchive/Makefile.am From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:52:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39C8F16A4CE; Sun, 8 Aug 2004 00:52:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B2D43D1D; Sun, 8 Aug 2004 00:52:12 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780qC0Y083340; Sun, 8 Aug 2004 00:52:12 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780qBRl083339; Sun, 8 Aug 2004 00:52:12 GMT (envelope-from philip) Message-Id: <200408080052.i780qBRl083339@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 00:52:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:52:12 -0000 philip 2004-08-08 00:52:11 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume I) o Clean up whitespace and comments in the enable_synaptics() probing function o Only use (and rely on) the extended capability bits when we are told they actually exist o Partly ignore the (possibly dated?) part of the specification about the mode byte so that we can support 'guest devices' too. Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.72 +62 -51 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 00:57:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA4516A4CE; Sun, 8 Aug 2004 00:57:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F30CD43D46; Sun, 8 Aug 2004 00:57:07 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780v7Ef083503; Sun, 8 Aug 2004 00:57:07 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780v7cq083502; Sun, 8 Aug 2004 00:57:07 GMT (envelope-from philip) Message-Id: <200408080057.i780v7cq083502@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 00:57:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 00:57:08 -0000 philip 2004-08-08 00:57:07 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume II) o Handle the 'up/down' buttons some touchpads have as a z-axis (scrollwheel) as recommended by the specs o Report the buttons as button4 and button5 instead of button2 and button4, button2 can be emulated by pressing button1 and button3 simultaneously. This allows one to use the two extra buttons for other purposes if one so desires. Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.73 +26 -5 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:00:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F2B016A4CF; Sun, 8 Aug 2004 01:00:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5186443D1D; Sun, 8 Aug 2004 01:00:32 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7810WvM083569; Sun, 8 Aug 2004 01:00:32 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7810W6H083568; Sun, 8 Aug 2004 01:00:32 GMT (envelope-from philip) Message-Id: <200408080100.i7810W6H083568@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 01:00:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:00:32 -0000 philip 2004-08-08 01:00:31 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume III) o Catch 'taps' as button presses o One finger sends button1, two fingers send button3, three fingers send button2 (double-click) Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.74 +26 -0 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:10:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D0A16A4CE; Sun, 8 Aug 2004 01:10:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9121843D41; Sun, 8 Aug 2004 01:10:23 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781ANar083923; Sun, 8 Aug 2004 01:10:23 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781ANak083922; Sun, 8 Aug 2004 01:10:23 GMT (envelope-from philip) Message-Id: <200408080110.i781ANak083922@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 01:10:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:10:23 -0000 philip 2004-08-08 01:10:23 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume IV) o Change the motion calculation to result in a more reasonable speed of motion This should fix the 'aiming' problems people have reported. It also mitigates (but doesn't completely solve) the 'stalling' problems at very low speeds. Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.75 +2 -2 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:21:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A84CB16A4CE; Sun, 8 Aug 2004 01:21:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88F4443D39; Sun, 8 Aug 2004 01:21:10 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781LAUU084351; Sun, 8 Aug 2004 01:21:10 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781LAUs084350; Sun, 8 Aug 2004 01:21:10 GMT (envelope-from kientzle) Message-Id: <200408080121.i781LAUs084350@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 01:21:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:21:10 -0000 kientzle 2004-08-08 01:21:10 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c Log: Use 'int' for certain wide-character conversions instead of wchar_t. That quiets some compiler warnings on platforms with 16-bit wchar_t. With this change, libarchive now compiles cleanly on Win32/cygwin. Revision Changes Path 1.24 +7 -3 src/lib/libarchive/archive_read_support_format_tar.c 1.16 +1 -1 src/lib/libarchive/archive_write_set_format_pax.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:23:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3D7016A4CE; Sun, 8 Aug 2004 01:23:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D482743D53; Sun, 8 Aug 2004 01:23:39 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781Ndm6084415; Sun, 8 Aug 2004 01:23:39 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781Ndkf084414; Sun, 8 Aug 2004 01:23:39 GMT (envelope-from sanpei) Message-Id: <200408080123.i781Ndkf084414@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 01:23:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bktr bktr_card.c bktr_card.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:23:40 -0000 sanpei 2004-08-08 01:23:39 UTC FreeBSD src repository Modified files: sys/dev/bktr bktr_card.c bktr_card.h Log: Add support AOpen VA1000 video capture card PR: kern/62146 Submitted by: HASHI Hiroaki MFC after: 1 week Revision Changes Path 1.24 +12 -0 src/sys/dev/bktr/bktr_card.c 1.7 +3 -2 src/sys/dev/bktr/bktr_card.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:26:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5070C16A4CE; Sun, 8 Aug 2004 01:26:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 312E843D49; Sun, 8 Aug 2004 01:26:00 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781Q0qr084546; Sun, 8 Aug 2004 01:26:00 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781Q0od084545; Sun, 8 Aug 2004 01:26:00 GMT (envelope-from philip) Message-Id: <200408080126.i781Q0od084545@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 01:26:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:26:00 -0000 philip 2004-08-08 01:26:00 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Assume a finger of regular width when no width value is reported by the touchpad (which happens when it has no extended capabilities). Spotted by: dhw Forgotten by: philip Revision Changes Path 1.76 +10 -3 src/sys/isa/psm.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:30:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38B2D16A4CE; Sun, 8 Aug 2004 01:30:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1914943D39; Sun, 8 Aug 2004 01:30:31 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781UU4f084669; Sun, 8 Aug 2004 01:30:31 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781UUtM084668; Sun, 8 Aug 2004 01:30:30 GMT (envelope-from kientzle) Message-Id: <200408080130.i781UUtM084668@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 01:30:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar configure.ac.in X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:30:31 -0000 kientzle 2004-08-08 01:30:30 UTC FreeBSD src repository Modified files: usr.bin/tar configure.ac.in Log: Minor portability fixes. bsdtar now compiles on Win32/cygwin, though it doesn't yet seem to work entirely correctly. Revision Changes Path 1.3 +18 -2 src/usr.bin/tar/configure.ac.in From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:34:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFC3D16A4CE; Sun, 8 Aug 2004 01:34:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9237243D39; Sun, 8 Aug 2004 01:34:36 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781Yacs084786; Sun, 8 Aug 2004 01:34:36 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781YaSt084785; Sun, 8 Aug 2004 01:34:36 GMT (envelope-from sanpei) Message-Id: <200408080134.i781YaSt084785@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 01:34:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:34:36 -0000 sanpei 2004-08-08 01:34:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_da.c Log: Whitespace cleanup that was missed by quirks commit 1.42.2.52 Revision Changes Path 1.42.2.53 +7 -7 src/sys/cam/scsi/scsi_da.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:49:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F67A16A4CE; Sun, 8 Aug 2004 01:49:11 +0000 (GMT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 701F243D3F; Sun, 8 Aug 2004 01:49:10 +0000 (GMT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.1/8.13.1) with ESMTP id i781n33h006487; Sun, 8 Aug 2004 05:49:03 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.13.1/8.13.1/Submit) id i781n3P9006481; Sun, 8 Aug 2004 05:49:03 +0400 (MSD) (envelope-from ache) Date: Sun, 8 Aug 2004 05:49:00 +0400 From: Andrey Chernov To: Tim Kientzle Message-ID: <20040808014858.GA6397@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200408080121.i781LAUs084350@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408080121.i781LAUs084350@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.26.0.10; VDF 6.26.0.63 (host: pobrecita.freebsd.ru) cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:49:11 -0000 On Sun, Aug 08, 2004 at 01:21:10AM +0000, Tim Kientzle wrote: > kientzle 2004-08-08 01:21:10 UTC > > FreeBSD src repository > > Modified files: > lib/libarchive archive_read_support_format_tar.c > archive_write_set_format_pax.c > Log: > Use 'int' for certain wide-character conversions instead of wchar_t. > That quiets some compiler warnings on platforms with 16-bit wchar_t. > With this change, libarchive now compiles cleanly on Win32/cygwin. int is wrong choice. wchar_t >= size of char, =< size of long -- Andrey Chernov | http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Sun Aug 8 01:52:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2184F16A4CE; Sun, 8 Aug 2004 01:52:02 +0000 (GMT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C4B643D3F; Sun, 8 Aug 2004 01:52:01 +0000 (GMT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.1/8.13.1) with ESMTP id i781psXA006535; Sun, 8 Aug 2004 05:51:54 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.13.1/8.13.1/Submit) id i781pssO006534; Sun, 8 Aug 2004 05:51:54 +0400 (MSD) (envelope-from ache) Date: Sun, 8 Aug 2004 05:51:52 +0400 From: Andrey Chernov To: Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <20040808015152.GB6397@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200408080121.i781LAUs084350@repoman.freebsd.org> <20040808014858.GA6397@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040808014858.GA6397@nagual.pp.ru> User-Agent: Mutt/1.5.6i X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.26.0.10; VDF 6.26.0.63 (host: pobrecita.freebsd.ru) Subject: Re: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 01:52:02 -0000 On Sun, Aug 08, 2004 at 05:49:00AM +0400, Andrey Chernov wrote: > > int is wrong choice. > wchar_t >= size of char, =< size of long To be more specific, even all bits of long can be occuped, so most safe type for conversion will be unsigned long -- Andrey Chernov | http://ache.pp.ru/ From owner-cvs-src@FreeBSD.ORG Sun Aug 8 02:22:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9249C16A4CE; Sun, 8 Aug 2004 02:22:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7450243D1F; Sun, 8 Aug 2004 02:22:48 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i782Mmhl086167; Sun, 8 Aug 2004 02:22:48 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i782MmG8086166; Sun, 8 Aug 2004 02:22:48 GMT (envelope-from kientzle) Message-Id: <200408080222.i782MmG8086166@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 02:22:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 02:22:48 -0000 kientzle 2004-08-08 02:22:48 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c Log: Oops. Use "unsigned long" instead of "int" for the intermediate variables in wide-character conversions, since it's guaranteed to be large enough. Thanks to: Andrey Chernov Revision Changes Path 1.25 +1 -1 src/lib/libarchive/archive_read_support_format_tar.c 1.17 +6 -8 src/lib/libarchive/archive_write_set_format_pax.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 02:37:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 905EE16A4CE; Sun, 8 Aug 2004 02:37:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 730DF43D46; Sun, 8 Aug 2004 02:37:22 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i782bMpP086655; Sun, 8 Aug 2004 02:37:22 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i782bMSB086654; Sun, 8 Aug 2004 02:37:22 GMT (envelope-from jmg) Message-Id: <200408080237.i782bMSB086654@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 8 Aug 2004 02:37:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_taskqueue.c src/sys/sys taskqueue.h src/share/man/man9 taskqueue.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 02:37:22 -0000 jmg 2004-08-08 02:37:22 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c sys/sys taskqueue.h share/man/man9 taskqueue.9 Log: rearange some code that handles the thread taskqueue so that it is more generic. Introduce a new define TASKQUEUE_DEFINE_THREAD that takes a single arg, which is the name of the queue. Document these changes. Revision Changes Path 1.12 +17 -5 src/share/man/man9/taskqueue.9 1.24 +16 -13 src/sys/kern/subr_taskqueue.c 1.11 +11 -0 src/sys/sys/taskqueue.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 03:21:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0678816A4CE; Sun, 8 Aug 2004 03:21:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE9DA43D4C; Sun, 8 Aug 2004 03:21:37 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i783Lbnu088002; Sun, 8 Aug 2004 03:21:37 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i783LbkQ088001; Sun, 8 Aug 2004 03:21:37 GMT (envelope-from alfred) Message-Id: <200408080321.i783LbkQ088001@repoman.freebsd.org> From: Alfred Perlstein Date: Sun, 8 Aug 2004 03:21:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 03:21:38 -0000 alfred 2004-08-08 03:21:37 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for vfs_mount signature change. Revision Changes Path 1.209 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 04:27:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E80016A4CF; Sun, 8 Aug 2004 04:27:06 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCABF43D3F; Sun, 8 Aug 2004 04:27:05 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i784R6jx012748; Sun, 8 Aug 2004 00:27:07 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0ADED513B6; Sat, 7 Aug 2004 21:27:04 -0700 (PDT) Date: Sat, 7 Aug 2004 21:27:03 -0700 From: Kris Kennaway To: John Baldwin Message-ID: <20040808042703.GA64746@xor.obsecurity.org> References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <200408041634.03998.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J/dobhs11T7y2rNN" Content-Disposition: inline In-Reply-To: <200408041634.03998.jhb@FreeBSD.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 04:27:06 -0000 --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > jhb 2004-08-04 20:31:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/i386/i386 pmap.c > > sys/kern subr_witness.c > > Log: > > Remove a potential deadlock on i386 SMP by changing the lazypmap ipi = and > > spin-wait code to use the same spin mutex (smp_tlb_mtx) as the TLB ipi > > and spin-wait code snippets so that you can't get into the situation = of > > one CPU doing a TLB shootdown to another CPU that is doing a lazy pmap > > shootdown each of which are waiting on each other. With this change, > > only one of the CPUs would do an IPI and spin-wait at a time. >=20 > Both this patch and the previous I have tested locally and also sent out = to=20 > current@ for testing. However, I received zero feedback (not even useles= s=20 > feedback), so they may theoretically be risky. Isn't this the patch I tested for you and reported that it did not fix the problem? Kris --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFauXWry0BWjoQKURAtsSAJwLfr/lnd0zZHfqElt5mrLNikajYQCg7Al9 IKfOqloZUDxUB7G9tvBbSnw= =g0s5 -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- From owner-cvs-src@FreeBSD.ORG Sun Aug 8 04:36:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B7F116A4CF; Sun, 8 Aug 2004 04:36:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CA5043D46; Sun, 8 Aug 2004 04:36:32 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i784aWTe089887; Sun, 8 Aug 2004 04:36:32 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i784aWQs089886; Sun, 8 Aug 2004 04:36:32 GMT (envelope-from kientzle) Message-Id: <200408080436.i784aWQs089886@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 04:36:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar_platform.h configure.ac.in X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 04:36:32 -0000 kientzle 2004-08-08 04:36:32 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar_platform.h configure.ac.in Log: Another pointy-hat problem: PACKAGE_VERSION macro is set in CFLAGS, it shouldn't be in bsdtar_platform.h. Thanks to: Andrey Chernov for looking over my shoulder so much lately. Revision Changes Path 1.10 +0 -1 src/usr.bin/tar/bsdtar_platform.h 1.4 +0 -2 src/usr.bin/tar/configure.ac.in From owner-cvs-src@FreeBSD.ORG Sun Aug 8 05:10:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9687116A4CF; Sun, 8 Aug 2004 05:10:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C1E43D46; Sun, 8 Aug 2004 05:10:11 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785ABEV090689; Sun, 8 Aug 2004 05:10:11 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785ABSb090688; Sun, 8 Aug 2004 05:10:11 GMT (envelope-from kientzle) Message-Id: <200408080510.i785ABSb090688@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 05:10:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 05:10:11 -0000 kientzle 2004-08-08 05:10:11 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h Log: It shouldn't be an error to specify the same mode twice: allow -cc but not -ct. Thanks to: Christoph Mallon (whose proposed patch was actually simpler than what I ended up with) Revision Changes Path 1.49 +37 -50 src/usr.bin/tar/bsdtar.c 1.19 +1 -0 src/usr.bin/tar/bsdtar.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 05:21:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D1E16A4CE; Sun, 8 Aug 2004 05:21:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05C1243D2F; Sun, 8 Aug 2004 05:21:57 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785LuP0091052; Sun, 8 Aug 2004 05:21:56 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785LuJR091051; Sun, 8 Aug 2004 05:21:56 GMT (envelope-from sanpei) Message-Id: <200408080521.i785LuJR091051@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 05:21:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 uplcom.4 src/sys/dev/usb uplcom.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 05:21:57 -0000 sanpei 2004-08-08 05:21:56 UTC FreeBSD src repository Modified files: share/man/man4 uplcom.4 sys/dev/usb uplcom.c usbdevs Log: Add support to Sony Ericsson USB Cable(Susteen USB Data Cable) PR: kern/66416 Submitted by: Fredrik Lindberg MFC after: 1 week Revision Changes Path 1.7 +2 -0 src/share/man/man4/uplcom.4 1.20 +2 -0 src/sys/dev/usb/uplcom.c 1.192 +4 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sun Aug 8 05:33:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F79316A4CE; Sun, 8 Aug 2004 05:33:22 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id F285643D48; Sun, 8 Aug 2004 05:33:21 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id E48D45C8D3; Sat, 7 Aug 2004 22:33:21 -0700 (PDT) Date: Sat, 7 Aug 2004 22:33:21 -0700 From: Alfred Perlstein To: Kris Kennaway Message-ID: <20040808053321.GD57908@elvis.mu.org> References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <200408041634.03998.jhb@FreeBSD.org> <20040808042703.GA64746@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040808042703.GA64746@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 05:33:22 -0000 * Kris Kennaway [040807 21:28] wrote: > On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > > jhb 2004-08-04 20:31:19 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/i386/i386 pmap.c > > > sys/kern subr_witness.c > > > Log: > > > Remove a potential deadlock on i386 SMP by changing the lazypmap ipi and > > > spin-wait code to use the same spin mutex (smp_tlb_mtx) as the TLB ipi > > > and spin-wait code snippets so that you can't get into the situation of > > > one CPU doing a TLB shootdown to another CPU that is doing a lazy pmap > > > shootdown each of which are waiting on each other. With this change, > > > only one of the CPUs would do an IPI and spin-wait at a time. > > > > Both this patch and the previous I have tested locally and also sent out to > > current@ for testing. However, I received zero feedback (not even useless > > feedback), so they may theoretically be risky. > > Isn't this the patch I tested for you and reported that it did not fix > the problem? Y'know there's some existing research on these sort of low level deadlocks, ie. how to do TLB shootdown without deadlock in: "UNIX Internals: The New Frontiers" -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Sun Aug 8 05:50:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3AB416A4CE; Sun, 8 Aug 2004 05:50:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A9C43D48; Sun, 8 Aug 2004 05:50:10 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785oAIK091901; Sun, 8 Aug 2004 05:50:10 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785oAHK091900; Sun, 8 Aug 2004 05:50:10 GMT (envelope-from kientzle) Message-Id: <200408080550.i785oAHK091900@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 05:50:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h read.c util.c write.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 05:50:10 -0000 kientzle 2004-08-08 05:50:10 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h read.c util.c write.c Log: Move the smart chdir logic into a couple of utility functions in util.c. Then use them to provide consistent -C support throughout the program. Thanks to: Christoph Mallon Revision Changes Path 1.50 +1 -2 src/usr.bin/tar/bsdtar.c 1.20 +3 -1 src/usr.bin/tar/bsdtar.h 1.19 +1 -4 src/usr.bin/tar/read.c 1.11 +58 -0 src/usr.bin/tar/util.c 1.32 +3 -78 src/usr.bin/tar/write.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 06:36:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DA4E16A4CE; Sun, 8 Aug 2004 06:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A41C43D53; Sun, 8 Aug 2004 06:36:04 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786a3nL093117; Sun, 8 Aug 2004 06:36:03 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786a3sZ093116; Sun, 8 Aug 2004 06:36:03 GMT (envelope-from kientzle) Message-Id: <200408080636.i786a3sZ093116@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 06:36:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar write.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 06:36:04 -0000 kientzle 2004-08-08 06:36:03 UTC FreeBSD src repository Modified files: usr.bin/tar write.c Log: Better low-memory handling: If the link cache runs out of memory, just throw out the whole thing and stop tracking links entirely. That will break all remaining hardlinks, but should free up enough memory to let everything finish. Revision Changes Path 1.33 +36 -35 src/usr.bin/tar/write.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 06:46:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BD1516A4CE; Sun, 8 Aug 2004 06:46:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC3143D1F; Sun, 8 Aug 2004 06:46:28 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786kRlE093408; Sun, 8 Aug 2004 06:46:27 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786kRY3093407; Sun, 8 Aug 2004 06:46:27 GMT (envelope-from phk) Message-Id: <200408080646.i786kRY3093407@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 06:46:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom.h geom_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 06:46:28 -0000 phk 2004-08-08 06:46:27 UTC FreeBSD src repository Modified files: sys/geom geom.h geom_subr.c Log: Give classes a version number and refuse to touch classes which are not understood. This makes room for additional binary compatibility in the future. Put fields in the class for the geom's methods and initialize the methods of a new geom from these fields. This saves some code in all classes. Revision Changes Path 1.84 +13 -0 src/sys/geom/geom.h 1.79 +14 -0 src/sys/geom/geom_subr.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 06:47:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10CE116A4CE; Sun, 8 Aug 2004 06:47:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E40D243D2F; Sun, 8 Aug 2004 06:47:43 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786lhi9093451; Sun, 8 Aug 2004 06:47:43 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786lhgm093450; Sun, 8 Aug 2004 06:47:43 GMT (envelope-from phk) Message-Id: <200408080647.i786lhgm093450@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 06:47:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 06:47:44 -0000 phk 2004-08-08 06:47:43 UTC FreeBSD src repository Modified files: sys/dev/md md.c Log: Use a ->fini() from the geom class to destroy the control device. Use default initialization of geom methods. Revision Changes Path 1.126 +19 -40 src/sys/dev/md/md.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 06:49:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0640716A4CE; Sun, 8 Aug 2004 06:49:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F034043D3F; Sun, 8 Aug 2004 06:49:07 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786n7a0093556; Sun, 8 Aug 2004 06:49:07 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786n7MM093555; Sun, 8 Aug 2004 06:49:07 GMT (envelope-from phk) Message-Id: <200408080649.i786n7MM093555@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 06:49:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c src/sys/geom/bde g_bde.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 06:49:08 -0000 phk 2004-08-08 06:49:07 UTC FreeBSD src repository Modified files: sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c sys/geom/bde g_bde.c Log: Use default method initialization on geoms. Revision Changes Path 1.27 +4 -4 src/sys/geom/bde/g_bde.c 1.25 +4 -4 src/sys/geom/geom_aes.c 1.15 +1 -1 src/sys/geom/geom_apple.c 1.69 +2 -7 src/sys/geom/geom_bsd.c 1.151 +3 -3 src/sys/geom/geom_ccd.c 1.78 +1 -1 src/sys/geom/geom_dev.c 1.90 +7 -4 src/sys/geom/geom_disk.c 1.7 +4 -4 src/sys/geom/geom_fox.c 1.29 +1 -1 src/sys/geom/geom_gpt.c 1.59 +3 -3 src/sys/geom/geom_mbr.c 1.46 +2 -2 src/sys/geom/geom_pc98.c 1.42 +1 -1 src/sys/geom/geom_sunlabel.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 07:09:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B486516A4CE; Sun, 8 Aug 2004 07:09:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93FB343D55; Sun, 8 Aug 2004 07:09:43 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7879hJP094491; Sun, 8 Aug 2004 07:09:43 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7879hVh094490; Sun, 8 Aug 2004 07:09:43 GMT (envelope-from sanpei) Message-Id: <200408080709.i7879hVh094490@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 07:09:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 07:09:43 -0000 sanpei 2004-08-08 07:09:43 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: Add support Sony Handycam TRV-30 memory stick slot PR: kern/69915 Submitted by: Christian Gusenbauer MFC after: 1 week Revision Changes Path 1.109 +4 -0 src/sys/dev/usb/umass.c 1.193 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Sun Aug 8 07:30:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 343F116A4CE; Sun, 8 Aug 2004 07:30:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 159AF43D62; Sun, 8 Aug 2004 07:30:48 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787UlI8095170; Sun, 8 Aug 2004 07:30:47 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787UlkH095169; Sun, 8 Aug 2004 07:30:47 GMT (envelope-from phk) Message-Id: <200408080730.i787UlkH095169@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 07:30:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 07:30:48 -0000 phk 2004-08-08 07:30:47 UTC FreeBSD src repository Modified files: sys/geom geom_subr.c Log: OOps, that check was a bit premature. Allow zero versions as well. Revision Changes Path 1.80 +1 -1 src/sys/geom/geom_subr.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 07:39:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97B5016A4CE; Sun, 8 Aug 2004 07:39:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6132943D45; Sun, 8 Aug 2004 07:39:20 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787dKnr095456; Sun, 8 Aug 2004 07:39:20 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787dKUT095455; Sun, 8 Aug 2004 07:39:20 GMT (envelope-from kientzle) Message-Id: <200408080739.i787dKUT095455@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 07:39:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_entry.3 archive_entry.c archive_entry.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 07:39:20 -0000 kientzle 2004-08-08 07:39:20 UTC FreeBSD src repository Modified files: lib/libarchive archive_entry.3 archive_entry.c archive_entry.h Log: Add archive_entry_set_mtime() Revision Changes Path 1.9 +3 -0 src/lib/libarchive/archive_entry.3 1.23 +7 -0 src/lib/libarchive/archive_entry.c 1.12 +1 -0 src/lib/libarchive/archive_entry.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 07:57:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E75E716A4CE; Sun, 8 Aug 2004 07:57:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BA743D45; Sun, 8 Aug 2004 07:57:53 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787vrme096446; Sun, 8 Aug 2004 07:57:53 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787vrUU096445; Sun, 8 Aug 2004 07:57:53 GMT (envelope-from phk) Message-Id: <200408080757.i787vrUU096445@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 07:57:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata atapi-cd.c src/sys/dev/md md.c src/sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c src/sys/geom/bde ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 07:57:54 -0000 phk 2004-08-08 07:57:53 UTC FreeBSD src repository Modified files: sys/dev/ata atapi-cd.c sys/dev/md md.c sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c sys/geom/bde g_bde.c sys/geom/concat g_concat.c sys/geom/gate g_gate.c sys/geom/label g_label.c sys/geom/mirror g_mirror.c sys/geom/nop g_nop.c sys/geom/stripe g_stripe.c sys/geom/vinum geom_vinum.c geom_vinum_drive.c geom_vinum_plex.c geom_vinum_volume.c sys/vm swap_pager.c Log: Tag all geom classes in the tree with a version number. Revision Changes Path 1.170 +4 -3 src/sys/dev/ata/atapi-cd.c 1.127 +1 -0 src/sys/dev/md/md.c 1.28 +1 -0 src/sys/geom/bde/g_bde.c 1.16 +1 -0 src/sys/geom/concat/g_concat.c 1.11 +1 -0 src/sys/geom/gate/g_gate.c 1.26 +1 -0 src/sys/geom/geom_aes.c 1.16 +1 -0 src/sys/geom/geom_apple.c 1.70 +1 -0 src/sys/geom/geom_bsd.c 1.152 +1 -0 src/sys/geom/geom_ccd.c 1.79 +1 -0 src/sys/geom/geom_dev.c 1.91 +1 -0 src/sys/geom/geom_disk.c 1.8 +1 -0 src/sys/geom/geom_fox.c 1.30 +1 -0 src/sys/geom/geom_gpt.c 1.60 +2 -0 src/sys/geom/geom_mbr.c 1.47 +1 -0 src/sys/geom/geom_pc98.c 1.43 +1 -0 src/sys/geom/geom_sunlabel.c 1.12 +2 -0 src/sys/geom/geom_vol_ffs.c 1.6 +1 -0 src/sys/geom/label/g_label.c 1.14 +1 -0 src/sys/geom/mirror/g_mirror.c 1.9 +1 -0 src/sys/geom/nop/g_nop.c 1.12 +1 -0 src/sys/geom/stripe/g_stripe.c 1.9 +1 -0 src/sys/geom/vinum/geom_vinum.c 1.8 +1 -0 src/sys/geom/vinum/geom_vinum_drive.c 1.7 +1 -0 src/sys/geom/vinum/geom_vinum_plex.c 1.4 +1 -0 src/sys/geom/vinum/geom_vinum_volume.c 1.256 +5 -3 src/sys/vm/swap_pager.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 08:34:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A4D16A4CE; Sun, 8 Aug 2004 08:34:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2B8A43D2D; Sun, 8 Aug 2004 08:34:46 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i788YkKx098207; Sun, 8 Aug 2004 08:34:46 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i788YkiK098206; Sun, 8 Aug 2004 08:34:46 GMT (envelope-from phk) Message-Id: <200408080834.i788YkiK098206@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 08:34:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 08:34:47 -0000 phk 2004-08-08 08:34:46 UTC FreeBSD src repository Modified files: sys/geom geom_subr.c Log: OK, now check geom class version numbers. Revision Changes Path 1.81 +1 -1 src/sys/geom/geom_subr.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:02:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 861C516A4CE; Sun, 8 Aug 2004 09:02:01 +0000 (GMT) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4002C43D41; Sun, 8 Aug 2004 09:01:56 +0000 (GMT) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.gsoft.com.au (localhost [127.0.0.1]) (authenticated bits=0) by cain.gsoft.com.au (8.12.11/8.12.10) with ESMTP id i7891q8P080076; Sun, 8 Aug 2004 18:31:53 +0930 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: cvs-all@freebsd.org Date: Sun, 8 Aug 2004 18:31:45 +0930 User-Agent: KMail/1.6.2 References: <200408080126.i781Q0od084545@repoman.freebsd.org> In-Reply-To: <200408080126.i781Q0od084545@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200408081831.51295.doconnor@gsoft.com.au> X-Spam-Score: -4.9 () CARRIAGE_RETURNS,IN_REP_TO,PGP_SIGNATURE,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_KMAIL X-Scanned-By: MIMEDefang 2.16 (www . roaringpenguin . com / mimedefang) cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Philip Paeps Subject: Re: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:02:01 -0000 =2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sun, 8 Aug 2004 10:56, Philip Paeps wrote: > Assume a finger of regular width when no width value is reported by > the touchpad (which happens when it has no extended capabilities). Can't you tell if the touch pad has extended caps? (ie check in probe) =2D --=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFev/5ZPcIHs/zowRArLZAJ46pLIbDCL9I4retE9zganNfBoNIQCghAMF 0EAC06Q5Z2vZxSsjjMFBfZg=3D =3Dbnue =2D----END PGP SIGNATURE----- From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:07:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A09C016A4CE; Sun, 8 Aug 2004 09:07:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8107743D46; Sun, 8 Aug 2004 09:07:41 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7897fKY099497; Sun, 8 Aug 2004 09:07:41 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7897fXl099496; Sun, 8 Aug 2004 09:07:41 GMT (envelope-from kensmith) Message-Id: <200408080907.i7897fXl099496@repoman.freebsd.org> From: Ken Smith Date: Sun, 8 Aug 2004 09:07:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:07:41 -0000 kensmith 2004-08-08 09:07:41 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: The compat2x and compat3x packages are not buildable due to security issues. Revision Changes Path 1.61 +0 -4 src/release/scripts/print-cdrom-packages.sh From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:07:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A57616A4F5; Sun, 8 Aug 2004 09:07:45 +0000 (GMT) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49B6D43D48; Sun, 8 Aug 2004 09:07:45 +0000 (GMT) (envelope-from philip@paeps.cx) Received: from erda.home.paeps.cx (erda.home.paeps.cx [IPv6:2001:838:37f:10::1]) by gateway.nixsys.be (Postfix) with ESMTP id 88F5471; Sun, 8 Aug 2004 11:07:43 +0200 (CEST) Received: from fasolt.home.paeps.cx (fasolt.home.paeps.cx [10.0.0.2]) by erda.home.paeps.cx (Postfix) with ESMTP id AC7A220EE; Sun, 8 Aug 2004 11:07:35 +0200 (CEST) Received: from fasolt.home.paeps.cx (philip@localhost [127.0.0.1]) i7897gUi009720; Sun, 8 Aug 2004 11:07:42 +0200 (CEST) (envelope-from philip@fasolt.home.paeps.cx) Received: (from philip@localhost) by fasolt.home.paeps.cx (8.12.11/8.12.11/Submit) id i7897b1U009719; Sun, 8 Aug 2004 11:07:37 +0200 (CEST) (envelope-from philip) Date: Sun, 8 Aug 2004 11:07:37 +0200 From: Philip Paeps To: "Daniel O'Connor" Message-ID: <20040808090737.GR11982@fasolt.home.paeps.cx> Mail-Followup-To: Daniel O'Connor , cvs-all@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org References: <200408080126.i781Q0od084545@repoman.freebsd.org> <200408081831.51295.doconnor@gsoft.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408081831.51295.doconnor@gsoft.com.au> X-Date-in-Rome: ante diem VII Idius Augustas MMDCCLVII ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! User-Agent: Mutt/1.5.6i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:07:48 -0000 On 2004-08-08 18:31:45 (+0930), Daniel O'Connor wrote: > On Sun, 8 Aug 2004 10:56, Philip Paeps wrote: > > Assume a finger of regular width when no width value is reported by the > > touchpad (which happens when it has no extended capabilities). > > Can't you tell if the touch pad has extended caps? (ie check in probe) Yes, I check in the probe (line 3139), but before r.1.76 I didn't check for the presence of the extended caps before using w (which only makes sense when extended caps exist) in the finger-presence check. - Philip -- Philip Paeps Please don't Cc me, I am philip@freebsd.org subscribed to the list. Don't worry over what other people are thinking about you. They're too busy worrying over what you are thinking about them. From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:08:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 982AF16A4CE; Sun, 8 Aug 2004 09:08:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79A0243D3F; Sun, 8 Aug 2004 09:08:37 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7898bgP099536; Sun, 8 Aug 2004 09:08:37 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7898bQi099535; Sun, 8 Aug 2004 09:08:37 GMT (envelope-from sanpei) Message-Id: <200408080908.i7898bQi099535@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 09:08:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:08:37 -0000 sanpei 2004-08-08 09:08:37 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Add support iRiver iFP MP3 player PR: kern/54881, i386/63941, kern/66124 Submitted by: Magnus , Dmitry Dyomin , Dmitry Sivachenko MFC after: 1 week Revision Changes Path 1.170 +8 -0 src/sys/cam/scsi/scsi_da.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:23:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C87216A4CE; Sun, 8 Aug 2004 09:23:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 839B843D45; Sun, 8 Aug 2004 09:23:49 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789NnGb000122; Sun, 8 Aug 2004 09:23:49 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789NnWF000121; Sun, 8 Aug 2004 09:23:49 GMT (envelope-from hrs) Message-Id: <200408080923.i789NnWF000121@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 09:23:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc man2hwnotes.pl src/release/doc/share/mk doc.relnotes.mk src/release/doc/share/sgml Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:23:49 -0000 hrs 2004-08-08 09:23:49 UTC FreeBSD src repository Modified files: release/doc/share/misc man2hwnotes.pl release/doc/share/mk doc.relnotes.mk release/doc/share/sgml Makefile Log: - Add an -o option to specify the output file. - Make "die()" more verbose. - Do not put extra blank lines into the output file. - Normalize text by using numeric entities because some characters such as "'" can break the generated SGML. Reviewed by: simon Revision Changes Path 1.2 +47 -14 src/release/doc/share/misc/man2hwnotes.pl 1.13 +3 -1 src/release/doc/share/mk/doc.relnotes.mk 1.2 +2 -3 src/release/doc/share/sgml/Makefile From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:28:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B697416A4CE; Sun, 8 Aug 2004 09:28:52 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC23143D45; Sun, 8 Aug 2004 09:28:51 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from ns0.nlsystems.com (ns0.nlsystems.com [80.177.232.243]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i789SgSS055765; Sun, 8 Aug 2004 10:28:43 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: John Baldwin Date: Sun, 8 Aug 2004 10:28:44 +0100 User-Agent: KMail/1.6.2 References: <200408061549.i76Fni3I019460@repoman.freebsd.org> <4113AC45.1050003@freebsd.org> <200408061340.15480.jhb@FreeBSD.org> In-Reply-To: <200408061340.15480.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408081028.44760.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:28:52 -0000 On Friday 06 August 2004 18:46, John Baldwin wrote: > On Friday 06 August 2004 12:05 pm, Scott Long wrote: > > John Baldwin wrote: > > > jhb 2004-08-06 15:49:44 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/kern kern_switch.c > > > Log: > > > Don't scare users with a warning about preemption being off > > > when it isn't yet safe to have on by default. > > > > > > Revision Changes Path > > > 1.75 +2 -0 src/sys/kern/kern_switch.c > > > > I was actually hoping to leave this on as a reminder to get us to > > fix the underlying problems, and only turning it off if absolutely > > necessary for the release. Sorry that I didn't mention this > > sooner. > > Hmm, it seems at least one person on current@ was already confused by > this and asking if he should turn on FULL_PREEMPTION instead. We > probably don't want people doing that. :-P Also, believe me that I > haven't forgotten about the preemption stability problems. I just > need to reproduce these problems on machines with a serial console. > The only machine I can reproduce hangs on so far is my laptop which > has no serial port. :( Does it have firewire? Dcons is dead easy to set up - just add dcons and dcons_crom to a kernel config and it automatically becomes the console. From owner-cvs-src@FreeBSD.ORG Sun Aug 8 09:48:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5273F16A4CE; Sun, 8 Aug 2004 09:48:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EE943D3F; Sun, 8 Aug 2004 09:48:11 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789mBI4000910; Sun, 8 Aug 2004 09:48:11 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789mBc4000909; Sun, 8 Aug 2004 09:48:11 GMT (envelope-from dfr) Message-Id: <200408080948.i789mBc4000909@repoman.freebsd.org> From: Doug Rabson Date: Sun, 8 Aug 2004 09:48:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern imgact_elf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 09:48:11 -0000 dfr 2004-08-08 09:48:11 UTC FreeBSD src repository Modified files: sys/kern imgact_elf.c Log: Make sure that AT_PHDR has a useful value even for static programs. Revision Changes Path 1.154 +11 -0 src/sys/kern/imgact_elf.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 10:50:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC35B16A4CE; Sun, 8 Aug 2004 10:50:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBE0143D58; Sun, 8 Aug 2004 10:50:19 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78AoJd5002908; Sun, 8 Aug 2004 10:50:19 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78AoJ7Z002907; Sun, 8 Aug 2004 10:50:19 GMT (envelope-from kensmith) Message-Id: <200408081050.i78AoJ7Z002907@repoman.freebsd.org> From: Ken Smith Date: Sun, 8 Aug 2004 10:50:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 10:50:20 -0000 kensmith 2004-08-08 10:50:19 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: Looks like the x.org manuals are in x11/xorg-manpages, not x11/xorg-manuals. Revision Changes Path 1.62 +1 -1 src/release/scripts/print-cdrom-packages.sh From owner-cvs-src@FreeBSD.ORG Sun Aug 8 13:05:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FD5B16A4CE; Sun, 8 Aug 2004 13:05:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DDCB43D4C; Sun, 8 Aug 2004 13:05:04 +0000 (GMT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78D54WC006930; Sun, 8 Aug 2004 13:05:04 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78D531g006929; Sun, 8 Aug 2004 13:05:03 GMT (envelope-from thomas) Message-Id: <200408081305.i78D531g006929@repoman.freebsd.org> From: Thomas Quinot Date: Sun, 8 Aug 2004 13:05:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/nanobsd Makefile make.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 13:05:04 -0000 thomas 2004-08-08 13:05:03 UTC FreeBSD src repository Modified files: tools/tools/nanobsd Makefile make.conf Log: Include the nanoBSD make.conf in the top-level nanoBSD Makefile, so all configuration knobs (both system settings and nanoBSD-specific ones) can be tuned by modifying a single file. Move KERNCONF default value to make.conf. Attempt to resolve CFGMASTER like CUSTOMIZE, first relative to ${.CURDIR}, then as an absolute path. Allow optional additional arguments to be passed to the CUSTOMIZE script. Revision Changes Path 1.7 +26 -17 src/tools/tools/nanobsd/Makefile 1.2 +2 -0 src/tools/tools/nanobsd/make.conf From owner-cvs-src@FreeBSD.ORG Sun Aug 8 13:20:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A38D216A4CE; Sun, 8 Aug 2004 13:20:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8077D43D5A; Sun, 8 Aug 2004 13:20:43 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DKhOH007502; Sun, 8 Aug 2004 13:20:43 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DKhVE007501; Sun, 8 Aug 2004 13:20:43 GMT (envelope-from phk) Message-Id: <200408081320.i78DKhVE007501@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 13:20:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/hpfs hpfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 13:20:43 -0000 phk 2004-08-08 13:20:43 UTC FreeBSD src repository Modified files: sys/fs/hpfs hpfs_vnops.c Log: Use bufdone(), not biodone(). Revision Changes Path 1.49 +2 -2 src/sys/fs/hpfs/hpfs_vnops.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 13:21:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BDED16A4CE; Sun, 8 Aug 2004 13:21:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59B5943D1F; Sun, 8 Aug 2004 13:21:54 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DLsVI007700; Sun, 8 Aug 2004 13:21:54 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DLs5G007699; Sun, 8 Aug 2004 13:21:54 GMT (envelope-from phk) Message-Id: <200408081321.i78DLs5G007699@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 13:21:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 13:21:54 -0000 phk 2004-08-08 13:21:54 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_softdep.c Log: use bufdone() not biodone(). Revision Changes Path 1.156 +3 -3 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 13:23:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA1016A4CE; Sun, 8 Aug 2004 13:23:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E10C243D45; Sun, 8 Aug 2004 13:23:05 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DN5XP007746; Sun, 8 Aug 2004 13:23:05 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DN5qE007745; Sun, 8 Aug 2004 13:23:05 GMT (envelope-from phk) Message-Id: <200408081323.i78DN5qE007745@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 13:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/specfs spec_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 13:23:06 -0000 phk 2004-08-08 13:23:05 UTC FreeBSD src repository Modified files: sys/fs/specfs spec_vnops.c Log: use bufdone() not biodone(). Revision Changes Path 1.226 +3 -3 src/sys/fs/specfs/spec_vnops.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 14:59:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CCA216A4CE; Sun, 8 Aug 2004 14:59:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C8AD43D1F; Sun, 8 Aug 2004 14:59:28 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78ExRFP012517; Sun, 8 Aug 2004 14:59:27 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78ExRUY012516; Sun, 8 Aug 2004 14:59:27 GMT (envelope-from hrs) Message-Id: <200408081459.i78ExRUY012516@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 14:59:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/early-adopter article.sgml src/release/doc/en_US.ISO8859-1/errataarticle.sgml src/release/doc/en_US.ISO8859-1/hardware/i386article.sgml ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 14:59:28 -0000 hrs 2004-08-08 14:59:27 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/early-adopter article.sgml release/doc/en_US.ISO8859-1/errata article.sgml release/doc/en_US.ISO8859-1/hardware/alpha article.sgml release/doc/en_US.ISO8859-1/hardware/amd64 article.sgml release/doc/en_US.ISO8859-1/hardware/i386 article.sgml release/doc/en_US.ISO8859-1/hardware/ia64 article.sgml release/doc/en_US.ISO8859-1/hardware/pc98 article.sgml release/doc/en_US.ISO8859-1/hardware/sparc64 article.sgml release/doc/en_US.ISO8859-1/installation/alpha article.sgml release/doc/en_US.ISO8859-1/installation/amd64 article.sgml release/doc/en_US.ISO8859-1/installation/i386 article.sgml release/doc/en_US.ISO8859-1/installation/ia64 article.sgml release/doc/en_US.ISO8859-1/installation/pc98 article.sgml release/doc/en_US.ISO8859-1/installation/sparc64 article.sgml release/doc/en_US.ISO8859-1/readme article.sgml release/doc/en_US.ISO8859-1/relnotes/alpha article.sgml release/doc/en_US.ISO8859-1/relnotes/amd64 article.sgml release/doc/en_US.ISO8859-1/relnotes/i386 Makefile article.sgml release/doc/en_US.ISO8859-1/relnotes/ia64 article.sgml release/doc/en_US.ISO8859-1/relnotes/pc98 article.sgml release/doc/en_US.ISO8859-1/relnotes/sparc64 article.sgml Log: Simplify parameter entities in doctype declaration. Revision Changes Path 1.20 +2 -18 src/release/doc/en_US.ISO8859-1/early-adopter/article.sgml 1.69 +3 -11 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.6 +2 -6 src/release/doc/en_US.ISO8859-1/hardware/alpha/article.sgml 1.3 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/amd64/article.sgml 1.6 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/i386/article.sgml 1.5 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/ia64/article.sgml 1.3 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/pc98/article.sgml 1.5 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/sparc64/article.sgml 1.4 +6 -8 src/release/doc/en_US.ISO8859-1/installation/alpha/article.sgml 1.2 +5 -7 src/release/doc/en_US.ISO8859-1/installation/amd64/article.sgml 1.5 +5 -7 src/release/doc/en_US.ISO8859-1/installation/i386/article.sgml 1.2 +5 -7 src/release/doc/en_US.ISO8859-1/installation/ia64/article.sgml 1.2 +5 -7 src/release/doc/en_US.ISO8859-1/installation/pc98/article.sgml 1.5 +4 -8 src/release/doc/en_US.ISO8859-1/installation/sparc64/article.sgml 1.31 +3 -10 src/release/doc/en_US.ISO8859-1/readme/article.sgml 1.6 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/alpha/article.sgml 1.4 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/amd64/article.sgml 1.7 +3 -1 src/release/doc/en_US.ISO8859-1/relnotes/i386/Makefile 1.7 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/i386/article.sgml 1.4 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/ia64/article.sgml 1.4 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/pc98/article.sgml 1.6 +5 -13 src/release/doc/en_US.ISO8859-1/relnotes/sparc64/article.sgml From owner-cvs-src@FreeBSD.ORG Sun Aug 8 15:08:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3BBE16A4CE; Sun, 8 Aug 2004 15:08:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5A6643D55; Sun, 8 Aug 2004 15:08:29 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78F8Tfi012886; Sun, 8 Aug 2004 15:08:29 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78F8TX3012885; Sun, 8 Aug 2004 15:08:29 GMT (envelope-from hrs) Message-Id: <200408081508.i78F8TX3012885@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 15:08:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/early-adopter article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 15:08:29 -0000 hrs 2004-08-08 15:08:29 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/early-adopter article.sgml Log: Use &url.*; for URLs in www.FreeBSD.org. Revision Changes Path 1.21 +7 -7 src/release/doc/en_US.ISO8859-1/early-adopter/article.sgml From owner-cvs-src@FreeBSD.ORG Sun Aug 8 17:10:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58E7B16A4CE; Sun, 8 Aug 2004 17:10:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B9C343D1D; Sun, 8 Aug 2004 17:10:55 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HAtfV017618; Sun, 8 Aug 2004 17:10:55 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HAtJ3017617; Sun, 8 Aug 2004 17:10:55 GMT (envelope-from sam) Message-Id: <200408081710.i78HAtJ3017617@repoman.freebsd.org> From: Sam Leffler Date: Sun, 8 Aug 2004 17:10:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath if_ath.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 17:10:55 -0000 sam 2004-08-08 17:10:55 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c Log: Add missing bit of last if_start workaround: mark scan callout MPSAFE only debug_mpsafenet is 1 so callbacks to send management frames hold Giant; this is another bandaid on the path to removing Giant. Revision Changes Path 1.57 +1 -1 src/sys/dev/ath/if_ath.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 17:20:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5402516A4CE; Sun, 8 Aug 2004 17:20:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 363E243D2F; Sun, 8 Aug 2004 17:20:24 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HKOpl018140; Sun, 8 Aug 2004 17:20:24 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HKOvH018139; Sun, 8 Aug 2004 17:20:24 GMT (envelope-from kientzle) Message-Id: <200408081720.i78HKOvH018139@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 17:20:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.1 bsdtar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 17:20:24 -0000 kientzle 2004-08-08 17:20:24 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.1 bsdtar.c Log: gtar uses -F for another purpose, so bsdtar no longer treats it as a synonym for --format. Update the man page to reflect this. While I'm here, change the man page to document "tar" rather than "bsdtar," update some comments about -l compatibility and fix a few grammar nits. Revision Changes Path 1.11 +1 -1 src/usr.bin/tar/Makefile 1.20 +13 -16 src/usr.bin/tar/bsdtar.1 1.51 +4 -3 src/usr.bin/tar/bsdtar.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 18:59:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29B9916A4CE; Sun, 8 Aug 2004 18:59:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BF7F43D45; Sun, 8 Aug 2004 18:59:20 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78IxJSn021026; Sun, 8 Aug 2004 18:59:19 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78IxJBq021025; Sun, 8 Aug 2004 18:59:19 GMT (envelope-from dwmalone) Message-Id: <200408081859.i78IxJBq021025@repoman.freebsd.org> From: David Malone Date: Sun, 8 Aug 2004 18:59:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/last last.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 18:59:20 -0000 dwmalone 2004-08-08 18:59:19 UTC FreeBSD src repository Modified files: usr.bin/last last.c Log: s/FALLTHOUGH/FALLTHROUGH/ Submitted by: Xin LI Revision Changes Path 1.34 +1 -1 src/usr.bin/last/last.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 20:05:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36C7E16A4CE; Sun, 8 Aug 2004 20:05:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F1343D54; Sun, 8 Aug 2004 20:05:48 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78K5lUU023078; Sun, 8 Aug 2004 20:05:47 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78K5lDQ023077; Sun, 8 Aug 2004 20:05:47 GMT (envelope-from stefanf) Message-Id: <200408082005.i78K5lDQ023077@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 8 Aug 2004 20:05:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile tgmath.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 20:05:48 -0000 stefanf 2004-08-08 20:05:47 UTC FreeBSD src repository Modified files: include Makefile Added files: include tgmath.h Log: Implement C99's standard header . It provides type-generic macros for the and functions that have float, double and long double implementations. Such type-generic macros expand to an actual function, depending on the types of the macro arguments, eg. if is included, the invocation cos(1.0f) calls the function cosf(). Revision Changes Path 1.219 +2 -1 src/include/Makefile 1.1 +166 -0 src/include/tgmath.h (new) From owner-cvs-src@FreeBSD.ORG Sun Aug 8 20:10:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE53916A4CE; Sun, 8 Aug 2004 20:10:02 +0000 (GMT) Received: from bgezal.rise.tuwien.ac.at (bgezal.rise.tuwien.ac.at [128.130.59.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D5BD43D39; Sun, 8 Aug 2004 20:10:02 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from fafoe.narf.at (unknown [212.186.3.235]) by bgezal.rise.tuwien.ac.at (Postfix) with ESMTP id BFECD20AC; Sun, 8 Aug 2004 22:10:00 +0200 (CEST) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.1.42]) by fafoe.narf.at (Postfix) with ESMTP id A58BB40B6; Sun, 8 Aug 2004 22:09:55 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 4753EBC; Sun, 8 Aug 2004 22:09:53 +0200 (CEST) Date: Sun, 8 Aug 2004 22:09:52 +0200 From: Stefan Farfeleder To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040808200951.GA557@wombat.fafoe.narf.at> References: <200408082005.i78K5lDQ023077@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408082005.i78K5lDQ023077@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/include Makefile tgmath.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 20:10:03 -0000 On Sun, Aug 08, 2004 at 08:05:47PM +0000, Stefan Farfeleder wrote: > Log: > Implement C99's standard header . It provides type-generic macros > for the and functions that have float, double and long > double implementations. Such type-generic macros expand to an actual > function, depending on the types of the macro arguments, eg. if > is included, the invocation cos(1.0f) calls the function cosf(). I'll add a man page that lists all macros ASAP. Stefan From owner-cvs-src@FreeBSD.ORG Sun Aug 8 21:10:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3928616A4CE; Sun, 8 Aug 2004 21:10:03 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7522E43D1D; Sun, 8 Aug 2004 21:10:00 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i78L9s89073730 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 00:09:55 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i78L9t3l092751; Mon, 9 Aug 2004 00:09:55 +0300 (EEST) (envelope-from ru) Date: Mon, 9 Aug 2004 00:09:55 +0300 From: Ruslan Ermilov To: Marcel Moolenaar Message-ID: <20040808210955.GB92673@ip.net.ua> References: <200408061707.i76H7fms022767@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="s/l3CgOIzMHHjg/5" Content-Disposition: inline In-Reply-To: <200408061707.i76H7fms022767@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 21:10:03 -0000 --s/l3CgOIzMHHjg/5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 06, 2004 at 05:07:41PM +0000, Marcel Moolenaar wrote: > marcel 2004-08-06 17:07:41 UTC >=20 > FreeBSD src repository >=20 > Modified files: > release Makefile=20 > Log: > Now that make(1) passes variables that were given on the command line > to subordinate make(1) invocations through MAKEFLAGS, we cannot add > CFLAGS onto the make(1) command line. This will conflict with the > individual makefiles wanting to append to it, which is not respected > when CFLAGS is given on the command line. Hence build breakage. > So, put CFLAGS in the environment instead. > =20 > Revision Changes Path > 1.850 +2 -2 src/release/Makefile >=20 Nice catch, thank you! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --s/l3CgOIzMHHjg/5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFpajqRfpzJluFF4RAjnpAJ0QbLwn9z3EY9G5/fqzWJZlADITZACeLO+l 8raLbgT5H6OQx7Di5hEQW/s= =PjkE -----END PGP SIGNATURE----- --s/l3CgOIzMHHjg/5-- From owner-cvs-src@FreeBSD.ORG Sun Aug 8 21:28:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03CA116A4CE; Sun, 8 Aug 2004 21:28:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA3A843D2F; Sun, 8 Aug 2004 21:28:00 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LS0pw025429; Sun, 8 Aug 2004 21:28:00 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LS0WL025428; Sun, 8 Aug 2004 21:28:00 GMT (envelope-from simon) Message-Id: <200408082128.i78LS0WL025428@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 21:28:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc man2hwnotes.pl X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 21:28:01 -0000 simon 2004-08-08 21:28:00 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc man2hwnotes.pl Log: - Add support for the .Dq macro. Revision Changes Path 1.3 +21 -0 src/release/doc/share/misc/man2hwnotes.pl From owner-cvs-src@FreeBSD.ORG Sun Aug 8 21:47:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE04016A4CE; Sun, 8 Aug 2004 21:47:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C068643D2F; Sun, 8 Aug 2004 21:47:40 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Lle28026252; Sun, 8 Aug 2004 21:47:40 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LleYO026251; Sun, 8 Aug 2004 21:47:40 GMT (envelope-from simon) Message-Id: <200408082147.i78LleYO026251@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 21:47:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 adv.4 bt.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 21:47:41 -0000 simon 2004-08-08 21:47:40 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 adv.4 bt.4 Log: - Add a HARDWARE section which lists supported devices based on the manual page and the Hardware Notes. Revision Changes Path 1.19 +61 -0 src/share/man/man4/adv.4 1.22 +68 -3 src/share/man/man4/bt.4 From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:19:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82CD016A4CE; Sun, 8 Aug 2004 22:19:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EBDA43D41; Sun, 8 Aug 2004 22:19:05 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MJ5MR027569; Sun, 8 Aug 2004 22:19:05 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MJ5RG027568; Sun, 8 Aug 2004 22:19:05 GMT (envelope-from simon) Message-Id: <200408082219.i78MJ5RG027568@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 22:19:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 amd.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:19:05 -0000 simon 2004-08-08 22:19:05 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 amd.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 Log: - Add a HARDWARE section which lists supported devices. Revision Changes Path 1.7 +15 -2 src/share/man/man4/amd.4 1.4 +2 -1 src/share/man/man4/ida.4 1.7 +6 -4 src/share/man/man4/iir.4 1.4 +15 -12 src/share/man/man4/ips.4 1.4 +4 -1 src/share/man/man4/nsp.4 1.15 +22 -10 src/share/man/man4/ohci.4 1.6 +4 -1 src/share/man/man4/stg.4 From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:26:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16CBC16A4CE; Sun, 8 Aug 2004 22:26:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB76143D2D; Sun, 8 Aug 2004 22:26:11 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MQBTV027824; Sun, 8 Aug 2004 22:26:11 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MQBWJ027823; Sun, 8 Aug 2004 22:26:11 GMT (envelope-from davidxu) Message-Id: <200408082226.i78MQBWJ027823@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:26:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys ptrace.h src/sys/kern sys_process.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:26:12 -0000 davidxu 2004-08-08 22:26:11 UTC FreeBSD src repository Modified files: sys/sys ptrace.h sys/kern sys_process.c Log: Add pl_flags to ptrace_lwpinfo, two flags PL_FLAG_SA and PL_FLAG_BOUND indicate that a thread is in UTS critical region. Reviewed by: deischen Approved by: marcel Revision Changes Path 1.127 +7 -0 src/sys/kern/sys_process.c 1.25 +3 -0 src/sys/sys/ptrace.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:27:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4962716A4CE; Sun, 8 Aug 2004 22:27:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4085E43D1D; Sun, 8 Aug 2004 22:27:03 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MR3X5027897; Sun, 8 Aug 2004 22:27:03 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MR3Y2027896; Sun, 8 Aug 2004 22:27:03 GMT (envelope-from simon) Message-Id: <200408082227.i78MR3Y2027896@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 22:27:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 adv.4 amd.4 bt.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:27:03 -0000 simon 2004-08-08 22:27:03 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 adv.4 amd.4 bt.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 Log: Bump document date for last commit. Revision Changes Path 1.20 +1 -1 src/share/man/man4/adv.4 1.8 +1 -1 src/share/man/man4/amd.4 1.23 +1 -1 src/share/man/man4/bt.4 1.5 +1 -1 src/share/man/man4/ida.4 1.8 +1 -1 src/share/man/man4/iir.4 1.5 +1 -1 src/share/man/man4/ips.4 1.5 +1 -1 src/share/man/man4/nsp.4 1.16 +1 -1 src/share/man/man4/ohci.4 1.7 +1 -1 src/share/man/man4/stg.4 From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:28:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19F716A4CE; Sun, 8 Aug 2004 22:28:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1EE843D1D; Sun, 8 Aug 2004 22:28:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MSXnR028091; Sun, 8 Aug 2004 22:28:33 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MSXn3028090; Sun, 8 Aug 2004 22:28:33 GMT (envelope-from davidxu) Message-Id: <200408082228.i78MSXn3028090@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:28:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_trap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:28:33 -0000 davidxu 2004-08-08 22:28:33 UTC FreeBSD src repository Modified files: sys/kern subr_trap.c Log: Call thread_user_enter for M:N thread, ast() should be treated as another entrance of kernel. Revision Changes Path 1.270 +2 -0 src/sys/kern/subr_trap.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:32:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D6B916A4CF; Sun, 8 Aug 2004 22:32:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CE8F43D1F; Sun, 8 Aug 2004 22:32:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MWLKM028347; Sun, 8 Aug 2004 22:32:21 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MWL1M028346; Sun, 8 Aug 2004 22:32:21 GMT (envelope-from davidxu) Message-Id: <200408082232.i78MWL1M028346@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:32:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys kse.h src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:32:21 -0000 davidxu 2004-08-08 22:32:21 UTC FreeBSD src repository Modified files: sys/sys kse.h sys/kern kern_kse.c Log: 1.Add KSE_INTR_DBSUSPEND command for kse_thr_interrupt to suspend a bound thread, after the bound thread leaves critical region, the thread should check debug flag may suspend itself by using the command. 2.Schedule upcall after thread is suspended by debugger 3.Wakeup upcall thread after process suspension. Reviewed by: deischen Revision Changes Path 1.192 +46 -29 src/sys/kern/kern_kse.c 1.26 +5 -4 src/sys/sys/kse.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:37:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7251216A4CE; Sun, 8 Aug 2004 22:37:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6966543D41; Sun, 8 Aug 2004 22:37:53 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MbrCK028606; Sun, 8 Aug 2004 22:37:53 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MbrDB028605; Sun, 8 Aug 2004 22:37:53 GMT (envelope-from davidxu) Message-Id: <200408082237.i78MbrDB028605@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:37:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthread_db Makefile libpthread_db.c thread_db.c thread_db.h thread_db_int.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:37:53 -0000 davidxu 2004-08-08 22:37:53 UTC FreeBSD src repository Modified files: lib/libthread_db Makefile libpthread_db.c thread_db.c thread_db.h thread_db_int.h Log: 1.Use new way to check if a thread is in critical region, defer suspending if it is true. 2.Add thread_db api td_thr_tls_get_addr to get tls address, the real code is commented out util tls patch is committed. Reviewed by: deischen Revision Changes Path 1.4 +7 -1 src/lib/libthread_db/Makefile 1.4 +108 -31 src/lib/libthread_db/libpthread_db.c 1.2 +8 -0 src/lib/libthread_db/thread_db.c 1.3 +1 -0 src/lib/libthread_db/thread_db.h 1.2 +2 -0 src/lib/libthread_db/thread_db_int.h From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:39:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 509F416A4CE; Sun, 8 Aug 2004 22:39:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3196F43D49; Sun, 8 Aug 2004 22:39:19 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MdJn8028683; Sun, 8 Aug 2004 22:39:19 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MdJq6028681; Sun, 8 Aug 2004 22:39:19 GMT (envelope-from simon) Message-Id: <200408082239.i78MdJq6028681@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 22:39:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:39:19 -0000 simon 2004-08-08 22:39:19 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/share/misc dev.archlist.txt Log: Auto generate device listings the following drivers: adv, amd, bt, ida, iir, ips, nsp, ohci, and stg. Revision Changes Path 1.223 +9 -41 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.2 +8 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:42:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E7516A4CE; Sun, 8 Aug 2004 22:42:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3629243D1F; Sun, 8 Aug 2004 22:42:12 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MgCQU028825; Sun, 8 Aug 2004 22:42:12 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MgCkQ028824; Sun, 8 Aug 2004 22:42:12 GMT (envelope-from davidxu) Message-Id: <200408082242.i78MgCkQ028824@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:42:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:42:12 -0000 davidxu 2004-08-08 22:42:12 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_kern.c Log: Check debugger suspending flag for system scope thread. Reviewed by: deischen Revision Changes Path 1.110 +7 -3 src/lib/libpthread/thread/thr_kern.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:45:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2731016A4CE; Sun, 8 Aug 2004 22:45:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F5E43D53; Sun, 8 Aug 2004 22:45:37 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Mja5t028966; Sun, 8 Aug 2004 22:45:36 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MjaDt028965; Sun, 8 Aug 2004 22:45:36 GMT (envelope-from davidxu) Message-Id: <200408082245.i78MjaDt028965@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:45:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/libgdb Makefile fbsd-threads.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:45:37 -0000 davidxu 2004-08-08 22:45:36 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/libgdb Makefile fbsd-threads.c Log: 1. Add some code check if thread suspending or resuming is failed. 2. Add code to retrieve thread tls address. Revision Changes Path 1.2 +1 -1 src/gnu/usr.bin/gdb/libgdb/Makefile 1.4 +79 -3 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 22:46:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFA7416A4CE; Sun, 8 Aug 2004 22:46:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D027E43D39; Sun, 8 Aug 2004 22:46:22 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MkMGi029021; Sun, 8 Aug 2004 22:46:22 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MkMRE029020; Sun, 8 Aug 2004 22:46:22 GMT (envelope-from davidxu) Message-Id: <200408082246.i78MkMRE029020@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:46:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/arch/i386 init.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 22:46:23 -0000 davidxu 2004-08-08 22:46:22 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/arch/i386 init.c Log: Initialize thread_db module. Revision Changes Path 1.2 +2 -0 src/gnu/usr.bin/gdb/arch/i386/init.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 23:11:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAEFC16A4CE; Sun, 8 Aug 2004 23:11:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A1943D49; Sun, 8 Aug 2004 23:11:43 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NBhxG030011; Sun, 8 Aug 2004 23:11:43 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NBhpw030010; Sun, 8 Aug 2004 23:11:43 GMT (envelope-from des) Message-Id: <200408082311.i78NBhpw030010@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 8 Aug 2004 23:11:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 23:11:43 -0000 des 2004-08-08 23:11:43 UTC FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: Fix some whitespace issues, and move a curly brace out of an #ifdef to avoid confusing auto-indenting editors. Revision Changes Path 1.106 +14 -13 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 23:14:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ADF716A4CE; Sun, 8 Aug 2004 23:14:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D5A343D31; Sun, 8 Aug 2004 23:14:44 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NEiDu030098; Sun, 8 Aug 2004 23:14:44 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NEiIk030097; Sun, 8 Aug 2004 23:14:44 GMT (envelope-from des) Message-Id: <200408082314.i78NEiIk030097@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 8 Aug 2004 23:14:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 23:14:44 -0000 des 2004-08-08 23:14:44 UTC FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: Use fallthrough to simplify the multiplier logic; optimistically add support for the T multiplier; improve the error message for unrecognized multipliers. Revision Changes Path 1.107 +14 -9 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 23:29:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF70116A4CE; Sun, 8 Aug 2004 23:29:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF51543D1F; Sun, 8 Aug 2004 23:29:36 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NTa7u030551; Sun, 8 Aug 2004 23:29:36 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NTa7g030550; Sun, 8 Aug 2004 23:29:36 GMT (envelope-from alfred) Message-Id: <200408082329.i78NTa7g030550@repoman.freebsd.org> From: Alfred Perlstein Date: Sun, 8 Aug 2004 23:29:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/truss i386-fbsd.c syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 23:29:36 -0000 alfred 2004-08-08 23:29:36 UTC FreeBSD src repository Modified files: usr.bin/truss i386-fbsd.c syscalls.c Log: don't seg if the syscall is invalid for i386fbsd. Revision Changes Path 1.23 +2 -1 src/usr.bin/truss/i386-fbsd.c 1.44 +2 -0 src/usr.bin/truss/syscalls.c From owner-cvs-src@FreeBSD.ORG Sun Aug 8 23:30:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60FF216A4CE; Sun, 8 Aug 2004 23:30:59 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5FE743D31; Sun, 8 Aug 2004 23:30:58 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 93EC4ACAE0; Mon, 9 Aug 2004 01:30:54 +0200 (CEST) Date: Mon, 9 Aug 2004 01:30:54 +0200 From: Pawel Jakub Dawidek To: Poul-Henning Kamp Message-ID: <20040808233054.GI628@darkness.comp.waw.pl> References: <200408080757.i787vrUU096445@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="54ZiyWcDhi/7bWb8" Content-Disposition: inline In-Reply-To: <200408080757.i787vrUU096445@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata atapi-cd.c src/sys/dev/md md.c src/sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c src/sys/geom/bde ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2004 23:30:59 -0000 --54ZiyWcDhi/7bWb8 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 08, 2004 at 07:57:53AM +0000, Poul-Henning Kamp wrote: [...] +> Log: +> Tag all geom classes in the tree with a version number. [...] +> --- src/sys/geom/geom_vol_ffs.c 2004/02/12 22:42:11 1.11 +> +++ src/sys/geom/geom_vol_ffs.c 2004/08/08 07:57:51 1.12 +> @@ -25,7 +25,7 @@ +> */ +> =20 +> #include +> -__FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/geom/geom_vo= l_ffs.c,v 1.11 2004/02/12 22:42:11 phk Exp $"); +> +__FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/geom/geom_vo= l_ffs.c,v 1.12 2004/08/08 07:57:51 phk Exp $"); +> =20 +> #include +> #include +> @@ -137,6 +137,8 @@ g_vol_ffs_taste(struct g_class *mp, stru +> =20 +> static struct g_class g_vol_ffs_class =3D { +> .name =3D VOL_FFS_CLASS_NAME, +> + .version =3D G_VERSION, +> + .version =3D G_VERSION, +> .taste =3D g_vol_ffs_taste, +> }; One too much here. --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --54ZiyWcDhi/7bWb8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFreuForvXbEpPzQRAus1AJ9L7UTl5HgCNmtjXzTP21yBitc7dACfUsP/ +IZkQT4GVI18WdwodRQA4aU= =PKEP -----END PGP SIGNATURE----- --54ZiyWcDhi/7bWb8-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 00:15:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E882D16A4CE; Mon, 9 Aug 2004 00:15:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5EA243D1D; Mon, 9 Aug 2004 00:15:44 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i790Fiqs033172; Mon, 9 Aug 2004 00:15:44 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i790FiVa033171; Mon, 9 Aug 2004 00:15:44 GMT (envelope-from gshapiro) Message-Id: <200408090015.i790FiVa033171@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Aug 2004 00:15:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/contrib/sendmail CACerts FREEBSD-upgrade KNOWNBUGS LICENSE PGPKEYS README RELEASE_NOTES src/contrib/sendmail/cf README sendmail.schema src/contrib/sendmail/cf/cf Makefile knecht.mc submit.cf submit.mc src/contrib/sendmail/cf/feature ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 00:15:45 -0000 gshapiro 2004-08-09 00:15:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/sendmail FREEBSD-upgrade KNOWNBUGS LICENSE PGPKEYS README RELEASE_NOTES contrib/sendmail/cf README sendmail.schema contrib/sendmail/cf/cf Makefile knecht.mc submit.cf submit.mc contrib/sendmail/cf/feature access_db.m4 authinfo.m4 bitdomain.m4 dnsbl.m4 domaintable.m4 genericstable.m4 ldap_routing.m4 local_lmtp.m4 local_procmail.m4 mailertable.m4 msp.m4 uucpdomain.m4 virtusertable.m4 contrib/sendmail/cf/m4 cfhead.m4 proto.m4 version.m4 contrib/sendmail/cf/mailer usenet.m4 contrib/sendmail/contrib buildvirtuser cidrexpand qtool.8 qtool.pl contrib/sendmail/doc/op Makefile op.me contrib/sendmail/editmap Makefile.m4 editmap.8 contrib/sendmail/include/libmilter mfapi.h mfdef.h milter.h contrib/sendmail/include/libsmdb smdb.h contrib/sendmail/include/sendmail mailstats.h sendmail.h contrib/sendmail/include/sm bdb.h cdefs.h conf.h config.h debug.h errstring.h fdset.h gen.h io.h ldap.h rpool.h shm.h string.h varargs.h contrib/sendmail/include/sm/os sm_os_aix.h sm_os_unixware.h contrib/sendmail/libmilter Makefile.m4 README comm.c engine.c handler.c libmilter.h listener.c main.c signal.c smfi.c contrib/sendmail/libmilter/docs api.html design.html index.html installation.html other.html overview.html sample.html smfi_addheader.html smfi_addrcpt.html smfi_chgheader.html smfi_delrcpt.html smfi_getpriv.html smfi_getsymval.html smfi_main.html smfi_register.html smfi_replacebody.html smfi_setbacklog.html smfi_setconn.html smfi_setpriv.html smfi_setreply.html smfi_settimeout.html xxfi_abort.html xxfi_body.html xxfi_close.html xxfi_connect.html xxfi_envfrom.html xxfi_envrcpt.html xxfi_eoh.html xxfi_eom.html xxfi_header.html xxfi_helo.html contrib/sendmail/libsm Makefile.m4 README assert.c clock.c config.c debug.c errstring.c exc.c flags.c ldap.c local.h mbdb.c refill.c rpool.c shm.c smstdio.c stdio.c strdup.c t-shm.c vasprintf.c contrib/sendmail/libsmdb Makefile.m4 smdb2.c contrib/sendmail/libsmutil Makefile.m4 cf.c lockfile.c safefile.c contrib/sendmail/mail.local Makefile.m4 README mail.local.8 mail.local.c contrib/sendmail/mailstats Makefile.m4 mailstats.8 mailstats.c contrib/sendmail/makemap Makefile.m4 makemap.8 makemap.c contrib/sendmail/praliases Makefile.m4 contrib/sendmail/rmail Makefile.m4 contrib/sendmail/smrsh Makefile.m4 README smrsh.8 smrsh.c contrib/sendmail/src Makefile.m4 README SECURITY TRACEFLAGS TUNING alias.c aliases.5 bf.c collect.c conf.c conf.h control.c daemon.c deliver.c domain.c envelope.c err.c headers.c macro.c mailq.1 main.c map.c mci.c milter.c mime.c parseaddr.c queue.c readcf.c recipient.c sasl.c savemail.c sendmail.8 sendmail.h sfsasl.c sm_resolve.c srvrsmtp.c stab.c stats.c sysexits.c tls.c trace.c udb.c usersmtp.c util.c version.c contrib/sendmail/test Makefile.m4 contrib/sendmail/vacation Makefile.m4 vacation.1 vacation.c lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_4) contrib/sendmail CACerts contrib/sendmail/cf/feature conncontrol.m4 greet_pause.m4 mtamark.m4 ratecontrol.m4 use_client_ptr.m4 contrib/sendmail/cf/ostype unicos.m4 unicosmk.m4 unicosmp.m4 contrib/sendmail/contrib socketmapClient.pl socketmapServer.pl contrib/sendmail/doc/op README contrib/sendmail/include/sm/os sm_os_unicos.h sm_os_unicosmk.h sm_os_unicosmp.h contrib/sendmail/libmilter/docs smfi_insheader.html smfi_opensocket.html smfi_progress.html smfi_quarantine.html smfi_setdbg.html smfi_setmlreply.html smfi_stop.html contrib/sendmail/src ratectrl.c Removed files: (Branch: RELENG_4) contrib/sendmail/cf/feature nodns.m4 contrib/sendmail/contrib oldbind.compat.c contrib/sendmail/libsm vsprintf.c Log: MFC: sendmail 8.13.1 import and related changes Revision Changes Path 1.1.1.1.2.1 +302 -0 src/contrib/sendmail/CACerts (new) 1.1.2.22 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.3.2.7 +1 -1 src/contrib/sendmail/KNOWNBUGS 1.1.1.2.6.6 +2 -2 src/contrib/sendmail/LICENSE 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/PGPKEYS 1.1.1.3.2.6 +1 -1 src/contrib/sendmail/README 1.1.1.3.2.18 +464 -1 src/contrib/sendmail/RELEASE_NOTES 1.1.1.3.2.18 +319 -107 src/contrib/sendmail/cf/README 1.1.1.2.6.6 +7 -2 src/contrib/sendmail/cf/cf/Makefile 1.1.1.3.2.4 +91 -3 src/contrib/sendmail/cf/cf/knecht.mc 1.1.1.1.2.11 +90 -14 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.1.2.5 +1 -1 src/contrib/sendmail/cf/cf/submit.mc 1.1.1.2.6.4 +6 -3 src/contrib/sendmail/cf/feature/access_db.m4 1.1.1.1.2.2 +3 -3 src/contrib/sendmail/cf/feature/authinfo.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/bitdomain.m4 1.1.1.1.2.1 +36 -0 src/contrib/sendmail/cf/feature/conncontrol.m4 (new) 1.1.1.1.2.5 +2 -3 src/contrib/sendmail/cf/feature/dnsbl.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/domaintable.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/genericstable.m4 1.1.1.1.2.1 +44 -0 src/contrib/sendmail/cf/feature/greet_pause.m4 (new) 1.1.1.1.2.4 +10 -3 src/contrib/sendmail/cf/feature/ldap_routing.m4 1.1.1.2.6.3 +5 -4 src/contrib/sendmail/cf/feature/local_lmtp.m4 1.1.1.2.6.3 +1 -1 src/contrib/sendmail/cf/feature/local_procmail.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/mailertable.m4 1.1.1.1.2.3 +5 -3 src/contrib/sendmail/cf/feature/msp.m4 1.1.1.1.2.1 +33 -0 src/contrib/sendmail/cf/feature/mtamark.m4 (new) 1.1.1.2.6.2 +0 -22 src/contrib/sendmail/cf/feature/nodns.m4 (dead) 1.1.1.1.2.1 +36 -0 src/contrib/sendmail/cf/feature/ratecontrol.m4 (new) 1.1.1.1.2.1 +21 -0 src/contrib/sendmail/cf/feature/use_client_ptr.m4 (new) 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/uucpdomain.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/virtusertable.m4 1.3.6.11 +4 -3 src/contrib/sendmail/cf/m4/cfhead.m4 1.1.1.4.2.16 +135 -40 src/contrib/sendmail/cf/m4/proto.m4 1.1.1.3.2.18 +2 -2 src/contrib/sendmail/cf/m4/version.m4 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/cf/mailer/usenet.m4 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/cf/ostype/unicos.m4 (new) 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/cf/ostype/unicosmk.m4 (new) 1.1.1.1.2.1 +27 -0 src/contrib/sendmail/cf/ostype/unicosmp.m4 (new) 1.1.1.1.2.4 +61 -12 src/contrib/sendmail/cf/sendmail.schema 1.1.1.1.2.6 +1 -1 src/contrib/sendmail/contrib/buildvirtuser 1.1.1.1.2.3 +42 -107 src/contrib/sendmail/contrib/cidrexpand 1.1.1.1.6.1 +0 -79 src/contrib/sendmail/contrib/oldbind.compat.c (dead) 1.1.1.1.2.5 +4 -11 src/contrib/sendmail/contrib/qtool.8 1.1.1.1.2.6 +1 -2 src/contrib/sendmail/contrib/qtool.pl 1.1.1.1.2.1 +67 -0 src/contrib/sendmail/contrib/socketmapClient.pl (new) 1.1.1.1.2.1 +98 -0 src/contrib/sendmail/contrib/socketmapServer.pl (new) 1.1.1.2.6.5 +2 -1 src/contrib/sendmail/doc/op/Makefile 1.1.1.1.2.1 +13 -0 src/contrib/sendmail/doc/op/README (new) 1.1.1.3.2.18 +604 -62 src/contrib/sendmail/doc/op/op.me 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/editmap/Makefile.m4 1.1.1.1.2.3 +3 -3 src/contrib/sendmail/editmap/editmap.8 1.1.1.1.2.9 +69 -19 src/contrib/sendmail/include/libmilter/mfapi.h 1.1.1.1.2.3 +21 -14 src/contrib/sendmail/include/libmilter/mfdef.h 1.1.1.1.2.9 +1 -5 src/contrib/sendmail/include/libmilter/milter.h 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/include/libsmdb/smdb.h 1.1.1.1.2.3 +2 -8 src/contrib/sendmail/include/sendmail/mailstats.h 1.1.1.1.2.6 +2 -1 src/contrib/sendmail/include/sendmail/sendmail.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/bdb.h 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/include/sm/cdefs.h 1.1.1.1.2.10 +105 -47 src/contrib/sendmail/include/sm/conf.h 1.1.1.1.2.3 +34 -10 src/contrib/sendmail/include/sm/config.h 1.1.1.1.2.2 +11 -17 src/contrib/sendmail/include/sm/debug.h 1.1.1.1.2.3 +4 -1 src/contrib/sendmail/include/sm/errstring.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/fdset.h 1.1.1.1.2.3 +4 -3 src/contrib/sendmail/include/sm/gen.h 1.1.1.1.2.4 +8 -8 src/contrib/sendmail/include/sm/io.h 1.1.1.1.2.3 +14 -26 src/contrib/sendmail/include/sm/ldap.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/os/sm_os_aix.h 1.1.1.1.2.1 +19 -0 src/contrib/sendmail/include/sm/os/sm_os_unicos.h (new) 1.1.1.1.2.1 +18 -0 src/contrib/sendmail/include/sm/os/sm_os_unicosmk.h (new) 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/include/sm/os/sm_os_unicosmp.h (new) 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/os/sm_os_unixware.h 1.1.1.1.2.2 +6 -2 src/contrib/sendmail/include/sm/rpool.h 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/include/sm/shm.h 1.1.1.1.2.2 +33 -55 src/contrib/sendmail/include/sm/string.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/varargs.h 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/libmilter/Makefile.m4 1.1.1.1.2.10 +13 -11 src/contrib/sendmail/libmilter/README 1.1.1.1.2.9 +129 -48 src/contrib/sendmail/libmilter/comm.c 1.1.1.1.2.3 +41 -2 src/contrib/sendmail/libmilter/docs/api.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/design.html 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libmilter/docs/index.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/installation.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/other.html 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libmilter/docs/overview.html 1.1.1.1.2.5 +11 -5 src/contrib/sendmail/libmilter/docs/sample.html 1.1.1.1.2.4 +4 -1 src/contrib/sendmail/libmilter/docs/smfi_addheader.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html 1.1.1.1.2.5 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_chgheader.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_getpriv.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_getsymval.html 1.1.1.1.2.1 +123 -0 src/contrib/sendmail/libmilter/docs/smfi_insheader.html (new) 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_main.html 1.1.1.1.2.1 +78 -0 src/contrib/sendmail/libmilter/docs/smfi_opensocket.html (new) 1.1.1.1.2.1 +68 -0 src/contrib/sendmail/libmilter/docs/smfi_progress.html (new) 1.1.1.1.2.1 +73 -0 src/contrib/sendmail/libmilter/docs/smfi_quarantine.html (new) 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_register.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_replacebody.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_setconn.html 1.1.1.1.2.1 +67 -0 src/contrib/sendmail/libmilter/docs/smfi_setdbg.html (new) 1.1.1.1.2.1 +147 -0 src/contrib/sendmail/libmilter/docs/smfi_setmlreply.html (new) 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_setpriv.html 1.1.1.1.2.7 +11 -0 src/contrib/sendmail/libmilter/docs/smfi_setreply.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_settimeout.html 1.1.1.1.2.1 +73 -0 src/contrib/sendmail/libmilter/docs/smfi_stop.html (new) 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_abort.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_body.html 1.1.1.1.2.3 +16 -1 src/contrib/sendmail/libmilter/docs/xxfi_close.html 1.1.1.1.2.4 +6 -1 src/contrib/sendmail/libmilter/docs/xxfi_connect.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_eoh.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_eom.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_header.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_helo.html 1.1.1.1.2.11 +97 -31 src/contrib/sendmail/libmilter/engine.c 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/libmilter/handler.c 1.1.1.1.2.12 +4 -4 src/contrib/sendmail/libmilter/libmilter.h 1.1.1.1.2.14 +48 -11 src/contrib/sendmail/libmilter/listener.c 1.1.1.1.2.11 +3 -4 src/contrib/sendmail/libmilter/main.c 1.1.1.1.2.9 +1 -1 src/contrib/sendmail/libmilter/signal.c 1.1.1.1.2.5 +82 -48 src/contrib/sendmail/libmilter/smfi.c 1.1.1.1.2.3 +2 -2 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.1.2.3 +4 -1 src/contrib/sendmail/libsm/README 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/assert.c 1.1.1.1.2.7 +7 -4 src/contrib/sendmail/libsm/clock.c 1.1.1.1.2.4 +7 -1 src/contrib/sendmail/libsm/config.c 1.1.1.1.2.2 +25 -2 src/contrib/sendmail/libsm/debug.c 1.1.1.1.2.3 +73 -2 src/contrib/sendmail/libsm/errstring.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/exc.c 1.1.1.1.2.3 +2 -2 src/contrib/sendmail/libsm/flags.c 1.1.1.1.2.6 +152 -39 src/contrib/sendmail/libsm/ldap.c 1.1.1.1.2.5 +1 -1 src/contrib/sendmail/libsm/local.h 1.1.1.1.2.5 +4 -4 src/contrib/sendmail/libsm/mbdb.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/refill.c 1.1.1.1.2.2 +30 -2 src/contrib/sendmail/libsm/rpool.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/shm.c 1.1.1.1.2.4 +2 -2 src/contrib/sendmail/libsm/smstdio.c 1.1.1.1.2.6 +2 -2 src/contrib/sendmail/libsm/stdio.c 1.1.1.1.2.2 +96 -2 src/contrib/sendmail/libsm/strdup.c 1.1.1.1.2.3 +2 -3 src/contrib/sendmail/libsm/t-shm.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/vasprintf.c 1.1.1.1.2.2 +0 -66 src/contrib/sendmail/libsm/vsprintf.c (dead) 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/libsmdb/Makefile.m4 1.1.1.1.2.10 +1 -1 src/contrib/sendmail/libsmdb/smdb2.c 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/libsmutil/Makefile.m4 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/libsmutil/cf.c 1.1.1.1.2.4 +1 -2 src/contrib/sendmail/libsmutil/lockfile.c 1.1.1.1.2.6 +30 -2 src/contrib/sendmail/libsmutil/safefile.c 1.1.1.2.6.6 +1 -1 src/contrib/sendmail/mail.local/Makefile.m4 1.1.1.2.6.3 +26 -1 src/contrib/sendmail/mail.local/README 1.5.6.6 +27 -4 src/contrib/sendmail/mail.local/mail.local.8 1.6.6.16 +182 -5 src/contrib/sendmail/mail.local/mail.local.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/mailstats/Makefile.m4 1.1.1.2.6.8 +5 -2 src/contrib/sendmail/mailstats/mailstats.8 1.5.2.8 +3 -19 src/contrib/sendmail/mailstats/mailstats.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/makemap/Makefile.m4 1.1.1.2.6.5 +9 -3 src/contrib/sendmail/makemap/makemap.8 1.3.6.7 +10 -10 src/contrib/sendmail/makemap/makemap.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/praliases/Makefile.m4 1.1.1.2.6.5 +1 -1 src/contrib/sendmail/rmail/Makefile.m4 1.1.1.2.6.5 +1 -1 src/contrib/sendmail/smrsh/Makefile.m4 1.1.1.2.6.5 +1 -1 src/contrib/sendmail/smrsh/README 1.3.6.8 +4 -4 src/contrib/sendmail/smrsh/smrsh.8 1.3.6.14 +1 -1 src/contrib/sendmail/smrsh/smrsh.c 1.1.1.3.2.8 +2 -2 src/contrib/sendmail/src/Makefile.m4 1.1.1.3.2.17 +32 -11 src/contrib/sendmail/src/README 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/src/SECURITY 1.1.1.2.6.8 +7 -9 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/src/TUNING 1.1.1.2.6.9 +2 -2 src/contrib/sendmail/src/alias.c 1.3.6.5 +14 -3 src/contrib/sendmail/src/aliases.5 1.1.1.1.2.6 +4 -3 src/contrib/sendmail/src/bf.c 1.1.1.4.2.14 +17 -14 src/contrib/sendmail/src/collect.c 1.5.2.17 +153 -125 src/contrib/sendmail/src/conf.c 1.6.2.14 +11 -1 src/contrib/sendmail/src/conf.h 1.1.1.2.2.10 +1 -1 src/contrib/sendmail/src/control.c 1.1.1.3.2.15 +71 -49 src/contrib/sendmail/src/daemon.c 1.1.1.3.2.17 +125 -84 src/contrib/sendmail/src/deliver.c 1.1.1.3.2.10 +16 -92 src/contrib/sendmail/src/domain.c 1.1.1.3.2.9 +15 -25 src/contrib/sendmail/src/envelope.c 1.3.6.8 +3 -3 src/contrib/sendmail/src/err.c 1.4.2.14 +164 -44 src/contrib/sendmail/src/headers.c 1.1.1.2.6.6 +11 -7 src/contrib/sendmail/src/macro.c 1.3.6.10 +17 -3 src/contrib/sendmail/src/mailq.1 1.1.1.3.2.19 +90 -101 src/contrib/sendmail/src/main.c 1.1.1.3.2.16 +730 -459 src/contrib/sendmail/src/map.c 1.3.6.13 +11 -7 src/contrib/sendmail/src/mci.c 1.1.1.1.2.19 +291 -112 src/contrib/sendmail/src/milter.c 1.1.1.3.2.8 +6 -6 src/contrib/sendmail/src/mime.c 1.1.1.2.6.17 +88 -90 src/contrib/sendmail/src/parseaddr.c 1.1.1.3.2.18 +184 -191 src/contrib/sendmail/src/queue.c 1.1.1.1.2.1 +534 -0 src/contrib/sendmail/src/ratectrl.c (new) 1.1.1.4.2.18 +126 -105 src/contrib/sendmail/src/readcf.c 1.1.1.3.2.11 +28 -17 src/contrib/sendmail/src/recipient.c 1.1.1.1.2.7 +2 -2 src/contrib/sendmail/src/sasl.c 1.4.2.11 +10 -5 src/contrib/sendmail/src/savemail.c 1.3.6.9 +20 -4 src/contrib/sendmail/src/sendmail.8 1.1.1.4.2.19 +116 -116 src/contrib/sendmail/src/sendmail.h 1.1.1.1.2.14 +8 -8 src/contrib/sendmail/src/sfsasl.c 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/src/sm_resolve.c 1.1.1.2.6.17 +423 -197 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.2.6.6 +7 -1 src/contrib/sendmail/src/stab.c 1.1.1.2.6.7 +1 -5 src/contrib/sendmail/src/stats.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/src/sysexits.c 1.1.1.1.2.7 +130 -12 src/contrib/sendmail/src/tls.c 1.1.1.2.6.6 +1 -1 src/contrib/sendmail/src/trace.c 1.1.1.3.2.8 +5 -5 src/contrib/sendmail/src/udb.c 1.1.1.3.2.14 +36 -27 src/contrib/sendmail/src/usersmtp.c 1.1.1.3.2.13 +162 -59 src/contrib/sendmail/src/util.c 1.1.1.3.2.20 +2 -2 src/contrib/sendmail/src/version.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/test/Makefile.m4 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/vacation/Makefile.m4 1.1.1.1.2.9 +19 -4 src/contrib/sendmail/vacation/vacation.1 1.1.1.1.2.11 +3 -18 src/contrib/sendmail/vacation/vacation.c 1.1.2.4 +1 -1 src/lib/libsm/Makefile 1.22.2.417 +2 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.15.2.15 +3 -3 src/usr.sbin/sendmail/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 9 01:42:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0020816A4CE; Mon, 9 Aug 2004 01:42:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D343E43D2F; Mon, 9 Aug 2004 01:42:32 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i791gWwN036335; Mon, 9 Aug 2004 01:42:32 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i791gWXM036334; Mon, 9 Aug 2004 01:42:32 GMT (envelope-from kensmith) Message-Id: <200408090142.i791gWXM036334@repoman.freebsd.org> From: Ken Smith Date: Mon, 9 Aug 2004 01:42:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts doFS.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 01:42:33 -0000 kensmith 2004-08-09 01:42:32 UTC FreeBSD src repository Modified files: release/scripts doFS.sh Log: I should have marked my previous commit with an XXX to indicate it's a workaround to a problem that shouldn't exist. Noticed by: ru Revision Changes Path 1.58 +1 -1 src/release/scripts/doFS.sh From owner-cvs-src@FreeBSD.ORG Mon Aug 9 03:13:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A965A16A4CE; Mon, 9 Aug 2004 03:13:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87A3843D2D; Mon, 9 Aug 2004 03:13:57 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i793DvZ4040383; Mon, 9 Aug 2004 03:13:57 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i793DvoI040382; Mon, 9 Aug 2004 03:13:57 GMT (envelope-from yongari) Message-Id: <200408090313.i793DvoI040382@repoman.freebsd.org> From: Pyun YongHyeon Date: Mon, 9 Aug 2004 03:13:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ifconfig ifconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:13:57 -0000 yongari 2004-08-09 03:13:57 UTC FreeBSD src repository Modified files: sbin/ifconfig ifconfig.c Log: Fix long standing mediaopt setting bugs seen on sparc64. Though the bug exists in little-endian machine, it was not triggered due to the difference of memory ordering between little/big endian machines. Instead of relying on possibly modified value during function invokcations, use saved copy of ifr.ifr_addr.sa_family. Also add a comment at the top of ifconfig.c clarifying the issue so the bug won't re-appear. Approved by: jake Reviewed by: yar Revision Changes Path 1.106 +12 -6 src/sbin/ifconfig/ifconfig.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 04:27:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F2C16A4CE; Mon, 9 Aug 2004 04:27:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41A9743D2F; Mon, 9 Aug 2004 04:27:59 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i794RxNC042413; Mon, 9 Aug 2004 04:27:59 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i794Rxa9042412; Mon, 9 Aug 2004 04:27:59 GMT (envelope-from jmg) Message-Id: <200408090427.i794Rxa9042412@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 04:27:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 04:27:59 -0000 jmg 2004-08-09 04:27:59 UTC FreeBSD src repository Modified files: usr.sbin/kbdcontrol kbdcontrol.c Log: fix bug which prevented programming function keys that were exactly 16 characters long.. strcpy was coping over the length... PR: 52960 Submitted by: Dmitry Sivachenko MFC after: 1 week Revision Changes Path 1.48 +1 -1 src/usr.sbin/kbdcontrol/kbdcontrol.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 05:12:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC22F16A4CE; Mon, 9 Aug 2004 05:12:32 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EBE43D31; Mon, 9 Aug 2004 05:12:32 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 212B150B81; Mon, 9 Aug 2004 14:12:29 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id 6320450BBD; Mon, 9 Aug 2004 14:12:27 +0900 (JST) Date: Mon, 09 Aug 2004 14:12:27 +0900 Message-ID: <7mllgolwsk.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Hartmut Brandt In-Reply-To: <200408031856.i73IuV8c082723@repoman.freebsd.org> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 05:12:33 -0000 At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), Hartmut Brandt wrote: > Log: > Put variable assignments from the command line into the MAKEFLAGS > variable as required by POSIX. This causes such variables to be > pushed into all sub-makes called by the make (except when the MAKEFLAGS > variable is explicitely changed in the sub-make's environment). > This makes them also mostly un-overrideable in sub-makes except on the > sub-make's command line. Therefor specifying 'make CC=icc' will cause > icc to be used as C compiler in all sub-makes no matter what the Makefiles > itself try to do to the CC variable. > > This patch also corrects the handling of the MFLAGS variable. MFLAGS > contains all the command line flags but not the command line variable > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). > Makefiles can use MFLAGS for their own purposes given that they do not > except MFLAGS to be undefined at the beginning and that they don't evaluate > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, > but it is unfortunately heavily used by the X makefiles. I'm using MAKEOBJDIRPREFIX as a make argument to build the world. Please help about new make. Firstly, my host environment has the latest make(1), and it is used to start buildworld as: # cd /work/HEAD/src # make MAKEOBJDIRPREFIX=/work/HEAD/obj buildworld In this situation, ${BMAKE} in src/Makefile.inc1 includes this assignment: > MAKEFLAGS="-m /work/HEAD/src/tools/build/mk -m /work/HEAD/src/share/mk MAKEOBJDIRPREFIX=/work/HEAD/obj" But before your modification, this was: > MAKEFLAGS="-m /work/HEAD/src/tools/build/mk -m /work/HEAD/src/share/mk " Then now, stage 1.1 of buildworld is failing because installation of libegacy.a was changed from: > sh /work/HEAD/src/tools/install.sh -C -o root -g wheel -m 444 libegacy.a /work/HEAD/obj/work/HEAD/src/i386/legacy/usr/lib to: > sh /work/HEAD/src/tools/install.sh -C -o root -g wheel -m 444 libegacy.a /work/HEAD/obj/legacy/usr/lib which is destination directory was changed by passing $MAKEOBJDIRPREFIX to submake. I don't know how Makefile.inc1 should be fixed, and how this affects to the upgrading path for old environment users. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Mon Aug 9 05:46:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD4D016A4CE; Mon, 9 Aug 2004 05:46:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0E0843D2F; Mon, 9 Aug 2004 05:46:46 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i795kkZh044435; Mon, 9 Aug 2004 05:46:46 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i795kkYo044434; Mon, 9 Aug 2004 05:46:46 GMT (envelope-from jmg) Message-Id: <200408090546.i795kkYo044434@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 05:46:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 05:46:46 -0000 jmg 2004-08-09 05:46:46 UTC FreeBSD src repository Modified files: sys/kern kern_sig.c Log: add option to automaticly mark core dumps with the nodump flag PR: 57065 Submitted by: Walter C. Pelissero Revision Changes Path 1.288 +6 -0 src/sys/kern/kern_sig.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 06:01:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96AE716A4CE; Mon, 9 Aug 2004 06:01:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ABBD43D41; Mon, 9 Aug 2004 06:01:46 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7961kvY044874; Mon, 9 Aug 2004 06:01:46 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7961kZq044873; Mon, 9 Aug 2004 06:01:46 GMT (envelope-from alc) Message-Id: <200408090601.i7961kZq044873@repoman.freebsd.org> From: Alan Cox Date: Mon, 9 Aug 2004 06:01:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:01:46 -0000 alc 2004-08-09 06:01:46 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: Make two changes to vm_fault(). 1. Retain the map lock until after the calls to pmap_enter() and vm_fault_prefault(). 2. Remove a stale comment. Submitted by: tegge@ Revision Changes Path 1.189 +6 -11 src/sys/vm/vm_fault.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 06:04:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2905D16A4CE; Mon, 9 Aug 2004 06:04:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DA1343D2D; Mon, 9 Aug 2004 06:04:01 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7964011044933; Mon, 9 Aug 2004 06:04:00 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79640u3044930; Mon, 9 Aug 2004 06:04:00 GMT (envelope-from phk) Message-Id: <200408090604.i79640u3044930@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 9 Aug 2004 06:04:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_vol_ffs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:04:01 -0000 phk 2004-08-09 06:04:00 UTC FreeBSD src repository Modified files: sys/geom geom_vol_ffs.c Log: Too many versions. Spotted by: pjd Revision Changes Path 1.13 +0 -1 src/sys/geom/geom_vol_ffs.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 06:18:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B46716A4CE; Mon, 9 Aug 2004 06:18:22 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCEC743D1F; Mon, 9 Aug 2004 06:18:21 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i796IJbk053454; Mon, 9 Aug 2004 08:18:19 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i796IIfC053453; Mon, 9 Aug 2004 08:18:18 +0200 (CEST) (envelope-from k) Date: Mon, 9 Aug 2004 08:18:17 +0200 From: Johan Karlsson To: Jun Kuriyama Message-ID: <20040809061817.GA53369@numeri.campus.luth.se> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> <7mllgolwsk.wl@black.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7mllgolwsk.wl@black.imgsrc.co.jp> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:18:22 -0000 On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), > Hartmut Brandt wrote: > > Log: > > Put variable assignments from the command line into the MAKEFLAGS > > variable as required by POSIX. This causes such variables to be > > pushed into all sub-makes called by the make (except when the MAKEFLAGS > > variable is explicitely changed in the sub-make's environment). > > This makes them also mostly un-overrideable in sub-makes except on the > > sub-make's command line. Therefor specifying 'make CC=icc' will cause > > icc to be used as C compiler in all sub-makes no matter what the Makefiles > > itself try to do to the CC variable. > > > > This patch also corrects the handling of the MFLAGS variable. MFLAGS > > contains all the command line flags but not the command line variable > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). > > Makefiles can use MFLAGS for their own purposes given that they do not > > except MFLAGS to be undefined at the beginning and that they don't evaluate > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, > > but it is unfortunately heavily used by the X makefiles. > > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. Don't. According to make(1) it is an environment variable. > Please help about new make. > > Firstly, my host environment has the latest make(1), and it is used to > start buildworld as: > > # cd /work/HEAD/src > # make MAKEOBJDIRPREFIX=/work/HEAD/obj buildworld do something like # cd /work/HEAD/src # MAKEOBJDIRPREFIX=/work/HEAD/obj make buildworld or # cd /work/HEAD/src # env MAKEOBJDIRPREFIX=/work/HEAD/obj make buildworld depending on your shell. /Johan K -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 06:45:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1268416A509; Mon, 9 Aug 2004 06:45:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5796F43D54; Mon, 9 Aug 2004 06:45:21 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i796jLR5046035; Mon, 9 Aug 2004 06:45:21 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i796jLUo046034; Mon, 9 Aug 2004 06:45:21 GMT (envelope-from jmg) Message-Id: <200408090645.i796jLUo046034@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 06:45:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:45:27 -0000 jmg 2004-08-09 06:45:21 UTC FreeBSD src repository Modified files: sys/sys mdioctl.h sys/modules/md Makefile sbin/mdconfig mdconfig.c Log: change the name of the md module, to g_md, introduce a define with the name MD_MODNAME, and make mdconfig use this new define... Revision Changes Path 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c 1.13 +1 -1 src/sys/modules/md/Makefile 1.16 +1 -0 src/sys/sys/mdioctl.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 06:47:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A3916A4CE; Mon, 9 Aug 2004 06:47:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E026B43D41; Mon, 9 Aug 2004 06:47:53 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i796lrAN046164; Mon, 9 Aug 2004 06:47:53 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i796lrTM046163; Mon, 9 Aug 2004 06:47:53 GMT (envelope-from jmg) Message-Id: <200408090647.i796lrTM046163@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 06:47:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:47:54 -0000 jmg 2004-08-09 06:47:53 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: make sure that ioctl's to ata use the proper cmd IOCATA... Reviewed by: sos Revision Changes Path 1.219 +3 -0 src/sys/dev/ata/ata-all.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 08:14:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7EA116A4CE; Mon, 9 Aug 2004 08:14:34 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF5343D2F; Mon, 9 Aug 2004 08:14:33 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 4397950BD6; Mon, 9 Aug 2004 17:14:30 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id 1C26F50BEB; Mon, 9 Aug 2004 17:14:28 +0900 (JST) Date: Mon, 09 Aug 2004 17:14:28 +0900 Message-ID: <7mhdrclod7.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Johan Karlsson In-Reply-To: <20040809061817.GA53369@numeri.campus.luth.se> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:14:35 -0000 At Mon, 9 Aug 2004 08:18:17 +0200, Johan Karlsson wrote: > > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. > > Don't. > According to make(1) it is an environment variable. Thanks, it works. Sorry for my misusing of variable... -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-src@FreeBSD.ORG Mon Aug 9 08:45:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36E9A16A4CE; Mon, 9 Aug 2004 08:45:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FA0043D49; Mon, 9 Aug 2004 08:45:43 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798jh88049867; Mon, 9 Aug 2004 08:45:43 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798jhgY049866; Mon, 9 Aug 2004 08:45:43 GMT (envelope-from obrien) Message-Id: <200408090845.i798jhgY049866@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 08:45:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: ZOULAS Subject: cvs commit: src/contrib/file - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:45:43 -0000 obrien 2004-08-09 08:45:42 UTC FreeBSD src repository src/contrib/file - Imported sources Update of /home/ncvs/src/contrib/file In directory repoman.freebsd.org:/tmp/cvs-serv49789 Log Message: Virgin import of Christos Zoulas's FILE 4.10. *- file is now broken into a library containing and processing the magic and a consumer binary. Status: Vendor Tag: ZOULAS Release Tags: file_4_10 U src/contrib/file/.cvsignore N src/contrib/file/ChangeLog U src/contrib/file/LEGAL.NOTICE U src/contrib/file/MAINT U src/contrib/file/Makefile.am U src/contrib/file/Makefile.in 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/config.h.in U src/contrib/file/configure U src/contrib/file/configure.in U src/contrib/file/install-sh U src/contrib/file/missing U src/contrib/file/mkinstalldirs U src/contrib/file/stamp-h.in U src/contrib/file/apprentice.c N src/contrib/file/apptype.c U src/contrib/file/ascmagic.c U src/contrib/file/compress.c U src/contrib/file/file.c U src/contrib/file/file.h N src/contrib/file/funcs.c U src/contrib/file/fsmagic.c U src/contrib/file/is_tar.c N src/contrib/file/magic.c N src/contrib/file/magic.h 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/tar.h N src/contrib/file/test.c U src/contrib/file/Header U src/contrib/file/Localstuff U src/contrib/file/magic.mime U src/contrib/file/magic2mime U src/contrib/file/file.man N src/contrib/file/libmagic.man U src/contrib/file/magic.man U src/contrib/file/Magdir/adventure U src/contrib/file/Magdir/acorn U src/contrib/file/Magdir/adi U src/contrib/file/Magdir/clipper 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 N src/contrib/file/Magdir/bFLT U src/contrib/file/Magdir/blender U src/contrib/file/Magdir/blit N src/contrib/file/Magdir/bout U src/contrib/file/Magdir/bsdi U src/contrib/file/Magdir/c-lang N src/contrib/file/Magdir/c64 N src/contrib/file/Magdir/cad U src/contrib/file/Magdir/cddb U src/contrib/file/Magdir/chi N src/contrib/file/Magdir/chord U src/contrib/file/Magdir/cisco U src/contrib/file/Magdir/citrus U src/contrib/file/Magdir/claris U src/contrib/file/Magdir/commands N src/contrib/file/Magdir/communications U src/contrib/file/Magdir/compress U src/contrib/file/Magdir/console U src/contrib/file/Magdir/convex U src/contrib/file/Magdir/ctags N src/contrib/file/Magdir/dact 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/elf U src/contrib/file/Magdir/encore U src/contrib/file/Magdir/epoc N src/contrib/file/Magdir/fcs 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 N src/contrib/file/Magdir/games N src/contrib/file/Magdir/gcc N src/contrib/file/Magdir/geos 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/hdf 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/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/lex U src/contrib/file/Magdir/lif 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 N src/contrib/file/Magdir/matroska U src/contrib/file/Magdir/mcrypt U src/contrib/file/Magdir/mime U src/contrib/file/Magdir/mips U src/contrib/file/Magdir/mirage N src/contrib/file/Magdir/misctools 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/netscape U src/contrib/file/Magdir/news U src/contrib/file/Magdir/nitpicker N src/contrib/file/Magdir/ocaml 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 N src/contrib/file/Magdir/plan9 U src/contrib/file/Magdir/plus5 U src/contrib/file/Magdir/printer U src/contrib/file/Magdir/project U src/contrib/file/Magdir/psdbms N src/contrib/file/Magdir/psion U src/contrib/file/Magdir/pulsar U src/contrib/file/Magdir/pyramid U src/contrib/file/Magdir/python N src/contrib/file/Magdir/revision 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/sgi U src/contrib/file/Magdir/sgml U src/contrib/file/Magdir/sharc N src/contrib/file/Magdir/sinclair U src/contrib/file/Magdir/sketch U src/contrib/file/Magdir/smalltalk U src/contrib/file/Magdir/sniffer U src/contrib/file/Magdir/softquad N src/contrib/file/Magdir/spec U src/contrib/file/Magdir/spectrum U src/contrib/file/Magdir/sql U src/contrib/file/Magdir/sun 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/troff U src/contrib/file/Magdir/timezone 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 N src/contrib/file/Magdir/varied.script 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 N src/contrib/file/Magdir/wordprocessors U src/contrib/file/Magdir/xdelta U src/contrib/file/Magdir/xenix N src/contrib/file/Magdir/xwindows U src/contrib/file/Magdir/zilog U src/contrib/file/Magdir/zyxel No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Mon Aug 9 08:48:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4FB216A4CF; Mon, 9 Aug 2004 08:48:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A80F343D48; Mon, 9 Aug 2004 08:48:28 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798mSbF049968; Mon, 9 Aug 2004 08:48:28 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798mSZ0049967; Mon, 9 Aug 2004 08:48:28 GMT (envelope-from obrien) Message-Id: <200408090848.i798mSZ0049967@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 08:48:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.libnames.mk src/lib/libmagic Makefile config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:48:29 -0000 obrien 2004-08-09 08:48:28 UTC FreeBSD src repository Modified files: share/mk bsd.libnames.mk Added files: lib/libmagic Makefile config.h Log: Bmake the library containing and processing the magic. Revision Changes Path 1.1 +59 -0 src/lib/libmagic/Makefile (new) 1.1 +215 -0 src/lib/libmagic/config.h (new) 1.84 +2 -0 src/share/mk/bsd.libnames.mk From owner-cvs-src@FreeBSD.ORG Mon Aug 9 08:49:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47D0616A4CE; Mon, 9 Aug 2004 08:49:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD2743D2F; Mon, 9 Aug 2004 08:49:50 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798nocL050038; Mon, 9 Aug 2004 08:49:50 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798noIm050037; Mon, 9 Aug 2004 08:49:50 GMT (envelope-from obrien) Message-Id: <200408090849.i798noIm050037@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 08:49:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/file Makefile config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:49:50 -0000 obrien 2004-08-09 08:49:50 UTC FreeBSD src repository Modified files: usr.bin/file Makefile config.h Log: The file consumer binary, which depends on the libmagic. Revision Changes Path 1.27 +7 -37 src/usr.bin/file/Makefile 1.8 +132 -59 src/usr.bin/file/config.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:22:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CEE816A4CE; Mon, 9 Aug 2004 10:22:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F4B743D45; Mon, 9 Aug 2004 10:22:53 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79AMrvM053000; Mon, 9 Aug 2004 10:22:53 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79AMrlG052999; Mon, 9 Aug 2004 10:22:53 GMT (envelope-from leeym) Message-Id: <200408091022.i79AMrlG052999@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 9 Aug 2004 10:22:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:22:53 -0000 leeym 2004-08-09 10:22:52 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: add myself. :) Revision Changes Path 1.126 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:28:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A5EC16A4CF for ; Mon, 9 Aug 2004 10:28:30 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC80243D2D for ; Mon, 9 Aug 2004 10:28:29 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i79ANkx4068949 for cvs-src@FreeBSD.org.checked; (8.12.8/vak/2.1) Mon, 9 Aug 2004 14:23:46 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i79AEcrI061475; (8.12.8/vak/2.1) Mon, 9 Aug 2004 14:14:38 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <41174EC2.10007@cronyx.ru> Date: Mon, 09 Aug 2004 14:15:30 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nicolas Souchu References: <200408072114.i77LEorM076643@repoman.freebsd.org> In-Reply-To: <200408072114.i77LEorM076643@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:28:30 -0000 What is correct order in this file, by first name or by last name? rik Nicolas Souchu wrote: >nsouch 2004-08-07 21:14:50 UTC > > FreeBSD src repository > > Modified files: > usr.bin/calendar/calendars calendar.freebsd > Log: > 10 born in France now! > > Revision Changes Path > 1.124 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd > > > > From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:32:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D04DF16A4CE; Mon, 9 Aug 2004 10:32:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B36A343D41; Mon, 9 Aug 2004 10:32:16 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79AWGGs053256; Mon, 9 Aug 2004 10:32:16 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79AWGPk053255; Mon, 9 Aug 2004 10:32:16 GMT (envelope-from obrien) Message-Id: <200408091032.i79AWGPk053255@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 10:32:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libmagic Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:32:17 -0000 obrien 2004-08-09 10:32:16 UTC FreeBSD src repository Modified files: lib/libmagic Makefile Log: Uncomment the real paths and remove the local debugging paths. Noticed by: ru (who's faster than 'make world' on my stock src test machine) Revision Changes Path 1.2 +1 -2 src/lib/libmagic/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:36:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2783916A4CE; Mon, 9 Aug 2004 10:36:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ABDA43D3F; Mon, 9 Aug 2004 10:36:07 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Aa6lM053394; Mon, 9 Aug 2004 10:36:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Aa6fi053393; Mon, 9 Aug 2004 10:36:06 GMT (envelope-from ru) Message-Id: <200408091036.i79Aa6fi053393@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 9 Aug 2004 10:36:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:36:07 -0000 ru 2004-08-09 10:36:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) . Makefile.inc1 Log: Do not run "make hierarchy" when installing kernel but *not* installing modules, allowing in particular /usr to be mounted read-only. This change won't be MFS'ed, because semantics of installing modules in 5.x is slightly different from 4.x. PR: 68150 Revision Changes Path 1.141.2.68 +3 -0 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:42:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 829D116A4CE; Mon, 9 Aug 2004 10:42:15 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB03843D45; Mon, 9 Aug 2004 10:42:14 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i79Ag5to034901 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 13:42:06 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i79Ag6D2051991; Mon, 9 Aug 2004 13:42:06 +0300 (EEST) (envelope-from ru) Date: Mon, 9 Aug 2004 13:42:06 +0300 From: Ruslan Ermilov To: Roman Kurakin Message-ID: <20040809104206.GD51676@ip.net.ua> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DrWhICOqskFTAXiy" Content-Disposition: inline In-Reply-To: <41174EC2.10007@cronyx.ru> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.ORG cc: Nicolas Souchu cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:42:15 -0000 --DrWhICOqskFTAXiy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 02:15:30PM +0400, Roman Kurakin wrote: > What is correct order in this file, by first name or by last name? >=20 The correct order here is: - by month, - by day, - by year - in case there's still a full match, by freefall login name. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --DrWhICOqskFTAXiy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF1T+qRfpzJluFF4RAhZJAJ0WUnlS8rhilfDyx4H/Aw7Z+yd2VACgkQML fc7Lb60Y/Mng2oSSBYlGa2w= =OvsZ -----END PGP SIGNATURE----- --DrWhICOqskFTAXiy-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:44:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB79616A4CE; Mon, 9 Aug 2004 10:44:22 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D89943D54; Mon, 9 Aug 2004 10:44:22 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i79AiKTA003528; Mon, 9 Aug 2004 12:44:20 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i79AiKDb003527; Mon, 9 Aug 2004 12:44:20 +0200 (CEST) (envelope-from k) Date: Mon, 9 Aug 2004 12:44:19 +0200 From: Johan Karlsson To: "David E. O'Brien" Message-ID: <20040809104419.GA55299@numeri.campus.luth.se> References: <200408091032.i79AWGPk053255@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408091032.i79AWGPk053255@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libmagic Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:44:22 -0000 Hi I belive the same thing is needed for usr.bin/file. /Johan K On Mon, Aug 09, 2004 at 10:32 (+0000), David E. O'Brien wrote: > obrien 2004-08-09 10:32:16 UTC > > FreeBSD src repository > > Modified files: > lib/libmagic Makefile > Log: > Uncomment the real paths and remove the local debugging paths. > > Noticed by: ru (who's faster than 'make world' on my stock src test machine) > > Revision Changes Path > 1.2 +1 -2 src/lib/libmagic/Makefile -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:47:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85FE716A4CE; Mon, 9 Aug 2004 10:47:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689CE43D41; Mon, 9 Aug 2004 10:47:50 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79AloD9053661; Mon, 9 Aug 2004 10:47:50 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Alosa053660; Mon, 9 Aug 2004 10:47:50 GMT (envelope-from obrien) Message-Id: <200408091047.i79Alosa053660@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 10:47:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/file Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:47:50 -0000 obrien 2004-08-09 10:47:50 UTC FreeBSD src repository Modified files: usr.bin/file Makefile Log: Uncomment the real paths and remove the local debugging paths. Noticed by: ru (who's faster than 'make world' on my stock src test machine) Revision Changes Path 1.28 +1 -2 src/usr.bin/file/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:51:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B039B16A4D0; Mon, 9 Aug 2004 10:51:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81F9343D39; Mon, 9 Aug 2004 10:51:01 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ap1ja053825; Mon, 9 Aug 2004 10:51:01 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ap1k8053824; Mon, 9 Aug 2004 10:51:01 GMT (envelope-from obrien) Message-Id: <200408091051.i79Ap1k8053824@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 10:51:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:51:01 -0000 obrien 2004-08-09 10:51:01 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: The file(1) related build-tool moved to libmagic. Revision Changes Path 1.433 +1 -1 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 10:54:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E8DB16A4CE; Mon, 9 Aug 2004 10:54:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 311E443D1D; Mon, 9 Aug 2004 10:54:06 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79As6Eg053926; Mon, 9 Aug 2004 10:54:06 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79As63F053925; Mon, 9 Aug 2004 10:54:06 GMT (envelope-from harti) Message-Id: <200408091054.i79As63F053925@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 10:54:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:54:06 -0000 harti 2004-08-09 10:54:06 UTC FreeBSD src repository Modified files: share/mk bsd.subdir.mk sys.mk Log: Use the '+' flag to make make recurse into sub-directories even when given -n. For POLA reasons this behaviour is switched on only when at least two -n flags are given to make. One -n flag keeps the old behaviour of showing the shell command that would recurse into the sub-directories. Discussed with: ru Revision Changes Path 1.45 +5 -5 src/share/mk/bsd.subdir.mk 1.80 +6 -0 src/share/mk/sys.mk From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:02:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E0716A4CE; Mon, 9 Aug 2004 11:02:46 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB3B043D45; Mon, 9 Aug 2004 11:02:46 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i79B2k0C088264; Mon, 9 Aug 2004 04:02:46 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i79B2kM3088263; Mon, 9 Aug 2004 04:02:46 -0700 (PDT) (envelope-from obrien) Date: Mon, 9 Aug 2004 04:02:46 -0700 From: "David O'Brien" To: Johan Karlsson Message-ID: <20040809110246.GB70420@dragon.nuxi.com> References: <200408091032.i79AWGPk053255@repoman.freebsd.org> <20040809104419.GA55299@numeri.campus.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809104419.GA55299@numeri.campus.luth.se> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libmagic Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:02:47 -0000 On Mon, Aug 09, 2004 at 12:44:19PM +0200, Johan Karlsson wrote: > Hi > I belive the same thing is needed for usr.bin/file. > /Johan K > > On Mon, Aug 09, 2004 at 10:32 (+0000), David E. O'Brien wrote: > > obrien 2004-08-09 10:32:16 UTC > > > > FreeBSD src repository > > > > Modified files: > > lib/libmagic Makefile > > Log: > > Uncomment the real paths and remove the local debugging paths. > > > > Noticed by: ru (who's faster than 'make world' on my stock src test machine) > > > > Revision Changes Path > > 1.2 +1 -2 src/lib/libmagic/Makefile bash_completion decided to "correct" my spelling of the path to the usr.bin/file Makefile so it didn't get committed at the same time. :-( -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:05:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F03116A4CE; Mon, 9 Aug 2004 11:05:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 729CA43D5E; Mon, 9 Aug 2004 11:05:09 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79B59wf054312; Mon, 9 Aug 2004 11:05:09 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79B5936054311; Mon, 9 Aug 2004 11:05:09 GMT (envelope-from obrien) Message-Id: <200408091105.i79B5936054311@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 11:05:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/file Makefile src/lib/libmagic Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:05:09 -0000 obrien 2004-08-09 11:05:09 UTC FreeBSD src repository Modified files: usr.bin/file Makefile lib/libmagic Makefile Log: Don't try to programatically support running file(1) w/in /usr/obj or other non-standard install path. Agreed with: ru Revision Changes Path 1.3 +1 -1 src/lib/libmagic/Makefile 1.29 +1 -1 src/usr.bin/file/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:14:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7665A16A4CE; Mon, 9 Aug 2004 11:14:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57BD843D45; Mon, 9 Aug 2004 11:14:25 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BEPpp054672; Mon, 9 Aug 2004 11:14:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BEPhN054671; Mon, 9 Aug 2004 11:14:25 GMT (envelope-from pjd) Message-Id: <200408091114.i79BEPhN054671@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Aug 2004 11:14:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/label g_label.c src/sys/geom/concat g_concat.c src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:14:25 -0000 pjd 2004-08-09 11:14:25 UTC FreeBSD src repository Modified files: sys/geom/label g_label.c sys/geom/concat g_concat.c sys/geom/stripe g_stripe.c Log: Do not use g_wither_geom(9). I doesn't work in the way which is expected here anymore (after g_wither_washer() was introduced), i.e. geom and consumer will not be immediately destroyed if possible. Revision Changes Path 1.17 +3 -2 src/sys/geom/concat/g_concat.c 1.7 +8 -12 src/sys/geom/label/g_label.c 1.13 +3 -2 src/sys/geom/stripe/g_stripe.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:18:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28E1616A4CF; Mon, 9 Aug 2004 11:18:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BCF643D1F; Mon, 9 Aug 2004 11:18:00 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BHxW4054862; Mon, 9 Aug 2004 11:17:59 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BHxvF054861; Mon, 9 Aug 2004 11:17:59 GMT (envelope-from rik) Message-Id: <200408091117.i79BHxvF054861@repoman.freebsd.org> From: Roman Kurakin Date: Mon, 9 Aug 2004 11:17:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:18:00 -0000 rik 2004-08-09 11:17:59 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself here. Increase USSR count ;-) Revision Changes Path 1.127 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:29:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAF7416A4CE; Mon, 9 Aug 2004 11:29:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B150F43D46; Mon, 9 Aug 2004 11:29:42 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BTgDh055336; Mon, 9 Aug 2004 11:29:42 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BTg2C055335; Mon, 9 Aug 2004 11:29:42 GMT (envelope-from pjd) Message-Id: <200408091129.i79BTg2C055335@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Aug 2004 11:29:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/geom/class/concat gconcat.8 geom_concat.c src/sbin/geom/class/stripe geom_stripe.c gstripe.8 src/sys/geom/concat g_concat.c g_concat.h src/sys/geom/mirror g_mirror.c g_mirror.h src/sys/geom/stripe g_stripe.c g_stripe.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:29:42 -0000 pjd 2004-08-09 11:29:42 UTC FreeBSD src repository Modified files: sbin/geom/class/concat gconcat.8 geom_concat.c sbin/geom/class/stripe geom_stripe.c gstripe.8 sys/geom/concat g_concat.c g_concat.h sys/geom/mirror g_mirror.c g_mirror.h sys/geom/stripe g_stripe.c g_stripe.h Log: - Introduce option for hardcoding providers' names into metadata. It allows to fix problems when last provider's sector is shared between few providers. - Bump version number for CONCAT and STRIPE and add code for backward compatibility. - Do not bump version number of MIRROR, as it wasn't officially introduced yet. Even if someone started to play with it, there is no big deal, because wrong MD5 sum of metadata will deny those providers. - Update manual pages. - Add version history to g_(stripe|concat).h files. Revision Changes Path 1.11 +15 -13 src/sbin/geom/class/concat/gconcat.8 1.5 +27 -8 src/sbin/geom/class/concat/geom_concat.c 1.6 +22 -7 src/sbin/geom/class/stripe/geom_stripe.c 1.15 +15 -13 src/sbin/geom/class/stripe/gstripe.8 1.18 +10 -0 src/sys/geom/concat/g_concat.c 1.10 +10 -1 src/sys/geom/concat/g_concat.h 1.15 +10 -0 src/sys/geom/mirror/g_mirror.c 1.5 +10 -5 src/sys/geom/mirror/g_mirror.h 1.14 +10 -0 src/sys/geom/stripe/g_stripe.c 1.5 +10 -1 src/sys/geom/stripe/g_stripe.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:30:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0C9016A4CE; Mon, 9 Aug 2004 11:30:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A288B43D39; Mon, 9 Aug 2004 11:30:36 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BUaPq055428; Mon, 9 Aug 2004 11:30:36 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BUawa055427; Mon, 9 Aug 2004 11:30:36 GMT (envelope-from obrien) Message-Id: <200408091130.i79BUawa055427@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 11:30:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:30:36 -0000 obrien 2004-08-09 11:30:36 UTC FreeBSD src repository Modified files: lib Makefile Log: Turn on the magic. Revision Changes Path 1.189 +2 -2 src/lib/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:31:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B27E616A4CE; Mon, 9 Aug 2004 11:31:39 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D0243D31; Mon, 9 Aug 2004 11:31:39 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id A705AACAFB; Mon, 9 Aug 2004 13:31:37 +0200 (CEST) Date: Mon, 9 Aug 2004 13:31:37 +0200 From: Pawel Jakub Dawidek To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040809113137.GK628@darkness.comp.waw.pl> References: <200408091129.i79BTg2C055335@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DozTQjXnjm3C9Xhk" Content-Disposition: inline In-Reply-To: <200408091129.i79BTg2C055335@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 Subject: Re: cvs commit: src/sbin/geom/class/concat gconcat.8 geom_concat.c src/sbin/geom/class/stripe geom_stripe.c gstripe.8 src/sys/geom/concat g_concat.c g_concat.h src/sys/geom/mirror g_mirror.c g_mirror.h src/sys/geom/stripe g_stripe.c g_stripe.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:31:40 -0000 --DozTQjXnjm3C9Xhk Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 11:29:42AM +0000, Pawel Jakub Dawidek wrote: +> pjd 2004-08-09 11:29:42 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sbin/geom/class/concat gconcat.8 geom_concat.c=20 +> sbin/geom/class/stripe geom_stripe.c gstripe.8=20 +> sys/geom/concat g_concat.c g_concat.h=20 +> sys/geom/mirror g_mirror.c g_mirror.h=20 +> sys/geom/stripe g_stripe.c g_stripe.h=20 +> Log: +> - Introduce option for hardcoding providers' names into metadata. +> It allows to fix problems when last provider's sector is shared betw= een few +> providers. +> - Bump version number for CONCAT and STRIPE and add code for backward +> compatibility. +> - Do not bump version number of MIRROR, as it wasn't officially introd= uced yet. +> Even if someone started to play with it, there is no big deal, becau= se +> wrong MD5 sum of metadata will deny those providers. +> - Update manual pages. +> - Add version history to g_(stripe|concat).h files. Forgot to note, that this commit was: Inspired by: Sam Lawrance --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --DozTQjXnjm3C9Xhk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF2CZForvXbEpPzQRArrnAJ4pBJ+DsfRblBD4WQv3UFqCTe0iFACg9buf YVCUI/E4phSR0oNEofaect0= =5XF0 -----END PGP SIGNATURE----- --DozTQjXnjm3C9Xhk-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:37:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E615216A4CE; Mon, 9 Aug 2004 11:37:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7C8143D3F; Mon, 9 Aug 2004 11:37:14 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BbEJu055714; Mon, 9 Aug 2004 11:37:14 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BbEGm055713; Mon, 9 Aug 2004 11:37:14 GMT (envelope-from pjd) Message-Id: <200408091137.i79BbEGm055713@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Aug 2004 11:37:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:37:15 -0000 pjd 2004-08-09 11:37:14 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: And here I am. The first person from Poland in here. Revision Changes Path 1.128 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Aug 9 11:38:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCC6D16A4CF; Mon, 9 Aug 2004 11:38:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C5E243D31; Mon, 9 Aug 2004 11:38:41 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Bcf87055767; Mon, 9 Aug 2004 11:38:41 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BcfPU055766; Mon, 9 Aug 2004 11:38:41 GMT (envelope-from harti) Message-Id: <200408091138.i79BcfPU055766@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 11:38:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:38:42 -0000 harti 2004-08-09 11:38:41 UTC FreeBSD src repository Modified files: . Makefile Makefile.inc1 Log: Make make recurse into sub-directories and sub-makes when given two -n flags. If only one -n flag is given the old behaviour is retained (POLA). In order to make this working for installworld change the IMAKEENV in this case so that the tools are found (we have no temporary installation environment in this case). Submitted by: ru (IMAKEENV part) Revision Changes Path 1.306 +7 -7 src/Makefile 1.434 +27 -22 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 12:02:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C08AF16A4CE; Mon, 9 Aug 2004 12:02:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1BA543D31; Mon, 9 Aug 2004 12:02:32 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79C2Whi056677; Mon, 9 Aug 2004 12:02:32 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79C2WAl056676; Mon, 9 Aug 2004 12:02:32 GMT (envelope-from sos) Message-Id: <200408091202.i79C2WAl056676@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 9 Aug 2004 12:02:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c ata-queue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:02:32 -0000 sos 2004-08-09 12:02:32 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-queue.c Log: Close a race in ata_reinit(). Revision Changes Path 1.220 +7 -0 src/sys/dev/ata/ata-all.c 1.31 +0 -3 src/sys/dev/ata/ata-queue.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 12:41:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B97F16A4CE; Mon, 9 Aug 2004 12:41:55 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id E644343D3F; Mon, 9 Aug 2004 12:41:54 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 55CF5ACAE3; Mon, 9 Aug 2004 14:41:53 +0200 (CEST) Date: Mon, 9 Aug 2004 14:41:53 +0200 From: Pawel Jakub Dawidek To: John-Mark Gurney Message-ID: <20040809124153.GN628@darkness.comp.waw.pl> References: <200408061506.i76F66sl018247@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="20XocjIeMTCm4X0r" Content-Disposition: inline In-Reply-To: <200408061506.i76F66sl018247@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:41:55 -0000 --20XocjIeMTCm4X0r Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 06, 2004 at 03:06:06PM +0000, John-Mark Gurney wrote: +> jmg 2004-08-06 15:06:06 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/boot/common help.common=20 +> sys/boot/forth loader.conf=20 +> Log: +> remove /boot/kernel from the default path.. There is already code that +> will prepend the current kernel booting... This prevents a problem of +> loading /boot/kernel's modules when a different kernel has no modules, +> but you left your module_load=3D"YES" in loader.conf... +> =20 +> Reviewed by: dcs (minus the help part) If kernel name is given for the 'boot' command, '/boot/' path is probably added to kern.module_path, but for normal boot process it is not, so kern.module_path is set only to "/boot/modules". Some applications depend on this sysctl and they don't work properly now. Please fix. --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --20XocjIeMTCm4X0r Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF3ERForvXbEpPzQRAk2yAJ4uZY/ZUiErB/igchYwlwJJz9YMmgCg0bYG rxamJZ46fXAt25sW07TABmc= =gpvO -----END PGP SIGNATURE----- --20XocjIeMTCm4X0r-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 12:59:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAA7616A4CE; Mon, 9 Aug 2004 12:59:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC50A43D53; Mon, 9 Aug 2004 12:59:43 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79CxhZo058315; Mon, 9 Aug 2004 12:59:43 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79CxhYE058314; Mon, 9 Aug 2004 12:59:43 GMT (envelope-from den) Message-Id: <200408091259.i79CxhYE058314@repoman.freebsd.org> From: Denis Peplin Date: Mon, 9 Aug 2004 12:59:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:59:44 -0000 den 2004-08-09 12:59:43 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself to USSR count :) Revision Changes Path 1.129 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Aug 9 13:22:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CE916A4CE; Mon, 9 Aug 2004 13:22:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0CAF43D5E; Mon, 9 Aug 2004 13:22:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DMi0p058992; Mon, 9 Aug 2004 13:22:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DMi20058991; Mon, 9 Aug 2004 13:22:44 GMT (envelope-from ru) Message-Id: <200408091322.i79DMi20058991@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 9 Aug 2004 13:22:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 release.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:22:45 -0000 ru 2004-08-09 13:22:44 UTC FreeBSD src repository Modified files: share/man/man7 release.7 Log: Fix a documentation bug: "make release" uses "make buildworld" not "make world", as the first step of building the release. While here, remove another mention of "make world", as the latter is no longer supported by src/Makefile. Revision Changes Path 1.44 +3 -4 src/share/man/man7/release.7 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 13:25:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83BF116A4CE; Mon, 9 Aug 2004 13:25:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EC943D49; Mon, 9 Aug 2004 13:25:07 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DP6QM059066; Mon, 9 Aug 2004 13:25:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DP6rV059065; Mon, 9 Aug 2004 13:25:06 GMT (envelope-from ru) Message-Id: <200408091325.i79DP6rV059065@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 9 Aug 2004 13:25:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:25:13 -0000 ru 2004-08-09 13:25:06 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Remove another mention of "make world". Revision Changes Path 1.26 +1 -5 src/share/man/man7/build.7 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 13:43:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 780D216A4CE; Mon, 9 Aug 2004 13:43:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E57143D48; Mon, 9 Aug 2004 13:43:39 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DhdMr059618; Mon, 9 Aug 2004 13:43:39 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DhdP8059617; Mon, 9 Aug 2004 13:43:39 GMT (envelope-from yar) Message-Id: <200408091343.i79DhdP8059617@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 9 Aug 2004 13:43:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/date date.1 vary.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:43:39 -0000 yar 2004-08-09 13:43:39 UTC FreeBSD src repository Modified files: bin/date date.1 vary.c Log: Change the behaviour of `-v' so that, e.g., stepping a month back on March 31 won't take you to March 2 or 3 (now the result will be the last day of February.) In general, now stepping by months from the last days of the current month A will take you to the very last day of the target month B if B is shorter than A. The previous version would just step to March 31 and rely on mktime(3) to correct the date. Despite its simplicity, such way was counter-intuitive to users and caused pain to shell script writers. Noticed by: Igor Timkin Approved by: brian MFC after: 2 weeks Revision Changes Path 1.68 +23 -1 src/bin/date/date.1 1.16 +7 -0 src/bin/date/vary.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 13:45:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4417616A4CE; Mon, 9 Aug 2004 13:45:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24DF943D31; Mon, 9 Aug 2004 13:45:44 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Djisw059721; Mon, 9 Aug 2004 13:45:44 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Djino059720; Mon, 9 Aug 2004 13:45:44 GMT (envelope-from den) Message-Id: <200408091345.i79Djino059720@repoman.freebsd.org> From: Denis Peplin Date: Mon, 9 Aug 2004 13:45:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:45:44 -0000 den 2004-08-09 13:45:44 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Write my country name in standard form Requested by: ru Revision Changes Path 1.130 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Aug 9 13:49:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 859A016A4CE; Mon, 9 Aug 2004 13:49:41 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49FC043D5A; Mon, 9 Aug 2004 13:49:41 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id E746C4180; Mon, 9 Aug 2004 15:49:39 +0200 (CEST) Received: from plouf.absolight.net ([127.0.0.1])port 20024) with ESMTP id 76368-05; Mon, 9 Aug 2004 15:49:33 +0200 (CEST) X-Original-To: src-committers@FreeBSD.org X-Original-To: den@FreeBSD.org X-Original-To: cvs-src@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.8.51] (abeillemusiq.net4.nerim.net [62.212.120.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 5DB174146; Mon, 9 Aug 2004 15:49:33 +0200 (CEST) Date: Mon, 09 Aug 2004 15:49:31 +0200 From: Mathieu Arnold To: Denis Peplin Message-ID: <78D10FAD8082250CB06BFA7F@[192.168.8.51]> In-Reply-To: <20040809134550.2AA4916A4D3@hub.freebsd.org> References: <20040809134550.2AA4916A4D3@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========175B48910924DB875779==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-4.9 tagged_above=-10 required=5 tests=BAYES_00 X-Spam-Level: cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:49:41 -0000 --==========175B48910924DB875779========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-le 09/08/2004 13:45 +0000, Denis Peplin a dit : | den 2004-08-09 13:45:44 UTC | | FreeBSD src repository (doc committer) | | Modified files: | usr.bin/calendar/calendars calendar.freebsd | Log: | Write my country name in standard form Maybe you who were born in the ex-USSR should choose between naming it USSR and Russian federation :-) -- Mathieu Arnold --==========175B48910924DB875779========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQReA71vROjYJ63c1AQLN1Qf+OHVIfQBYP8gZbk8X9m28Oyfsu0E2HD3R w+ftIAs54wEBJAgIeMx9lWvgD/GKkHschcTMBtAfvJynHLKnobj8DWckhbFx1TWZ +jSwKvvPUMYCGDKRtxAx36fhHUeHVl+QwRen3/YrtJyZhuPFx2NxsoQ938Xzz7a0 8OPNhbzmeozuKQlRGD0QCOVOjKLkHRf6mA8BaYppB7ImYGo6bed7iLvswb4IE0uF nVIQfaXPHY5Bp/22u2SFprID0NcsblKMqchTUFVUuNNkeZUU9R9MLDaS2z5Q8zRl SWqWx/QEbaYflONoHrCB2nkOzTs5vqALMmm7D77UYVw9VCBHTY55/A== =QgCe -----END PGP SIGNATURE----- --==========175B48910924DB875779==========-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 13:54:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33A4B16A4CE; Mon, 9 Aug 2004 13:54:05 +0000 (GMT) Received: from volginfo.ru (ns.volginfo.ru [217.23.84.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF18343D45; Mon, 9 Aug 2004 13:54:04 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from FreeBSD.org (llp-13.vistcom.ru [217.23.84.68]) by volginfo.ru (Postfix) with ESMTP id 08E6D2012; Mon, 9 Aug 2004 17:54:09 +0400 (MSD) Message-ID: <411781FA.8040309@FreeBSD.org> Date: Mon, 09 Aug 2004 17:54:02 +0400 From: Denis Peplin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040205 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Mathieu Arnold References: <20040809134550.2AA4916A4D3@hub.freebsd.org> <78D10FAD8082250CB06BFA7F@[192.168.8.51]> In-Reply-To: <78D10FAD8082250CB06BFA7F@[192.168.8.51]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:54:05 -0000 Hello! Mathieu Arnold wrote: > +-le 09/08/2004 13:45 +0000, Denis Peplin a dit : > | den 2004-08-09 13:45:44 UTC > | > | FreeBSD src repository (doc committer) > | > | Modified files: > | usr.bin/calendar/calendars calendar.freebsd > | Log: > | Write my country name in standard form > > Maybe you who were born in the ex-USSR should choose between naming it USSR > and Russian federation :-) > Done :) From owner-cvs-src@FreeBSD.ORG Mon Aug 9 14:22:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C70316A4D0; Mon, 9 Aug 2004 14:22:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DD1943D31; Mon, 9 Aug 2004 14:22:58 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79EMwCC060966; Mon, 9 Aug 2004 14:22:58 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79EMwF4060965; Mon, 9 Aug 2004 14:22:58 GMT (envelope-from sos) Message-Id: <200408091422.i79EMwF4060965@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 9 Aug 2004 14:22:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-raid.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:22:59 -0000 sos 2004-08-09 14:22:58 UTC FreeBSD src repository Modified files: sys/dev/ata ata-raid.c Log: Fix bad free() usage. Submitted by: Pawel Jakub Dawidek Revision Changes Path 1.81 +8 -2 src/sys/dev/ata/ata-raid.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 14:43:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E47116A4CE; Mon, 9 Aug 2004 14:43:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0098F43D1F; Mon, 9 Aug 2004 14:43:51 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ehoxv061633; Mon, 9 Aug 2004 14:43:50 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ehor1061632; Mon, 9 Aug 2004 14:43:50 GMT (envelope-from des) Message-Id: <200408091443.i79Ehor1061632@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 9 Aug 2004 14:43:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:43:51 -0000 des 2004-08-09 14:43:50 UTC FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: The multiplier prefix is actually a multiplier suffix. Revision Changes Path 1.108 +1 -1 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 15:29:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E1E416A4CE; Mon, 9 Aug 2004 15:29:14 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9613C43D55; Mon, 9 Aug 2004 15:29:13 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79FSPss059717; Mon, 9 Aug 2004 09:28:25 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 09:28:24 -0600 (MDT) Message-Id: <20040809.092824.11587387.imp@bsdimp.com> To: johan@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: <20040809061817.GA53369@numeri.campus.luth.se> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.ORG cc: harti@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: cvs-src@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:29:14 -0000 In message: <20040809061817.GA53369@numeri.campus.luth.se> Johan Karlsson writes: : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), : > Hartmut Brandt wrote: : > > Log: : > > Put variable assignments from the command line into the MAKEFLAGS : > > variable as required by POSIX. This causes such variables to be : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS : > > variable is explicitely changed in the sub-make's environment). : > > This makes them also mostly un-overrideable in sub-makes except on the : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles : > > itself try to do to the CC variable. : > > : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS : > > contains all the command line flags but not the command line variable : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). : > > Makefiles can use MFLAGS for their own purposes given that they do not : > > except MFLAGS to be undefined at the beginning and that they don't evaluate : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, : > > but it is unfortunately heavily used by the X makefiles. : > : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. : : Don't. : According to make(1) it is an environment variable. The current man page is stunningly vague about this. It says that it respects these environment variables, but it doesn't say they have to be set in the enviornment to the exclusion of setting them on the command line. Warner From owner-cvs-src@FreeBSD.ORG Mon Aug 9 15:29:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C916616A4CE; Mon, 9 Aug 2004 15:29:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C01D243D4C; Mon, 9 Aug 2004 15:29:41 +0000 (GMT) (envelope-from dds@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FTfJJ063393; Mon, 9 Aug 2004 15:29:41 GMT (envelope-from dds@repoman.freebsd.org) Received: (from dds@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FTftx063392; Mon, 9 Aug 2004 15:29:41 GMT (envelope-from dds) Message-Id: <200408091529.i79FTftx063392@repoman.freebsd.org> From: Diomidis Spinellis Date: Mon, 9 Aug 2004 15:29:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/sed compile.c defs.h extern.h main.c misc.c process.c sed.1 src/usr.bin/sed/TEST sed.test X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:29:41 -0000 dds 2004-08-09 15:29:41 UTC FreeBSD src repository Modified files: usr.bin/sed compile.c defs.h extern.h main.c misc.c process.c sed.1 usr.bin/sed/TEST sed.test Log: Per letter dated July 22, 1999 remove 3rd clause of Berkeley derived software (original contributor). Reviewed by: imp Revision Changes Path 1.4 +0 -4 src/usr.bin/sed/TEST/sed.test 1.26 +0 -4 src/usr.bin/sed/compile.c 1.5 +0 -4 src/usr.bin/sed/defs.h 1.13 +0 -4 src/usr.bin/sed/extern.h 1.34 +0 -4 src/usr.bin/sed/main.c 1.10 +0 -4 src/usr.bin/sed/misc.c 1.38 +0 -4 src/usr.bin/sed/process.c 1.38 +0 -4 src/usr.bin/sed/sed.1 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 15:44:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1E3416A4CE; Mon, 9 Aug 2004 15:44:19 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35EFA43D31; Mon, 9 Aug 2004 15:44:19 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79FfBxc059893; Mon, 9 Aug 2004 09:41:11 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 09:41:10 -0600 (MDT) Message-Id: <20040809.094110.04712576.imp@bsdimp.com> To: johan@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: <20040809.092824.11587387.imp@bsdimp.com> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> <20040809.092824.11587387.imp@bsdimp.com> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.ORG cc: harti@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: cvs-src@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:44:20 -0000 In message: <20040809.092824.11587387.imp@bsdimp.com> "M. Warner Losh" writes: : In message: <20040809061817.GA53369@numeri.campus.luth.se> : Johan Karlsson writes: : : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: : : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), : : > Hartmut Brandt wrote: : : > > Log: : : > > Put variable assignments from the command line into the MAKEFLAGS : : > > variable as required by POSIX. This causes such variables to be : : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS : : > > variable is explicitely changed in the sub-make's environment). : : > > This makes them also mostly un-overrideable in sub-makes except on the : : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause : : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles : : > > itself try to do to the CC variable. : : > > : : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS : : > > contains all the command line flags but not the command line variable : : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now : : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). : : > > Makefiles can use MFLAGS for their own purposes given that they do not : : > > except MFLAGS to be undefined at the beginning and that they don't evaluate : : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, : : > > but it is unfortunately heavily used by the X makefiles. : : > : : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. : : : : Don't. : : According to make(1) it is an environment variable. : : The current man page is stunningly vague about this. It says that it : respects these environment variables, but it doesn't say they have to : be set in the enviornment to the exclusion of setting them on the : command line. So either we can make it work, or document that the variables listed in the environment section must be set as environment variables only. Warner From owner-cvs-src@FreeBSD.ORG Mon Aug 9 15:55:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBA2316A4F5; Mon, 9 Aug 2004 15:55:15 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D3F43D31; Mon, 9 Aug 2004 15:55:14 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i79FsqX324526; Mon, 9 Aug 2004 17:54:53 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i79Fsqf185600; Mon, 9 Aug 2004 17:54:52 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i79Fsoe00704; Mon, 9 Aug 2004 17:54:50 +0200 (MET DST) Date: Mon, 9 Aug 2004 17:54:51 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: "M. Warner Losh" In-Reply-To: <20040809.094110.04712576.imp@bsdimp.com> Message-ID: <20040809174540.U32590@beagle.kn.op.dlr.de> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> <20040809.094110.04712576.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: kuriyama@imgsrc.co.jp cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: johan@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:55:16 -0000 On Mon, 9 Aug 2004, M. Warner Losh wrote: MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> MWL> "M. Warner Losh" writes: MWL>: In message: <20040809061817.GA53369@numeri.campus.luth.se> MWL>: Johan Karlsson writes: MWL>: : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: MWL>: : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), MWL>: : > Hartmut Brandt wrote: MWL>: : > > Log: MWL>: : > > Put variable assignments from the command line into the MAKEFLAGS MWL>: : > > variable as required by POSIX. This causes such variables to be MWL>: : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS MWL>: : > > variable is explicitely changed in the sub-make's environment). MWL>: : > > This makes them also mostly un-overrideable in sub-makes except on the MWL>: : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause MWL>: : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles MWL>: : > > itself try to do to the CC variable. MWL>: : > > MWL>: : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS MWL>: : > > contains all the command line flags but not the command line variable MWL>: : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now MWL>: : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). MWL>: : > > Makefiles can use MFLAGS for their own purposes given that they do not MWL>: : > > except MFLAGS to be undefined at the beginning and that they don't evaluate MWL>: : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, MWL>: : > > but it is unfortunately heavily used by the X makefiles. MWL>: : > MWL>: : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. MWL>: : MWL>: : Don't. MWL>: : According to make(1) it is an environment variable. MWL>: MWL>: The current man page is stunningly vague about this. It says that it MWL>: respects these environment variables, but it doesn't say they have to MWL>: be set in the enviornment to the exclusion of setting them on the MWL>: command line. MWL> MWL>So either we can make it work, or document that the variables listed MWL>in the environment section must be set as environment variables only. There is nothing to be made work. Both variables are intended to be used as environment variables. That they happend to work from the command line was a side effect of make putting its variables into the environment. Does the following clarify things enough? harti Index: make.1 =================================================================== RCS file: /local/cvs/freebsd/src/usr.bin/make/make.1,v retrieving revision 1.77 diff -u -r1.77 make.1 --- make.1 4 Aug 2004 15:10:35 -0000 1.77 +++ make.1 9 Aug 2004 15:51:47 -0000 @@ -533,6 +533,13 @@ .Nm is unable to change into any of the remaining three directories, then the current directory is used. +Note, that +.Ev MAKEOBJDIRPREFIX +and +.Ev MAKEOBJDIR +must be environment variables and should not be set on +.Nm Ns 's +command line. .Pp The .Nm harti From owner-cvs-src@FreeBSD.ORG Mon Aug 9 15:58:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 116DD16A4CE; Mon, 9 Aug 2004 15:58:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6B5243D5E; Mon, 9 Aug 2004 15:58:39 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FwdSu064357; Mon, 9 Aug 2004 15:58:39 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FwdjT064356; Mon, 9 Aug 2004 15:58:39 GMT (envelope-from mlaier) Message-Id: <200408091558.i79FwdjT064356@repoman.freebsd.org> From: Max Laier Date: Mon, 9 Aug 2004 15:58:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 altq.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:58:40 -0000 mlaier 2004-08-09 15:58:39 UTC FreeBSD src repository Modified files: share/man/man9 altq.9 Log: mdoc(7) and english grammar makeover. Submitted by: ru Revision Changes Path 1.2 +105 -98 src/share/man/man9/altq.9 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:08:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBD8B16A4CE; Mon, 9 Aug 2004 16:08:25 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE04243D49; Mon, 9 Aug 2004 16:08:24 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79G5A7p060181; Mon, 9 Aug 2004 10:05:10 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 10:05:09 -0600 (MDT) Message-Id: <20040809.100509.63410124.imp@bsdimp.com> To: harti@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20040809174540.U32590@beagle.kn.op.dlr.de> References: <20040809.092824.11587387.imp@bsdimp.com> <20040809.094110.04712576.imp@bsdimp.com> <20040809174540.U32590@beagle.kn.op.dlr.de> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:08:26 -0000 In message: <20040809174540.U32590@beagle.kn.op.dlr.de> Harti Brandt writes: : On Mon, 9 Aug 2004, M. Warner Losh wrote: : : MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> : MWL> "M. Warner Losh" writes: : MWL>: In message: <20040809061817.GA53369@numeri.campus.luth.se> : MWL>: Johan Karlsson writes: : MWL>: : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: : MWL>: : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), : MWL>: : > Hartmut Brandt wrote: : MWL>: : > > Log: : MWL>: : > > Put variable assignments from the command line into the MAKEFLAGS : MWL>: : > > variable as required by POSIX. This causes such variables to be : MWL>: : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS : MWL>: : > > variable is explicitely changed in the sub-make's environment). : MWL>: : > > This makes them also mostly un-overrideable in sub-makes except on the : MWL>: : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause : MWL>: : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles : MWL>: : > > itself try to do to the CC variable. : MWL>: : > > : MWL>: : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS : MWL>: : > > contains all the command line flags but not the command line variable : MWL>: : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now : MWL>: : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). : MWL>: : > > Makefiles can use MFLAGS for their own purposes given that they do not : MWL>: : > > except MFLAGS to be undefined at the beginning and that they don't evaluate : MWL>: : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, : MWL>: : > > but it is unfortunately heavily used by the X makefiles. : MWL>: : > : MWL>: : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. : MWL>: : : MWL>: : Don't. : MWL>: : According to make(1) it is an environment variable. : MWL>: : MWL>: The current man page is stunningly vague about this. It says that it : MWL>: respects these environment variables, but it doesn't say they have to : MWL>: be set in the enviornment to the exclusion of setting them on the : MWL>: command line. : MWL> : MWL>So either we can make it work, or document that the variables listed : MWL>in the environment section must be set as environment variables only. : : There is nothing to be made work. Both variables are intended to be used : as environment variables. That they happend to work from the command line : was a side effect of make putting its variables into the environment. : Does the following clarify things enough? Yes. That's great! Warner From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:12:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12D4516A4CE; Mon, 9 Aug 2004 16:12:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8E7843D58; Mon, 9 Aug 2004 16:12:10 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GCA7O064831; Mon, 9 Aug 2004 16:12:10 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GCAOB064830; Mon, 9 Aug 2004 16:12:10 GMT (envelope-from andre) Message-Id: <200408091612.i79GCAOB064830@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Aug 2004 16:12:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:12:11 -0000 andre 2004-08-09 16:12:10 UTC FreeBSD src repository Modified files: sys/netinet ip_fw.h ip_fw2.c sbin/ipfw ipfw.8 ipfw2.c Log: New ipfw option "antispoof": For incoming packets, the packet's source address is checked if it belongs to a directly connected network. If the network is directly connected, then the interface the packet came on in is compared to the interface the network is connected to. When incoming interface and directly connected interface are not the same, the packet does not match. Usage example: ipfw add deny ip from any to any not antispoof in Manpage education by: ru Revision Changes Path 1.148 +38 -2 src/sbin/ipfw/ipfw.8 1.53 +11 -1 src/sbin/ipfw/ipfw2.c 1.86 +1 -0 src/sys/netinet/ip_fw.h 1.67 +11 -0 src/sys/netinet/ip_fw2.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:13:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A7BD16A4F2; Mon, 9 Aug 2004 16:13:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B0F343D1D; Mon, 9 Aug 2004 16:13:54 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GDsM1064884; Mon, 9 Aug 2004 16:13:54 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GDs9N064883; Mon, 9 Aug 2004 16:13:54 GMT (envelope-from harti) Message-Id: <200408091613.i79GDs9N064883@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:13:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make make.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:13:54 -0000 harti 2004-08-09 16:13:54 UTC FreeBSD src repository Modified files: usr.bin/make make.1 Log: Make explicit that MAKEOBJDIRPREFIX and MAKOBJDIR must be set as environment variables and should not be set on make's command line. They happen to work accidentially as command line variables too when none of the sub-makes wants to play games with them (because make is putting command line variables into the environment and will find them there later on). Makefile.inc1 wants to change MAKEOBJDIRPREFIX. In this case one cannot set it on the command line. Revision Changes Path 1.78 +7 -0 src/usr.bin/make/make.1 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:16:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DB3C16A4CE; Mon, 9 Aug 2004 16:16:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F38343D41; Mon, 9 Aug 2004 16:16:11 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GGBRe065009; Mon, 9 Aug 2004 16:16:11 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GGBYF065008; Mon, 9 Aug 2004 16:16:11 GMT (envelope-from andre) Message-Id: <200408091616.i79GGBYF065008@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Aug 2004 16:16:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:16:11 -0000 andre 2004-08-09 16:16:11 UTC FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Make a comment that "ipfw forward" is not SMP and PREEMPTION safe. Revision Changes Path 1.222 +1 -0 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:17:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F95B16A4CE; Mon, 9 Aug 2004 16:17:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11ABA43D54; Mon, 9 Aug 2004 16:17:38 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GHbMq065070; Mon, 9 Aug 2004 16:17:37 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GHbdN065069; Mon, 9 Aug 2004 16:17:37 GMT (envelope-from andre) Message-Id: <200408091617.i79GHbdN065069@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Aug 2004 16:17:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:17:38 -0000 andre 2004-08-09 16:17:37 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c Log: Make a comment that IP source routing is not SMP and PREEMPTION safe. Revision Changes Path 1.279 +1 -0 src/sys/netinet/ip_input.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:21:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D074216A4CE for ; Mon, 9 Aug 2004 16:21:50 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4832E43D5C for ; Mon, 9 Aug 2004 16:21:50 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 73600 invoked from network); 9 Aug 2004 16:16:08 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 16:16:08 -0000 Message-ID: <4117A4A0.F45CB8D@freebsd.org> Date: Mon, 09 Aug 2004 18:21:52 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408091616.i79GGBYF065008@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:21:50 -0000 Andre Oppermann wrote: > > andre 2004-08-09 16:16:11 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_output.c > Log: > Make a comment that "ipfw forward" is not SMP and PREEMPTION safe. > > Revision Changes Path > 1.222 +1 -0 src/sys/netinet/ip_output.c Please note that the conversion of ipfw to PFIL_HOOKS fixes this and I am working on getting it in before the code freeze. Switching ipfw over to PFIL_HOOKS is fairly low risk (it only changes how ipfw is invoked per packet and in no way how ipfw itself works). -- Andre From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:23:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82E8D16A4D0 for ; Mon, 9 Aug 2004 16:23:09 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5A2743D55 for ; Mon, 9 Aug 2004 16:23:08 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 73616 invoked from network); 9 Aug 2004 16:17:26 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 16:17:26 -0000 Message-ID: <4117A4EE.B568A9B4@freebsd.org> Date: Mon, 09 Aug 2004 18:23:10 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408091617.i79GHbdN065069@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/netinet ip_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:23:09 -0000 Andre Oppermann wrote: > > andre 2004-08-09 16:17:37 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_input.c > Log: > Make a comment that IP source routing is not SMP and PREEMPTION safe. > > Revision Changes Path > 1.279 +1 -0 src/sys/netinet/ip_input.c Please note that I am working on converting those static variables to mtags and want to get that into the tree before the code freeze. -- Andre From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:36:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BA6516A4CE; Mon, 9 Aug 2004 16:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6242043D58; Mon, 9 Aug 2004 16:36:04 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ga4md065711; Mon, 9 Aug 2004 16:36:04 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ga4n9065710; Mon, 9 Aug 2004 16:36:04 GMT (envelope-from harti) Message-Id: <200408091636.i79Ga4n9065710@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules/snmp_atm BEGEMOT-ATM-FREEBSD-MIB.txt Makefile atm_freebsd.def atm_sys.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:36:04 -0000 harti 2004-08-09 16:36:04 UTC FreeBSD src repository Added files: lib/libbsnmp/modules/snmp_atm BEGEMOT-ATM-FREEBSD-MIB.txt Makefile atm_freebsd.def atm_sys.c Log: A module for bsnmpd(1) that exports a MIB that contains information about the local ATM interfaces and allows to change some parameters via SNMP. Revision Changes Path 1.1 +99 -0 src/lib/libbsnmp/modules/snmp_atm/BEGEMOT-ATM-FREEBSD-MIB.txt (new) 1.1 +22 -0 src/lib/libbsnmp/modules/snmp_atm/Makefile (new) 1.1 +56 -0 src/lib/libbsnmp/modules/snmp_atm/atm_freebsd.def (new) 1.1 +301 -0 src/lib/libbsnmp/modules/snmp_atm/atm_sys.c (new) From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:37:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F32616A4CF; Mon, 9 Aug 2004 16:37:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DCEB43D58; Mon, 9 Aug 2004 16:37:26 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GbQB8065845; Mon, 9 Aug 2004 16:37:26 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GbPuY065844; Mon, 9 Aug 2004 16:37:25 GMT (envelope-from harti) Message-Id: <200408091637.i79GbPuY065844@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:37:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:37:26 -0000 harti 2004-08-09 16:37:25 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile.inc Log: Now that gensnmptree can read and merge more than one tree make the rule so that the tree .c and .h files can be produced from several trees. Revision Changes Path 1.7 +4 -4 src/lib/libbsnmp/modules/Makefile.inc From owner-cvs-src@FreeBSD.ORG Mon Aug 9 16:40:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A191216A4CE; Mon, 9 Aug 2004 16:40:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81CB543D54; Mon, 9 Aug 2004 16:40:39 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Geds9065991; Mon, 9 Aug 2004 16:40:39 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Gedo3065990; Mon, 9 Aug 2004 16:40:39 GMT (envelope-from harti) Message-Id: <200408091640.i79Gedo3065990@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:40:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:40:39 -0000 harti 2004-08-09 16:40:39 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Link the snmp_atm module to the build unless NOATM is defined. Revision Changes Path 1.2 +6 -1 src/lib/libbsnmp/modules/Makefile From owner-cvs-src@FreeBSD.ORG Mon Aug 9 17:16:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E3A116A4D0; Mon, 9 Aug 2004 17:16:17 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E971443D60; Mon, 9 Aug 2004 17:16:16 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i79HGFk4048933; Mon, 9 Aug 2004 10:16:15 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i79HGACF048925; Mon, 9 Aug 2004 10:16:10 -0700 (PDT) (envelope-from obrien) Date: Mon, 9 Aug 2004 10:16:10 -0700 From: "David O'Brien" To: Mark Murray Message-ID: <20040809171610.GA48612@dragon.nuxi.com> References: <20040804201627.GA991@funkthat.com> <200408050725.i757Pl7a052956@grimreaper.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408050725.i757Pl7a052956@grimreaper.grondar.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@FreeBSD.ORG cc: John-Mark Gurney cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Marcel Moolenaar Subject: Re: cvs commit: src/tools/debugscripts README kgdb kld_deb.py X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.ORG List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:16:17 -0000 On Thu, Aug 05, 2004 at 08:25:47AM +0100, Mark Murray wrote: > John-Mark Gurney writes: > > It was requested of me to commit these the other day when I mentioned > > them to another committer (who I don't remeber right now). > > That would be me. > > > > If you want to help out, make sure you help doing things that need to > > > be done. > > > > Make sure you don't discourage people from working to improve FreeBSD. > > Right. These are useful "tool" scripts, and now they won't get lost if > J-M gets flattened by a bus. No harm done. They were posted to -current last year, they won't be lost if J-M gets flattened by a bus. If they don't work with at least the gdb6 port, then I agree with Marcel that there was little use committing them. > Back to work folks, nothing to see here. Thank you for implying our views don't matter. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Mon Aug 9 17:36:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3929716A4E1; Mon, 9 Aug 2004 17:36:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17ADF43D31; Mon, 9 Aug 2004 17:36:20 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HaJPF067581; Mon, 9 Aug 2004 17:36:19 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HaJL1067580; Mon, 9 Aug 2004 17:36:19 GMT (envelope-from imp) Message-Id: <200408091736.i79HaJL1067580@repoman.freebsd.org> From: Warner Losh Date: Mon, 9 Aug 2004 17:36:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:36:20 -0000 imp 2004-08-09 17:36:19 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Log: Remove commented out pcic driver. It is too broken to work (even if you fix the obvious bugs, nastier ones reside below the surfac), and having it commented out here just encourages people to try it. # I'm not removing it from the base system, yet. Revision Changes Path 1.412 +0 -1 src/sys/i386/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Mon Aug 9 17:38:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 587B216A4CE for ; Mon, 9 Aug 2004 17:38:17 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1D8C43D53 for ; Mon, 9 Aug 2004 17:38:16 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 11354 invoked from network); 9 Aug 2004 17:38:16 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail1.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 17:38:16 -0000 Received: from hydrogen.funkthat.com (jylqnu@localhost.funkthat.com [127.0.0.1])i79HcFuU057616; Mon, 9 Aug 2004 10:38:16 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i79HcEnv057615; Mon, 9 Aug 2004 10:38:14 -0700 (PDT) Date: Mon, 9 Aug 2004 10:38:14 -0700 From: John-Mark Gurney To: Pawel Jakub Dawidek Message-ID: <20040809173814.GG991@funkthat.com> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809124153.GN628@darkness.comp.waw.pl> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:38:17 -0000 Pawel Jakub Dawidek wrote this message on Mon, Aug 09, 2004 at 14:41 +0200: > If kernel name is given for the 'boot' command, '/boot/' path is > probably added to kern.module_path, but for normal boot process it is not, > so kern.module_path is set only to "/boot/modules". > Some applications depend on this sysctl and they don't work properly now. > Please fix. Have you verified this is a problem? On my test box that has: defaults/loader.conf:module_path="/boot/modules" # Set the module search path and was booted: [...] /boot/kernel/accf_http.ko text=0xb84 data=0x150+0x4 syms=[0x4+0x310+0x4+0x334] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel]... (i.e. normal boot process w/ no interaction) My sysctl returns: -bash-2.05b$ sysctl kern.module_path kern.module_path: /boot/kernel;/boot/modules Please include complete information of the breakage that this change is suppose to cause. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Mon Aug 9 17:51:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76DB216A4D1; Mon, 9 Aug 2004 17:51:41 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93DF043D55; Mon, 9 Aug 2004 17:51:40 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])i79Hpbip011545; Mon, 9 Aug 2004 20:51:37 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) i79HoTmp020967; Mon, 9 Aug 2004 20:51:35 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost)i79HnRfN020935; Mon, 9 Aug 2004 20:49:27 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 9 Aug 2004 20:49:27 +0300 From: Giorgos Keramidas To: John-Mark Gurney Message-ID: <20040809174927.GA20807@orion.daedalusnetworks.priv> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809173814.GG991@funkthat.com> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:51:43 -0000 On 2004-08-09 10:38, John-Mark Gurney wrote: > Pawel Jakub Dawidek wrote this message on Mon, Aug 09, 2004 at 14:41 +0200: > > If kernel name is given for the 'boot' command, '/boot/' path is > > probably added to kern.module_path, but for normal boot process it is not, > > so kern.module_path is set only to "/boot/modules". > > Some applications depend on this sysctl and they don't work properly now. > > Please fix. > > Have you verified this is a problem? On my test box that has: > defaults/loader.conf:module_path="/boot/modules" # Set the module search path > > and was booted: > [...] > /boot/kernel/accf_http.ko text=0xb84 data=0x150+0x4 syms=[0x4+0x310+0x4+0x334] > > Hit [Enter] to boot immediately, or any other key for command prompt. > Booting [/boot/kernel/kernel]... I don't know if this is related, but... I've also noticed that /boot/kernel is added twice at module_path. My boot loader-foo is non-existent but it always seemed sufficient to just use: set module_path=/boot/kernel.old set bootfile=/boot/kernel.old/kernel to recover from broken/buggy kernel builds, so I never asked. Does this mean that now module_path will include the current kernel path only once? - Giorgos From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:13:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BB5F16A4D0 for ; Mon, 9 Aug 2004 18:13:52 +0000 (GMT) Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA4A43D41 for ; Mon, 9 Aug 2004 18:13:51 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 22594 invoked from network); 9 Aug 2004 17:59:42 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 17:58:21 -0000 Received: from hydrogen.funkthat.com (ahevuh@localhost.funkthat.com [127.0.0.1])i79HwKuU058036; Mon, 9 Aug 2004 10:58:20 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i79HuxuY058004; Mon, 9 Aug 2004 10:56:59 -0700 (PDT) Date: Mon, 9 Aug 2004 10:56:59 -0700 From: John-Mark Gurney To: Giorgos Keramidas Message-ID: <20040809175658.GH991@funkthat.com> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> <20040809174927.GA20807@orion.daedalusnetworks.priv> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809174927.GA20807@orion.daedalusnetworks.priv> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:13:52 -0000 Giorgos Keramidas wrote this message on Mon, Aug 09, 2004 at 20:49 +0300: > > Hit [Enter] to boot immediately, or any other key for command prompt. > > Booting [/boot/kernel/kernel]... > > I don't know if this is related, but... > > I've also noticed that /boot/kernel is added twice at module_path. > My boot loader-foo is non-existent but it always seemed sufficient > to just use: > > set module_path=/boot/kernel.old > set bootfile=/boot/kernel.old/kernel > > to recover from broken/buggy kernel builds, so I never asked. > > Does this mean that now module_path will include the current kernel path > only once? Yes, my commit fixes the problem of /boot/kernel being added twice (or /boot/kernel being added even though you didn't load that kernel). Just update your /boot/defaults/loader.conf, and you should then be able to remove your hacked module_path line. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:15:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CBF916A4CE; Mon, 9 Aug 2004 18:15:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CF5D43D45; Mon, 9 Aug 2004 18:15:46 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IFkPX072685; Mon, 9 Aug 2004 18:15:46 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IFkWK072684; Mon, 9 Aug 2004 18:15:46 GMT (envelope-from alc) Message-Id: <200408091815.i79IFkWK072684@repoman.freebsd.org> From: Alan Cox Date: Mon, 9 Aug 2004 18:15:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:15:46 -0000 alc 2004-08-09 18:15:46 UTC FreeBSD src repository Modified files: sys/vm vm_map.c Log: Remove a stale comment from vm_map_lookup() that pertains to share maps. (The last vestiges of the share map code were removed in revisions 1.153 and 1.159.) Revision Changes Path 1.352 +0 -3 src/sys/vm/vm_map.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:21:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAD3416A4CE; Mon, 9 Aug 2004 18:21:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC02143D1D; Mon, 9 Aug 2004 18:21:12 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79ILCaC072902; Mon, 9 Aug 2004 18:21:12 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79ILCsh072901; Mon, 9 Aug 2004 18:21:12 GMT (envelope-from julian) Message-Id: <200408091821.i79ILCsh072901@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 18:21:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_fork.c kern_switch.c kern_synch.c kern_thread.c sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:21:13 -0000 julian 2004-08-09 18:21:12 UTC FreeBSD src repository Modified files: sys/kern kern_fork.c kern_switch.c kern_synch.c kern_thread.c sched_4bsd.c Log: Increase the amount of data exported by KTR in the KTR_RUNQ setting. This extra data is needed to really follow what is going on in the threaded case. Revision Changes Path 1.233 +2 -2 src/sys/kern/kern_fork.c 1.76 +15 -6 src/sys/kern/kern_switch.c 1.257 +4 -4 src/sys/kern/kern_synch.c 1.192 +2 -3 src/sys/kern/kern_thread.c 1.48 +5 -6 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:29:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D70916A4CE; Mon, 9 Aug 2004 18:29:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C5AA43D49; Mon, 9 Aug 2004 18:29:19 +0000 (GMT) (envelope-from bmilekic@FreeBSD.org) Received: from freefall.freebsd.org (bmilekic@localhost [127.0.0.1]) i79ITJ2L039189; Mon, 9 Aug 2004 18:29:19 GMT (envelope-from bmilekic@freefall.freebsd.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i79ITJh6039188; Mon, 9 Aug 2004 18:29:19 GMT (envelope-from bmilekic) Date: Mon, 9 Aug 2004 18:29:19 +0000 From: Bosko Milekic To: Julian Elischer , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040809182919.GA39162@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/kern kern_fork.c kern_switch.c kern_synch.c kern_thread.c sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:29:19 -0000 >julian 2004-08-09 18:21:12 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_fork.c kern_switch.c kern_synch.c > kern_thread.c sched_4bsd.c > Log: > Increase the amount of data exported by KTR in the KTR_RUNQ setting. > This extra data is needed to really follow what is going on in the > threaded case. Thanks guy. G'd up from the feet up, B. From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:44:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A94116A4D2 for ; Mon, 9 Aug 2004 18:44:34 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B54143D5A for ; Mon, 9 Aug 2004 18:44:34 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 2066 invoked from network); 9 Aug 2004 18:44:33 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 18:44:33 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79IiDtJ076097; Mon, 9 Aug 2004 14:44:30 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Kris Kennaway Date: Mon, 9 Aug 2004 11:12:29 -0400 User-Agent: KMail/1.6 References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <200408041634.03998.jhb@FreeBSD.org> <20040808042703.GA64746@xor.obsecurity.org> In-Reply-To: <20040808042703.GA64746@xor.obsecurity.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091112.29286.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:44:34 -0000 On Sunday 08 August 2004 12:27 am, Kris Kennaway wrote: > On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > > jhb 2004-08-04 20:31:19 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/i386/i386 pmap.c > > > sys/kern subr_witness.c > > > Log: > > > Remove a potential deadlock on i386 SMP by changing the lazypmap ipi > > > and spin-wait code to use the same spin mutex (smp_tlb_mtx) as the TLB > > > ipi and spin-wait code snippets so that you can't get into the > > > situation of one CPU doing a TLB shootdown to another CPU that is doing > > > a lazy pmap shootdown each of which are waiting on each other. With > > > this change, only one of the CPUs would do an IPI and spin-wait at a > > > time. > > > > Both this patch and the previous I have tested locally and also sent out > > to current@ for testing. However, I received zero feedback (not even > > useless feedback), so they may theoretically be risky. > > Isn't this the patch I tested for you and reported that it did not fix > the problem? Yes, but I sent out _two_ patches to current@ and you didn't test the second one I guess. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:44:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2900016A591 for ; Mon, 9 Aug 2004 18:44:37 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE85343D5F for ; Mon, 9 Aug 2004 18:44:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 487 invoked from network); 9 Aug 2004 18:44:36 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 18:44:36 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79IiDtK076097; Mon, 9 Aug 2004 14:44:32 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Mark Murray Date: Mon, 9 Aug 2004 11:14:58 -0400 User-Agent: KMail/1.6 References: <200408062200.i76M0tvk068161@grimreaper.grondar.org> In-Reply-To: <200408062200.i76M0tvk068161@grimreaper.grondar.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091114.58674.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Colin Percival cc: Colin Percival cc: Paul Richards Subject: Re: cvs commit: src/bin/ed Makefile src/gnu/usr.bin/cvs/cvs Makefile src/kerberos5 Makefile.inc src/lib/libfetch Makefile src/lib/libpam/libpam Makefile src/lib/libpam/modules/pam_krb5 Makefile src/lib/libpam/modules/pam_ksu Makefile ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:44:37 -0000 On Friday 06 August 2004 06:00 pm, Mark Murray wrote: > Paul Richards writes: > > It doesn't however follow that FreeBSD is always exempt from export > > controls because it might not be if your exporting it as a product, even > > if that product is just FreeBSD on a CD. > > This is just plain incorrect. If it is Open Source, it is exportable. > > > We'll always need to support > > the ability to build non-crypto releases so that it can be safely > > embedded in products that don't need crypto without encumbering the end > > product with a requirement for an export license. > > We have the ability to build a NOCRYPT _world_. For people building > appliances, that is sufficient. But people building appliances have > control over the whole manufacturing process, and the crypto-nature > of the product is therefore up to them. Open-source the OS on their > product; no problem. Make it closed source and deal with export > conditions. > > The ability to build NOCRYPT _releases_ is irrelevant. Hmm, we build the release for our "embedded" device using the FreeBSD release scripts and install using sysinstall config scripts. I don't think it is too much of a stretch to imagine that other people making appliances might do the same. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:44:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92D0216A4CF for ; Mon, 9 Aug 2004 18:44:58 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44FEE43D5A for ; Mon, 9 Aug 2004 18:44:58 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 22972 invoked from network); 9 Aug 2004 18:44:58 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 18:44:57 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79IiDtO076097; Mon, 9 Aug 2004 14:44:53 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Harti Brandt Date: Mon, 9 Aug 2004 13:45:48 -0400 User-Agent: KMail/1.6 References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809.094110.04712576.imp@bsdimp.com> <20040809174540.U32590@beagle.kn.op.dlr.de> In-Reply-To: <20040809174540.U32590@beagle.kn.op.dlr.de> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091345.48263.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:44:58 -0000 On Monday 09 August 2004 11:54 am, Harti Brandt wrote: > On Mon, 9 Aug 2004, M. Warner Losh wrote: > > MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> > MWL>: The current man page is stunningly vague about this. It says that it > MWL>: respects these environment variables, but it doesn't say they have to > MWL>: be set in the enviornment to the exclusion of setting them on the > MWL>: command line. > MWL> > MWL>So either we can make it work, or document that the variables listed > MWL>in the environment section must be set as environment variables only. > > There is nothing to be made work. Both variables are intended to be used > as environment variables. That they happend to work from the command line > was a side effect of make putting its variables into the environment. > Does the following clarify things enough? Doesn't change the fact that it can break existing scripts. I typically do % worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test on my test boxes (worldloop is a script that does a 'make buildworld "$@"' in a loop). Can't be fixed I guess. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:45:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3330016A67D; Mon, 9 Aug 2004 18:45:19 +0000 (GMT) Received: from smtp-vbr9.xs4all.nl (smtp-vbr9.xs4all.nl [194.109.24.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96A4643D60; Mon, 9 Aug 2004 18:45:18 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr9.xs4all.nl (8.12.11/8.12.11) with ESMTP id i79Ij8OI007465; Mon, 9 Aug 2004 20:45:08 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i79Ij8dJ060175; Mon, 9 Aug 2004 20:45:08 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i79Ij8RC060174; Mon, 9 Aug 2004 20:45:08 +0200 (CEST) (envelope-from wb) Date: Mon, 9 Aug 2004 20:45:08 +0200 From: Wilko Bulte To: Ruslan Ermilov Message-ID: <20040809184508.GB60120@freebie.xs4all.nl> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809104206.GD51676@ip.net.ua> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: Nicolas Souchu cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Roman Kurakin Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:45:19 -0000 On Mon, Aug 09, 2004 at 01:42:06PM +0300, Ruslan Ermilov wrote.. > On Mon, Aug 09, 2004 at 02:15:30PM +0400, Roman Kurakin wrote: > > What is correct order in this file, by first name or by last name? > > > The correct order here is: > > - by month, > - by day, > - by year > - in case there's still a full match, by freefall login name. Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst date format yet invented :-P -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:46:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8521A16A4CE; Mon, 9 Aug 2004 18:46:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6603243D1F; Mon, 9 Aug 2004 18:46:13 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IkDO5073801; Mon, 9 Aug 2004 18:46:13 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IkD8x073800; Mon, 9 Aug 2004 18:46:13 GMT (envelope-from green) Message-Id: <200408091846.i79IkD8x073800@repoman.freebsd.org> From: Brian Feldman Date: Mon, 9 Aug 2004 18:46:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:46:13 -0000 green 2004-08-09 18:46:13 UTC FreeBSD src repository Modified files: sys/kern link_elf.c Log: Normalize the VM wiring done with SPARSE_MAPPING: check for errors, and unmap when done. For whatever reason, SPARSE_MAPPING is not even a config option, so this is dead code. Revision Changes Path 1.81 +17 -10 src/sys/kern/link_elf.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:46:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2224B16A559; Mon, 9 Aug 2004 18:46:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01F5043D41; Mon, 9 Aug 2004 18:46:40 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ikd1k073834; Mon, 9 Aug 2004 18:46:39 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IkdmV073833; Mon, 9 Aug 2004 18:46:39 GMT (envelope-from alc) Message-Id: <200408091846.i79IkdmV073833@repoman.freebsd.org> From: Alan Cox Date: Mon, 9 Aug 2004 18:46:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:46:40 -0000 alc 2004-08-09 18:46:39 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: Make two changes to vm_fault(). 1. Move a comment to its proper place, updating it. (Except for white- space, this comment had been unchanged since revision 1.1!) 2. Remove spl calls. Revision Changes Path 1.190 +7 -16 src/sys/vm/vm_fault.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:50:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC34916A4D9; Mon, 9 Aug 2004 18:50:32 +0000 (GMT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E74F43D31; Mon, 9 Aug 2004 18:50:32 +0000 (GMT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id F3B4F180E8; Mon, 9 Aug 2004 13:50:31 -0500 (EST) Date: Mon, 9 Aug 2004 13:50:31 -0500 From: Will Andrews To: Wilko Bulte Message-ID: <20040809185031.GX26004@sirius.firepipe.net> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ItroYk2LVxvwOvi/" Content-Disposition: inline In-Reply-To: <20040809184508.GB60120@freebie.xs4all.nl> User-Agent: Mutt/1.5.6i cc: src-committers@FreeBSD.ORG cc: cvs-src@FreeBSD.ORG cc: Nicolas Souchu cc: cvs-all@FreeBSD.ORG cc: Roman Kurakin cc: Ruslan Ermilov Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:50:33 -0000 --ItroYk2LVxvwOvi/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > date format yet invented :-P It's not as bad as the European DDMMYYYY. :P --=20 wca --ItroYk2LVxvwOvi/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF8d3F47idPgWcsURAkXTAKCC3tbhVjlS1NXmewpGpX2iJJrmywCdGmFI e1+HjmeP28cobUJ+9YYmJIA= =MqnS -----END PGP SIGNATURE----- --ItroYk2LVxvwOvi/-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 18:51:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF6EE16A4CE; Mon, 9 Aug 2004 18:51:35 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4014F43D49; Mon, 9 Aug 2004 18:51:34 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i79IpVX215394; Mon, 9 Aug 2004 20:51:31 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i79IpVf390426; Mon, 9 Aug 2004 20:51:31 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i79IpTe02178; Mon, 9 Aug 2004 20:51:29 +0200 (MET DST) Date: Mon, 9 Aug 2004 20:51:29 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: John Baldwin In-Reply-To: <200408091345.48263.jhb@FreeBSD.org> Message-ID: <20040809205012.K32590@beagle.kn.op.dlr.de> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809.094110.04712576.imp@bsdimp.com> <200408091345.48263.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@freebsd.org cc: johan@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:51:35 -0000 On Mon, 9 Aug 2004, John Baldwin wrote: JB>On Monday 09 August 2004 11:54 am, Harti Brandt wrote: JB>> On Mon, 9 Aug 2004, M. Warner Losh wrote: JB>> JB>> MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> JB>> MWL>: The current man page is stunningly vague about this. It says that it JB>> MWL>: respects these environment variables, but it doesn't say they have to JB>> MWL>: be set in the enviornment to the exclusion of setting them on the JB>> MWL>: command line. JB>> MWL> JB>> MWL>So either we can make it work, or document that the variables listed JB>> MWL>in the environment section must be set as environment variables only. JB>> JB>> There is nothing to be made work. Both variables are intended to be used JB>> as environment variables. That they happend to work from the command line JB>> was a side effect of make putting its variables into the environment. JB>> Does the following clarify things enough? JB> JB>Doesn't change the fact that it can break existing scripts. I typically do JB> JB>% worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test JB> JB>on my test boxes (worldloop is a script that does a 'make buildworld "$@"' in JB>a loop). Can't be fixed I guess. Wouldn't MAKEOBJDIRPREFIX=/usr/obj.test worldloop -j 64 do the trick? harti From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:14:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EB9616A4CF for ; Mon, 9 Aug 2004 19:14:50 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00DB543D46 for ; Mon, 9 Aug 2004 19:14:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 27046 invoked from network); 9 Aug 2004 19:14:49 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 19:14:49 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79JEjHo076363; Mon, 9 Aug 2004 15:14:46 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Harti Brandt Date: Mon, 9 Aug 2004 15:00:28 -0400 User-Agent: KMail/1.6 References: <7mllgolwsk.wl@black.imgsrc.co.jp> <200408091345.48263.jhb@FreeBSD.org> <20040809205012.K32590@beagle.kn.op.dlr.de> In-Reply-To: <20040809205012.K32590@beagle.kn.op.dlr.de> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091500.28587.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:14:50 -0000 On Monday 09 August 2004 02:51 pm, Harti Brandt wrote: > On Mon, 9 Aug 2004, John Baldwin wrote: > > JB>On Monday 09 August 2004 11:54 am, Harti Brandt wrote: > JB>> On Mon, 9 Aug 2004, M. Warner Losh wrote: > JB>> > JB>> MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> > JB>> MWL>: The current man page is stunningly vague about this. It says > that it JB>> MWL>: respects these environment variables, but it doesn't say > they have to JB>> MWL>: be set in the enviornment to the exclusion of > setting them on the JB>> MWL>: command line. > JB>> MWL> > JB>> MWL>So either we can make it work, or document that the variables > listed JB>> MWL>in the environment section must be set as environment > variables only. JB>> > JB>> There is nothing to be made work. Both variables are intended to be > used JB>> as environment variables. That they happend to work from the > command line JB>> was a side effect of make putting its variables into the > environment. JB>> Does the following clarify things enough? > JB> > JB>Doesn't change the fact that it can break existing scripts. I typically > do JB> > JB>% worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test > JB> > JB>on my test boxes (worldloop is a script that does a 'make buildworld > "$@"' in JB>a loop). Can't be fixed I guess. > > Wouldn't > > MAKEOBJDIRPREFIX=/usr/obj.test worldloop -j 64 ^^ env (I'm a tcsh user). It will work, but the other one is already programmed into my brain. :-/ -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:15:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE70116A4D0 for ; Mon, 9 Aug 2004 19:15:01 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4BBC43D5D for ; Mon, 9 Aug 2004 19:15:01 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 18712 invoked from network); 9 Aug 2004 19:15:01 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 19:15:01 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79JEjHq076363; Mon, 9 Aug 2004 15:14:57 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Alfred Perlstein Date: Mon, 9 Aug 2004 15:08:22 -0400 User-Agent: KMail/1.6 References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <20040808042703.GA64746@xor.obsecurity.org> <20040808053321.GD57908@elvis.mu.org> In-Reply-To: <20040808053321.GD57908@elvis.mu.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091508.22530.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:15:01 -0000 On Sunday 08 August 2004 01:33 am, Alfred Perlstein wrote: > * Kris Kennaway [040807 21:28] wrote: > > On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > > > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > > > jhb 2004-08-04 20:31:19 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/i386/i386 pmap.c > > > > sys/kern subr_witness.c > > > > Log: > > > > Remove a potential deadlock on i386 SMP by changing the lazypmap > > > > ipi and spin-wait code to use the same spin mutex (smp_tlb_mtx) as > > > > the TLB ipi and spin-wait code snippets so that you can't get into > > > > the situation of one CPU doing a TLB shootdown to another CPU that is > > > > doing a lazy pmap shootdown each of which are waiting on each other. > > > > With this change, only one of the CPUs would do an IPI and spin-wait > > > > at a time. > > > > > > Both this patch and the previous I have tested locally and also sent > > > out to current@ for testing. However, I received zero feedback (not > > > even useless feedback), so they may theoretically be risky. > > > > Isn't this the patch I tested for you and reported that it did not fix > > the problem? > > Y'know there's some existing research on these sort of low level > deadlocks, ie. how to do TLB shootdown without deadlock in: > > "UNIX Internals: The New Frontiers" Yes, and the failsafe algorithm is to halt all CPUs, do the change, then unhalt the CPUs forcing each one to do a TLB shootdown when it unfreezes. Unfortuantely, this has a very negative performance impact as the book also details. The current code was written by Peter who is not all that dumb, Alfred. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:18:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6E2616A4CE; Mon, 9 Aug 2004 19:18:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDCA43D49; Mon, 9 Aug 2004 19:18:19 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JIJfB074994; Mon, 9 Aug 2004 19:18:19 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79JIJ4h074993; Mon, 9 Aug 2004 19:18:19 GMT (envelope-from harti) Message-Id: <200408091918.i79JIJ4h074993@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 19:18:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/crunch/crunchgen crunchgen.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:18:19 -0000 harti 2004-08-09 19:18:19 UTC FreeBSD src repository Modified files: usr.sbin/crunch/crunchgen crunchgen.c Log: Fix a 4.X -> 5.X upgrade problem: crunchgen used to emit a line 'MAKE=make' or 'env MAKEOBJDIRPREFIX=... make' depending on the setting of MAKEOBJDIRPREFIX in the environment. In any case this line kills the original value of ${MAKE}. When during buildworld a new make is built (as is the case during the upgrade) this causes a wrong make to be picked up (the first one in the path). Use the same technique as Makefile.inc1: create a MAKEENV variable and a CRUNCHMAKE that calls ${MAKE} with that MAKEENV prefixed. Use CRUNCHMAKE instead of MAKE throughout the generated makefile. This leaves the original ${MAKE} undisturbed. Revision Changes Path 1.34 +7 -7 src/usr.sbin/crunch/crunchgen/crunchgen.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:20:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AFFB16A4CE; Mon, 9 Aug 2004 19:20:10 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 518D343D48; Mon, 9 Aug 2004 19:20:05 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i79JK4X421814; Mon, 9 Aug 2004 21:20:04 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i79JK3f802854; Mon, 9 Aug 2004 21:20:03 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i79JK3e02375; Mon, 9 Aug 2004 21:20:03 +0200 (MET DST) Date: Mon, 9 Aug 2004 21:20:03 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: John Baldwin In-Reply-To: <200408091500.28587.jhb@FreeBSD.org> Message-ID: <20040809211848.L32590@beagle.kn.op.dlr.de> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <200408091345.48263.jhb@FreeBSD.org> <200408091500.28587.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@freebsd.org cc: johan@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:20:10 -0000 On Mon, 9 Aug 2004, John Baldwin wrote: JB>On Monday 09 August 2004 02:51 pm, Harti Brandt wrote: JB>> On Mon, 9 Aug 2004, John Baldwin wrote: JB>> JB>> JB>On Monday 09 August 2004 11:54 am, Harti Brandt wrote: JB>> JB>> On Mon, 9 Aug 2004, M. Warner Losh wrote: JB>> JB>> JB>> JB>> MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> JB>> JB>> MWL>: The current man page is stunningly vague about this. It says JB>> that it JB>> MWL>: respects these environment variables, but it doesn't say JB>> they have to JB>> MWL>: be set in the enviornment to the exclusion of JB>> setting them on the JB>> MWL>: command line. JB>> JB>> MWL> JB>> JB>> MWL>So either we can make it work, or document that the variables JB>> listed JB>> MWL>in the environment section must be set as environment JB>> variables only. JB>> JB>> JB>> There is nothing to be made work. Both variables are intended to be JB>> used JB>> as environment variables. That they happend to work from the JB>> command line JB>> was a side effect of make putting its variables into the JB>> environment. JB>> Does the following clarify things enough? JB>> JB> JB>> JB>Doesn't change the fact that it can break existing scripts. I typically JB>> do JB> JB>> JB>% worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test JB>> JB> JB>> JB>on my test boxes (worldloop is a script that does a 'make buildworld JB>> "$@"' in JB>a loop). Can't be fixed I guess. JB>> JB>> Wouldn't JB>> JB>> MAKEOBJDIRPREFIX=/usr/obj.test worldloop -j 64 JB> JB>^^ env JB> JB>(I'm a tcsh user). It will work, but the other one is already programmed into JB>my brain. :-/ Is that a flash or a ROM? In the first case there is some hope :-) harti From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:36:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7100C16A4CE; Mon, 9 Aug 2004 19:36:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52D1943D2F; Mon, 9 Aug 2004 19:36:53 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JarIp075524; Mon, 9 Aug 2004 19:36:53 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Jar0T075523; Mon, 9 Aug 2004 19:36:53 GMT (envelope-from kensmith) Message-Id: <200408091936.i79Jar0T075523@repoman.freebsd.org> From: Ken Smith Date: Mon, 9 Aug 2004 19:36:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:36:53 -0000 kensmith 2004-08-09 19:36:53 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: Shift to the same version of perl that portmgr@ has as their default. Pointed out by: jhb Revision Changes Path 1.63 +1 -1 src/release/scripts/print-cdrom-packages.sh From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:49:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3AED16A4CE; Mon, 9 Aug 2004 19:49:26 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40E5D43D41; Mon, 9 Aug 2004 19:49:26 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i79JnJpU016819; Mon, 9 Aug 2004 21:49:19 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i79JnIpW016818; Mon, 9 Aug 2004 21:49:18 +0200 (CEST) (envelope-from k) Date: Mon, 9 Aug 2004 21:49:18 +0200 From: Johan Karlsson To: Will Andrews Message-ID: <20040809194918.GA7261@numeri.campus.luth.se> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809185031.GX26004@sirius.firepipe.net> User-Agent: Mutt/1.4.2.1i cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Nicolas Souchu cc: cvs-all@FreeBSD.org cc: Roman Kurakin cc: Ruslan Ermilov cc: Wilko Bulte Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:49:27 -0000 On Mon, Aug 09, 2004 at 13:50 (-0500), Will Andrews wrote: > On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > > date format yet invented :-P > > It's not as bad as the European DDMMYYYY. :P At least DDMMYYYY is in increasing order of magnitude :-) MMDDYYYY is in no order at all. /Johan K -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 19:52:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF6A816A4CE; Mon, 9 Aug 2004 19:52:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5CB343D2D; Mon, 9 Aug 2004 19:52:29 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JqTUj076246; Mon, 9 Aug 2004 19:52:29 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79JqT4B076245; Mon, 9 Aug 2004 19:52:29 GMT (envelope-from green) Message-Id: <200408091952.i79JqT4B076245@repoman.freebsd.org> From: Brian Feldman Date: Mon, 9 Aug 2004 19:52:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:52:30 -0000 green 2004-08-09 19:52:29 UTC FreeBSD src repository Modified files: sys/vm vm_kern.c vm_map.c vm_map.h Log: Revamp VM map wiring. * Allow no-fault wiring/unwiring to succeed for consistency; however, the wired count remains at zero, so it's a special case. * Fix issues inside vm_map_wire() and vm_map_unwire() where the exact state of user wiring (one or zero) and system wiring (zero or more) could be confused; for example, system unwiring could succeed in removing a user wire, instead of being an error. * Require all mappings to be unwired before they are deleted. When VM space is still wired upon deletion, it will be waited upon for the following unwire. This makes vslock(9) work rather than allowing kernel-locked memory to be deleted out from underneath of its consumer as it would before. Revision Changes Path 1.119 +4 -0 src/sys/vm/vm_kern.c 1.353 +32 -14 src/sys/vm/vm_map.c 1.114 +14 -0 src/sys/vm/vm_map.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:03:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40ADC16A4CE; Mon, 9 Aug 2004 20:03:35 +0000 (GMT) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i79K3Y1v078074; Mon, 9 Aug 2004 16:03:34 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i79K3Yrb078073; Mon, 9 Aug 2004 16:03:34 -0400 (EDT) (envelope-from green) Date: Mon, 9 Aug 2004 16:03:33 -0400 From: Brian Fundakowski Feldman To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040809200333.GD14657@green.homeunix.org> References: <200408091952.i79JqT4B076245@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408091952.i79JqT4B076245@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:03:35 -0000 On Mon, Aug 09, 2004 at 07:52:29PM +0000, Brian Feldman wrote: > green 2004-08-09 19:52:29 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_kern.c vm_map.c vm_map.h > Log: > Revamp VM map wiring. > > * Allow no-fault wiring/unwiring to succeed for consistency; > however, the wired count remains at zero, so it's a special case. > > * Fix issues inside vm_map_wire() and vm_map_unwire() where the > exact state of user wiring (one or zero) and system wiring > (zero or more) could be confused; for example, system unwiring > could succeed in removing a user wire, instead of being an > error. > > * Require all mappings to be unwired before they are deleted. > When VM space is still wired upon deletion, it will be waited > upon for the following unwire. This makes vslock(9) work > rather than allowing kernel-locked memory to be deleted > out from underneath of its consumer as it would before. Tor Egge and Alan Cox have each fundamentally agreed to different parts of these changes, but I never got a concensus in review. Alan pointed out that it's somewhat bogus to make all no-fault system mappings transparently succeed for wiring and unwiring, but I erred on the side of consistency, that if memory was freed using kmem_free(), it was assumed to be either wired or no-fault. That assumption can be pushed back upward into kmem_free() or the callers without making things too messy. There are additional changes I have locally in the VM area that I think are important or useful. VM wiring can create a whole- system deadlock that unlike other low-memory deadlocks, cannot be broken out of because of vm_waitpfault(). Also, as it is demonstrated by the new version of ntpd, VM wiring cannot cope with VM area which has PROT_NONE protection; it is not hard to modify, as Alan suggests, pmap to support the idea of wired but inaccessible pages, but I have only done this for i386. One would wonder why ntpd wants to have any PROT_NONE mappings, but those mappings should not necessarily preclude mlockall(2). -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:04:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EABE716A4CE; Mon, 9 Aug 2004 20:04:58 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC27843D5E; Mon, 9 Aug 2004 20:04:58 +0000 (GMT) (envelope-from billf@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1098) id D03B35C917; Mon, 9 Aug 2004 13:04:58 -0700 (PDT) Date: Mon, 9 Aug 2004 13:04:58 -0700 From: Bill Fumerola To: Johan Karlsson Message-ID: <20040809200458.GO92696@elvis.mu.org> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809194918.GA7261@numeri.campus.luth.se> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-MUORG-20040525 i386 X-PGP-Key: 1024D/7F868268 X-PGP-Fingerprint: 5B2D 908E 4C2B F253 DAEB FC01 8436 B70B 7F86 8268 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:04:59 -0000 On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: > MMDDYYYY is in no order at all. european calendars with 31 pages and up to 12 squares on each page must sure look funny. -- - bill fumerola / fumerola@yahoo-inc.com / billf@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:13:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6D5016A4CE; Mon, 9 Aug 2004 20:13:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B7A43D2F; Mon, 9 Aug 2004 20:13:07 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KD7Lm076911; Mon, 9 Aug 2004 20:13:07 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KD7TR076910; Mon, 9 Aug 2004 20:13:07 GMT (envelope-from julian) Message-Id: <200408092013.i79KD7TR076910@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 20:13:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:13:08 -0000 julian 2004-08-09 20:13:07 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Remove typos on KASSERT messages. Revision Changes Path 1.214 +3 -3 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:16:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C0A16A4CE; Mon, 9 Aug 2004 20:16:41 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F3AE43D1F; Mon, 9 Aug 2004 20:16:41 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i79KGeTH007589; Mon, 9 Aug 2004 16:16:40 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i79KGevi007587; Mon, 9 Aug 2004 16:16:40 -0400 (EDT) Date: Mon, 9 Aug 2004 16:16:40 -0400 From: Ken Smith To: Bill Fumerola Message-ID: <20040809201640.GA7436@electra.cse.Buffalo.EDU> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> <20040809200458.GO92696@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809200458.GO92696@elvis.mu.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Johan Karlsson Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:16:42 -0000 On Mon, Aug 09, 2004 at 01:04:58PM -0700, Bill Fumerola wrote: > On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: > > MMDDYYYY is in no order at all. > > european calendars with 31 pages and up to 12 squares on each page must > sure look funny. Just think of all the extra pictures of {swimsuit-clad-models | playmates | cars | whatever-your-pleasure}!!! :-) -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:19:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5601116A4CE; Mon, 9 Aug 2004 20:19:33 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E2B543D55; Mon, 9 Aug 2004 20:19:32 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i79KJVBQ030887; Mon, 9 Aug 2004 22:19:31 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bill Fumerola From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 09 Aug 2004 13:04:58 PDT." <20040809200458.GO92696@elvis.mu.org> Date: Mon, 09 Aug 2004 22:19:31 +0200 Message-ID: <30886.1092082771@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Johan Karlsson Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:19:33 -0000 In message <20040809200458.GO92696@elvis.mu.org>, Bill Fumerola writes: >On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: >> MMDDYYYY is in no order at all. > >european calendars with 31 pages and up to 12 squares on each page must >sure look funny. Actually, it's perfectly natural when done with metric units :-) -- 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. From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:22:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CBB916A4CE; Mon, 9 Aug 2004 20:22:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E33643D45; Mon, 9 Aug 2004 20:22:17 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KMH46077184; Mon, 9 Aug 2004 20:22:17 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KMH1x077183; Mon, 9 Aug 2004 20:22:17 GMT (envelope-from green) Message-Id: <200408092022.i79KMH1x077183@repoman.freebsd.org> From: Brian Feldman Date: Mon, 9 Aug 2004 20:22:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_rl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:22:17 -0000 green 2004-08-09 20:22:17 UTC FreeBSD src repository Modified files: sys/pci if_rl.c Log: Fix rl(4)'s lock behavior upon deinitialization. I would get a panic when kldunloading due to its private locking being acquired recursively. Revision Changes Path 1.145 +6 -5 src/sys/pci/if_rl.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:36:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E84A16A4CE; Mon, 9 Aug 2004 20:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3035543D48; Mon, 9 Aug 2004 20:36:04 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ka4H0077701; Mon, 9 Aug 2004 20:36:04 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ka45X077700; Mon, 9 Aug 2004 20:36:04 GMT (envelope-from julian) Message-Id: <200408092036.i79Ka45X077700@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 20:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:36:04 -0000 julian 2004-08-09 20:36:04 UTC FreeBSD src repository Modified files: sys/kern kern_switch.c Log: Make kg->kg_runnable actually count runnable threads in the ksegrp run queue instead of only doing it sometimes.. This is not used outdide of debugging code in the current code, but that will probably change. Revision Changes Path 1.77 +5 -4 src/sys/kern/kern_switch.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:44:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEE7316A4D3; Mon, 9 Aug 2004 20:44:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D103743D49; Mon, 9 Aug 2004 20:44:41 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KifOp077985; Mon, 9 Aug 2004 20:44:41 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KifUN077984; Mon, 9 Aug 2004 20:44:41 GMT (envelope-from marcel) Message-Id: <200408092044.i79KifUN077984@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 9 Aug 2004 20:44:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 pmap.c src/sys/ia64/include pte.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:44:42 -0000 marcel 2004-08-09 20:44:41 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c sys/ia64/include pte.h Log: Better preserve the original protection for the mappings we maintain. The hardware always gives read access for privilege level 0, which means that we cannot use the hardware access rights and privilege level in the PTE to test whether there's a change in protection. So, we save the original vm_prot_t in the PTE as well. Add pmap_pte_prot() to set the proper access rights and privilege level on the PTE given a pmap and the requested protection. The above allows us to compare the protection in pmap_extract_and_hold() which was missing. While in pmap_extract_and_hold(), add pmap locking. While here, clean up most (i.e. all but one) PTE macros we inherited from alpha. They were either unused, used inconsistently, badly named or simply weren't beneficial. We save the wired and managed state of the PTE in distinct (bit) fields. While in pte.h, s/u_int64_t/uint64_t/g pmap locking obtained from: alc@ feedback & review by: alc@ Revision Changes Path 1.146 +92 -171 src/sys/ia64/ia64/pmap.c 1.3 +46 -49 src/sys/ia64/include/pte.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:52:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B95916A4CE; Mon, 9 Aug 2004 20:52:11 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BC8243D4C; Mon, 9 Aug 2004 20:52:10 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i79Kq34b095812 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 23:52:04 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i79Kq4l6057125; Mon, 9 Aug 2004 23:52:04 +0300 (EEST) (envelope-from ru) Date: Mon, 9 Aug 2004 23:52:04 +0300 From: Ruslan Ermilov To: Wilko Bulte Message-ID: <20040809205204.GD56431@ip.net.ua> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/unnNtmY43mpUSKx" Content-Disposition: inline In-Reply-To: <20040809184508.GB60120@freebie.xs4all.nl> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:52:11 -0000 --/unnNtmY43mpUSKx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > On Mon, Aug 09, 2004 at 01:42:06PM +0300, Ruslan Ermilov wrote.. > > On Mon, Aug 09, 2004 at 02:15:30PM +0400, Roman Kurakin wrote: > > > What is correct order in this file, by first name or by last name? > > >=20 > > The correct order here is: > >=20 > > - by month, > > - by day, > > - by year > > - in case there's still a full match, by freefall login name. >=20 > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > date format yet invented :-P >=20 > >=20 ``man calendar'': "Other lines should begin with a month and day." The year is at the end of the line, so sorting by YYYYMMDD would be a nightmare to maintain. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --/unnNtmY43mpUSKx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF+P0qRfpzJluFF4RAhZLAJ0aW2VRW5mmEJ+VJBSgWeUSqgwlAACeIyAl 7Giqu/O2ftOCax2WZN/OLdI= =cZKt -----END PGP SIGNATURE----- --/unnNtmY43mpUSKx-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 20:52:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C57EA16A4CF; Mon, 9 Aug 2004 20:52:21 +0000 (GMT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A7043D45; Mon, 9 Aug 2004 20:52:21 +0000 (GMT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.10/8.12.10) with ESMTP id i79KqKJt015670 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 16:52:20 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.12.9p2/8.12.9/Submit) id i79KqF1x084518; Mon, 9 Aug 2004 16:52:15 -0400 (EDT) (envelope-from gallatin) Date: Mon, 9 Aug 2004 16:52:15 -0400 From: Andrew Gallatin To: Brian Feldman Message-ID: <20040809165215.A84463@grasshopper.cs.duke.edu> References: <200408091952.i79JqT4B076245@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: <200408091952.i79JqT4B076245@repoman.freebsd.org>; from green@FreeBSD.org on Mon, Aug 09, 2004 at 07:52:29PM +0000 X-Operating-System: FreeBSD 4.9-RELEASE-p1 on an i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:52:21 -0000 Brian Feldman [green@FreeBSD.org] wrote: > * Require all mappings to be unwired before they are deleted. > When VM space is still wired upon deletion, it will be waited > upon for the following unwire. This makes vslock(9) work > rather than allowing kernel-locked memory to be deleted > out from underneath of its consumer as it would before. Can you explain in a little more detail what would happen now in the following scenario: An application running in userspace allocates SIZE bytes at "addr", either with an mmap or via sbrk. Then something in the kernel calls: vm_map_wire(map, addr, addr + SIZE, TRUE) on its behalf. Then the application frees (or munmaps) "addr". Does the application sleep waiting for something to unwire addr+SIZE? Thanks, Drew From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:01:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49B0B16A4CF; Mon, 9 Aug 2004 21:01:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DCD143D41; Mon, 9 Aug 2004 21:01:49 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79L1n0t078621; Mon, 9 Aug 2004 21:01:49 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79L1nD8078620; Mon, 9 Aug 2004 21:01:49 GMT (envelope-from anholt) Message-Id: <200408092101.i79L1nD8078620@repoman.freebsd.org> From: Eric Anholt Date: Mon, 9 Aug 2004 21:01:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci agp_via.c agpreg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:01:49 -0000 anholt 2004-08-09 21:01:49 UTC FreeBSD src repository Modified files: sys/pci agp_via.c agpreg.h Log: Minimal fix to prevent crashes when an AGP v2 card is used with the new v3 VIA chipsets, based on Linux's via-agp.c. On boot, the system selects which AGP version to use based on the inserted card. If v2 was chosen, the chipset needs to be programmed with the v2 registers still. Also included in kern/69953 are changes to make the programming of the v3 registers match linux, but that will be left out until the need to do so is confirmed (want specs or a tester). PR: kern/69953 Submitted by: Oleg Sharoiko Tested by: Oleg Sharoiko , Geoff Speicher (full version from PR) Revision Changes Path 1.17 +11 -1 src/sys/pci/agp_via.c 1.12 +1 -0 src/sys/pci/agpreg.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:05:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74B3816A4D0 for ; Mon, 9 Aug 2004 21:05:00 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [80.86.187.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C81A43D45 for ; Mon, 9 Aug 2004 21:04:59 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: (qmail 21180 invoked from network); 9 Aug 2004 21:04:45 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (80.86.187.43) by avocado.salatschuessel.net with SMTP; 9 Aug 2004 21:04:45 -0000 Date: Mon, 9 Aug 2004 23:04:55 +0200 From: Oliver Lehmann To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-Id: <20040809230455.48e93144.oliver@FreeBSD.org> In-Reply-To: <200408072114.i77LEorM076643@repoman.freebsd.org> References: <200408072114.i77LEorM076643@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:05:00 -0000 Nicolas Souchu wrote: > nsouch 2004-08-07 21:14:50 UTC > > FreeBSD src repository > > Modified files: > usr.bin/calendar/calendars calendar.freebsd > Log: > 10 born in France now! Hm.,. btw: As an ports committer, do I need an "Approved By" to commit to that file? :) -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:08:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08DFA16A4CE; Mon, 9 Aug 2004 21:08:12 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B0B143D1F; Mon, 9 Aug 2004 21:08:11 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79L7de1064287; Mon, 9 Aug 2004 15:07:45 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 15:07:41 -0600 (MDT) Message-Id: <20040809.150741.46316056.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <30886.1092082771@critter.freebsd.dk> References: <20040809200458.GO92696@elvis.mu.org> <30886.1092082771@critter.freebsd.dk> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: billf@FreeBSD.org cc: cvs-all@FreeBSD.org cc: johan@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:08:12 -0000 In message: <30886.1092082771@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <20040809200458.GO92696@elvis.mu.org>, Bill Fumerola writes: : >On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: : >> MMDDYYYY is in no order at all. : > : >european calendars with 31 pages and up to 12 squares on each page must : >sure look funny. : : Actually, it's perfectly natural when done with metric units :-) I long for the time when there will be 100 days per year. Of course, staying up for 58 hours and sleeping 29 hours and that pesky light/dark cycles would be hard to get around... Warner From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:08:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1951E16A4CE for ; Mon, 9 Aug 2004 21:08:30 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id B33F643D1D for ; Mon, 9 Aug 2004 21:08:29 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79L5Zqm064285; Mon, 9 Aug 2004 15:05:35 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 15:05:37 -0600 (MDT) Message-Id: <20040809.150537.96131820.imp@bsdimp.com> To: johan@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20040809194918.GA7261@numeri.campus.luth.se> References: <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:08:30 -0000 In message: <20040809194918.GA7261@numeri.campus.luth.se> Johan Karlsson writes: : On Mon, Aug 09, 2004 at 13:50 (-0500), Will Andrews wrote: : > On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: : > > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst : > > date format yet invented :-P : > : > It's not as bad as the European DDMMYYYY. :P : : At least DDMMYYYY is in increasing order of magnitude :-) : : MMDDYYYY is in no order at all. But YYYYMMDD is sortable w/o a special date type! Warner From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:11:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168B416A4CE; Mon, 9 Aug 2004 21:11:28 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E1CF43D2F; Mon, 9 Aug 2004 21:11:27 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i79LB7mE097020 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 00:11:08 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i79LB92R057320; Tue, 10 Aug 2004 00:11:09 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 00:11:09 +0300 From: Ruslan Ermilov To: "M. Warner Losh" Message-ID: <20040809211109.GG56431@ip.net.ua> References: <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> <20040809.150537.96131820.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0XhtP95kHFp3KGBe" Content-Disposition: inline In-Reply-To: <20040809.150537.96131820.imp@bsdimp.com> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: cvs-all@FreeBSD.org cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:11:28 -0000 --0XhtP95kHFp3KGBe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 03:05:37PM -0600, M. Warner Losh wrote: > In message: <20040809194918.GA7261@numeri.campus.luth.se> > Johan Karlsson writes: > : On Mon, Aug 09, 2004 at 13:50 (-0500), Will Andrews wrote: > : > On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > : > > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > : > > date format yet invented :-P > : >=20 > : > It's not as bad as the European DDMMYYYY. :P > :=20 > : At least DDMMYYYY is in increasing order of magnitude :-) > :=20 > : MMDDYYYY is in no order at all. >=20 > But YYYYMMDD is sortable w/o a special date type! >=20 calendar(1) doesn't support years, full stop. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --0XhtP95kHFp3KGBe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF+htqRfpzJluFF4RAst3AJ9Kl6cyn1kGn6lRygilGccAND+fVgCfRarJ MDwiX3cgdCY0YXe3TriO4GY= =1ak7 -----END PGP SIGNATURE----- --0XhtP95kHFp3KGBe-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:14:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 047E616A4CE; Mon, 9 Aug 2004 21:14:29 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF24943D2F; Mon, 9 Aug 2004 21:14:28 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 9E3D1407A; Mon, 9 Aug 2004 23:14:27 +0200 (CEST) Received: from plouf.absolight.net ([127.0.0.1])port 20024) with ESMTP id 85461-16; Mon, 9 Aug 2004 23:14:21 +0200 (CEST) X-Original-To: src-committers@FreeBSD.org X-Original-To: oliver@FreeBSD.org X-Original-To: cvs-src@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id CDBA1402B; Mon, 9 Aug 2004 23:14:20 +0200 (CEST) Date: Mon, 09 Aug 2004 23:14:15 +0200 From: Mathieu Arnold To: Oliver Lehmann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: In-Reply-To: <20040809230455.48e93144.oliver@FreeBSD.org> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <20040809230455.48e93144.oliver@FreeBSD.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========208D6819A1B9DCC1A750==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.477 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:14:29 -0000 --==========208D6819A1B9DCC1A750========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 09/08/2004 23:04 +0200, Oliver Lehmann a dit : | Nicolas Souchu wrote: | |> nsouch 2004-08-07 21:14:50 UTC |> |> FreeBSD src repository |> |> Modified files: |> usr.bin/calendar/calendars calendar.freebsd |> Log: |> 10 born in France now! | | Hm.,. btw: As an ports committer, do I need an "Approved By" to commit to | that file? :) Only if you feel you can make a mistake :-) -- Mathieu Arnold --==========208D6819A1B9DCC1A750========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRfpK1vROjYJ63c1AQIMNAf/U9Sn0wXYCbo7Xiv6w4z2eOaJj//fr8SH 24Z6xK5zT8IRlWl0AMCfItY9u7tvjm22c0XYEc9MffYcmzKjNResdL3WhyZ/SlZb BzMMzbnzz3YWry0b9XZSprdcmZxPIO1umtUvLq77CA/SO7T2HmQC0spkhineYp/4 WJ53VRBniiUQW/S+Ca/NkxfdnuvWqpr9TO1QKXdnsbeX29XdxzriurqsiC51vexe EiWMGz2SoIlkhqZHMle23PL5ObVn5KQxxyDdLWwZxqmg4J9VGg9JEYMEtaaGvmWj kEOcnXjIz/th0/ZWSMz0pbp+c5gn/TdB5iuFRBN7BbVXs2UVmgfLqw== =xXdH -----END PGP SIGNATURE----- --==========208D6819A1B9DCC1A750==========-- From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:32:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 705B016A4CE; Mon, 9 Aug 2004 21:32:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F1743D6A; Mon, 9 Aug 2004 21:32:25 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LWPwT079660; Mon, 9 Aug 2004 21:32:25 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LWPaC079659; Mon, 9 Aug 2004 21:32:25 GMT (envelope-from oliver) Message-Id: <200408092132.i79LWPaC079659@repoman.freebsd.org> From: Oliver Lehmann Date: Mon, 9 Aug 2004 21:32:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:32:25 -0000 oliver 2004-08-09 21:32:25 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: There was a star danced, and under that was I born. -- Shakespeare in "Much Ado About Nothing" Add my birthday in case someone cares someday... Revision Changes Path 1.131 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:47:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34C1216A4CE; Mon, 9 Aug 2004 21:47:03 +0000 (GMT) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i79Ll2D3078740; Mon, 9 Aug 2004 17:47:02 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i79Ll2er078734; Mon, 9 Aug 2004 17:47:02 -0400 (EDT) (envelope-from green) Date: Mon, 9 Aug 2004 17:47:01 -0400 From: Brian Fundakowski Feldman To: Andrew Gallatin Message-ID: <20040809214701.GE14657@green.homeunix.org> References: <200408091952.i79JqT4B076245@repoman.freebsd.org> <20040809165215.A84463@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809165215.A84463@grasshopper.cs.duke.edu> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:47:03 -0000 On Mon, Aug 09, 2004 at 04:52:15PM -0400, Andrew Gallatin wrote: > Brian Feldman [green@FreeBSD.org] wrote: > > > * Require all mappings to be unwired before they are deleted. > > When VM space is still wired upon deletion, it will be waited > > upon for the following unwire. This makes vslock(9) work > > rather than allowing kernel-locked memory to be deleted > > out from underneath of its consumer as it would before. > > Can you explain in a little more detail what would happen now in the > following scenario: > > An application running in userspace allocates SIZE bytes at "addr", > either with an mmap or via sbrk. Then something in the kernel calls: > vm_map_wire(map, addr, addr + SIZE, TRUE) on its behalf. > Then the application frees (or munmaps) "addr". > > Does the application sleep waiting for something to unwire addr+SIZE? Yes, that is exactly what happens (replace TRUE with appropriate current flags); is there some other behavior you would expect to see? -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:50:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9257C16A4CE; Mon, 9 Aug 2004 21:50:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89FD643D48; Mon, 9 Aug 2004 21:50:10 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LoALl080108; Mon, 9 Aug 2004 21:50:10 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LoA81080107; Mon, 9 Aug 2004 21:50:10 GMT (envelope-from simon) Message-Id: <200408092150.i79LoA81080107@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 9 Aug 2004 21:50:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall config.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:50:10 -0000 simon 2004-08-09 21:50:10 UTC FreeBSD src repository (doc committer) Modified files: usr.sbin/sysinstall config.c Log: During FTP installs, when installing Postfix as an alternate MTA, the install of Postfix fails since Postfix 1 is picked from INDEX instead of Postfix 2. The problem is that the package_add function matches multiple Postfix packages and then installs a "random" version (the last one found in INDEX). This does not occur with a CD-ROM install since there is only one Postfix package on the CD-ROM. The correct solution to this would be to check the origin field from INDEX instead of the package name, but due to the way sysinstall is made that is not trivial, so instead work around the problem by hard-coding the Postfix major and minor revision (for the current stable version) to install directly into the package_add call. PR: misc/65426 Reported by: Harold Kachelmyer Approved by: trhodes Revision Changes Path 1.224 +1 -1 src/usr.sbin/sysinstall/config.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:57:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BCF816A4CE; Mon, 9 Aug 2004 21:57:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2ED543D41; Mon, 9 Aug 2004 21:57:30 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LvUTE080386; Mon, 9 Aug 2004 21:57:30 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LvUwc080385; Mon, 9 Aug 2004 21:57:30 GMT (envelope-from julian) Message-Id: <200408092157.i79LvUwc080385@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 21:57:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:57:31 -0000 julian 2004-08-09 21:57:30 UTC FreeBSD src repository Modified files: sys/kern kern_kse.c Log: Slight changes to comments and some whitespace changes. Revision Changes Path 1.193 +10 -3 src/sys/kern/kern_kse.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 22:27:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 520D116A4CE; Mon, 9 Aug 2004 22:27:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 357F043D48; Mon, 9 Aug 2004 22:27:34 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79MRYj6081225; Mon, 9 Aug 2004 22:27:34 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79MRYwW081224; Mon, 9 Aug 2004 22:27:34 GMT (envelope-from simon) Message-Id: <200408092227.i79MRYwW081224@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 9 Aug 2004 22:27:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 twa.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 22:27:34 -0000 simon 2004-08-09 22:27:34 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 twa.4 Log: - Add a HARDWARE section which lists supported devices. Revision Changes Path 1.2 +18 -15 src/share/man/man4/twa.4 From owner-cvs-src@FreeBSD.ORG Mon Aug 9 22:33:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 920EC16A4CE; Mon, 9 Aug 2004 22:33:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 735E243D2D; Mon, 9 Aug 2004 22:33:20 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79MXKoW081409; Mon, 9 Aug 2004 22:33:20 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79MXKpM081408; Mon, 9 Aug 2004 22:33:20 GMT (envelope-from simon) Message-Id: <200408092233.i79MXKpM081408@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 9 Aug 2004 22:33:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 22:33:20 -0000 simon 2004-08-09 22:33:20 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/share/misc dev.archlist.txt Log: Add twa(4) to the Hardware Notes. Revision Changes Path 1.224 +2 -0 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.3 +1 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Mon Aug 9 23:24:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 270CE16A4CE; Mon, 9 Aug 2004 23:24:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A0B143D2F; Mon, 9 Aug 2004 23:24:23 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79NOMUU082744; Mon, 9 Aug 2004 23:24:22 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79NOMNc082743; Mon, 9 Aug 2004 23:24:22 GMT (envelope-from julian) Message-Id: <200408092324.i79NOMNc082743@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 23:24:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 23:24:23 -0000 julian 2004-08-09 23:24:22 UTC FreeBSD src repository Modified files: sys/sys proc.h Log: Clean up and add coments. reserve some bits in flag words for upcoming work. Note the unused bits so they can be found easier. Revision Changes Path 1.391 +66 -35 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Mon Aug 9 23:57:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F4916A4CE; Mon, 9 Aug 2004 23:57:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B235443D31; Mon, 9 Aug 2004 23:57:59 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Nvx1p083629; Mon, 9 Aug 2004 23:57:59 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Nvxmb083628; Mon, 9 Aug 2004 23:57:59 GMT (envelope-from davidxu) Message-Id: <200408092357.i79Nvxmb083628@repoman.freebsd.org> From: David Xu Date: Mon, 9 Aug 2004 23:57:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 trap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 23:58:00 -0000 davidxu 2004-08-09 23:57:59 UTC FreeBSD src repository Modified files: sys/amd64/amd64 trap.c Log: In syscall, always make a copy of parameters from trapframe, this becauses some syscalls using set_mcontext can sneakily change parameters and later when those syscalls references parameters, they will wrongly use register values in mcontext_t. Approved by: peter Revision Changes Path 1.278 +9 -12 src/sys/amd64/amd64/trap.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 00:26:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3261216A4CE; Tue, 10 Aug 2004 00:26:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1535F43D58; Tue, 10 Aug 2004 00:26:26 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A0QPog085813; Tue, 10 Aug 2004 00:26:25 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A0QP17085812; Tue, 10 Aug 2004 00:26:25 GMT (envelope-from scottl) Message-Id: <200408100026.i7A0QP17085812@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Aug 2004 00:26:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 00:26:26 -0000 scottl 2004-08-10 00:26:25 UTC FreeBSD src repository Modified files: sys/kern kern_switch.c Log: Add a temporary debugging hack to detect a deadlock in setrunqueue(). This is here so that we can gather stats on the nature of the recent rash of hard lockups, and in this particular case panic the machine instead of letting it deadlock forever. Revision Changes Path 1.78 +7 -0 src/sys/kern/kern_switch.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 00:38:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96C4516A4CE; Tue, 10 Aug 2004 00:38:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7877443D45; Tue, 10 Aug 2004 00:38:50 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A0co04086158; Tue, 10 Aug 2004 00:38:50 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A0coVa086157; Tue, 10 Aug 2004 00:38:50 GMT (envelope-from emax) Message-Id: <200408100038.i7A0coVa086157@repoman.freebsd.org> From: Maksim Yevmenkin Date: Tue, 10 Aug 2004 00:38:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/bluetooth/include ng_hci.h src/usr.sbin/bluetooth/hccontrol link_control.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 00:38:50 -0000 emax 2004-08-10 00:38:50 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/include ng_hci.h usr.sbin/bluetooth/hccontrol link_control.c Log: Introduce ng_hci_inquiry_response structure and use it in the hccontrol(8) Revision Changes Path 1.4 +10 -7 src/sys/netgraph/bluetooth/include/ng_hci.h 1.8 +1 -8 src/usr.sbin/bluetooth/hccontrol/link_control.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 01:01:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 031F116A4CE; Tue, 10 Aug 2004 01:01:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9F4E43D53; Tue, 10 Aug 2004 01:01:54 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A11sHg086809; Tue, 10 Aug 2004 01:01:54 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A11sTj086808; Tue, 10 Aug 2004 01:01:54 GMT (envelope-from des) Message-Id: <200408100101.i7A11sTj086808@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 10 Aug 2004 01:01:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libfetch http.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:01:55 -0000 des 2004-08-10 01:01:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) lib/libfetch http.c Log: MFC: (1.73) allocate space for terminating NUL in base 64 encoded string. Revision Changes Path 1.13.2.25 +1 -1 src/lib/libfetch/http.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 01:08:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0331E16A4CE; Tue, 10 Aug 2004 01:08:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A8543D2F; Tue, 10 Aug 2004 01:08:18 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A18IpG086998; Tue, 10 Aug 2004 01:08:18 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A18IP1086997; Tue, 10 Aug 2004 01:08:18 GMT (envelope-from des) Message-Id: <200408100108.i7A18IP1086997@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 10 Aug 2004 01:08:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.bin/fetch fetch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:08:19 -0000 des 2004-08-10 01:08:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/fetch fetch.c Log: MFC: (1.69) truncate long file names in progress meter (1.70) style nits (1.71) don't strip trailing whitespace from passwords Revision Changes Path 1.10.2.25 +12 -13 src/usr.bin/fetch/fetch.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 01:32:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1647A16A4CE; Tue, 10 Aug 2004 01:32:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDB5743D1D; Tue, 10 Aug 2004 01:32:05 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1W5SO088678; Tue, 10 Aug 2004 01:32:05 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1W5D0088677; Tue, 10 Aug 2004 01:32:05 GMT (envelope-from njl) Message-Id: <200408100132.i7A1W5D0088677@repoman.freebsd.org> From: Nate Lawson Date: Tue, 10 Aug 2004 01:32:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:32:06 -0000 njl 2004-08-10 01:32:05 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c vfs_subr.c Log: Skip the syncing disks loop if there are no dirty buffers. Remove a variable used to flag the initial printf. Submitted by: truckman (earlier version) Revision Changes Path 1.162 +13 -5 src/sys/kern/kern_shutdown.c 1.519 +1 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 01:49:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2684E16A4CE; Tue, 10 Aug 2004 01:49:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F03F43D41; Tue, 10 Aug 2004 01:49:47 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1nliB089226; Tue, 10 Aug 2004 01:49:47 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1nkDt089225; Tue, 10 Aug 2004 01:49:46 GMT (envelope-from csjp) Message-Id: <200408100149.i7A1nkDt089225@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Tue, 10 Aug 2004 01:49:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/watch watch.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:49:47 -0000 csjp 2004-08-10 01:49:46 UTC FreeBSD src repository Modified files: usr.sbin/watch watch.c Log: By default, the watch utility will attempt to open /dev/snp0, if another process already has /dev/snp0 open, the snp(4) will return EBUSY, in which case watch will try to open /dev/snp1..9. Currently watch does not check errno to see if the failure was a result of EBUSY. This results in watch making futile attempts to open snp0..snp9 even though devices may not exist or the caller does not have permissions to access the device. In addition to this, it attempts to setup the screen for snooping even though it may not ever get an snp device. So this patch does two things 1) Checks errno for EBUSY, if open(2) fails for another reason print that reason and exit. 2) setup the terminal for snooping after the snp descriptor has been obtained. Approved by: bmilekic (mentor) Revision Changes Path 1.31 +7 -3 src/usr.sbin/watch/watch.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 02:08:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4961A16A4CE; Tue, 10 Aug 2004 02:08:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D55A43D5A; Tue, 10 Aug 2004 02:08:58 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A28wPF090070; Tue, 10 Aug 2004 02:08:58 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A28w88090069; Tue, 10 Aug 2004 02:08:58 GMT (envelope-from marcel) Message-Id: <200408100208.i7A28w88090069@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 10 Aug 2004 02:08:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/efi/loader main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:08:58 -0000 marcel 2004-08-10 02:08:58 UTC FreeBSD src repository Modified files: sys/boot/efi/loader main.c Log: Catch up with change to . Revision Changes Path 1.21 +8 -9 src/sys/boot/efi/loader/main.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 02:18:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D97616A55D; Tue, 10 Aug 2004 02:18:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71CD943D45; Tue, 10 Aug 2004 02:18:28 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A2ISWu090392; Tue, 10 Aug 2004 02:18:28 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A2ISVL090391; Tue, 10 Aug 2004 02:18:28 GMT (envelope-from kensmith) Message-Id: <200408100218.i7A2ISVL090391@repoman.freebsd.org> From: Ken Smith Date: Tue, 10 Aug 2004 02:18:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall config.c dist.c dist.h menus.c sysinstall.8 sysinstall.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:18:28 -0000 kensmith 2004-08-10 02:18:28 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall config.c dist.c dist.h menus.c sysinstall.8 sysinstall.h Log: Initial pass at shifting sysinstall(8) to install X.org instead of XFree86. There are still a few nits to work out (graphical config non-functional). Patches by: anholt@, adapted slightly Reviewed by: 'make release' Revision Changes Path 1.225 +7 -7 src/usr.sbin/sysinstall/config.c 1.233 +35 -64 src/usr.sbin/sysinstall/dist.c 1.61 +31 -23 src/usr.sbin/sysinstall/dist.h 1.394 +79 -72 src/usr.sbin/sysinstall/menus.c 1.63 +28 -96 src/usr.sbin/sysinstall/sysinstall.8 1.261 +9 -13 src/usr.sbin/sysinstall/sysinstall.h From owner-cvs-src@FreeBSD.ORG Tue Aug 10 03:23:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2EA316A4CE; Tue, 10 Aug 2004 03:23:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C628E43D49; Tue, 10 Aug 2004 03:23:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A3N5uq092333; Tue, 10 Aug 2004 03:23:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A3N5j2092332; Tue, 10 Aug 2004 03:23:05 GMT (envelope-from rwatson) Message-Id: <200408100323.i7A3N5j2092332@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Aug 2004 03:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netatalk aarp.c ddp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 03:23:06 -0000 rwatson 2004-08-10 03:23:05 UTC FreeBSD src repository Modified files: sys/netatalk aarp.c ddp_input.c Log: Inline umich license from COPYRIGHT to make it clear what license the umich copyright is asserting. Clarify that the copyright I'm asserting is the standard Berkeley license. Remove Giant assertions from AARP and DDP input routines. Revision Changes Path 1.33 +47 -3 src/sys/netatalk/aarp.c 1.26 +45 -4 src/sys/netatalk/ddp_input.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 03:26:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A49D16A4CE; Tue, 10 Aug 2004 03:26:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D4B743D5C; Tue, 10 Aug 2004 03:26:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A3QHBl092470; Tue, 10 Aug 2004 03:26:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A3QHV4092469; Tue, 10 Aug 2004 03:26:17 GMT (envelope-from rwatson) Message-Id: <200408100326.i7A3QHV4092469@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Aug 2004 03:26:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/opencrypto cryptodev.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 03:26:17 -0000 rwatson 2004-08-10 03:26:17 UTC FreeBSD src repository Modified files: sys/opencrypto cryptodev.c Log: Don't acquire Giant in cryptof_close(), as the code is intended to be able to run MPsafe (and appears to be MPsafe). Discussed with (some time ago): sam Revision Changes Path 1.22 +0 -7 src/sys/opencrypto/cryptodev.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 04:16:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18E1816A4CF; Tue, 10 Aug 2004 04:16:41 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id B34D143D49; Tue, 10 Aug 2004 04:16:39 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 84F432BDA6; Tue, 10 Aug 2004 14:16:37 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id 58F1954341; Tue, 10 Aug 2004 13:46:34 +0930 (CST) Date: Tue, 10 Aug 2004 13:46:34 +0930 From: Greg 'groggy' Lehey To: John-Mark Gurney Message-ID: <20040810041634.GV44716@wantadilla.lemis.com> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E8vXRijW3SOTujIP" Content-Disposition: inline In-Reply-To: <20040804201627.GA991@funkthat.com> User-Agent: Mutt/1.4.1i 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 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:16:41 -0000 --E8vXRijW3SOTujIP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wednesday, 4 August 2004 at 13:16:27 -0700, John-Mark Gurney wrote: > Marcel Moolenaar wrote this message on Wed, Aug 04, 2004 at 13:02 -0700: >>> add a set of scripts that I posted to -current last year. This makes > > [...] > >> They are mostly useless with gdb6, because support is already (partially) >> in kgdb(1) and what is not there yet is already planned. I don't mind >> that you commit these scripts, but the last sentence is crucial: it >> means that there's more unfinished stuff in the repository that needs >> attention to complete and thereby distracting attention away from where >> it's really needed. Your time would also be spent in a more focussed and >> constructive way if you would have add some of the features to kgdb(1). > > Umm.. I did all the work a year ago... I didn't "waste" my time as > you seem to imply since it only took three minutes or so to commit them.. > > I don't have a problem having them removed once support in kgdb(1) (8?), > has been completed... > > We probably spent more time typing these two messages than it took me > to commit the scripts... > > It was requested of me to commit these the other day when I mentioned > them to another committer (who I don't remeber right now). > >> If you want to help out, make sure you help doing things that need to >> be done. > > Make sure you don't discourage people from working to improve > FreeBSD. Indeed. Marcel, it would have been easy to tell John-Mark what kind of work *would* be useful. Although I suspect that what you're doing is excellent and a great improvement on what we have (certainly on my debug scripts), my interaction with you has left me wondering if I care any more. Greg -- Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --E8vXRijW3SOTujIP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBGEwiIubykFB6QiMRAiwfAJ9GpkunAKuTLREKBe9IJT5EdcD3ZQCgpfUD TutN6dEUQWVIq7Fir52v9+4= =XSRX -----END PGP SIGNATURE----- --E8vXRijW3SOTujIP-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 04:42:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A84B616A4CE; Tue, 10 Aug 2004 04:42:26 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 443A843D4C; Tue, 10 Aug 2004 04:42:26 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (localhost [127.0.0.1]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7A4gQnV072267; Mon, 9 Aug 2004 21:42:26 -0700 (PDT) (envelope-from marcel@ns1.xcllnt.net) Received: (from marcel@localhost) by ns1.xcllnt.net (8.12.11/8.12.11/Submit) id i7A4gPXx072266; Mon, 9 Aug 2004 21:42:25 -0700 (PDT) (envelope-from marcel) Date: Mon, 9 Aug 2004 21:42:25 -0700 From: Marcel Moolenaar To: "Greg 'groggy' Lehey" Message-ID: <20040810044225.GA72217@ns1.xcllnt.net> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810041634.GV44716@wantadilla.lemis.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:42:26 -0000 On Tue, Aug 10, 2004 at 01:46:34PM +0930, Greg 'groggy' Lehey wrote: > > Indeed. Marcel, it would have been easy to tell John-Mark what kind > of work *would* be useful. Although I suspect that what you're doing > is excellent and a great improvement on what we have (certainly on my > debug scripts), my interaction with you has left me wondering if I > care any more. I haven't done anything with your debug scripts and we haven't had any interactions at all. What are you talking about? -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Tue Aug 10 04:46:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D855A16A4CE; Tue, 10 Aug 2004 04:46:59 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D28D43D1F; Tue, 10 Aug 2004 04:46:59 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 4B5072BDEA; Tue, 10 Aug 2004 14:46:57 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id B42AA54341; Tue, 10 Aug 2004 14:16:51 +0930 (CST) Date: Tue, 10 Aug 2004 14:16:51 +0930 From: Greg 'groggy' Lehey To: Marcel Moolenaar Message-ID: <20040810044651.GX44716@wantadilla.lemis.com> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> <20040810044225.GA72217@ns1.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CU+BzvuqDIqVbf/Y" Content-Disposition: inline In-Reply-To: <20040810044225.GA72217@ns1.xcllnt.net> User-Agent: Mutt/1.4.1i 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 cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:47:00 -0000 --CU+BzvuqDIqVbf/Y Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Monday, 9 August 2004 at 21:42:25 -0700, Marcel Moolenaar wrote: > On Tue, Aug 10, 2004 at 01:46:34PM +0930, Greg 'groggy' Lehey wrote: >> >> Indeed. Marcel, it would have been easy to tell John-Mark what kind >> of work *would* be useful. Although I suspect that what you're doing >> is excellent and a great improvement on what we have (certainly on my >> debug scripts), my interaction with you has left me wondering if I >> care any more. > > I haven't done anything with your debug scripts I wasn't talking about them. > and we haven't had any interactions at all. What are you talking > about? Yes we have. I sent you a question about the new kernel debugging framework. Your reply was very unhelpful (one word), and you didn't reply to my followup question. But don't let it worry you. It's not as if you're anywhere close to being the main cause of my loss of interest in FreeBSD. Greg -- Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --CU+BzvuqDIqVbf/Y Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBGFM7IubykFB6QiMRAvekAKCfSh0WlSG/TdB3gq+m3rbgSwKH2gCeN6m/ 7CGP+1gnJWEeiL51clEiQkc= =rcqG -----END PGP SIGNATURE----- --CU+BzvuqDIqVbf/Y-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 04:56:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4D2D16A4CE; Tue, 10 Aug 2004 04:56:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9831B43D5C; Tue, 10 Aug 2004 04:56:39 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A4udv4094675; Tue, 10 Aug 2004 04:56:39 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A4udX8094674; Tue, 10 Aug 2004 04:56:39 GMT (envelope-from scottl) Message-Id: <200408100456.i7A4udX8094674@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Aug 2004 04:56:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:56:39 -0000 scottl 2004-08-10 04:56:39 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Disable the snmp_atm module until the source gets fixed. This will unbreak this portion of the build. Revision Changes Path 1.3 +1 -1 src/lib/libbsnmp/modules/Makefile From owner-cvs-src@FreeBSD.ORG Tue Aug 10 05:23:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0742E16A4CE; Tue, 10 Aug 2004 05:23:55 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id C31AB43D5D; Tue, 10 Aug 2004 05:23:54 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7A5Nsdo072392; Mon, 9 Aug 2004 22:23:54 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7A5NsFD010867; Mon, 9 Aug 2004 22:23:54 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7A5NsRO010866; Mon, 9 Aug 2004 22:23:54 -0700 (PDT) (envelope-from marcel) Date: Mon, 9 Aug 2004 22:23:54 -0700 From: Marcel Moolenaar To: "Greg 'groggy' Lehey" Message-ID: <20040810052354.GA10763@dhcp50.pn.xcllnt.net> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> <20040810044225.GA72217@ns1.xcllnt.net> <20040810044651.GX44716@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810044651.GX44716@wantadilla.lemis.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:23:55 -0000 On Tue, Aug 10, 2004 at 02:16:51PM +0930, Greg 'groggy' Lehey wrote: > > and we haven't had any interactions at all. What are you talking > > about? > > Yes we have. I sent you a question about the new kernel debugging > framework. Your reply was very unhelpful (one word), and you didn't > reply to my followup question. So? I was simply too busy to answer questions about why DDB changed to KDB when it was obvious that you only saw the commit to vinum. If you bothered to follow what I did, you wouldn't have asked that question. Nobody else needed to ask that question. I'm sorry if you felt ignored, but I had more important things on my mind. > But don't let it worry you. It's not > as if you're anywhere close to being the main cause of my loss of > interest in FreeBSD. I see. You used jmg's response to fire at me for something that doesn't relate to what jmg@ said and doesn't even merit such an attack and now you use my response to fire from the hip at the rest of the world for whatever got you frustrated. I don't think anybody was waiting for this, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Tue Aug 10 05:34:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3540916A4CE; Tue, 10 Aug 2004 05:34:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1752F43D5D; Tue, 10 Aug 2004 05:34:24 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5YN9R095586; Tue, 10 Aug 2004 05:34:23 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5YNxB095585; Tue, 10 Aug 2004 05:34:23 GMT (envelope-from murray) Message-Id: <200408100534.i7A5YNxB095585@repoman.freebsd.org> From: Murray Stokely Date: Tue, 10 Aug 2004 05:34:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/tzsetup tzsetup.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:34:24 -0000 murray 2004-08-10 05:34:23 UTC FreeBSD src repository Modified files: usr.sbin/tzsetup tzsetup.c Log: Update wording regarding geography to match the man page and web site. Specifically, change the second level menu title from 'Country' to 'Country or Region', since e.g. Hong Kong is not a country. Submitted by: Xin LI Revision Changes Path 1.26 +1 -1 src/usr.sbin/tzsetup/tzsetup.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 05:43:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB67D16A590; Tue, 10 Aug 2004 05:43:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBA6643D53; Tue, 10 Aug 2004 05:43:40 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5hedV095905; Tue, 10 Aug 2004 05:43:40 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5heX4095904; Tue, 10 Aug 2004 05:43:40 GMT (envelope-from marcel) Message-Id: <200408100543.i7A5heX4095904@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 10 Aug 2004 05:43:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:43:41 -0000 marcel 2004-08-10 05:43:40 UTC FreeBSD src repository Modified files: release/ia64 mkisoimages.sh Log: Favor building the cdrtools port over fetching the package. There hasn't been any package build for ia64 for a long time and in this case it means that the cdrtools package on the FTP sites is one that doesn't have mkisofs. This breaks the release build. By trying to build the port first, we protect ourselves a bit more against this. Revision Changes Path 1.9 +22 -24 src/release/ia64/mkisoimages.sh From owner-cvs-src@FreeBSD.ORG Tue Aug 10 07:33:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A5DB16A4CE; Tue, 10 Aug 2004 07:33:30 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id A25EC43D48; Tue, 10 Aug 2004 07:33:28 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i7A7XQX101074; Tue, 10 Aug 2004 09:33:26 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i7A7XPf665942; Tue, 10 Aug 2004 09:33:25 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i7A7XPe07474; Tue, 10 Aug 2004 09:33:25 +0200 (MET DST) Date: Tue, 10 Aug 2004 09:33:33 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: Scott Long In-Reply-To: <200408100456.i7A4udX8094674@repoman.freebsd.org> Message-ID: <20040810093300.O42422@beagle.kn.op.dlr.de> References: <200408100456.i7A4udX8094674@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:33:30 -0000 On Tue, 10 Aug 2004, Scott Long wrote: SL>scottl 2004-08-10 04:56:39 UTC SL> SL> FreeBSD src repository SL> SL> Modified files: SL> lib/libbsnmp/modules Makefile SL> Log: SL> Disable the snmp_atm module until the source gets fixed. This will unbreak SL> this portion of the build. Thanks for taking care of this. It was a pilot error on my side. harti SL> SL> Revision Changes Path SL> 1.3 +1 -1 src/lib/libbsnmp/modules/Makefile SL> SL> SL> From owner-cvs-src@FreeBSD.ORG Tue Aug 10 07:52:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4614D16A4CE; Tue, 10 Aug 2004 07:52:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E37143D54; Tue, 10 Aug 2004 07:52:22 +0000 (GMT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7qMqD000507; Tue, 10 Aug 2004 07:52:22 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7qMYI000506; Tue, 10 Aug 2004 07:52:22 GMT (envelope-from jeff) Message-Id: <200408100752.i7A7qMYI000506@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 10 Aug 2004 07:52:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:52:22 -0000 jeff 2004-08-10 07:52:22 UTC FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Use a new flag, KEF_XFERABLE, to record with certainty that this kse had contributed to the transferable load count. This prevents any potential problems with sched_pin() being used around calls to setrunqueue(). - Change the sched_add() load balancing algorithm to try to migrate on wakeup. This attempts to place threads that communicate with each other on the same CPU. - Don't clear the idle counts in kseq_transfer(), let the cpus do that when they call sched_add() from kseq_assign(). - Correct a few out of date comments. - Make sure the ke_cpu field is correct when we preempt. - Call kseq_assign() from sched_clock() to catch any assignments that were done without IPI. Presently all assignments are done with an IPI, but I'm trying a patch that limits that. - Don't migrate a thread if it is still runnable in sched_add(). Previously, this could only happen for KSE threads, but due to changes to sched_switch() all threads went through this path. - Remove some code that was added with preemption but is not necessary. Revision Changes Path 1.120 +76 -34 src/sys/kern/sched_ule.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 08:32:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3B0A16A4CE; Tue, 10 Aug 2004 08:32:57 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97F3943D39; Tue, 10 Aug 2004 08:32:57 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i7A8WmG4013169; Tue, 10 Aug 2004 01:32:52 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200408100832.i7A8WmG4013169@gw.catspoiler.org> Date: Tue, 10 Aug 2004 01:32:48 -0700 (PDT) From: Don Lewis To: njl@FreeBSD.org In-Reply-To: <200408100132.i7A1W5D0088677@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:32:58 -0000 On 10 Aug, Nate Lawson wrote: > njl 2004-08-10 01:32:05 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_shutdown.c vfs_subr.c > Log: > Skip the syncing disks loop if there are no dirty buffers. Remove a > variable used to flag the initial printf. > > Submitted by: truckman (earlier version) > > Revision Changes Path > 1.162 +13 -5 src/sys/kern/kern_shutdown.c > 1.519 +1 -1 src/sys/kern/vfs_subr.c BDE had a number of objections to this patch. This is the alternative that I came up with: Index: kern_shutdown.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_shutdown.c,v retrieving revision 1.161 diff -u -r1.161 kern_shutdown.c --- kern_shutdown.c 30 Jul 2004 01:30:05 -0000 1.161 +++ kern_shutdown.c 31 Jul 2004 06:40:59 -0000 @@ -303,8 +303,11 @@ nbusy++; } } - if (nbusy == 0) + if (nbusy == 0) { + if (first_buf_printf) + printf("no buffers busy"); break; + } if (first_buf_printf) { printf("syncing disks, buffers remaining... "); first_buf_printf = 0; @@ -338,7 +341,7 @@ PICKUP_GIANT(); #endif } - + printf("\n"); /* * Count only busy local buffers to prevent forcing * a fsck if we're just a client of a wedged NFS server @@ -370,6 +373,7 @@ printf("giving up on %d buffers\n", nbusy); DELAY(5000000); /* 5 seconds */ } else { + printf("final sync complete\n"); /* * Unmount filesystems */ From owner-cvs-src@FreeBSD.ORG Tue Aug 10 09:19:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2BDA16A4CE; Tue, 10 Aug 2004 09:19:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9582843D3F; Tue, 10 Aug 2004 09:19:08 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A9J8bH002940; Tue, 10 Aug 2004 09:19:08 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A9J8tT002939; Tue, 10 Aug 2004 09:19:08 GMT (envelope-from joerg) Message-Id: <200408100919.i7A9J8tT002939@repoman.freebsd.org> From: Joerg Wunsch Date: Tue, 10 Aug 2004 09:19:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 Makefile printf.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:19:08 -0000 joerg 2004-08-10 09:19:08 UTC FreeBSD src repository Modified files: share/man/man9 Makefile printf.9 Log: Add documentation for log(9). MFC after: 1 week Revision Changes Path 1.239 +2 -1 src/share/man/man9/Makefile 1.4 +45 -5 src/share/man/man9/printf.9 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 09:32:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B09716A4CE; Tue, 10 Aug 2004 09:32:14 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id B896043D48; Tue, 10 Aug 2004 09:32:13 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 8EAE1ACAFE; Tue, 10 Aug 2004 11:32:11 +0200 (CEST) Date: Tue, 10 Aug 2004 11:32:11 +0200 From: Pawel Jakub Dawidek To: Hartmut Brandt Message-ID: <20040810093211.GA30151@darkness.comp.waw.pl> References: <200408091054.i79As63F053925@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline In-Reply-To: <200408091054.i79As63F053925@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:32:14 -0000 --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: +> _SUBDIR: .USE +> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) +> - @for entry in ${SUBDIR}; do \ +> + @${_+_}for entry in ${SUBDIR}; do \ This is the cause of build breakage. Anyone is working on this? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --x+6KMIRAuhnl3hBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGJYbForvXbEpPzQRAmfRAJ9QnfiQybuyJX0lFXWnFS+4vNRn+gCg9YdC XwbiazSY4Dg6dqgJSrynwwo= =orkS -----END PGP SIGNATURE----- --x+6KMIRAuhnl3hBn-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 09:35:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA95416A4CE; Tue, 10 Aug 2004 09:35:41 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0051B43D53; Tue, 10 Aug 2004 09:35:40 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i7A9ZcX509480; Tue, 10 Aug 2004 11:35:38 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i7A9Zcf495540; Tue, 10 Aug 2004 11:35:38 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i7A9ZZe09920; Tue, 10 Aug 2004 11:35:36 +0200 (MET DST) Date: Tue, 10 Aug 2004 11:35:37 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: Pawel Jakub Dawidek In-Reply-To: <20040810093211.GA30151@darkness.comp.waw.pl> Message-ID: <20040810113324.Y42422@beagle.kn.op.dlr.de> References: <200408091054.i79As63F053925@repoman.freebsd.org> <20040810093211.GA30151@darkness.comp.waw.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:35:41 -0000 On Tue, 10 Aug 2004, Pawel Jakub Dawidek wrote: PJD>On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: PJD>+> _SUBDIR: .USE PJD>+> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) PJD>+> - @for entry in ${SUBDIR}; do \ PJD>+> + @${_+_}for entry in ${SUBDIR}; do \ PJD> PJD>This is the cause of build breakage. Anyone is working on this? No. The cause is that make in rescue was using the wrong make. When doing a buildworld and buildworld builds new tools, the entire build process should use these tools. You may look at the last commit to crunchgen.c. Now I'm investigating whether it also picks up the wrong crunchgen. That'll take a while because rescue is built nearer to the end of the build process. harti From owner-cvs-src@FreeBSD.ORG Tue Aug 10 09:42:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34A1D16A4CE; Tue, 10 Aug 2004 09:42:34 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5547F43D5A; Tue, 10 Aug 2004 09:42:33 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7A9gPjI046061 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 12:42:25 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7A9gQDt016744; Tue, 10 Aug 2004 12:42:26 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 12:42:26 +0300 From: Ruslan Ermilov To: Harti Brandt Message-ID: <20040810094226.GC16437@ip.net.ua> References: <200408091054.i79As63F053925@repoman.freebsd.org> <20040810093211.GA30151@darkness.comp.waw.pl> <20040810113324.Y42422@beagle.kn.op.dlr.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="S1BNGpv0yoYahz37" Content-Disposition: inline In-Reply-To: <20040810113324.Y42422@beagle.kn.op.dlr.de> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Pawel Jakub Dawidek cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:42:34 -0000 --S1BNGpv0yoYahz37 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 11:35:37AM +0200, Harti Brandt wrote: > On Tue, 10 Aug 2004, Pawel Jakub Dawidek wrote: >=20 > PJD>On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: > PJD>+> _SUBDIR: .USE > PJD>+> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) > PJD>+> - @for entry in ${SUBDIR}; do \ > PJD>+> + @${_+_}for entry in ${SUBDIR}; do \ > PJD> > PJD>This is the cause of build breakage. Anyone is working on this? >=20 > No. The cause is that make in rescue was using the wrong make. When=20 > doing a buildworld and buildworld builds new tools, the entire build=20 > process should use these tools. You may look at the last commit to=20 > crunchgen.c. Now I'm investigating whether it also picks up the wrong=20 > crunchgen. That'll take a while because rescue is built nearer to the end= =20 > of the build process. >=20 Please see my reply to the tinderbox failure report with the patch that should fix this. Great job, Harti! It's so cool that this change exposed this nasty bug in crunchgen(1). Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --S1BNGpv0yoYahz37 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGJiCqRfpzJluFF4RAmwgAJ47lhEAcdgpcr64YXJVxYcybk8bcACeORoH +0xtRuZ0Il6sikZ604nFzd0= =elOr -----END PGP SIGNATURE----- --S1BNGpv0yoYahz37-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 10:20:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 382C216A4CF; Tue, 10 Aug 2004 10:20:30 +0000 (GMT) Received: from srv01.sparkit.no (srv01.sparkit.no [193.69.116.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FBA843D1F; Tue, 10 Aug 2004 10:20:28 +0000 (GMT) (envelope-from eivind@FreeBSD.org) Received: from ws.nada ([193.69.114.88]) by srv01.sparkit.no (8.12.11/8.12.11) with ESMTP id i7AAKPuA036374; Tue, 10 Aug 2004 12:20:25 +0200 (CEST) (envelope-from eivind@FreeBSD.org) Received: from ws.nada (localhost [127.0.0.1]) by ws.nada (8.12.9/8.12.10) with ESMTP id i7AAIC3f002531; Tue, 10 Aug 2004 10:18:12 GMT (envelope-from eivind@ws.nada) Received: (from eivind@localhost) by ws.nada (8.12.9/8.12.10/Submit) id i7AAICwI002530; Tue, 10 Aug 2004 10:18:12 GMT (envelope-from eivind) Date: Tue, 10 Aug 2004 10:18:12 +0000 From: Eivind Eklund To: Marcel Moolenaar Message-ID: <20040810101811.GB1121@FreeBSD.org> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> <20040810044225.GA72217@ns1.xcllnt.net> <20040810044651.GX44716@wantadilla.lemis.com> <20040810052354.GA10763@dhcp50.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810052354.GA10763@dhcp50.pn.xcllnt.net> User-Agent: Mutt/1.5.4i cc: Greg 'groggy' Lehey cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:20:30 -0000 On Mon, Aug 09, 2004 at 10:23:54PM -0700, Marcel Moolenaar wrote: > > But don't let it worry you. It's not > > as if you're anywhere close to being the main cause of my loss of > > interest in FreeBSD. > > I see. You used jmg's response to fire at me for something that doesn't > relate to what jmg@ said and doesn't even merit such an attack and now > you use my response to fire from the hip at the rest of the world for > whatever got you frustrated. I don't think anybody was waiting for this, I have had zero interaction with you beyond what I've seen in the mailing lists. I feel that what I see in the mailing lists can be significantly improved by trying to be positive. Remember: People are doing what they do in an attempt to improve FreeBSD. Your mails to people should be based on that premise, and saying "I think it would be even better if ..." or similar. If you in the moment lack the resources to formulate things positively, it is almost always better to stay quiet. Eivind. From owner-cvs-src@FreeBSD.ORG Tue Aug 10 10:30:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E39D16A4CE; Tue, 10 Aug 2004 10:30:09 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95F6743D31; Tue, 10 Aug 2004 10:30:08 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 22C0DACC5F; Tue, 10 Aug 2004 12:30:07 +0200 (CEST) Date: Tue, 10 Aug 2004 12:30:07 +0200 From: Pawel Jakub Dawidek To: John-Mark Gurney Message-ID: <20040810103007.GB30151@darkness.comp.waw.pl> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="neYutvxvOLaeuPCA" Content-Disposition: inline In-Reply-To: <20040809173814.GG991@funkthat.com> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:30:09 -0000 --neYutvxvOLaeuPCA Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 10:38:14AM -0700, John-Mark Gurney wrote: +> Pawel Jakub Dawidek wrote this message on Mon, Aug 09, 2004 at 14:41 +02= 00: +> > If kernel name is given for the 'boot' command, '/boot/' pat= h is +> > probably added to kern.module_path, but for normal boot process it is = not, +> > so kern.module_path is set only to "/boot/modules". +> > Some applications depend on this sysctl and they don't work properly n= ow. +> > Please fix. +>=20 +> Have you verified this is a problem? On my test box that has: +> defaults/loader.conf:module_path=3D"/boot/modules" # Set the modu= le search path +>=20 +> and was booted: +> [...] +> /boot/kernel/accf_http.ko text=3D0xb84 data=3D0x150+0x4 syms=3D[0x4+0x31= 0+0x4+0x334] +>=20 +> Hit [Enter] to boot immediately, or any other key for command prompt. +> Booting [/boot/kernel/kernel]... =20 +>=20 +> (i.e. normal boot process w/ no interaction) +>=20 +> My sysctl returns: +> -bash-2.05b$ sysctl kern.module_path +> kern.module_path: /boot/kernel;/boot/modules +>=20 +> Please include complete information of the breakage that this change +> is suppose to cause. I've just checked on the next machine (this is 3rd machine) and it doesn't put '/boot/kernel' into 'kern.module_path' sysctl. That's why kldload(8) cannot work properly. The only difference that I'm seeing between our environments is that I use new loader (with beastie picture) everywhere and you don't use it, right? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --neYutvxvOLaeuPCA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGKOvForvXbEpPzQRAtL7AKCreKy85rt+gk5RUggrKT+NymwhlQCgjFtU U8jyjuDIjvjtcKxd0LLK3YU= =aVkh -----END PGP SIGNATURE----- --neYutvxvOLaeuPCA-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 11:05:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6063B16A4CE; Tue, 10 Aug 2004 11:05:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4142743D1F; Tue, 10 Aug 2004 11:05:27 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AB5PLQ006213; Tue, 10 Aug 2004 11:05:25 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AB5PG7006212; Tue, 10 Aug 2004 11:05:25 GMT (envelope-from harti) Message-Id: <200408101105.i7AB5PG7006212@repoman.freebsd.org> From: Hartmut Brandt Date: Tue, 10 Aug 2004 11:05:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/bsnmp/gensnmptree gensnmptree.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:05:27 -0000 harti 2004-08-10 11:05:25 UTC FreeBSD src repository Modified files: (Branch: BEGEMOT) contrib/bsnmp/gensnmptree gensnmptree.c Log: Fix the 4.X -> 5.X upgrade path by include instead of stdint.h. Revision Changes Path 1.1.1.5 +1 -1 src/contrib/bsnmp/gensnmptree/gensnmptree.c From owner-cvs-src@FreeBSD.ORG Mon Aug 9 21:58:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEAD716A4CE; Mon, 9 Aug 2004 21:58:25 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2096143D1D; Mon, 9 Aug 2004 21:58:25 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i79LwAAi034637; Mon, 9 Aug 2004 23:58:11 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 09 Aug 2004 15:05:37 MDT." <20040809.150537.96131820.imp@bsdimp.com> Date: Mon, 09 Aug 2004 23:58:10 +0200 Message-ID: <34636.1092088690@critter.freebsd.dk> Sender: phk@critter.freebsd.dk X-Mailman-Approved-At: Tue, 10 Aug 2004 11:24:15 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:58:26 -0000 In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: >: At least DDMMYYYY is in increasing order of magnitude :-) >: >: MMDDYYYY is in no order at all. > >But YYYYMMDD is sortable w/o a special date type! Not to mention that it is trivially and unambigously extensible to arbitrary precision: YYYYMMDDHHMMSS.mmmuuunnnppp... -- 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. From owner-cvs-src@FreeBSD.ORG Tue Aug 10 12:15:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FE3216A4CE; Tue, 10 Aug 2004 12:15:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F42643D60; Tue, 10 Aug 2004 12:15:27 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACFRuw008430; Tue, 10 Aug 2004 12:15:27 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACFRTE008429; Tue, 10 Aug 2004 12:15:27 GMT (envelope-from davidxu) Message-Id: <200408101215.i7ACFRTE008429@repoman.freebsd.org> From: David Xu Date: Tue, 10 Aug 2004 12:15:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:15:27 -0000 davidxu 2004-08-10 12:15:27 UTC FreeBSD src repository Modified files: sys/amd64/amd64 machdep.c Log: As AMD64 architecture volume 1 chapter 3.1.2 says, high 32 bits of %rflags are resevered, they can be written with anything, but they always read as zero, we should simulate it in set_regs() as we are reading/writting real hardware %rflags register. Revision Changes Path 1.617 +4 -3 src/sys/amd64/amd64/machdep.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 12:20:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB64A16A4CE; Tue, 10 Aug 2004 12:20:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC37743D48; Tue, 10 Aug 2004 12:20:00 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACK0xP008596; Tue, 10 Aug 2004 12:20:00 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACK0tg008595; Tue, 10 Aug 2004 12:20:00 GMT (envelope-from davidxu) Message-Id: <200408101220.i7ACK0tg008595@repoman.freebsd.org> From: David Xu Date: Tue, 10 Aug 2004 12:20:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/arch/amd64 init.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:20:01 -0000 davidxu 2004-08-10 12:20:00 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/arch/amd64 init.c Log: Initialize thread_db module. Revision Changes Path 1.2 +2 -0 src/gnu/usr.bin/gdb/arch/amd64/init.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 12:23:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56FF616A4CE; Tue, 10 Aug 2004 12:23:16 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4800A43D45; Tue, 10 Aug 2004 12:23:15 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7ACN5GB065280 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 15:23:06 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7ACN7wO018439; Tue, 10 Aug 2004 15:23:07 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 15:23:07 +0300 From: Ruslan Ermilov To: John-Mark Gurney Message-ID: <20040810122307.GA18408@ip.net.ua> References: <200408090645.i796jLUo046034@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <200408090645.i796jLUo046034@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:23:16 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 06:45:21AM +0000, John-Mark Gurney wrote: > jmg 2004-08-09 06:45:21 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/sys mdioctl.h=20 > sys/modules/md Makefile=20 > sbin/mdconfig mdconfig.c=20 > Log: > change the name of the md module, to g_md, introduce a define with the > name MD_MODNAME, and make mdconfig use this new define... > =20 > Revision Changes Path > 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c > 1.13 +1 -1 src/sys/modules/md/Makefile > 1.16 +1 -0 src/sys/sys/mdioctl.h >=20 Why the change in the first place? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGL4rqRfpzJluFF4RAvKKAJ4sGE8i5pQp7AmXG/m5+4PwGWToEgCggmBU sQMWV3wOwANAte34yJu8BV4= =faag -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 13:18:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 392AA16A4CE; Tue, 10 Aug 2004 13:18:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A45243D45; Tue, 10 Aug 2004 13:18:06 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ADI51H010493; Tue, 10 Aug 2004 13:18:05 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ADI5Jm010492; Tue, 10 Aug 2004 13:18:05 GMT (envelope-from harti) Message-Id: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> From: Hartmut Brandt Date: Tue, 10 Aug 2004 13:18:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:18:06 -0000 harti 2004-08-10 13:18:05 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Fix recent breakage in rescue. We need to build a new crunchgen that will not emit the bad MAKE=make line that caused the breakage. Submitted by: ru Revision Changes Path 1.435 +1 -1 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 13:25:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A6D216A4CE; Tue, 10 Aug 2004 13:25:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1952F43D41; Tue, 10 Aug 2004 13:25:31 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ADPUYs010695; Tue, 10 Aug 2004 13:25:30 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ADPUP5010694; Tue, 10 Aug 2004 13:25:30 GMT (envelope-from ru) Message-Id: <200408101325.i7ADPUP5010694@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 10 Aug 2004 13:25:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 release.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:25:31 -0000 ru 2004-08-10 13:25:30 UTC FreeBSD src repository Modified files: share/man/man7 release.7 Log: Describe better what the initial /usr/obj is expected to be populated with. Prodded by: grehan Revision Changes Path 1.45 +4 -2 src/share/man/man7/release.7 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 13:30:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B316316A4CE; Tue, 10 Aug 2004 13:30:57 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D72BA43D1F; Tue, 10 Aug 2004 13:30:54 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.201] ([192.168.0.201]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i7ADUXFM027342; Tue, 10 Aug 2004 07:30:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4118CD83.7050608@samsco.org> Date: Tue, 10 Aug 2004 07:28:35 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.1) Gecko/20040801 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Hartmut Brandt References: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> In-Reply-To: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:30:58 -0000 Hartmut Brandt wrote: > harti 2004-08-10 13:18:05 UTC > > FreeBSD src repository > > Modified files: > . Makefile.inc1 > Log: > Fix recent breakage in rescue. We need to build a new crunchgen > that will not emit the bad MAKE=make line that caused the breakage. > > Submitted by: ru > > Revision Changes Path > 1.435 +1 -1 src/Makefile.inc1 This is a wild guess, but could this somehow explain why 'make -jN' often goes nuts in rescue/ and builds things multiple times? Scott From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:32:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18D9B16A4CE; Tue, 10 Aug 2004 14:32:26 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5858543D45; Tue, 10 Aug 2004 14:32:25 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7AEW1Yp082126 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 17:32:02 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7AEW2XD019556; Tue, 10 Aug 2004 17:32:02 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 17:32:02 +0300 From: Ruslan Ermilov To: Scott Long Message-ID: <20040810143202.GE19284@ip.net.ua> References: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> <4118CD83.7050608@samsco.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KuLpqunXa7jZSBt+" Content-Disposition: inline In-Reply-To: <4118CD83.7050608@samsco.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Hartmut Brandt cc: cvs-all@freebsd.org Subject: Re: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:32:26 -0000 --KuLpqunXa7jZSBt+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 07:28:35AM -0600, Scott Long wrote: > Hartmut Brandt wrote: > >harti 2004-08-10 13:18:05 UTC > > > > FreeBSD src repository > > > > Modified files: > > . Makefile.inc1=20 > > Log: > > Fix recent breakage in rescue. We need to build a new crunchgen > > that will not emit the bad MAKE=3Dmake line that caused the breakage. > > =20 > > Submitted by: ru > > =20 > > Revision Changes Path > > 1.435 +1 -1 src/Makefile.inc1 >=20 > This is a wild guess, but could this somehow explain why 'make -jN' > often goes nuts in rescue/ and builds things multiple times? >=20 No, this would be completely unrelated. Could you please provide me with more details, preferably some logs, so I could look into this issue? I didn't pay enough attention when rescue/ was first added (only probably helped with some minor bugfixing), so I did not proof-read its makefiles yet for the ``make -j'' cleanness. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --KuLpqunXa7jZSBt+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGNxhqRfpzJluFF4RAjW3AJ99P+wH+55m0FbchmIX5tQX3u+LSgCgjF9G 4ze0MKRsbr7S3NTo4pzlY0w= =WMFJ -----END PGP SIGNATURE----- --KuLpqunXa7jZSBt+-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:41:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE76A16A4CF for ; Tue, 10 Aug 2004 14:41:37 +0000 (GMT) Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC6143D2F for ; Tue, 10 Aug 2004 14:41:37 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 20971 invoked from network); 10 Aug 2004 14:41:37 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Aug 2004 14:41:36 -0000 Received: from hydrogen.funkthat.com (slghcx@localhost.funkthat.com [127.0.0.1])i7AEfauU077938; Tue, 10 Aug 2004 07:41:36 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7AEfZhc077937; Tue, 10 Aug 2004 07:41:35 -0700 (PDT) Date: Tue, 10 Aug 2004 07:41:35 -0700 From: John-Mark Gurney To: Pawel Jakub Dawidek Message-ID: <20040810144135.GN991@funkthat.com> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> <20040810103007.GB30151@darkness.comp.waw.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810103007.GB30151@darkness.comp.waw.pl> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:41:37 -0000 Pawel Jakub Dawidek wrote this message on Tue, Aug 10, 2004 at 12:30 +0200: > +> Please include complete information of the breakage that this change > +> is suppose to cause. > > I've just checked on the next machine (this is 3rd machine) and it doesn't > put '/boot/kernel' into 'kern.module_path' sysctl. That's why kldload(8) > cannot work properly. > > The only difference that I'm seeing between our environments is that I use > new loader (with beastie picture) everywhere and you don't use it, right? Nope, on the system that I upgraded on Sunday, Aug 8th, I'm seeing zero problems, and the machine is using the beastie loader. As you saw in an email last night, it also has my changes... If I boot kernel.old after breaking out into the loader prompt, I see a module path of: /boot/kernel.old;/boot/kernel;/boot/modules.. This is because of a bug in loader that doesn't reset the module_path when loading a different kernel after it's already loaded one, but I haven't investigated it yet... If I use nextboot to boot kernel.old, I end up with a module path of: /boot/kernel.old;/boot/modules, which is as it should be. If I let the machine boot normally, my module path is: /boot/kernel;/boot/modules... Have you tried booting another kernel? I can't see how your machine could of booted /boot/kernel.old ever with kernel modules, if your machine is currently having troubles with loading kernel modules. (Since kernel.old would not have been added to module path, since it isn't being now, and the correct modules would never load.) -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:42:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60A5C16A4CE; Tue, 10 Aug 2004 14:42:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ED8043D39; Tue, 10 Aug 2004 14:42:49 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEgn3t012800; Tue, 10 Aug 2004 14:42:49 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEgnsb012799; Tue, 10 Aug 2004 14:42:49 GMT (envelope-from green) Message-Id: <200408101442.i7AEgnsb012799@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 14:42:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_kern.c vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:42:49 -0000 green 2004-08-10 14:42:49 UTC FreeBSD src repository Modified files: sys/vm vm_kern.c vm_map.c Log: Back out all behavioral chnages. Revision Changes Path 1.120 +0 -4 src/sys/vm/vm_kern.c 1.354 +18 -33 src/sys/vm/vm_map.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:43:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DB6B16A4CE; Tue, 10 Aug 2004 14:43:13 +0000 (GMT) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3F2743D1D; Tue, 10 Aug 2004 14:43:12 +0000 (GMT) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id ADDB322856; Tue, 10 Aug 2004 16:43:06 +0200 (CEST) Date: Tue, 10 Aug 2004 16:43:06 +0200 From: Erwin Lansing To: Marcel Moolenaar Message-ID: <20040810144306.GT85158@droso.net> References: <200408072209.i77M9QkW078498@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u65IjBhB3TIa72Vp" Content-Disposition: inline In-Reply-To: <200408072209.i77M9QkW078498@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 5.2.1-RELEASE-p1 User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:43:13 -0000 --u65IjBhB3TIa72Vp Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 07, 2004 at 10:09:26PM +0000, Marcel Moolenaar wrote: > marcel 2004-08-07 22:09:26 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/calendar/calendars calendar.freebsd=20 > Log: > Oh yeah? 4 born in the Netherlands. Taken relative to the size of > the country (i.e. committer density), we're in the top 5 for sure! :-) > =20 Then counting the number that are still living there, we're sure the number 1 of people getting away in a hurry :-) --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| erwin@lansing.dk http://droso.org `-.-' \ )-`( , o o) erwin@FreeBSD.org -bf- `- \`_`"'- --u65IjBhB3TIa72Vp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGN76qy9aWxUlaZARAhe3AKCuB1rNJXrfIwK5idryMne2yMcXDQCg7CjW OL3NcQM0me00Y6cxCyUqlDM= =iMTf -----END PGP SIGNATURE----- --u65IjBhB3TIa72Vp-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:47:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29D4716A4CE; Tue, 10 Aug 2004 14:47:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0834D43D1F; Tue, 10 Aug 2004 14:47:13 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AElC6c012962; Tue, 10 Aug 2004 14:47:12 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AElCpo012961; Tue, 10 Aug 2004 14:47:12 GMT (envelope-from green) Message-Id: <200408101447.i7AElCpo012961@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 14:47:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 contigmalloc.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:47:13 -0000 green 2004-08-10 14:47:12 UTC FreeBSD src repository Modified files: share/man/man9 contigmalloc.9 Log: Update contigmalloc(9)'s manpage to reflect usage of the malloc_type argument and that allocation occurs from the end of the address space backward (still first-fit). Revision Changes Path 1.2 +2 -9 src/share/man/man9/contigmalloc.9 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:49:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8680E16A4D0 for ; Tue, 10 Aug 2004 14:49:14 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4196143D45 for ; Tue, 10 Aug 2004 14:49:14 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 7464 invoked from network); 10 Aug 2004 14:49:13 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail4.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Aug 2004 14:49:13 -0000 Received: from hydrogen.funkthat.com (pyjsba@localhost.funkthat.com [127.0.0.1])i7AEnDuU078139; Tue, 10 Aug 2004 07:49:13 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7AEnDlu078138; Tue, 10 Aug 2004 07:49:13 -0700 (PDT) Date: Tue, 10 Aug 2004 07:49:13 -0700 From: John-Mark Gurney To: Ruslan Ermilov Message-ID: <20040810144913.GO991@funkthat.com> References: <200408090645.i796jLUo046034@repoman.freebsd.org> <20040810122307.GA18408@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810122307.GA18408@ip.net.ua> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:49:14 -0000 Ruslan Ermilov wrote this message on Tue, Aug 10, 2004 at 15:23 +0300: > On Mon, Aug 09, 2004 at 06:45:21AM +0000, John-Mark Gurney wrote: > > jmg 2004-08-09 06:45:21 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/sys mdioctl.h > > sys/modules/md Makefile > > sbin/mdconfig mdconfig.c > > Log: > > change the name of the md module, to g_md, introduce a define with the > > name MD_MODNAME, and make mdconfig use this new define... > > > > Revision Changes Path > > 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c > > 1.13 +1 -1 src/sys/modules/md/Makefile > > 1.16 +1 -0 src/sys/sys/mdioctl.h > > > Why the change in the first place? so that mdconfig does not try to load the md kernel module twice, and cause your machine to panic. With a recent commit of phk's to md that converts it to geom, he removed the previous DECLARE_MODULE w/ the name of md, and so the md module was no longer implementing the md module, only the g_md module. On my box that is using mfs, mdconfig would then try to load the md module a second time causing geom to panic. Sorry, I should of included some of this information in the commit message. I then realized that since md is now a full on geom module, it should be renamed to geom_md like all the other geom modules... I still need to ask cvs@ to repo copy the module Makefiles into modules/geom/md... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Tue Aug 10 14:52:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B646216A4CE; Tue, 10 Aug 2004 14:52:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95CF643D45; Tue, 10 Aug 2004 14:52:42 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEqgkf013140; Tue, 10 Aug 2004 14:52:42 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEqgh9013139; Tue, 10 Aug 2004 14:52:42 GMT (envelope-from green) Message-Id: <200408101452.i7AEqgh9013139@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 14:52:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mlock.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:52:42 -0000 green 2004-08-10 14:52:42 UTC FreeBSD src repository Modified files: lib/libc/sys mlock.2 Log: Update mlock(2) manpage to cross-reference m{,un}lockall(2), remove a case where ENOMEM could be returned by munlock(2), and add possible system deadlock to the BUGS section. Revision Changes Path 1.17 +5 -1 src/lib/libc/sys/mlock.2 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 15:01:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6C5E16A4CE; Tue, 10 Aug 2004 15:01:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4A5143D41; Tue, 10 Aug 2004 15:01:00 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AF10i6013436; Tue, 10 Aug 2004 15:01:00 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AF108b013435; Tue, 10 Aug 2004 15:01:00 GMT (envelope-from green) Message-Id: <200408101501.i7AF108b013435@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 15:01:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 vslock.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:01:01 -0000 green 2004-08-10 15:01:00 UTC FreeBSD src repository Modified files: share/man/man9 vslock.9 Log: Document exactly how vslock(9) is broken. Revision Changes Path 1.13 +6 -0 src/share/man/man9/vslock.9 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 15:03:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D21CA16A4CF; Tue, 10 Aug 2004 15:03:44 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F44643D41; Tue, 10 Aug 2004 15:03:44 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7AF2BCb084288; Tue, 10 Aug 2004 11:02:11 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7AF2BQv084285; Tue, 10 Aug 2004 11:02:11 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 10 Aug 2004 11:02:10 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Andre Oppermann In-Reply-To: <200408091612.i79GCAOB064830@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:03:45 -0000 On Mon, 9 Aug 2004, Andre Oppermann wrote: > Modified files: > sys/netinet ip_fw.h ip_fw2.c > sbin/ipfw ipfw.8 ipfw2.c > Log: > New ipfw option "antispoof": > > For incoming packets, the packet's source address is checked if it > belongs to a directly connected network. If the network is directly > connected, then the interface the packet came on in is compared to > the interface the network is connected to. When incoming interface > and directly connected interface are not the same, the packet does > not match. If you would append opcodes to the enum rather than inserting them, you would find you wouldn't break everyone's firewalls when they install their kernel and reboot before installing world. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Tue Aug 10 15:10:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E0516A4CE; Tue, 10 Aug 2004 15:10:08 +0000 (GMT) Received: from tara.freenix.org (keltia.freenix.org [82.224.56.155]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F68343D49; Tue, 10 Aug 2004 15:10:07 +0000 (GMT) (envelope-from roberto@keltia.freenix.fr) Received: by tara.freenix.org (Postfix/TLS, from userid 101) id 9D0C22E1C; Tue, 10 Aug 2004 17:10:06 +0200 (CEST) Date: Tue, 10 Aug 2004 17:10:06 +0200 From: Ollivier Robert To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org Message-ID: <20040810151006.GB7254@tara.freenix.org> Mail-Followup-To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org References: <200408090848.i798mSZ0049967@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408090848.i798mSZ0049967@repoman.freebsd.org> X-Operating-System: MacOS X / PowerBook G4 - FreeBSD 5.0 / 2x PIII/800 SMP User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/share/mk bsd.libnames.mk src/lib/libmagic Makefile config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:10:08 -0000 According to David E. O'Brien: > Log: > Bmake the library containing and processing the magic. Do you foresee external usage of the library? I mean, do you really need to expose libmagic to the world? libntp/libparse are only build, not installed for example. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr Darwin snuadh.freenix.org Kernel Version 7.5.0: Wed May 12 16:58:24 PDT 2004 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 15:19:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 044D516A4CE for ; Tue, 10 Aug 2004 15:19:56 +0000 (GMT) Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F4D43D4C for ; Tue, 10 Aug 2004 15:19:56 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 7154 invoked from network); 10 Aug 2004 15:19:56 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 10 Aug 2004 15:19:55 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7AFJpen083739; Tue, 10 Aug 2004 11:19:52 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Jeff Roberson Date: Tue, 10 Aug 2004 09:18:45 -0400 User-Agent: KMail/1.6 References: <200408100752.i7A7qMYI000506@repoman.freebsd.org> In-Reply-To: <200408100752.i7A7qMYI000506@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408100918.45387.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:19:57 -0000 On Tuesday 10 August 2004 03:52 am, Jeff Roberson wrote: > jeff 2004-08-10 07:52:22 UTC > > FreeBSD src repository > > Modified files: > sys/kern sched_ule.c > Log: > - Use a new flag, KEF_XFERABLE, to record with certainty that this kse > had contributed to the transferable load count. This prevents any > potential problems with sched_pin() being used around calls to > setrunqueue(). - Change the sched_add() load balancing algorithm to try to > migrate on wakeup. This attempts to place threads that communicate with > each other on the same CPU. > - Don't clear the idle counts in kseq_transfer(), let the cpus do that > when they call sched_add() from kseq_assign(). > - Correct a few out of date comments. > - Make sure the ke_cpu field is correct when we preempt. > - Call kseq_assign() from sched_clock() to catch any assignments that > were done without IPI. Presently all assignments are done with an IPI, but > I'm trying a patch that limits that. > - Don't migrate a thread if it is still runnable in sched_add(). > Previously, this could only happen for KSE threads, but due to changes to > sched_switch() all threads went through this path. > - Remove some code that was added with preemption but is not necessary. Couple of comments: 1) TDF_NEEDRESCHED is still needed as that is what manages user-level preemptions. Kernel preemption does not normally preempt threads at user-level priorities (see the code in maybe_preempt() for a comment with more detailed info). 2) Can a thread bound to CPU B ever be put on the runqueue via setrunqueue() by a thread on CPU A? If so, you need to keep the SMP-specific migration check before the call to maybe_preempt() so that you don't end up running the new thread on CPU A even though it is supposed to run on CPU B. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Aug 10 15:44:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62D9316A5BC; Tue, 10 Aug 2004 15:44:07 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9762043D39; Tue, 10 Aug 2004 15:44:06 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7AFhlY6088699 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 18:43:48 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7AFhnVl020020; Tue, 10 Aug 2004 18:43:49 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 18:43:48 +0300 From: Ruslan Ermilov To: John-Mark Gurney Message-ID: <20040810154348.GA19937@ip.net.ua> References: <200408090645.i796jLUo046034@repoman.freebsd.org> <20040810122307.GA18408@ip.net.ua> <20040810144913.GO991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline In-Reply-To: <20040810144913.GO991@funkthat.com> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:44:07 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 07:49:13AM -0700, John-Mark Gurney wrote: > Ruslan Ermilov wrote this message on Tue, Aug 10, 2004 at 15:23 +0300: > > On Mon, Aug 09, 2004 at 06:45:21AM +0000, John-Mark Gurney wrote: > > > jmg 2004-08-09 06:45:21 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > sys/sys mdioctl.h=20 > > > sys/modules/md Makefile=20 > > > sbin/mdconfig mdconfig.c=20 > > > Log: > > > change the name of the md module, to g_md, introduce a define with = the > > > name MD_MODNAME, and make mdconfig use this new define... > > > =20 > > > Revision Changes Path > > > 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c > > > 1.13 +1 -1 src/sys/modules/md/Makefile > > > 1.16 +1 -0 src/sys/sys/mdioctl.h > > >=20 > > Why the change in the first place? >=20 > so that mdconfig does not try to load the md kernel module twice, and > cause your machine to panic. >=20 > With a recent commit of phk's to md that converts it to geom, he removed > the previous DECLARE_MODULE w/ the name of md, and so the md module was > no longer implementing the md module, only the g_md module. On my box > that is using mfs, mdconfig would then try to load the md module a > second time causing geom to panic. >=20 Thanks a bunch for explaining! > I then realized that since md is now a full on geom module, it should > be renamed to geom_md like all the other geom modules... I still need > to ask cvs@ to repo copy the module Makefiles into modules/geom/md... >=20 Yes, please. I wondered about this too (why it was not named geom_md). Another thing I'm worried about is that it's typical for a "device foo" to have the corresponding foo.ko module, and now this is no longer the case. I think many would still prefer that the file be named md.ko, while clearly the inside module should be named "g_md". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGO00qRfpzJluFF4RAprgAJ43GACTXFFI5iJa7a8eIlkXv8OvzgCfVOcK x8FJFKzt0ac1ALmGyKd2ELE= =8JUz -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-cvs-src@FreeBSD.ORG Tue Aug 10 16:38:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E910D16A4CE; Tue, 10 Aug 2004 16:38:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7CAB43D4C; Tue, 10 Aug 2004 16:38:19 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGcJ53016837; Tue, 10 Aug 2004 16:38:19 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGcJE1016836; Tue, 10 Aug 2004 16:38:19 GMT (envelope-from green) Message-Id: <200408101638.i7AGcJE1016836@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 16:38:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mlock.2 src/share/man/man9 contigmalloc.9 vslock.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:38:20 -0000 green 2004-08-10 16:38:19 UTC FreeBSD src repository Modified files: lib/libc/sys mlock.2 share/man/man9 contigmalloc.9 vslock.9 Log: Update "documentation date" fields. Revision Changes Path 1.18 +1 -1 src/lib/libc/sys/mlock.2 1.3 +1 -1 src/share/man/man9/contigmalloc.9 1.14 +1 -1 src/share/man/man9/vslock.9 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 16:49:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 798FF16A4D1 for ; Tue, 10 Aug 2004 16:49:15 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2943843D53 for ; Tue, 10 Aug 2004 16:49:15 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 13411 invoked from network); 10 Aug 2004 16:49:14 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail4.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Aug 2004 16:49:14 -0000 Received: from hydrogen.funkthat.com (cfqpsz@localhost.funkthat.com [127.0.0.1])i7AGnEuU080214; Tue, 10 Aug 2004 09:49:14 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7AGnDvi080213; Tue, 10 Aug 2004 09:49:13 -0700 (PDT) Date: Tue, 10 Aug 2004 09:49:13 -0700 From: John-Mark Gurney To: Ruslan Ermilov Message-ID: <20040810164913.GP991@funkthat.com> References: <200408090645.i796jLUo046034@repoman.freebsd.org> <20040810122307.GA18408@ip.net.ua> <20040810144913.GO991@funkthat.com> <20040810154348.GA19937@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810154348.GA19937@ip.net.ua> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:49:15 -0000 Ruslan Ermilov wrote this message on Tue, Aug 10, 2004 at 18:43 +0300: > Another thing I'm worried about is that it's typical for a "device foo" > to have the corresponding foo.ko module, and now this is no longer the > case. I think many would still prefer that the file be named md.ko, > while clearly the inside module should be named "g_md". There is already other modules that break this conventions (and bde doesn't like the sound and geom subdirs in modules) such as sound, network interfaces, and all the other geom's... Then there is the screen savers which use a suffix instead of the prefix.. :) I'm not familar with kldxref, but it seems like it would make sense for it to grow logic so that if you try to load a module that the "kernel" knows about, but doesn't match the name, it would return that... That still wouldn't fix the breakage, since md is now no longer md, but g_md... Should we fix the naming in the kernel config? -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Tue Aug 10 16:53:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3204116A4CE; Tue, 10 Aug 2004 16:53:11 +0000 (GMT) Received: from green.homeunix.org (pcp04371970pcs.nrockv01.md.comcast.net [69.140.223.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id B010643D45; Tue, 10 Aug 2004 16:53:10 +0000 (GMT) (envelope-from green@green.homeunix.org) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.13.1/8.13.1) with ESMTP id i7AGrD77013514; Tue, 10 Aug 2004 12:53:13 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i7AGrD29013513; Tue, 10 Aug 2004 12:53:13 -0400 (EDT) (envelope-from green) Date: Tue, 10 Aug 2004 12:53:13 -0400 From: Brian Fundakowski Feldman To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040810165313.GE4902@green.homeunix.org> References: <200408101638.i7AGcJE1016836@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408101638.i7AGcJE1016836@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/lib/libc/sys mlock.2 src/share/man/man9 contigmalloc.9 vslock.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:53:11 -0000 On Tue, Aug 10, 2004 at 04:38:19PM +0000, Brian Feldman wrote: > green 2004-08-10 16:38:19 UTC > > FreeBSD src repository > > Modified files: > lib/libc/sys mlock.2 > share/man/man9 contigmalloc.9 vslock.9 > Log: > Update "documentation date" fields. Thanks to ru for pointing out that I need to update these. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Tue Aug 10 17:20:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47C2216A4CF; Tue, 10 Aug 2004 17:20:21 +0000 (GMT) Received: from mail.qubesoft.com (gate.qubesoft.com [217.169.36.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F4B743D1F; Tue, 10 Aug 2004 17:20:20 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from bluebottle.qubesoft.com (bluebottle.qubesoft.com [192.168.1.2]) by mail.qubesoft.com (8.12.9/8.12.9) with ESMTP id i7AHKFGR033172; Tue, 10 Aug 2004 18:20:19 +0100 (BST) (envelope-from dfr@nlsystems.com) Received: from builder02.qubesoft.com (builder02.qubesoft.com [192.168.1.8]) i7AHKBfJ040371; Tue, 10 Aug 2004 18:20:15 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Brian Feldman In-Reply-To: <200408091846.i79IkD8x073800@repoman.freebsd.org> References: <200408091846.i79IkD8x073800@repoman.freebsd.org> Content-Type: text/plain Message-Id: <1092158411.13089.4.camel@builder02.qubesoft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 10 Aug 2004 18:20:11 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:20:21 -0000 On Mon, 2004-08-09 at 19:46, Brian Feldman wrote: > green 2004-08-09 18:46:13 UTC > > FreeBSD src repository > > Modified files: > sys/kern link_elf.c > Log: > Normalize the VM wiring done with SPARSE_MAPPING: check for errors, and > unmap when done. For whatever reason, SPARSE_MAPPING is not even a > config option, so this is dead code. I used this for a while when binutils was misconfigured on the alpha to leave a 1Mb gap between sections and I didn't want to waste the memory. From owner-cvs-src@FreeBSD.ORG Tue Aug 10 17:43:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D54E16A4CE; Tue, 10 Aug 2004 17:43:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F99643D45; Tue, 10 Aug 2004 17:43:00 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHh0ki018957; Tue, 10 Aug 2004 17:43:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHh0ki018956; Tue, 10 Aug 2004 17:43:00 GMT (envelope-from jhb) Message-Id: <200408101743.i7AHh0ki018956@repoman.freebsd.org> From: John Baldwin Date: Tue, 10 Aug 2004 17:43:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_condvar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:43:00 -0000 jhb 2004-08-10 17:43:00 UTC FreeBSD src repository Modified files: sys/kern kern_condvar.c Log: Synchronize the extra SA threading checks and return value handling of condition variables with that of msleep(). Reviewed by: davidxu Revision Changes Path 1.50 +50 -24 src/sys/kern/kern_condvar.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 18:18:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6C4516A4CE; Tue, 10 Aug 2004 18:18:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C2543D2F; Tue, 10 Aug 2004 18:18:42 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIIgUZ020091; Tue, 10 Aug 2004 18:18:42 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIIge8020090; Tue, 10 Aug 2004 18:18:42 GMT (envelope-from cperciva) Message-Id: <200408101818.i7AIIge8020090@repoman.freebsd.org> From: Colin Percival Date: Tue, 10 Aug 2004 18:18:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall dist.c dist.h menus.c sysinstall.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:18:42 -0000 cperciva 2004-08-10 18:18:42 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall dist.c dist.h menus.c sysinstall.8 Log: Teach sysinstall about the "srescue" distribution, which contains the contents of /usr/src/rescue. Until now, the files were shipped with releases but sysinstall would ignore them (resulting in a non-buildable source tree). Sanity checked by: jhb Revision Changes Path 1.234 +1 -0 src/usr.sbin/sysinstall/dist.c 1.62 +2 -1 src/usr.sbin/sysinstall/dist.h 1.395 +2 -0 src/usr.sbin/sysinstall/menus.c 1.64 +2 -0 src/usr.sbin/sysinstall/sysinstall.8 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:04:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 288AD16A4CE; Tue, 10 Aug 2004 19:04:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A36E43D39; Tue, 10 Aug 2004 19:04:00 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ3xVl021980; Tue, 10 Aug 2004 19:03:59 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ3x4A021979; Tue, 10 Aug 2004 19:03:59 GMT (envelope-from wilko) Message-Id: <200408101903.i7AJ3x4A021979@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:03:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:04:00 -0000 wilko 2004-08-10 19:03:59 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: There is nothing but real hardware to verify things: 164sx can really run on non-ECC, plain vanilla PC133 PC SDRAM DIMMs. Thanks to: obrien@ for the donation of a 164sx mlb. Revision Changes Path 1.67 +7 -4 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:07:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DCD816A4CE; Tue, 10 Aug 2004 19:07:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2028D43D53; Tue, 10 Aug 2004 19:07:42 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ7gIm022222; Tue, 10 Aug 2004 19:07:42 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ7ggb022221; Tue, 10 Aug 2004 19:07:42 GMT (envelope-from wilko) Message-Id: <200408101907.i7AJ7ggb022221@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:07:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:07:42 -0000 wilko 2004-08-10 19:07:41 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: typo Revision Changes Path 1.68 +0 -1 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:07:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 853DF16A4CE; Tue, 10 Aug 2004 19:07:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66B0443D68; Tue, 10 Aug 2004 19:07:55 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ7t0j022251; Tue, 10 Aug 2004 19:07:55 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ7thd022250; Tue, 10 Aug 2004 19:07:55 GMT (envelope-from pjd) Message-Id: <200408101907.i7AJ7thd022250@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Aug 2004 19:07:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:07:55 -0000 pjd 2004-08-10 19:07:55 UTC FreeBSD src repository Modified files: sys/geom/stripe g_stripe.c Log: Fix one of the lastest commit. This bio_caller1 should also be changed to bio_driver1 (as all the rest). This introduced a small memory leak, but it wasn't really critical, because maximum memory for g_stripe_zone is always set, so after few requests gstripe was working in "economic" mode. Revision Changes Path 1.15 +1 -1 src/sys/geom/stripe/g_stripe.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:09:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF52516A4CE; Tue, 10 Aug 2004 19:09:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A142543D53; Tue, 10 Aug 2004 19:09:20 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ9K3k022302; Tue, 10 Aug 2004 19:09:20 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ9KhC022301; Tue, 10 Aug 2004 19:09:20 GMT (envelope-from wilko) Message-Id: <200408101909.i7AJ9KhC022301@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:09:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:09:20 -0000 wilko 2004-08-10 19:09:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: There is nothing but real hardware to verify things: 164sx can really run on non-ECC, plain vanilla PC133 PC SDRAM DIMMs. Thanks to: obrien@ for the donation of a 164sx mlb. Revision Changes Path 1.13.2.42 +6 -4 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:32:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CF5316A4CE; Tue, 10 Aug 2004 19:32:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E01843D41; Tue, 10 Aug 2004 19:32:34 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJWYR1023162; Tue, 10 Aug 2004 19:32:34 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJWYuZ023161; Tue, 10 Aug 2004 19:32:34 GMT (envelope-from marcel) Message-Id: <200408101932.i7AJWYuZ023161@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 10 Aug 2004 19:32:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/gdb gdb_main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:32:34 -0000 marcel 2004-08-10 19:32:34 UTC FreeBSD src repository Modified files: sys/gdb gdb_main.c Log: Comment-out the debugging printf I left in in case there were some packet related problems. No problems have been reported. Revision Changes Path 1.2 +1 -1 src/sys/gdb/gdb_main.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:52:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F59216A4CE; Tue, 10 Aug 2004 19:52:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E46B643D41; Tue, 10 Aug 2004 19:52:12 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJqCKq023879; Tue, 10 Aug 2004 19:52:12 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJqCe7023878; Tue, 10 Aug 2004 19:52:12 GMT (envelope-from pjd) Message-Id: <200408101952.i7AJqCe7023878@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Aug 2004 19:52:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror_ctl.csrc/sbin/geom/class/mirror geom_mirror.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:52:13 -0000 pjd 2004-08-10 19:52:12 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror_ctl.c sbin/geom/class/mirror geom_mirror.c Log: Forgot to commit those: introduce hardcoded provider functionality, which allow to store provider's name in the metadata and avoid problems when few providers share the same last sector. Revision Changes Path 1.3 +31 -14 src/sbin/geom/class/mirror/geom_mirror.c 1.4 +33 -3 src/sys/geom/mirror/g_mirror_ctl.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:53:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BE9816A4CE; Tue, 10 Aug 2004 19:53:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E30843D54; Tue, 10 Aug 2004 19:53:31 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJrVWd023928; Tue, 10 Aug 2004 19:53:31 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJrV00023927; Tue, 10 Aug 2004 19:53:31 GMT (envelope-from pjd) Message-Id: <200408101953.i7AJrV00023927@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Aug 2004 19:53:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:53:31 -0000 pjd 2004-08-10 19:53:31 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c Log: - Recognize HARDCODED flag when dumping consumer configuration. - Improve code readabilty a bit. Revision Changes Path 1.16 +27 -39 src/sys/geom/mirror/g_mirror.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 20:15:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B30D716A4D0; Tue, 10 Aug 2004 20:15:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 957B843D39; Tue, 10 Aug 2004 20:15:12 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKFCrI024699; Tue, 10 Aug 2004 20:15:12 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKFCVv024698; Tue, 10 Aug 2004 20:15:12 GMT (envelope-from le) Message-Id: <200408102015.i7AKFCVv024698@repoman.freebsd.org> From: Lukas Ertl Date: Tue, 10 Aug 2004 20:15:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/vinum geom_vinum_drive.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:15:12 -0000 le 2004-08-10 20:15:12 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_drive.c Log: Lock the topology before calling gv_parse_config, not afterwards. Revision Changes Path 1.9 +1 -1 src/sys/geom/vinum/geom_vinum_drive.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 20:51:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19D8D16A4CE; Tue, 10 Aug 2004 20:51:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC9043D2F; Tue, 10 Aug 2004 20:51:48 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKpmVl028143; Tue, 10 Aug 2004 20:51:48 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKpmmm028142; Tue, 10 Aug 2004 20:51:48 GMT (envelope-from le) Message-Id: <200408102051.i7AKpmmm028142@repoman.freebsd.org> From: Lukas Ertl Date: Tue, 10 Aug 2004 20:51:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/vinum geom_vinum_plex.c geom_vinum_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:51:49 -0000 le 2004-08-10 20:51:48 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_plex.c geom_vinum_subr.c Log: If we kill the worklist thread of a RAID5 plex we can destroy the worklist mutex at the same time, so move the mtx_destroy() call to gv_kill_thread(). Revision Changes Path 1.8 +0 -1 src/sys/geom/vinum/geom_vinum_plex.c 1.6 +1 -0 src/sys/geom/vinum/geom_vinum_subr.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 20:51:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA32616A54B; Tue, 10 Aug 2004 20:51:52 +0000 (GMT) Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD6FC43D2D; Tue, 10 Aug 2004 20:51:51 +0000 (GMT) (envelope-from alc@cs.rice.edu) Received: from localhost (calypso.cs.rice.edu [128.42.1.127]) by cs.rice.edu (Postfix) with ESMTP id 502244B00B; Tue, 10 Aug 2004 15:51:51 -0500 (CDT) Received: from cs.rice.edu ([128.42.1.30]) by localhost (calypso.cs.rice.edu [128.42.1.127]) (amavisd-new, port 10024) with LMTP id 16451-01-24; Tue, 10 Aug 2004 15:51:51 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id F05E54B003; Tue, 10 Aug 2004 15:51:50 -0500 (CDT) Date: Tue, 10 Aug 2004 15:51:50 -0500 From: Alan Cox To: Brian Feldman Message-ID: <20040810205150.GX3527@cs.rice.edu> References: <200408101442.i7AEgnsb012799@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408101442.i7AEgnsb012799@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-Virus-Scanned: by amavis-20030616-p7 at cs.rice.edu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:51:53 -0000 On Tue, Aug 10, 2004 at 02:42:49PM +0000, Brian Feldman wrote: > green 2004-08-10 14:42:49 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_kern.c vm_map.c > Log: > Back out all behavioral chnages. > > Revision Changes Path > 1.120 +0 -4 src/sys/vm/vm_kern.c > 1.354 +18 -33 src/sys/vm/vm_map.c Thank you. Also, for updating the man pages. Alan From owner-cvs-src@FreeBSD.ORG Tue Aug 10 20:53:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ABFC16A4CF; Tue, 10 Aug 2004 20:53:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6165D43D31; Tue, 10 Aug 2004 20:53:26 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKrQxp028280; Tue, 10 Aug 2004 20:53:26 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKrQxM028279; Tue, 10 Aug 2004 20:53:26 GMT (envelope-from alc) Message-Id: <200408102053.i7AKrQxM028279@repoman.freebsd.org> From: Alan Cox Date: Tue, 10 Aug 2004 20:53:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include pmap.h src/sys/sparc64/sparc64 machdep.c pmap.c tsb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:53:26 -0000 alc 2004-08-10 20:53:26 UTC FreeBSD src repository Modified files: sys/sparc64/include pmap.h sys/sparc64/sparc64 machdep.c pmap.c tsb.c Log: Add pmap locking to many of the functions. Implement the protection check required by the pmap_extract_and_hold() specification. Remove the acquisition and release of Giant from pmap_extract_and_hold() and pmap_protect(). Many thanks to Ken Smith for resolving a sparc64-specific initialization problem in my original patch. Tested by: kensmith@ Revision Changes Path 1.42 +14 -0 src/sys/sparc64/include/pmap.h 1.111 +5 -0 src/sys/sparc64/sparc64/machdep.c 1.138 +51 -16 src/sys/sparc64/sparc64/pmap.c 1.36 +2 -4 src/sys/sparc64/sparc64/tsb.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 21:07:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E161C16A4CF; Tue, 10 Aug 2004 21:07:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C28EE43D41; Tue, 10 Aug 2004 21:07:27 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AL7RoS031183; Tue, 10 Aug 2004 21:07:27 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AL7RB8031182; Tue, 10 Aug 2004 21:07:27 GMT (envelope-from simon) Message-Id: <200408102107.i7AL7RB8031182@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 21:07:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 mlx.4 mly.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:07:28 -0000 simon 2004-08-10 21:07:27 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 mlx.4 mly.4 Log: Add a HARDWARE section which lists supported devices. Clean up device lists a bit while I'm here anyway. Revision Changes Path 1.17 +19 -14 src/share/man/man4/mlx.4 1.8 +19 -15 src/share/man/man4/mly.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 21:43:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1A0A16A4CE; Tue, 10 Aug 2004 21:43:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D36F943D46; Tue, 10 Aug 2004 21:43:40 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ALhel0032093; Tue, 10 Aug 2004 21:43:40 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ALhec8032092; Tue, 10 Aug 2004 21:43:40 GMT (envelope-from alc) Message-Id: <200408102143.i7ALhec8032092@repoman.freebsd.org> From: Alan Cox Date: Tue, 10 Aug 2004 21:43:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/arm/arm pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:43:41 -0000 alc 2004-08-10 21:43:40 UTC FreeBSD src repository Modified files: sys/arm/arm pmap.c Log: Add a comment describing pmap_extract_and_hold() noting that the protection check still needs implementation on arm. Revision Changes Path 1.12 +7 -0 src/sys/arm/arm/pmap.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 21:47:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7271516A4CE; Tue, 10 Aug 2004 21:47:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 548A843D5A; Tue, 10 Aug 2004 21:47:11 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ALlB49032244; Tue, 10 Aug 2004 21:47:11 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ALlBSv032243; Tue, 10 Aug 2004 21:47:11 GMT (envelope-from alc) Message-Id: <200408102147.i7ALlBSv032243@repoman.freebsd.org> From: Alan Cox Date: Tue, 10 Aug 2004 21:47:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_physio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:47:11 -0000 alc 2004-08-10 21:47:11 UTC FreeBSD src repository Modified files: sys/kern kern_physio.c Log: Eliminate the acquisition and release of Giant within physio(). Remove the spl calls. Reviewed by: phk@ Discussed with: scottl@ Revision Changes Path 1.64 +0 -6 src/sys/kern/kern_physio.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 22:02:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 457FB16A4CE; Tue, 10 Aug 2004 22:02:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28AFE43D2D; Tue, 10 Aug 2004 22:02:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AM2rxM032733; Tue, 10 Aug 2004 22:02:53 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AM2rke032732; Tue, 10 Aug 2004 22:02:53 GMT (envelope-from njl) Message-Id: <200408102202.i7AM2rke032732@repoman.freebsd.org> From: Nate Lawson Date: Tue, 10 Aug 2004 22:02:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:02:53 -0000 njl 2004-08-10 22:02:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Don't call DEVICE_RESUME a second time if DEVICE_SUSPEND fails. The bus_generic_suspend method does this for us. Disable interrupts before entering S1. This may help some systems suspend to S1 successfully. Revision Changes Path 1.184 +10 -11 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 22:17:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA6BC16A4CE; Tue, 10 Aug 2004 22:17:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D56C43D4C; Tue, 10 Aug 2004 22:17:01 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMH1na033151; Tue, 10 Aug 2004 22:17:01 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMH1QG033150; Tue, 10 Aug 2004 22:17:01 GMT (envelope-from simon) Message-Id: <200408102217.i7AMH1QG033150@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:17:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ncv.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:17:01 -0000 simon 2004-08-10 22:17:01 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ncv.4 Log: Add a HARDWARE section which lists supported devices. Revision Changes Path 1.6 +5 -3 src/share/man/man4/ncv.4 From owner-cvs-src@FreeBSD.ORG Tue Aug 10 22:19:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCF9C16A4CE; Tue, 10 Aug 2004 22:19:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC50F43D5C; Tue, 10 Aug 2004 22:19:57 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMJv3f033249; Tue, 10 Aug 2004 22:19:57 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMJv2c033248; Tue, 10 Aug 2004 22:19:57 GMT (envelope-from simon) Message-Id: <200408102219.i7AMJv2c033248@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:19:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:19:58 -0000 simon 2004-08-10 22:19:57 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Auto generate device listings the following drivers: mlx, mly, and ncv. Revision Changes Path 1.225 +4 -9 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.4 +3 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Tue Aug 10 22:33:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBE9316A4CE; Tue, 10 Aug 2004 22:33:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE18343D3F; Tue, 10 Aug 2004 22:33:21 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMXLBE036091; Tue, 10 Aug 2004 22:33:21 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMXLAj036090; Tue, 10 Aug 2004 22:33:21 GMT (envelope-from simon) Message-Id: <200408102233.i7AMXLAj036090@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:33:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:33:21 -0000 simon 2004-08-10 22:33:21 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Add id tags to sections which does not already have one to make it simpler to link directly into the Hardware Notes. Revision Changes Path 1.226 +11 -11 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Tue Aug 10 23:52:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2366716A4CE; Tue, 10 Aug 2004 23:52:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0791D43D5A; Tue, 10 Aug 2004 23:52:46 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ANqjp8039414; Tue, 10 Aug 2004 23:52:45 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ANqjrJ039413; Tue, 10 Aug 2004 23:52:45 GMT (envelope-from rwatson) Message-Id: <200408102352.i7ANqjrJ039413@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Aug 2004 23:52:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys vnode.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 23:52:46 -0000 rwatson 2004-08-10 23:52:45 UTC FreeBSD src repository Modified files: sys/sys vnode.h Log: Modify vnode locking key: the v_pollinfo pointer itself is protected by Giant; the contents are protected by the pollinfo mutex. We rely on Giant to prevent races in assigning the value of v_pollinfo. Revision Changes Path 1.242 +2 -1 src/sys/sys/vnode.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 00:12:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B1AE16A4CE; Wed, 11 Aug 2004 00:12:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7019E43D45; Wed, 11 Aug 2004 00:12:27 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B0CReE039954; Wed, 11 Aug 2004 00:12:27 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B0CRnp039953; Wed, 11 Aug 2004 00:12:27 GMT (envelope-from emax) Message-Id: <200408110012.i7B0CRnp039953@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 11 Aug 2004 00:12:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 00:12:27 -0000 emax 2004-08-11 00:12:27 UTC FreeBSD src repository Modified files: sys/net if_tap.c Log: Set IFF_RUNNING flag on the interface as soon as the control device is opened. Revision Changes Path 1.46 +9 -3 src/sys/net/if_tap.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 00:22:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 106CD16A4CE; Wed, 11 Aug 2004 00:22:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E952643D48; Wed, 11 Aug 2004 00:22:23 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B0MNe5040267; Wed, 11 Aug 2004 00:22:23 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B0MNYj040266; Wed, 11 Aug 2004 00:22:23 GMT (envelope-from emax) Message-Id: <200408110022.i7B0MNYj040266@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 11 Aug 2004 00:22:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bluetooth/bcmfw bcmfw.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 00:22:24 -0000 emax 2004-08-11 00:22:23 UTC FreeBSD src repository Modified files: usr.sbin/bluetooth/bcmfw bcmfw.8 Log: Update links to the bluez-firmware package Update md5 hash Revision Changes Path 1.5 +4 -4 src/usr.sbin/bluetooth/bcmfw/bcmfw.8 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 01:17:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54BF116A4CE; Wed, 11 Aug 2004 01:17:35 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFD3443D45; Wed, 11 Aug 2004 01:17:34 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7B1G0dB001689; Tue, 10 Aug 2004 21:16:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7B1G0UJ001686; Tue, 10 Aug 2004 21:16:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 10 Aug 2004 21:16:00 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200408102352.i7ANqjrJ039413@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/sys vnode.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:17:35 -0000 On Tue, 10 Aug 2004, Robert Watson wrote: > Log: > Modify vnode locking key: the v_pollinfo pointer itself is protected > by Giant; the contents are protected by the pollinfo mutex. We rely > on Giant to prevent races in assigning the value of v_pollinfo. Oops, left out: Reported by: jmg Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Wed Aug 11 01:27:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11D9716A4CE; Wed, 11 Aug 2004 01:27:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8ADE43D49; Wed, 11 Aug 2004 01:27:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1Rrlv045345; Wed, 11 Aug 2004 01:27:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1Rrjx045344; Wed, 11 Aug 2004 01:27:53 GMT (envelope-from rwatson) Message-Id: <200408110127.i7B1Rrjx045344@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 01:27:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:27:54 -0000 rwatson 2004-08-11 01:27:53 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: In v_addpollinfo(), we allocate storage to back vp->v_pollinfo. However, we may sleep when doing so; check that we didn't race with another thread allocating storage for the vnode after allocation is made to a local pointer, and only update the vnode pointer if it's still NULL. Otherwise, accept that another thread got there first, and release the local storage. Discussed with: jmg Revision Changes Path 1.520 +7 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 01:34:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1970916A4CE; Wed, 11 Aug 2004 01:34:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1373043D2D; Wed, 11 Aug 2004 01:34:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1YI9X045792; Wed, 11 Aug 2004 01:34:18 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1YI9Y045791; Wed, 11 Aug 2004 01:34:18 GMT (envelope-from rwatson) Message-Id: <200408110134.i7B1YI9Y045791@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 01:34:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:34:19 -0000 rwatson 2004-08-11 01:34:18 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Log: Add ADAPTIVE_GIANT to GENERIC on i386, with the intent of making it a standard configuration similar to [NO_]ADAPTIVE_MUTEXES. This feature causes Giant to be included in the set of mutexes adaptively spun on. It appears to have a positive effect on performance on SMP across several workloads, including measurements of a 16% improvement on buildworld, and 30%+ improvement for MySQL using the supersmack benchmark with Giant over the network stack; a 6% improvement without Giant on the network stack (as a result of less giant contention). Revision Changes Path 1.413 +1 -0 src/sys/i386/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Wed Aug 11 01:35:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E856E16A4CE; Wed, 11 Aug 2004 01:35:27 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8211243D62; Wed, 11 Aug 2004 01:35:27 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bui1W-0006dW-00; Wed, 11 Aug 2004 03:35:26 +0200 Received: from [217.83.12.117] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bui1W-0005FE-00; Wed, 11 Aug 2004 03:35:26 +0200 From: Max Laier To: Maksim Yevmenkin Date: Wed, 11 Aug 2004 03:33:25 +0200 User-Agent: KMail/1.6.2 References: <200408110012.i7B0CRnp039953@repoman.freebsd.org> In-Reply-To: <200408110012.i7B0CRnp039953@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_tdXGBO/MaOZWwID"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408110333.33418.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:35:28 -0000 --Boundary-02=_tdXGBO/MaOZWwID Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: > emax 2004-08-11 00:12:27 UTC > > FreeBSD src repository > > Modified files: > sys/net if_tap.c > Log: > Set IFF_RUNNING flag on the interface as soon as the control device is > opened. Erm ... 1) IFF_RUNNING has a different meaning (for all I know) - "resources=20 allocated" i.e. address(es) assigned. See if_loop.c for instance. 2) What are these spl's for? You are not going to MFC that anyway as it wou= ld=20 be user visible. I recon a thread with this topic, but I think the outcome was that this is = not=20 a good thing to do. Can't find the thread though. =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-02=_tdXGBO/MaOZWwID Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBGXdtXyyEoT62BG0RAphhAJ9xzRmIJwvhV4qCU9u52DvvjReNEACfVU/1 gJlMDP5zxSpiPFt4CbMLM5I= =ELea -----END PGP SIGNATURE----- --Boundary-02=_tdXGBO/MaOZWwID-- From owner-cvs-src@FreeBSD.ORG Wed Aug 11 02:04:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4132216A4CE; Wed, 11 Aug 2004 02:04:34 +0000 (GMT) Received: from green.homeunix.org (pcp04371970pcs.nrockv01.md.comcast.net [69.140.223.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id D389543D41; Wed, 11 Aug 2004 02:04:33 +0000 (GMT) (envelope-from green@green.homeunix.org) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.13.1/8.13.1) with ESMTP id i7B24Xwa001325; Tue, 10 Aug 2004 22:04:33 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i7B24W9X001324; Tue, 10 Aug 2004 22:04:32 -0400 (EDT) (envelope-from green) Date: Tue, 10 Aug 2004 22:04:31 -0400 From: Brian Fundakowski Feldman To: Max Laier Message-ID: <20040811020431.GA981@green.homeunix.org> References: <200408110012.i7B0CRnp039953@repoman.freebsd.org> <200408110333.33418.max@love2party.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408110333.33418.max@love2party.net> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Maksim Yevmenkin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 02:04:34 -0000 On Wed, Aug 11, 2004 at 03:33:25AM +0200, Max Laier wrote: > On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: > > emax 2004-08-11 00:12:27 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net if_tap.c > > Log: > > Set IFF_RUNNING flag on the interface as soon as the control device is > > opened. > > Erm ... > 1) IFF_RUNNING has a different meaning (for all I know) - "resources > allocated" i.e. address(es) assigned. See if_loop.c for instance. > 2) What are these spl's for? You are not going to MFC that anyway as it would > be user visible. > > I recon a thread with this topic, but I think the outcome was that this is not > a good thing to do. Can't find the thread though. Having written a driver recently, the best I could find is that IFF_RUNNING essentially means not dead... -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-src@FreeBSD.ORG Wed Aug 11 02:35:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE0C816A4CF; Wed, 11 Aug 2004 02:35:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2E0943D49; Wed, 11 Aug 2004 02:35:06 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B2Z6tT047682; Wed, 11 Aug 2004 02:35:06 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B2Z6JR047681; Wed, 11 Aug 2004 02:35:06 GMT (envelope-from marcel) Message-Id: <200408110235.i7B2Z6JR047681@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 11 Aug 2004 02:35:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha elf_machdep.c src/sys/amd64/amd64 elf_machdep.c src/sys/arm/arm elf_machdep.c src/sys/compat/ia32 ia32_sysvec.c src/sys/i386/i386 elf_machdep.c src/sys/ia64/ia64... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 02:35:07 -0000 marcel 2004-08-11 02:35:06 UTC FreeBSD src repository Modified files: sys/alpha/alpha elf_machdep.c sys/amd64/amd64 elf_machdep.c sys/arm/arm elf_machdep.c sys/compat/ia32 ia32_sysvec.c sys/i386/i386 elf_machdep.c sys/ia64/ia64 elf_machdep.c machdep.c sys/ia64/include md_var.h sys/kern imgact_elf.c sys/powerpc/powerpc elf_machdep.c sys/sparc64/sparc64 elf_machdep.c sys/sys imgact_elf.h Log: Add __elfN(dump_thread). This function is called from __elfN(coredump) to allow dumping per-thread machine specific notes. On ia64 we use this function to flush the dirty registers onto the backingstore before we write out the PRSTATUS notes. Tested on: alpha, amd64, i386, ia64 & sparc64 Not tested on: arm, powerpc Revision Changes Path 1.19 +7 -0 src/sys/alpha/alpha/elf_machdep.c 1.22 +8 -0 src/sys/amd64/amd64/elf_machdep.c 1.3 +8 -0 src/sys/arm/arm/elf_machdep.c 1.19 +8 -0 src/sys/compat/ia32/ia32_sysvec.c 1.20 +8 -0 src/sys/i386/i386/elf_machdep.c 1.19 +28 -53 src/sys/ia64/ia64/elf_machdep.c 1.183 +28 -23 src/sys/ia64/ia64/machdep.c 1.18 +2 -0 src/sys/ia64/include/md_var.h 1.155 +5 -2 src/sys/kern/imgact_elf.c 1.22 +8 -0 src/sys/powerpc/powerpc/elf_machdep.c 1.19 +8 -0 src/sys/sparc64/sparc64/elf_machdep.c 1.27 +3 -0 src/sys/sys/imgact_elf.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 03:33:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECD3616A4CE; Wed, 11 Aug 2004 03:33:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D07E843D54; Wed, 11 Aug 2004 03:33:32 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3XWVZ049407; Wed, 11 Aug 2004 03:33:32 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3XWaO049406; Wed, 11 Aug 2004 03:33:32 GMT (envelope-from rwatson) Message-Id: <200408110333.i7B3XWaO049406@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 03:33:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/random randomdev_soft.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:33:33 -0000 rwatson 2004-08-11 03:33:32 UTC FreeBSD src repository Modified files: sys/dev/random randomdev_soft.c Log: Perform a lockless read to test whether an entropy havesting fifo is full, avoiding the cost of mutex operations if it is. We re-test once the mutex is acquired to make sure it's still true before doing the -modify-write part of the read-modify-write. Note that due to the maximum fifo depth being pretty deep, this is unlikely to improve harvesting performance yet. Approved by: markm Revision Changes Path 1.4 +4 -0 src/sys/dev/random/randomdev_soft.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 03:38:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F372416A4CF; Wed, 11 Aug 2004 03:38:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B2C43D54; Wed, 11 Aug 2004 03:38:55 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3ctxl049604; Wed, 11 Aug 2004 03:38:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3ctoM049603; Wed, 11 Aug 2004 03:38:55 GMT (envelope-from rwatson) Message-Id: <200408110338.i7B3ctoM049603@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 03:38:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb if_aue.c if_axe.c if_cue.c if_kue.c if_rue.c if_udav.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:38:56 -0000 rwatson 2004-08-11 03:38:55 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_axe.c if_cue.c if_kue.c if_rue.c if_udav.c Log: Mark USB ethernet devices as IFF_NEEDSGIANT, since the USB framework if_start routines cannot currently be entered without Giant. When the kernel is running with debug.mpsafenet != 0, this will defer if_start execution to a task queue thread holding Giant, which may introduce additional latency, but avoid incorrect execution. Suggested by: dfr Revision Changes Path 1.86 +2 -1 src/sys/dev/usb/if_aue.c 1.21 +2 -1 src/sys/dev/usb/if_axe.c 1.52 +2 -1 src/sys/dev/usb/if_cue.c 1.58 +2 -1 src/sys/dev/usb/if_kue.c 1.16 +2 -1 src/sys/dev/usb/if_rue.c 1.8 +2 -1 src/sys/dev/usb/if_udav.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 03:43:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9849216A4CE; Wed, 11 Aug 2004 03:43:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C0C643D53; Wed, 11 Aug 2004 03:43:10 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3hA2q049776; Wed, 11 Aug 2004 03:43:10 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3hA0G049775; Wed, 11 Aug 2004 03:43:10 GMT (envelope-from rwatson) Message-Id: <200408110343.i7B3hA0G049775@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 03:43:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:43:10 -0000 rwatson 2004-08-11 03:43:10 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Replace a reference to splnet() with a reference to locking in a comment. Revision Changes Path 1.207 +1 -1 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 04:30:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83CA516A4CE; Wed, 11 Aug 2004 04:30:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6555043D53; Wed, 11 Aug 2004 04:30:49 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B4Un35051010; Wed, 11 Aug 2004 04:30:49 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B4UneQ051009; Wed, 11 Aug 2004 04:30:49 GMT (envelope-from scottl) Message-Id: <200408110430.i7B4UneQ051009@repoman.freebsd.org> From: Scott Long Date: Wed, 11 Aug 2004 04:30:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_vr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 04:30:49 -0000 scottl 2004-08-11 04:30:49 UTC FreeBSD src repository Modified files: sys/pci if_vr.c Log: Revert rev 1.93 and replace it by grabbing the vr lock before calling mii_pollstat(). The previous was causing the vr lock to recurse. PR: kern/70189 Revision Changes Path 1.94 +2 -2 src/sys/pci/if_vr.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 04:35:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D33C116A4CE; Wed, 11 Aug 2004 04:35:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5B7743D58; Wed, 11 Aug 2004 04:35:20 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B4ZKwq051129; Wed, 11 Aug 2004 04:35:20 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B4ZKnZ051128; Wed, 11 Aug 2004 04:35:20 GMT (envelope-from rwatson) Message-Id: <200408110435.i7B4ZKnZ051128@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 04:35:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_pcb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 04:35:21 -0000 rwatson 2004-08-11 04:35:20 UTC FreeBSD src repository Modified files: sys/netinet in_pcb.c Log: Assert the locks of inpcbinfo's and inpcb's passed into in_pcbconnect() and in_pcbconnect_setup(), since these functions frob the port and address state of inpcbs. Revision Changes Path 1.153 +6 -0 src/sys/netinet/in_pcb.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 04:44:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CE8516A4CE; Wed, 11 Aug 2004 04:44:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FCAD43D3F; Wed, 11 Aug 2004 04:44:49 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B4inxg051381; Wed, 11 Aug 2004 04:44:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B4inGH051380; Wed, 11 Aug 2004 04:44:49 GMT (envelope-from rwatson) Message-Id: <200408110444.i7B4inGH051380@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 04:44:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 04:44:49 -0000 rwatson 2004-08-11 04:44:49 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Add 'axe' interface to NOTES so it is built with LINT as with other USB network interface device drivers. Revision Changes Path 1.1255 +6 -0 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Wed Aug 11 05:20:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E412216A4CE; Wed, 11 Aug 2004 05:20:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C539843D39; Wed, 11 Aug 2004 05:20:25 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B5KPrP052716; Wed, 11 Aug 2004 05:20:25 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B5KPNC052715; Wed, 11 Aug 2004 05:20:25 GMT (envelope-from bmah) Message-Id: <200408110520.i7B5KPNC052715@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 11 Aug 2004 05:20:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 05:20:26 -0000 bmah 2004-08-11 05:20:25 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix a few nits. Mostly grammar and punctuation changes, although some minor content changes were made to the acpi_asus(4) and acpi_toshiba(4) notes. Revision Changes Path 1.758 +20 -22 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Wed Aug 11 05:29:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36B7B16A4CE; Wed, 11 Aug 2004 05:29:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C4643D45; Wed, 11 Aug 2004 05:29:14 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B5TDAr052916; Wed, 11 Aug 2004 05:29:13 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B5TD4F052915; Wed, 11 Aug 2004 05:29:13 GMT (envelope-from marcel) Message-Id: <200408110529.i7B5TD4F052915@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 11 Aug 2004 05:29:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 05:29:14 -0000 marcel 2004-08-11 05:29:13 UTC FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: In set_regs(), flush the dirty registers onto the backingstore before we update the registers. That way we don't have any dirty registers to worry about and also know that bsp=bspstore, which makes updating the RSE related registers predictable. This is not the end of it. We need more validity checks, but for now this allows us to complete the gdb testsuite without crashing the kernel. Revision Changes Path 1.184 +3 -0 src/sys/ia64/ia64/machdep.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 06:17:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2365C16A4CF; Wed, 11 Aug 2004 06:17:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F267F43D46; Wed, 11 Aug 2004 06:17:02 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6H2Gu054186; Wed, 11 Aug 2004 06:17:02 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6H21C054185; Wed, 11 Aug 2004 06:17:02 GMT (envelope-from ru) Message-Id: <200408110617.i7B6H21C054185@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Aug 2004 06:17:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:17:03 -0000 ru 2004-08-11 06:17:02 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: I was born in the USSR. Revision Changes Path 1.132 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Aug 11 06:44:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 288A316A4CE; Wed, 11 Aug 2004 06:44:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0796D43D58; Wed, 11 Aug 2004 06:44:37 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6iafn054883; Wed, 11 Aug 2004 06:44:36 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6iaLH054882; Wed, 11 Aug 2004 06:44:36 GMT (envelope-from demon) Message-Id: <200408110644.i7B6iaLH054882@repoman.freebsd.org> From: Dmitry Sivachenko Date: Wed, 11 Aug 2004 06:44:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:44:37 -0000 demon 2004-08-11 06:44:36 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Correct the name of the country I was born in. Revision Changes Path 1.133 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Aug 11 07:09:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E0B716A4CE; Wed, 11 Aug 2004 07:09:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E57743D41; Wed, 11 Aug 2004 07:09:44 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B79hL7055701; Wed, 11 Aug 2004 07:09:43 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B79h2X055700; Wed, 11 Aug 2004 07:09:43 GMT (envelope-from harti) Message-Id: <200408110709.i7B79h2X055700@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 07:09:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man5 make.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:09:44 -0000 harti 2004-08-11 07:09:43 UTC FreeBSD src repository Modified files: share/man/man5 make.conf.5 Log: Yet another place where we can document that MAKEOBJDIRPREFIX and MAKEOBJDIR are, and have always been, environment variables. Requested by: kris Revision Changes Path 1.89 +8 -0 src/share/man/man5/make.conf.5 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 07:14:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37EC916A4CE; Wed, 11 Aug 2004 07:14:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 177A643D1D; Wed, 11 Aug 2004 07:14:12 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B7EBrk055876; Wed, 11 Aug 2004 07:14:11 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B7EBhd055875; Wed, 11 Aug 2004 07:14:11 GMT (envelope-from harti) Message-Id: <200408110714.i7B7EBhd055875@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 07:14:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/etc make.conf X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:14:12 -0000 harti 2004-08-11 07:14:11 UTC FreeBSD src repository Modified files: share/examples/etc make.conf Log: Document the correct use of MAKEOBJDIRPREFIX and MAKEOBJDIR. Requested by: kris Revision Changes Path 1.228 +6 -0 src/share/examples/etc/make.conf From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:12:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5674A16A4CE; Wed, 11 Aug 2004 10:12:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 340AE43D46; Wed, 11 Aug 2004 10:12:16 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BACGeb061280; Wed, 11 Aug 2004 10:12:16 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BACGtV061279; Wed, 11 Aug 2004 10:12:16 GMT (envelope-from andre) Message-Id: <200408111012.i7BACGtV061279@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:12:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_hostcache.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:12:16 -0000 andre 2004-08-11 10:12:16 UTC FreeBSD src repository Modified files: sys/netinet tcp_hostcache.c Log: Correct the displayed bandwidth calculation for a readout via sysctl. The saved value does not have to be scaled with HZ; it is already in bytes per second. Only the multiply by eight remains to show bits per second (bps). Revision Changes Path 1.5 +1 -1 src/sys/netinet/tcp_hostcache.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:18:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67A9416A4CE; Wed, 11 Aug 2004 10:18:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 451FA43D3F; Wed, 11 Aug 2004 10:18:49 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAInXC061476; Wed, 11 Aug 2004 10:18:49 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAIncT061475; Wed, 11 Aug 2004 10:18:49 GMT (envelope-from andre) Message-Id: <200408111018.i7BAIncT061475@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:18:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys socket.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:18:49 -0000 andre 2004-08-11 10:18:49 UTC FreeBSD src repository Modified files: sys/sys socket.h Log: RFC 2292 requires to check msg_controllen, in case that the kernel returns an empty list for some reasons. NetBSD: socket.h,v 1.62 2001/09/07 08:13:01 itojun OpenBSD: socket.h,v 1.39 2001/09/07 16:45:25 itojun MFC after: 2 weeks Revision Changes Path 1.83 +8 -1 src/sys/sys/socket.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:23:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24C5116A4CF for ; Wed, 11 Aug 2004 10:23:35 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5246143D4C for ; Wed, 11 Aug 2004 10:23:34 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 88770 invoked from network); 11 Aug 2004 10:17:33 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 10:17:33 -0000 Message-ID: <4119F3AA.662F019D@freebsd.org> Date: Wed, 11 Aug 2004 12:23:38 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111018.i7BAIncT061475@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/sys socket.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:23:35 -0000 Andre Oppermann wrote: > > andre 2004-08-11 10:18:49 UTC > > FreeBSD src repository > > Modified files: > sys/sys socket.h > Log: > RFC 2292 requires to check msg_controllen, in case that the kernel returns > an empty list for some reasons. > > NetBSD: socket.h,v 1.62 2001/09/07 08:13:01 itojun > OpenBSD: socket.h,v 1.39 2001/09/07 16:45:25 itojun > > MFC after: 2 weeks > > Revision Changes Path > 1.83 +8 -1 src/sys/sys/socket.h This fixes a nasty problem we had with porting OpenBGPd to FreeBSD. -- Andre From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:25:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B305116A4CE; Wed, 11 Aug 2004 10:25:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9359943D53; Wed, 11 Aug 2004 10:25:23 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAPN0r062252; Wed, 11 Aug 2004 10:25:23 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAPNRj062251; Wed, 11 Aug 2004 10:25:23 GMT (envelope-from den) Message-Id: <200408111025.i7BAPNRj062251@repoman.freebsd.org> From: Denis Peplin Date: Wed, 11 Aug 2004 10:25:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ru_RU.KOI8-R Makefile src/release/doc/ru_RU.KOI8-R/early-adopter article.sgml src/release/doc/ru_RU.KOI8-R/hardware Makefile.inc src/release/doc/ru_RU.KOI8-R/hardware/alpha Makefile article.sgml... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:25:24 -0000 den 2004-08-11 10:25:23 UTC FreeBSD src repository (doc committer) Modified files: release/doc/ru_RU.KOI8-R Makefile release/doc/ru_RU.KOI8-R/early-adopter article.sgml release/doc/ru_RU.KOI8-R/hardware Makefile.inc release/doc/ru_RU.KOI8-R/hardware/alpha Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/amd64 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/common dev.sgml release/doc/ru_RU.KOI8-R/hardware/i386 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/ia64 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/pc98 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/sparc64 Makefile article.sgml release/doc/ru_RU.KOI8-R/installation/alpha article.sgml release/doc/ru_RU.KOI8-R/installation/amd64 article.sgml release/doc/ru_RU.KOI8-R/installation/i386 article.sgml release/doc/ru_RU.KOI8-R/installation/ia64 article.sgml release/doc/ru_RU.KOI8-R/installation/pc98 article.sgml release/doc/ru_RU.KOI8-R/installation/sparc64 article.sgml release/doc/ru_RU.KOI8-R/readme article.sgml release/doc/ru_RU.KOI8-R/relnotes/alpha article.sgml release/doc/ru_RU.KOI8-R/relnotes/amd64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/common new.sgml release/doc/ru_RU.KOI8-R/relnotes/i386 article.sgml release/doc/ru_RU.KOI8-R/relnotes/ia64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/pc98 article.sgml release/doc/ru_RU.KOI8-R/relnotes/sparc64 article.sgml Log: Merge from recent English revisions Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/Makefile 1.4 +11 -27 src/release/doc/ru_RU.KOI8-R/early-adopter/article.sgml 1.2 +10 -2 src/release/doc/ru_RU.KOI8-R/hardware/Makefile.inc 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml 1.2 +53 -156 src/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml 1.3 +6 -9 src/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml 1.4 +5 -12 src/release/doc/ru_RU.KOI8-R/readme/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml 1.6 +9 -11 src/release/doc/ru_RU.KOI8-R/relnotes/common/new.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:42:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEA8616A4CE; Wed, 11 Aug 2004 10:42:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD79143D45; Wed, 11 Aug 2004 10:42:59 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAgxM0062810; Wed, 11 Aug 2004 10:42:59 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAgxbZ062809; Wed, 11 Aug 2004 10:42:59 GMT (envelope-from andre) Message-Id: <200408111042.i7BAgxbZ062809@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:42:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:43:00 -0000 andre 2004-08-11 10:42:59 UTC FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Make IP fastforwarding ALTQ-aware by adding the input traffic conditioner check and disabling the early output interface queue length check. Revision Changes Path 1.14 +10 -0 src/sys/netinet/ip_fastfwd.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:46:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DD4216A4CE; Wed, 11 Aug 2004 10:46:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D54043D2F; Wed, 11 Aug 2004 10:46:16 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAkFcW062950; Wed, 11 Aug 2004 10:46:15 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAkFVR062949; Wed, 11 Aug 2004 10:46:15 GMT (envelope-from andre) Message-Id: <200408111046.i7BAkFVR062949@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:46:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:46:16 -0000 andre 2004-08-11 10:46:15 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c ip_output.c Log: Consistently use NULL for pointer comparisons. Revision Changes Path 1.280 +11 -11 src/sys/netinet/ip_input.c 1.223 +10 -10 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 10:49:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A026216A4CE; Wed, 11 Aug 2004 10:49:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D8443D4C; Wed, 11 Aug 2004 10:49:56 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAnuv8063065; Wed, 11 Aug 2004 10:49:56 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAnufO063064; Wed, 11 Aug 2004 10:49:56 GMT (envelope-from andre) Message-Id: <200408111049.i7BAnufO063064@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:49:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:49:56 -0000 andre 2004-08-11 10:49:56 UTC FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Only check for local broadcast addresses if the mbuf is flagged with M_BCAST. Revision Changes Path 1.15 +2 -1 src/sys/netinet/ip_fastfwd.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 11:02:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C3016A4CE; Wed, 11 Aug 2004 11:02:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 275E543D49; Wed, 11 Aug 2004 11:02:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BB2Rnh063530; Wed, 11 Aug 2004 11:02:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BB2QOm063529; Wed, 11 Aug 2004 11:02:26 GMT (envelope-from ru) Message-Id: <200408111102.i7BB2QOm063529@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Aug 2004 11:02:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:02:27 -0000 ru 2004-08-11 11:02:26 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Enforce the check that MAKEOBJDIRPREFIX (if set) is set in environment only, and not as a global (in /etc/make.conf) or command-line variable. MAKEOBJDIRPREFIX has never been a global or command-line variable, and the fact that it works in some scenarios for "make buildworld" doesn't make it any more correct. Using it as a global or command-line variable is error prone, discouraged, costs us lot of false build reports, etc. This commit is aimed to fix it once and for all. Anyone potentially objecting to this change is encouraged to read the make(1) and make.conf(5) manpages, and the comments regarding the use of the MAKEOBJDIRPREFIX variable in /usr/share/mk/bsd.obj.mk and /usr/share/examples/etc/make.conf. Revision Changes Path 1.436 +7 -0 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 11:10:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D867A16A4CE; Wed, 11 Aug 2004 11:10:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B5A43D3F; Wed, 11 Aug 2004 11:10:46 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBAkBY063897; Wed, 11 Aug 2004 11:10:46 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBAkqv063896; Wed, 11 Aug 2004 11:10:46 GMT (envelope-from pjd) Message-Id: <200408111110.i7BBAkqv063896@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 11:10:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:10:47 -0000 pjd 2004-08-11 11:10:46 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c Log: Try harder to not panic on 'stop -f'. After the commit, this command should be really safe to use. Revision Changes Path 1.17 +83 -39 src/sys/geom/mirror/g_mirror.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 11:41:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A523916A4CE; Wed, 11 Aug 2004 11:41:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8674F43D5C; Wed, 11 Aug 2004 11:41:11 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBfBxx064630; Wed, 11 Aug 2004 11:41:11 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBfBfN064629; Wed, 11 Aug 2004 11:41:11 GMT (envelope-from andre) Message-Id: <200408111141.i7BBfBfN064629@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 11:41:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:41:11 -0000 andre 2004-08-11 11:41:11 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c Log: Only invoke verify_path() for verrevpath and versrcreach when we have an IP packet. Revision Changes Path 1.68 +4 -4 src/sys/netinet/ip_fw2.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 11:49:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C593916A4CE; Wed, 11 Aug 2004 11:49:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A608A43D49; Wed, 11 Aug 2004 11:49:48 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBnmJZ064832; Wed, 11 Aug 2004 11:49:48 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBnmmO064831; Wed, 11 Aug 2004 11:49:48 GMT (envelope-from andre) Message-Id: <200408111149.i7BBnmmO064831@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 11:49:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in.c in.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:49:48 -0000 andre 2004-08-11 11:49:48 UTC FreeBSD src repository Modified files: sys/netinet in.c in.h Log: Add the function in_localip() which returns 1 if an internet address is for the local host and configured on one of its interfaces. Revision Changes Path 1.76 +17 -0 src/sys/netinet/in.c 1.86 +1 -0 src/sys/netinet/in.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:04:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E63216A4CF; Wed, 11 Aug 2004 12:04:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B97F43D3F; Wed, 11 Aug 2004 12:04:36 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BC4Z71065497; Wed, 11 Aug 2004 12:04:35 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BC4Z6M065496; Wed, 11 Aug 2004 12:04:35 GMT (envelope-from pjd) Message-Id: <200408111204.i7BC4Z6M065496@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 12:04:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_io.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:04:36 -0000 pjd 2004-08-11 12:04:35 UTC FreeBSD src repository Modified files: sys/geom geom_io.c Log: When sending request once again because of ENOMEM, reset bio_children and bio_inbed fields to 0. Without this change we can end up with I/O leakage in some rare situations. I tested this change by putting failure probability mechanism simlar to this used in NOP class into g_clone_bio(9) function, so it was able to return NULL with the given probability. Discussed with: phk Revision Changes Path 1.57 +2 -0 src/sys/geom/geom_io.c From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:11:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3018916A4CE; Tue, 10 Aug 2004 19:11:18 +0000 (GMT) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8AA43D2D; Tue, 10 Aug 2004 19:11:17 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id i7AJAqqY080198; Tue, 10 Aug 2004 21:10:52 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7AJAqs6068418; Tue, 10 Aug 2004 21:10:52 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7AJAp9S068417; Tue, 10 Aug 2004 21:10:51 +0200 (CEST) (envelope-from wb) Date: Tue, 10 Aug 2004 21:10:51 +0200 From: Wilko Bulte To: Poul-Henning Kamp Message-ID: <20040810191051.GA68379@freebie.xs4all.nl> References: <20040809.150537.96131820.imp@bsdimp.com> <34636.1092088690@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <34636.1092088690@critter.freebsd.dk> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner X-Mailman-Approved-At: Wed, 11 Aug 2004 12:09:45 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:11:18 -0000 On Mon, Aug 09, 2004 at 11:58:10PM +0200, Poul-Henning Kamp wrote.. > In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: > > >: At least DDMMYYYY is in increasing order of magnitude :-) > >: > >: MMDDYYYY is in no order at all. > > > >But YYYYMMDD is sortable w/o a special date type! > > Not to mention that it is trivially and unambigously extensible to arbitrary > precision: > > YYYYMMDDHHMMSS.mmmuuunnnppp... I suppose you have the midwife consult your atomic clock for the exact time of birth? :) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Aug 10 19:44:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E55D216A4CE; Tue, 10 Aug 2004 19:44:42 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53A8B43D31; Tue, 10 Aug 2004 19:44:42 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i7AJiTSY056151; Tue, 10 Aug 2004 21:44:29 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Wilko Bulte From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 10 Aug 2004 21:10:51 +0200." <20040810191051.GA68379@freebie.xs4all.nl> Date: Tue, 10 Aug 2004 21:44:29 +0200 Message-ID: <56150.1092167069@critter.freebsd.dk> Sender: phk@critter.freebsd.dk X-Mailman-Approved-At: Wed, 11 Aug 2004 12:09:45 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:44:43 -0000 In message <20040810191051.GA68379@freebie.xs4all.nl>, Wilko Bulte writes: >On Mon, Aug 09, 2004 at 11:58:10PM +0200, Poul-Henning Kamp wrote.. >> In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: >> >> >: At least DDMMYYYY is in increasing order of magnitude :-) >> >: >> >: MMDDYYYY is in no order at all. >> > >> >But YYYYMMDD is sortable w/o a special date type! >> >> Not to mention that it is trivially and unambigously extensible to arbitrary >> precision: >> >> YYYYMMDDHHMMSS.mmmuuunnnppp... > >I suppose you have the midwife consult your atomic clock for the exact >time of birth? I was not in a position to sufficiently communicate with the midwife at my birth, sorry. -- 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. From owner-cvs-src@FreeBSD.ORG Tue Aug 10 21:45:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06EB516A4CE; Tue, 10 Aug 2004 21:45:49 +0000 (GMT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E3C943D46; Tue, 10 Aug 2004 21:45:48 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7ALjBWi006019; Tue, 10 Aug 2004 23:45:11 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7ALjAB1069802; Tue, 10 Aug 2004 23:45:10 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7ALjApr069801; Tue, 10 Aug 2004 23:45:10 +0200 (CEST) (envelope-from wb) Date: Tue, 10 Aug 2004 23:45:10 +0200 From: Wilko Bulte To: Poul-Henning Kamp Message-ID: <20040810214510.GA69747@freebie.xs4all.nl> References: <20040810191051.GA68379@freebie.xs4all.nl> <56150.1092167069@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56150.1092167069@critter.freebsd.dk> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner X-Mailman-Approved-At: Wed, 11 Aug 2004 12:09:45 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:45:49 -0000 On Tue, Aug 10, 2004 at 09:44:29PM +0200, Poul-Henning Kamp wrote.. > In message <20040810191051.GA68379@freebie.xs4all.nl>, Wilko Bulte writes: > >On Mon, Aug 09, 2004 at 11:58:10PM +0200, Poul-Henning Kamp wrote.. > >> In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: > >> > >> >: At least DDMMYYYY is in increasing order of magnitude :-) > >> >: > >> >: MMDDYYYY is in no order at all. > >> > > >> >But YYYYMMDD is sortable w/o a special date type! > >> > >> Not to mention that it is trivially and unambigously extensible to arbitrary > >> precision: > >> > >> YYYYMMDDHHMMSS.mmmuuunnnppp... > > > >I suppose you have the midwife consult your atomic clock for the exact > >time of birth? > > I was not in a position to sufficiently communicate with the midwife > at my birth, sorry. Figures. I was more refering to offspring of your own to be honest ;) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:17:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A5DE16A4CE; Wed, 11 Aug 2004 12:17:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F84443D62; Wed, 11 Aug 2004 12:17:55 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCHtJ7066216; Wed, 11 Aug 2004 12:17:55 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCHtLd066215; Wed, 11 Aug 2004 12:17:55 GMT (envelope-from harti) Message-Id: <200408111217.i7BCHtLd066215@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:17:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/ngatm - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:17:55 -0000 harti 2004-08-11 12:17:54 UTC FreeBSD src repository src/contrib/ngatm - Imported sources Update of /home/ncvs/src/contrib/ngatm In directory repoman.freebsd.org:/tmp/cvs-serv66203 Log Message: Virgin import of NgATM user part 1.1 Status: Vendor Tag: BEGEMOT Release Tags: NGATM_1_1 U src/contrib/ngatm/man/libngatm.3 U src/contrib/ngatm/man/uniaddr.3 U src/contrib/ngatm/man/unifunc.3 U src/contrib/ngatm/man/unimsg.3 U src/contrib/ngatm/man/unisap.3 U src/contrib/ngatm/man/unistruct.3 U src/contrib/ngatm/libngatm/cccust.h U src/contrib/ngatm/libngatm/net_in.fig U src/contrib/ngatm/libngatm/net_out.fig U src/contrib/ngatm/libngatm/sscfucust.h U src/contrib/ngatm/libngatm/sscopcust.h U src/contrib/ngatm/libngatm/unicust.h U src/contrib/ngatm/libngatm/unimsg.c N src/contrib/ngatm/snmp_atm/BEGEMOT-ATM.txt N src/contrib/ngatm/snmp_atm/atm.h N src/contrib/ngatm/snmp_atm/atm_tree.def N src/contrib/ngatm/snmp_atm/snmp_atm.3 N src/contrib/ngatm/snmp_atm/snmp_atm.c N src/contrib/ngatm/snmp_atm/snmp_atm.h U src/contrib/ngatm/sscop/common.c U src/contrib/ngatm/sscop/common.h U src/contrib/ngatm/sscop/sscop.1 U src/contrib/ngatm/sscop/sscop_main.c No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:19:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C7C916A4CE; Wed, 11 Aug 2004 12:19:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E2CF43D45; Wed, 11 Aug 2004 12:19:32 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCJW7b066288; Wed, 11 Aug 2004 12:19:32 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCJWLI066287; Wed, 11 Aug 2004 12:19:32 GMT (envelope-from harti) Message-Id: <200408111219.i7BCJWLI066287@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:19:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/ngatm FREEBSD-Xlist X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:19:32 -0000 harti 2004-08-11 12:19:32 UTC FreeBSD src repository Added files: contrib/ngatm FREEBSD-Xlist Log: Exclusion list for easier import. Revision Changes Path 1.1 +13 -0 src/contrib/ngatm/FREEBSD-Xlist (new) From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:21:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EFDE16A4CE; Wed, 11 Aug 2004 12:21:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2CBC43D5E; Wed, 11 Aug 2004 12:21:36 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCLa9a066405; Wed, 11 Aug 2004 12:21:36 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCLaln066404; Wed, 11 Aug 2004 12:21:36 GMT (envelope-from harti) Message-Id: <200408111221.i7BCLaln066404@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:21:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/sys/contrib/ngatm/netnatm - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:21:37 -0000 harti 2004-08-11 12:21:36 UTC FreeBSD src repository src/sys/contrib/ngatm/netnatm - Imported sources Update of /home/ncvs/src/sys/contrib/ngatm/netnatm In directory repoman.freebsd.org:/tmp/cvs-serv66392 Log Message: Virgin import of NgATM shared kernel/user part 1.1 Status: Vendor Tag: BEGEMOT Release Tags: NGATM_1_1 U src/sys/contrib/ngatm/netnatm/unimsg.h U src/sys/contrib/ngatm/netnatm/genfiles U src/sys/contrib/ngatm/netnatm/addr.h U src/sys/contrib/ngatm/netnatm/api/unisap.h U src/sys/contrib/ngatm/netnatm/api/cc_conn.c U src/sys/contrib/ngatm/netnatm/api/cc_data.c U src/sys/contrib/ngatm/netnatm/api/cc_dump.c U src/sys/contrib/ngatm/netnatm/api/cc_port.c U src/sys/contrib/ngatm/netnatm/api/cc_sig.c U src/sys/contrib/ngatm/netnatm/api/cc_user.c U src/sys/contrib/ngatm/netnatm/api/ccatm.h U src/sys/contrib/ngatm/netnatm/api/ccpriv.h U src/sys/contrib/ngatm/netnatm/api/unisap.c U src/sys/contrib/ngatm/netnatm/api/atmapi.h U src/sys/contrib/ngatm/netnatm/sig/unisig.h U src/sys/contrib/ngatm/netnatm/sig/genmsgcpyh.awk U src/sys/contrib/ngatm/netnatm/sig/sig_call.c U src/sys/contrib/ngatm/netnatm/sig/sig_coord.c U src/sys/contrib/ngatm/netnatm/sig/sig_party.c U src/sys/contrib/ngatm/netnatm/sig/sig_print.c U src/sys/contrib/ngatm/netnatm/sig/sig_reset.c U src/sys/contrib/ngatm/netnatm/sig/sig_uni.c U src/sys/contrib/ngatm/netnatm/sig/sig_verify.c U src/sys/contrib/ngatm/netnatm/sig/uni.h U src/sys/contrib/ngatm/netnatm/sig/unidef.h U src/sys/contrib/ngatm/netnatm/sig/unimkmsg.h U src/sys/contrib/ngatm/netnatm/sig/unipriv.h U src/sys/contrib/ngatm/netnatm/sig/genmsgcpyc.awk U src/sys/contrib/ngatm/netnatm/saal/sscoppriv.h U src/sys/contrib/ngatm/netnatm/saal/saal_sscop.c U src/sys/contrib/ngatm/netnatm/saal/sscfu.h U src/sys/contrib/ngatm/netnatm/saal/sscfudef.h U src/sys/contrib/ngatm/netnatm/saal/sscfupriv.h U src/sys/contrib/ngatm/netnatm/saal/sscop.h U src/sys/contrib/ngatm/netnatm/saal/sscopdef.h U src/sys/contrib/ngatm/netnatm/saal/saal_sscfu.c U src/sys/contrib/ngatm/netnatm/msg/unistruct.h U src/sys/contrib/ngatm/netnatm/msg/genieh.awk U src/sys/contrib/ngatm/netnatm/msg/genmsgc.awk U src/sys/contrib/ngatm/netnatm/msg/genmsgh.awk U src/sys/contrib/ngatm/netnatm/msg/ie.def U src/sys/contrib/ngatm/netnatm/msg/msg.def U src/sys/contrib/ngatm/netnatm/msg/parseie.awk U src/sys/contrib/ngatm/netnatm/msg/parsemsg.awk U src/sys/contrib/ngatm/netnatm/msg/priv.h U src/sys/contrib/ngatm/netnatm/msg/privmsg.c U src/sys/contrib/ngatm/netnatm/msg/traffic.c U src/sys/contrib/ngatm/netnatm/msg/uni_config.h U src/sys/contrib/ngatm/netnatm/msg/uni_hdr.h U src/sys/contrib/ngatm/netnatm/msg/uni_ie.c U src/sys/contrib/ngatm/netnatm/msg/unimsglib.h U src/sys/contrib/ngatm/netnatm/msg/uniprint.h U src/sys/contrib/ngatm/netnatm/msg/geniec.awk U src/sys/contrib/ngatm/netnatm/misc/straddr.c U src/sys/contrib/ngatm/netnatm/misc/unimsg_common.c No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:25:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0B1F16A4CE; Wed, 11 Aug 2004 12:25:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A00BE43D2D; Wed, 11 Aug 2004 12:25:09 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCP95q066506; Wed, 11 Aug 2004 12:25:09 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCP9us066505; Wed, 11 Aug 2004 12:25:09 GMT (envelope-from harti) Message-Id: <200408111225.i7BCP9us066505@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:25:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/ngatm FREEBSD-Xlist X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:25:09 -0000 harti 2004-08-11 12:25:09 UTC FreeBSD src repository Added files: sys/contrib/ngatm FREEBSD-Xlist Log: Exclusion list for easier import. Revision Changes Path 1.1 +15 -0 src/sys/contrib/ngatm/FREEBSD-Xlist (new) From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:27:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61C2416A4D8; Wed, 11 Aug 2004 12:27:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 432C343D1D; Wed, 11 Aug 2004 12:27:31 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCRVto066658; Wed, 11 Aug 2004 12:27:31 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCRVwL066657; Wed, 11 Aug 2004 12:27:31 GMT (envelope-from harti) Message-Id: <200408111227.i7BCRVwL066657@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:27:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:27:31 -0000 harti 2004-08-11 12:27:31 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Now, after the import of NgATM-1.1, re-enable the atm module. Revision Changes Path 1.4 +1 -1 src/lib/libbsnmp/modules/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:32:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C63316A4CE; Wed, 11 Aug 2004 12:32:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A20F43D1D; Wed, 11 Aug 2004 12:32:10 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCWAUs066816; Wed, 11 Aug 2004 12:32:10 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCWAcL066815; Wed, 11 Aug 2004 12:32:10 GMT (envelope-from andre) Message-Id: <200408111232.i7BCWAcL066815@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 12:32:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:32:10 -0000 andre 2004-08-11 12:32:10 UTC FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Make use of in_localip() function and replace previous direct LIST_FOREACH loops over INADDR_HASH. Revision Changes Path 1.16 +38 -44 src/sys/netinet/ip_fastfwd.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:33:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BA7C16A4CE for ; Wed, 11 Aug 2004 12:33:18 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 236A443D46 for ; Wed, 11 Aug 2004 12:33:17 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 89896 invoked from network); 11 Aug 2004 12:27:15 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 12:27:15 -0000 Message-ID: <411A1210.E8280616@freebsd.org> Date: Wed, 11 Aug 2004 14:33:20 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111149.i7BBnmmO064831@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/netinet in.c in.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:33:18 -0000 Andre Oppermann wrote: > > andre 2004-08-11 11:49:48 UTC > > FreeBSD src repository > > Modified files: > sys/netinet in.c in.h > Log: > Add the function in_localip() which returns 1 if an internet address is for > the local host and configured on one of its interfaces. > > Revision Changes Path > 1.76 +17 -0 src/sys/netinet/in.c > 1.86 +1 -0 src/sys/netinet/in.h I'm going to use this for ip_fastfwd() and the new pfil_hooked ipfw. -- Andre From owner-cvs-src@FreeBSD.ORG Wed Aug 11 12:57:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C920B16A4CE; Wed, 11 Aug 2004 12:57:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9F5243D4C; Wed, 11 Aug 2004 12:57:17 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCvHEx067562; Wed, 11 Aug 2004 12:57:17 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCvHYh067561; Wed, 11 Aug 2004 12:57:17 GMT (envelope-from pjd) Message-Id: <200408111257.i7BCvHYh067561@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 12:57:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:57:17 -0000 pjd 2004-08-11 12:57:17 UTC FreeBSD src repository Modified files: sys/geom/stripe g_stripe.c Log: Increase default kern.geom.stripe.maxmem to 50 elements. Revision Changes Path 1.16 +1 -1 src/sys/geom/stripe/g_stripe.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 14:52:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D114316A4CE; Wed, 11 Aug 2004 14:52:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B295843D2F; Wed, 11 Aug 2004 14:52:33 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEqX6O071622; Wed, 11 Aug 2004 14:52:33 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEqXg8071621; Wed, 11 Aug 2004 14:52:33 GMT (envelope-from jmg) Message-Id: <200408111452.i7BEqXg8071621@repoman.freebsd.org> From: John-Mark Gurney Date: Wed, 11 Aug 2004 14:52:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:52:34 -0000 jmg 2004-08-11 14:52:33 UTC FreeBSD src repository Modified files: share/man/man9 bus_dma.9 Log: fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's point of view... Add a reference to a better description of what the ops do... Reviewed by: scottl Revision Changes Path 1.14 +4 -2 src/share/man/man9/bus_dma.9 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 14:52:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D664F16A4CE; Wed, 11 Aug 2004 14:52:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA8F343D1F; Wed, 11 Aug 2004 14:52:50 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEqofo071669; Wed, 11 Aug 2004 14:52:50 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEqoNN071668; Wed, 11 Aug 2004 14:52:50 GMT (envelope-from njl) Message-Id: <200408111452.i7BEqoNN071668@repoman.freebsd.org> From: Nate Lawson Date: Wed, 11 Aug 2004 14:52:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c acpi_pcib_acpi.c acpi_pcib_pci.c acpi_pcibvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:52:51 -0000 njl 2004-08-11 14:52:50 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c acpi_pcib.c acpi_pcib_acpi.c acpi_pcib_pci.c acpi_pcibvar.h Log: Re-work ACPI PCI IRQ routing (_PRT, link devices). The old approach was incomplete in that the PRT routing was not aware of link programming. Fix this by doing all routing through the link devices. The new algorithm for setting up links is: 1. Read _CRS to get current setting. If invalid (not in _PRS), then set to 0. 2. Attempt to call _DIS on the link. If successful, mark the link as not routed. Otherwise, assume it still is. Then when a routing request occurs: 3. Update weights for all IRQs 4. Attempt to route the initial IRQ if valid 5. If that fails, walk through the sorted list, attempting to route IRQs. 6. Configure the trigger/polarity based on _PRS. Other changes: * Add acpi_pci_find_prt() to look up the PRT entry for a given device and acpi_pci_link_route() to select/route the best IRQ for it. * Remove duplicated code in acpi_pcib_route_interrupt() that picked the first IRQ from _PRS. * Remove unneeded arguments from acpi_pcib_resume() and friends. * Ignore _STA on link devices but report if it seems strange. * Add a prt_source handle to the PRT structure since the ACPI struct ACPI_PCI_ROUTING_TABLE uses a fixed-size entry for it. We'll need to dynamically size this object if we want to use it the same way ACPI-CA does. Null-terminate the source. Tested by: Luo Hong , Jeffrey Katcher Info from: jhb, Len Brown (Intel) Revision Changes Path 1.19 +242 -201 src/sys/dev/acpica/acpi_pci_link.c 1.47 +48 -264 src/sys/dev/acpica/acpi_pcib.c 1.39 +2 -6 src/sys/dev/acpica/acpi_pcib_acpi.c 1.10 +2 -3 src/sys/dev/acpica/acpi_pcib_pci.c 1.3 +35 -4 src/sys/dev/acpica/acpi_pcibvar.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 15:05:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC7316A4CF for ; Wed, 11 Aug 2004 15:05:09 +0000 (GMT) Received: from mail3.speakeasy.net (mail3.speakeasy.net [216.254.0.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id D165443D54 for ; Wed, 11 Aug 2004 15:04:59 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 17472 invoked from network); 11 Aug 2004 15:04:59 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail3.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 15:04:59 -0000 Received: from hydrogen.funkthat.com (gxwfwn@localhost.funkthat.com [127.0.0.1])i7BF4wuU000595; Wed, 11 Aug 2004 08:04:58 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7BF4wco000594; Wed, 11 Aug 2004 08:04:58 -0700 (PDT) Date: Wed, 11 Aug 2004 08:04:58 -0700 From: John-Mark Gurney To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040811150458.GU991@funkthat.com> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408111452.i7BEqXg8071621@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:05:10 -0000 John-Mark Gurney wrote this message on Wed, Aug 11, 2004 at 14:52 +0000: > jmg 2004-08-11 14:52:33 UTC > > FreeBSD src repository > > Modified files: > share/man/man9 bus_dma.9 > Log: > fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's > point of view... Add a reference to a better description of what the ops > do... If you were previously confused (and even if you thought you knew what they were) on what BUS_DMASYNC_ ops to us, please reread the manpage and review any drivers written using them. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Wed Aug 11 15:46:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A022816A4CE; Wed, 11 Aug 2004 15:46:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8039343D58; Wed, 11 Aug 2004 15:46:10 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BFkAGv073361; Wed, 11 Aug 2004 15:46:10 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BFkAIE073360; Wed, 11 Aug 2004 15:46:10 GMT (envelope-from eik) Message-Id: <200408111546.i7BFkAIE073360@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 15:46:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/version Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:46:10 -0000 eik 2004-08-11 15:46:10 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/version Makefile Log: FWIIW, make the `test' target in pkg_install/version actually work. Revision Changes Path 1.15 +1 -1 src/usr.sbin/pkg_install/version/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 11 15:47:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BCA416A4CE; Wed, 11 Aug 2004 15:47:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D27B43D5A; Wed, 11 Aug 2004 15:47:13 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BFlDLV073403; Wed, 11 Aug 2004 15:47:13 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BFlD7f073402; Wed, 11 Aug 2004 15:47:13 GMT (envelope-from eik) Message-Id: <200408111547.i7BFlD7f073402@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 15:47:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/add pkg_add.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:47:13 -0000 eik 2004-08-11 15:47:13 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add pkg_add.1 Log: typo Approved by: ru Revision Changes Path 1.65 +1 -1 src/usr.sbin/pkg_install/add/pkg_add.1 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:01:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1116216A4CE; Wed, 11 Aug 2004 16:01:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3BB743D5C; Wed, 11 Aug 2004 16:01:46 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BG1kpj073840; Wed, 11 Aug 2004 16:01:46 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BG1kR7073839; Wed, 11 Aug 2004 16:01:46 GMT (envelope-from harti) Message-Id: <200408111601.i7BG1kR7073839@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 16:01:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:01:47 -0000 harti 2004-08-11 16:01:46 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Again something bad is happening so comment out the ATM module. Revision Changes Path 1.5 +3 -3 src/lib/libbsnmp/modules/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:16:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 331C516A4D0; Wed, 11 Aug 2004 16:16:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 122DD43D1D; Wed, 11 Aug 2004 16:16:25 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGGO5H074678; Wed, 11 Aug 2004 16:16:24 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGGOYZ074677; Wed, 11 Aug 2004 16:16:24 GMT (envelope-from eik) Message-Id: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 16:16:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:16:25 -0000 eik 2004-08-11 16:16:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c pkg_delete.1 usr.sbin/pkg_install/info Makefile info.h main.c perform.c pkg_info.1 show.c usr.sbin/pkg_install/lib Makefile deps.c file.c lib.h match.c pen.c plist.c str.c version.c usr.sbin/pkg_install/sign Makefile pgp_sign.c pkg_sign.1 sha1.c sign.c stand.h x509.c usr.sbin/pkg_install/version Makefile pkg_version.1 test-pkg_version.sh Added files: (Branch: RELENG_4) usr.sbin/pkg_install/lib url.c usr.sbin/pkg_install/version main.c perform.c version.h Removed files: (Branch: RELENG_4) usr.sbin/pkg_install/version pkg_version.pl Log: sync the pkg_install tools with -CURRENT: - MFC of the package tools revision 20040629 changes. - replace the perl version of pkg_version(1) by its C equivalent, which means that `pkg_version -c' does no longer work - keep the perl version of pkg_update(1) until a replacement is available - include some man pages fixes Revision Changes Path 1.11.2.5 +2 -1 src/usr.sbin/pkg_install/add/Makefile 1.9.2.2 +1 -1 src/usr.sbin/pkg_install/add/add.h 1.25.2.12 +5 -5 src/usr.sbin/pkg_install/add/extract.c 1.9.2.5 +5 -5 src/usr.sbin/pkg_install/add/futil.c 1.29.2.23 +35 -7 src/usr.sbin/pkg_install/add/main.c 1.57.2.17 +18 -13 src/usr.sbin/pkg_install/add/perform.c 1.35.2.16 +73 -28 src/usr.sbin/pkg_install/add/pkg_add.1 1.11.2.4 +7 -12 src/usr.sbin/pkg_install/create/Makefile 1.15.2.7 +2 -1 src/usr.sbin/pkg_install/create/create.h 1.21.2.9 +10 -4 src/usr.sbin/pkg_install/create/main.c 1.49.2.20 +20 -7 src/usr.sbin/pkg_install/create/perform.c 1.35.2.19 +89 -43 src/usr.sbin/pkg_install/create/pkg_create.1 1.13.2.9 +47 -31 src/usr.sbin/pkg_install/create/pl.c 1.11.2.5 +4 -8 src/usr.sbin/pkg_install/delete/Makefile 1.5.2.3 +1 -2 src/usr.sbin/pkg_install/delete/delete.h 1.17.2.9 +7 -2 src/usr.sbin/pkg_install/delete/main.c 1.22.2.13 +47 -30 src/usr.sbin/pkg_install/delete/perform.c 1.16.2.10 +30 -13 src/usr.sbin/pkg_install/delete/pkg_delete.1 1.11.2.5 +2 -1 src/usr.sbin/pkg_install/info/Makefile 1.11.2.12 +4 -0 src/usr.sbin/pkg_install/info/info.h 1.22.2.17 +29 -6 src/usr.sbin/pkg_install/info/main.c 1.29.2.15 +43 -21 src/usr.sbin/pkg_install/info/perform.c 1.24.2.16 +72 -22 src/usr.sbin/pkg_install/info/pkg_info.1 1.14.2.16 +4 -1 src/usr.sbin/pkg_install/info/show.c 1.6.8.7 +3 -2 src/usr.sbin/pkg_install/lib/Makefile 1.1.2.9 +3 -3 src/usr.sbin/pkg_install/lib/deps.c 1.40.2.16 +23 -134 src/usr.sbin/pkg_install/lib/file.c 1.29.2.15 +15 -7 src/usr.sbin/pkg_install/lib/lib.h 1.2.2.10 +205 -33 src/usr.sbin/pkg_install/lib/match.c 1.31.2.8 +2 -2 src/usr.sbin/pkg_install/lib/pen.c 1.29.2.13 +4 -3 src/usr.sbin/pkg_install/lib/plist.c 1.6.2.7 +2 -2 src/usr.sbin/pkg_install/lib/str.c 1.4.2.1 +154 -0 src/usr.sbin/pkg_install/lib/url.c (new) 1.1.2.4 +280 -0 src/usr.sbin/pkg_install/lib/version.c 1.1.2.3 +6 -5 src/usr.sbin/pkg_install/sign/Makefile 1.1.2.4 +1 -0 src/usr.sbin/pkg_install/sign/pgp_sign.c 1.1.2.6 +4 -2 src/usr.sbin/pkg_install/sign/pkg_sign.1 1.1.2.4 +15 -9 src/usr.sbin/pkg_install/sign/sha1.c 1.1.2.4 +1 -0 src/usr.sbin/pkg_install/sign/sign.c 1.1.2.2 +2 -2 src/usr.sbin/pkg_install/sign/stand.h 1.1.2.3 +3 -4 src/usr.sbin/pkg_install/sign/x509.c 1.5.2.6 +17 -4 src/usr.sbin/pkg_install/version/Makefile 1.2.2.1 +103 -0 src/usr.sbin/pkg_install/version/main.c (new) 1.10.2.1 +390 -0 src/usr.sbin/pkg_install/version/perform.c (new) 1.5.2.15 +47 -57 src/usr.sbin/pkg_install/version/pkg_version.1 1.4.2.15 +0 -623 src/usr.sbin/pkg_install/version/pkg_version.pl (dead) 1.1.2.6 +20 -1 src/usr.sbin/pkg_install/version/test-pkg_version.sh 1.3.2.1 +47 -0 src/usr.sbin/pkg_install/version/version.h (new) From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:18:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D39816A4CE; Wed, 11 Aug 2004 16:18:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C80743D1F; Wed, 11 Aug 2004 16:18:19 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGIJPm074796; Wed, 11 Aug 2004 16:18:19 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGIJin074795; Wed, 11 Aug 2004 16:18:19 GMT (envelope-from marck) Message-Id: <200408111618.i7BGIJin074795@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 16:18:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:18:19 -0000 marck 2004-08-11 16:18:19 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday. Approved by: den (mentor) Revision Changes Path 1.134 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:18:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B40A16A4CF; Wed, 11 Aug 2004 16:18:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E115B43D3F; Wed, 11 Aug 2004 16:18:44 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGIiw6074829; Wed, 11 Aug 2004 16:18:44 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGIibD074828; Wed, 11 Aug 2004 16:18:44 GMT (envelope-from eik) Message-Id: <200408111618.i7BGIibD074828@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 16:18:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:18:45 -0000 eik 2004-08-11 16:18:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/sys param.h Log: bump __FreeBSD_version for the MFC of revision 20040629 of the package tools. Revision Changes Path 1.61.2.44 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:24:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 703A716A4E7; Wed, 11 Aug 2004 16:24:06 +0000 (GMT) Received: from shrike.submonkey.net (cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com [81.103.67.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0382543D31; Wed, 11 Aug 2004 16:24:06 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.41 (FreeBSD)) id 1BuvtV-000L8e-5C; Wed, 11 Aug 2004 17:24:05 +0100 Date: Wed, 11 Aug 2004 17:24:05 +0100 From: Ceri Davies To: Oliver Eikemeier Message-ID: <20040811162405.GV87690@submonkey.net> Mail-Followup-To: Ceri Davies , Oliver Eikemeier , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ch6x/diZ8cQC324S" Content-Disposition: inline In-Reply-To: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.6i Sender: Ceri Davies cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:24:06 -0000 --ch6x/diZ8cQC324S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: > eik 2004-08-11 16:16:24 UTC >=20 > =20 > - replace the perl version of pkg_version(1) by its C equivalent, > which means that `pkg_version -c' does no longer work I don't think that this should have gone into RELENG_4, in this case. Ceri --=20 --ch6x/diZ8cQC324S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGkgkocfcwTS3JF8RApO1AJ9+j5hZROpcNithJNIveLiZo1xcDwCfXh3/ fJY+k3d6MQ2xGBRPXPwTCBE= =GOIl -----END PGP SIGNATURE----- --ch6x/diZ8cQC324S-- From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:27:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB2BC16A4CE for ; Wed, 11 Aug 2004 16:27:41 +0000 (GMT) Received: from www.cray1.de (i.would.like.to.spoof.my.realip.de [64.27.85.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E0BC43D45 for ; Wed, 11 Aug 2004 16:27:41 +0000 (GMT) (envelope-from ubm@u-boot-man.de) Received: from greatsheep.marines (localhost [127.0.0.1]) by www.cray1.de (8.9.3/8.9.3) with SMTP id SAA07823 for ; Wed, 11 Aug 2004 18:27:37 +0200 Date: Wed, 11 Aug 2004 18:23:51 +0200 From: Marc "UBM" Bocklet To: cvs-src@freebsd.org Message-Id: <20040811182351.5d0a355f.ubm@u-boot-man.de> In-Reply-To: <200408091736.i79HaJL1067580@repoman.freebsd.org> References: <200408091736.i79HaJL1067580@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:27:41 -0000 On Mon, 9 Aug 2004 17:36:19 +0000 (UTC) Warner Losh wrote: > imp 2004-08-09 17:36:19 UTC > > FreeBSD src repository > > Modified files: > sys/i386/conf GENERIC > Log: > Remove commented out pcic driver. It is too broken to work (even if > you fix the obvious bugs, nastier ones reside below the surface), > and having it commented out here just encourages people to try it. > > # I'm not removing it from the base system, yet. Does that mean that there is no support for ISA-PCCARD/PCMCIA bridges anymore? (just curious :-) ) Bye Marc -- "A sudden blow: the great wings beating still Above the staggering girl, her thighs caressed By the dark webs, her nape caught in his bill, He holds her helpless breast upon his breast." W.B. Yeats, Lena and the Swan From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:38:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4864816A4CE; Wed, 11 Aug 2004 16:38:21 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10CF343D5D; Wed, 11 Aug 2004 16:38:21 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-67-127-84-57.dsl.snfc21.pacbell.net [67.127.84.57]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7BGcK8U028751; Wed, 11 Aug 2004 09:38:20 -0700 Message-ID: <411A4B4F.6070007@root.org> Date: Wed, 11 Aug 2004 09:37:35 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Don Lewis References: <200408100832.i7A8WmG4013169@gw.catspoiler.org> In-Reply-To: <200408100832.i7A8WmG4013169@gw.catspoiler.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:38:21 -0000 Don Lewis wrote: > On 10 Aug, Nate Lawson wrote: > >>njl 2004-08-10 01:32:05 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern kern_shutdown.c vfs_subr.c >> Log: >> Skip the syncing disks loop if there are no dirty buffers. Remove a >> variable used to flag the initial printf. >> >> Submitted by: truckman (earlier version) >> >> Revision Changes Path >> 1.162 +13 -5 src/sys/kern/kern_shutdown.c >> 1.519 +1 -1 src/sys/kern/vfs_subr.c > > > BDE had a number of objections to this patch. This is the alternative > that I came up with: Feel free to rework/commit it. I think your patch is a little rough still but generally think it's a good idea to reuse the check for nbufs. -Nate From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:45:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4068E16A4CE; Wed, 11 Aug 2004 16:45:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 215D843D31; Wed, 11 Aug 2004 16:45:21 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGjKaV076087; Wed, 11 Aug 2004 16:45:21 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGjKvd076086; Wed, 11 Aug 2004 16:45:20 GMT (envelope-from harti) Message-Id: <200408111645.i7BGjKvd076086@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 16:45:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:45:21 -0000 harti 2004-08-11 16:45:20 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Ensure that a new gensnmptree is built. This should fix the problems with the snmp_atm module. Revision Changes Path 1.437 +1 -1 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 16:47:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB7B216A4CE; Wed, 11 Aug 2004 16:47:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C6DC43D1D; Wed, 11 Aug 2004 16:47:12 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGlCej076206; Wed, 11 Aug 2004 16:47:12 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGlC39076205; Wed, 11 Aug 2004 16:47:12 GMT (envelope-from harti) Message-Id: <200408111647.i7BGlC39076205@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 16:47:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:47:12 -0000 harti 2004-08-11 16:47:12 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Link to the build again. The problem was that we need a new gensnmptree for the .def file to parse. This was fixed in Makefile.inc1. Revision Changes Path 1.6 +3 -3 src/lib/libbsnmp/modules/Makefile From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:08:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C27A16A4CE; Wed, 11 Aug 2004 17:08:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33CB043D2F; Wed, 11 Aug 2004 17:08:32 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BH8WYZ076998; Wed, 11 Aug 2004 17:08:32 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BH8Wur076997; Wed, 11 Aug 2004 17:08:32 GMT (envelope-from andre) Message-Id: <200408111708.i7BH8Wur076997@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 17:08:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:08:32 -0000 andre 2004-08-11 17:08:32 UTC FreeBSD src repository Modified files: sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c Log: Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP and TCP code. This flag would have prevented giving back excessive free slabs to the global pool after a transient peak usage. Revision Changes Path 1.96 +1 -1 src/sys/netinet/ip_divert.c 1.138 +1 -1 src/sys/netinet/raw_ip.c 1.6 +1 -1 src/sys/netinet/tcp_hostcache.c 1.198 +4 -4 src/sys/netinet/tcp_subr.c 1.63 +1 -1 src/sys/netinet/tcp_syncache.c 1.159 +1 -1 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:22:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6007616A4CE; Wed, 11 Aug 2004 17:22:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41CB243D46; Wed, 11 Aug 2004 17:22:38 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHMcn6078643; Wed, 11 Aug 2004 17:22:38 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHMcSS078642; Wed, 11 Aug 2004 17:22:38 GMT (envelope-from imp) Message-Id: <200408111722.i7BHMcSS078642@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 17:22:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:22:38 -0000 imp 2004-08-11 17:22:38 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Remove references to pcic for newcard from NOTES. Revision Changes Path 1.1256 +0 -3 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:23:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E0516A4CE; Wed, 11 Aug 2004 17:23:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B96FA43D31; Wed, 11 Aug 2004 17:23:32 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHNWFS078698; Wed, 11 Aug 2004 17:23:32 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHNWUs078697; Wed, 11 Aug 2004 17:23:32 GMT (envelope-from imp) Message-Id: <200408111723.i7BHNWUs078697@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 17:23:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:23:33 -0000 imp 2004-08-11 17:23:32 UTC FreeBSD src repository Modified files: sys/conf files Log: Remove pcic for NEWCARD Revision Changes Path 1.937 +0 -2 src/sys/conf/files From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:24:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B64916A4CE; Wed, 11 Aug 2004 17:24:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B70643D54; Wed, 11 Aug 2004 17:24:42 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHOgJF078757; Wed, 11 Aug 2004 17:24:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHOgxY078756; Wed, 11 Aug 2004 17:24:42 GMT (envelope-from imp) Message-Id: <200408111724.i7BHOgxY078756@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 17:24:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pcic i82365.c i82365_isa.c i82365reg.h i82365var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:24:42 -0000 imp 2004-08-11 17:24:42 UTC FreeBSD src repository Removed files: sys/dev/pcic i82365.c i82365_isa.c i82365reg.h i82365var.h Log: Remove badly broken pcic driver for NEWCARD Revision Changes Path 1.41 +0 -1522 src/sys/dev/pcic/i82365.c (dead) 1.27 +0 -406 src/sys/dev/pcic/i82365_isa.c (dead) 1.11 +0 -365 src/sys/dev/pcic/i82365reg.h (dead) 1.27 +0 -168 src/sys/dev/pcic/i82365var.h (dead) From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:26:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3F9D16A4CE; Wed, 11 Aug 2004 17:26:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F2343D46; Wed, 11 Aug 2004 17:26:56 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHQuja078940; Wed, 11 Aug 2004 17:26:56 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHQuPC078939; Wed, 11 Aug 2004 17:26:56 GMT (envelope-from andre) Message-Id: <200408111726.i7BHQuPC078939@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 17:26:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:26:56 -0000 andre 2004-08-11 17:26:56 UTC FreeBSD src repository Modified files: sys/net route.c Log: Convert the routing table to use an UMA zone for rtentries. The zone is called "rtentry". This saves a considerable amount of kernel memory. R_Zmalloc previously used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 bytes. Idea from: OpenBSD Revision Changes Path 1.106 +10 -4 src/sys/net/route.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:31:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FCF116A4D1 for ; Wed, 11 Aug 2004 17:31:47 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD69743D53 for ; Wed, 11 Aug 2004 17:31:46 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 92224 invoked from network); 11 Aug 2004 17:25:42 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 17:25:42 -0000 Message-ID: <411A5805.215C72FB@freebsd.org> Date: Wed, 11 Aug 2004 19:31:49 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:31:47 -0000 Andre Oppermann wrote: > > andre 2004-08-11 17:26:56 UTC > > FreeBSD src repository > > Modified files: > sys/net route.c > Log: > Convert the routing table to use an UMA zone for rtentries. The zone is > called "rtentry". > > This saves a considerable amount of kernel memory. R_Zmalloc previously > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > bytes. > > Idea from: OpenBSD > > Revision Changes Path > 1.106 +10 -4 src/sys/net/route.c With this I was able to dump approx. 1.2 million routes into the kernel until I ran out of kmap_mem space. Pretty neat ;-) -- Andre From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:40:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A1C816A4CE; Wed, 11 Aug 2004 17:40:47 +0000 (GMT) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB15B43D41; Wed, 11 Aug 2004 17:40:46 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7BHejAG087532; Wed, 11 Aug 2004 19:40:45 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7BHejY3075009; Wed, 11 Aug 2004 19:40:45 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7BHej8T075008; Wed, 11 Aug 2004 19:40:45 +0200 (CEST) (envelope-from wb) Date: Wed, 11 Aug 2004 19:40:45 +0200 From: Wilko Bulte To: Andre Oppermann Message-ID: <20040811174045.GA74993@freebie.xs4all.nl> References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> <411A5805.215C72FB@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <411A5805.215C72FB@freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:40:47 -0000 On Wed, Aug 11, 2004 at 07:31:49PM +0200, Andre Oppermann wrote.. > Andre Oppermann wrote: > > > > andre 2004-08-11 17:26:56 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net route.c > > Log: > > Convert the routing table to use an UMA zone for rtentries. The zone is > > called "rtentry". > > > > This saves a considerable amount of kernel memory. R_Zmalloc previously > > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > > bytes. > > > > Idea from: OpenBSD > > > > Revision Changes Path > > 1.106 +10 -4 src/sys/net/route.c > > With this I was able to dump approx. 1.2 million routes into the kernel > until I ran out of kmap_mem space. Pretty neat ;-) 1.2 million... ;-) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:50:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 149AC16A4CE; Wed, 11 Aug 2004 17:50:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B34F43D46; Wed, 11 Aug 2004 17:50:53 +0000 (GMT) (envelope-from bmilekic@FreeBSD.org) Received: from freefall.freebsd.org (bmilekic@localhost [127.0.0.1]) i7BHoqli037287; Wed, 11 Aug 2004 17:50:52 GMT (envelope-from bmilekic@freefall.freebsd.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7BHoqqp037286; Wed, 11 Aug 2004 17:50:52 GMT (envelope-from bmilekic) Date: Wed, 11 Aug 2004 17:50:52 +0000 From: Bosko Milekic To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040811175052.GA37093@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:50:53 -0000 Please be careful here. The reason they were NOFREE before was because the original zone code was implicitly nofree. If these structures need to be type stable, then you just broke them with this commit. So are you sure that they absolutely do not need to be type stable? -Bosko andre 2004-08-11 17:08:32 UTC FreeBSD src repository Modified files: sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c Log: Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP and TCP code. This flag would have prevented giving back excessive free slabs to the global pool after a transient peak usage. From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:54:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55D5016A4CF; Wed, 11 Aug 2004 17:54:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3740A43D4C; Wed, 11 Aug 2004 17:54:24 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHsOxG079761; Wed, 11 Aug 2004 17:54:24 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHsO7l079760; Wed, 11 Aug 2004 17:54:24 GMT (envelope-from ume) Message-Id: <200408111754.i7BHsO7l079760@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 11 Aug 2004 17:54:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc hosts.allow X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:54:24 -0000 ume 2004-08-11 17:54:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) etc hosts.allow Log: MFC 1.18: allow ::1 explicitly. Revision Changes Path 1.8.2.8 +2 -2 src/etc/hosts.allow From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:55:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8962816A4CF for ; Wed, 11 Aug 2004 17:55:05 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C14FB43D53 for ; Wed, 11 Aug 2004 17:55:04 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 92400 invoked from network); 11 Aug 2004 17:49:00 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 17:49:00 -0000 Message-ID: <411A5D7B.4756CA0B@freebsd.org> Date: Wed, 11 Aug 2004 19:55:07 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Wilko Bulte References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> <411A5805.215C72FB@freebsd.org> <20040811174045.GA74993@freebie.xs4all.nl> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:55:05 -0000 Wilko Bulte wrote: > > On Wed, Aug 11, 2004 at 07:31:49PM +0200, Andre Oppermann wrote.. > > Andre Oppermann wrote: > > > > > > andre 2004-08-11 17:26:56 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/net route.c > > > Log: > > > Convert the routing table to use an UMA zone for rtentries. The zone is > > > called "rtentry". > > > > > > This saves a considerable amount of kernel memory. R_Zmalloc previously > > > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > > > bytes. > > > > > > Idea from: OpenBSD > > > > > > Revision Changes Path > > > 1.106 +10 -4 src/sys/net/route.c > > > > With this I was able to dump approx. 1.2 million routes into the kernel > > until I ran out of kmap_mem space. Pretty neat ;-) > > 1.2 million... > > ;-) With only 209M kmem_size! 8-) -- Andre From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:55:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C82316A4CE for ; Wed, 11 Aug 2004 17:55:11 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17C7243D48 for ; Wed, 11 Aug 2004 17:55:11 +0000 (GMT) (envelope-from zombyfork@gmail.com) Received: by mproxy.gmail.com with SMTP id u33so30376cwc for ; Wed, 11 Aug 2004 10:55:07 -0700 (PDT) Received: by 10.11.98.42 with SMTP id v42mr125109cwb; Wed, 11 Aug 2004 10:55:06 -0700 (PDT) Message-ID: <346a8022040811105555f5610b@mail.gmail.com> Date: Wed, 11 Aug 2004 13:55:06 -0400 From: Coleman Kane To: "Marc \"UBM\" Bocklet" In-Reply-To: <20040811182351.5d0a355f.ubm@u-boot-man.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200408091736.i79HaJL1067580@repoman.freebsd.org> <20040811182351.5d0a355f.ubm@u-boot-man.de> cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: cokane@cokane.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:55:11 -0000 Use cbb, cardbus, and pccard instead. The vast majority (all?) of even 486 based laptops used PCI-based PCCARD bridges, which are probed by the pccbb driver. This is the NEWCARD implementation to replace the legacy pcic and tcic. On Wed, 11 Aug 2004 18:23:51 +0200, Marc "UBM" Bocklet wrote: > > On Mon, 9 Aug 2004 17:36:19 +0000 (UTC) > Warner Losh wrote: > > > imp 2004-08-09 17:36:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/i386/conf GENERIC > > Log: > > Remove commented out pcic driver. It is too broken to work (even if > > you fix the obvious bugs, nastier ones reside below the surface), > > and having it commented out here just encourages people to try it. > > > > # I'm not removing it from the base system, yet. > > Does that mean that there is no support for ISA-PCCARD/PCMCIA bridges > anymore? (just curious :-) ) > > Bye > Marc > > -- > "A sudden blow: the great wings beating still > Above the staggering girl, her thighs caressed > By the dark webs, her nape caught in his bill, > He holds her helpless breast upon his breast." > > W.B. Yeats, Lena and the Swan > > > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" > From owner-cvs-src@FreeBSD.ORG Wed Aug 11 17:56:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EBC816A4CE; Wed, 11 Aug 2004 17:56:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB3443D45; Wed, 11 Aug 2004 17:56:54 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHusxp079909; Wed, 11 Aug 2004 17:56:54 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHusWm079908; Wed, 11 Aug 2004 17:56:54 GMT (envelope-from ume) Message-Id: <200408111756.i7BHusWm079908@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 11 Aug 2004 17:56:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc hosts.allow rc.firewall6 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:56:54 -0000 ume 2004-08-11 17:56:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) etc hosts.allow rc.firewall6 Log: MFC: Use RFC 3849 address for examples. etc/hosts.allow: 1.19 etc/rc.firewall6: 1.15 Revision Changes Path 1.8.2.9 +2 -2 src/etc/hosts.allow 1.1.2.13 +6 -6 src/etc/rc.firewall6 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 18:09:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19D116A4CE for ; Wed, 11 Aug 2004 18:09:22 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAD6F43D5D for ; Wed, 11 Aug 2004 18:09:21 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 92496 invoked from network); 11 Aug 2004 18:03:17 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 18:03:17 -0000 Message-ID: <411A60D4.7C25D34E@freebsd.org> Date: Wed, 11 Aug 2004 20:09:24 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Bosko Milekic References: <20040811175052.GA37093@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.ctcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:09:22 -0000 Bosko Milekic wrote: > > Please be careful here. The reason they were NOFREE before was because > the original zone code was implicitly nofree. If these structures need > to be type stable, then you just broke them with this commit. So are > you sure that they absolutely do not need to be type stable? In all cases the zone is used as kmalloc replacement. It always initializes a newly allocated object. It always unlinks the object from any lists before it uma_zfree's it. All such operations are covered by mutexes, no concurrent access should happen. If there is any use-after-free then it is a bug that needs to be fixed. I hope/guess that this sufficiently non-type-stable wrt UMA to remove NOFREE. -- Andre > -Bosko > > andre 2004-08-11 17:08:32 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c > tcp_subr.c tcp_syncache.c udp_usrreq.c > Log: > Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP and > TCP code. This flag would have prevented giving back excessive free slabs > to the global pool after a transient peak usage. From owner-cvs-src@FreeBSD.ORG Wed Aug 11 18:31:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8682716A4CE for ; Wed, 11 Aug 2004 18:31:25 +0000 (GMT) Received: from www.cray1.de (i.would.like.to.spoof.my.realip.de [64.27.85.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 310BE43D39 for ; Wed, 11 Aug 2004 18:31:25 +0000 (GMT) (envelope-from ubm@u-boot-man.de) Received: from greatsheep.marines (localhost [127.0.0.1]) by www.cray1.de (8.9.3/8.9.3) with SMTP id UAA14110 for ; Wed, 11 Aug 2004 20:31:21 +0200 Date: Wed, 11 Aug 2004 20:27:34 +0200 From: Marc "UBM" Bocklet To: cvs-src@freebsd.org Message-Id: <20040811202734.4bcfb8dc.ubm@u-boot-man.de> In-Reply-To: <346a8022040811105555f5610b@mail.gmail.com> References: <200408091736.i79HaJL1067580@repoman.freebsd.org> <20040811182351.5d0a355f.ubm@u-boot-man.de> <346a8022040811105555f5610b@mail.gmail.com> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:31:25 -0000 On Wed, 11 Aug 2004 13:55:06 -0400 Coleman Kane wrote: > Use cbb, cardbus, and pccard instead. The vast majority (all?) of even > 486 based laptops used PCI-based PCCARD bridges, which are probed by > the pccbb driver. This is the NEWCARD implementation to replace the > legacy pcic and tcic. Hmm, I had the rather mad idea to buy an ISA PCCARD/PCMCIA adapter to put a wireless lan card (pccard/pcmcia) in my really old 486, which has only ISA slots. I guess this won't work anymore now. Well, doesn't really matter, there are lots of other options ;-) Bye Marc From owner-cvs-src@FreeBSD.ORG Wed Aug 11 18:56:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E58F16A4CE; Wed, 11 Aug 2004 18:56:04 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id D09E643D53; Wed, 11 Aug 2004 18:56:03 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 00B24403C; Wed, 11 Aug 2004 20:56:03 +0200 (CEST) X-Original-To: src-committers@FreeBSD.org X-Original-To: cvs-src@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org X-Original-To: andre@freebsd.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 97D7B402C; Wed, 11 Aug 2004 20:55:58 +0200 (CEST) Date: Wed, 11 Aug 2004 20:55:50 +0200 From: Mathieu Arnold To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: In-Reply-To: <411A5805.215C72FB@freebsd.org> References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> <411A5805.215C72FB@freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========F239D07F80CD438A9825==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.405 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:56:04 -0000 --==========F239D07F80CD438A9825========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 11/08/2004 19:31 +0200, Andre Oppermann a dit : | Andre Oppermann wrote: |> |> andre 2004-08-11 17:26:56 UTC |> |> FreeBSD src repository |> |> Modified files: |> sys/net route.c |> Log: |> Convert the routing table to use an UMA zone for rtentries. The zone |> is called "rtentry". |> |> This saves a considerable amount of kernel memory. R_Zmalloc |> previously used 256 byte blocks (plus kmalloc overhead) whereas UMA |> only needs 132 bytes. |> |> Idea from: OpenBSD |> |> Revision Changes Path |> 1.106 +10 -4 src/sys/net/route.c | | With this I was able to dump approx. 1.2 million routes into the kernel | until I ran out of kmap_mem space. Pretty neat ;-) Looks like border routeurs will have more free ram in the future :-) -- Mathieu Arnold --==========F239D07F80CD438A9825========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRpruFvROjYJ63c1AQK8LQf9GT+sGbt6thYBs2pZbboS9YIFR75lnrjm TttcKRDMHRZAzxmwNyJS/prnw4hZk79GUfv8f5P7+zu39a7pSAhlJqAKpxm4cm8E J1t4k8pAsdSPnavqJjZoLpk7sgJATQkr66h2h7O3/xRqnCXxDwmaBcESByZVDJg1 zBpcO10bKFyJjRqJOYrAG7/qajEH6dYV0OKv3xdeU5/CcqoagRjhGxxsq39p8CB2 ZMbZ747stQYxS0jGFgRWLJteMBZjMiuhrehaRduE4uNB3p2t6+H9Siggqs4k6p+v kcbpeOowEcM4UPi0OOSNUph6cG2JqgrN0emSvOURI21N2Ar/XHgzlA== =JlhF -----END PGP SIGNATURE----- --==========F239D07F80CD438A9825==========-- From owner-cvs-src@FreeBSD.ORG Wed Aug 11 19:19:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E39116A4CE; Wed, 11 Aug 2004 19:19:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 002B343D1F; Wed, 11 Aug 2004 19:19:26 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJJQ97082546; Wed, 11 Aug 2004 19:19:26 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJJQGx082545; Wed, 11 Aug 2004 19:19:26 GMT (envelope-from obrien) Message-Id: <200408111919.i7BJJQGx082545@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 11 Aug 2004 19:19:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.libnames.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:19:27 -0000 obrien 2004-08-11 19:19:26 UTC FreeBSD src repository Modified files: share/mk bsd.libnames.mk Log: The last commit had one too many libs. Revision Changes Path 1.85 +0 -1 src/share/mk/bsd.libnames.mk From owner-cvs-src@FreeBSD.ORG Wed Aug 11 19:30:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D245416A4DB; Wed, 11 Aug 2004 19:30:26 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6171E43D66; Wed, 11 Aug 2004 19:30:26 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7BJSotd026443; Wed, 11 Aug 2004 15:28:50 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7BJSo8h026440; Wed, 11 Aug 2004 15:28:50 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 11 Aug 2004 15:28:49 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Bosko Milekic In-Reply-To: <20040811175052.GA37093@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andre Oppermann cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:30:27 -0000 On Wed, 11 Aug 2004, Bosko Milekic wrote: > Please be careful here. The reason they were NOFREE before was because > the original zone code was implicitly nofree. If these structures need > to be type stable, then you just broke them with this commit. So are > you sure that they absolutely do not need to be type stable? Often, zones with the old zone allocator being type-stable allowed low cost monitoring using generation numbers (see the UNIX domain socket code as an example). As a result, monitoring code will assume it can walk the global list of sockets even after the sockets are free'd, and detect it with the generation number. This may or may not apply to the pcbs (don't have source in front of me), but the caution definitely applies. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Wed Aug 11 19:53:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEE8B16A4CE; Wed, 11 Aug 2004 19:53:10 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA39743D2F; Wed, 11 Aug 2004 19:53:10 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7BJr9R0044916; Wed, 11 Aug 2004 12:53:10 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7BJr9NF044915; Wed, 11 Aug 2004 12:53:09 -0700 (PDT) (envelope-from obrien) Date: Wed, 11 Aug 2004 12:53:09 -0700 From: "David O'Brien" To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org Message-ID: <20040811195309.GA44709@dragon.nuxi.com> References: <200408090848.i798mSZ0049967@repoman.freebsd.org> <20040810151006.GB7254@tara.freenix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810151006.GB7254@tara.freenix.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 Subject: Re: cvs commit: src/share/mk bsd.libnames.mk src/lib/libmagic Makefile config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:53:11 -0000 On Tue, Aug 10, 2004 at 05:10:06PM +0200, Ollivier Robert wrote: > According to David E. O'Brien: > > Log: > > Bmake the library containing and processing the magic. > > Do you foresee external usage of the library? I mean, do you really need > to expose libmagic to the world? libntp/libparse are only build, not > installed for example. It is hard to say. Not knowing what others will do I decided to expose the lib. It would not surprise me to have some future port do 'file --version' and decide it could use the lib. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Wed Aug 11 20:30:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B30616A4CE; Wed, 11 Aug 2004 20:30:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 925D443D31; Wed, 11 Aug 2004 20:30:08 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKU8NM085511; Wed, 11 Aug 2004 20:30:08 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKU8oa085510; Wed, 11 Aug 2004 20:30:08 GMT (envelope-from andre) Message-Id: <200408112030.i7BKU8oa085510@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 20:30:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:30:08 -0000 andre 2004-08-11 20:30:08 UTC FreeBSD src repository Modified files: sys/netinet ip_divert.c raw_ip.c tcp_subr.c tcp_syncache.c udp_usrreq.c Log: Backout removal of UMA_ZONE_NOFREE flag for all zones which are established for structures with timers in them. It might be that a timer might fire even when the associated structure has already been free'd. Having type- stable storage in this case is beneficial for graceful failure handling and debugging. Discussed with: bosko, tegge, rwatson Revision Changes Path 1.97 +1 -1 src/sys/netinet/ip_divert.c 1.139 +1 -1 src/sys/netinet/raw_ip.c 1.199 +4 -4 src/sys/netinet/tcp_subr.c 1.64 +1 -1 src/sys/netinet/tcp_syncache.c 1.160 +1 -1 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 20:34:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8851E16A4D2 for ; Wed, 11 Aug 2004 20:34:42 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A863F43D4C for ; Wed, 11 Aug 2004 20:34:41 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 93407 invoked from network); 11 Aug 2004 20:28:36 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 20:28:36 -0000 Message-ID: <411A82E0.A7B181C@freebsd.org> Date: Wed, 11 Aug 2004 22:34:41 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Robert Watson References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Bosko Milekic cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.ctcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:34:42 -0000 Robert Watson wrote: > > On Wed, 11 Aug 2004, Bosko Milekic wrote: > > > Please be careful here. The reason they were NOFREE before was because > > the original zone code was implicitly nofree. If these structures need > > to be type stable, then you just broke them with this commit. So are > > you sure that they absolutely do not need to be type stable? > > Often, zones with the old zone allocator being type-stable allowed low > cost monitoring using generation numbers (see the UNIX domain socket code > as an example). As a result, monitoring code will assume it can walk the > global list of sockets even after the sockets are free'd, and detect it > with the generation number. This may or may not apply to the pcbs (don't > have source in front of me), but the caution definitely applies. I have made a backout for all those zones which have timers in their structures. Tor Egge provided a very convincing argument for this in private email. TCP hostcache and rtentry's do not need type-stable storage and remain without NOFREE. Thanks for all comments urging caution! -- Andre From owner-cvs-src@FreeBSD.ORG Wed Aug 11 20:35:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5B6816A4CE; Wed, 11 Aug 2004 20:35:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85FF643D46; Wed, 11 Aug 2004 20:35:55 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKZtVG085765; Wed, 11 Aug 2004 20:35:55 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKZtij085764; Wed, 11 Aug 2004 20:35:55 GMT (envelope-from gibbs) Message-Id: <200408112035.i7BKZtij085764@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Wed, 11 Aug 2004 20:35:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/vx if_vx_eisa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:35:55 -0000 gibbs 2004-08-11 20:35:55 UTC FreeBSD src repository Modified files: sys/dev/vx if_vx_eisa.c Log: Correctly export the size of our softc to newbus in our EISA attachement. This avoids a panic upon first softc field reference. Revision Changes Path 1.22 +1 -1 src/sys/dev/vx/if_vx_eisa.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 20:37:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 013BB16A4CE; Wed, 11 Aug 2004 20:37:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D676043D39; Wed, 11 Aug 2004 20:37:24 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKbO1t085887; Wed, 11 Aug 2004 20:37:24 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKbOjN085886; Wed, 11 Aug 2004 20:37:24 GMT (envelope-from njl) Message-Id: <200408112037.i7BKbOjN085886@repoman.freebsd.org> From: Nate Lawson Date: Wed, 11 Aug 2004 20:37:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:37:25 -0000 njl 2004-08-11 20:37:24 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Add some more verbose warning/error messages to help with users reporting problems with irq routing. Revision Changes Path 1.20 +12 -17 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 20:54:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C3DF16A4CE; Wed, 11 Aug 2004 20:54:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D2E043D4C; Wed, 11 Aug 2004 20:54:48 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKsmVQ087174; Wed, 11 Aug 2004 20:54:48 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKsmPo087173; Wed, 11 Aug 2004 20:54:48 GMT (envelope-from julian) Message-Id: <200408112054.i7BKsmPo087173@repoman.freebsd.org> From: Julian Elischer Date: Wed, 11 Aug 2004 20:54:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:54:48 -0000 julian 2004-08-11 20:54:48 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Properly keep track of how many kses are on the system run queue(s). Revision Changes Path 1.49 +3 -2 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 21:09:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5339216A4CE; Wed, 11 Aug 2004 21:09:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4852443D2D; Wed, 11 Aug 2004 21:09:40 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BL9e8f087846; Wed, 11 Aug 2004 21:09:40 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BL9eri087845; Wed, 11 Aug 2004 21:09:40 GMT (envelope-from marius) Message-Id: <200408112109.i7BL9eri087845@repoman.freebsd.org> From: Marius Strobl Date: Wed, 11 Aug 2004 21:09:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/powerpc/powermac grackle.c hrowpic.c macio.c openpic_macio.c uninorth.c src/sys/powerpc/powerpc openpic.c src/sys/powerpc/psim iobus.c openpic_iobus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:09:40 -0000 marius 2004-08-11 21:09:40 UTC FreeBSD src repository Modified files: sys/powerpc/powermac grackle.c hrowpic.c macio.c openpic_macio.c uninorth.c sys/powerpc/powerpc openpic.c sys/powerpc/psim iobus.c openpic_iobus.c Log: - Use the rman_get_* functions instead of reaching into struct resource. - Remove __RMAN_RESORUCE_VISIBLE again. It's no longer required either because of the above change or because struct rman is no longer hidden. Reviewed by: grehan Tested by: cross-compile on i386 Revision Changes Path 1.6 +0 -1 src/sys/powerpc/powermac/grackle.c 1.7 +8 -7 src/sys/powerpc/powermac/hrowpic.c 1.15 +0 -1 src/sys/powerpc/powermac/macio.c 1.7 +0 -1 src/sys/powerpc/powermac/openpic_macio.c 1.8 +0 -1 src/sys/powerpc/powermac/uninorth.c 1.12 +8 -7 src/sys/powerpc/powerpc/openpic.c 1.7 +0 -1 src/sys/powerpc/psim/iobus.c 1.5 +0 -1 src/sys/powerpc/psim/openpic_iobus.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 21:19:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E12716A4CE; Wed, 11 Aug 2004 21:19:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E12B643D31; Wed, 11 Aug 2004 21:19:31 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLJViM088140; Wed, 11 Aug 2004 21:19:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLJVQK088139; Wed, 11 Aug 2004 21:19:31 GMT (envelope-from marius) Message-Id: <200408112119.i7BLJVQK088139@repoman.freebsd.org> From: Marius Strobl Date: Wed, 11 Aug 2004 21:19:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pcf envctrl.c pcf_ebus.c pcf_isa.c pcfvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:19:32 -0000 marius 2004-08-11 21:19:31 UTC FreeBSD src repository Modified files: sys/dev/pcf envctrl.c pcf_ebus.c pcf_isa.c pcfvar.h Log: Unbreak after struct resource was hidden. Tested with EBus front-end on Sun AXe board. Revision Changes Path 1.3 +2 -0 src/sys/dev/pcf/envctrl.c 1.2 +2 -0 src/sys/dev/pcf/pcf_ebus.c 1.5 +2 -0 src/sys/dev/pcf/pcf_isa.c 1.3 +13 -15 src/sys/dev/pcf/pcfvar.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 21:23:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E285C16A4CE; Wed, 11 Aug 2004 21:23:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C160743D31; Wed, 11 Aug 2004 21:23:42 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLNgeu088354; Wed, 11 Aug 2004 21:23:42 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLNg00088353; Wed, 11 Aug 2004 21:23:42 GMT (envelope-from ru) Message-Id: <200408112123.i7BLNg00088353@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Aug 2004 21:23:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:23:43 -0000 ru 2004-08-11 21:23:42 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Fix the country of birth. Requested by: dima Revision Changes Path 1.135 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Aug 11 21:41:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5088316A4CF; Wed, 11 Aug 2004 21:41:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 249C443D3F; Wed, 11 Aug 2004 21:41:26 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLfQ74088935; Wed, 11 Aug 2004 21:41:26 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLfQmE088934; Wed, 11 Aug 2004 21:41:26 GMT (envelope-from truckman) Message-Id: <200408112141.i7BLfQmE088934@repoman.freebsd.org> From: Don Lewis Date: Wed, 11 Aug 2004 21:41:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:41:26 -0000 truckman 2004-08-11 21:41:26 UTC FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: Deorbit the fxp tuning hint (hint.fxp.UNIT_NUMBER.ipcbxmit_disable) introduced in if_fxp.c revision 1.180. The bug fix committed in revision 1.180 fixed the packet truncation problem. Revision Changes Path 1.217 +2 -24 src/sys/dev/fxp/if_fxp.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 21:51:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63C2016A4CE; Wed, 11 Aug 2004 21:51:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41AE543D54; Wed, 11 Aug 2004 21:51:27 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLpRBN089275; Wed, 11 Aug 2004 21:51:27 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLpRso089274; Wed, 11 Aug 2004 21:51:27 GMT (envelope-from obrien) Message-Id: <200408112151.i7BLpRso089274@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 11 Aug 2004 21:51:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:51:27 -0000 obrien 2004-08-11 21:51:27 UTC FreeBSD src repository Modified files: share/mk bsd.cpu.mk Log: Add more aliases for common CPUTYPE spellings Revision Changes Path 1.40 +9 -1 src/share/mk/bsd.cpu.mk From owner-cvs-src@FreeBSD.ORG Wed Aug 11 21:52:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A19C516A4CE; Wed, 11 Aug 2004 21:52:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8193043D48; Wed, 11 Aug 2004 21:52:31 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLqVVn089347; Wed, 11 Aug 2004 21:52:31 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLqVc4089346; Wed, 11 Aug 2004 21:52:31 GMT (envelope-from imp) Message-Id: <200408112152.i7BLqVc4089346@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 21:52:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 DEVICE_PROBE.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:52:31 -0000 imp 2004-08-11 21:52:31 UTC FreeBSD src repository Modified files: share/man/man9 DEVICE_PROBE.9 Log: Be explicit that a driver may assume softc is preserved when returning 0 Revision Changes Path 1.19 +2 -0 src/share/man/man9/DEVICE_PROBE.9 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 22:09:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13FB316A4CE; Wed, 11 Aug 2004 22:09:57 +0000 (GMT) Received: from pd5mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 804D843D39; Wed, 11 Aug 2004 22:09:56 +0000 (GMT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from pd2mr3so.prod.shaw.ca (pd2mr3so-ser.prod.shaw.ca [10.0.141.108])2003)) with ESMTP id <0I2A00743YJ654@l-daemon>; Wed, 11 Aug 2004 16:01:54 -0600 (MDT) Received: from pn2ml3so.prod.shaw.ca ([10.0.121.147]) by pd2mr3so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I2A003NMYJ6DQA0@pd2mr3so.prod.shaw.ca>; Wed, 11 Aug 2004 16:01:54 -0600 (MDT) Received: from piii600.wadham.ox.ac.uk ([24.87.233.42])2003)) with ESMTP id <0I2A0067XYJ5SR@l-daemon>; Wed, 11 Aug 2004 16:01:54 -0600 (MDT) Date: Wed, 11 Aug 2004 15:01:46 -0700 From: Colin Percival In-reply-to: <200408112030.i7BKU8oa085510@repoman.freebsd.org> X-Sender: cperciva@popserver.sfu.ca (Unverified) To: Andre Oppermann Message-id: <6.1.0.6.1.20040811145749.03f62170@popserver.sfu.ca> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 6.1.0.6 Content-type: text/plain; charset=us-ascii References: <200408112030.i7BKU8oa085510@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:09:57 -0000 At 13:30 11/08/2004, Andre Oppermann wrote: > Backout removal of UMA_ZONE_NOFREE flag for all zones which are established > for structures with timers in them. It might be that a timer might fire > even when the associated structure has already been free'd. Have you considered converting the callout_stop calls to callout_drain calls? (I don't know if it's possible here, since callout_drain sometimes picks up a sleep mutex. But killing callouts before freeing data structures is exactly the problem for which callout_drain was created.) Colin Percival From owner-cvs-src@FreeBSD.ORG Wed Aug 11 22:12:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71B7416A4CE; Wed, 11 Aug 2004 22:12:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FDDD43D53; Wed, 11 Aug 2004 22:12:44 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMCilN091067; Wed, 11 Aug 2004 22:12:44 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMCiqJ091066; Wed, 11 Aug 2004 22:12:44 GMT (envelope-from pjd) Message-Id: <200408112212.i7BMCiqJ091066@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 22:12:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:12:44 -0000 pjd 2004-08-11 22:12:44 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.h Log: - Fix typo. - Dump HARDCODED flag. Revision Changes Path 1.6 +3 -1 src/sys/geom/mirror/g_mirror.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 22:16:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CDDF16A4CE; Wed, 11 Aug 2004 22:16:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29A5043D41; Wed, 11 Aug 2004 22:16:43 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMGh7Q091590; Wed, 11 Aug 2004 22:16:43 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMGhJh091589; Wed, 11 Aug 2004 22:16:43 GMT (envelope-from pjd) Message-Id: <200408112216.i7BMGhJh091589@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 22:16:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:16:43 -0000 pjd 2004-08-11 22:16:43 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.h Log: Actually, HARDCODED flag isn't stored in metadata, so don't bother dumping it. Revision Changes Path 1.7 +0 -2 src/sys/geom/mirror/g_mirror.h From owner-cvs-src@FreeBSD.ORG Wed Aug 11 22:30:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6849C16A4CE; Wed, 11 Aug 2004 22:30:31 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE5C43D45; Wed, 11 Aug 2004 22:30:31 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id i7BMUT8g077255 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Wed, 11 Aug 2004 18:30:30 -0400 (EDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id i7BMUTfr077252; Wed, 11 Aug 2004 18:30:29 -0400 (EDT) (envelope-from wollman) Date: Wed, 11 Aug 2004 18:30:29 -0400 (EDT) From: Garrett Wollman Message-Id: <200408112230.i7BMUTfr077252@khavrinen.lcs.mit.edu> To: Andre Oppermann In-Reply-To: <411A60D4.7C25D34E@freebsd.org> References: <20040811175052.GA37093@freefall.freebsd.org> <411A60D4.7C25D34E@freebsd.org> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.ctcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:30:31 -0000 < said: > In all cases the zone is used as kmalloc replacement. It always > initializes a newly allocated object. It always unlinks the object > from any lists before it uma_zfree's it. All such operations are > covered by mutexes, no concurrent access should happen. If there > is any use-after-free then it is a bug that needs to be fixed. No, it is an intentional design choice, not a bug. Lock-free synchronization is good, particularly when you're copying out a giant wodge of PCBs to userland (or doing anything else that might take a really long time). Locks should not be held during this process. -GAWollman From owner-cvs-src@FreeBSD.ORG Wed Aug 11 22:32:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3A1716A4CE; Wed, 11 Aug 2004 22:32:43 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D7F643D1F; Wed, 11 Aug 2004 22:32:43 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7BMWkjx004398; Wed, 11 Aug 2004 18:32:47 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 355A65138A; Wed, 11 Aug 2004 15:32:41 -0700 (PDT) Date: Wed, 11 Aug 2004 15:32:41 -0700 From: Kris Kennaway To: "David E. O'Brien" Message-ID: <20040811223241.GA46767@xor.obsecurity.org> References: <200408112151.i7BLpRso089274@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <200408112151.i7BLpRso089274@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:32:44 -0000 --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 09:51:27PM +0000, David E. O'Brien wrote: > obrien 2004-08-11 21:51:27 UTC >=20 > FreeBSD src repository >=20 > Modified files: > share/mk bsd.cpu.mk=20 > Log: > Add more aliases for common CPUTYPE spellings Thanks! Kris --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGp3qWry0BWjoQKURAiBuAJ9zGE8BQyStBij3xWgyd7BqvFuSvwCeMLIx PQOrkMakYtKg/w9rkInmBH4= =V/Z+ -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- From owner-cvs-src@FreeBSD.ORG Wed Aug 11 22:52:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEB6516A4CE; Wed, 11 Aug 2004 22:52:23 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B4B443D54; Wed, 11 Aug 2004 22:52:23 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i7BMqELT018444; Wed, 11 Aug 2004 15:52:18 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200408112252.i7BMqELT018444@gw.catspoiler.org> Date: Wed, 11 Aug 2004 15:52:14 -0700 (PDT) From: Don Lewis To: nate@root.org In-Reply-To: <411A4B4F.6070007@root.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:52:23 -0000 On 11 Aug, Nate Lawson wrote: > Don Lewis wrote: >> On 10 Aug, Nate Lawson wrote: >> >>>njl 2004-08-10 01:32:05 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/kern kern_shutdown.c vfs_subr.c >>> Log: >>> Skip the syncing disks loop if there are no dirty buffers. Remove a >>> variable used to flag the initial printf. >>> >>> Submitted by: truckman (earlier version) >>> >>> Revision Changes Path >>> 1.162 +13 -5 src/sys/kern/kern_shutdown.c >>> 1.519 +1 -1 src/sys/kern/vfs_subr.c >> >> >> BDE had a number of objections to this patch. This is the alternative >> that I came up with: > > Feel free to rework/commit it. I think your patch is a little rough > still but generally think it's a good idea to reuse the check for nbufs. I wasn't terribly happy with three slightly different copies of the code to compute nbufs and neither was BDE. He also wanted sync() to be called even if no buffers were initially busy, because sync() itself can dirty some buffers. BDE also claimed that kernel printf() messages should not be sentences and should not begin with a capital letter. This doesn't seem to be documented anywhere, and we're hardly consistent in terms of the latter, but I changed this anyway. I tossed in the printf("\n") because I used VT2xx terminals as serial consoles for many years, and they always seemed to get set to line-wrapping disabled mode. I didn't want the "giving up" or "final sync complete" messages to get lost because the outer loop went through an arbitrarily large number of iterations. I just now noticed that the "normal" case is a bit too verbose, so I just tossed a if (!first_buf_printf) before the printf("final sync complete\n"); I'm open to any reasonable suggestions on how to decorate this particular bikeshed before I do the commit. From owner-cvs-src@FreeBSD.ORG Wed Aug 11 23:18:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A6C16A4CE; Wed, 11 Aug 2004 23:18:03 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B838343D31; Wed, 11 Aug 2004 23:18:03 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B28475C8CF; Wed, 11 Aug 2004 16:18:03 -0700 (PDT) Date: Wed, 11 Aug 2004 16:18:03 -0700 From: Alfred Perlstein To: Ceri Davies , Oliver Eikemeier , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040811231803.GE57908@elvis.mu.org> References: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> <20040811162405.GV87690@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040811162405.GV87690@submonkey.net> User-Agent: Mutt/1.4.2.1i Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:18:04 -0000 * Ceri Davies [040811 09:24] wrote: > On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: > > eik 2004-08-11 16:16:24 UTC > > > > > > - replace the perl version of pkg_version(1) by its C equivalent, > > which means that `pkg_version -c' does no longer work > > I don't think that this should have gone into RELENG_4, in this case. Agreed. We don't break things that used to work in 4.x unless there is dire need. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Wed Aug 11 23:23:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF4B16A4E4; Wed, 11 Aug 2004 23:23:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BB1143D31; Wed, 11 Aug 2004 23:23:05 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BNN5bp094959; Wed, 11 Aug 2004 23:23:05 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BNN53S094958; Wed, 11 Aug 2004 23:23:05 GMT (envelope-from davidxu) Message-Id: <200408112323.i7BNN53S094958@repoman.freebsd.org> From: David Xu Date: Wed, 11 Aug 2004 23:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 vm_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:23:05 -0000 davidxu 2004-08-11 23:23:05 UTC FreeBSD src repository Modified files: sys/amd64/amd64 vm_machdep.c Log: Mark end of frames. Revision Changes Path 1.236 +1 -0 src/sys/amd64/amd64/vm_machdep.c From owner-cvs-src@FreeBSD.ORG Wed Aug 11 23:41:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FBB416A4CE; Wed, 11 Aug 2004 23:41:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8299343D53; Wed, 11 Aug 2004 23:41:53 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BNfrps095533; Wed, 11 Aug 2004 23:41:53 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BNfrL0095532; Wed, 11 Aug 2004 23:41:53 GMT (envelope-from pjd) Message-Id: <200408112341.i7BNfrL0095532@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 23:41:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c g_mirror.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:41:53 -0000 pjd 2004-08-11 23:41:53 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c g_mirror.h Log: MFp4: Simplify code a bit: - Remove kern.geom.mirror.sync_block_size sysctl. It is quite obvious that we want to use the biggest size possible. - Do not use UMA zone for sync data allocations. There could be only one synchronization request per synchronized disk at a time, so allocate memory for one request on whole synchronization process related to one disk. Tested by synchronizing one component (out of three) and by synchronizing two components (out of three) in parallel. Revision Changes Path 1.18 +6 -14 src/sys/geom/mirror/g_mirror.c 1.8 +6 -6 src/sys/geom/mirror/g_mirror.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 00:00:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60A8B16A4CE; Thu, 12 Aug 2004 00:00:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E59A43D39; Thu, 12 Aug 2004 00:00:16 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C00GbC096052; Thu, 12 Aug 2004 00:00:16 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C00FJb096051; Thu, 12 Aug 2004 00:00:15 GMT (envelope-from jmg) Message-Id: <200408120000.i7C00FJb096051@repoman.freebsd.org> From: John-Mark Gurney Date: Thu, 12 Aug 2004 00:00:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:00:16 -0000 jmg 2004-08-12 00:00:15 UTC FreeBSD src repository Modified files: . UPDATING Log: add comment about needing to upgrade loader.rc on i386 systems that have problems loading modules... Solution by: ru Revision Changes Path 1.339 +9 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Thu Aug 12 00:13:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74E1916A4CE; Thu, 12 Aug 2004 00:13:34 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7D9543D2D; Thu, 12 Aug 2004 00:13:33 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc13) with SMTP id <2004081200133201600qtidke>; Thu, 12 Aug 2004 00:13:33 +0000 Date: Wed, 11 Aug 2004 17:13:31 -0700 (PDT) From: Doug Barton To: Alfred Perlstein In-Reply-To: <20040811231803.GE57908@elvis.mu.org> Message-ID: <20040811171300.N54010@ync.qbhto.arg> References: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> <20040811162405.GV87690@submonkey.net> <20040811231803.GE57908@elvis.mu.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; format=flowed cc: "cvs-src@FreeBSD.org" cc: Ceri Davies cc: "cvs-all@FreeBSD.org" cc: "src-committers@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.hextract.c Makefilesrc/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:13:34 -0000 On Wed, 11 Aug 2004, Alfred Perlstein wrote: > * Ceri Davies [040811 09:24] wrote: >> On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: >>> eik 2004-08-11 16:16:24 UTC >>> >>> >>> - replace the perl version of pkg_version(1) by its C equivalent, >>> which means that `pkg_version -c' does no longer work >> >> I don't think that this should have gone into RELENG_4, in this case. > > Agreed. We don't break things that used to work in 4.x unless there > is dire need. Also agreed. This should not have happened, and I'd like to see it backed out. Doug -- This .signature sanitized for your protection From owner-cvs-src@FreeBSD.ORG Thu Aug 12 00:33:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 272E416A4CE; Thu, 12 Aug 2004 00:33:59 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5CCC43D45; Thu, 12 Aug 2004 00:33:58 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv3XX-000Phj-FX; Thu, 12 Aug 2004 02:33:57 +0200 Date: Thu, 12 Aug 2004 02:35:33 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton , re@FreeBSD.org From: Oliver Eikemeier In-Reply-To: <20040811171300.N54010@ync.qbhto.arg> Message-Id: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: Ceri Davies cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:33:59 -0000 Doug Barton wrote: > On Wed, 11 Aug 2004, Alfred Perlstein wrote: > >> * Ceri Davies [040811 09:24] wrote: >>> On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: >>>> eik 2004-08-11 16:16:24 UTC >>>> >>>> >>>> - replace the perl version of pkg_version(1) by its C equivalent, >>>> which means that `pkg_version -c' does no longer work >>> >>> I don't think that this should have gone into RELENG_4, in this case. >> >> Agreed. We don't break things that used to work in 4.x unless there >> is dire need. > > Also agreed. This should not have happened, and I'd like to see it > backed out. Before I get a million replies to this commit: When anyone from re@ thinks it is worth the effort, I will add an -c option to the C pkg_version code ASAP. I believe backing this out won't be beneficial for -STABLE users, since they'll loose a lot of features (and speed). Has anyone on this thread *ever* used that option? -Oliver From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:09:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3467F16A4D1 for ; Thu, 12 Aug 2004 01:09:21 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2EDBE43D46 for ; Thu, 12 Aug 2004 01:09:20 +0000 (GMT) (envelope-from tmoestl@gmx.net) Received: (qmail 10666 invoked by uid 65534); 12 Aug 2004 01:09:18 -0000 Received: from p509076EC.dip.t-dialin.net (EHLO timesink.dyndns.org) (80.144.118.236) by mail.gmx.net (mp007) with SMTP; 12 Aug 2004 03:09:18 +0200 X-Authenticated: #5374206 Received: by abel (Postfix, from userid 1001) id B350E56E; Thu, 12 Aug 2004 03:10:10 +0200 (CEST) Date: Thu, 12 Aug 2004 03:10:10 +0200 From: Thomas Moestl To: John-Mark Gurney Message-ID: <20040812011010.GA4799@timesink.dyndns.org> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VbJkn9YxBvnuCH5J" Content-Disposition: inline In-Reply-To: <20040811150458.GU991@funkthat.com> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:09:21 -0000 --VbJkn9YxBvnuCH5J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, 2004/08/11 at 08:04:58 -0700, John-Mark Gurney wrote: > John-Mark Gurney wrote this message on Wed, Aug 11, 2004 at 14:52 +0000: > > jmg 2004-08-11 14:52:33 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/man/man9 bus_dma.9 > > Log: > > fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's > > point of view... Add a reference to a better description of what the ops > > do... > > If you were previously confused (and even if you thought you knew what > they were) on what BUS_DMASYNC_ ops to us, please reread the manpage > and review any drivers written using them. Hmmm. It seems to me that the text the new reference points to is wrong, or at least ambiguous: bus_dmamap_sync() is the method used to ensure that CPU and device DMA access to shared memory is coherent. For example, the CPU might be used to setup the contents of a buffer that is to be DMA'ed into a device. To ensure that the data are visible via the device's mapping of that memory, the buffer must be loaded and a dma sync operation of BUS_DMASYNC_PREREAD must be performed. Additional sync operations must be performed after every CPU write to this memory if additional DMA reads are to be performed. Conversely, for the DMA write case, the buffer must be loaded, and a dma sync operation of BUS_DMASYNC_PREWRITE must be performed. The CPU will only be able to see the results of this DMA write once the DMA has completed and a BUS_DMASYNC_POSTWRITE operation has been performed. When the CPU sets up data to be DMAed into the device from memory, it needs to use a PREWRITE, not POSTREAD, sync before starting the DMA operation. Likewise, after DMAing data out of the device and into memory, a POSTREAD is required. This is quickly evident when looking into the busdma implementations, for example the way the i386 one deals with bounce buffers on syncs. The best way to memorize the flags (and probably their origin) is to imagine a disk controller; a write to disk will need the *WRITE flags (but it reads from memory), and vice versa. NetBSD has a nice clarification: Synchronization operations are expressed from the perspective of the host RAM, e.g., a device -> memory operation is a READ and a memory -> device operation is a WRITE. I think that something of that variety is required, since there are always the two opposite meanings of "reading from" and "reading into". - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ OpenPGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C --VbJkn9YxBvnuCH5J Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGsNxH+ZPHUGcd2wRAjROAJ0bUw+nWaErxnmVu/yKfbt14tNBhACgvgu8 Uk+uVmuLYeTGEXZt2SuTnm0= =gldJ -----END PGP SIGNATURE----- --VbJkn9YxBvnuCH5J-- From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:12:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCC1616A4CE; Thu, 12 Aug 2004 01:12:09 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9801343D39; Thu, 12 Aug 2004 01:12:09 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (rwcrmhc11) with SMTP id <20040812011208013001cvb6e>; Thu, 12 Aug 2004 01:12:09 +0000 Date: Wed, 11 Aug 2004 18:12:08 -0700 (PDT) From: Doug Barton To: Oliver Eikemeier In-Reply-To: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Message-ID: <20040811180725.E54010@ync.qbhto.arg> References: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> 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; format=flowed cc: "src-committers@FreeBSD.org" cc: "re@FreeBSD.org" cc: "cvs-src@FreeBSD.org" cc: Alfred Perlstein cc: "cvs-all@FreeBSD.org" cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.hextract.c Makefilesrc/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:12:09 -0000 On Thu, 12 Aug 2004, Oliver Eikemeier wrote: > Before I get a million replies to this commit: When anyone from re@ thinks it > is worth the effort, I will add an -c option to the C pkg_version code ASAP. I am happy to let re@ make the decision regarding the proper course of action here. > I believe backing this out won't be beneficial for -STABLE users, since > they'll loose a lot of features (and speed). Has anyone on this thread *ever* > used that option? None of these arguments are relevant, sorry. One of the key principles for a -stable branch is not violating trust with our users that "how things work is how they will always work" without a really good reason. "It's better, stronger, faster!" is not a really good reason. One of the key reasons for the failure of the 3.x branch was that we called it "stable" but we kept messing around with it. This dramatically delayed the uptake of the branch, which caused a lot of problems to stay problems such that a majority of our user base went from 2.x to 4.x instead of using 3.x at all. We were dangerously close to making this same mistake in 5.x, but I think that the current re@ group has done a pretty good job of limiting the number of things that might bite us in the butt down the road. I'd still like to see the change to pkg_version backed out, and the old one restored. Doug -- This .signature sanitized for your protection From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:28:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A610416A4CF for ; Thu, 12 Aug 2004 01:28:58 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 427C143D5D for ; Thu, 12 Aug 2004 01:28:58 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 14274 invoked from network); 12 Aug 2004 01:28:57 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail1.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 12 Aug 2004 01:28:57 -0000 Received: from hydrogen.funkthat.com (nefezk@localhost.funkthat.com [127.0.0.1])i7C1SvuU011980; Wed, 11 Aug 2004 18:28:57 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7C1Su94011979; Wed, 11 Aug 2004 18:28:56 -0700 (PDT) Date: Wed, 11 Aug 2004 18:28:56 -0700 From: John-Mark Gurney To: Thomas Moestl Message-ID: <20040812012856.GY991@funkthat.com> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> <20040812011010.GA4799@timesink.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040812011010.GA4799@timesink.dyndns.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:28:58 -0000 Thomas Moestl wrote this message on Thu, Aug 12, 2004 at 03:10 +0200: > On Wed, 2004/08/11 at 08:04:58 -0700, John-Mark Gurney wrote: > Hmmm. It seems to me that the text the new reference points to is > wrong, or at least ambiguous: > > bus_dmamap_sync() is the method used to ensure that CPU and > device DMA access to shared memory is coherent. For example, > the CPU might be used to setup the contents of a buffer that is > to be DMA'ed into a device. To ensure that the data are visible > via the device's mapping of that memory, the buffer must be > loaded and a dma sync operation of BUS_DMASYNC_PREREAD must be > performed. Additional sync operations must be performed after > every CPU write to this memory if additional DMA reads are to be > performed. Conversely, for the DMA write case, the buffer must > be loaded, and a dma sync operation of BUS_DMASYNC_PREWRITE must > be performed. The CPU will only be able to see the results of > this DMA write once the DMA has completed and a > BUS_DMASYNC_POSTWRITE operation has been performed. > > When the CPU sets up data to be DMAed into the device from memory, it > needs to use a PREWRITE, not POSTREAD, sync before starting the DMA We aren't NetBSD... :) it needs to be a _PREREAD since the device is _reading_ from the cpu's memory... check sys/i386/i386/busdma_machdep.c function _bus_dmamap_sync which does bounce buffering... > operation. Likewise, after DMAing data out of the device and into > memory, a POSTREAD is required. This is quickly evident when looking and here the device is _writing_ to the cpu's memory, and hence a _POSTWRITE... > into the busdma implementations, for example the way the i386 one > deals with bounce buffers on syncs. > The best way to memorize the flags (and probably their origin) is to > imagine a disk controller; a write to disk will need the *WRITE flags > (but it reads from memory), and vice versa. > > NetBSD has a nice clarification: > Synchronization operations are expressed from the perspective of > the host RAM, e.g., a device -> memory operation is a READ and a > memory -> device operation is a WRITE. > > I think that something of that variety is required, since there are > always the two opposite meanings of "reading from" and "reading into". Personally, if I am memory, a device _reads_ me, I don't _read_ a device, it's the device that does the work, not me... the memory isn't active in dma... it's a passive receiver of requests... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:30:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F201516A4CF; Thu, 12 Aug 2004 01:30:41 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80BE143D48; Thu, 12 Aug 2004 01:30:41 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i7C1T9TH025988; Wed, 11 Aug 2004 21:29:10 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i7C1T9c1025987; Wed, 11 Aug 2004 21:29:09 -0400 (EDT) Date: Wed, 11 Aug 2004 21:29:09 -0400 From: Ken Smith To: Oliver Eikemeier Message-ID: <20040812012909.GA25768@electra.cse.Buffalo.EDU> References: <20040811171300.N54010@ync.qbhto.arg> <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> User-Agent: Mutt/1.4.1i cc: Doug Barton cc: re@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:30:42 -0000 nOn Thu, Aug 12, 2004 at 02:35:33AM +0200, Oliver Eikemeier wrote: > Before I get a million replies to this commit: When anyone from re@ > thinks it is worth the effort, I will add an -c option to the C > pkg_version code ASAP. I believe backing this out won't be beneficial > for -STABLE users, since they'll loose a lot of features (and speed). > Has anyone on this thread *ever* used that option? I would like to see the -c added please. I know it seems like busywork but we have historically tried to make sure existing semantics don't change in -stable without a really really really good reason. Additional features (and speed ;-) are always welcome/good as long as existing semantics don't change. If you need any help or want to discuss it let me know. Thanks. -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:33:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E72216A4CE; Thu, 12 Aug 2004 01:33:12 +0000 (GMT) Received: from hotmail.com (bay11-f10.bay11.hotmail.com [64.4.39.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E3D543D1D; Thu, 12 Aug 2004 01:33:12 +0000 (GMT) (envelope-from dsnofe@msn.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 11 Aug 2004 18:33:12 -0700 Received: from 218.80.194.83 by by11fd.bay11.hotmail.msn.com with HTTP; Thu, 12 Aug 2004 01:33:11 GMT X-Originating-IP: [218.80.194.83] X-Originating-Email: [dsnofe@msn.com] X-Sender: dsnofe@msn.com From: "Deng XueFeng" To: obrien@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Date: Thu, 12 Aug 2004 01:33:11 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=gb2312; format=flowed Message-ID: X-OriginalArrivalTime: 12 Aug 2004 01:33:12.0261 (UTC) FILETIME=[54B94F50:01C4800C] Subject: RE: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:33:12 -0000 Could you also add pentium-m, pentium3-m, pentium4-m support please. laptops need that. :-) >From: "David E. O'Brien" >To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org,cvs-all@FreeBSD.org >Subject: cvs commit: src/share/mk bsd.cpu.mk >Date: Wed, 11 Aug 2004 21:51:27 +0000 (UTC) >Received: from mx2.freebsd.org ([216.136.204.119]) by mc9-f28.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Wed, 11 Aug 2004 14:51:43 -0700 >Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18])by mx2.freebsd.org (Postfix) with ESMTPid 0FCCC581FF; Wed, 11 Aug 2004 21:51:34 +0000 (GMT)(envelope-from owner-cvs-src@freebsd.org) >Received: from hub.freebsd.org (localhost [127.0.0.1])by hub.freebsd.org (Postfix) with ESMTPid A827616A506; Wed, 11 Aug 2004 21:51:29 +0000 (GMT) >Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])by hub.freebsd.org (Postfix) with ESMTPid 63C2016A4CE; Wed, 11 Aug 2004 21:51:27 +0000 (GMT) >Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])by mx1.FreeBSD.org (Postfix) with ESMTPid 41AE543D54; Wed, 11 Aug 2004 21:51:27 +0000 (GMT)(envelope-from obrien@FreeBSD.org) >Received: from repoman.freebsd.org (localhost [127.0.0.1])by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLpRBN089275;Wed, 11 Aug 2004 21:51:27 GMT(envelope-from obrien@repoman.freebsd.org) >Received: (from obrien@localhost)by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLpRso089274;Wed, 11 Aug 2004 21:51:27 GMT(envelope-from obrien) >X-Message-Info: JGTYoYF78jHl+ZEdBQD/8G+rmkvDmXJX >Delivered-To: cvs-src@freebsd.org >Message-Id: <200408112151.i7BLpRso089274@repoman.freebsd.org> >X-FreeBSD-CVS-Branch: HEAD >X-BeenThere: cvs-src@freebsd.org >X-Mailman-Version: 2.1.1 >Precedence: list >List-Id: CVS commit messages for the src tree >List-Unsubscribe: , >List-Archive: >List-Post: >List-Help: >List-Subscribe: , >Errors-To: owner-cvs-src@freebsd.org >Return-Path: owner-cvs-src@freebsd.org >X-OriginalArrivalTime: 11 Aug 2004 21:51:43.0467 (UTC) FILETIME=[63FC43B0:01C47FED] > >obrien 2004-08-11 21:51:27 UTC > > FreeBSD src repository > > Modified files: > share/mk bsd.cpu.mk > Log: > Add more aliases for common CPUTYPE spellings > > Revision Changes Path > 1.40 +9 -1 src/share/mk/bsd.cpu.mk >_______________________________________________ >cvs-src@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/cvs-src >To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" _________________________________________________________________ Ãâ·ÑÏÂÔØ MSN Explorer: http://explorer.msn.com/lccn/ From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:34:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C3A716A4CE; Thu, 12 Aug 2004 01:34:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AF5E43D41; Thu, 12 Aug 2004 01:34:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C1YRox098765; Thu, 12 Aug 2004 01:34:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C1YRDm098764; Thu, 12 Aug 2004 01:34:27 GMT (envelope-from rwatson) Message-Id: <200408120134.i7C1YRDm098764@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 01:34:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:34:27 -0000 rwatson 2004-08-12 01:34:27 UTC FreeBSD src repository Modified files: sys/netinet udp_usrreq.c Log: When udp_send() fails, make sure to free the control mbufs as well as the data mbuf. This was done in most error cases, but not the case where the inpcb pointer is surprisingly NULL. Revision Changes Path 1.161 +2 -0 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:52:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8E4D16A4CE for ; Thu, 12 Aug 2004 01:52:24 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id A0F8243D4C for ; Thu, 12 Aug 2004 01:52:23 +0000 (GMT) (envelope-from tmoestl@gmx.net) Received: (qmail 30913 invoked by uid 65534); 12 Aug 2004 01:52:22 -0000 Received: from p509076EC.dip.t-dialin.net (EHLO timesink.dyndns.org) (80.144.118.236) by mail.gmx.net (mp001) with SMTP; 12 Aug 2004 03:52:22 +0200 X-Authenticated: #5374206 Received: by abel (Postfix, from userid 1001) id 0F10B56E; Thu, 12 Aug 2004 03:53:16 +0200 (CEST) Date: Thu, 12 Aug 2004 03:53:15 +0200 From: Thomas Moestl To: John-Mark Gurney Message-ID: <20040812015315.GB4799@timesink.dyndns.org> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> <20040812011010.GA4799@timesink.dyndns.org> <20040812012856.GY991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qcHopEYAB45HaUaB" Content-Disposition: inline In-Reply-To: <20040812012856.GY991@funkthat.com> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:52:24 -0000 --qcHopEYAB45HaUaB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, 2004/08/11 at 18:28:56 -0700, John-Mark Gurney wrote: > Thomas Moestl wrote this message on Thu, Aug 12, 2004 at 03:10 +0200: > > On Wed, 2004/08/11 at 08:04:58 -0700, John-Mark Gurney wrote: > > Hmmm. It seems to me that the text the new reference points to is > > wrong, or at least ambiguous: > > > > bus_dmamap_sync() is the method used to ensure that CPU and > > device DMA access to shared memory is coherent. For example, > > the CPU might be used to setup the contents of a buffer that is > > to be DMA'ed into a device. To ensure that the data are visible > > via the device's mapping of that memory, the buffer must be > > loaded and a dma sync operation of BUS_DMASYNC_PREREAD must be > > performed. Additional sync operations must be performed after > > every CPU write to this memory if additional DMA reads are to be > > performed. Conversely, for the DMA write case, the buffer must > > be loaded, and a dma sync operation of BUS_DMASYNC_PREWRITE must > > be performed. The CPU will only be able to see the results of > > this DMA write once the DMA has completed and a > > BUS_DMASYNC_POSTWRITE operation has been performed. > > > > When the CPU sets up data to be DMAed into the device from memory, it > > needs to use a PREWRITE, not POSTREAD, sync before starting the DMA Oops, that should have been "PREWRITE, not PREREAD", of course. > We aren't NetBSD... :) We are compatible with NetBSD in that respect, and should remain so, there's enough confusion about that topic already. > it needs to be a _PREREAD since the device > is _reading_ from the cpu's memory... check sys/i386/i386/busdma_machdep.c > function _bus_dmamap_sync which does bounce buffering... I did. It reads: if (op & BUS_DMASYNC_PREWRITE) { while (bpage != NULL) { bcopy((void *)bpage->datavaddr, (void *)bpage->vaddr, bpage->datacount); bpage = STAILQ_NEXT(bpage, links); } } if (op & BUS_DMASYNC_POSTREAD) { while (bpage != NULL) { bcopy((void *)bpage->vaddr, (void *)bpage->datavaddr, bpage->datacount); bpage = STAILQ_NEXT(bpage, links); } } bpage->vaddr is the bounce buffer address, bpage->datavaddr is the address that the CPU uses. PREREAD isn't even implemented, and PREWRITE does exactly the thing that is required in this situation, copying the data into the bounce buffer for the device to read. > > into the busdma implementations, for example the way the i386 one > > deals with bounce buffers on syncs. > > The best way to memorize the flags (and probably their origin) is to > > imagine a disk controller; a write to disk will need the *WRITE flags > > (but it reads from memory), and vice versa. > > > > NetBSD has a nice clarification: > > Synchronization operations are expressed from the perspective of > > the host RAM, e.g., a device -> memory operation is a READ and a > > memory -> device operation is a WRITE. > > > > I think that something of that variety is required, since there are > > always the two opposite meanings of "reading from" and "reading into". > > Personally, if I am memory, a device _reads_ me, I don't _read_ a > device, it's the device that does the work, not me... the memory isn't > active in dma... it's a passive receiver of requests... Well, obviously the NetBSD author thought the other way around, so there is potential for confusion. - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ OpenPGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C --qcHopEYAB45HaUaB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGs2LH+ZPHUGcd2wRAp4pAJ443Ap5AhfASxJDPxgTZnDDAkb4owCgmSOH ix4PgK8l5ZNI9PO5zdLwygw= =ixBZ -----END PGP SIGNATURE----- --qcHopEYAB45HaUaB-- From owner-cvs-src@FreeBSD.ORG Thu Aug 12 01:57:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AE4216A4CE; Thu, 12 Aug 2004 01:57:24 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE16243D41; Thu, 12 Aug 2004 01:57:23 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv4qG-0004M9-R7; Thu, 12 Aug 2004 03:57:23 +0200 Date: Thu, 12 Aug 2004 03:58:58 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Ken Smith From: Oliver Eikemeier In-Reply-To: <20040812012909.GA25768@electra.cse.Buffalo.EDU> Message-Id: <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: Doug Barton cc: re@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:57:24 -0000 Ken Smith wrote: > nOn Thu, Aug 12, 2004 at 02:35:33AM +0200, Oliver Eikemeier wrote: > >> Before I get a million replies to this commit: When anyone from re@ >> thinks it is worth the effort, I will add an -c option to the C >> pkg_version code ASAP. I believe backing this out won't be beneficial >> for -STABLE users, since they'll loose a lot of features (and speed). >> Has anyone on this thread *ever* used that option? > > I would like to see the -c added please. I know it seems like busywork > but we have historically tried to make sure existing semantics don't > change in -stable without a really really really good reason. > Additional > features (and speed ;-) are always welcome/good as long as existing > semantics don't change. If you need any help or want to discuss it > let me know. Ok, I'll write a patch then. -Oliver From owner-cvs-src@FreeBSD.ORG Thu Aug 12 02:06:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D71E16A4CE; Thu, 12 Aug 2004 02:06:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42EC443D46; Thu, 12 Aug 2004 02:06:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C26Jag099664; Thu, 12 Aug 2004 02:06:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C26JXP099663; Thu, 12 Aug 2004 02:06:19 GMT (envelope-from njl) Message-Id: <200408120206.i7C26JXP099663@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 02:06:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:06:19 -0000 njl 2004-08-12 02:06:19 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c acpi_pcib.c Log: Fix the PRT entry code in acpi_pci_link to always add the entry, even if there is no irq link. Since we now use the stored copy of PRT, not the one that used to be passed into acpi_pcib_route_interrupt(), we need it in the list. [1] Fix a bug in acpi_pci_find_prt() where we weren't checking the bus, thus choosing the wrong PRT entry to use for routing the link. Also, add a printf for the case where the PRT entry is not found as this should not happen. Tested by: marcel [1] Revision Changes Path 1.21 +40 -41 src/sys/dev/acpica/acpi_pci_link.c 1.48 +4 -1 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 02:15:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA77016A4CE; Thu, 12 Aug 2004 02:15:45 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A70C43D1D; Thu, 12 Aug 2004 02:15:45 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.5.51] (adsl-64-171-186-94.dsl.snfc21.pacbell.net [64.171.186.94]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7C2Fi8U009039; Wed, 11 Aug 2004 19:15:44 -0700 Message-ID: <411AD2CF.9070608@root.org> Date: Wed, 11 Aug 2004 19:15:43 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org References: <20040812020625.0BD8616A570@hub.freebsd.org> In-Reply-To: <20040812020625.0BD8616A570@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:15:45 -0000 Nate Lawson wrote: > FreeBSD src repository > > Modified files: > sys/dev/acpica acpi_pci_link.c acpi_pcib.c > Log: > Fix the PRT entry code in acpi_pci_link to always add the entry, even if > there is no irq link. Since we now use the stored copy of PRT, not the > one that used to be passed into acpi_pcib_route_interrupt(), we need it in > the list. [1] > > Fix a bug in acpi_pci_find_prt() where we weren't checking the bus, thus > choosing the wrong PRT entry to use for routing the link. Also, add a > printf for the case where the PRT entry is not found as this should not > happen. > > Tested by: marcel [1] > > Revision Changes Path > 1.21 +40 -41 src/sys/dev/acpica/acpi_pci_link.c > 1.48 +4 -1 src/sys/dev/acpica/acpi_pcib.c These bugs were most apparent on APIC machines, especially those with lots of PCI busses. Hardcoded IRQs should now work correctly. -- Nate From owner-cvs-src@FreeBSD.ORG Thu Aug 12 02:21:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1C9516A4CE; Thu, 12 Aug 2004 02:21:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE2E43D2F; Thu, 12 Aug 2004 02:21:58 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C2LwNN000159; Thu, 12 Aug 2004 02:21:58 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C2LwYi000158; Thu, 12 Aug 2004 02:21:58 GMT (envelope-from kan) Message-Id: <200408120221.i7C2LwYi000158@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 02:21:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gcc - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:21:59 -0000 kan 2004-08-12 02:21:58 UTC FreeBSD src repository src/contrib/gcc - Imported sources Update of /home/ncvs/src/contrib/gcc In directory repoman.freebsd.org:/tmp/cvs-serv137 Log Message: Import one more file for Gcc 3.4.2 20040728. Status: Vendor Tag: FSF Release Tags: gcc_3_4_2_20040728 N src/contrib/gcc/pex-common.h No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Thu Aug 12 02:23:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3C6516A4CE; Thu, 12 Aug 2004 02:23:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 825C943D3F; Thu, 12 Aug 2004 02:23:24 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C2NO22000210; Thu, 12 Aug 2004 02:23:24 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C2NOwU000209; Thu, 12 Aug 2004 02:23:24 GMT (envelope-from ache) Message-Id: <200408120223.i7C2NOwU000209@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Aug 2004 02:23:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:23:25 -0000 ache 2004-08-12 02:23:24 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Back in the USSR (for me) Revision Changes Path 1.136 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Thu Aug 12 03:02:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FD4F16A4CF; Thu, 12 Aug 2004 03:02:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4513943D46; Thu, 12 Aug 2004 03:02:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C32Hpq001371; Thu, 12 Aug 2004 03:02:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C32HYY001370; Thu, 12 Aug 2004 03:02:17 GMT (envelope-from rwatson) Message-Id: <200408120302.i7C32HYY001370@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 03:02:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire if_fwe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:02:17 -0000 rwatson 2004-08-12 03:02:17 UTC FreeBSD src repository Modified files: sys/dev/firewire if_fwe.c Log: Set IFF_NEEDSGIANT for fwe network interface since the firewire framework isn't yet MPSAFE. Approved by: simokawa Revision Changes Path 1.34 +2 -1 src/sys/dev/firewire/if_fwe.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 03:10:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7124A16A4CE; Thu, 12 Aug 2004 03:10:38 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D5E43D41; Thu, 12 Aug 2004 03:10:38 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i7C39DTH027911; Wed, 11 Aug 2004 23:09:13 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i7C39D1m027910; Wed, 11 Aug 2004 23:09:13 -0400 (EDT) Date: Wed, 11 Aug 2004 23:09:13 -0400 From: Ken Smith To: Oliver Eikemeier Message-ID: <20040812030913.GD27338@electra.cse.Buffalo.EDU> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> User-Agent: Mutt/1.4.1i cc: Ken Smith cc: re@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: Doug Barton cc: src-committers@FreeBSD.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:10:38 -0000 On Thu, Aug 12, 2004 at 03:58:58AM +0200, Oliver Eikemeier wrote: > Ok, I'll write a patch then. [ I said some of this to Oliver privately but it's probably worth saying louder... ] First thank you, the effort is appreciated. Second some people had asked that this be backed out. It sounds like Oliver is agreeable to adding -c so I'm OK with his previous commit remaining in RELENG_4 as long as adding -c doesn't take too long. Despite some users who probably shouldn't be tracking RELENG_4, it *is* the -stable *development* branch. Paranoid users should at this point be tracking RELENG_4_10 instead. Having -c disappear from RELENG_4 for a brief time is OK as long as it re-appears in a reasonable amount of time (and way before we start talking 4.11-RELEASE). -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-src@FreeBSD.ORG Thu Aug 12 03:29:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06A4916A4CE; Thu, 12 Aug 2004 03:29:47 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E0AA43D46; Thu, 12 Aug 2004 03:29:46 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7C3Tgl0083919; Wed, 11 Aug 2004 20:29:46 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7C3TgkH026776; Wed, 11 Aug 2004 20:29:42 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7C3TdUS026775; Wed, 11 Aug 2004 20:29:39 -0700 (PDT) (envelope-from marcel) Date: Wed, 11 Aug 2004 20:29:38 -0700 From: Marcel Moolenaar To: Nate Lawson Message-ID: <20040812032938.GA26731@dhcp50.pn.xcllnt.net> References: <200408120206.i7C26JXP099663@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408120206.i7C26JXP099663@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:29:47 -0000 On Thu, Aug 12, 2004 at 02:06:19AM +0000, Nate Lawson wrote: > njl 2004-08-12 02:06:19 UTC > > FreeBSD src repository > > Modified files: > sys/dev/acpica acpi_pci_link.c acpi_pcib.c > Log: > Fix the PRT entry code in acpi_pci_link to always add the entry, even if > there is no irq link. Since we now use the stored copy of PRT, not the > one that used to be passed into acpi_pcib_route_interrupt(), we need it in > the list. [1] > > Fix a bug in acpi_pci_find_prt() where we weren't checking the bus, thus > choosing the wrong PRT entry to use for routing the link. Also, add a > printf for the case where the PRT entry is not found as this should not > happen. Thanks for the quick turn-around. We're good on the second part too! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Thu Aug 12 04:47:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1333916A4CE; Thu, 12 Aug 2004 04:47:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5E4C43D5E; Thu, 12 Aug 2004 04:47:32 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C4lWlw004201; Thu, 12 Aug 2004 04:47:32 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C4lWv8004200; Thu, 12 Aug 2004 04:47:32 GMT (envelope-from scottl) Message-Id: <200408120447.i7C4lWv8004200@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 04:47:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 04:47:33 -0000 scottl 2004-08-12 04:47:32 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Release the sync fib after the controller has been shut down. This also releases the I/O lock instead of just leaking it. Revision Changes Path 1.97 +1 -0 src/sys/dev/aac/aac.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 04:57:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 271E616A4CF; Thu, 12 Aug 2004 04:57:57 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id A45E843D1D; Thu, 12 Aug 2004 04:57:56 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 9FD55653AD; Thu, 12 Aug 2004 05:57:55 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 03026-07-2; Thu, 12 Aug 2004 05:57:55 +0100 (BST) Received: from empiric.dek.spc.org (adsl-67-124-244-51.dsl.snfc21.pacbell.net [67.124.244.51]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id B7944653AC; Thu, 12 Aug 2004 05:57:53 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id A168A62B7; Wed, 11 Aug 2004 21:57:46 -0700 (PDT) Date: Wed, 11 Aug 2004 21:57:46 -0700 From: Bruce M Simpson To: Andre Oppermann Message-ID: <20040812045746.GD781@empiric.icir.org> Mail-Followup-To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408111726.i7BHQuPC078939@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 04:57:57 -0000 On Wed, Aug 11, 2004 at 05:26:56PM +0000, Andre Oppermann wrote: > Log: > Convert the routing table to use an UMA zone for rtentries. The zone is > called "rtentry". > > This saves a considerable amount of kernel memory. R_Zmalloc previously > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > bytes. Thank you for doing this. This was on my wishlist for some time. This is a considerable improvement. BMS From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:05:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1016816A4CF; Thu, 12 Aug 2004 05:05:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1ECA43D1F; Thu, 12 Aug 2004 05:05:06 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C556UD004709; Thu, 12 Aug 2004 05:05:06 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C556n4004708; Thu, 12 Aug 2004 05:05:06 GMT (envelope-from scottl) Message-Id: <200408120505.i7C556n4004708@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 05:05:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c aac_cam.c aac_disk.c aacvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:05:07 -0000 scottl 2004-08-12 05:05:06 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c aac_cam.c aac_disk.c aacvar.h Log: Remove the AAC_LOCK macros. They no longer abstract anything and only obfuscate the code. No functional differences. Revision Changes Path 1.98 +27 -29 src/sys/dev/aac/aac.c 1.17 +5 -5 src/sys/dev/aac/aac_cam.c 1.41 +2 -2 src/sys/dev/aac/aac_disk.c 1.45 +5 -12 src/sys/dev/aac/aacvar.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:09:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F21016A4CE; Thu, 12 Aug 2004 05:09:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E4D443D1D; Thu, 12 Aug 2004 05:09:18 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C59Hh6004908; Thu, 12 Aug 2004 05:09:17 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C59HwA004907; Thu, 12 Aug 2004 05:09:17 GMT (envelope-from scottl) Message-Id: <200408120509.i7C59HwA004907@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 05:09:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:09:18 -0000 scottl 2004-08-12 05:09:17 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Change FREE() to free() Revision Changes Path 1.99 +1 -1 src/sys/dev/aac/aac.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:31:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEEB716A4CE; Thu, 12 Aug 2004 05:31:07 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9E8E43D2D; Thu, 12 Aug 2004 05:31:07 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id A81955C8FE; Wed, 11 Aug 2004 22:31:07 -0700 (PDT) Date: Wed, 11 Aug 2004 22:31:07 -0700 From: Alfred Perlstein To: "Bruce A. Mah" Message-ID: <20040812053107.GK57908@elvis.mu.org> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1092287083.796.29.camel@tomcat.kitchenlab.org> User-Agent: Mutt/1.4.2.1i cc: Doug Barton cc: re@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Ken Smith cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:31:08 -0000 * Bruce A. Mah [040811 22:06] wrote: > > I'm not sure if I want to be replying to this thread, but I might have a > thing or two to say about this subject. > > As the original author of pkg_version (the Perl one), I wish I had never > added the -c option. Of the users I have talked to who used this > option, the majority used it wrongly (as a package updating script). In > hindsight, this was basically a foot-shooting device. :-( > > If anyone had asked me about this before jumping all over eik@, I would > have recommended that we lose the option as a service to our users. > Sorry, but that's the way I feel. > > In any case, thanks to eik@ for doing the work, and thanks to everyone > else who believed they were doing The Right Thing (TM). I sent a private mail to eik@ thanking him for being so cool as to fix this. Now that I think about I should also be saying thank you for the MFC itself, which I am thankful for. But wouldn't it suck to be that user that actually does use '-c' correctly, and to have it suddenly gone in the middle of a "stable" release? thanks, -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:31:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86BBD16A4D2; Thu, 12 Aug 2004 05:31:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65C0543D31; Thu, 12 Aug 2004 05:31:17 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5VHWK005574; Thu, 12 Aug 2004 05:31:17 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5VHOs005573; Thu, 12 Aug 2004 05:31:17 GMT (envelope-from scottl) Message-Id: <200408120531.i7C5VHOs005573@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 05:31:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:31:17 -0000 scottl 2004-08-12 05:31:17 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Destroy mutexes on detach. Revision Changes Path 1.100 +4 -0 src/sys/dev/aac/aac.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:37:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CE7E16A4D5; Thu, 12 Aug 2004 05:37:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8CE643D3F; Thu, 12 Aug 2004 05:37:46 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5bk92005792; Thu, 12 Aug 2004 05:37:46 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5bkIs005791; Thu, 12 Aug 2004 05:37:46 GMT (envelope-from tjr) Message-Id: <200408120537.i7C5bkIs005791@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 05:37:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gnu-sort - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:37:47 -0000 tjr 2004-08-12 05:37:46 UTC FreeBSD src repository src/contrib/gnu-sort - Imported sources Update of /home/ncvs/src/contrib/gnu-sort In directory repoman.freebsd.org:/tmp/cvs-serv5599 Log Message: Import of GNU sort from coreutils CVS (trimmed) Status: Vendor Tag: FSF Release Tags: SORT_20040812 U src/contrib/gnu-sort/ABOUT-NLS U src/contrib/gnu-sort/AUTHORS U src/contrib/gnu-sort/COPYING U src/contrib/gnu-sort/ChangeLog U src/contrib/gnu-sort/INSTALL U src/contrib/gnu-sort/NEWS U src/contrib/gnu-sort/README U src/contrib/gnu-sort/THANKS U src/contrib/gnu-sort/TODO U src/contrib/gnu-sort/lib/__fpending.c U src/contrib/gnu-sort/lib/__fpending.h U src/contrib/gnu-sort/lib/argmatch.c U src/contrib/gnu-sort/lib/argmatch.h U src/contrib/gnu-sort/lib/closeout.c U src/contrib/gnu-sort/lib/closeout.h U src/contrib/gnu-sort/lib/dup-safer.c U src/contrib/gnu-sort/lib/error.c U src/contrib/gnu-sort/lib/error.h U src/contrib/gnu-sort/lib/exit.h U src/contrib/gnu-sort/lib/exitfail.c U src/contrib/gnu-sort/lib/exitfail.h U src/contrib/gnu-sort/lib/fopen-safer.c U src/contrib/gnu-sort/lib/gettext.h C src/contrib/gnu-sort/lib/hard-locale.c U src/contrib/gnu-sort/lib/hard-locale.h U src/contrib/gnu-sort/lib/human.c U src/contrib/gnu-sort/lib/human.h U src/contrib/gnu-sort/lib/inttostr.c U src/contrib/gnu-sort/lib/inttostr.h U src/contrib/gnu-sort/lib/long-options.c U src/contrib/gnu-sort/lib/long-options.h U src/contrib/gnu-sort/lib/memcoll.c U src/contrib/gnu-sort/lib/memcoll.h U src/contrib/gnu-sort/lib/pathmax.h U src/contrib/gnu-sort/lib/physmem.c U src/contrib/gnu-sort/lib/physmem.h U src/contrib/gnu-sort/lib/posixver.c U src/contrib/gnu-sort/lib/posixver.h U src/contrib/gnu-sort/lib/quote.c U src/contrib/gnu-sort/lib/quote.h U src/contrib/gnu-sort/lib/quotearg.c U src/contrib/gnu-sort/lib/quotearg.h N src/contrib/gnu-sort/lib/stat-macros.h U src/contrib/gnu-sort/lib/stdio-safer.h U src/contrib/gnu-sort/lib/strnlen.c U src/contrib/gnu-sort/lib/timespec.h U src/contrib/gnu-sort/lib/umaxtostr.c U src/contrib/gnu-sort/lib/unistd-safer.h C src/contrib/gnu-sort/lib/version-etc.c U src/contrib/gnu-sort/lib/version-etc.h U src/contrib/gnu-sort/lib/xalloc.h U src/contrib/gnu-sort/lib/xmalloc.c U src/contrib/gnu-sort/lib/xmemcoll.c U src/contrib/gnu-sort/lib/xmemcoll.h U src/contrib/gnu-sort/lib/xstrtol.c U src/contrib/gnu-sort/lib/xstrtol.h U src/contrib/gnu-sort/lib/xstrtoul.c U src/contrib/gnu-sort/lib/xstrtoumax.c U src/contrib/gnu-sort/src/system.h C src/contrib/gnu-sort/src/sort.c 3 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/contrib/gnu-sort From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:46:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8A1416A4CE; Thu, 12 Aug 2004 05:46:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C68B243D2F; Thu, 12 Aug 2004 05:46:04 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5k4hk006114; Thu, 12 Aug 2004 05:46:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5k4WQ006113; Thu, 12 Aug 2004 05:46:04 GMT (envelope-from tjr) Message-Id: <200408120546.i7C5k4WQ006113@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 05:46:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/gnu-sort/lib hard-locale.c version-etc.c src/contrib/gnu-sort/src sort.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:46:05 -0000 tjr 2004-08-12 05:46:04 UTC FreeBSD src repository Modified files: contrib/gnu-sort/lib hard-locale.c version-etc.c contrib/gnu-sort/src sort.c Log: Merge local changes. Revision Changes Path 1.5 +9 -8 src/contrib/gnu-sort/lib/hard-locale.c 1.3 +1 -1 src/contrib/gnu-sort/lib/version-etc.c 1.4 +106 -162 src/contrib/gnu-sort/src/sort.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:59:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFF5616A4CE; Thu, 12 Aug 2004 05:59:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F3A843D31; Thu, 12 Aug 2004 05:59:33 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5xXcD006542; Thu, 12 Aug 2004 05:59:33 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5xXnM006541; Thu, 12 Aug 2004 05:59:33 GMT (envelope-from tjr) Message-Id: <200408120559.i7C5xXnM006541@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 05:59:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gnu-sort - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:59:33 -0000 tjr 2004-08-12 05:59:33 UTC FreeBSD src repository src/contrib/gnu-sort - Imported sources Update of /home/ncvs/src/contrib/gnu-sort In directory repoman.freebsd.org:/tmp/cvs-serv6520 Log Message: Import of GNU sort from coreutils CVS (trimmed) Status: Vendor Tag: FSF Release Tags: SORT_20040812 N src/contrib/gnu-sort/lib/xalloc-die.c No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:02:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFBAF16A4CE; Thu, 12 Aug 2004 06:02:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9023B43D4C; Thu, 12 Aug 2004 06:02:28 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C62Smn006686; Thu, 12 Aug 2004 06:02:28 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C62Srl006685; Thu, 12 Aug 2004 06:02:28 GMT (envelope-from tjr) Message-Id: <200408120602.i7C62Srl006685@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 06:02:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/sort Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:02:28 -0000 tjr 2004-08-12 06:02:28 UTC FreeBSD src repository Modified files: gnu/usr.bin/sort Makefile Log: Hook xalloc-die.c up to the build. Revision Changes Path 1.12 +1 -0 src/gnu/usr.bin/sort/Makefile From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:25:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B60516A4CE; Thu, 12 Aug 2004 06:25:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B2B043D55; Thu, 12 Aug 2004 06:25:06 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6P6IX007269; Thu, 12 Aug 2004 06:25:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6P67q007268; Thu, 12 Aug 2004 06:25:06 GMT (envelope-from ru) Message-Id: <200408120625.i7C6P67q007268@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Aug 2004 06:25:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:25:06 -0000 ru 2004-08-12 06:25:05 UTC FreeBSD src repository Modified files: . UPDATING Log: Spell check the 20040806 entry. Revision Changes Path 1.340 +1 -1 src/UPDATING From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:25:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31B0416A4D8; Thu, 12 Aug 2004 06:25:28 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F91C43D48; Thu, 12 Aug 2004 06:25:27 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7C6PMSi073352 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 12 Aug 2004 09:25:23 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7C6PP4V053224; Thu, 12 Aug 2004 09:25:25 +0300 (EEST) (envelope-from ru) Date: Thu, 12 Aug 2004 09:25:24 +0300 From: Ruslan Ermilov To: John-Mark Gurney Message-ID: <20040812062524.GC53094@ip.net.ua> References: <200408120000.i7C00FJb096051@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8X7/QrJGcKSMr1RN" Content-Disposition: inline In-Reply-To: <200408120000.i7C00FJb096051@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:25:28 -0000 --8X7/QrJGcKSMr1RN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 12, 2004 at 12:00:15AM +0000, John-Mark Gurney wrote: > jmg 2004-08-12 00:00:15 UTC >=20 > FreeBSD src repository >=20 > Modified files: > . UPDATING=20 > Log: > add comment about needing to upgrade loader.rc on i386 systems that have > problems loading modules... > =20 > Solution by: ru > =20 > Revision Changes Path > 1.339 +9 -0 src/UPDATING >=20 Thanks a bunch! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --8X7/QrJGcKSMr1RN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGw1UqRfpzJluFF4RAoJ6AKCVBm5mswtNFVdAP2Gh3a/gsOHGngCeI2vH WUHw3PJfDOKflSyYROV8Xtk= =Fa8w -----END PGP SIGNATURE----- --8X7/QrJGcKSMr1RN-- From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:33:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62C3E16A4CE; Thu, 12 Aug 2004 06:33:38 +0000 (GMT) Received: from robbins.dropbear.id.au (128.a.005.mel.iprimus.net.au [210.50.40.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80CE943D45; Thu, 12 Aug 2004 06:33:37 +0000 (GMT) (envelope-from tim@robbins.dropbear.id.au) Received: by robbins.dropbear.id.au (Postfix, from userid 1000) id 943DB420D; Thu, 12 Aug 2004 16:33:34 +1000 (EST) Date: Thu, 12 Aug 2004 16:33:34 +1000 From: Tim Robbins To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040812063334.GA79720@cat.robbins.dropbear.id.au> References: <200408120537.i7C5bkIs005791@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408120537.i7C5bkIs005791@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/contrib/gnu-sort - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:33:38 -0000 On Thu, Aug 12, 2004 at 05:37:46AM +0000, Tim J. Robbins wrote: > tjr 2004-08-12 05:37:46 UTC > > FreeBSD src repository > > src/contrib/gnu-sort - Imported sources > Update of /home/ncvs/src/contrib/gnu-sort > In directory repoman.freebsd.org:/tmp/cvs-serv5599 > > Log Message: > Import of GNU sort from coreutils CVS (trimmed) This brings in a few POSIX conformance fixes that change behaviour significantly enough that we would not want to make them after branching RELENG_5. From the ChangeLog file (excerpted): 2004-08-10 Paul Eggert * src/sort.c (die, xfopen, mergefps, first_same_file, merge): A null file arg means standard output. (main): "-o -" means to write to a file named "-", not to standard output. 2004-04-25 Paul Eggert Fix POSIX-conformance bug: "sort -k 3,3.5b" is supposed to skip leading blanks when computing the location of the field end; it is not supposed to skip trailing blanks. Solaris 8 "sort" does conform to POSIX. Also fix the documentation to clarify this and related issues. The only other significant user-visible change is this performance fix: 2004-05-13 Paul Eggert Improve performance of `sort -m' on large files, at the cost of making some contrived examples unsafe. POSIX allows this optimization. Performance problem reported by Jonathan Baker in . Tim From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:40:31 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 776B816A4CE; Thu, 12 Aug 2004 06:40:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56BD343D58; Thu, 12 Aug 2004 06:40:31 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6eVNN007841; Thu, 12 Aug 2004 06:40:31 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6eVpq007840; Thu, 12 Aug 2004 06:40:31 GMT (envelope-from tjr) Message-Id: <200408120640.i7C6eVpq007840@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 06:40:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/sort config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:40:31 -0000 tjr 2004-08-12 06:40:31 UTC FreeBSD src repository Modified files: gnu/usr.bin/sort config.h Log: Update version strings to better reflect reality. Revision Changes Path 1.8 +3 -3 src/gnu/usr.bin/sort/config.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:45:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 532D316A4CE; Thu, 12 Aug 2004 06:45:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3382B43D55; Thu, 12 Aug 2004 06:45:32 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6jW8c008038; Thu, 12 Aug 2004 06:45:32 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6jW7Z008037; Thu, 12 Aug 2004 06:45:32 GMT (envelope-from tjr) Message-Id: <200408120645.i7C6jW7Z008037@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 06:45:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/grep config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:45:32 -0000 tjr 2004-08-12 06:45:32 UTC FreeBSD src repository Modified files: gnu/usr.bin/grep config.h Log: Change version string to distinguish our modified version of GNU grep from the original. Revision Changes Path 1.9 +1 -1 src/gnu/usr.bin/grep/config.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:50:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79FAD16A4CE; Thu, 12 Aug 2004 06:50:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59C1043D4C; Thu, 12 Aug 2004 06:50:29 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6oTNc008316; Thu, 12 Aug 2004 06:50:29 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6oTF3008315; Thu, 12 Aug 2004 06:50:29 GMT (envelope-from imp) Message-Id: <200408120650.i7C6oTF3008315@repoman.freebsd.org> From: Warner Losh Date: Thu, 12 Aug 2004 06:50:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/dev/pccbb pccbb.c pccbb_isa.c pccbb_pci.c pccbbvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:50:29 -0000 imp 2004-08-12 06:50:29 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/pccbb pccbb.c pccbbvar.h Added files: sys/dev/pccbb pccbb_isa.c pccbb_pci.c Log: Move towards isa attachment for pccbb. This is a work in progress, but works well with the pci attachment. Revision Changes Path 1.938 +2 -0 src/sys/conf/files 1.117 +135 -688 src/sys/dev/pccbb/pccbb.c 1.1 +221 -0 src/sys/dev/pccbb/pccbb_isa.c (new) 1.1 +655 -0 src/sys/dev/pccbb/pccbb_pci.c (new) 1.21 +75 -2 src/sys/dev/pccbb/pccbbvar.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 06:50:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAD3116A4CE; Thu, 12 Aug 2004 06:50:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB35043D46; Thu, 12 Aug 2004 06:50:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6oitQ008412; Thu, 12 Aug 2004 06:50:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6oiDk008411; Thu, 12 Aug 2004 06:50:44 GMT (envelope-from ru) Message-Id: <200408120650.i7C6oiDk008411@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Aug 2004 06:50:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:50:45 -0000 ru 2004-08-12 06:50:44 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Join the Russian committers, and only use one true country of birth. Sorry for the churn. ;) Revision Changes Path 1.137 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Thu Aug 12 07:56:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B258816A4CE; Thu, 12 Aug 2004 07:56:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9514843D54; Thu, 12 Aug 2004 07:56:33 +0000 (GMT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7uXg0011744; Thu, 12 Aug 2004 07:56:33 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7uXOQ011743; Thu, 12 Aug 2004 07:56:33 GMT (envelope-from jeff) Message-Id: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 12 Aug 2004 07:56:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:56:33 -0000 jeff 2004-08-12 07:56:33 UTC FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Introduce a new flag KEF_HOLD that prevents sched_add() from doing a migration. Use this in sched_prio() and sched_switch() to stop us from migrating threads that are in short term sleeps or are runnable. These extra migrations were added in the patches to support KSE. - Only set NEEDRESCHED if the thread we're adding in sched_add() is a lower priority and is being placed on the current queue. - Fix some minor whitespace problems. Revision Changes Path 1.121 +19 -7 src/sys/kern/sched_ule.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 07:58:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FB1D16A4CE; Thu, 12 Aug 2004 07:58:18 +0000 (GMT) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAB7C43D41; Thu, 12 Aug 2004 07:58:17 +0000 (GMT) (envelope-from jroberson@chesapeake.net) Received: from mail.chesapeake.net (localhost [127.0.0.1]) by mail.chesapeake.net (8.12.10/8.12.10) with ESMTP id i7C7wHLu036126; Thu, 12 Aug 2004 03:58:17 -0400 (EDT) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost)i7C7wHUs036120; Thu, 12 Aug 2004 03:58:17 -0400 (EDT) (envelope-from jroberson@chesapeake.net) X-Authentication-Warning: mail.chesapeake.net: jroberson owned process doing -bs Date: Thu, 12 Aug 2004 03:58:16 -0400 (EDT) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> Message-ID: <20040812035656.S7322@mail.chesapeake.net> References: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:58:18 -0000 On Thu, 12 Aug 2004, Jeff Roberson wrote: > jeff 2004-08-12 07:56:33 UTC > > FreeBSD src repository > > Modified files: > sys/kern sched_ule.c > Log: > - Introduce a new flag KEF_HOLD that prevents sched_add() from doing a > migration. Use this in sched_prio() and sched_switch() to stop us from > migrating threads that are in short term sleeps or are runnable. These > extra migrations were added in the patches to support KSE. This patch brings my 'super-smack' performance in ULE above that of 4BSD. worldstone seems unaffected. I would be interested in hearing about what other performance changes there are as a result of this patch. I would also be interested in hearing about cases where ULE is slower than 4BSD. > - Only set NEEDRESCHED if the thread we're adding in sched_add() is a > lower priority and is being placed on the current queue. > - Fix some minor whitespace problems. > > Revision Changes Path > 1.121 +19 -7 src/sys/kern/sched_ule.c > From owner-cvs-src@FreeBSD.ORG Thu Aug 12 08:20:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71ADF16A4CE; Thu, 12 Aug 2004 08:20:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B0943D53; Thu, 12 Aug 2004 08:20:37 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8KbX5012430; Thu, 12 Aug 2004 08:20:37 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8Kb8c012429; Thu, 12 Aug 2004 08:20:37 GMT (envelope-from sos) Message-Id: <200408120820.i7C8Kb8c012429@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 12 Aug 2004 08:20:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c ata-chipset.c ata-dma.c ata-pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:20:37 -0000 sos 2004-08-12 08:20:37 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-chipset.c ata-dma.c ata-pci.c Log: Change the order of ata_dmainit/ata_allocate in preparation of supporting new chipsets where this is needed. Revision Changes Path 1.221 +14 -17 src/sys/dev/ata/ata-all.c 1.79 +2 -4 src/sys/dev/ata/ata-chipset.c 1.128 +1 -1 src/sys/dev/ata/ata-dma.c 1.87 +40 -26 src/sys/dev/ata/ata-pci.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 08:21:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCB5916A4CF for ; Thu, 12 Aug 2004 08:21:39 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6B8843D46 for ; Thu, 12 Aug 2004 08:21:38 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 97193 invoked from network); 12 Aug 2004 08:15:28 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 12 Aug 2004 08:15:28 -0000 Message-ID: <411B2892.B39C83E0@freebsd.org> Date: Thu, 12 Aug 2004 10:21:38 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Jeff Roberson References: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> <20040812035656.S7322@mail.chesapeake.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:21:40 -0000 Jeff Roberson wrote: > > On Thu, 12 Aug 2004, Jeff Roberson wrote: > > > jeff 2004-08-12 07:56:33 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern sched_ule.c > > Log: > > - Introduce a new flag KEF_HOLD that prevents sched_add() from doing a > > migration. Use this in sched_prio() and sched_switch() to stop us from > > migrating threads that are in short term sleeps or are runnable. These > > extra migrations were added in the patches to support KSE. > > This patch brings my 'super-smack' performance in ULE above that of 4BSD. > worldstone seems unaffected. I would be interested in hearing about what > other performance changes there are as a result of this patch. I would > also be interested in hearing about cases where ULE is slower than 4BSD. See -current list of yesterday. Martin Blapp was reporting problems with some 500 sendmail/milter etc. processes where it get slower and slower compared to 4BSD. -- Andre From owner-cvs-src@FreeBSD.ORG Thu Aug 12 08:37:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B08ED16A4CE; Thu, 12 Aug 2004 08:37:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9461843D3F; Thu, 12 Aug 2004 08:37:42 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8bgRl013291; Thu, 12 Aug 2004 08:37:42 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8bgbO013290; Thu, 12 Aug 2004 08:37:42 GMT (envelope-from andre) Message-Id: <200408120837.i7C8bgbO013290@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 12 Aug 2004 08:37:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:37:42 -0000 andre 2004-08-12 08:37:42 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c Log: Fix two cases of incorrect IPQ_UNLOCK'ing in the merged ip_reass() function. The first one was going to 'dropfrag', which unlocks the IPQ, before the lock was aquired; The second one doing a unlock and then a 'goto dropfrag' which led to a double-unlock. Tripped over by: des Revision Changes Path 1.281 +2 -2 src/sys/netinet/ip_input.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 08:44:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24AD116A4CE; Thu, 12 Aug 2004 08:44:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DDEE43D31; Thu, 12 Aug 2004 08:44:53 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8iqYt013923; Thu, 12 Aug 2004 08:44:52 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8iqx5013922; Thu, 12 Aug 2004 08:44:52 GMT (envelope-from den) Message-Id: <200408120844.i7C8iqx5013922@repoman.freebsd.org> From: Denis Peplin Date: Thu, 12 Aug 2004 08:44:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ru_RU.KOI8-R/early-adopter article.sgml src/release/doc/ru_RU.KOI8-R/hardware/alphaarticle.sgml src/release/doc/ru_RU.KOI8-R/hardware/ia64article.sgml ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:44:53 -0000 den 2004-08-12 08:44:52 UTC FreeBSD src repository (doc committer) Modified files: release/doc/ru_RU.KOI8-R/early-adopter article.sgml release/doc/ru_RU.KOI8-R/hardware/alpha article.sgml release/doc/ru_RU.KOI8-R/hardware/amd64 article.sgml release/doc/ru_RU.KOI8-R/hardware/i386 article.sgml release/doc/ru_RU.KOI8-R/hardware/ia64 article.sgml release/doc/ru_RU.KOI8-R/hardware/pc98 article.sgml release/doc/ru_RU.KOI8-R/hardware/sparc64 article.sgml release/doc/ru_RU.KOI8-R/installation/alpha article.sgml release/doc/ru_RU.KOI8-R/installation/amd64 article.sgml release/doc/ru_RU.KOI8-R/installation/i386 article.sgml release/doc/ru_RU.KOI8-R/installation/ia64 article.sgml release/doc/ru_RU.KOI8-R/installation/pc98 article.sgml release/doc/ru_RU.KOI8-R/installation/sparc64 article.sgml release/doc/ru_RU.KOI8-R/readme article.sgml release/doc/ru_RU.KOI8-R/relnotes/alpha article.sgml release/doc/ru_RU.KOI8-R/relnotes/amd64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/i386 article.sgml release/doc/ru_RU.KOI8-R/relnotes/ia64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/pc98 article.sgml release/doc/ru_RU.KOI8-R/relnotes/sparc64 article.sgml Log: Change RU for articles.ent and books.ent back to EN for consistency This modification was not really needed. Noticed by: hrs Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/early-adopter/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/readme/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml From owner-cvs-src@FreeBSD.ORG Thu Aug 12 09:33:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FBFE16A4CE; Thu, 12 Aug 2004 09:33:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44A9743D2F; Thu, 12 Aug 2004 09:33:47 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9XlGh015622; Thu, 12 Aug 2004 09:33:47 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9Xl52015621; Thu, 12 Aug 2004 09:33:47 GMT (envelope-from tjr) Message-Id: <200408120933.i7C9Xl52015621@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 09:33:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile _ctype.h ctype.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:33:47 -0000 tjr 2004-08-12 09:33:47 UTC FreeBSD src repository Modified files: include Makefile _ctype.h ctype.h Log: Move some internal macros and inlines from ctype.h to a new file, _ctype.h, which has been repo-copied from ctype.h. This will allow us to remove namespace pollution from and to make wcwidth() an inline function without introducing more pollution. Revision Changes Path 1.220 +2 -1 src/include/Makefile 1.28 +6 -88 src/include/_ctype.h 1.28 +1 -89 src/include/ctype.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 10:29:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DE8416A4CE; Thu, 12 Aug 2004 10:29:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0269E43D39; Thu, 12 Aug 2004 10:29:15 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CATEoN017325; Thu, 12 Aug 2004 10:29:14 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CATEob017324; Thu, 12 Aug 2004 10:29:14 GMT (envelope-from tjr) Message-Id: <200408121029.i7CATEob017324@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 10:29:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include wctype.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 10:29:15 -0000 tjr 2004-08-12 10:29:14 UTC FreeBSD src repository Modified files: include wctype.h Log: Include _ctype.h instead of ctype.h to avoid namespace pollution. Revision Changes Path 1.13 +1 -1 src/include/wctype.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 11:34:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 270CD16A4CE; Thu, 12 Aug 2004 11:34:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 093D543D31; Thu, 12 Aug 2004 11:34:35 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CBYYOx019177; Thu, 12 Aug 2004 11:34:34 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CBYYpa019176; Thu, 12 Aug 2004 11:34:34 GMT (envelope-from tjr) Message-Id: <200408121134.i7CBYYpa019176@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 11:34:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/lam lam.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:34:35 -0000 tjr 2004-08-12 11:34:34 UTC FreeBSD src repository Modified files: usr.bin/lam lam.1 Log: Document incorrect handling of multibyte characters. Revision Changes Path 1.13 +5 -1 src/usr.bin/lam/lam.1 From owner-cvs-src@FreeBSD.ORG Thu Aug 12 05:06:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C4DA16A4CE; Thu, 12 Aug 2004 05:06:21 +0000 (GMT) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F8B43D46; Thu, 12 Aug 2004 05:06:21 +0000 (GMT) (envelope-from bmah@freebsd.org) Received: from tomcat.kitchenlab.org (adsl-64-142-31-107.sonic.net [64.142.31.107]) by b.mail.sonic.net (8.12.11/8.12.11) with ESMTP id i7C54icH021924 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 11 Aug 2004 22:04:44 -0700 Received: from tomcat.kitchenlab.org (localhost.kitchenlab.org [127.0.0.1]) by tomcat.kitchenlab.org (8.13.1/8.13.1) with ESMTP id i7C54iYK000966; Wed, 11 Aug 2004 22:04:44 -0700 (PDT) (envelope-from bmah@freebsd.org) Received: (from bmah@localhost) by tomcat.kitchenlab.org (8.13.1/8.13.1/Submit) id i7C54hEd000965; Wed, 11 Aug 2004 22:04:43 -0700 (PDT) (envelope-from bmah@freebsd.org) X-Authentication-Warning: tomcat.kitchenlab.org: bmah set sender to bmah@freebsd.org using -f From: "Bruce A. Mah" To: Ken Smith In-Reply-To: <20040812030913.GD27338@electra.cse.Buffalo.EDU> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-1eF8rEa6/BAC98Hh2EKs" Message-Id: <1092287083.796.29.camel@tomcat.kitchenlab.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 11 Aug 2004 22:04:43 -0700 X-Mailman-Approved-At: Thu, 12 Aug 2004 11:45:08 +0000 cc: "Bruce A. Mah" cc: Doug Barton cc: re@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:06:21 -0000 --=-1eF8rEa6/BAC98Hh2EKs Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2004-08-11 at 20:09, Ken Smith wrote: > On Thu, Aug 12, 2004 at 03:58:58AM +0200, Oliver Eikemeier wrote: >=20 > > Ok, I'll write a patch then. >=20 > [ I said some of this to Oliver privately but it's probably worth > saying louder... ] >=20 > First thank you, the effort is appreciated. >=20 > Second some people had asked that this be backed out. It sounds like > Oliver is agreeable to adding -c so I'm OK with his previous commit > remaining in RELENG_4 as long as adding -c doesn't take too long. > Despite some users who probably shouldn't be tracking RELENG_4, it > *is* the -stable *development* branch. Paranoid users should at this > point be tracking RELENG_4_10 instead. Having -c disappear from > RELENG_4 for a brief time is OK as long as it re-appears in a reasonable > amount of time (and way before we start talking 4.11-RELEASE). I'm not sure if I want to be replying to this thread, but I might have a thing or two to say about this subject. As the original author of pkg_version (the Perl one), I wish I had never added the -c option. Of the users I have talked to who used this option, the majority used it wrongly (as a package updating script). In hindsight, this was basically a foot-shooting device. :-( If anyone had asked me about this before jumping all over eik@, I would have recommended that we lose the option as a service to our users.=20 Sorry, but that's the way I feel. In any case, thanks to eik@ for doing the work, and thanks to everyone else who believed they were doing The Right Thing (TM). Peace, Bruce. --=-1eF8rEa6/BAC98Hh2EKs Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBGvpr2MoxcVugUsMRAl1NAJ9BDvRFyq5Cfqa4lcA9asntkWhN3gCdHc4o 1IG1lixsA4g2IxTarv1zJfU= =Gtf+ -----END PGP SIGNATURE----- --=-1eF8rEa6/BAC98Hh2EKs-- From owner-cvs-src@FreeBSD.ORG Thu Aug 12 11:49:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D266C16A4CE; Thu, 12 Aug 2004 11:49:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B26A243D2F; Thu, 12 Aug 2004 11:49:55 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CBntOU019597; Thu, 12 Aug 2004 11:49:55 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CBntEm019596; Thu, 12 Aug 2004 11:49:55 GMT (envelope-from harti) Message-Id: <200408121149.i7CBntEm019596@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 11:49:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:49:56 -0000 harti 2004-08-12 11:49:55 UTC FreeBSD src repository Modified files: usr.bin/make Makefile main.c nonints.h var.c Log: Put variable assignments on .MAKEFLAGS and .MFLAGS targets into the .MAKEFLAGS variable so that these are also passed to sub-makes. This makes the handling of variables in the command environment more consistent. PR: bin/68853 Submitted by: Martin Kamerhofer Revision Changes Path 1.33 +1 -1 src/usr.bin/make/Makefile 1.91 +7 -6 src/usr.bin/make/main.c 1.23 +1 -1 src/usr.bin/make/nonints.h 1.48 +4 -44 src/usr.bin/make/var.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 11:51:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5A4D16A4CE; Thu, 12 Aug 2004 11:51:28 +0000 (GMT) Received: from mx1.imp.ch (mx1.imp.ch [157.161.9.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F74443D54; Thu, 12 Aug 2004 11:51:28 +0000 (GMT) (envelope-from mb@imp.ch) Received: from mx1.imp.ch (mx.imp.ch [157.161.9.64]) by mx1.imp.ch (8.12.11/8.12.11) with ESMTP id i7CBpL1f050883; Thu, 12 Aug 2004 13:51:22 +0200 (CEST) (envelope-from mb@imp.ch) Received: from mx1.imp.ch (localhost [127.0.0.1]) by mx1.imp.ch (8.12.11/8.12.11/Submit) with ESMTP id i7CBpJVu050842; Thu, 12 Aug 2004 13:51:19 +0200 (CEST) (envelope-from mb@imp.ch) Received: (from clamav@localhost) by mx1.imp.ch (8.12.11/8.12.11/Submit) id i7CBpJW0050830; Thu, 12 Aug 2004 13:51:19 +0200 (CEST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by ns1.imp.ch (MIMEDefang) with ESMTP id i7CBpEpq029201; Thu, 12 Aug 2004 13:51:18 +0200 (CEST) Date: Thu, 12 Aug 2004 13:51:14 +0200 (CEST) From: Martin Blapp To: Jeff Roberson In-Reply-To: <20040812035656.S7322@mail.chesapeake.net> Message-ID: <20040812135054.D31181@cvs.imp.ch> References: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> <20040812035656.S7322@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Resent: Yes X-Spam-Checksum: 43131200bccd5a68d3ab8373770abd90 X-Virus-Message-Status: No X-Virus-Status: No, scantime="0.0013 seconds" X-Spam-Status: No, hits=-4.897 required=5 scantime="1.4241 seconds" tests=BAYES_00, FORGED_RCVD_HELO X-Scanned-By: MIMEDefang 2.44 cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:51:28 -0000 Hi, > This patch brings my 'super-smack' performance in ULE above that of 4BSD. > worldstone seems unaffected. I would be interested in hearing about what > other performance changes there are as a result of this patch. I would > also be interested in hearing about cases where ULE is slower than 4BSD. I'll redo my tests then. Martin From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:12:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E18016A4CE; Thu, 12 Aug 2004 12:12:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 448A043D1F; Thu, 12 Aug 2004 12:12:13 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCCDqH020281; Thu, 12 Aug 2004 12:12:13 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCCDjx020280; Thu, 12 Aug 2004 12:12:13 GMT (envelope-from deischen) Message-Id: <200408121212.i7CCCDjx020280@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 12 Aug 2004 12:12:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_create.c thr_exit.c thr_init.c thr_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:12:13 -0000 deischen 2004-08-12 12:12:13 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_create.c thr_exit.c thr_init.c thr_kern.c Log: As long as we have a knob to force system scope threads, why not have a knob to force process scope threads. If the environment variable LIBPTHREAD_PROCESS_SCOPE is set, force all threads to be process scope threads regardless of how the application creates them. If LIBPTHREAD_SYSTEM_SCOPE is set (forcing system scope threads), it overrides LIBPTHREAD_PROCESS_SCOPE. $ # To force system scope threads $ LIBPTHREAD_SYSTEM_SCOPE=anything threaded_app $ # To force process scope threads $ LIBPTHREAD_PROCESS_SCOPE=anything threaded_app Revision Changes Path 1.57 +4 -1 src/lib/libpthread/thread/thr_create.c 1.38 +2 -2 src/lib/libpthread/thread/thr_exit.c 1.65 +3 -1 src/lib/libpthread/thread/thr_init.c 1.111 +4 -4 src/lib/libpthread/thread/thr_kern.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:19:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5233E16A4CE; Thu, 12 Aug 2004 12:19:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB6143D45; Thu, 12 Aug 2004 12:19:11 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCJBAL020633; Thu, 12 Aug 2004 12:19:11 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCJB0B020632; Thu, 12 Aug 2004 12:19:11 GMT (envelope-from tjr) Message-Id: <200408121219.i7CCJB0B020632@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 12:19:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include _ctype.h wchar.h src/lib/libc/locale wcwidth.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:19:11 -0000 tjr 2004-08-12 12:19:11 UTC FreeBSD src repository Modified files: include _ctype.h wchar.h lib/libc/locale wcwidth.c Log: Implement wcwidth() as an inline function. Revision Changes Path 1.29 +16 -0 src/include/_ctype.h 1.45 +2 -0 src/include/wchar.h 1.7 +2 -11 src/lib/libc/locale/wcwidth.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:31:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CC5716A4CE; Thu, 12 Aug 2004 12:31:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0195043D4C; Thu, 12 Aug 2004 12:31:44 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCVhSJ021080; Thu, 12 Aug 2004 12:31:43 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCVhLd021079; Thu, 12 Aug 2004 12:31:43 GMT (envelope-from harti) Message-Id: <200408121231.i7CCVhLd021079@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 12:31:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/atm/atmconfig Makefile atm_oid.list atmconfig.h atmconfig.help atmconfig_device.c atmconfig_device.h atmconfig_device.help main.c private.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:31:44 -0000 harti 2004-08-12 12:31:43 UTC FreeBSD src repository Modified files: sbin/atm/atmconfig Makefile atmconfig.h atmconfig.help main.c private.h Added files: sbin/atm/atmconfig atm_oid.list atmconfig_device.c atmconfig_device.h atmconfig_device.help Log: Add support for the examination and modification of the devices. This is implemented through SNMP and requires the ilmi daemon to run on the system. To prevent bloat in rescue the atmconfig for rescue is compiled without this stuff. Revision Changes Path 1.6 +26 -2 src/sbin/atm/atmconfig/Makefile 1.1 +20 -0 src/sbin/atm/atmconfig/atm_oid.list (new) 1.2 +10 -4 src/sbin/atm/atmconfig/atmconfig.h 1.5 +30 -0 src/sbin/atm/atmconfig/atmconfig.help 1.1 +444 -0 src/sbin/atm/atmconfig/atmconfig_device.c (new) 1.1 +75 -0 src/sbin/atm/atmconfig/atmconfig_device.h (new) 1.1 +62 -0 src/sbin/atm/atmconfig/atmconfig_device.help (new) 1.4 +147 -2 src/sbin/atm/atmconfig/main.c 1.3 +3 -0 src/sbin/atm/atmconfig/private.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:32:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A38016A4CE; Thu, 12 Aug 2004 12:32:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BDB043D31; Thu, 12 Aug 2004 12:32:14 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCWEjC021118; Thu, 12 Aug 2004 12:32:14 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCWEKn021117; Thu, 12 Aug 2004 12:32:14 GMT (envelope-from tjr) Message-Id: <200408121232.i7CCWEKn021117@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 12:32:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale wcwidth.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:32:14 -0000 tjr 2004-08-12 12:32:14 UTC FreeBSD src repository Modified files: lib/libc/locale wcwidth.3 Log: Fix example. Revision Changes Path 1.4 +5 -4 src/lib/libc/locale/wcwidth.3 From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:36:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 973D416A4CE; Thu, 12 Aug 2004 12:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7711F43D46; Thu, 12 Aug 2004 12:36:04 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCa4QP021339; Thu, 12 Aug 2004 12:36:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCa4br021338; Thu, 12 Aug 2004 12:36:04 GMT (envelope-from tjr) Message-Id: <200408121236.i7CCa4br021338@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 12:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:36:04 -0000 tjr 2004-08-12 12:36:04 UTC FreeBSD src repository Modified files: include Makefile Log: Sort in dictionary order. Suggested by: ru Revision Changes Path 1.221 +1 -1 src/include/Makefile From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:42:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D17716A4D0; Thu, 12 Aug 2004 12:42:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D54B43D1D; Thu, 12 Aug 2004 12:42:03 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCg34T021633; Thu, 12 Aug 2004 12:42:03 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCg3Wc021632; Thu, 12 Aug 2004 12:42:03 GMT (envelope-from wilko) Message-Id: <200408121242.i7CCg3Wc021632@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 12 Aug 2004 12:42:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:42:03 -0000 wilko 2004-08-12 12:42:03 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: clarify that both ECC and non-ECC DIMMS work on 164SX. Suggested by: ru Revision Changes Path 1.69 +4 -2 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Thu Aug 12 12:45:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81E8D16A4CE; Thu, 12 Aug 2004 12:45:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6251F43D2F; Thu, 12 Aug 2004 12:45:56 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCjusT021783; Thu, 12 Aug 2004 12:45:56 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCjuSR021782; Thu, 12 Aug 2004 12:45:56 GMT (envelope-from wilko) Message-Id: <200408121245.i7CCjuSR021782@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 12 Aug 2004 12:45:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:45:56 -0000 wilko 2004-08-12 12:45:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Clarify that both ECC and non-ECC DIMMS work on 164SX. Suggested by: ru Revision Changes Path 1.13.2.43 +4 -2 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-src@FreeBSD.ORG Thu Aug 12 13:15:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9B6516A4DE; Thu, 12 Aug 2004 13:15:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 867FC43D46; Thu, 12 Aug 2004 13:15:52 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDFq85023389; Thu, 12 Aug 2004 13:15:52 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDFqBn023388; Thu, 12 Aug 2004 13:15:52 GMT (envelope-from pjd) Message-Id: <200408121315.i7CDFqBn023388@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Thu, 12 Aug 2004 13:15:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/geom/core Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:15:53 -0000 pjd 2004-08-12 13:15:52 UTC FreeBSD src repository Modified files: sbin/geom/core Makefile Log: The geom(8) utility needs dynamic linker functionality to work, so it can't be staticaly linked. This fixes problems on systems compiled with NO_DYNAMICROOT. Revision Changes Path 1.9 +2 -0 src/sbin/geom/core/Makefile From owner-cvs-src@FreeBSD.ORG Thu Aug 12 13:46:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECD6D16A4CE; Thu, 12 Aug 2004 13:46:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E027643D1F; Thu, 12 Aug 2004 13:46:22 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDkMlX024204; Thu, 12 Aug 2004 13:46:22 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDkM8M024203; Thu, 12 Aug 2004 13:46:22 GMT (envelope-from mlaier) Message-Id: <200408121346.i7CDkM8M024203@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 13:46:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENBSD Subject: cvs commit: src/sys/contrib/pf - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:46:23 -0000 mlaier 2004-08-12 13:46:22 UTC FreeBSD src repository src/sys/contrib/pf - Imported sources Update of /home/ncvs/src/sys/contrib/pf In directory repoman.freebsd.org:/tmp/cvs-serv24103 Log Message: Import a couple of fixes from OpenBSD-current, which did not make -stable in OpenBSD for various reasons. Discussed with: yongari Status: Vendor Tag: OPENBSD Release Tags: pf_openbsd_3_5_003 U src/sys/contrib/pf/net/if_pflog.c U src/sys/contrib/pf/net/if_pflog.h U src/sys/contrib/pf/net/if_pfsync.c U src/sys/contrib/pf/net/if_pfsync.h C src/sys/contrib/pf/net/pf.c C src/sys/contrib/pf/net/pf_if.c U src/sys/contrib/pf/net/pf_ioctl.c C src/sys/contrib/pf/net/pf_norm.c U src/sys/contrib/pf/net/pf_osfp.c U src/sys/contrib/pf/net/pf_table.c C src/sys/contrib/pf/net/pfvar.h U src/sys/contrib/pf/netinet/in4_cksum.c 4 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENBSD:yesterday -jOPENBSD src/sys/contrib/pf From owner-cvs-src@FreeBSD.ORG Thu Aug 12 13:51:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A739216A4CE for ; Thu, 12 Aug 2004 13:51:01 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5349643D4C for ; Thu, 12 Aug 2004 13:51:01 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 29518 invoked from network); 12 Aug 2004 13:51:01 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 12 Aug 2004 13:51:00 -0000 Received: from [10.50.41.91] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7CDop22099923; Thu, 12 Aug 2004 09:50:57 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Jeff Roberson Date: Thu, 12 Aug 2004 09:50:08 -0400 User-Agent: KMail/1.6.2 References: <200408100752.i7A7qMYI000506@repoman.freebsd.org> <200408100918.45387.jhb@FreeBSD.org> In-Reply-To: <200408100918.45387.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408120950.08724.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:51:01 -0000 On Tuesday 10 August 2004 09:18 am, John Baldwin wrote: > On Tuesday 10 August 2004 03:52 am, Jeff Roberson wrote: > > jeff 2004-08-10 07:52:22 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern sched_ule.c > > Log: > > - Use a new flag, KEF_XFERABLE, to record with certainty that this kse > > had contributed to the transferable load count. This prevents any > > potential problems with sched_pin() being used around calls to > > setrunqueue(). - Change the sched_add() load balancing algorithm to try > > to migrate on wakeup. This attempts to place threads that communicate > > with each other on the same CPU. > > - Don't clear the idle counts in kseq_transfer(), let the cpus do that > > when they call sched_add() from kseq_assign(). > > - Correct a few out of date comments. > > - Make sure the ke_cpu field is correct when we preempt. > > - Call kseq_assign() from sched_clock() to catch any assignments that > > were done without IPI. Presently all assignments are done with an IPI, > > but I'm trying a patch that limits that. > > - Don't migrate a thread if it is still runnable in sched_add(). > > Previously, this could only happen for KSE threads, but due to changes to > > sched_switch() all threads went through this path. > > - Remove some code that was added with preemption but is not > > necessary. > > Couple of comments: > > 1) TDF_NEEDRESCHED is still needed as that is what manages user-level > preemptions. Kernel preemption does not normally preempt threads at > user-level priorities (see the code in maybe_preempt() for a comment with > more detailed info). > > 2) Can a thread bound to CPU B ever be put on the runqueue via > setrunqueue() by a thread on CPU A? If so, you need to keep the > SMP-specific migration check before the call to maybe_preempt() so that you > don't end up running the new thread on CPU A even though it is supposed to > run on CPU B. I'm pretty sure 2) can happen during say, a sleepq_broadcast() or sleepq_signal() operation. Also for turnstile wakeups which can wakeup arbitrary threads on arbitrary CPUs. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Thu Aug 12 13:54:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AECF416A4CE; Thu, 12 Aug 2004 13:54:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CFE543D5C; Thu, 12 Aug 2004 13:54:50 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDsoIq024499; Thu, 12 Aug 2004 13:54:50 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDsom7024498; Thu, 12 Aug 2004 13:54:50 GMT (envelope-from mlaier) Message-Id: <200408121354.i7CDsom7024498@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 13:54:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net pf_if.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:54:50 -0000 mlaier 2004-08-12 13:54:50 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf_if.c Log: Loopback fix from Henning Brauer: skip over interface addresses without IFA_ROUTE, fixes some issue with pppd PR: misc/69954 Revision Changes Path 1.4 +4 -0 src/sys/contrib/pf/net/pf_if.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 13:59:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 810F516A4CE; Thu, 12 Aug 2004 13:59:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C7F743D1D; Thu, 12 Aug 2004 13:59:44 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDxiIa024667; Thu, 12 Aug 2004 13:59:44 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDxiHD024666; Thu, 12 Aug 2004 13:59:44 GMT (envelope-from mlaier) Message-Id: <200408121359.i7CDxiHD024666@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 13:59:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net pf.c pf_norm.c pfvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:59:44 -0000 mlaier 2004-08-12 13:59:44 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf.c pf_norm.c pfvar.h Log: Loopback fix from Daniel Hartmeier: pf_cksum_fixup() was called without last argument from normalization, also fixup checksum when random-id modifies ip_id. This would previously lead to incorrect checksums for packets modified by scrub random-id. (Originally) Submitted by: yongari Revision Changes Path 1.18 +1 -2 src/sys/contrib/pf/net/pf.c 1.9 +9 -5 src/sys/contrib/pf/net/pf_norm.c 1.8 +3 -0 src/sys/contrib/pf/net/pfvar.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 14:10:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E395F16A4CE; Thu, 12 Aug 2004 14:10:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D65AD43D31; Thu, 12 Aug 2004 14:10:08 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEA8As025023; Thu, 12 Aug 2004 14:10:08 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEA8VG025022; Thu, 12 Aug 2004 14:10:08 GMT (envelope-from mlaier) Message-Id: <200408121410.i7CEA8VG025022@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 14:10:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENBSD Subject: cvs commit: src/sys/contrib/pf - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:10:09 -0000 mlaier 2004-08-12 14:10:08 UTC FreeBSD src repository src/sys/contrib/pf - Imported sources Update of /home/ncvs/src/sys/contrib/pf In directory repoman.freebsd.org:/tmp/cvs-serv24980 Log Message: Import a fix from the OpenBSD-stable branch, that slipped by my previous import. Sorry. Status: Vendor Tag: OPENBSD Release Tags: pf_openbsd_3_5_004 U src/sys/contrib/pf/net/if_pflog.c U src/sys/contrib/pf/net/if_pflog.h U src/sys/contrib/pf/net/if_pfsync.c U src/sys/contrib/pf/net/if_pfsync.h U src/sys/contrib/pf/net/pf.c U src/sys/contrib/pf/net/pf_if.c C src/sys/contrib/pf/net/pf_ioctl.c U src/sys/contrib/pf/net/pf_norm.c U src/sys/contrib/pf/net/pf_osfp.c U src/sys/contrib/pf/net/pf_table.c U src/sys/contrib/pf/net/pfvar.h U src/sys/contrib/pf/netinet/in4_cksum.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENBSD:yesterday -jOPENBSD src/sys/contrib/pf From owner-cvs-src@FreeBSD.ORG Thu Aug 12 14:15:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CCA16A4CF; Thu, 12 Aug 2004 14:15:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBF4643D5C; Thu, 12 Aug 2004 14:15:42 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEFggG025313; Thu, 12 Aug 2004 14:15:42 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEFgac025312; Thu, 12 Aug 2004 14:15:42 GMT (envelope-from mlaier) Message-Id: <200408121415.i7CEFgac025312@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 14:15:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net pf_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:15:43 -0000 mlaier 2004-08-12 14:15:42 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf_ioctl.c Log: Loopback fix from Mathieu Sauve-Frankel: Add missing check for NULL in DIOCCHANGERULE. This prevents a crash in certain rare cases. Revision Changes Path 1.12 +3 -2 src/sys/contrib/pf/net/pf_ioctl.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 14:22:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9126516A4CE; Thu, 12 Aug 2004 14:22:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D77743D49; Thu, 12 Aug 2004 14:22:00 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEM0wu025645; Thu, 12 Aug 2004 14:22:00 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEM0cu025644; Thu, 12 Aug 2004 14:22:00 GMT (envelope-from harti) Message-Id: <200408121422.i7CEM0cu025644@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 14:22:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/atm ng_ccatm.hsrc/sys/netgraph/atm/ccatm ng_ccatm.c ng_ccatm_cust.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:22:00 -0000 harti 2004-08-12 14:22:00 UTC FreeBSD src repository Added files: sys/netgraph/atm ng_ccatm.h sys/netgraph/atm/ccatm ng_ccatm.c ng_ccatm_cust.h Log: This is the netgraph node framework for the user side call control node for ATM. This node implements the API to the signalling services. Revision Changes Path 1.1 +1198 -0 src/sys/netgraph/atm/ccatm/ng_ccatm.c (new) 1.1 +54 -0 src/sys/netgraph/atm/ccatm/ng_ccatm_cust.h (new) 1.1 +170 -0 src/sys/netgraph/atm/ng_ccatm.h (new) From owner-cvs-src@FreeBSD.ORG Thu Aug 12 14:58:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4833116A4CE; Thu, 12 Aug 2004 14:58:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24D1343D1F; Thu, 12 Aug 2004 14:58:47 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEwl7e027260; Thu, 12 Aug 2004 14:58:47 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEwlYu027259; Thu, 12 Aug 2004 14:58:47 GMT (envelope-from harti) Message-Id: <200408121458.i7CEwlYu027259@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 14:58:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/netgraph/atm Makefile src/sys/modules/netgraph/atm/ccatm Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:58:47 -0000 harti 2004-08-12 14:58:47 UTC FreeBSD src repository Modified files: sys/modules/netgraph/atm Makefile Added files: sys/modules/netgraph/atm/ccatm Makefile Log: Add the module build stuff for the ATM call control module. Revision Changes Path 1.5 +1 -0 src/sys/modules/netgraph/atm/Makefile 1.1 +17 -0 src/sys/modules/netgraph/atm/ccatm/Makefile (new) From owner-cvs-src@FreeBSD.ORG Thu Aug 12 15:02:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 339EE16A4CE; Thu, 12 Aug 2004 15:02:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 117E543D45; Thu, 12 Aug 2004 15:02:00 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CF1xjg027479; Thu, 12 Aug 2004 15:01:59 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CF1xiB027478; Thu, 12 Aug 2004 15:01:59 GMT (envelope-from harti) Message-Id: <200408121501.i7CF1xiB027478@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 15:01:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES files options X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:02:00 -0000 harti 2004-08-12 15:01:59 UTC FreeBSD src repository Modified files: sys/conf NOTES files options Log: Allow the ATM call control module to be built into the kernel. Revision Changes Path 1.1257 +1 -0 src/sys/conf/NOTES 1.939 +8 -0 src/sys/conf/files 1.471 +1 -0 src/sys/conf/options From owner-cvs-src@FreeBSD.ORG Thu Aug 12 15:33:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 325E416A4D1 for ; Thu, 12 Aug 2004 15:33:07 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE6FC43D49 for ; Thu, 12 Aug 2004 15:33:06 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 17971 invoked from network); 12 Aug 2004 15:33:06 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 12 Aug 2004 15:33:05 -0000 Received: from [10.50.41.91] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7CFX2OG000524; Thu, 12 Aug 2004 11:33:02 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Jeff Roberson Date: Thu, 12 Aug 2004 10:04:20 -0400 User-Agent: KMail/1.6.2 References: <200408100752.i7A7qMYI000506@repoman.freebsd.org> <200408100918.45387.jhb@FreeBSD.org> <200408120950.08724.jhb@FreeBSD.org> In-Reply-To: <200408120950.08724.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408121004.20078.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:33:07 -0000 On Thursday 12 August 2004 09:50 am, John Baldwin wrote: > On Tuesday 10 August 2004 09:18 am, John Baldwin wrote: > > On Tuesday 10 August 2004 03:52 am, Jeff Roberson wrote: > > > jeff 2004-08-10 07:52:22 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/kern sched_ule.c > > > Log: > > > - Use a new flag, KEF_XFERABLE, to record with certainty that this > > > kse had contributed to the transferable load count. This prevents any > > > potential problems with sched_pin() being used around calls to > > > setrunqueue(). - Change the sched_add() load balancing algorithm to try > > > to migrate on wakeup. This attempts to place threads that communicate > > > with each other on the same CPU. > > > - Don't clear the idle counts in kseq_transfer(), let the cpus do > > > that when they call sched_add() from kseq_assign(). > > > - Correct a few out of date comments. > > > - Make sure the ke_cpu field is correct when we preempt. > > > - Call kseq_assign() from sched_clock() to catch any assignments > > > that were done without IPI. Presently all assignments are done with an > > > IPI, but I'm trying a patch that limits that. > > > - Don't migrate a thread if it is still runnable in sched_add(). > > > Previously, this could only happen for KSE threads, but due to changes > > > to sched_switch() all threads went through this path. > > > - Remove some code that was added with preemption but is not > > > necessary. > > > > Couple of comments: > > > > 1) TDF_NEEDRESCHED is still needed as that is what manages user-level > > preemptions. Kernel preemption does not normally preempt threads at > > user-level priorities (see the code in maybe_preempt() for a comment with > > more detailed info). > > > > 2) Can a thread bound to CPU B ever be put on the runqueue via > > setrunqueue() by a thread on CPU A? If so, you need to keep the > > SMP-specific migration check before the call to maybe_preempt() so that > > you don't end up running the new thread on CPU A even though it is > > supposed to run on CPU B. > > I'm pretty sure 2) can happen during say, a sleepq_broadcast() or > sleepq_signal() operation. Also for turnstile wakeups which can wakeup > arbitrary threads on arbitrary CPUs. Nevermind, have been educated off-list. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:36:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 581CD16A4CE; Thu, 12 Aug 2004 16:36:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35FCC43D1F; Thu, 12 Aug 2004 16:36:52 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGaqAM030477; Thu, 12 Aug 2004 16:36:52 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGaqjk030476; Thu, 12 Aug 2004 16:36:52 GMT (envelope-from kan) Message-Id: <200408121636.i7CGaqjk030476@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:36:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/cc/cc_int Makefilesrc/gnu/usr.bin/cc/cc_tools Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:36:52 -0000 kan 2004-08-12 16:36:52 UTC FreeBSD src repository Modified files: gnu/usr.bin/cc/cc_int Makefile gnu/usr.bin/cc/cc_tools Makefile Log: Consolidate libiberty files in one place and avoid listing some of them in several places. Noticed by: bsdimp Revision Changes Path 1.44 +3 -4 src/gnu/usr.bin/cc/cc_int/Makefile 1.79 +9 -11 src/gnu/usr.bin/cc/cc_tools/Makefile From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:40:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 239E516A4CE; Thu, 12 Aug 2004 16:40:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0217F43D53; Thu, 12 Aug 2004 16:40:27 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGeQ36031775; Thu, 12 Aug 2004 16:40:26 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGeQgo031774; Thu, 12 Aug 2004 16:40:26 GMT (envelope-from kan) Message-Id: <200408121640.i7CGeQgo031774@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:40:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gcc .brik .cvsignore BUGS NEWS README acconfig.h cccp.1 config.guess configure.frag configure.in cppmain.c dbxstclass.h doschk.c dwarfout.c floatlib.c future.options getopt.c getopt.h getopt1.c location.h mbchar.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:40:27 -0000 kan 2004-08-12 16:40:26 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/gcc .brik .cvsignore BUGS NEWS README acconfig.h cccp.1 config.guess configure.frag configure.in cppmain.c dbxstclass.h doschk.c dwarfout.c floatlib.c future.options getopt.c getopt.h getopt1.c location.h mbchar.c mbchar.h pexecute.c profile.h ssa-ccp.c ssa-dce.c ssa.c ssa.h unwind-libunwind.c contrib/gcc/config aoutos.h freebsd3.h freebsd4.h freebsd5.h freebsd6.h psos.h t-interix t-linux-aout contrib/gcc/config/alpha alpha-interix.h alpha32.h crtbegin.asm crtend.asm gdb-osf12.h gdb-osf2.h gdb.h osf2.h t-interix vxworks.h xm-alpha-interix.h xm-vms64.h contrib/gcc/config/arm conix-elf.h t-arm-aout t-strongarm-coff unknown-elf-oabi.h vxarm.h contrib/gcc/config/i386 freebsd-elf.h freebsd.h.fixed vxi386.h win32.h x-freebsd xm-i386-interix.h xm-vsta.h contrib/gcc/config/ia64 aix.h hpux_longdouble.h t-aix unwind-aix.c contrib/gcc/config/rs6000 aix31.h aix3newas.h eabiaix.h mach.h t-rs6000-c-rule vxppc.h contrib/gcc/config/sparc bsd.h hal.h linux-aout.h lynx-ng.h lynx.h netbsd.h sp86x-aout.h splet.h sun4gas.h sun4o3.h sunos4.h t-chorus-elf t-halos t-sparcbare t-splet t-sunos41 t-vxsparc t-vxsparc64 vxsim.h vxsparc.h vxsparc64.h contrib/gcc/cp cfns.h g++.c lang-options.h parse.y reno.texi spew.c contrib/gcc/doc install-old.texi install.texi install.texi2html contrib/gcc/f README lang-options.h contrib/gcc/objc lang-options.h sendmsg.c Log: Remove files that are not part of GCC 3.4.x from the vendor branch. Revision Changes Path 1.1.1.2 +0 -14448 src/contrib/gcc/.brik (dead) 1.1.1.2 +0 -32 src/contrib/gcc/.cvsignore (dead) 1.1.1.6 +0 -594 src/contrib/gcc/BUGS (dead) 1.1.1.9 +0 -2446 src/contrib/gcc/NEWS (dead) 1.1.1.7 +0 -17 src/contrib/gcc/README (dead) 1.1.1.5 +0 -44 src/contrib/gcc/acconfig.h (dead) 1.1.1.4 +0 -674 src/contrib/gcc/cccp.1 (dead) 1.1.1.7 +0 -4 src/contrib/gcc/config.guess (dead) 1.1.1.4 +0 -150 src/contrib/gcc/config/alpha/alpha-interix.h (dead) 1.1.1.3 +0 -85 src/contrib/gcc/config/alpha/alpha32.h (dead) 1.1.1.3 +0 -192 src/contrib/gcc/config/alpha/crtbegin.asm (dead) 1.1.1.3 +0 -108 src/contrib/gcc/config/alpha/crtend.asm (dead) 1.1.1.2 +0 -26 src/contrib/gcc/config/alpha/gdb-osf12.h (dead) 1.1.1.2 +0 -26 src/contrib/gcc/config/alpha/gdb-osf2.h (dead) 1.1.1.2 +0 -26 src/contrib/gcc/config/alpha/gdb.h (dead) 1.1.1.2 +0 -32 src/contrib/gcc/config/alpha/osf2.h (dead) 1.1.1.3 +0 -7 src/contrib/gcc/config/alpha/t-interix (dead) 1.1.1.5 +0 -55 src/contrib/gcc/config/alpha/vxworks.h (dead) 1.1.1.3 +0 -39 src/contrib/gcc/config/alpha/xm-alpha-interix.h (dead) 1.1.1.2 +0 -29 src/contrib/gcc/config/alpha/xm-vms64.h (dead) 1.1.1.3 +0 -41 src/contrib/gcc/config/aoutos.h (dead) 1.1.1.3 +0 -46 src/contrib/gcc/config/arm/conix-elf.h (dead) 1.1.1.2 +0 -29 src/contrib/gcc/config/arm/t-arm-aout (dead) 1.1.1.2 +0 -34 src/contrib/gcc/config/arm/t-strongarm-coff (dead) 1.1.1.3 +0 -29 src/contrib/gcc/config/arm/unknown-elf-oabi.h (dead) 1.1.1.3 +0 -71 src/contrib/gcc/config/arm/vxarm.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd3.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd4.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd5.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd6.h (dead) 1.1.1.3 +0 -257 src/contrib/gcc/config/i386/freebsd-elf.h (dead) 1.1.1.7 +0 -257 src/contrib/gcc/config/i386/freebsd.h.fixed (dead) 1.1.1.5 +0 -66 src/contrib/gcc/config/i386/vxi386.h (dead) 1.1.1.4 +0 -173 src/contrib/gcc/config/i386/win32.h (dead) 1.1.1.2 +0 -3 src/contrib/gcc/config/i386/x-freebsd (dead) 1.1.1.3 +0 -32 src/contrib/gcc/config/i386/xm-i386-interix.h (dead) 1.1.1.4 +0 -11 src/contrib/gcc/config/i386/xm-vsta.h (dead) 1.1.1.4 +0 -159 src/contrib/gcc/config/ia64/aix.h (dead) 1.1.1.3 +0 -99 src/contrib/gcc/config/ia64/hpux_longdouble.h (dead) 1.1.1.3 +0 -15 src/contrib/gcc/config/ia64/t-aix (dead) 1.1.1.2 +0 -120 src/contrib/gcc/config/ia64/unwind-aix.c (dead) 1.1.1.4 +0 -88 src/contrib/gcc/config/psos.h (dead) 1.1.1.3 +0 -87 src/contrib/gcc/config/rs6000/aix31.h (dead) 1.1.1.2 +0 -60 src/contrib/gcc/config/rs6000/aix3newas.h (dead) 1.1.1.3 +0 -36 src/contrib/gcc/config/rs6000/eabiaix.h (dead) 1.1.1.3 +0 -54 src/contrib/gcc/config/rs6000/mach.h (dead) 1.1.1.2 +0 -4 src/contrib/gcc/config/rs6000/t-rs6000-c-rule (dead) 1.1.1.3 +0 -57 src/contrib/gcc/config/rs6000/vxppc.h (dead) 1.1.1.3 +0 -5 src/contrib/gcc/config/sparc/bsd.h (dead) 1.1.1.2 +0 -33 src/contrib/gcc/config/sparc/hal.h (dead) 1.1.1.5 +0 -96 src/contrib/gcc/config/sparc/linux-aout.h (dead) 1.1.1.3 +0 -38 src/contrib/gcc/config/sparc/lynx-ng.h (dead) 1.1.1.4 +0 -47 src/contrib/gcc/config/sparc/lynx.h (dead) 1.1.1.5 +0 -49 src/contrib/gcc/config/sparc/netbsd.h (dead) 1.1.1.3 +0 -51 src/contrib/gcc/config/sparc/sp86x-aout.h (dead) 1.1.1.5 +0 -46 src/contrib/gcc/config/sparc/splet.h (dead) 1.1.1.3 +0 -22 src/contrib/gcc/config/sparc/sun4gas.h (dead) 1.1.1.4 +0 -11 src/contrib/gcc/config/sparc/sun4o3.h (dead) 1.1.1.4 +0 -48 src/contrib/gcc/config/sparc/sunos4.h (dead) 1.1.1.2 +0 -29 src/contrib/gcc/config/sparc/t-chorus-elf (dead) 1.1.1.2 +0 -2 src/contrib/gcc/config/sparc/t-halos (dead) 1.1.1.3 +0 -25 src/contrib/gcc/config/sparc/t-sparcbare (dead) 1.1.1.4 +0 -21 src/contrib/gcc/config/sparc/t-splet (dead) 1.1.1.3 +0 -12 src/contrib/gcc/config/sparc/t-sunos41 (dead) 1.1.1.3 +0 -10 src/contrib/gcc/config/sparc/t-vxsparc (dead) 1.1.1.2 +0 -23 src/contrib/gcc/config/sparc/t-vxsparc64 (dead) 1.1.1.5 +0 -136 src/contrib/gcc/config/sparc/vxsim.h (dead) 1.1.1.3 +0 -59 src/contrib/gcc/config/sparc/vxsparc.h (dead) 1.1.1.4 +0 -92 src/contrib/gcc/config/sparc/vxsparc64.h (dead) 1.1.1.2 +0 -2 src/contrib/gcc/config/t-interix (dead) 1.1.1.3 +0 -2 src/contrib/gcc/config/t-linux-aout (dead) 1.1.1.4 +0 -77 src/contrib/gcc/configure.frag (dead) 1.1.1.17 +0 -2969 src/contrib/gcc/configure.in (dead) 1.1.1.2 +0 -467 src/contrib/gcc/cp/cfns.h (dead) 1.1.1.2 +0 -582 src/contrib/gcc/cp/g++.c (dead) 1.1.1.6 +0 -159 src/contrib/gcc/cp/lang-options.h (dead) 1.1.1.11 +0 -4237 src/contrib/gcc/cp/parse.y (dead) 1.1.1.2 +0 -752 src/contrib/gcc/cp/reno.texi (dead) 1.1.1.8 +0 -1558 src/contrib/gcc/cp/spew.c (dead) 1.1.1.9 +0 -432 src/contrib/gcc/cppmain.c (dead) 1.1.1.3 +0 -17 src/contrib/gcc/dbxstclass.h (dead) 1.1.1.2 +0 -725 src/contrib/gcc/doc/install-old.texi (dead) 1.1.1.4 +0 -3928 src/contrib/gcc/doc/install.texi (dead) 1.1.1.2 +0 -31 src/contrib/gcc/doc/install.texi2html (dead) 1.1.1.5 +0 -360 src/contrib/gcc/doschk.c (dead) 1.1.1.8 +0 -6561 src/contrib/gcc/dwarfout.c (dead) 1.1.1.2 +0 -7 src/contrib/gcc/f/README (dead) 1.1.1.4 +0 -239 src/contrib/gcc/f/lang-options.h (dead) 1.1.1.6 +0 -944 src/contrib/gcc/floatlib.c (dead) 1.1.1.4 +0 -40 src/contrib/gcc/future.options (dead) 1.1.1.7 +0 -1056 src/contrib/gcc/getopt.c (dead) 1.1.1.7 +0 -144 src/contrib/gcc/getopt.h (dead) 1.1.1.5 +0 -190 src/contrib/gcc/getopt1.c (dead) 1.1.1.2 +0 -38 src/contrib/gcc/location.h (dead) 1.1.1.5 +0 -334 src/contrib/gcc/mbchar.c (dead) 1.1.1.4 +0 -41 src/contrib/gcc/mbchar.h (dead) 1.1.1.2 +0 -43 src/contrib/gcc/objc/lang-options.h (dead) 1.1.1.3 +0 -651 src/contrib/gcc/objc/sendmsg.c (dead) 1.1.1.5 +0 -792 src/contrib/gcc/pexecute.c (dead) 1.1.1.2 +0 -54 src/contrib/gcc/profile.h (dead) 1.1.1.5 +0 -1219 src/contrib/gcc/ssa-ccp.c (dead) 1.1.1.4 +0 -733 src/contrib/gcc/ssa-dce.c (dead) 1.1.1.4 +0 -2334 src/contrib/gcc/ssa.c (dead) 1.1.1.4 +0 -72 src/contrib/gcc/ssa.h (dead) 1.1.1.2 +0 -172 src/contrib/gcc/unwind-libunwind.c (dead) From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:41:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A2F016A4CF; Thu, 12 Aug 2004 16:41:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 667D943D46; Thu, 12 Aug 2004 16:41:13 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGfD5e031865; Thu, 12 Aug 2004 16:41:13 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGfDT1031864; Thu, 12 Aug 2004 16:41:13 GMT (envelope-from kan) Message-Id: <200408121641.i7CGfDT1031864@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:41:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/libf2c/libU77 bes.c dbes.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:41:13 -0000 kan 2004-08-12 16:41:13 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/libf2c/libU77 bes.c dbes.c Log: Remove files that are not part of GCC 3.4.x from the vendor branch. Revision Changes Path 1.1.1.3 +0 -58 src/contrib/libf2c/libU77/bes.c (dead) 1.1.1.3 +0 -58 src/contrib/libf2c/libU77/dbes.c (dead) From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:41:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3388716A4CE; Thu, 12 Aug 2004 16:41:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F96F43D46; Thu, 12 Aug 2004 16:41:43 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGfhEk032663; Thu, 12 Aug 2004 16:41:43 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGfhuW032662; Thu, 12 Aug 2004 16:41:43 GMT (envelope-from kan) Message-Id: <200408121641.i7CGfhuW032662@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:41:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/libstdc++ NEWS cassert cctype cerrno cfloat cinst.cc ciso646 climits clocale cmath cmathi.cc complex complex.h configure.in configure.target csetjmp csignal cstdarg cstddef cstdio cstdlib cstdlibi.cc cstring cstringi.cc ctime ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:41:43 -0000 kan 2004-08-12 16:41:42 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/libstdc++ NEWS cassert cctype cerrno cfloat cinst.cc ciso646 climits clocale cmath cmathi.cc complex complex.h configure.in configure.target csetjmp csignal cstdarg cstddef cstdio cstdlib cstdlibi.cc cstring cstringi.cc ctime cwchar cwctype fstream iomanip iosfwd iostream mkcheck.in sinst.cc sstream stdexcept stdexcepti.cc stl.h stlinst.cc string strstream testsuite_flags.in valarray valarray.cc contrib/libstdc++/config aix.ml dec-osf.ml delta.mt elf.ml elfshlibm.ml freebsd.ml gnu.ml hpux.ml irix5.ml linux.ml linux.mt openbsd.ml openbsd.mt posix.mt sol2pth.mt sol2shm.ml sol2solth.mt sunos4.ml x86-interix.ml contrib/libstdc++/config/abi extract_symvers contrib/libstdc++/config/cpu/sparc/sparc32/bits atomicity.h contrib/libstdc++/config/cpu/sparc/sparc64/bits atomicity.h contrib/libstdc++/config/io basic_file_libio.cc basic_file_libio.h c_io_libio.h c_io_libio_codecvt.c contrib/libstdc++/include/bits fpos.h pthread_allocimpl.h stl_alloc.h stl_pthread_alloc.h valarray_meta.h contrib/libstdc++/include/ext stl_hash_fun.h stl_hashtable.h stl_rope.h contrib/libstdc++/libio ChangeLog Makefile.am Makefile.in _G_config.h filedoalloc.c fileops.c genops.c iofclose.c iofopen.c iofwide.c iolibio.h libio.h libioP.h stdfiles.c stdio.c wfiledoalloc.c wfileops.c wgenops.c contrib/libstdc++/libmath nan.c contrib/libstdc++/src bitset.cc cmath.cc fstream.cc globals.cc stl-inst.cc vterminate.cc contrib/libstdc++/std bastring.cc bastring.h complext.cc complext.h dcomplex.h fcomplex.h gslice.h gslice_array.h indirect_array.h ldcomplex.h mask_array.h slice.h slice_array.h std_valarray.h straits.h valarray_array.h valarray_array.tcc valarray_meta.h contrib/libstdc++/stl ChangeLog README algo.h algobase.h algorithm alloc.h bitset bvector.h defalloc.h deque deque.h function.h functional hash_map hash_map.h hash_set hash_set.h hashtable.h heap.h iterator iterator.h list list.h map map.h memory multimap.h multiset.h numeric pair.h pthread_alloc pthread_alloc.h queue rope rope.h ropeimpl.h set set.h slist slist.h stack stack.h stl_algo.h stl_algobase.h stl_alloc.h stl_bvector.h stl_config.h stl_construct.h stl_deque.h stl_function.h stl_hash_fun.h stl_hash_map.h stl_hash_set.h stl_hashtable.h stl_heap.h stl_iterator.h stl_list.h stl_map.h stl_multimap.h stl_multiset.h stl_numeric.h stl_pair.h stl_queue.h stl_raw_storage_iter.h stl_relops.h stl_rope.h stl_set.h stl_slist.h stl_stack.h stl_tempbuf.h stl_tree.h stl_uninitialized.h stl_vector.h tempbuf.h tree.h type_traits.h utility vector vector.h contrib/libstdc++/tests ChangeLog Makefile.in configure.in tcomplex.cc tcomplex.exp tcomplex.inp tlist.cc tlist.exp tmap.cc tmap.exp tstring.cc tstring.exp tstring.inp tvector.cc tvector.exp contrib/libstdc++/testsuite ChangeLog Makefile.in configure.in contrib/libstdc++/testsuite/config default.exp contrib/libstdc++/testsuite/lib libstdc++.exp contrib/libstdc++/testsuite/libstdc++.tests test.exp Log: Remove files that are not part of GCC 3.4.x from the vendor branch. Revision Changes Path 1.1.1.2 +0 -9 src/contrib/libstdc++/NEWS (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cassert (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cctype (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cerrno (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cfloat (dead) 1.1.1.3 +0 -154 src/contrib/libstdc++/cinst.cc (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/ciso646 (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/climits (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/clocale (dead) 1.1.1.2 +0 -76 src/contrib/libstdc++/cmath (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cmathi.cc (dead) 1.1.1.2 +0 -18 src/contrib/libstdc++/complex (dead) 1.1.1.2 +0 -6 src/contrib/libstdc++/complex.h (dead) 1.1.1.2 +0 -64 src/contrib/libstdc++/config/abi/extract_symvers (dead) 1.1.1.3 +0 -9 src/contrib/libstdc++/config/aix.ml (dead) 1.1.1.2 +0 -88 src/contrib/libstdc++/config/cpu/sparc/sparc32/bits/atomicity.h (dead) 1.1.1.2 +0 -70 src/contrib/libstdc++/config/cpu/sparc/sparc64/bits/atomicity.h (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/dec-osf.ml (dead) 1.1.1.2 +0 -2 src/contrib/libstdc++/config/delta.mt (dead) 1.1.1.3 +0 -8 src/contrib/libstdc++/config/elf.ml (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/elfshlibm.ml (dead) 1.1.1.2 +0 -6 src/contrib/libstdc++/config/freebsd.ml (dead) 1.1.1.2 +0 -6 src/contrib/libstdc++/config/gnu.ml (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/hpux.ml (dead) 1.1.1.2 +0 -194 src/contrib/libstdc++/config/io/basic_file_libio.cc (dead) 1.1.1.2 +0 -498 src/contrib/libstdc++/config/io/basic_file_libio.h (dead) 1.1.1.2 +0 -113 src/contrib/libstdc++/config/io/c_io_libio.h (dead) 1.1.1.2 +0 -153 src/contrib/libstdc++/config/io/c_io_libio_codecvt.c (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/irix5.ml (dead) 1.1.1.3 +0 -11 src/contrib/libstdc++/config/linux.ml (dead) 1.1.1.2 +0 -2 src/contrib/libstdc++/config/linux.mt (dead) 1.1.1.3 +0 -7 src/contrib/libstdc++/config/openbsd.ml (dead) 1.1.1.2 +0 -3 src/contrib/libstdc++/config/openbsd.mt (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/config/posix.mt (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/config/sol2pth.mt (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/sol2shm.ml (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/config/sol2solth.mt (dead) 1.1.1.3 +0 -9 src/contrib/libstdc++/config/sunos4.ml (dead) 1.1.1.2 +0 -9 src/contrib/libstdc++/config/x86-interix.ml (dead) 1.1.1.9 +0 -554 src/contrib/libstdc++/configure.in (dead) 1.1.1.6 +0 -200 src/contrib/libstdc++/configure.target (dead) 1.1.1.2 +0 -8 src/contrib/libstdc++/csetjmp (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/csignal (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstdarg (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstddef (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstdio (dead) 1.1.1.2 +0 -23 src/contrib/libstdc++/cstdlib (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstdlibi.cc (dead) 1.1.1.2 +0 -96 src/contrib/libstdc++/cstring (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstringi.cc (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/ctime (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cwchar (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cwctype (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/fstream (dead) 1.1.1.4 +0 -127 src/contrib/libstdc++/include/bits/fpos.h (dead) 1.1.1.2 +0 -525 src/contrib/libstdc++/include/bits/pthread_allocimpl.h (dead) 1.1.1.4 +0 -974 src/contrib/libstdc++/include/bits/stl_alloc.h (dead) 1.1.1.2 +0 -60 src/contrib/libstdc++/include/bits/stl_pthread_alloc.h (dead) 1.1.1.3 +0 -1147 src/contrib/libstdc++/include/bits/valarray_meta.h (dead) 1.1.1.2 +0 -126 src/contrib/libstdc++/include/ext/stl_hash_fun.h (dead) 1.1.1.4 +0 -996 src/contrib/libstdc++/include/ext/stl_hashtable.h (dead) 1.1.1.4 +0 -2503 src/contrib/libstdc++/include/ext/stl_rope.h (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/iomanip (dead) 1.1.1.2 +0 -15 src/contrib/libstdc++/iosfwd (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/iostream (dead) 1.1.1.3 +0 -2802 src/contrib/libstdc++/libio/ChangeLog (dead) 1.1.1.2 +0 -67 src/contrib/libstdc++/libio/Makefile.am (dead) 1.1.1.3 +0 -406 src/contrib/libstdc++/libio/Makefile.in (dead) 1.1.1.2 +0 -136 src/contrib/libstdc++/libio/_G_config.h (dead) 1.1.1.2 +0 -101 src/contrib/libstdc++/libio/filedoalloc.c (dead) 1.1.1.2 +0 -1049 src/contrib/libstdc++/libio/fileops.c (dead) 1.1.1.2 +0 -1123 src/contrib/libstdc++/libio/genops.c (dead) 1.1.1.2 +0 -97 src/contrib/libstdc++/libio/iofclose.c (dead) 1.1.1.2 +0 -78 src/contrib/libstdc++/libio/iofopen.c (dead) 1.1.1.2 +0 -476 src/contrib/libstdc++/libio/iofwide.c (dead) 1.1.1.2 +0 -82 src/contrib/libstdc++/libio/iolibio.h (dead) 1.1.1.2 +0 -511 src/contrib/libstdc++/libio/libio.h (dead) 1.1.1.2 +0 -821 src/contrib/libstdc++/libio/libioP.h (dead) 1.1.1.2 +0 -71 src/contrib/libstdc++/libio/stdfiles.c (dead) 1.1.1.2 +0 -43 src/contrib/libstdc++/libio/stdio.c (dead) 1.1.1.2 +0 -108 src/contrib/libstdc++/libio/wfiledoalloc.c (dead) 1.1.1.2 +0 -754 src/contrib/libstdc++/libio/wfileops.c (dead) 1.1.1.2 +0 -756 src/contrib/libstdc++/libio/wgenops.c (dead) 1.1.1.2 +0 -36 src/contrib/libstdc++/libmath/nan.c (dead) 1.1.1.3 +0 -448 src/contrib/libstdc++/mkcheck.in (dead) 1.1.1.3 +0 -135 src/contrib/libstdc++/sinst.cc (dead) 1.1.1.4 +0 -219 src/contrib/libstdc++/src/bitset.cc (dead) 1.1.1.2 +0 -47 src/contrib/libstdc++/src/cmath.cc (dead) 1.1.1.3 +0 -202 src/contrib/libstdc++/src/fstream.cc (dead) 1.1.1.4 +0 -317 src/contrib/libstdc++/src/globals.cc (dead) 1.1.1.3 +0 -43 src/contrib/libstdc++/src/stl-inst.cc (dead) 1.1.1.3 +0 -82 src/contrib/libstdc++/src/vterminate.cc (dead) 1.1.1.3 +0 -343 src/contrib/libstdc++/sstream (dead) 1.1.1.4 +0 -524 src/contrib/libstdc++/std/bastring.cc (dead) 1.1.1.5 +0 -657 src/contrib/libstdc++/std/bastring.h (dead) 1.1.1.3 +0 -273 src/contrib/libstdc++/std/complext.cc (dead) 1.1.1.2 +0 -400 src/contrib/libstdc++/std/complext.h (dead) 1.1.1.2 +0 -91 src/contrib/libstdc++/std/dcomplex.h (dead) 1.1.1.2 +0 -87 src/contrib/libstdc++/std/fcomplex.h (dead) 1.1.1.2 +0 -111 src/contrib/libstdc++/std/gslice.h (dead) 1.1.1.2 +0 -170 src/contrib/libstdc++/std/gslice_array.h (dead) 1.1.1.2 +0 -157 src/contrib/libstdc++/std/indirect_array.h (dead) 1.1.1.2 +0 -95 src/contrib/libstdc++/std/ldcomplex.h (dead) 1.1.1.2 +0 -154 src/contrib/libstdc++/std/mask_array.h (dead) 1.1.1.2 +0 -76 src/contrib/libstdc++/std/slice.h (dead) 1.1.1.2 +0 -156 src/contrib/libstdc++/std/slice_array.h (dead) 1.1.1.2 +0 -728 src/contrib/libstdc++/std/std_valarray.h (dead) 1.1.1.2 +0 -161 src/contrib/libstdc++/std/straits.h (dead) 1.1.1.3 +0 -346 src/contrib/libstdc++/std/valarray_array.h (dead) 1.1.1.2 +0 -130 src/contrib/libstdc++/std/valarray_array.tcc (dead) 1.1.1.3 +0 -1046 src/contrib/libstdc++/std/valarray_meta.h (dead) 1.1.1.3 +0 -97 src/contrib/libstdc++/stdexcept (dead) 1.1.1.3 +0 -21 src/contrib/libstdc++/stdexcepti.cc (dead) 1.1.1.2 +0 -15 src/contrib/libstdc++/stl.h (dead) 1.1.1.6 +0 -381 src/contrib/libstdc++/stl/ChangeLog (dead) 1.1.1.3 +0 -13 src/contrib/libstdc++/stl/README (dead) 1.1.1.2 +0 -114 src/contrib/libstdc++/stl/algo.h (dead) 1.1.1.2 +0 -71 src/contrib/libstdc++/stl/algobase.h (dead) 1.1.1.3 +0 -40 src/contrib/libstdc++/stl/algorithm (dead) 1.1.1.3 +0 -46 src/contrib/libstdc++/stl/alloc.h (dead) 1.1.1.3 +0 -1066 src/contrib/libstdc++/stl/bitset (dead) 1.1.1.2 +0 -51 src/contrib/libstdc++/stl/bvector.h (dead) 1.1.1.3 +0 -87 src/contrib/libstdc++/stl/defalloc.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/deque (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/deque.h (dead) 1.1.1.2 +0 -118 src/contrib/libstdc++/stl/function.h (dead) 1.1.1.2 +0 -26 src/contrib/libstdc++/stl/functional (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/hash_map (dead) 1.1.1.3 +0 -49 src/contrib/libstdc++/stl/hash_map.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/hash_set (dead) 1.1.1.3 +0 -44 src/contrib/libstdc++/stl/hash_set.h (dead) 1.1.1.2 +0 -48 src/contrib/libstdc++/stl/hashtable.h (dead) 1.1.1.2 +0 -46 src/contrib/libstdc++/stl/heap.h (dead) 1.1.1.3 +0 -44 src/contrib/libstdc++/stl/iterator (dead) 1.1.1.2 +0 -104 src/contrib/libstdc++/stl/iterator.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/list (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/list.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/map (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/map.h (dead) 1.1.1.3 +0 -108 src/contrib/libstdc++/stl/memory (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/multimap.h (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/multiset.h (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/numeric (dead) 1.1.1.2 +0 -51 src/contrib/libstdc++/stl/pair.h (dead) 1.1.1.3 +0 -479 src/contrib/libstdc++/stl/pthread_alloc (dead) 1.1.1.3 +0 -31 src/contrib/libstdc++/stl/pthread_alloc.h (dead) 1.1.1.2 +0 -45 src/contrib/libstdc++/stl/queue (dead) 1.1.1.3 +0 -32 src/contrib/libstdc++/stl/rope (dead) 1.1.1.2 +0 -34 src/contrib/libstdc++/stl/rope.h (dead) 1.1.1.3 +0 -1550 src/contrib/libstdc++/stl/ropeimpl.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/set (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/set.h (dead) 1.1.1.2 +0 -28 src/contrib/libstdc++/stl/slist (dead) 1.1.1.2 +0 -30 src/contrib/libstdc++/stl/slist.h (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/stack (dead) 1.1.1.2 +0 -46 src/contrib/libstdc++/stl/stack.h (dead) 1.1.1.3 +0 -2894 src/contrib/libstdc++/stl/stl_algo.h (dead) 1.1.1.3 +0 -526 src/contrib/libstdc++/stl/stl_algobase.h (dead) 1.1.1.3 +0 -1057 src/contrib/libstdc++/stl/stl_alloc.h (dead) 1.1.1.3 +0 -838 src/contrib/libstdc++/stl/stl_bvector.h (dead) 1.1.1.3 +0 -356 src/contrib/libstdc++/stl/stl_config.h (dead) 1.1.1.3 +0 -90 src/contrib/libstdc++/stl/stl_construct.h (dead) 1.1.1.4 +0 -1698 src/contrib/libstdc++/stl/stl_deque.h (dead) 1.1.1.3 +0 -700 src/contrib/libstdc++/stl/stl_function.h (dead) 1.1.1.3 +0 -93 src/contrib/libstdc++/stl/stl_hash_fun.h (dead) 1.1.1.3 +0 -416 src/contrib/libstdc++/stl/stl_hash_map.h (dead) 1.1.1.3 +0 -401 src/contrib/libstdc++/stl/stl_hash_set.h (dead) 1.1.1.3 +0 -1039 src/contrib/libstdc++/stl/stl_hashtable.h (dead) 1.1.1.3 +0 -281 src/contrib/libstdc++/stl/stl_heap.h (dead) 1.1.1.3 +0 -915 src/contrib/libstdc++/stl/stl_iterator.h (dead) 1.1.1.3 +0 -840 src/contrib/libstdc++/stl/stl_list.h (dead) 1.1.1.3 +0 -242 src/contrib/libstdc++/stl/stl_map.h (dead) 1.1.1.3 +0 -232 src/contrib/libstdc++/stl/stl_multimap.h (dead) 1.1.1.3 +0 -224 src/contrib/libstdc++/stl/stl_multiset.h (dead) 1.1.1.3 +0 -239 src/contrib/libstdc++/stl/stl_numeric.h (dead) 1.1.1.3 +0 -77 src/contrib/libstdc++/stl/stl_pair.h (dead) 1.1.1.3 +0 -202 src/contrib/libstdc++/stl/stl_queue.h (dead) 1.1.1.3 +0 -81 src/contrib/libstdc++/stl/stl_raw_storage_iter.h (dead) 1.1.1.3 +0 -62 src/contrib/libstdc++/stl/stl_relops.h (dead) 1.1.1.4 +0 -2541 src/contrib/libstdc++/stl/stl_rope.h (dead) 1.1.1.3 +0 -216 src/contrib/libstdc++/stl/stl_set.h (dead) 1.1.1.3 +0 -945 src/contrib/libstdc++/stl/stl_slist.h (dead) 1.1.1.3 +0 -111 src/contrib/libstdc++/stl/stl_stack.h (dead) 1.1.1.3 +0 -156 src/contrib/libstdc++/stl/stl_tempbuf.h (dead) 1.1.1.3 +0 -1333 src/contrib/libstdc++/stl/stl_tree.h (dead) 1.1.1.3 +0 -279 src/contrib/libstdc++/stl/stl_uninitialized.h (dead) 1.1.1.3 +0 -823 src/contrib/libstdc++/stl/stl_vector.h (dead) 1.1.1.3 +0 -61 src/contrib/libstdc++/stl/tempbuf.h (dead) 1.1.1.2 +0 -46 src/contrib/libstdc++/stl/tree.h (dead) 1.1.1.3 +0 -373 src/contrib/libstdc++/stl/type_traits.h (dead) 1.1.1.2 +0 -38 src/contrib/libstdc++/stl/utility (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/vector (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/vector.h (dead) 1.1.1.3 +0 -10 src/contrib/libstdc++/stlinst.cc (dead) 1.1.1.2 +0 -13 src/contrib/libstdc++/string (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/strstream (dead) 1.1.1.5 +0 -132 src/contrib/libstdc++/tests/ChangeLog (dead) 1.1.1.2 +0 -35 src/contrib/libstdc++/tests/Makefile.in (dead) 1.1.1.2 +0 -65 src/contrib/libstdc++/tests/configure.in (dead) 1.1.1.2 +0 -151 src/contrib/libstdc++/tests/tcomplex.cc (dead) 1.1.1.2 +0 -37 src/contrib/libstdc++/tests/tcomplex.exp (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/tests/tcomplex.inp (dead) 1.1.1.2 +0 -151 src/contrib/libstdc++/tests/tlist.cc (dead) 1.1.1.2 +0 -44 src/contrib/libstdc++/tests/tlist.exp (dead) 1.1.1.2 +0 -59 src/contrib/libstdc++/tests/tmap.cc (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/tests/tmap.exp (dead) 1.1.1.2 +0 -249 src/contrib/libstdc++/tests/tstring.cc (dead) 1.1.1.2 +0 -22 src/contrib/libstdc++/tests/tstring.exp (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/tests/tstring.inp (dead) 1.1.1.2 +0 -20 src/contrib/libstdc++/tests/tvector.cc (dead) 1.1.1.2 +0 -4 src/contrib/libstdc++/tests/tvector.exp (dead) 1.1.1.5 +0 -94 src/contrib/libstdc++/testsuite/ChangeLog (dead) 1.1.1.4 +0 -428 src/contrib/libstdc++/testsuite/Makefile.in (dead) 1.1.1.3 +0 -21 src/contrib/libstdc++/testsuite/config/default.exp (dead) 1.1.1.2 +0 -24 src/contrib/libstdc++/testsuite/configure.in (dead) 1.1.1.2 +0 -179 src/contrib/libstdc++/testsuite/lib/libstdc++.exp (dead) 1.1.1.2 +0 -34 src/contrib/libstdc++/testsuite/libstdc++.tests/test.exp (dead) 1.1.1.2 +0 -61 src/contrib/libstdc++/testsuite_flags.in (dead) 1.1.1.2 +0 -8 src/contrib/libstdc++/valarray (dead) 1.1.1.2 +0 -50 src/contrib/libstdc++/valarray.cc (dead) From owner-cvs-src@FreeBSD.ORG Thu Aug 12 17:02:54 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D0C216A4CE; Thu, 12 Aug 2004 17:02:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EED4A43D45; Thu, 12 Aug 2004 17:02:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CH2roS033225; Thu, 12 Aug 2004 17:02:53 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CH2rvL033224; Thu, 12 Aug 2004 17:02:53 GMT (envelope-from njl) Message-Id: <200408121702.i7CH2rvL033224@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 17:02:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:02:54 -0000 njl 2004-08-12 17:02:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Allow null handles to be passed into acpi_name(). Revision Changes Path 1.185 +1 -1 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 17:04:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BFE416A4CE; Thu, 12 Aug 2004 17:04:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A14343D5D; Thu, 12 Aug 2004 17:04:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CH4J1b033275; Thu, 12 Aug 2004 17:04:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CH4JrB033274; Thu, 12 Aug 2004 17:04:19 GMT (envelope-from njl) Message-Id: <200408121704.i7CH4JrB033274@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 17:04:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:04:19 -0000 njl 2004-08-12 17:04:19 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pcib.c Log: Only print the link name if there is a link. For the hardwired case, don't bother printing it. This fixes a panic and acpi_name() has been more robust as well. Bug from: Tai-hwa Liang Revision Changes Path 1.49 +7 -4 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 17:06:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAC1A16A4CE; Thu, 12 Aug 2004 17:06:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B917A43D31; Thu, 12 Aug 2004 17:06:05 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CH65Ef033424; Thu, 12 Aug 2004 17:06:05 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CH65S2033423; Thu, 12 Aug 2004 17:06:05 GMT (envelope-from njl) Message-Id: <200408121706.i7CH65S2033423@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 17:06:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:06:06 -0000 njl 2004-08-12 17:06:05 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Skip dependent functions when finding the resource from _PRS to use for later calls to _SRS. Add note that this code should be centralized at some point. Bug from: Jiawei Ye Revision Changes Path 1.22 +8 -4 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 17:22:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F252716A4CE; Thu, 12 Aug 2004 17:22:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D033043D49; Thu, 12 Aug 2004 17:22:28 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHMS7v033834; Thu, 12 Aug 2004 17:22:28 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHMS07033833; Thu, 12 Aug 2004 17:22:28 GMT (envelope-from green) Message-Id: <200408121722.i7CHMS07033833@repoman.freebsd.org> From: Brian Feldman Date: Thu, 12 Aug 2004 17:22:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:22:29 -0000 green 2004-08-12 17:22:28 UTC FreeBSD src repository Modified files: sys/vm vm_map.c Log: Re-delete the comment from r1.352. Revision Changes Path 1.355 +0 -3 src/sys/vm/vm_map.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 17:26:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49E9916A4CE; Thu, 12 Aug 2004 17:26:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28A7343D48; Thu, 12 Aug 2004 17:26:23 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHQN9L033991; Thu, 12 Aug 2004 17:26:23 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHQN3B033990; Thu, 12 Aug 2004 17:26:23 GMT (envelope-from imp) Message-Id: <200408121726.i7CHQN3B033990@repoman.freebsd.org> From: Warner Losh Date: Thu, 12 Aug 2004 17:26:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern bus_if.m device_if.m X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:26:23 -0000 imp 2004-08-12 17:26:23 UTC FreeBSD src repository Modified files: sys/kern bus_if.m device_if.m Log: Minor formatting fixes for lines > 80 characters Revision Changes Path 1.28 +8 -7 src/sys/kern/bus_if.m 1.10 +22 -21 src/sys/kern/device_if.m From owner-cvs-src@FreeBSD.ORG Thu Aug 12 17:41:33 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9593216A4CE; Thu, 12 Aug 2004 17:41:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B88943D1F; Thu, 12 Aug 2004 17:41:33 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHfXm7035259; Thu, 12 Aug 2004 17:41:33 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHfXON035258; Thu, 12 Aug 2004 17:41:33 GMT (envelope-from marius) Message-Id: <200408121741.i7CHfXON035258@repoman.freebsd.org> From: Marius Strobl Date: Thu, 12 Aug 2004 17:41:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.powerpc files.sparc64 kmod.mk src/sys/dev/esp esp_sbus.c src/sys/dev/hme if_hme_sbus.c src/sys/dev/isp isp_sbus.c src/sys/dev/ofw ofw_bus.h ofw_bus_if.m... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:41:34 -0000 marius 2004-08-12 17:41:33 UTC FreeBSD src repository Modified files: sys/conf files.powerpc files.sparc64 kmod.mk sys/dev/esp esp_sbus.c sys/dev/hme if_hme_sbus.c sys/dev/isp isp_sbus.c sys/dev/pcf envctrl.c pcf_ebus.c sys/dev/puc puc_ebus.c puc_sbus.c sys/dev/sab sab.c sys/dev/uart uart_bus_ebus.c sys/dev/zs zs_macio.c zs_sbus.c sys/modules/esp Makefile sys/modules/hme Makefile sys/modules/isp Makefile sys/modules/uart Makefile sys/powerpc/powermac ata_macio.c hrowpic.c macio.c maciovar.h openpic_macio.c sys/sparc64/central central.c sys/sparc64/ebus ebus.c sys/sparc64/fhc fhc.c fhc_central.c fhc_nexus.c fhcvar.h sys/sparc64/include eeprom.h sys/sparc64/isa isa.c sys/sparc64/pci apb.c ofw_pci.h ofw_pci_if.m ofw_pcib.c ofw_pcib_subr.c ofw_pcib_subr.h ofw_pcibus.c psycho.c sys/sparc64/sbus sbus.c sbusvar.h sys/sparc64/sparc64 eeprom.c eeprom_ebus.c eeprom_sbus.c ofw_machdep.c Added files: sys/dev/ofw ofw_bus.h ofw_bus_if.m Removed files: sys/sparc64/central centralvar.h sys/sparc64/ebus ebusvar.h sys/sparc64/sparc64 eeprom_fhc.c Log: - Introduce an ofw_bus kobj-interface for retrieving the OFW node and a subset ("compatible", "device_type", "model" and "name") of the standard properties in drivers for devices on Open Firmware supported busses. The standard properties "reg", "interrupts" und "address" are not covered by this interface because they are only of interest in the respective bridge code. There's a remaining standard property "status" which is unclear how to support properly but which also isn't used in FreeBSD at present. This ofw_bus kobj-interface allows to replace the various (ebus_get_node(), ofw_pci_get_node(), etc.) and partially inconsistent (central_get_type() vs. sbus_get_device_type(), etc.) existing IVAR ones with a common one. This in turn allows to simplify and remove code-duplication in drivers for devices that can hang off of more than one OFW supported bus. - Convert the sparc64 Central, EBus, FHC, PCI and SBus bus drivers and the drivers for their children to use the ofw_bus kobj-interface. The IVAR- interfaces of the Central, EBus and FHC are entirely replaced by this. The PCI bus driver used its own kobj-interface and now also uses the ofw_bus one. The IVARs special to the SBus, e.g. for retrieving the burst size, remain. Beware: this causes an ABI-breakage for modules of drivers which used the IVAR-interfaces, i.e. esp(4), hme(4), isp(4) and uart(4), which need to be recompiled. The style-inconsistencies introduced in some of the bus drivers will be fixed by tmm@ in a generic clean-up of the respective drivers later (he requested to add the changes in the "new" style). - Convert the powerpc MacIO bus driver and the drivers for its children to use the ofw_bus kobj-interface. This invloves removing the IVARs related to the "reg" property which were unused and a leftover from the NetBSD origini of the code. There's no ABI-breakage caused by this because none of these driver are currently built as modules. There are other powerpc bus drivers which can be converted to the ofw_bus kobj-interface, e.g. the PCI bus driver, which should be done together with converting powerpc to use the OFW PCI code from sparc64. - Make the SBus and FHC front-end of zs(4) and the sparc64 eeprom(4) take advantage of the ofw_bus kobj-interface and simplify them a bit. Reviewed by: grehan, tmm Approved by: re (scottl) Discussed with: tmm Tested with: Sun AX1105, AXe, Ultra 2, Ultra 60; PPC cross-build on i386 Revision Changes Path 1.40 +1 -0 src/sys/conf/files.powerpc 1.57 +2 -1 src/sys/conf/files.sparc64 1.164 +1 -0 src/sys/conf/kmod.mk 1.6 +5 -4 src/sys/dev/esp/esp_sbus.c 1.13 +4 -3 src/sys/dev/hme/if_hme_sbus.c 1.15 +6 -5 src/sys/dev/isp/isp_sbus.c 1.1 +73 -0 src/sys/dev/ofw/ofw_bus.h (new) 1.1 +110 -0 src/sys/dev/ofw/ofw_bus_if.m (new) 1.4 +3 -5 src/sys/dev/pcf/envctrl.c 1.3 +7 -8 src/sys/dev/pcf/pcf_ebus.c 1.3 +4 -4 src/sys/dev/puc/puc_ebus.c 1.4 +4 -4 src/sys/dev/puc/puc_sbus.c 1.35 +12 -9 src/sys/dev/sab/sab.c 1.5 +5 -5 src/sys/dev/uart/uart_bus_ebus.c 1.6 +5 -9 src/sys/dev/zs/zs_macio.c 1.8 +12 -61 src/sys/dev/zs/zs_sbus.c 1.3 +1 -1 src/sys/modules/esp/Makefile 1.2 +2 -2 src/sys/modules/hme/Makefile 1.2 +1 -1 src/sys/modules/isp/Makefile 1.10 +3 -2 src/sys/modules/uart/Makefile 1.11 +2 -3 src/sys/powerpc/powermac/ata_macio.c 1.8 +2 -2 src/sys/powerpc/powermac/hrowpic.c 1.16 +69 -53 src/sys/powerpc/powermac/macio.c 1.5 +4 -27 src/sys/powerpc/powermac/maciovar.h 1.8 +2 -2 src/sys/powerpc/powermac/openpic_macio.c 1.4 +64 -46 src/sys/sparc64/central/central.c 1.2 +0 -47 src/sys/sparc64/central/centralvar.h (dead) 1.19 +71 -49 src/sys/sparc64/ebus/ebus.c 1.3 +0 -56 src/sys/sparc64/ebus/ebusvar.h (dead) 1.9 +52 -41 src/sys/sparc64/fhc/fhc.c 1.4 +10 -5 src/sys/sparc64/fhc/fhc_central.c 1.4 +8 -2 src/sys/sparc64/fhc/fhc_nexus.c 1.3 +5 -17 src/sys/sparc64/fhc/fhcvar.h 1.3 +2 -1 src/sys/sparc64/include/eeprom.h 1.13 +2 -1 src/sys/sparc64/isa/isa.c 1.10 +4 -1 src/sys/sparc64/pci/apb.c 1.8 +0 -7 src/sys/sparc64/pci/ofw_pci.h 1.5 +0 -17 src/sys/sparc64/pci/ofw_pci_if.m 1.4 +5 -2 src/sys/sparc64/pci/ofw_pcib.c 1.4 +4 -3 src/sys/sparc64/pci/ofw_pcib_subr.c 1.3 +1 -1 src/sys/sparc64/pci/ofw_pcib_subr.h 1.3 +67 -9 src/sys/sparc64/pci/ofw_pcibus.c 1.52 +7 -4 src/sys/sparc64/pci/psycho.c 1.31 +67 -25 src/sys/sparc64/sbus/sbus.c 1.4 +0 -8 src/sys/sparc64/sbus/sbusvar.h 1.5 +16 -9 src/sys/sparc64/sparc64/eeprom.c 1.7 +4 -19 src/sys/sparc64/sparc64/eeprom_ebus.c 1.7 +0 -136 src/sys/sparc64/sparc64/eeprom_fhc.c (dead) 1.7 +6 -20 src/sys/sparc64/sparc64/eeprom_sbus.c 1.10 +3 -1 src/sys/sparc64/sparc64/ofw_machdep.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 18:01:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 798E116A4CE; Thu, 12 Aug 2004 18:01:50 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1955343D4C; Thu, 12 Aug 2004 18:01:50 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7CI1n73087417; Thu, 12 Aug 2004 11:01:49 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7CI1n83030327; Thu, 12 Aug 2004 11:01:49 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7CI1ncp030326; Thu, 12 Aug 2004 11:01:49 -0700 (PDT) (envelope-from marcel) Date: Thu, 12 Aug 2004 11:01:49 -0700 From: Marcel Moolenaar To: Marius Strobl Message-ID: <20040812180149.GA30239@dhcp50.pn.xcllnt.net> References: <200408121741.i7CHfXON035258@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408121741.i7CHfXON035258@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.powerpc files.sparc64 kmod.mk src/sys/dev/esp esp_sbus.c src/sys/dev/hme if_hme_sbus.c src/sys/dev/isp isp_sbus.c src/sys/dev/ofw ofw_bus.h ofw_bus_if.m src/sys/dev/pcf envctrl.c pcf_ebus.c src/sys/dev/puc puc_ebus.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:01:50 -0000 On Thu, Aug 12, 2004 at 05:41:33PM +0000, Marius Strobl wrote: > Log: > - Introduce an ofw_bus kobj-interface for retrieving the OFW node and a > subset ("compatible", "device_type", "model" and "name") of the standard > properties in drivers for devices on Open Firmware supported busses. Very nice! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-src@FreeBSD.ORG Thu Aug 12 18:06:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AC716A4CE; Thu, 12 Aug 2004 18:06:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B4CF43D3F; Thu, 12 Aug 2004 18:06:21 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CI6LK8036217; Thu, 12 Aug 2004 18:06:21 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CI6L0K036216; Thu, 12 Aug 2004 18:06:21 GMT (envelope-from rwatson) Message-Id: <200408121806.i7CI6L0K036216@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 18:06:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_event.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:06:21 -0000 rwatson 2004-08-12 18:06:21 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: Trim trailing white space. Revision Changes Path 1.75 +11 -11 src/sys/kern/kern_event.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 18:19:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1213716A4CE; Thu, 12 Aug 2004 18:19:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E639C43D46; Thu, 12 Aug 2004 18:19:36 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CIJawV036691; Thu, 12 Aug 2004 18:19:36 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CIJa1X036690; Thu, 12 Aug 2004 18:19:36 GMT (envelope-from dwmalone) Message-Id: <200408121819.i7CIJa1X036690@repoman.freebsd.org> From: David Malone Date: Thu, 12 Aug 2004 18:19:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:19:37 -0000 dwmalone 2004-08-12 18:19:36 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: In tcp6_ctlinput, lock tcbinfo around the call to syncache_unreach so that the locks held are the same as the IPv4 case. Reviewed by: rwatson Revision Changes Path 1.200 +2 -0 src/sys/netinet/tcp_subr.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 18:31:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E372116A4CE; Thu, 12 Aug 2004 18:31:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C403543D45; Thu, 12 Aug 2004 18:31:36 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CIVa4B037069; Thu, 12 Aug 2004 18:31:36 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CIVaDw037068; Thu, 12 Aug 2004 18:31:36 GMT (envelope-from rwatson) Message-Id: <200408121831.i7CIVaDw037068@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 18:31:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 raw_ip6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:31:37 -0000 rwatson 2004-08-12 18:31:36 UTC FreeBSD src repository Modified files: sys/netinet6 raw_ip6.c Log: When allocating the IPv6 header to stick in front of raw packet being sent via a raw IPv6 socket, use M_DONTWAIT not M_TRYWAIT, as we're holding the raw pcb mutex. Reported, tested by: kuriyama Revision Changes Path 1.45 +5 -1 src/sys/netinet6/raw_ip6.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 15:49:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF5B816A4CF; Thu, 12 Aug 2004 15:49:42 +0000 (GMT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98DD143D76; Thu, 12 Aug 2004 15:49:42 +0000 (GMT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id 1C06D18100; Thu, 12 Aug 2004 10:49:42 -0500 (EST) Date: Thu, 12 Aug 2004 10:49:42 -0500 From: Will Andrews To: Alfred Perlstein Message-ID: <20040812154941.GJ32036@sirius.firepipe.net> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812053107.GK57908@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ed/6oDxOLijJh8b0" Content-Disposition: inline In-Reply-To: <20040812053107.GK57908@elvis.mu.org> User-Agent: Mutt/1.5.6i X-Mailman-Approved-At: Thu, 12 Aug 2004 18:47:17 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: re@freebsd.org cc: src-committers@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: Doug Barton cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:49:43 -0000 --ed/6oDxOLijJh8b0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 10:31:07PM -0700, Alfred Perlstein wrote: > But wouldn't it suck to be that user that actually does use '-c' > correctly, and to have it suddenly gone in the middle of a "stable" > release? It is a broken mis-feature. Please tell me how you managed to make it work properly. Do you have some sort of script that sorts the output in order by dependency tree? Or do you actually go through it every time and sort it by hand? Do you think that it's justified that so many other users who didn't know what they were doing shot themselves in the foot? portupgrade is a much better tool. How about simply replacing -c with a message suggesting use of that instead? Regards, --=20 wca --ed/6oDxOLijJh8b0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD4DBQFBG5GVF47idPgWcsURAgO9AJYvemY/3fZWlkrCVPQGsnjQgRK0AKCWphdZ MqTrBELB8FJ66u+xNPyS+Q== =p7QF -----END PGP SIGNATURE----- --ed/6oDxOLijJh8b0-- From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:00:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A536216A4CE; Thu, 12 Aug 2004 16:00:13 +0000 (GMT) Received: from shrike.submonkey.net (cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com [81.103.67.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3011943D3F; Thu, 12 Aug 2004 16:00:13 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.41 (FreeBSD)) id 1BvHzv-000LH3-I5; Thu, 12 Aug 2004 17:00:11 +0100 Date: Thu, 12 Aug 2004 17:00:11 +0100 From: Ceri Davies To: Will Andrews Message-ID: <20040812160011.GG87690@submonkey.net> Mail-Followup-To: Ceri Davies , Will Andrews , Alfred Perlstein , "Bruce A. Mah" , Ken Smith , Oliver Eikemeier , Doug Barton , re@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812053107.GK57908@elvis.mu.org> <20040812154941.GJ32036@sirius.firepipe.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f8uTbadvzI+nQOZu" Content-Disposition: inline In-Reply-To: <20040812154941.GJ32036@sirius.firepipe.net> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.6i Sender: Ceri Davies X-Mailman-Approved-At: Thu, 12 Aug 2004 18:47:17 +0000 cc: "Bruce A. Mah" cc: Doug Barton cc: re@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Ken Smith cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:00:13 -0000 --f8uTbadvzI+nQOZu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 12, 2004 at 10:49:42AM -0500, Will Andrews wrote: > On Wed, Aug 11, 2004 at 10:31:07PM -0700, Alfred Perlstein wrote: > > But wouldn't it suck to be that user that actually does use '-c' > > correctly, and to have it suddenly gone in the middle of a "stable" > > release? >=20 > It is a broken mis-feature. Please tell me how you managed to > make it work properly. Do you have some sort of script that > sorts the output in order by dependency tree? Or do you actually > go through it every time and sort it by hand? Do you think that > it's justified that so many other users who didn't know what they > were doing shot themselves in the foot? >=20 > portupgrade is a much better tool. How about simply replacing -c > with a message suggesting use of that instead? These discussions happen every time something like this happens. The fact is that the development community have an agreement with the userbase that we will not do this. The fact that we all think that -c is shit doesn't change that. re@ need to make the call and everyone else, including myself, should shut the hell up (and doubly so, since re and eik have already agreed a resolution). Ceri --=20 It is not tinfoil, it is my new skin. I am a robot. --f8uTbadvzI+nQOZu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBG5QLocfcwTS3JF8RAmWMAJ9eyJZdwQv0jr9TUMQatfZmHgVWSQCgknXJ 3cdM1v83jCEI207w84h85w8= =dAvc -----END PGP SIGNATURE----- --f8uTbadvzI+nQOZu-- From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:06:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A2A016A4CE; Thu, 12 Aug 2004 16:06:30 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0EB943D66; Thu, 12 Aug 2004 16:06:29 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc13) with SMTP id <2004081216062701600ql5b2e>; Thu, 12 Aug 2004 16:06:29 +0000 Date: Thu, 12 Aug 2004 09:06:26 -0700 (PDT) From: Doug Barton To: Will Andrews In-Reply-To: <20040812154941.GJ32036@sirius.firepipe.net> Message-ID: <20040812085554.M773@ync.qbhto.arg> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812154941.GJ32036@sirius.firepipe.net> 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; format=flowed X-Mailman-Approved-At: Thu, 12 Aug 2004 18:47:17 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: "re@freebsd.org" cc: "cvs-src@freebsd.org" cc: Alfred Perlstein cc: "cvs-all@freebsd.org" cc: "src-committers@freebsd.org" cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.hextract.c Makefilesrc/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:06:30 -0000 On Thu, 12 Aug 2004, Will Andrews wrote: > On Wed, Aug 11, 2004 at 10:31:07PM -0700, Alfred Perlstein wrote: >> But wouldn't it suck to be that user that actually does use '-c' >> correctly, and to have it suddenly gone in the middle of a "stable" >> release? > > It is a broken mis-feature. Please tell me how you managed to > make it work properly. Do you have some sort of script that > sorts the output in order by dependency tree? Or do you actually > go through it every time and sort it by hand? Do you think that > it's justified that so many other users who didn't know what they > were doing shot themselves in the foot? I find this line of reasoning very interesting in light of the disagreement I'm currently having with eik about repo copying a port I'm working on. On the one hand, you and he are arguing that it's perfectly ok to break POLA in -stable because the new stuff is better, and the old stuff sucked anyway. On the other hand, eik and one other member of the portmgr team are arguing that an old port's revision history is so incredibly valuable that it must be preserved, even though it has little relevance to the new port. I'd find this funny if it weren't so sad. This is exactly the opposite of what it should be. In the past, the very definition of a -stable branch included that features were NEVER removed. It doesn't matter how much YOU as an individual developer don't like a feature, you have absolutely no way of knowing how many users depend on it, how they are using it, etc. On the other hand, repo copying a port has always been a judgement call, based on the merits of the individual case, repo bloat, etc., and now we're being told that this rule must remain inviolate. I think that this bodes very poorly for the project. Doug -- This .signature sanitized for your protection From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:21:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93F3016A4CE; Thu, 12 Aug 2004 16:21:48 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 503F443D2D; Thu, 12 Aug 2004 16:21:48 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 3B18F5C91C; Thu, 12 Aug 2004 09:21:48 -0700 (PDT) Date: Thu, 12 Aug 2004 09:21:48 -0700 From: Alfred Perlstein To: Doug Barton Message-ID: <20040812162148.GM57908@elvis.mu.org> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812053107.GK57908@elvis.mu.org> <20040812154941.GJ32036@sirius.firepipe.net> <20040812085554.M773@ync.qbhto.arg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040812085554.M773@ync.qbhto.arg> User-Agent: Mutt/1.4.2.1i X-Mailman-Approved-At: Thu, 12 Aug 2004 18:47:17 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: "re@freebsd.org" cc: "cvs-src@freebsd.org" cc: Will Andrews cc: "src-committers@freebsd.org" cc: "cvs-all@freebsd.org" cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:21:48 -0000 * Doug Barton [040812 09:06] wrote: > > I find this line of reasoning very interesting in light of the > disagreement I'm currently having with eik about repo copying a port I'm > working on. On the one hand, you and he are arguing that it's perfectly > ok to break POLA in -stable because the new stuff is better, and the old > stuff sucked anyway. On the other hand, eik and one other member of the > portmgr team are arguing that an old port's revision history is so > incredibly valuable that it must be preserved, even though it has > little relevance to the new port. I'd find this funny if it weren't so > sad. It's upsetting that the two concerns are: 1) Breaking POLA because somehow someone on the team knows what's better for users, somehow this is OK. 2) Preserving repo history, that the user couldn't give two shits about. I would have made another port, at least for a couple of months. I don't care about the history, as long as you're not taking away a widely used tool (no matter how much it "sucks") and forcing people to upgrade. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-src@FreeBSD.ORG Thu Aug 12 16:41:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19B916A4D0; Thu, 12 Aug 2004 16:41:45 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CE5743D49; Thu, 12 Aug 2004 16:41:45 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvIe5-0008uD-Vm; Thu, 12 Aug 2004 18:41:44 +0200 Date: Thu, 12 Aug 2004 18:43:21 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton From: Oliver Eikemeier In-Reply-To: <20040812085554.M773@ync.qbhto.arg> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 X-Mailman-Approved-At: Thu, 12 Aug 2004 18:47:17 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: re@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: Will Andrews cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:41:46 -0000 Doug Barton wrote: > I find this line of reasoning very interesting in light of the > disagreement I'm currently having with eik about repo copying a port > I'm working on. On the one hand, you and he are arguing that it's > perfectly ok to break POLA in -stable because the new stuff is better, > and the old stuff sucked anyway. Ehm, could you point me to the post where I said that? I seem to suffer from amnesia. Or is this your interpretion of "I will add an -c option to the C pkg_version code ASAP. I believe backing this out won't be beneficial for -STABLE users, since they'll loose a lot of features (and speed)." [...] > This is exactly the opposite of what it should be. In the past, the > very definition of a -stable branch included that features were NEVER > removed. It doesn't matter how much YOU as an individual developer > don't like a feature, you have absolutely no way of knowing how many > users depend on it, how they are using it, etc. What is your point here? I made a mistake that I recognized only in the last moment, and I'm working on fixing it. So? -Oliver [stuff unrelated to this thread deleted. please reply to ] From owner-cvs-src@FreeBSD.ORG Thu Aug 12 19:14:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3551016A4D9; Thu, 12 Aug 2004 19:14:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1778D43D48; Thu, 12 Aug 2004 19:14:11 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJEApX038370; Thu, 12 Aug 2004 19:14:10 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJEASP038369; Thu, 12 Aug 2004 19:14:10 GMT (envelope-from harti) Message-Id: <200408121914.i7CJEASP038369@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 19:14:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/usr.bin/make Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:14:11 -0000 harti 2004-08-12 19:14:10 UTC FreeBSD src repository Modified files: tools/regression/usr.bin/make Makefile Log: Now that make more correctly handles variable assignments in .MAKEFLAGS targets enable the regression test for this. Revision Changes Path 1.20 +1 -3 src/tools/regression/usr.bin/make/Makefile From owner-cvs-src@FreeBSD.ORG Thu Aug 12 19:17:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E562916A4CE; Thu, 12 Aug 2004 19:17:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C842143D39; Thu, 12 Aug 2004 19:17:29 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJHT6j038486; Thu, 12 Aug 2004 19:17:29 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJHTdV038485; Thu, 12 Aug 2004 19:17:29 GMT (envelope-from harti) Message-Id: <200408121917.i7CJHTdV038485@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 19:17:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/bsnmp/snmpd config.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:17:30 -0000 harti 2004-08-12 19:17:29 UTC FreeBSD src repository Modified files: (Branch: BEGEMOT) contrib/bsnmp/snmpd config.c Log: Vendor patch: don't dump core when the config file cannot be opened. Submitted by: Maxim Konovalov Revision Changes Path 1.1.1.5 +6 -1 src/contrib/bsnmp/snmpd/config.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 20:06:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DA5716A4CF; Thu, 12 Aug 2004 20:06:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 463D943D39; Thu, 12 Aug 2004 20:06:01 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CK61qt040043; Thu, 12 Aug 2004 20:06:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CK61qu040042; Thu, 12 Aug 2004 20:06:01 GMT (envelope-from ru) Message-Id: <200408122006.i7CK61qu040042@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Aug 2004 20:06:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/add Makefile src/usr.sbin/pkg_install/create Makefile src/usr.sbin/pkg_install/delete Makefile src/usr.sbin/pkg_install/lib Makefile src/usr.sbin/pkg_install/sign Makefile ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:06:01 -0000 ru 2004-08-12 20:06:01 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add Makefile usr.sbin/pkg_install/create Makefile usr.sbin/pkg_install/delete Makefile usr.sbin/pkg_install/info Makefile usr.sbin/pkg_install/lib Makefile usr.sbin/pkg_install/sign Makefile usr.sbin/pkg_install/version Makefile Log: Don't put DEBUG to CFLAGS, we have the standard DEBUG_FLAGS for this. Revision Changes Path 1.21 +1 -1 src/usr.sbin/pkg_install/add/Makefile 1.22 +1 -1 src/usr.sbin/pkg_install/create/Makefile 1.22 +1 -1 src/usr.sbin/pkg_install/delete/Makefile 1.20 +1 -1 src/usr.sbin/pkg_install/info/Makefile 1.17 +0 -2 src/usr.sbin/pkg_install/lib/Makefile 1.10 +1 -1 src/usr.sbin/pkg_install/sign/Makefile 1.16 +1 -1 src/usr.sbin/pkg_install/version/Makefile From owner-cvs-src@FreeBSD.ORG Thu Aug 12 20:14:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43FB216A4CE; Thu, 12 Aug 2004 20:14:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C5843D3F; Thu, 12 Aug 2004 20:14:21 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKELXC040299; Thu, 12 Aug 2004 20:14:21 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKEL2n040298; Thu, 12 Aug 2004 20:14:21 GMT (envelope-from sanpei) Message-Id: <200408122014.i7CKEL2n040298@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 12 Aug 2004 20:14:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:14:21 -0000 sanpei 2004-08-12 20:14:20 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: add support Sitecom CN-311 usb flash reader(aka SIIG_WINTERREADER) PR: kern/64722 Submitted by: Thiemo Nordenholz MFC after: 1 week Revision Changes Path 1.110 +4 -0 src/sys/dev/usb/umass.c 1.194 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Thu Aug 12 20:14:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA5316A4FF; Thu, 12 Aug 2004 20:14:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A1C43D31; Thu, 12 Aug 2004 20:14:50 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKEnkk040334; Thu, 12 Aug 2004 20:14:49 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKEn2I040333; Thu, 12 Aug 2004 20:14:49 GMT (envelope-from tegge) Message-Id: <200408122014.i7CKEn2I040333@repoman.freebsd.org> From: Tor Egge Date: Thu, 12 Aug 2004 20:14:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:14:50 -0000 tegge 2004-08-12 20:14:49 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c vm_map.c vm_map.h Log: The vm map lock is needed in vm_fault() after the page has been found, to avoid later changes before pmap_enter() and vm_fault_prefault() has completed. Simplify deadlock avoidance by not blocking on vm map relookup. In collaboration with: alc Revision Changes Path 1.191 +37 -51 src/sys/vm/vm_fault.c 1.356 +102 -6 src/sys/vm/vm_map.c 1.115 +2 -1 src/sys/vm/vm_map.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 20:37:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB86016A4CE; Thu, 12 Aug 2004 20:37:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEFB643D45; Thu, 12 Aug 2004 20:37:02 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKb2wD041015; Thu, 12 Aug 2004 20:37:02 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKb2NU041014; Thu, 12 Aug 2004 20:37:02 GMT (envelope-from marius) Message-Id: <200408122037.i7CKb2NU041014@repoman.freebsd.org> From: Marius Strobl Date: Thu, 12 Aug 2004 20:37:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/hme if_hme.c if_hme_pci.c if_hme_sbus.c if_hmevar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:37:03 -0000 marius 2004-08-12 20:37:02 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme.c if_hme_pci.c if_hme_sbus.c if_hmevar.h Log: - Use bus_space_subregion() rather than arithmetic on bus_space_handle_t. [1] - Properly use the error variable and return it on failure in the attach- routines. Reviewed by: tmm Inspired by: NetBSD [1] Revision Changes Path 1.30 +2 -2 src/sys/dev/hme/if_hme.c 1.14 +16 -11 src/sys/dev/hme/if_hme_pci.c 1.14 +12 -10 src/sys/dev/hme/if_hme_sbus.c 1.6 +0 -5 src/sys/dev/hme/if_hmevar.h From owner-cvs-src@FreeBSD.ORG Thu Aug 12 20:43:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5802816A4CE; Thu, 12 Aug 2004 20:43:32 +0000 (GMT) Received: from aslan.scsiguy.com (mail.scsiguy.com [63.229.232.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2B7743D1D; Thu, 12 Aug 2004 20:43:31 +0000 (GMT) (envelope-from gibbs@scsiguy.com) Received: from aslan.scsiguy.com (aslan.scsiguy.com [63.229.232.106]) by aslan.scsiguy.com (8.12.11/8.12.11) with ESMTP id i7CKhAOc023060; Thu, 12 Aug 2004 14:43:23 -0600 (MDT) (envelope-from gibbs@scsiguy.com) Date: Thu, 12 Aug 2004 14:43:10 -0600 From: "Justin T. Gibbs" To: Thomas Moestl , John-Mark Gurney Message-ID: <2CA8968CB91C695E852DB6E3@aslan.scsiguy.com> In-Reply-To: <20040812011010.GA4799@timesink.dyndns.org> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> <20040812011010.GA4799@timesink.dyndns.org> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Justin T. Gibbs" List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:43:32 -0000 > NetBSD has a nice clarification: > Synchronization operations are expressed from the perspective of > the host RAM, e.g., a device -> memory operation is a READ and a > memory -> device operation is a WRITE. > > I think that something of that variety is required, since there are > always the two opposite meanings of "reading from" and "reading into". First off, yes, our code is compatible with the NetBSD semantics. While their description is perhaps more accurate, I believe that the API as currently defined and the above description are still confusing. If the API is from the perspective of the memory, then a WRITE would mean the memory is updated by the operation, but it is not. Perhaps a better way to describe the current semantics is from the perspective of a "backing store". If you are writing a packet to the wire, you perform a PREWRITE. If you are reading a packet from the wire, you perform a PREREAD. A filesystem write requires the SCSI controller to use a PREWRITE primative. A filesystem read requires the SCSI controller to use PREREAD. etc. I believe this was the intention of the original API. In the long run, I'd like to come up with API names that are from the perspective of the DMA engine doing the work. These names should be different enough from the current API names so that the old API can be retained for compatibility with NetBSD and OpenBSD. I think that is the only way to really end the confusion. -- Justin From owner-cvs-src@FreeBSD.ORG Thu Aug 12 21:16:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A41BE16A4CE; Thu, 12 Aug 2004 21:16:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87D7643D45; Thu, 12 Aug 2004 21:16:44 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLGi1x042862; Thu, 12 Aug 2004 21:16:44 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLGiRW042861; Thu, 12 Aug 2004 21:16:44 GMT (envelope-from wilko) Message-Id: <200408122116.i7CLGiRW042861@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 12 Aug 2004 21:16:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:16:44 -0000 wilko 2004-08-12 21:16:44 UTC FreeBSD src repository Modified files: . access Log: Per his request to core@, re-enable mjacob's commit bit With hat: core-secretary Revision Changes Path 1.674 +1 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Thu Aug 12 22:05:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 242FD16A4CE; Thu, 12 Aug 2004 22:05:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C19143D46; Thu, 12 Aug 2004 22:05:48 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CM5mDo044328; Thu, 12 Aug 2004 22:05:48 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CM5lTf044327; Thu, 12 Aug 2004 22:05:47 GMT (envelope-from csjp) Message-Id: <200408122205.i7CM5lTf044327@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 12 Aug 2004 22:05:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 22:05:48 -0000 csjp 2004-08-12 22:05:47 UTC FreeBSD src repository Modified files: sys/netinet ip_fw.h ip_fw2.c Log: Add the ability to associate ipfw rules with a specific prison ID. Since the only thing truly unique about a prison is it's ID, I figured this would be the most granular way of handling this. This commit makes the following changes: - Adds tokenizing and parsing for the ``jail'' command line option to the ipfw(8) userspace utility. - Append the ipfw opcode list with O_JAIL. - While Iam here, add a comment informing others that if they want to add additional opcodes, they should append them to the end of the list to avoid ABI breakage. - Add ``fw_prid'' to the ipfw ucred cache structure. - When initializing ucred cache, if the process is jailed, set fw_prid to the prison ID, otherwise set it to -1. - Update man page to reflect these changes. This change was a strong motivator behind the ucred caching mechanism in ipfw. A sample usage of this new functionality could be: ipfw add count ip from any to any jail 2 It should be noted that because ucred based constraints are only implemented for TCP and UDP packets, the same applies for jail associations. Conceptual head nod by: pjd Reviewed by: rwatson Approved by: bmilekic (mentor) Revision Changes Path 1.87 +5 -1 src/sys/netinet/ip_fw.h 1.69 +9 -1 src/sys/netinet/ip_fw2.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 22:06:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF5716A4CE; Thu, 12 Aug 2004 22:06:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB80343D41; Thu, 12 Aug 2004 22:06:55 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CM6tqb044450; Thu, 12 Aug 2004 22:06:55 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CM6tIf044449; Thu, 12 Aug 2004 22:06:55 GMT (envelope-from csjp) Message-Id: <200408122206.i7CM6tIf044449@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 12 Aug 2004 22:06:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 22:06:56 -0000 csjp 2004-08-12 22:06:55 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 ipfw2.c Log: Add the ability to associate ipfw rules with a specific prison ID. Since the only thing truly unique about a prison is it's ID, I figured this would be the most granular way of handling this. This commit makes the following changes: - Adds tokenizing and parsing for the ``jail'' command line option to the ipfw(8) userspace utility. - Append the ipfw opcode list with O_JAIL. - While Iam here, add a comment informing others that if they want to add additional opcodes, they should append them to the end of the list to avoid ABI breakage. - Add ``fw_prid'' to the ipfw ucred cache structure. - When initializing ucred cache, if the process is jailed, set fw_prid to the prison ID, otherwise set it to -1. - Update man page to reflect these changes. This change was a strong motivator behind the ucred caching mechanism in ipfw. A sample usage of this new functionality could be: ipfw add count ip from any to any jail 2 It should be noted that because ucred based constraints are only implemented for TCP and UDP packets, the same applies for jail associations. Conceptual head nod by: pjd Reviewed by: rwatson Approved by: bmilekic (mentor) Revision Changes Path 1.149 +4 -0 src/sbin/ipfw/ipfw.8 1.54 +22 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 23:17:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1EEB16A4CE; Thu, 12 Aug 2004 23:17:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D681843D46; Thu, 12 Aug 2004 23:17:09 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNH9Cm046179; Thu, 12 Aug 2004 23:17:09 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNH9AQ046178; Thu, 12 Aug 2004 23:17:09 GMT (envelope-from sanpei) Message-Id: <200408122317.i7CNH9AQ046178@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 12 Aug 2004 23:17:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:17:10 -0000 sanpei 2004-08-12 23:17:09 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: add support Frontier Labs NEX IA+ Digital Audio Player with USB CF card reader/writer PR: kern/70158 Submitted by: Bernd Strau. MFC after: 1 week Revision Changes Path 1.171 +9 -1 src/sys/cam/scsi/scsi_da.c From owner-cvs-src@FreeBSD.ORG Thu Aug 12 23:29:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E243D16A4CF; Thu, 12 Aug 2004 23:29:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C10C743D2F; Thu, 12 Aug 2004 23:29:22 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNTMI1050689; Thu, 12 Aug 2004 23:29:22 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNTMS2050685; Thu, 12 Aug 2004 23:29:22 GMT (envelope-from sanpei) Message-Id: <200408122329.i7CNTMS2050685@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 12 Aug 2004 23:29:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:29:23 -0000 sanpei 2004-08-12 23:29:22 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: add support for SanDisk Cruzer Mini 256MB USB 2.0 Flash Drive PR: kern/65438 Submitted by: Peter D. Quilty MFC after: 1 week Revision Changes Path 1.111 +4 -0 src/sys/dev/usb/umass.c 1.195 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-src@FreeBSD.ORG Thu Aug 12 23:48:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CEAA16A4CE; Thu, 12 Aug 2004 23:48:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40FCE43D45; Thu, 12 Aug 2004 23:48:26 +0000 (GMT) (envelope-from tackerman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNmQgd056757; Thu, 12 Aug 2004 23:48:26 GMT (envelope-from tackerman@repoman.freebsd.org) Received: (from tackerman@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNmQcJ056756; Thu, 12 Aug 2004 23:48:26 GMT (envelope-from tackerman) Message-Id: <200408122348.i7CNmQcJ056756@repoman.freebsd.org> From: Tony Ackerman Date: Thu, 12 Aug 2004 23:48:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_media.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:48:26 -0000 tackerman 2004-08-12 23:48:26 UTC FreeBSD src repository Modified files: sys/net if_media.h Log: Added two new media types for 10GBASE-SR and 10GBASE-LR Revision Changes Path 1.28 +5 -0 src/sys/net/if_media.h From owner-cvs-src@FreeBSD.ORG Fri Aug 13 00:53:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A0016A4CE; Fri, 13 Aug 2004 00:53:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B228943D5A; Fri, 13 Aug 2004 00:53:40 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D0reZN058425; Fri, 13 Aug 2004 00:53:40 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D0reTA058424; Fri, 13 Aug 2004 00:53:40 GMT (envelope-from julian) Message-Id: <200408130053.i7D0reTA058424@repoman.freebsd.org> From: Julian Elischer Date: Fri, 13 Aug 2004 00:53:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys cdefs.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 00:53:41 -0000 julian 2004-08-13 00:53:40 UTC FreeBSD src repository Modified files: sys/sys cdefs.h Log: Add a macro to define the size of a subsection of a structure. Used in fork1() and thr_create() Revision Changes Path 1.84 +2 -0 src/sys/sys/cdefs.h From owner-cvs-src@FreeBSD.ORG Fri Aug 13 00:57:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89DA616A4CE; Fri, 13 Aug 2004 00:57:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F4BD43D1D; Fri, 13 Aug 2004 00:57:43 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D0vhS9058739; Fri, 13 Aug 2004 00:57:43 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D0vhbM058738; Fri, 13 Aug 2004 00:57:43 GMT (envelope-from julian) Message-Id: <200408130057.i7D0vhbM058738@repoman.freebsd.org> From: Julian Elischer Date: Fri, 13 Aug 2004 00:57:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_smp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 00:57:43 -0000 julian 2004-08-13 00:57:43 UTC FreeBSD src repository Modified files: sys/kern subr_smp.c Log: Don't keep evaluating our own cpu mask.. it's not likely to have changed.... Revision Changes Path 1.188 +3 -2 src/sys/kern/subr_smp.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 01:44:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AA0F16A4CE; Fri, 13 Aug 2004 01:44:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7970343D45; Fri, 13 Aug 2004 01:44:09 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D1i9gj060042; Fri, 13 Aug 2004 01:44:09 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D1i9Nc060041; Fri, 13 Aug 2004 01:44:09 GMT (envelope-from scottl) Message-Id: <200408130144.i7D1i9Nc060041@repoman.freebsd.org> From: Scott Long Date: Fri, 13 Aug 2004 01:44:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c aac_pci.c aacreg.h aacvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 01:44:09 -0000 scottl 2004-08-13 01:44:09 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c aac_pci.c aacreg.h aacvar.h Log: Add support for the Adaptec RAID-On-Chip architecture. This in turn provides support for the Adaptec 2130S adapter. Thanks to Adaptec for providing hardware for this. Revision Changes Path 1.101 +91 -0 src/sys/dev/aac/aac.c 1.48 +9 -2 src/sys/dev/aac/aac_pci.c 1.18 +15 -0 src/sys/dev/aac/aacreg.h 1.46 +3 -1 src/sys/dev/aac/aacvar.h From owner-cvs-src@FreeBSD.ORG Fri Aug 13 02:50:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AFA16A4CE; Fri, 13 Aug 2004 02:50:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5646643D3F; Fri, 13 Aug 2004 02:50:59 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D2oxRt062290; Fri, 13 Aug 2004 02:50:59 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D2oxme062289; Fri, 13 Aug 2004 02:50:59 GMT (envelope-from csjp) Message-Id: <200408130250.i7D2oxme062289@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Fri, 13 Aug 2004 02:50:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipfw ipfw.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 02:50:59 -0000 csjp 2004-08-13 02:50:59 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 Log: Remove trailing whitespace and change "prisoniD" to "prisonID". Pointed out by: simon Approved by: bmilekic (mentor) Revision Changes Path 1.150 +2 -2 src/sbin/ipfw/ipfw.8 From owner-cvs-src@FreeBSD.ORG Fri Aug 13 03:55:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E36516A4D7; Fri, 13 Aug 2004 03:55:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DE2943D4C; Fri, 13 Aug 2004 03:55:36 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D3tarL065770; Fri, 13 Aug 2004 03:55:36 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D3ta3A065769; Fri, 13 Aug 2004 03:55:36 GMT (envelope-from scottl) Message-Id: <200408130355.i7D3ta3A065769@repoman.freebsd.org> From: Scott Long Date: Fri, 13 Aug 2004 03:55:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 aac.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 03:55:36 -0000 scottl 2004-08-13 03:55:36 UTC FreeBSD src repository Modified files: share/man/man4 aac.4 Log: Re-write some poorly written paragraphs. Document the 2130. Revision Changes Path 1.25 +13 -18 src/share/man/man4/aac.4 From owner-cvs-src@FreeBSD.ORG Fri Aug 13 04:54:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E1FC16A4CE; Fri, 13 Aug 2004 04:54:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D48A43D3F; Fri, 13 Aug 2004 04:54:53 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D4srU7068499; Fri, 13 Aug 2004 04:54:53 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D4srOH068498; Fri, 13 Aug 2004 04:54:53 GMT (envelope-from bmah) Message-Id: <200408130454.i7D4srOH068498@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 04:54:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 04:54:53 -0000 bmah 2004-08-13 04:54:53 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: More wording, grammar, and punctuation tweaks. No major content changes, although one release note, about udav(4) promiscuous mode, was deleted as it was redundant (the driver itself is new and this fact has its own note). Revision Changes Path 1.759 +40 -40 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Fri Aug 13 05:38:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF62F16A4CE; Fri, 13 Aug 2004 05:38:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CBA243D5D; Fri, 13 Aug 2004 05:38:44 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D5ciLi069648; Fri, 13 Aug 2004 05:38:44 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D5ciLc069647; Fri, 13 Aug 2004 05:38:44 GMT (envelope-from tjr) Message-Id: <200408130538.i7D5ciLc069647@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 13 Aug 2004 05:38:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gzip inflate.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 05:38:44 -0000 tjr 2004-08-13 05:38:44 UTC FreeBSD src repository Modified files: gnu/usr.bin/gzip inflate.c Log: Bring in fix from gzip 1.3.3 to avoid crashes when processing certain corrupt input files: 1999-06-25 Paul Eggert * inflate.c (huft_build): Set n to length of v, to detect improper tables. Don't accidentally grow j past z. MFC after: 3 days Revision Changes Path 1.9 +8 -6 src/gnu/usr.bin/gzip/inflate.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17CD216A4CE; Fri, 13 Aug 2004 06:21:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA23343D31; Fri, 13 Aug 2004 06:21:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LJWj070783; Fri, 13 Aug 2004 06:21:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LJcP070782; Fri, 13 Aug 2004 06:21:19 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LJcP070782@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpivar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:20 -0000 njl 2004-08-13 06:21:19 UTC FreeBSD src repository Modified files: sys/dev/acpica acpivar.h Log: MPSAFE locking * Add and comment our locking primitives. The mutex primitives use a a static mutex and the serialization ones use a static sx lock. A global acpi_mutex is used for access to global resources (i.e., writes to the SMI_CMD register.) * Remove 4.x compat defines. Revision Changes Path 1.79 +33 -28 src/sys/dev/acpica/acpivar.h From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A30716A4E8; Fri, 13 Aug 2004 06:21:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F8FE43D1F; Fri, 13 Aug 2004 06:21:32 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LWl5070821; Fri, 13 Aug 2004 06:21:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LWPb070820; Fri, 13 Aug 2004 06:21:32 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LWPb070820@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:32 -0000 njl 2004-08-13 06:21:32 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: MPSAFE locking * Serialize calls to acpi_alloc_resource(), acpi_release_resource(), acpi_Enable(), acpi_Disable(), and acpi_debug_sysctl(). * Acquire the ACPI mutex in acpi_register_ioctl(), acpi_deregister_ioctl(), and acpiioctl(). * Acquire the mutex while disabling subsequent requests to enter a sleep state in acpi_SetSleepState(). * Be sure to re-enable sleep requests and don't run resume methods when the current request fails. * Don't check if sleep requests are disabled in the ACPIIO_SETSLPSTATE ioctl. acpi_SetSleepState() does this for us. * Remove the acquisition of Giant from the struct cdevsw. * Remove the ACPI_USE_THREADS option. Revision Changes Path 1.186 +79 -35 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D92D16A594; Fri, 13 Aug 2004 06:21:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F12C943D39; Fri, 13 Aug 2004 06:21:36 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6Lap1070855; Fri, 13 Aug 2004 06:21:36 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Laps070854; Fri, 13 Aug 2004 06:21:36 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Laps070854@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_acad.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:37 -0000 njl 2004-08-13 06:21:36 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: MPSAFE locking * Serialize notification of acline changes in acpi_acad_get_status(). * Remove the initializing flag. With the locking, we don't need to push off requests for the acline before initialization is done. * Don't check device_get_softc(), it can't return NULL. Revision Changes Path 1.30 +15 -29 src/sys/dev/acpica/acpi_acad.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83D6616A4CE; Fri, 13 Aug 2004 06:21:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6361A43D49; Fri, 13 Aug 2004 06:21:41 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LfUk070889; Fri, 13 Aug 2004 06:21:41 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Lf0w070888; Fri, 13 Aug 2004 06:21:41 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Lf0w070888@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_battery.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:41 -0000 njl 2004-08-13 06:21:41 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c Log: MPSAFE locking * Serialize acpi_battery_get_battdesc(), acpi_battery_register(), and acpi_battery_remove(). * Assert that the sx lock is held in acpi_batteries_init(). * Remove check for device_get_softc() returning NULL. Revision Changes Path 1.10 +53 -36 src/sys/dev/acpica/acpi_battery.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9257A16A6C9; Fri, 13 Aug 2004 06:21:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8663F43D5A; Fri, 13 Aug 2004 06:21:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LiR2070923; Fri, 13 Aug 2004 06:21:44 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LiGC070922; Fri, 13 Aug 2004 06:21:44 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LiGC070922@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_cmbat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:45 -0000 njl 2004-08-13 06:21:44 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cmbat.c Log: MPSAFE locking * Serialize ops in acpi_cmbat_notify_handler(), acpi_cmbat_ioctl(), acpi_cmbat_init_battery(), and acpi_cmbat_get_battinfo(). * Get the softc directly in acpi_cmbat_get_total_battinfo() rather than build an array of them. * Don't queue a _BIF query after receiving a notify. Since we clear the timespec, a _BIF query will be done in the context of the next caller. * Add asserts to leaf functions that operate on shared data. * Remove the bst/bif updating flags now that we hold the lock over the full query. * Explain various comments in more detail. Revision Changes Path 1.35 +125 -169 src/sys/dev/acpica/acpi_cmbat.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:48 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF2C616A558; Fri, 13 Aug 2004 06:21:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDA0543D2D; Fri, 13 Aug 2004 06:21:47 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LlQP070957; Fri, 13 Aug 2004 06:21:47 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Llwr070956; Fri, 13 Aug 2004 06:21:47 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Llwr070956@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_cpu.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:48 -0000 njl 2004-08-13 06:21:47 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cpu.c Log: MPSAFE locking * Hold the ACPI lock over table register writes. * Serialize calls to acpi_cpu_throttle_set() and the sysctls. Revision Changes Path 1.42 +14 -15 src/sys/dev/acpica/acpi_cpu.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D40716A4CF; Fri, 13 Aug 2004 06:21:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CE8843D39; Fri, 13 Aug 2004 06:21:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LrLo070991; Fri, 13 Aug 2004 06:21:53 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LriG070990; Fri, 13 Aug 2004 06:21:53 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LriG070990@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_ec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:56 -0000 njl 2004-08-13 06:21:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_ec.c Log: MPSAFE locking * Use the common serialization macros instead of rolling our own. * Increase the coverage of the lock in EcSpaceHandler() to cover the entire loop to avoid dropping the lock when reading more than one byte. Revision Changes Path 1.59 +19 -21 src/sys/dev/acpica/acpi_ec.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:21:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B82E16A799; Fri, 13 Aug 2004 06:21:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA1CA43D46; Fri, 13 Aug 2004 06:21:55 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6Ltf3071025; Fri, 13 Aug 2004 06:21:55 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Ltfg071024; Fri, 13 Aug 2004 06:21:55 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Ltfg071024@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_lid.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:57 -0000 njl 2004-08-13 06:21:55 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_lid.c Log: MPSAFE locking * Serialize notifying the user in acpi_lid_notify_status_changed(). This way multiple lid events occur in order. * Add an initialization pass to get the lid status at boot-time. This pass does not notify any apps but gets the initial status. Revision Changes Path 1.26 +33 -15 src/sys/dev/acpica/acpi_lid.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CC3716A7BD; Fri, 13 Aug 2004 06:21:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFCBE43D31; Fri, 13 Aug 2004 06:21:58 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LwpW071059; Fri, 13 Aug 2004 06:21:58 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LwYd071058; Fri, 13 Aug 2004 06:21:58 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LwYd071058@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:01 -0000 njl 2004-08-13 06:21:58 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci.c Log: MPSAFE locking * Serialize access to acpi_pci_set_powerstate_method(). Revision Changes Path 1.23 +10 -4 src/sys/dev/acpica/acpi_pci.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E2D216A51D; Fri, 13 Aug 2004 06:22:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CDF543D4C; Fri, 13 Aug 2004 06:22:04 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6M4LA071097; Fri, 13 Aug 2004 06:22:04 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6M4nZ071096; Fri, 13 Aug 2004 06:22:04 GMT (envelope-from njl) Message-Id: <200408130622.i7D6M4nZ071096@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:06 -0000 njl 2004-08-13 06:22:03 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: MPSAFE locking * Serialize access to acpi_pci_link_config(), acpi_pci_find_prt(), acpi_pci_link_route(), and acpi_pci_link_resume(). * Add lock assertions to all functions called by them. Revision Changes Path 1.23 +27 -6 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A409116A691; Fri, 13 Aug 2004 06:22:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 832E243D41; Fri, 13 Aug 2004 06:22:07 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6M79f071131; Fri, 13 Aug 2004 06:22:07 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6M7Qj071130; Fri, 13 Aug 2004 06:22:07 GMT (envelope-from njl) Message-Id: <200408130622.i7D6M7Qj071130@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pcib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:08 -0000 njl 2004-08-13 06:22:07 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pcib.c Log: MPSAFE locking * Serialize calls to acpi_pcib_route_interrupt(). * Note that acpi_pcib_attach() should not be called concurrently. Revision Changes Path 1.50 +9 -0 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CD4E16A8E6; Fri, 13 Aug 2004 06:22:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43DC343D5A; Fri, 13 Aug 2004 06:22:10 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MA51071165; Fri, 13 Aug 2004 06:22:10 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MA1r071164; Fri, 13 Aug 2004 06:22:10 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MA1r071164@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_powerres.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:11 -0000 njl 2004-08-13 06:22:10 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_powerres.c Log: MPSAFE locking * Serialize acpi_pwr_switch_consumer() and acpi_pwr_wake_enable(). * Make acpi_pwr_switch_consumer() have a single exit point. * Add assertions to the leaf functions they call. * Fix a memory leak in acpi_pwr_deregister_consumer(). However, it is currently ifdefed out so this code was unused. Revision Changes Path 1.26 +55 -33 src/sys/dev/acpica/acpi_powerres.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9E4D16A4FF; Fri, 13 Aug 2004 06:22:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8861843D53; Fri, 13 Aug 2004 06:22:13 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MDia071199; Fri, 13 Aug 2004 06:22:13 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MDiY071198; Fri, 13 Aug 2004 06:22:13 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MDiY071198@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_resource.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:17 -0000 njl 2004-08-13 06:22:13 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_resource.c Log: MPSAFE locking: Add a comment that we need resource list and device_t refcounting/locking. Revision Changes Path 1.28 +1 -0 src/sys/dev/acpica/acpi_resource.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD25E16A966; Fri, 13 Aug 2004 06:22:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44AC343D5F; Fri, 13 Aug 2004 06:22:17 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MHnE071233; Fri, 13 Aug 2004 06:22:17 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MHFM071232; Fri, 13 Aug 2004 06:22:17 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MHFM071232@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_thermal.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:18 -0000 njl 2004-08-13 06:22:17 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_thermal.c Log: MPSAFE locking * Restructure the event handling path. acpi_tz_thread() now calls acpi_tz_timeout() any time an event occurs. acpi_tz_timeout() checks the flags and calls acpi_tz_power_profile(), acpi_tz_establish(), and acpi_tz_monitor() as appropriate. Notifies only do a wakeup and let acpi_tz_thread() do the actual work. This path is cleaner and allows locking since the call path is now always a D.A.G. * Add the acpi_tz_signal() function to set flags and wake the thread. * Remove the tz_tmp_updating flag since calls are serialized by acpi_tz_thread(). * Remove Giant locking. Revision Changes Path 1.48 +109 -121 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7169916A9BD; Fri, 13 Aug 2004 06:22:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2888543D53; Fri, 13 Aug 2004 06:22:20 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MKnV071267; Fri, 13 Aug 2004 06:22:20 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MK7o071266; Fri, 13 Aug 2004 06:22:20 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MK7o071266@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_video.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:23 -0000 njl 2004-08-13 06:22:20 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_video.c Log: MPSAFE locking * Serialize operations in acpi_video_bind_outputs(), acpi_video_detach(), acpi_video_notify_handler(), acpi_video_power_profile(), and the sysctls. The main goal is to protect the shared device list and prevent conflicting settings. * Add assertions that the sx lock is held in the leaf functions. Revision Changes Path 1.8 +48 -24 src/sys/dev/acpica/acpi_video.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB47A16A560; Fri, 13 Aug 2004 06:22:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 636DF43D41; Fri, 13 Aug 2004 06:22:24 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MOA2071301; Fri, 13 Aug 2004 06:22:24 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MOgl071300; Fri, 13 Aug 2004 06:22:24 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MOgl071300@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdInterrupt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:30 -0000 njl 2004-08-13 06:22:24 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdInterrupt.c Log: MPSAFE locking * Remove the interrupt wrapper that locked Giant and call the handler directly. Mark the handler as MPSAFE. * Don't attempt to detect if a handler is installed. Leave that to the bus_alloc_resource() function. Revision Changes Path 1.18 +2 -22 src/sys/dev/acpica/Osd/OsdInterrupt.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:30 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8FA116A745; Fri, 13 Aug 2004 06:22:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86E2443D45; Fri, 13 Aug 2004 06:22:26 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MQH9071335; Fri, 13 Aug 2004 06:22:26 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MQDm071334; Fri, 13 Aug 2004 06:22:26 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MQDm071334@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdSchedule.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:31 -0000 njl 2004-08-13 06:22:26 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdSchedule.c Log: MPSAFE locking * Simplify taskqueue locking. * Don't acquire Giant around calls to the taskqueue function. * Remove 4.x compatibility routines. Revision Changes Path 1.29 +9 -38 src/sys/dev/acpica/Osd/OsdSchedule.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C665E16A74B; Fri, 13 Aug 2004 06:22:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 968FB43D58; Fri, 13 Aug 2004 06:22:29 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MTe5071373; Fri, 13 Aug 2004 06:22:29 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MT31071372; Fri, 13 Aug 2004 06:22:29 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MT31071372@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_asus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:38 -0000 njl 2004-08-13 06:22:29 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_asus.c Log: MPSAFE locking * Serialize access to the sysctl routines and the notify handler. Revision Changes Path 1.11 +10 -0 src/sys/i386/acpica/acpi_asus.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:42 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D90416A5E7; Fri, 13 Aug 2004 06:22:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAF6A43D49; Fri, 13 Aug 2004 06:22:31 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MVgl071407; Fri, 13 Aug 2004 06:22:31 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MVKl071406; Fri, 13 Aug 2004 06:22:31 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MVKl071406@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_panasonic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:43 -0000 njl 2004-08-13 06:22:31 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_panasonic.c Log: MPSAFE locking * Serialize access to the sysctl routines and the notify handler * Assert that the sx lock is held in any functions they call. Revision Changes Path 1.3 +15 -2 src/sys/i386/acpica/acpi_panasonic.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:22:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72BB816AADE; Fri, 13 Aug 2004 06:22:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8E843D39; Fri, 13 Aug 2004 06:22:35 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MZpl071442; Fri, 13 Aug 2004 06:22:35 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MZHY071441; Fri, 13 Aug 2004 06:22:35 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MZHY071441@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_toshiba.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:46 -0000 njl 2004-08-13 06:22:35 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_toshiba.c Log: MPSAFE locking * Serialize access to the sysctl routines and the notify handler * Assert that the sx lock is held in any functions they call. * Note that recursively calling to re-enable the hotkeys is sub-optimal. Revision Changes Path 1.13 +20 -2 src/sys/i386/acpica/acpi_toshiba.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:47:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3268016A4CF; Fri, 13 Aug 2004 06:47:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10BF743D31; Fri, 13 Aug 2004 06:47:34 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6lXf8072170; Fri, 13 Aug 2004 06:47:33 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6lXCG072169; Fri, 13 Aug 2004 06:47:33 GMT (envelope-from davidxu) Message-Id: <200408130647.i7D6lXCG072169@repoman.freebsd.org> From: David Xu Date: Fri, 13 Aug 2004 06:47:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthread_db libthr_db.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:47:34 -0000 davidxu 2004-08-13 06:47:33 UTC FreeBSD src repository Modified files: lib/libthread_db libthr_db.c Log: 1. Add missing functions: libthr_dbresume,libthr_dbsuspend. 2. Implement functions: libthr_db_thr_setfpregs, libthr_db_thr_setregs, libthr_db_ta_map_id2thr. 3. simplify libthr_db_thr_getfpregs, libthr_db_thr_getgregs. Revision Changes Path 1.2 +77 -20 src/lib/libthread_db/libthr_db.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 06:57:32 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2799A16A4CE; Fri, 13 Aug 2004 06:57:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0803B43D66; Fri, 13 Aug 2004 06:57:32 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6vVR6072572; Fri, 13 Aug 2004 06:57:31 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6vVs3072571; Fri, 13 Aug 2004 06:57:31 GMT (envelope-from imp) Message-Id: <200408130657.i7D6vVs3072571@repoman.freebsd.org> From: Warner Losh Date: Fri, 13 Aug 2004 06:57:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pccard i82365.h pcic.c pcic_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:57:32 -0000 imp 2004-08-13 06:57:31 UTC FreeBSD src repository Modified files: sys/pccard i82365.h pcic.c pcic_isa.c Log: Move PNP IDs back into oldcard files Revision Changes Path 1.28 +13 -0 src/sys/pccard/i82365.h 1.185 +0 -1 src/sys/pccard/pcic.c 1.26 +0 -1 src/sys/pccard/pcic_isa.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 07:23:03 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73E7616A4CE; Fri, 13 Aug 2004 07:23:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5504843D2F; Fri, 13 Aug 2004 07:23:03 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7N3r0073559; Fri, 13 Aug 2004 07:23:03 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7N3bN073558; Fri, 13 Aug 2004 07:23:03 GMT (envelope-from kientzle) Message-Id: <200408130723.i7D7N3bN073558@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 13 Aug 2004 07:23:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:23:03 -0000 kientzle 2004-08-13 07:23:03 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c Log: Make -I and --files-from be synonyms for -T Revision Changes Path 1.52 +4 -0 src/usr.bin/tar/bsdtar.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 07:28:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 420D616A4CE; Fri, 13 Aug 2004 07:28:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2212243D39; Fri, 13 Aug 2004 07:28:05 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7S5cE073801; Fri, 13 Aug 2004 07:28:05 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7S5CU073800; Fri, 13 Aug 2004 07:28:05 GMT (envelope-from roam) Message-Id: <200408130728.i7D7S5CU073800@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 13 Aug 2004 07:28:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libstand libstand.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:28:05 -0000 roam 2004-08-13 07:28:04 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) lib/libstand libstand.3 Log: MFC revisions 1.29 through 1.31: fix a printf() example and bump the document date. Revision Changes Path 1.5.2.12 +3 -3 src/lib/libstand/libstand.3 From owner-cvs-src@FreeBSD.ORG Fri Aug 13 07:39:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9612B16A4CE; Fri, 13 Aug 2004 07:39:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 755CE43D41; Fri, 13 Aug 2004 07:39:13 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7cwr1074151; Fri, 13 Aug 2004 07:38:58 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7cwZ4074150; Fri, 13 Aug 2004 07:38:58 GMT (envelope-from jmg) Message-Id: <200408130738.i7D7cwZ4074150@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 13 Aug 2004 07:38:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_event.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:39:13 -0000 jmg 2004-08-13 07:38:58 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: looks like rwatson forgot tabs... :) Revision Changes Path 1.76 +2 -2 src/sys/kern/kern_event.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 08:06:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D8B216A4CE; Fri, 13 Aug 2004 08:06:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1240043D41; Fri, 13 Aug 2004 08:06:35 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D86YbZ075108; Fri, 13 Aug 2004 08:06:34 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D86YJZ075107; Fri, 13 Aug 2004 08:06:34 GMT (envelope-from alc) Message-Id: <200408130806.i7D86YJZ075107@repoman.freebsd.org> From: Alan Cox Date: Fri, 13 Aug 2004 08:06:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 08:06:35 -0000 alc 2004-08-13 08:06:34 UTC FreeBSD src repository Modified files: sys/vm vm_map.c vm_map.h Log: Replace the linear search in vm_map_findspace() with an O(log n) algorithm built into the map entry splay tree. This replaces the first_free hint in struct vm_map with two fields in vm_map_entry: adj_free, the amount of free space following a map entry, and max_free, the maximum amount of free space in the entry's subtree. These fields make it possible to find a first-fit free region of a given size in one pass down the tree, so O(log n) amortized using splay trees. This significantly reduces the overhead in vm_map_findspace() for applications that mmap() many hundreds or thousands of regions, and has a negligible slowdown (0.1%) on buildworld. See, for example, the discussion of a micro-benchmark titled "Some mmap observations compared to Linux 2.6/OpenBSD" on -hackers in late October 2003. OpenBSD adopted this approach in March 2002, and NetBSD added it in November 2003, both with Red-Black trees. Submitted by: Mark W. Krentel Revision Changes Path 1.357 +212 -98 src/sys/vm/vm_map.c 1.116 +2 -1 src/sys/vm/vm_map.h From owner-cvs-src@FreeBSD.ORG Fri Aug 13 08:14:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D00916A4CE; Fri, 13 Aug 2004 08:14:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D35343D1F; Fri, 13 Aug 2004 08:14:27 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D8ERXT075314; Fri, 13 Aug 2004 08:14:27 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D8ERTl075313; Fri, 13 Aug 2004 08:14:27 GMT (envelope-from sos) Message-Id: <200408130814.i7D8ERTl075313@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 13 Aug 2004 08:14:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.h ata-chipset.c ata-dma.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 08:14:27 -0000 sos 2004-08-13 08:14:27 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.h ata-chipset.c ata-dma.c Log: Allow the use of a supplied function to set the PRD table. This is needed for new chips that supports 64bit addressing. Revision Changes Path 1.81 +11 -4 src/sys/dev/ata/ata-all.h 1.80 +5 -4 src/sys/dev/ata/ata-chipset.c 1.129 +14 -30 src/sys/dev/ata/ata-dma.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 09:10:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AC5416A4CF; Fri, 13 Aug 2004 09:10:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3864143D58; Fri, 13 Aug 2004 09:10:39 +0000 (GMT) (envelope-from roberto@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9AdGG076505; Fri, 13 Aug 2004 09:10:39 GMT (envelope-from roberto@repoman.freebsd.org) Received: (from roberto@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9AciV076504; Fri, 13 Aug 2004 09:10:38 GMT (envelope-from roberto) Message-Id: <200408130910.i7D9AciV076504@repoman.freebsd.org> From: Ollivier Robert Date: Fri, 13 Aug 2004 09:10:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ntp/ntptimeset Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:10:39 -0000 roberto 2004-08-13 09:10:38 UTC FreeBSD src repository Removed files: usr.sbin/ntp/ntptimeset Makefile Log: ntptimeset is not build anymore by default so remove it for the time being. Prodded by: imp Revision Changes Path 1.4 +0 -19 src/usr.sbin/ntp/ntptimeset/Makefile (dead) From owner-cvs-src@FreeBSD.ORG Fri Aug 13 09:27:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0410016A4CE; Fri, 13 Aug 2004 09:27:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D410143D31; Fri, 13 Aug 2004 09:27:21 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9RLbR077037; Fri, 13 Aug 2004 09:27:21 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9RLIF077036; Fri, 13 Aug 2004 09:27:21 GMT (envelope-from harti) Message-Id: <200408130927.i7D9RLIF077036@repoman.freebsd.org> From: Hartmut Brandt Date: Fri, 13 Aug 2004 09:27:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/atm README RunTest.sh src/tools/regression/atm/proto_cc RunTest.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:27:22 -0000 harti 2004-08-13 09:27:21 UTC FreeBSD src repository Modified files: tools/regression/atm README RunTest.sh Added files: tools/regression/atm/proto_cc RunTest.sh Log: Add a regression test for the ATM call control stuff. Revision Changes Path 1.2 +1 -0 src/tools/regression/atm/README 1.3 +2 -0 src/tools/regression/atm/RunTest.sh 1.1 +10 -0 src/tools/regression/atm/proto_cc/RunTest.sh (new) From owner-cvs-src@FreeBSD.ORG Fri Aug 13 09:40:58 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92D516A4CE; Fri, 13 Aug 2004 09:40:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C81843D5E; Fri, 13 Aug 2004 09:40:58 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9ewii077647; Fri, 13 Aug 2004 09:40:58 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9ewwq077646; Fri, 13 Aug 2004 09:40:58 GMT (envelope-from fjoe) Message-Id: <200408130940.i7D9ewwq077646@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:40:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files options src/sys/modules/geom Makefile src/sys/modules/geom/geom_uzip Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:40:58 -0000 fjoe 2004-08-13 09:40:58 UTC FreeBSD src repository Modified files: sys/conf NOTES files options sys/modules/geom Makefile Added files: sys/geom/uzip g_uzip.c sys/modules/geom/geom_uzip Makefile Log: Add geom_uzip -- geom class that implements read-only compressed disks. Currently supports cloop V2.0 disk compression format. May support more formats in future. Revision Changes Path 1.1258 +1 -0 src/sys/conf/NOTES 1.940 +2 -0 src/sys/conf/files 1.472 +1 -0 src/sys/conf/options 1.1 +521 -0 src/sys/geom/uzip/g_uzip.c (new) 1.11 +1 -0 src/sys/modules/geom/Makefile 1.1 +9 -0 src/sys/modules/geom/geom_uzip/Makefile (new) From owner-cvs-src@FreeBSD.ORG Fri Aug 13 09:53:52 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD66C16A4CE; Fri, 13 Aug 2004 09:53:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05D943D41; Fri, 13 Aug 2004 09:53:52 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9rqBo078158; Fri, 13 Aug 2004 09:53:52 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9rqkh078157; Fri, 13 Aug 2004 09:53:52 GMT (envelope-from fjoe) Message-Id: <200408130953.i7D9rqkh078157@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:53:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/geom_uzip .cvsignore Makefile runtests.sh test-1.img.gz.uue test-1.sh test-2.sh src/tools/regression/geom_uzip/etalon etalon.txt X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:53:52 -0000 fjoe 2004-08-13 09:53:52 UTC FreeBSD src repository Added files: tools/regression/geom_uzip .cvsignore Makefile runtests.sh test-1.img.gz.uue test-1.sh test-2.sh tools/regression/geom_uzip/etalon etalon.txt Log: Regression test for geom_uzip. Revision Changes Path 1.1 +2 -0 src/tools/regression/geom_uzip/.cvsignore (new) 1.1 +21 -0 src/tools/regression/geom_uzip/Makefile (new) 1.1 +43 -0 src/tools/regression/geom_uzip/etalon/etalon.txt (new) 1.1 +10 -0 src/tools/regression/geom_uzip/runtests.sh (new) 1.1 +72 -0 src/tools/regression/geom_uzip/test-1.img.gz.uue (new) 1.1 +35 -0 src/tools/regression/geom_uzip/test-1.sh (new) 1.1 +15 -0 src/tools/regression/geom_uzip/test-2.sh (new) From owner-cvs-src@FreeBSD.ORG Fri Aug 13 09:54:29 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD8B616A4CE; Fri, 13 Aug 2004 09:54:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB76243D5D; Fri, 13 Aug 2004 09:54:29 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9sT1Y078206; Fri, 13 Aug 2004 09:54:29 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9sTWD078205; Fri, 13 Aug 2004 09:54:29 GMT (envelope-from fjoe) Message-Id: <200408130954.i7D9sTWD078205@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:54:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:54:29 -0000 fjoe 2004-08-13 09:54:29 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: I was born in USSR. Revision Changes Path 1.138 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Fri Aug 13 09:56:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2E4C16A4CE; Fri, 13 Aug 2004 09:56:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90DC743D49; Fri, 13 Aug 2004 09:56:22 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9uM7K078320; Fri, 13 Aug 2004 09:56:22 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9uMEk078319; Fri, 13 Aug 2004 09:56:22 GMT (envelope-from fjoe) Message-Id: <200408130956.i7D9uMEk078319@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:56:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/geom_uzip test-1.img.gz.uue X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:56:22 -0000 fjoe 2004-08-13 09:56:22 UTC FreeBSD src repository Modified files: tools/regression/geom_uzip test-1.img.gz.uue Log: Regen. Revision Changes Path 1.2 +47 -46 src/tools/regression/geom_uzip/test-1.img.gz.uue From owner-cvs-src@FreeBSD.ORG Fri Aug 13 10:05:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDDF016A4CF; Fri, 13 Aug 2004 10:05:35 +0000 (GMT) Received: from imap.univie.ac.at (mail.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4B8243D1D; Fri, 13 Aug 2004 10:05:34 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from pcle2.cc.univie.ac.at (pcle2.cc.univie.ac.at [131.130.2.177]) by imap.univie.ac.at (8.12.10/8.12.10) with ESMTP id i7DA5KNx212684; Fri, 13 Aug 2004 12:05:23 +0200 Date: Fri, 13 Aug 2004 12:05:20 +0200 (CEST) From: Lukas Ertl To: Max Khon In-Reply-To: <200408130940.i7D9ewwq077646@repoman.freebsd.org> Message-ID: <20040813120505.L68167@pcle2.cc.univie.ac.at> References: <200408130940.i7D9ewwq077646@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-DCC-ZID-Univie-Metrics: mx9.univie.ac.at 4249; Body=4 Fuz1=4 Fuz2=4 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:05:35 -0000 On Fri, 13 Aug 2004, Max Khon wrote: > Add geom_uzip -- geom class that implements read-only compressed disks. > Currently supports cloop V2.0 disk compression format. > May support more formats in future. Wow, sounds cool. :-) cheers, le -- Lukas Ertl http://homepage.univie.ac.at/l.ertl/ le@FreeBSD.org http://people.freebsd.org/~le/ From owner-cvs-src@FreeBSD.ORG Fri Aug 13 10:14:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14A4F16A4CE; Fri, 13 Aug 2004 10:14:53 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCD443D1D; Fri, 13 Aug 2004 10:14:52 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i7DAEnXE059113; Fri, 13 Aug 2004 12:14:50 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Max Khon From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 13 Aug 2004 09:56:22 -0000." <200408130956.i7D9uMEk078319@repoman.freebsd.org> Date: Fri, 13 Aug 2004 12:14:49 +0200 Message-ID: <59112.1092392089@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/regression/geom_uzip test-1.img.gz.uue X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:14:53 -0000 In message <200408130956.i7D9uMEk078319@repoman.freebsd.org>, Max Khon writes: >fjoe 2004-08-13 09:56:22 UTC > > FreeBSD src repository > > Modified files: > tools/regression/geom_uzip test-1.img.gz.uue > Log: > Regen. I would actually have preferred if you have used the stuff in regression/geom for this, but any regression test is better than no regression test. -- 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. From owner-cvs-src@FreeBSD.ORG Fri Aug 13 10:19:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3ABB16A4CE; Fri, 13 Aug 2004 10:19:15 +0000 (GMT) Received: from neo.samodelkin.net (samodelkin.net [81.176.202.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9374243D58; Fri, 13 Aug 2004 10:19:15 +0000 (GMT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id 9E4841706A; Fri, 13 Aug 2004 17:19:14 +0700 (NOVST) Date: Fri, 13 Aug 2004 17:19:14 +0700 From: Max Khon To: Poul-Henning Kamp Message-ID: <20040813101914.GB50469@samodelkin.net> References: <200408130956.i7D9uMEk078319@repoman.freebsd.org> <59112.1092392089@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <59112.1092392089@critter.freebsd.dk> User-Agent: Mutt/1.4.2i cc: Max Khon cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/tools/regression/geom_uzip test-1.img.gz.uue X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:19:16 -0000 Hi! On Fri, Aug 13, 2004 at 12:14:49PM +0200, Poul-Henning Kamp wrote: > >fjoe 2004-08-13 09:56:22 UTC > > > > FreeBSD src repository > > > > Modified files: > > tools/regression/geom_uzip test-1.img.gz.uue > > Log: > > Regen. > > I would actually have preferred if you have used the stuff in > regression/geom for this, but any regression test is better than > no regression test. I'll take look at it! /fjoe From owner-cvs-src@FreeBSD.ORG Fri Aug 13 10:31:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A256616A4CE; Fri, 13 Aug 2004 10:31:39 +0000 (GMT) Received: from neo.samodelkin.net (samodelkin.net [81.176.202.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5284443D54; Fri, 13 Aug 2004 10:31:39 +0000 (GMT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id 9EFB11706A; Fri, 13 Aug 2004 17:31:37 +0700 (NOVST) Date: Fri, 13 Aug 2004 17:31:37 +0700 From: Max Khon To: Lukas Ertl Message-ID: <20040813103137.GB50664@samodelkin.net> References: <200408130940.i7D9ewwq077646@repoman.freebsd.org> <20040813120505.L68167@pcle2.cc.univie.ac.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040813120505.L68167@pcle2.cc.univie.ac.at> User-Agent: Mutt/1.4.2i cc: Max Khon cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:31:39 -0000 Hi! On Fri, Aug 13, 2004 at 12:05:20PM +0200, Lukas Ertl wrote: > > Add geom_uzip -- geom class that implements read-only compressed disks. > > Currently supports cloop V2.0 disk compression format. > > May support more formats in future. > > Wow, sounds cool. :-) By the way, I asked FreeSBIE (FreeBSD-based livecd system) developers to measure application startup times with and without geom_uzip. They are quite impressive (times are in minute and seconds): --------+----------+--------+ | w/o uzip | w/uzip | Boot | 1:26 | 1:04 | X | 41 | 9 | XFce | 1:17 | 18 | xterm | 13 | 2 | FireFox | 3:02 | 24 | --------+----------+--------+ /fjoe From owner-cvs-src@FreeBSD.ORG Fri Aug 13 12:14:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43BCB16A4CE; Fri, 13 Aug 2004 12:14:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244AD43D31; Fri, 13 Aug 2004 12:14:40 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCEeI6082352; Fri, 13 Aug 2004 12:14:40 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCEdv4082351; Fri, 13 Aug 2004 12:14:39 GMT (envelope-from rik) Message-Id: <200408131214.i7DCEdv4082351@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:14:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cx if_cx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:14:40 -0000 rik 2004-08-13 12:14:39 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c Log: White space cleanup. Revision Changes Path 1.29 +217 -217 src/sys/dev/cx/if_cx.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 12:22:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 008BB16A4CE; Fri, 13 Aug 2004 12:22:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D536343D5E; Fri, 13 Aug 2004 12:22:01 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCM1mN083018; Fri, 13 Aug 2004 12:22:01 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCM1MN083017; Fri, 13 Aug 2004 12:22:01 GMT (envelope-from rik) Message-Id: <200408131222.i7DCM1MN083017@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:22:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ctau if_ct.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:22:02 -0000 rik 2004-08-13 12:22:01 UTC FreeBSD src repository Modified files: sys/dev/ctau if_ct.c Log: White space cleanup. Revision Changes Path 1.13 +225 -225 src/sys/dev/ctau/if_ct.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 12:27:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37D8B16A4CE; Fri, 13 Aug 2004 12:27:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18F6F43D54; Fri, 13 Aug 2004 12:27:25 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCROLa083201; Fri, 13 Aug 2004 12:27:24 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCROYI083200; Fri, 13 Aug 2004 12:27:24 GMT (envelope-from rik) Message-Id: <200408131227.i7DCROYI083200@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:27:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:27:25 -0000 rik 2004-08-13 12:27:24 UTC FreeBSD src repository Modified files: sys/dev/cp if_cp.c Log: White space cleanup. Revision Changes Path 1.11 +375 -375 src/sys/dev/cp/if_cp.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 12:35:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 816B716A4CE; Fri, 13 Aug 2004 12:35:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6291143D48; Fri, 13 Aug 2004 12:35:53 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCZrgr084155; Fri, 13 Aug 2004 12:35:53 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCZr1W084154; Fri, 13 Aug 2004 12:35:53 GMT (envelope-from rik) Message-Id: <200408131235.i7DCZr1W084154@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:35:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cx if_cx.c src/sys/dev/ctau if_ct.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:35:53 -0000 rik 2004-08-13 12:35:52 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/ctau if_ct.c Log: Fix resource check while autodetection. Revision Changes Path 1.14 +6 -6 src/sys/dev/ctau/if_ct.c 1.30 +6 -6 src/sys/dev/cx/if_cx.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 12:59:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D19A516A4CE; Fri, 13 Aug 2004 12:59:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B15A443D2D; Fri, 13 Aug 2004 12:59:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCxksF084982; Fri, 13 Aug 2004 12:59:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCxkXS084981; Fri, 13 Aug 2004 12:59:46 GMT (envelope-from ru) Message-Id: <200408131259.i7DCxkXS084981@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 12:59:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:59:47 -0000 ru 2004-08-13 12:59:46 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Replaced a way outdated and unsafe sequence of upgrading the system from sources with the link to the relevant section in src/UPDATING. Revision Changes Path 1.27 +7 -40 src/share/man/man7/build.7 From owner-cvs-src@FreeBSD.ORG Fri Aug 13 13:09:39 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CD516A4CE; Fri, 13 Aug 2004 13:09:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C50A643D60; Fri, 13 Aug 2004 13:09:39 +0000 (GMT) (envelope-from csjp@freebsd.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) i7DD9dgh095132; Fri, 13 Aug 2004 13:09:39 GMT (envelope-from csjp@freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7DD9dsQ095131; Fri, 13 Aug 2004 13:09:39 GMT (envelope-from csjp@freebsd.org) X-Authentication-Warning: freefall.freebsd.org: csjp set sender to csjp@freebsd.org using -f Date: Fri, 13 Aug 2004 13:09:39 +0000 From: "Christian S.J. Peron" To: Alan Cox Message-ID: <20040813130939.GA94895@freefall.freebsd.org> References: <200408130806.i7D86YJZ075107@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408130806.i7D86YJZ075107@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/vm vm_map.c vm_map.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:09:40 -0000 Neat! On 13 Aug 2004 Alan Cox wrote: > alc 2004-08-13 08:06:34 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_map.c vm_map.h > Log: > Replace the linear search in vm_map_findspace() with an O(log n) > algorithm built into the map entry splay tree. This replaces the > first_free hint in struct vm_map with two fields in vm_map_entry: > adj_free, the amount of free space following a map entry, and > max_free, the maximum amount of free space in the entry's subtree. > These fields make it possible to find a first-fit free region of a > given size in one pass down the tree, so O(log n) amortized using > splay trees. > > This significantly reduces the overhead in vm_map_findspace() for > applications that mmap() many hundreds or thousands of regions, and > has a negligible slowdown (0.1%) on buildworld. See, for example, the > discussion of a micro-benchmark titled "Some mmap observations > compared to Linux 2.6/OpenBSD" on -hackers in late October 2003. > > OpenBSD adopted this approach in March 2002, and NetBSD added it in > November 2003, both with Red-Black trees. > > Submitted by: Mark W. Krentel > > Revision Changes Path > 1.357 +212 -98 src/sys/vm/vm_map.c > 1.116 +2 -1 src/sys/vm/vm_map.h -- Christian S.J. Peron csjp@FreeBSD.ORG FreeBSD Committer From owner-cvs-src@FreeBSD.ORG Fri Aug 13 13:14:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E497116A4CE; Fri, 13 Aug 2004 13:14:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C63EF43D45; Fri, 13 Aug 2004 13:14:05 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDE5o0085448; Fri, 13 Aug 2004 13:14:05 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDE5Jp085447; Fri, 13 Aug 2004 13:14:05 GMT (envelope-from ru) Message-Id: <200408131314.i7DDE5Jp085447@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 13:14:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:14:06 -0000 ru 2004-08-13 13:14:05 UTC FreeBSD src repository Modified files: . UPDATING Log: Proofreading the 4.x -> 5.x upgrade procedure. Revision Changes Path 1.341 +3 -3 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:18:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4B3316A4CE; Fri, 13 Aug 2004 14:18:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84C3843D53; Fri, 13 Aug 2004 14:18:24 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEIOkw088375; Fri, 13 Aug 2004 14:18:24 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEIOSf088374; Fri, 13 Aug 2004 14:18:24 GMT (envelope-from ru) Message-Id: <200408131418.i7DEIOSf088374@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:18:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/routed Makefile src/sbin/routed/rtquery Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:18:24 -0000 ru 2004-08-13 14:18:24 UTC FreeBSD src repository Modified files: sbin/routed Makefile sbin/routed/rtquery Makefile Log: Removed commented out bitrot. Revision Changes Path 1.16 +0 -1 src/sbin/routed/Makefile 1.14 +0 -1 src/sbin/routed/rtquery/Makefile From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:19:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E164616A4CF; Fri, 13 Aug 2004 14:19:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B162243D41; Fri, 13 Aug 2004 14:19:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEJCvx088442; Fri, 13 Aug 2004 14:19:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEJCVn088441; Fri, 13 Aug 2004 14:19:12 GMT (envelope-from ru) Message-Id: <200408131419.i7DEJCVn088441@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:19:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/ses Makefile.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:19:13 -0000 ru 2004-08-13 14:19:12 UTC FreeBSD src repository Modified files: share/examples/ses Makefile.inc Log: Removed COPTS with equivalent CFLAGS. While here, fixed setting of BINDIR. Revision Changes Path 1.2 +3 -3 src/share/examples/ses/Makefile.inc From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:21:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A60EF16A4CE; Fri, 13 Aug 2004 14:21:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86A7643D53; Fri, 13 Aug 2004 14:21:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DELnEK088665; Fri, 13 Aug 2004 14:21:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DELnWx088664; Fri, 13 Aug 2004 14:21:49 GMT (envelope-from ru) Message-Id: <200408131421.i7DELnWx088664@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:21:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/p1003_1b Makefilesrc/usr.sbin/i4b/isdnd Makefile src/usr.sbin/i4b/isdnmonitor Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:21:49 -0000 ru 2004-08-13 14:21:49 UTC FreeBSD src repository Modified files: tools/regression/p1003_1b Makefile usr.sbin/i4b/isdnd Makefile usr.sbin/i4b/isdnmonitor Makefile Log: Replaced COPTS by equivalent CFLAGS. Revision Changes Path 1.2 +1 -1 src/tools/regression/p1003_1b/Makefile 1.14 +7 -7 src/usr.sbin/i4b/isdnd/Makefile 1.9 +2 -2 src/usr.sbin/i4b/isdnmonitor/Makefile From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:30:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0B3916A4CE; Fri, 13 Aug 2004 14:30:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83D8243D58; Fri, 13 Aug 2004 14:30:26 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEUQ7T088979; Fri, 13 Aug 2004 14:30:26 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEUQqn088978; Fri, 13 Aug 2004 14:30:26 GMT (envelope-from ru) Message-Id: <200408131430.i7DEUQqn088978@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:30:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.README bsd.prog.mk src/sys/conf Makefile.powerpc kern.pre.mk kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:30:26 -0000 ru 2004-08-13 14:30:26 UTC FreeBSD src repository Modified files: share/mk bsd.README bsd.prog.mk sys/conf Makefile.powerpc kern.pre.mk kmod.mk Log: Removed COPTS support from kmod.mk and kern.pre.mk. COPTS support in bsd.prog.mk is preserved but discouraged. Revision Changes Path 1.27 +1 -1 src/share/mk/bsd.README 1.136 +1 -0 src/share/mk/bsd.prog.mk 1.270 +1 -1 src/sys/conf/Makefile.powerpc 1.56 +2 -2 src/sys/conf/kern.pre.mk 1.165 +1 -1 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:33:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 548CA16A4CE; Fri, 13 Aug 2004 14:33:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3810A43D41; Fri, 13 Aug 2004 14:33:04 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEX47w089150; Fri, 13 Aug 2004 14:33:04 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEX4MO089149; Fri, 13 Aug 2004 14:33:04 GMT (envelope-from roam) Message-Id: <200408131433.i7DEX4MO089149@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 13 Aug 2004 14:33:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mount.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:33:04 -0000 roam 2004-08-13 14:33:04 UTC FreeBSD src repository (doc,ports committer) Modified files: lib/libc/sys mount.2 Log: Document the MNT_SNAPSHOT mount flag with a cross-reference to mksnap_ffs(8). PR: 70402 Submitted by: James Raftery Revision Changes Path 1.40 +7 -1 src/lib/libc/sys/mount.2 From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:42:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A16F216A4CE; Fri, 13 Aug 2004 14:42:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8623743D1F; Fri, 13 Aug 2004 14:42:18 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEgIFR089532; Fri, 13 Aug 2004 14:42:18 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEgI5q089531; Fri, 13 Aug 2004 14:42:18 GMT (envelope-from roam) Message-Id: <200408131442.i7DEgI5q089531@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 13 Aug 2004 14:42:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/net if.c src/sys/pci if_xl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:42:18 -0000 roam 2004-08-13 14:42:18 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) sys/net if.c sys/pci if_xl.c Log: MFC if.c 1.198 and if_xl.c 1.179: Do not attempt to clean up data that has not been initialized yet. This fixes two kernel panics on boot when the xl driver fails to allocate bus/port/memory resources. Revision Changes Path 1.85.2.26 +15 -4 src/sys/net/if.c 1.72.2.30 +4 -2 src/sys/pci/if_xl.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:48:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6F5D16A4CE; Fri, 13 Aug 2004 14:48:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBAB643D2D; Fri, 13 Aug 2004 14:48:50 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEmoEg089703; Fri, 13 Aug 2004 14:48:50 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEmoo4089702; Fri, 13 Aug 2004 14:48:50 GMT (envelope-from ume) Message-Id: <200408131448.i7DEmoo4089702@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 13 Aug 2004 14:48:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/netinet ip_icmp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:48:51 -0000 ume 2004-08-13 14:48:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/netinet ip_icmp.c Log: MFC 1.93: do not send icmp response if the original packet is encrypted. Revision Changes Path 1.39.2.20 +3 -0 src/sys/netinet/ip_icmp.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 14:51:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC19E16A4CE; Fri, 13 Aug 2004 14:51:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FA4743D3F; Fri, 13 Aug 2004 14:51:45 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEpj5E089858; Fri, 13 Aug 2004 14:51:45 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEpjpG089857; Fri, 13 Aug 2004 14:51:45 GMT (envelope-from ume) Message-Id: <200408131451.i7DEpjpG089857@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 13 Aug 2004 14:51:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:51:45 -0000 ume 2004-08-13 14:51:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern uipc_syscalls.c Log: MFC 1.187: allow more than MLEN bytes for ancillary data to meet the requirement of Section 20.1 of RFC3542. Revision Changes Path 1.65.2.21 +4 -1 src/sys/kern/uipc_syscalls.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 15:09:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C718A16A4CE; Fri, 13 Aug 2004 15:09:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA85943D31; Fri, 13 Aug 2004 15:09:21 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DF9LbF090548; Fri, 13 Aug 2004 15:09:21 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DF9Lk0090547; Fri, 13 Aug 2004 15:09:21 GMT (envelope-from bmah) Message-Id: <200408131509.i7DF9Lk0090547@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 15:09:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:09:22 -0000 bmah 2004-08-13 15:09:21 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Miscellaneous edits. Mostly style, grammar, and punctuation fixes in the vein of my previous, recent commits. Updated release notes: Augmented sha(1)/rmd160(1) note, updated pf(4) pseudo-users, retweaked doscmd note to reinstate a missing word I deleted by accident [1] and add some more info. MFCs noted: ppp(8) LQM, ppp(8) set rad_alive. Pointed out by: "Eagle Eyes" ru [1] Revision Changes Path 1.760 +28 -20 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Fri Aug 13 15:13:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E17616A4CE; Fri, 13 Aug 2004 15:13:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 022B743D2D; Fri, 13 Aug 2004 15:13:12 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFDBOC090691; Fri, 13 Aug 2004 15:13:11 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFDBWt090690; Fri, 13 Aug 2004 15:13:11 GMT (envelope-from bmah) Message-Id: <200408131513.i7DFDBWt090690@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 15:13:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:13:12 -0000 bmah 2004-08-13 15:13:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: ppp(8) LQM, ppp(8) set rad_alive. Revision Changes Path 1.22.2.418 +10 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Fri Aug 13 16:46:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0959016A4CE; Fri, 13 Aug 2004 16:46:11 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E35943D58; Fri, 13 Aug 2004 16:46:10 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DGk8cQ048795 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 09:46:08 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DGk85Z009734; Fri, 13 Aug 2004 09:46:08 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20040811020431.GA981@green.homeunix.org> Date: Fri, 13 Aug 2004 09:46:08 -0700 (PDT) From: John Polstra To: Brian Fundakowski Feldman X-Bogosity: No, tests=bogofilter, spamicity=0.152965, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Maksim Yevmenkin cc: cvs-all@FreeBSD.org cc: Max Laier Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:46:11 -0000 On 11-Aug-2004 Brian Fundakowski Feldman wrote: > On Wed, Aug 11, 2004 at 03:33:25AM +0200, Max Laier wrote: >> On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: >> > emax 2004-08-11 00:12:27 UTC >> > >> > FreeBSD src repository >> > >> > Modified files: >> > sys/net if_tap.c >> > Log: >> > Set IFF_RUNNING flag on the interface as soon as the control device is >> > opened. >> >> Erm ... >> 1) IFF_RUNNING has a different meaning (for all I know) - "resources >> allocated" i.e. address(es) assigned. See if_loop.c for instance. >> 2) What are these spl's for? You are not going to MFC that anyway as it would >> be user visible. >> >> I recon a thread with this topic, but I think the outcome was that this is not >> a good thing to do. Can't find the thread though. > > Having written a driver recently, the best I could find is that IFF_RUNNING > essentially means not dead... That's pretty much correct. IFF_UP is an administrative control that expresses the desired state of the interface. The driver never changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ state. The driver changes IFF_RUNNING in response to changes in IFF_UP, or in response to error conditions that make the driver unable to function. Neither IFF_UP nor IFF_RUNNING have anything at all to do with whether any addresses are assigned to the interface. John From owner-cvs-src@FreeBSD.ORG Fri Aug 13 16:59:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D576A16A4CE for ; Fri, 13 Aug 2004 16:59:25 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19E0943D1F for ; Fri, 13 Aug 2004 16:59:25 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DGuADe047454 for cvs-src@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 20:56:10 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DGtgNm047386; (8.12.8/vak/2.1) Fri, 13 Aug 2004 20:55:42 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411CF2CC.4000809@cronyx.ru> Date: Fri, 13 Aug 2004 20:56:44 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Polstra References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Brian Fundakowski Feldman cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Maksim Yevmenkin cc: Max Laier Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:59:26 -0000 John Polstra wrote: >On 11-Aug-2004 Brian Fundakowski Feldman wrote: > > >>On Wed, Aug 11, 2004 at 03:33:25AM +0200, Max Laier wrote: >> >> >>>On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: >>> >>> >>>>emax 2004-08-11 00:12:27 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: >>>> sys/net if_tap.c >>>> Log: >>>> Set IFF_RUNNING flag on the interface as soon as the control device is >>>>opened. >>>> >>>> >>>Erm ... >>>1) IFF_RUNNING has a different meaning (for all I know) - "resources >>>allocated" i.e. address(es) assigned. See if_loop.c for instance. >>>2) What are these spl's for? You are not going to MFC that anyway as it would >>>be user visible. >>> >>>I recon a thread with this topic, but I think the outcome was that this is not >>>a good thing to do. Can't find the thread though. >>> >>> >>Having written a driver recently, the best I could find is that IFF_RUNNING >>essentially means not dead... >> >> > >That's pretty much correct. IFF_UP is an administrative control >that expresses the desired state of the interface. The driver never >changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ > > PPP state machine can remove IFF_UP. For example if connection is not persistent and link was broken for any reason. >state. The driver changes IFF_RUNNING in response to changes in >IFF_UP, or in response to error conditions that make the driver unable >to function. > >Neither IFF_UP nor IFF_RUNNING have anything at all to do with whether >any addresses are assigned to the interface. > >John > > rik From owner-cvs-src@FreeBSD.ORG Fri Aug 13 17:10:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C41916A4CF; Fri, 13 Aug 2004 17:10:55 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5A3643D3F; Fri, 13 Aug 2004 17:10:54 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DHAjSO048970 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 10:10:45 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DHAjkV009816; Fri, 13 Aug 2004 10:10:45 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411CF2CC.4000809@cronyx.ru> Date: Fri, 13 Aug 2004 10:10:44 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.007502, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:10:55 -0000 On 13-Aug-2004 Roman Kurakin wrote: > John Polstra wrote: >>That's pretty much correct. IFF_UP is an administrative control >>that expresses the desired state of the interface. The driver never >>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >> >> > PPP state machine can remove IFF_UP. For example if connection is not > persistent and link > was broken for any reason. I call that a bug. John From owner-cvs-src@FreeBSD.ORG Fri Aug 13 17:29:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0799716A4CE for ; Fri, 13 Aug 2004 17:29:09 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 517F343D48 for ; Fri, 13 Aug 2004 17:29:06 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DHQ3F4048651 for cvs-src@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 21:26:03 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DHOePF048585; (8.12.8/vak/2.1) Fri, 13 Aug 2004 21:24:40 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411CF997.8020002@cronyx.ru> Date: Fri, 13 Aug 2004 21:25:43 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Polstra References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:29:09 -0000 John Polstra wrote: >On 13-Aug-2004 Roman Kurakin wrote: > > >>John Polstra wrote: >> >> >>>That's pretty much correct. IFF_UP is an administrative control >>>that expresses the desired state of the interface. The driver never >>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>> >>> >>> >>> >>PPP state machine can remove IFF_UP. For example if connection is not >>persistent and link >>was broken for any reason. >> >> >I call that a bug. > > This is not a bug, this is feature of protocol. Some times link should go down (or other state from which it could go up only by administrator (or program) intervention). Probably IFF_UP in PPP violation could be concerned like some protocols stacks relative OSI. rik >John > > From owner-cvs-src@FreeBSD.ORG Fri Aug 13 17:34:46 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A090816A4CE; Fri, 13 Aug 2004 17:34:46 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32D5C43D46; Fri, 13 Aug 2004 17:34:46 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DHYfjI049119 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 10:34:41 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DHYfbg009913; Fri, 13 Aug 2004 10:34:41 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411CF997.8020002@cronyx.ru> Date: Fri, 13 Aug 2004 10:34:40 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.009958, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:34:46 -0000 On 13-Aug-2004 Roman Kurakin wrote: > John Polstra wrote: >>On 13-Aug-2004 Roman Kurakin wrote: >>>John Polstra wrote: >>>>That's pretty much correct. IFF_UP is an administrative control >>>>that expresses the desired state of the interface. The driver never >>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>> >>>PPP state machine can remove IFF_UP. For example if connection is not >>>persistent and link >>>was broken for any reason. >>> >>I call that a bug. >> > This is not a bug, this is feature of protocol. Some times link should > go down (or other > state from which it could go up only by administrator (or program) > intervention). Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, but should leave IFF_UP untouched. John From owner-cvs-src@FreeBSD.ORG Fri Aug 13 17:43:55 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A5FA16A4CE; Fri, 13 Aug 2004 17:43:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DA5943D1D; Fri, 13 Aug 2004 17:43:54 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHhsqF096907; Fri, 13 Aug 2004 17:43:54 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHhsmm096906; Fri, 13 Aug 2004 17:43:54 GMT (envelope-from jmg) Message-Id: <200408131743.i7DHhsmm096906@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 13 Aug 2004 17:43:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_aio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:43:55 -0000 jmg 2004-08-13 17:43:54 UTC FreeBSD src repository Modified files: sys/kern vfs_aio.c Log: clean up whitespace... Revision Changes Path 1.173 +55 -55 src/sys/kern/vfs_aio.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 17:47:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEF0816A4EE; Fri, 13 Aug 2004 17:47:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FD9243D2D; Fri, 13 Aug 2004 17:47:40 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHlem8097186; Fri, 13 Aug 2004 17:47:40 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHleqN097185; Fri, 13 Aug 2004 17:47:40 GMT (envelope-from njl) Message-Id: <200408131747.i7DHleqN097185@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 17:47:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_acad.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:47:41 -0000 njl 2004-08-13 17:47:40 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: Record the new status after checking if it has changed, not before. This fixes lost AC line transition events. Bug report: Kevin Oberman Revision Changes Path 1.31 +1 -1 src/sys/dev/acpica/acpi_acad.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 18:12:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95CFA16A4CE; Fri, 13 Aug 2004 18:12:09 +0000 (GMT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B4F143D2F; Fri, 13 Aug 2004 18:12:09 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id i7DIC2Wi048990 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 11:12:02 -0700 (PDT) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: John Polstra Date: Fri, 13 Aug 2004 11:14:46 -0700 User-Agent: KMail/1.6.1 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408131114.46274.sam@errno.com> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Roman Kurakin Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:12:09 -0000 On Friday 13 August 2004 10:34 am, John Polstra wrote: > On 13-Aug-2004 Roman Kurakin wrote: > > John Polstra wrote: > >>On 13-Aug-2004 Roman Kurakin wrote: > >>>John Polstra wrote: > >>>>That's pretty much correct. IFF_UP is an administrative control > >>>>that expresses the desired state of the interface. The driver never > >>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ > >>> > >>>PPP state machine can remove IFF_UP. For example if connection is not > >>>persistent and link > >>>was broken for any reason. > >> > >>I call that a bug. > > > > This is not a bug, this is feature of protocol. Some times link should > > go down (or other > > state from which it could go up only by administrator (or program) > > intervention). > > Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, > but should leave IFF_UP untouched. IFF_RUNNING was intended to mark a device "ready for use" and should be managed by the driver. IFF_UP was to be administratively controlled and any automated change is contrary to the original intent/design. The only case that I'm aware of where IFF_UP is touched as a side-effect of another operation is when setting an interface's address and I consider that a bug. Unfortunately fixing it has widespread consequences and each time I've tried I've given up in disgust. Sam From owner-cvs-src@FreeBSD.ORG Fri Aug 13 18:17:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CE9E16A4D5 for ; Fri, 13 Aug 2004 18:17:08 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 601E443D2F for ; Fri, 13 Aug 2004 18:17:07 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DIE9Mu050533 for cvs-src@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:14:09 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DIDJmE050469; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:13:19 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411D04FE.70304@cronyx.ru> Date: Fri, 13 Aug 2004 22:14:22 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Polstra References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:17:10 -0000 John Polstra wrote: >On 13-Aug-2004 Roman Kurakin wrote: > > >>John Polstra wrote: >> >> >>>On 13-Aug-2004 Roman Kurakin wrote: >>> >>> >>>>John Polstra wrote: >>>> >>>> >>>>>That's pretty much correct. IFF_UP is an administrative control >>>>>that expresses the desired state of the interface. The driver never >>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>>> >>>>> >>>>> >>>>PPP state machine can remove IFF_UP. For example if connection is not >>>>persistent and link >>>>was broken for any reason. >>>> >>>> >>>> >>>I call that a bug. >>> >>> >>> >>This is not a bug, this is feature of protocol. Some times link should >>go down (or other >>state from which it could go up only by administrator (or program) >>intervention). >> >> >Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, >but should leave IFF_UP untouched. > > But in that case we need some other way to bring line up again, since we unable just to ifconfig XXX up. This is possible to implement but very inconvenient. Could you describe why is so bad that some administrative action could be canceled due to protection or some other reasons by device state machine? Especially if users have a choice to allow this action or not. If users have a choice this action could be treated on behalf of administrator and thus like administrative action. rik >John > > > > From owner-cvs-src@FreeBSD.ORG Fri Aug 13 18:29:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8BC816A4CE for ; Fri, 13 Aug 2004 18:29:06 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2870443D48 for ; Fri, 13 Aug 2004 18:29:06 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DIQ1ps051021 for cvs-src@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:26:01 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DIOMmE050950; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:24:22 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411D0795.6010406@cronyx.ru> Date: Fri, 13 Aug 2004 22:25:25 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sam Leffler References: <200408131114.46274.sam@errno.com> In-Reply-To: <200408131114.46274.sam@errno.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Polstra Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:29:07 -0000 Sam Leffler wrote: >On Friday 13 August 2004 10:34 am, John Polstra wrote: > > >>On 13-Aug-2004 Roman Kurakin wrote: >> >> >>>John Polstra wrote: >>> >>> >>>>On 13-Aug-2004 Roman Kurakin wrote: >>>> >>>> >>>>>John Polstra wrote: >>>>> >>>>> >>>>>>That's pretty much correct. IFF_UP is an administrative control >>>>>>that expresses the desired state of the interface. The driver never >>>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>>>> >>>>>> >>>>>PPP state machine can remove IFF_UP. For example if connection is not >>>>>persistent and link >>>>>was broken for any reason. >>>>> >>>>> >>>>I call that a bug. >>>> >>>> >>>This is not a bug, this is feature of protocol. Some times link should >>>go down (or other >>>state from which it could go up only by administrator (or program) >>>intervention). >>> >>> >>Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, >>but should leave IFF_UP untouched. >> >> > >IFF_RUNNING was intended to mark a device "ready for use" and should be >managed by the driver. IFF_UP was to be administratively controlled and any >automated change is contrary to the original intent/design. The only case >that I'm aware of where IFF_UP is touched as a side-effect of another >operation is when setting an interface's address and I consider that a bug. >Unfortunately fixing it has widespread consequences and each time I've tried >I've given up in disgust. > > Ok. Since IFF_UP is used this way by many implementations we have to agree that this is normal behavior that was introduced by evolution and practice like word spelling could be changed from its origin. rik > Sam > > > > From owner-cvs-src@FreeBSD.ORG Fri Aug 13 18:45:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4FF716A4CE; Fri, 13 Aug 2004 18:45:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A95EE43D1D; Fri, 13 Aug 2004 18:45:04 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIj4Fq098918; Fri, 13 Aug 2004 18:45:04 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIj4NA098917; Fri, 13 Aug 2004 18:45:04 GMT (envelope-from mjacob) Message-Id: <200408131845.i7DIj4NA098917@repoman.freebsd.org> From: Matt Jacob Date: Fri, 13 Aug 2004 18:45:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_all.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:45:04 -0000 mjacob 2004-08-13 18:45:04 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_all.c Log: When printing out an unknown sense code we should print it in hex, not decimal. Reviewed by: gibbs, nate, kdm Revision Changes Path 1.45 +1 -3 src/sys/cam/scsi/scsi_all.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 18:54:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DBD016A4CE; Fri, 13 Aug 2004 18:54:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00CD543D48; Fri, 13 Aug 2004 18:54:22 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIsLs7099265; Fri, 13 Aug 2004 18:54:21 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIsLtD099264; Fri, 13 Aug 2004 18:54:21 GMT (envelope-from alc) Message-Id: <200408131854.i7DIsLtD099264@repoman.freebsd.org> From: Alan Cox Date: Fri, 13 Aug 2004 18:54:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:54:22 -0000 alc 2004-08-13 18:54:21 UTC FreeBSD src repository Modified files: sys/sparc64/sparc64 pmap.c Log: Add pmap locking to pmap_remove_all(). Revision Changes Path 1.139 +2 -0 src/sys/sparc64/sparc64/pmap.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 18:56:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8857216A4CE; Fri, 13 Aug 2004 18:56:51 +0000 (GMT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40F4B43D53; Fri, 13 Aug 2004 18:56:51 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id i7DIukWi049177 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 11:56:46 -0700 (PDT) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: Roman Kurakin Date: Fri, 13 Aug 2004 11:59:30 -0700 User-Agent: KMail/1.6.1 References: <200408131114.46274.sam@errno.com> <411D0795.6010406@cronyx.ru> In-Reply-To: <411D0795.6010406@cronyx.ru> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408131159.30682.sam@errno.com> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Polstra Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:56:51 -0000 On Friday 13 August 2004 11:25 am, Roman Kurakin wrote: > Sam Leffler wrote: > >On Friday 13 August 2004 10:34 am, John Polstra wrote: > >>On 13-Aug-2004 Roman Kurakin wrote: > >>>John Polstra wrote: > >>>>On 13-Aug-2004 Roman Kurakin wrote: > >>>>>John Polstra wrote: > >>>>>>That's pretty much correct. IFF_UP is an administrative control > >>>>>>that expresses the desired state of the interface. The driver never > >>>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ > >>>>> > >>>>>PPP state machine can remove IFF_UP. For example if connection is not > >>>>>persistent and link > >>>>>was broken for any reason. > >>>> > >>>>I call that a bug. > >>> > >>>This is not a bug, this is feature of protocol. Some times link should > >>>go down (or other > >>>state from which it could go up only by administrator (or program) > >>>intervention). > >> > >>Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, > >>but should leave IFF_UP untouched. > > > >IFF_RUNNING was intended to mark a device "ready for use" and should be > >managed by the driver. IFF_UP was to be administratively controlled and > > any automated change is contrary to the original intent/design. The only > > case that I'm aware of where IFF_UP is touched as a side-effect of > > another operation is when setting an interface's address and I consider > > that a bug. Unfortunately fixing it has widespread consequences and each > > time I've tried I've given up in disgust. > > Ok. Since IFF_UP is used this way by many implementations we have to > agree that this > is normal behavior that was introduced by evolution and practice like > word spelling could > be changed from its origin. The instances that I am aware of are misdesigns that need correcting. Folks that query IFF_UP to mean something it is not may need an alternative state bit but overloading IFF_UP to mean something it does not is wrong. FWIW netbsd does this correctly. I can't comment on PPP as I haven't looked at the code. Sam From owner-cvs-src@FreeBSD.ORG Fri Aug 13 19:25:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2ED316A4CE; Fri, 13 Aug 2004 19:25:43 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFCD443D53; Fri, 13 Aug 2004 19:25:41 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DJPZvL050011 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 12:25:35 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DJPZ5w010141; Fri, 13 Aug 2004 12:25:35 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411D04FE.70304@cronyx.ru> Date: Fri, 13 Aug 2004 12:25:35 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.216012, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:25:43 -0000 On 13-Aug-2004 Roman Kurakin wrote: > John Polstra wrote: >>On 13-Aug-2004 Roman Kurakin wrote: >>>John Polstra wrote: >>>>On 13-Aug-2004 Roman Kurakin wrote: >>>>>John Polstra wrote: >>>>> >>>>>>That's pretty much correct. IFF_UP is an administrative control >>>>>>that expresses the desired state of the interface. The driver never >>>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>>>> >>>>>PPP state machine can remove IFF_UP. For example if connection is not >>>>>persistent and link >>>>>was broken for any reason. >>>>> >>>>I call that a bug. >>>> >>>This is not a bug, this is feature of protocol. Some times link should >>>go down (or other >>>state from which it could go up only by administrator (or program) >>>intervention). >>> >>Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, >>but should leave IFF_UP untouched. >> > But in that case we need some other way to bring line up again, since we > unable just > to ifconfig XXX up. This is possible to implement but very inconvenient. Actually (having thought about it some more), PPP probably shouldn't even clear IFF_RUNNING in that case. IFF_RUNNING is not supposed to reflect whether the link is active or not. It just reflects whether the driver software is capable of functioning. For example, Ethernet drivers don't change IFF_RUNNING if the link goes away. I don't know for sure how PPP ought to handle the case you're describing. It should mark the link as down (not active) but leave IFF_RUNNING set. Then it should either retry periodically to establish an active link; or it should let the user do that manually via "ifconfig ppp0 down; ifconfig ppp0 up". > Could you describe why is so bad that some administrative action > could be canceled due to protection or some other reasons by device > state machine? Especially if users have a choice to allow this > action or not. If users have a choice this action could be treated > on behalf of administrator and thus like administrative action. Well, it is standard practice to separate administrative controls from driver status bits. That's how all the relevant IEEE standards describe things, for instance. The standards define separate variables, for example "adminEnable" and "operEnable" to reflect the administratively requested state and the actual state, respectively. The first is changed only by management actions, and the second is changed only by the software/hardware/whatever. John From owner-cvs-src@FreeBSD.ORG Fri Aug 13 19:27:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3636616A4CE; Fri, 13 Aug 2004 19:27:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18DE543D4C; Fri, 13 Aug 2004 19:27:22 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJRLHJ000282; Fri, 13 Aug 2004 19:27:21 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJRLf9000281; Fri, 13 Aug 2004 19:27:21 GMT (envelope-from njl) Message-Id: <200408131927.i7DJRLf9000281@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 19:27:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:27:22 -0000 njl 2004-08-13 19:27:21 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Fix building for the ACPI_DEBUG case. Revision Changes Path 1.24 +1 -0 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 19:28:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0241716A4CE; Fri, 13 Aug 2004 19:28:45 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C86843D54; Fri, 13 Aug 2004 19:28:44 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DJSdE1050041 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 12:28:40 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DJSdss010148; Fri, 13 Aug 2004 12:28:39 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411D0795.6010406@cronyx.ru> Date: Fri, 13 Aug 2004 12:28:39 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.021060, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:28:45 -0000 On 13-Aug-2004 Roman Kurakin wrote: > Ok. Since IFF_UP is used this way by many implementations we have to > agree that this is normal behavior that was introduced by evolution > and practice like word spelling could be changed from its origin. I can't agree with that. There's a big difference between human language and software design. IFF_UP is misused by some implementations because the implementors didn't understand it. That's not evolution, it's just a plain old bug. :-) John From owner-cvs-src@FreeBSD.ORG Fri Aug 13 19:37:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56E3216A4CF; Fri, 13 Aug 2004 19:37:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28A0A43D3F; Fri, 13 Aug 2004 19:37:24 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJbOvY000570; Fri, 13 Aug 2004 19:37:24 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJbOU1000569; Fri, 13 Aug 2004 19:37:24 GMT (envelope-from markm) Message-Id: <200408131937.i7DJbOU1000569@repoman.freebsd.org> From: Mark Murray Date: Fri, 13 Aug 2004 19:37:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENSSL Subject: cvs commit: src/crypto/openssl/crypto/engine - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:37:24 -0000 markm 2004-08-13 19:37:23 UTC FreeBSD src repository src/crypto/openssl/crypto/engine - Imported sources Update of /home/ncvs/src/crypto/openssl/crypto/engine In directory repoman.freebsd.org:/tmp/cvs-serv530 Log Message: Bring in support for VIA C3 Nehemiah Padlock crypto support (AES). This is from the upcoming OpenSSL 0.9.8 release. Status: Vendor Tag: OPENSSL Release Tags: v0_9_7_dev N src/crypto/openssl/crypto/engine/eng_padlock.c No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Fri Aug 13 20:27:57 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00CFB16A4CE; Fri, 13 Aug 2004 20:27:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D60B643D45; Fri, 13 Aug 2004 20:27:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DKRu44003714; Fri, 13 Aug 2004 20:27:56 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DKRud6003713; Fri, 13 Aug 2004 20:27:56 GMT (envelope-from rwatson) Message-Id: <200408132027.i7DKRud6003713@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 20:27:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 20:27:57 -0000 rwatson 2004-08-13 20:27:56 UTC FreeBSD src repository Modified files: sys/fs/pseudofs pseudofs_vnops.c Log: Commit a work-around for a more general bug involving process state: check whether p_ucred is NULL or not in pfs_getattr() before dereferencing the credential, and return ENOENT if there wasn't one. This is a symptom of a larger problem, wherein pfind() can return references to incompletely initialized processes, and we instead ought to not return them, or check the process state before acting on the process. Reported by: kris Discussed with: tjr, others Revision Changes Path 1.45 +11 -0 src/sys/fs/pseudofs/pseudofs_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 21:39:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CBCC16A4CE; Fri, 13 Aug 2004 21:39:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BF3343D3F; Fri, 13 Aug 2004 21:39:15 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DLdEmc005656; Fri, 13 Aug 2004 21:39:14 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DLdE4g005655; Fri, 13 Aug 2004 21:39:14 GMT (envelope-from gibbs) Message-Id: <200408132139.i7DLdE4g005655@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Fri, 13 Aug 2004 21:39:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 21:39:15 -0000 gibbs 2004-08-13 21:39:14 UTC FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.c Log: Fix an off by one in the critical section clearing code. The code was adjusting twice for the instruction pointer indicating the *next* instruction to execute. The aic79xx driver had a similar bug, but was fixed some time ago. Revision Changes Path 1.101 +0 -2 src/sys/dev/aic7xxx/aic7xxx.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 21:41:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 167E716A4CE; Fri, 13 Aug 2004 21:41:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA08F43D2D; Fri, 13 Aug 2004 21:41:23 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DLfNVm005793; Fri, 13 Aug 2004 21:41:23 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DLfNJn005792; Fri, 13 Aug 2004 21:41:23 GMT (envelope-from gibbs) Message-Id: <200408132141.i7DLfNJn005792@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Fri, 13 Aug 2004 21:41:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.seq X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 21:41:24 -0000 gibbs 2004-08-13 21:41:23 UTC FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.seq Log: Extend critical section protection around portions of selection processing that cannot tolerate changes to the waiting for selection queue by the host or the host canceling an active selection. Revision Changes Path 1.127 +5 -1 src/sys/dev/aic7xxx/aic7xxx.seq From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:23:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E573616A4CE; Fri, 13 Aug 2004 22:23:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C408F43D1D; Fri, 13 Aug 2004 22:23:21 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMNL2D006885; Fri, 13 Aug 2004 22:23:21 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMNLts006884; Fri, 13 Aug 2004 22:23:21 GMT (envelope-from rwatson) Message-Id: <200408132223.i7DMNLts006884@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:23:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:23:22 -0000 rwatson 2004-08-13 22:23:21 UTC FreeBSD src repository Modified files: sys/net rtsock.c Log: Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing socket netisr queue. Pointed out by: winter Revision Changes Path 1.113 +1 -1 src/sys/net/rtsock.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:30:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03F0D16A4CE; Fri, 13 Aug 2004 22:30:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D86FE43D2F; Fri, 13 Aug 2004 22:30:55 +0000 (GMT) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMUtZ1007122; Fri, 13 Aug 2004 22:30:55 GMT (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMUt4N007121; Fri, 13 Aug 2004 22:30:55 GMT (envelope-from ambrisko) Message-Id: <200408132230.i7DMUt4N007121@repoman.freebsd.org> From: Doug Ambrisko Date: Fri, 13 Aug 2004 22:30:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 mp_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:30:56 -0000 ambrisko 2004-08-13 22:30:55 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c Log: Fix the memory scaling bug when basemem was converted to Kbytes from bytes for AMD64. Otherwise the AP will be started at 640K which won't work. Bug found on a Xeon 64bit system. Revision Changes Path 1.242 +1 -1 src/sys/amd64/amd64/mp_machdep.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:34:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34CF716A4CE; Fri, 13 Aug 2004 22:34:22 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA97C43D39; Fri, 13 Aug 2004 22:34:21 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.155] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bvkcv-00084l-00; Sat, 14 Aug 2004 00:34:21 +0200 Received: from [84.128.137.28] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bvkcu-00060f-00; Sat, 14 Aug 2004 00:34:21 +0200 From: Max Laier To: Robert Watson Date: Sat, 14 Aug 2004 00:32:24 +0200 User-Agent: KMail/1.6.2 References: <200408132223.i7DMNLts006884@repoman.freebsd.org> In-Reply-To: <200408132223.i7DMNLts006884@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_AGUHBf6HaZBXQUb"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408140032.32139.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:34:22 -0000 --Boundary-02=_AGUHBf6HaZBXQUb Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 August 2004 00:23, Robert Watson wrote: > rwatson 2004-08-13 22:23:21 UTC > > FreeBSD src repository > > Modified files: > sys/net rtsock.c > Log: > Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing > socket netisr queue. Well, I suggest to use IFQ_* macros only on queues that are IFQ_SET_READY'e= d=20 as well. i.e. as long as you don't use IFQ_{EN,DE}QUEUE with the queue ther= e=20 is not much point in using IFQ_SET_MAXLEN either. It'd just add noise to=20 searches for IFQ_* I don't think that there are plans to use ALTQ disciplines on the netisr=20 queues, are there? > Pointed out by: winter > > Revision Changes Path > 1.113 +1 -1 src/sys/net/rtsock.c =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-02=_AGUHBf6HaZBXQUb Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHUGAXyyEoT62BG0RAg3CAJ9MpNpflANXEci5z5qvNVZ2vB48dACZAZYj TZsxoxjLgEOIjVewsIA/Zt4= =4qv0 -----END PGP SIGNATURE----- --Boundary-02=_AGUHBf6HaZBXQUb-- From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:39:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05A9916A4CE; Fri, 13 Aug 2004 22:39:40 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88AB343D53; Fri, 13 Aug 2004 22:39:39 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7DMbvlj096692; Fri, 13 Aug 2004 18:37:57 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7DMbutZ096689; Fri, 13 Aug 2004 18:37:57 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Fri, 13 Aug 2004 18:37:56 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Max Laier In-Reply-To: <200408140032.32139.max@love2party.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:39:40 -0000 On Sat, 14 Aug 2004, Max Laier wrote: > On Saturday 14 August 2004 00:23, Robert Watson wrote: > > rwatson 2004-08-13 22:23:21 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net rtsock.c > > Log: > > Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing > > socket netisr queue. > > Well, I suggest to use IFQ_* macros only on queues that are > IFQ_SET_READY'ed as well. i.e. as long as you don't use IFQ_{EN,DE}QUEUE > with the queue there is not much point in using IFQ_SET_MAXLEN either. > It'd just add noise to searches for IFQ_* > > I don't think that there are plans to use ALTQ disciplines on the netisr > queues, are there? No, that wouldn't really make sense, as we want a reliable record stream, really, and the protocol in question wouldn't benefit from RED, etc. Do you suggest, then, just backing this out? Some of the other ifq abstractions are used, such as IFF_HANDOFF()... Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:43:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA29316A4CE; Fri, 13 Aug 2004 22:43:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97EAD43D54; Fri, 13 Aug 2004 22:43:12 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMhCos007472; Fri, 13 Aug 2004 22:43:12 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMhCNd007471; Fri, 13 Aug 2004 22:43:12 GMT (envelope-from stefanf) Message-Id: <200408132243.i7DMhCNd007471@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 13 Aug 2004 22:43:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man3 Makefile tgmath.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:43:12 -0000 stefanf 2004-08-13 22:43:12 UTC FreeBSD src repository Modified files: share/man/man3 Makefile Added files: share/man/man3 tgmath.3 Log: Add a man page for tgmath.h. Reviewed by: keramida Revision Changes Path 1.32 +1 -0 src/share/man/man3/Makefile 1.1 +151 -0 src/share/man/man3/tgmath.3 (new) From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:48:06 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AD3416A4CE; Fri, 13 Aug 2004 22:48:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF53C43D31; Fri, 13 Aug 2004 22:48:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMm5j1007849; Fri, 13 Aug 2004 22:48:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMm5s9007848; Fri, 13 Aug 2004 22:48:05 GMT (envelope-from rwatson) Message-Id: <200408132248.i7DMm5s9007848@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:48:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_de.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:48:06 -0000 rwatson 2004-08-13 22:48:05 UTC FreeBSD src repository Modified files: sys/pci if_de.c Log: Since the if_de driver doesn't contain locking, mark it as IFF_NEEDSGIANT so that ifp->if_start won't be called without Giant when running debug.mpsafenet=1. Revision Changes Path 1.158 +1 -1 src/sys/pci/if_de.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:51:23 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A82316A4E9; Fri, 13 Aug 2004 22:51:23 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1087043D3F; Fri, 13 Aug 2004 22:51:23 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.179] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BvktO-0002f2-00; Sat, 14 Aug 2004 00:51:22 +0200 Received: from [84.128.137.28] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1BvktN-0001ak-00; Sat, 14 Aug 2004 00:51:22 +0200 From: Max Laier To: Robert Watson Date: Sat, 14 Aug 2004 00:49:25 +0200 User-Agent: KMail/1.6.2 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_9VUHB6oxBbGSwSv"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408140049.33903.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:51:23 -0000 --Boundary-02=_9VUHB6oxBbGSwSv Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 August 2004 00:37, Robert Watson wrote: > On Sat, 14 Aug 2004, Max Laier wrote: > > On Saturday 14 August 2004 00:23, Robert Watson wrote: > > > rwatson 2004-08-13 22:23:21 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/net rtsock.c > > > Log: > > > Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing > > > socket netisr queue. > > > > Well, I suggest to use IFQ_* macros only on queues that are > > IFQ_SET_READY'ed as well. i.e. as long as you don't use IFQ_{EN,DE}QUEUE > > with the queue there is not much point in using IFQ_SET_MAXLEN either. > > It'd just add noise to searches for IFQ_* > > > > I don't think that there are plans to use ALTQ disciplines on the netisr > > queues, are there? > > No, that wouldn't really make sense, as we want a reliable record stream, > really, and the protocol in question wouldn't benefit from RED, etc. Do > you suggest, then, just backing this out? Some of the other ifq > abstractions are used, such as IFF_HANDOFF()... It does not hurt (much) to use IFQ_* macros on normal FIFO queues as long a= s=20 IFQ_SET_READY is not used to activate ALTQ processing. Nevertheless, there = is=20 some overhead and I don't see us removing the IF_* macros. So long story short: For normal FIFO queues use IF_* macros, for ALTQ-enabl= ed=20 queues use IFQ_* or IFQ_DRV_* (see altq(9) for details on the difference an= d=20 conversion). =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-02=_9VUHB6oxBbGSwSv Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHUV9XyyEoT62BG0RAv0SAJ9FL4ijBGWaFnix1BzLWNiFPPOCQQCfTU5V f6G+8I27HgbWXpmjyWxGnFc= =sgwO -----END PGP SIGNATURE----- --Boundary-02=_9VUHB6oxBbGSwSv-- From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:52:12 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EE4016A4CE; Fri, 13 Aug 2004 22:52:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F00F143D45; Fri, 13 Aug 2004 22:52:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMqBHY008113; Fri, 13 Aug 2004 22:52:11 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMqBUR008112; Fri, 13 Aug 2004 22:52:11 GMT (envelope-from rwatson) Message-Id: <200408132252.i7DMqBUR008112@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:52:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ar if_ar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:52:12 -0000 rwatson 2004-08-13 22:52:11 UTC FreeBSD src repository Modified files: sys/dev/ar if_ar.c Log: As the if_ar driver doesn't contain locking or run its interrupt MPSAFE, mark it as IFF_NEEDSGIANT so that its if_start routine is run holding Giant. Revision Changes Path 1.65 +2 -1 src/sys/dev/ar/if_ar.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:54:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B229416A4CE; Fri, 13 Aug 2004 22:54:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 924FD43D3F; Fri, 13 Aug 2004 22:54:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMsJV1008172; Fri, 13 Aug 2004 22:54:19 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMsJk3008171; Fri, 13 Aug 2004 22:54:19 GMT (envelope-from rwatson) Message-Id: <200408132254.i7DMsJk3008171@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:54:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/arl if_arl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:54:19 -0000 rwatson 2004-08-13 22:54:19 UTC FreeBSD src repository Modified files: sys/dev/arl if_arl.c Log: Since if_arl doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.9 +2 -1 src/sys/dev/arl/if_arl.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:55:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0DFD16A4CE; Fri, 13 Aug 2004 22:55:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF70243D45; Fri, 13 Aug 2004 22:55:25 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMtPvj008260; Fri, 13 Aug 2004 22:55:25 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMtPse008259; Fri, 13 Aug 2004 22:55:25 GMT (envelope-from rwatson) Message-Id: <200408132255.i7DMtPse008259@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:55:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/awi awi.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:55:26 -0000 rwatson 2004-08-13 22:55:25 UTC FreeBSD src repository Modified files: sys/dev/awi awi.c Log: Since if_awi doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.34 +1 -1 src/sys/dev/awi/awi.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:57:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CD3F16A4CE; Fri, 13 Aug 2004 22:57:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B48943D46; Fri, 13 Aug 2004 22:57:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMvi3P008351; Fri, 13 Aug 2004 22:57:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMvin8008350; Fri, 13 Aug 2004 22:57:44 GMT (envelope-from rwatson) Message-Id: <200408132257.i7DMvin8008350@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:57:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cm smc90cx6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:57:44 -0000 rwatson 2004-08-13 22:57:44 UTC FreeBSD src repository Modified files: sys/dev/cm smc90cx6.c Log: Since if_cm doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.14 +1 -1 src/sys/dev/cm/smc90cx6.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 22:59:10 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07DF016A4CE; Fri, 13 Aug 2004 22:59:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F143343D5C; Fri, 13 Aug 2004 22:59:09 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMx91n008403; Fri, 13 Aug 2004 22:59:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMx9gv008402; Fri, 13 Aug 2004 22:59:09 GMT (envelope-from marcel) Message-Id: <200408132259.i7DMx9gv008402@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 13 Aug 2004 22:59:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/acpi/acpidump acpi.c acpidump.c acpidump.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:59:10 -0000 marcel 2004-08-13 22:59:09 UTC FreeBSD src repository Modified files: usr.sbin/acpi/acpidump acpi.c acpidump.c acpidump.h Log: Add support for SSDT tables. Dumping or disassembling the DSDT will now include the contents if any SSDT table as well. This makes use of the property that one can concatenate the body of SSDT tables to the DSDT, updating the DSDT header (length and checksum) and end up with a larger and valid DSDT table. Hence, this also works with -f. Reviewed by: njl@ Revision Changes Path 1.26 +44 -10 src/usr.sbin/acpi/acpidump/acpi.c 1.9 +10 -7 src/usr.sbin/acpi/acpidump/acpidump.c 1.17 +4 -3 src/usr.sbin/acpi/acpidump/acpidump.h From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:02:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0FED16A4CE; Fri, 13 Aug 2004 23:02:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8104D43D2F; Fri, 13 Aug 2004 23:02:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN2HKU008581; Fri, 13 Aug 2004 23:02:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN2HhC008580; Fri, 13 Aug 2004 23:02:17 GMT (envelope-from rwatson) Message-Id: <200408132302.i7DN2HhC008580@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:02:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:02:17 -0000 rwatson 2004-08-13 23:02:17 UTC FreeBSD src repository Modified files: sys/dev/cp if_cp.c Log: Since if_cp doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.12 +2 -1 src/sys/dev/cp/if_cp.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:03:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E189216A4CE; Fri, 13 Aug 2004 23:03:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C081643D1F; Fri, 13 Aug 2004 23:03:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN3B3J008623; Fri, 13 Aug 2004 23:03:11 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN3BKF008622; Fri, 13 Aug 2004 23:03:11 GMT (envelope-from rwatson) Message-Id: <200408132303.i7DN3BKF008622@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:03:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cs if_cs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:03:12 -0000 rwatson 2004-08-13 23:03:11 UTC FreeBSD src repository Modified files: sys/dev/cs if_cs.c Log: Since if_cs doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.33 +2 -1 src/sys/dev/cs/if_cs.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:04:15 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33ADE16A4CF; Fri, 13 Aug 2004 23:04:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1324343D49; Fri, 13 Aug 2004 23:04:15 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN4Ewg008666; Fri, 13 Aug 2004 23:04:14 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN4Eje008665; Fri, 13 Aug 2004 23:04:14 GMT (envelope-from bmah) Message-Id: <200408132304.i7DN4Eje008665@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 23:04:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:04:15 -0000 bmah 2004-08-13 23:04:14 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Wordsmithing on the GEOM_STRIPE, MSDOSFS_LARGE, and portaudit notes. Revision Changes Path 1.761 +19 -19 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:04:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CCD516A4D0; Fri, 13 Aug 2004 23:04:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD2E43D39; Fri, 13 Aug 2004 23:04:24 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN4ORe008700; Fri, 13 Aug 2004 23:04:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN4Ott008699; Fri, 13 Aug 2004 23:04:24 GMT (envelope-from rwatson) Message-Id: <200408132304.i7DN4Ott008699@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:04:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ed if_ed.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:04:24 -0000 rwatson 2004-08-13 23:04:24 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed.c Log: Since if_ed doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.233 +2 -2 src/sys/dev/ed/if_ed.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:06:56 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B3B116A4CE; Fri, 13 Aug 2004 23:06:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 195CD43D3F; Fri, 13 Aug 2004 23:06:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN6tYV008930; Fri, 13 Aug 2004 23:06:56 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN6tA3008929; Fri, 13 Aug 2004 23:06:55 GMT (envelope-from rwatson) Message-Id: <200408132306.i7DN6tA3008929@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:06:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ex if_ex.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:06:56 -0000 rwatson 2004-08-13 23:06:55 UTC FreeBSD src repository Modified files: sys/dev/ex if_ex.c Log: Since if_ex doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Note: there are locking macros in if_exreg.h, but they appear to be unused. Revision Changes Path 1.53 +2 -1 src/sys/dev/ex/if_ex.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:08:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D910816A4DD; Fri, 13 Aug 2004 23:08:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B927043D46; Fri, 13 Aug 2004 23:08:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN880b008985; Fri, 13 Aug 2004 23:08:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN88jp008984; Fri, 13 Aug 2004 23:08:08 GMT (envelope-from rwatson) Message-Id: <200408132308.i7DN88jp008984@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:08:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fe if_fe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:08:09 -0000 rwatson 2004-08-13 23:08:08 UTC FreeBSD src repository Modified files: sys/dev/fe if_fe.c Log: Since if_fe doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.86 +2 -1 src/sys/dev/fe/if_fe.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:09:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB03116A4CE; Fri, 13 Aug 2004 23:09:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B967E43D41; Fri, 13 Aug 2004 23:09:41 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN9f6i009027; Fri, 13 Aug 2004 23:09:41 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN9fJM009026; Fri, 13 Aug 2004 23:09:41 GMT (envelope-from rwatson) Message-Id: <200408132309.i7DN9fJM009026@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:09:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire if_fwip.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:09:42 -0000 rwatson 2004-08-13 23:09:41 UTC FreeBSD src repository Modified files: sys/dev/firewire if_fwip.c Log: Since if_fwip doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Approved by: dfr Revision Changes Path 1.5 +2 -1 src/sys/dev/firewire/if_fwip.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:11:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC4E716A4CE; Fri, 13 Aug 2004 23:11:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABBE843D41; Fri, 13 Aug 2004 23:11:24 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNBOUD009204; Fri, 13 Aug 2004 23:11:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNBOjU009203; Fri, 13 Aug 2004 23:11:24 GMT (envelope-from rwatson) Message-Id: <200408132311.i7DNBOjU009203@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:11:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/gem if_gem.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:11:25 -0000 rwatson 2004-08-13 23:11:24 UTC FreeBSD src repository Modified files: sys/dev/gem if_gem.c Log: Since if_gem doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.27 +2 -1 src/sys/dev/gem/if_gem.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:14:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D24BA16A4CE; Fri, 13 Aug 2004 23:14:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1E1A43D49; Fri, 13 Aug 2004 23:14:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNEoaq009315; Fri, 13 Aug 2004 23:14:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNEoUb009314; Fri, 13 Aug 2004 23:14:50 GMT (envelope-from rwatson) Message-Id: <200408132314.i7DNEoUb009314@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:14:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/hme if_hme.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:14:51 -0000 rwatson 2004-08-13 23:14:50 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme.c Log: Since if_hme doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.31 +2 -1 src/sys/dev/hme/if_hme.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:15:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1213316A4CF; Fri, 13 Aug 2004 23:15:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E26B043D54; Fri, 13 Aug 2004 23:15:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNFiGL009426; Fri, 13 Aug 2004 23:15:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNFicT009425; Fri, 13 Aug 2004 23:15:44 GMT (envelope-from rwatson) Message-Id: <200408132315.i7DNFicT009425@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:15:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ie if_ie.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:15:45 -0000 rwatson 2004-08-13 23:15:44 UTC FreeBSD src repository Modified files: sys/dev/ie if_ie.c Log: Since if_ie doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.100 +2 -1 src/sys/dev/ie/if_ie.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:16:44 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6701C16A4CE; Fri, 13 Aug 2004 23:16:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46BCD43D46; Fri, 13 Aug 2004 23:16:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNGiJg009514; Fri, 13 Aug 2004 23:16:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNGi7B009513; Fri, 13 Aug 2004 23:16:44 GMT (envelope-from rwatson) Message-Id: <200408132316.i7DNGi7B009513@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:16:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/iicbus if_ic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:16:44 -0000 rwatson 2004-08-13 23:16:44 UTC FreeBSD src repository Modified files: sys/dev/iicbus if_ic.c Log: Since if_ic doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.21 +2 -1 src/sys/dev/iicbus/if_ic.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:18:02 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D7BC16A4CE; Fri, 13 Aug 2004 23:18:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD2D43D3F; Fri, 13 Aug 2004 23:18:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNI1IL009561; Fri, 13 Aug 2004 23:18:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNI1P1009560; Fri, 13 Aug 2004 23:18:01 GMT (envelope-from rwatson) Message-Id: <200408132318.i7DNI1P1009560@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:18:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/lge if_lge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:18:02 -0000 rwatson 2004-08-13 23:18:01 UTC FreeBSD src repository Modified files: sys/dev/lge if_lge.c Log: Since if_lge doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.34 +2 -1 src/sys/dev/lge/if_lge.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:20:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A40B16A4CE; Fri, 13 Aug 2004 23:20:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 798BE43D2D; Fri, 13 Aug 2004 23:20:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNKoI3009705; Fri, 13 Aug 2004 23:20:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNKo3V009704; Fri, 13 Aug 2004 23:20:50 GMT (envelope-from rwatson) Message-Id: <200408132320.i7DNKo3V009704@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:20:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/lnc if_lnc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:20:50 -0000 rwatson 2004-08-13 23:20:50 UTC FreeBSD src repository Modified files: sys/dev/lnc if_lnc.c Log: Since if_lnc doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.110 +2 -1 src/sys/dev/lnc/if_lnc.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:22:38 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DEE016A4CE; Fri, 13 Aug 2004 23:22:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D22643D45; Fri, 13 Aug 2004 23:22:38 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNMcCC009891; Fri, 13 Aug 2004 23:22:38 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNMcH8009890; Fri, 13 Aug 2004 23:22:38 GMT (envelope-from stefanf) Message-Id: <200408132322.i7DNMcH8009890@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 13 Aug 2004 23:22:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/rpc clnt_vc.c svc_vc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:22:38 -0000 stefanf 2004-08-13 23:22:38 UTC FreeBSD src repository Modified files: lib/libc/rpc clnt_vc.c svc_vc.c Log: Avoid using void pointers in additive expressions. PR: 56653 (libc/rpc bits) Approved by: alfred Revision Changes Path 1.16 +1 -1 src/lib/libc/rpc/clnt_vc.c 1.23 +1 -1 src/lib/libc/rpc/svc_vc.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:22:53 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E22E16A4CE; Fri, 13 Aug 2004 23:22:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D60C43D2D; Fri, 13 Aug 2004 23:22:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNMr6n009920; Fri, 13 Aug 2004 23:22:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNMrcR009919; Fri, 13 Aug 2004 23:22:53 GMT (envelope-from rwatson) Message-Id: <200408132322.i7DNMrcR009919@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:22:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/nge if_nge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:22:53 -0000 rwatson 2004-08-13 23:22:53 UTC FreeBSD src repository Modified files: sys/dev/nge if_nge.c Log: Since if_nge doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Note: this driver does declare and occasionally reference mutexes, but I believe not nearly enough to provide safety. Revision Changes Path 1.65 +2 -1 src/sys/dev/nge/if_nge.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:32:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BBC316A4CE; Fri, 13 Aug 2004 23:32:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF9E643D1D; Fri, 13 Aug 2004 23:32:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNWH9v010187; Fri, 13 Aug 2004 23:32:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNWHFF010186; Fri, 13 Aug 2004 23:32:17 GMT (envelope-from rwatson) Message-Id: <200408132332.i7DNWHFF010186@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:32:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ppbus if_plip.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:32:18 -0000 rwatson 2004-08-13 23:32:17 UTC FreeBSD src repository Modified files: sys/dev/ppbus if_plip.c Log: Since if_plip doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.35 +2 -1 src/sys/dev/ppbus/if_plip.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:39:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E14B516A4CE; Fri, 13 Aug 2004 23:39:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C016543D39; Fri, 13 Aug 2004 23:39:07 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNd7PV010489; Fri, 13 Aug 2004 23:39:07 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNd7Un010488; Fri, 13 Aug 2004 23:39:07 GMT (envelope-from rwatson) Message-Id: <200408132339.i7DNd7Un010488@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:39:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ray if_ray.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:39:08 -0000 rwatson 2004-08-13 23:39:07 UTC FreeBSD src repository Modified files: sys/dev/ray if_ray.c Log: Since if_ray doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.72 +2 -1 src/sys/dev/ray/if_ray.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:41:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B540316A4CE; Fri, 13 Aug 2004 23:41:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 938ED43D2F; Fri, 13 Aug 2004 23:41:00 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNf0CX010617; Fri, 13 Aug 2004 23:41:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNf0Qr010616; Fri, 13 Aug 2004 23:41:00 GMT (envelope-from rwatson) Message-Id: <200408132341.i7DNf0Qr010616@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:41:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sbni if_sbni.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:41:01 -0000 rwatson 2004-08-13 23:41:00 UTC FreeBSD src repository Modified files: sys/dev/sbni if_sbni.c Log: Since if_sbni doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.18 +2 -1 src/sys/dev/sbni/if_sbni.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:47:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCD4216A4CE; Fri, 13 Aug 2004 23:47:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAF8543D45; Fri, 13 Aug 2004 23:47:01 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNl1eE010787; Fri, 13 Aug 2004 23:47:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNl1eT010786; Fri, 13 Aug 2004 23:47:01 GMT (envelope-from rwatson) Message-Id: <200408132347.i7DNl1eT010786@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:47:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/snc dp83932.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:47:01 -0000 rwatson 2004-08-13 23:47:01 UTC FreeBSD src repository Modified files: sys/dev/snc dp83932.c Log: Since if_snc doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.15 +1 -1 src/sys/dev/snc/dp83932.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:49:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B76616A4CE; Fri, 13 Aug 2004 23:49:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDB5B43D2F; Fri, 13 Aug 2004 23:49:48 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNnmFd010843; Fri, 13 Aug 2004 23:49:48 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNnmMj010842; Fri, 13 Aug 2004 23:49:48 GMT (envelope-from rwatson) Message-Id: <200408132349.i7DNnmMj010842@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:49:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sr if_sr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:49:49 -0000 rwatson 2004-08-13 23:49:48 UTC FreeBSD src repository Modified files: sys/dev/sr if_sr.c Log: Since if_sr doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.63 +2 -1 src/sys/dev/sr/if_sr.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:52:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 808E416A4CE; Fri, 13 Aug 2004 23:52:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E58443D1D; Fri, 13 Aug 2004 23:52:34 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNqYhI010996; Fri, 13 Aug 2004 23:52:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNqYZo010995; Fri, 13 Aug 2004 23:52:34 GMT (envelope-from rwatson) Message-Id: <200408132352.i7DNqYZo010995@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:52:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/tx if_tx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:52:34 -0000 rwatson 2004-08-13 23:52:34 UTC FreeBSD src repository Modified files: sys/dev/tx if_tx.c Log: Since if_tx doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.86 +1 -1 src/sys/dev/tx/if_tx.c From owner-cvs-src@FreeBSD.ORG Fri Aug 13 23:53:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D7C416A4CE; Fri, 13 Aug 2004 23:53:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CDD843D2F; Fri, 13 Aug 2004 23:53:36 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNra0b011046; Fri, 13 Aug 2004 23:53:36 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNrakG011045; Fri, 13 Aug 2004 23:53:36 GMT (envelope-from rwatson) Message-Id: <200408132353.i7DNrakG011045@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:53:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/txp if_txp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:53:36 -0000 rwatson 2004-08-13 23:53:36 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c Log: Since if_txp doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Note: mutexes are initialized in the softc for this driver, but the locking appears inadequate to allow Giant-free operation. Revision Changes Path 1.27 +2 -1 src/sys/dev/txp/if_txp.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 00:12:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4874816A4CE; Sat, 14 Aug 2004 00:12:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C8F43D48; Sat, 14 Aug 2004 00:12:43 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0Ch8P012231; Sat, 14 Aug 2004 00:12:43 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0Chm9012230; Sat, 14 Aug 2004 00:12:43 GMT (envelope-from rwatson) Message-Id: <200408140012.i7E0Chm9012230@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:12:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/vx if_vx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:12:43 -0000 rwatson 2004-08-14 00:12:43 UTC FreeBSD src repository Modified files: sys/dev/vx if_vx.c Log: Since if_vx doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.51 +2 -1 src/sys/dev/vx/if_vx.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 00:15:27 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F07716A4CE; Sat, 14 Aug 2004 00:15:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5A843D2D; Sat, 14 Aug 2004 00:15:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0FRRm012320; Sat, 14 Aug 2004 00:15:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0FRZD012319; Sat, 14 Aug 2004 00:15:27 GMT (envelope-from rwatson) Message-Id: <200408140015.i7E0FRZD012319@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:15:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/xe if_xe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:15:27 -0000 rwatson 2004-08-14 00:15:26 UTC FreeBSD src repository Modified files: sys/dev/xe if_xe.c Log: Since if_xe doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.52 +2 -1 src/sys/dev/xe/if_xe.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 00:17:04 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9927616A4CF; Sat, 14 Aug 2004 00:17:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 781E743D39; Sat, 14 Aug 2004 00:17:04 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0H4Zq012419; Sat, 14 Aug 2004 00:17:04 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0H4fC012418; Sat, 14 Aug 2004 00:17:04 GMT (envelope-from rwatson) Message-Id: <200408140017.i7E0H4fC012418@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:17:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ixgb if_ixgb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:17:04 -0000 rwatson 2004-08-14 00:17:04 UTC FreeBSD src repository Modified files: sys/dev/ixgb if_ixgb.c Log: Since if_ixgb doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.3 +2 -1 src/sys/dev/ixgb/if_ixgb.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 00:19:08 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C09216A4CE; Sat, 14 Aug 2004 00:19:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACC843D49; Sat, 14 Aug 2004 00:19:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0J8E7012498; Sat, 14 Aug 2004 00:19:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0J82C012497; Sat, 14 Aug 2004 00:19:08 GMT (envelope-from rwatson) Message-Id: <200408140019.i7E0J82C012497@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:19:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/dev/oltr if_oltr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:19:08 -0000 rwatson 2004-08-14 00:19:08 UTC FreeBSD src repository Modified files: sys/contrib/dev/oltr if_oltr.c Log: Since if_oltr doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.35 +1 -1 src/sys/contrib/dev/oltr/if_oltr.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 02:48:14 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E7716A4CE; Sat, 14 Aug 2004 02:48:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADC243D1F; Sat, 14 Aug 2004 02:48:13 +0000 (GMT) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E2mD3u016132; Sat, 14 Aug 2004 02:48:13 GMT (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E2mD8G016131; Sat, 14 Aug 2004 02:48:13 GMT (envelope-from ambrisko) Message-Id: <200408140248.i7E2mD8G016131@repoman.freebsd.org> From: Doug Ambrisko Date: Sat, 14 Aug 2004 02:48:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/amr amr_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 02:48:14 -0000 ambrisko 2004-08-14 02:48:13 UTC FreeBSD src repository Modified files: sys/dev/amr amr_pci.c Log: Add new PCI device ID for PERC4/DI. Revision Changes Path 1.23 +3 -1 src/sys/dev/amr/amr_pci.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 03:23:25 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C1B016A4CE; Sat, 14 Aug 2004 03:23:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E00D743D1D; Sat, 14 Aug 2004 03:23:24 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3NOTp017322; Sat, 14 Aug 2004 03:23:24 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3NOR2017321; Sat, 14 Aug 2004 03:23:24 GMT (envelope-from kan) Message-Id: <200408140323.i7E3NOR2017321@repoman.freebsd.org> From: Alexander Kabaev Date: Sat, 14 Aug 2004 03:23:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/lib Makefile src/gnu/lib/libgcov Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:23:25 -0000 kan 2004-08-14 03:23:24 UTC FreeBSD src repository Modified files: gnu/lib Makefile Added files: gnu/lib/libgcov Makefile Log: Add libgcov, a runtime support library for binaries compiled for basic block profiling. Revision Changes Path 1.40 +1 -1 src/gnu/lib/Makefile 1.1 +45 -0 src/gnu/lib/libgcov/Makefile (new) From owner-cvs-src@FreeBSD.ORG Sat Aug 14 03:43:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D39A16A4CE; Sat, 14 Aug 2004 03:43:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EA4D43D4C; Sat, 14 Aug 2004 03:43:35 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3hZ9T017871; Sat, 14 Aug 2004 03:43:35 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3hZMM017870; Sat, 14 Aug 2004 03:43:35 GMT (envelope-from kientzle) Message-Id: <200408140343.i7E3hZMM017870@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Aug 2004 03:43:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_write.c configure.ac.in X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:43:35 -0000 kientzle 2004-08-14 03:43:35 UTC FreeBSD src repository Modified files: lib/libarchive archive_write.c configure.ac.in Log: We don't need , so don't bother including it. Revision Changes Path 1.12 +0 -1 src/lib/libarchive/archive_write.c 1.2 +1 -1 src/lib/libarchive/configure.ac.in From owner-cvs-src@FreeBSD.ORG Sat Aug 14 03:43:49 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF3D16A4CE; Sat, 14 Aug 2004 03:43:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FB0143D3F; Sat, 14 Aug 2004 03:43:49 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3hnfF017906; Sat, 14 Aug 2004 03:43:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3hndj017905; Sat, 14 Aug 2004 03:43:49 GMT (envelope-from rwatson) Message-Id: <200408140343.i7E3hndj017905@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 03:43:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:43:49 -0000 rwatson 2004-08-14 03:43:49 UTC FreeBSD src repository Modified files: sys/kern uipc_usrreq.c Log: After completing a name lookup for a target UNIX domain socket to connect to, re-check that the local UNIX domain socket hasn't been closed while we slept, and if so, return EINVAL. This affects the system running both with and without Giant over the network stack, and recent ULE changes appear to cause it to trigger more frequently than previously under load. While here, improve catching of possibly closed UNIX domain sockets in one or two additional circumstances. I have a much larger set of related changes in Perforce, but they require more testing before they can be merged. One debugging printf is left in place to indicate when such a race takes place: this is typically triggered by a buggy application that simultaenously connect()'s and close()'s a UNIX domain socket file descriptor. I'll remove this at some point in the future, but am interested in seeing how frequently this is reported. In the case of Martin's reported problem, it appears to be a result of a non-thread safe syslog() implementation in the C library, which does not synchronize access to its logging file descriptor. Reported by: mbr Revision Changes Path 1.136 +18 -5 src/sys/kern/uipc_usrreq.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 03:45:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAF1616A4CE; Sat, 14 Aug 2004 03:45:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEFFB43D55; Sat, 14 Aug 2004 03:45:45 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3jjBJ018055; Sat, 14 Aug 2004 03:45:45 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3jjvc018054; Sat, 14 Aug 2004 03:45:45 GMT (envelope-from kientzle) Message-Id: <200408140345.i7E3jjvc018054@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Aug 2004 03:45:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile archive_private.h archive_read_support_compression_compress.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:45:46 -0000 kientzle 2004-08-14 03:45:45 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_private.h archive_read.c archive_read_support_compression_bzip2.c archive_read_support_compression_compress.c archive_read_support_compression_gzip.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c Log: Eliminate reliance on non-portable by implementing a very simple errx() function. Improve behavior when bzlib/zlib are missing by detecting and issuing an error message on attempts to read gzip/bzip2 compressed archives. Revision Changes Path 1.20 +1 -1 src/lib/libarchive/Makefile 1.15 +2 -0 src/lib/libarchive/archive_private.h 1.12 +8 -7 src/lib/libarchive/archive_read.c 1.6 +32 -9 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.2 +2 -4 src/lib/libarchive/archive_read_support_compression_compress.c 1.7 +34 -10 src/lib/libarchive/archive_read_support_compression_gzip.c 1.11 +0 -1 src/lib/libarchive/archive_read_support_format_cpio.c 1.26 +10 -3 src/lib/libarchive/archive_read_support_format_tar.c 1.5 +4 -2 src/lib/libarchive/archive_string.c 1.4 +0 -1 src/lib/libarchive/archive_string_sprintf.c 1.8 +11 -1 src/lib/libarchive/archive_util.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 05:00:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A18B116A4D1; Sat, 14 Aug 2004 05:00:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E64C43D2D; Sat, 14 Aug 2004 05:00:38 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E50cAW020051; Sat, 14 Aug 2004 05:00:38 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E50cqV020050; Sat, 14 Aug 2004 05:00:38 GMT (envelope-from marcel) Message-Id: <200408140500.i7E50cqV020050@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 14 Aug 2004 05:00:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 unwind.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:00:41 -0000 marcel 2004-08-14 05:00:37 UTC FreeBSD src repository Modified files: sys/ia64/ia64 unwind.c Log: Allocate memory in the unwinder with M_NOWAIT. We may need to provide backtraces with locks held. Revision Changes Path 1.12 +1 -1 src/sys/ia64/ia64/unwind.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 06:29:18 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B1FB16A4CE; Sat, 14 Aug 2004 06:29:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D0AE43D41; Sat, 14 Aug 2004 06:29:18 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E6TI8w022852; Sat, 14 Aug 2004 06:29:18 GMT (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E6TI6b022851; Sat, 14 Aug 2004 06:29:18 GMT (envelope-from schweikh) Message-Id: <200408140629.i7E6TI6b022851@repoman.freebsd.org> From: Jens Schweikhardt Date: Sat, 14 Aug 2004 06:29:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/games/fortune/datfiles fortunes2-o X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:29:18 -0000 schweikh 2004-08-14 06:29:18 UTC FreeBSD src repository Modified files: games/fortune/datfiles fortunes2-o Log: Correct grammo. Revision Changes Path 1.28 +1 -1 src/games/fortune/datfiles/fortunes2-o From owner-cvs-src@FreeBSD.ORG Sat Aug 14 07:21:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511E416A4CE; Sat, 14 Aug 2004 07:21:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32FDC43D2D; Sat, 14 Aug 2004 07:21:21 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E7LK0I024440; Sat, 14 Aug 2004 07:21:21 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E7LKEE024439; Sat, 14 Aug 2004 07:21:20 GMT (envelope-from julian) Message-Id: <200408140721.i7E7LKEE024439@repoman.freebsd.org> From: Julian Elischer Date: Sat, 14 Aug 2004 07:21:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_thread.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:21:21 -0000 julian 2004-08-14 07:21:20 UTC FreeBSD src repository Modified files: sys/kern kern_thread.c Log: Whitespace nit. Revision Changes Path 1.193 +1 -1 src/sys/kern/kern_thread.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 08:33:50 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B4816A4CE; Sat, 14 Aug 2004 08:33:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DED2343D39; Sat, 14 Aug 2004 08:33:49 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8Xnn2028533; Sat, 14 Aug 2004 08:33:49 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8XnCg028532; Sat, 14 Aug 2004 08:33:49 GMT (envelope-from phk) Message-Id: <200408140833.i7E8XnCg028532@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 08:33:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_tc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:33:50 -0000 phk 2004-08-14 08:33:49 UTC FreeBSD src repository Modified files: sys/kern kern_tc.c Log: Add some KASSERTS. Revision Changes Path 1.162 +3 -0 src/sys/kern/kern_tc.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 08:36:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FD3016A4CE; Sat, 14 Aug 2004 08:36:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F75243D2F; Sat, 14 Aug 2004 08:36:35 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8aZIa028681; Sat, 14 Aug 2004 08:36:35 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8aZSK028680; Sat, 14 Aug 2004 08:36:35 GMT (envelope-from phk) Message-Id: <200408140836.i7E8aZSK028680@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 08:36:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/routed if.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:36:35 -0000 phk 2004-08-14 08:36:35 UTC FreeBSD src repository Modified files: sbin/routed if.c Log: Don't declare everything we find on a loopback interface for passive: Only the actual loopback address should be declared passive, other addresses are very likely to be desirable to announce. Check for IFF_LOOPBACK instead of IFF_PASSIVE to determine if we have an unknown interface type. Revision Changes Path 1.14 +9 -3 src/sbin/routed/if.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 08:38:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC0C716A4CF; Sat, 14 Aug 2004 08:38:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BFDB43D45; Sat, 14 Aug 2004 08:38:17 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8cHCu028756; Sat, 14 Aug 2004 08:38:17 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8cHHf028755; Sat, 14 Aug 2004 08:38:17 GMT (envelope-from phk) Message-Id: <200408140838.i7E8cHHf028755@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 08:38:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_stats.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:38:17 -0000 phk 2004-08-14 08:38:17 UTC FreeBSD src repository Modified files: sys/compat/linux linux_stats.c Log: Add XXX comment about findcdev() misuse. Revision Changes Path 1.61 +6 -0 src/sys/compat/linux/linux_stats.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 08:58:24 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2861A16A4CE; Sat, 14 Aug 2004 08:58:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0941643D5D; Sat, 14 Aug 2004 08:58:24 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8wNVe029463; Sat, 14 Aug 2004 08:58:23 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8wNjb029462; Sat, 14 Aug 2004 08:58:23 GMT (envelope-from markm) Message-Id: <200408140858.i7E8wNjb029462@repoman.freebsd.org> From: Mark Murray Date: Sat, 14 Aug 2004 08:58:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT exclude X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:58:24 -0000 markm 2004-08-14 08:58:23 UTC FreeBSD src repository Modified files: . exclude Log: Exclude openssl from RCS requirements. 0.9.5 stuff is being surgically attached. Revision Changes Path 1.115 +3 -0 CVSROOT/exclude From owner-cvs-src@FreeBSD.ORG Sat Aug 14 09:56:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F5C416A4CE; Sat, 14 Aug 2004 09:56:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 712C943D46; Sat, 14 Aug 2004 09:56:17 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9uHFr031229; Sat, 14 Aug 2004 09:56:17 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9uHF9031228; Sat, 14 Aug 2004 09:56:17 GMT (envelope-from le) Message-Id: <200408140956.i7E9uHF9031228@repoman.freebsd.org> From: Lukas Ertl Date: Sat, 14 Aug 2004 09:56:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/vinum geom_vinum_state.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:56:17 -0000 le 2004-08-14 09:56:17 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_state.c Log: Make informational output look less like an accident. Revision Changes Path 1.2 +2 -2 src/sys/geom/vinum/geom_vinum_state.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 13:38:36 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39AFB16A4CE; Sat, 14 Aug 2004 13:38:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE9E43D5E; Sat, 14 Aug 2004 13:38:36 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EDcZNI040443; Sat, 14 Aug 2004 13:38:35 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EDcZTE040442; Sat, 14 Aug 2004 13:38:35 GMT (envelope-from markm) Message-Id: <200408141338.i7EDcZTE040442@repoman.freebsd.org> From: Mark Murray Date: Sat, 14 Aug 2004 13:38:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/crypto/openssl/crypto/engine eng_all.ceng_padlock.c src/secure/lib/libcrypto Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 13:38:36 -0000 markm 2004-08-14 13:38:35 UTC FreeBSD src repository Modified files: crypto/openssl/crypto/engine eng_all.c eng_padlock.c secure/lib/libcrypto Makefile Log: Add support for C3 Nehemiah ACE ("Padlock") AES crypto. This comes from OpenSSL 0.9.5 (yet to be released), and is pretty complete. Revision Changes Path 1.2 +9 -6 src/crypto/openssl/crypto/engine/eng_all.c 1.2 +1 -1 src/crypto/openssl/crypto/engine/eng_padlock.c 1.69 +1 -1 src/secure/lib/libcrypto/Makefile From owner-cvs-src@FreeBSD.ORG Sat Aug 14 14:21:09 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D4416A4CE; Sat, 14 Aug 2004 14:21:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAFFD43D31; Sat, 14 Aug 2004 14:21:09 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EEL9fs041564; Sat, 14 Aug 2004 14:21:09 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EEL9gq041563; Sat, 14 Aug 2004 14:21:09 GMT (envelope-from phk) Message-Id: <200408141421.i7EEL9gq041563@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 14:21:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libalias alias.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 14:21:09 -0000 phk 2004-08-14 14:21:09 UTC FreeBSD src repository Modified files: lib/libalias alias.c Log: Fix outgoing ICMP on global instance. Revision Changes Path 1.49 +5 -5 src/lib/libalias/alias.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 15:32:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5BEE16A4CE; Sat, 14 Aug 2004 15:32:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9443F43D1D; Sat, 14 Aug 2004 15:32:20 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFWKED043670; Sat, 14 Aug 2004 15:32:20 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFWKAT043669; Sat, 14 Aug 2004 15:32:20 GMT (envelope-from dwmalone) Message-Id: <200408141532.i7EFWKAT043669@repoman.freebsd.org> From: David Malone Date: Sat, 14 Aug 2004 15:32:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES options src/sys/modules/ip_mroute_mod Makefile src/sys/netinet ip_id.c ip_input.c ip_mroute.c ip_output.c ip_var.h raw_ip.c tcp_syncache.c tcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:32:20 -0000 dwmalone 2004-08-14 15:32:20 UTC FreeBSD src repository Modified files: sys/conf NOTES options sys/modules/ip_mroute_mod Makefile sys/netinet ip_mroute.c ip_input.c ip_output.c raw_ip.c ip_var.h ip_id.c tcp_syncache.c tcp_usrreq.c sys/netinet6 in6_pcb.c frag6.c in6_proto.c ip6_input.c ip6_output.c ip6_id.c ip6_var.h ipsec.c sys/netipsec xform_ipip.c Log: Get rid of the RANDOM_IP_ID option and make it a sysctl. NetBSD have already done this, so I have styled the patch on their work: 1) introduce a ip_newid() static inline function that checks the sysctl and then decides if it should return a sequential or random IP ID. 2) named the sysctl net.inet.ip.random_id 3) IPv6 flow IDs and fragment IDs are now always random. Flow IDs and frag IDs are significantly less common in the IPv6 world (ie. rarely generated per-packet), so there should be smaller performance concerns. The sysctl defaults to 0 (sequential IP IDs). Reviewed by: andre, silby, mlaier, ume Based on: NetBSD MFC after: 2 months Revision Changes Path 1.1259 +1 -8 src/sys/conf/NOTES 1.473 +0 -1 src/sys/conf/options 1.12 +1 -9 src/sys/modules/ip_mroute_mod/Makefile 1.5 +0 -3 src/sys/netinet/ip_id.c 1.282 +5 -3 src/sys/netinet/ip_input.c 1.105 +2 -11 src/sys/netinet/ip_mroute.c 1.224 +1 -6 src/sys/netinet/ip_output.c 1.88 +13 -6 src/sys/netinet/ip_var.h 1.140 +1 -6 src/sys/netinet/raw_ip.c 1.65 +0 -5 src/sys/netinet/tcp_syncache.c 1.106 +1 -6 src/sys/netinet/tcp_usrreq.c 1.24 +0 -5 src/sys/netinet6/frag6.c 1.59 +0 -5 src/sys/netinet6/in6_pcb.c 1.29 +0 -7 src/sys/netinet6/in6_proto.c 1.6 +0 -6 src/sys/netinet6/ip6_id.c 1.75 +0 -4 src/sys/netinet6/ip6_input.c 1.82 +0 -5 src/sys/netinet6/ip6_output.c 1.27 +0 -8 src/sys/netinet6/ip6_var.h 1.36 +1 -6 src/sys/netinet6/ipsec.c 1.9 +1 -6 src/sys/netipsec/xform_ipip.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 15:32:40 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D31C116A4CE; Sat, 14 Aug 2004 15:32:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA39A43D41; Sat, 14 Aug 2004 15:32:40 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFWeIo043733; Sat, 14 Aug 2004 15:32:40 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFWeXe043732; Sat, 14 Aug 2004 15:32:40 GMT (envelope-from dwmalone) Message-Id: <200408141532.i7EFWeXe043732@repoman.freebsd.org> From: David Malone Date: Sat, 14 Aug 2004 15:32:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net if_pfsync.c pf_norm.c src/sys/modules/pf Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:32:41 -0000 dwmalone 2004-08-14 15:32:40 UTC FreeBSD src repository Modified files: sys/contrib/pf/net if_pfsync.c pf_norm.c sys/modules/pf Makefile Log: Get rid of the RANDOM_IP_ID option and make it a sysctl. NetBSD have already done this, so I have styled the patch on their work: 1) introduce a ip_newid() static inline function that checks the sysctl and then decides if it should return a sequential or random IP ID. 2) named the sysctl net.inet.ip.random_id 3) IPv6 flow IDs and fragment IDs are now always random. Flow IDs and frag IDs are significantly less common in the IPv6 world (ie. rarely generated per-packet), so there should be smaller performance concerns. The sysctl defaults to 0 (sequential IP IDs). Reviewed by: andre, silby, mlaier, ume Based on: NetBSD MFC after: 2 months Revision Changes Path 1.11 +0 -5 src/sys/contrib/pf/net/if_pfsync.c 1.10 +0 -4 src/sys/contrib/pf/net/pf_norm.c 1.4 +2 -5 src/sys/modules/pf/Makefile From owner-cvs-src@FreeBSD.ORG Sat Aug 14 15:57:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D6716A4CE; Sat, 14 Aug 2004 15:57:20 +0000 (GMT) Received: from kaiser.sig11.org (host104-117.pool8250.interbusiness.it [82.50.117.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC0243D1D; Sat, 14 Aug 2004 15:57:15 +0000 (GMT) (envelope-from rionda@riondato.com) Received: by kaiser.sig11.org (Postfix, from userid 1000) id 5990C21E; Sat, 14 Aug 2004 17:57:54 +0200 (CEST) From: Matteo Riondato To: David Malone In-Reply-To: <200408141532.i7EFWKAT043669@repoman.freebsd.org> References: <200408141532.i7EFWKAT043669@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-d8SsZVFoJw83l4lq/E3d" Message-Id: <1092499073.15845.1.camel@kaiser.sig11.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 14 Aug 2004 17:57:54 +0200 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES optionsip_input.ctcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:57:21 -0000 --=-d8SsZVFoJw83l4lq/E3d Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Il Sab, 2004-08-14 alle 17:32, David Malone ha scritto: > . > =20 > 2) named the sysctl net.inet.ip.random_id > =20 > The sysctl defaults to 0 (sequential IP IDs). Wouldn't it be safer to have the sysctl defaults to 1 ? Best Regards --=20 Rionda aka Matteo Riondato GUFI Staff Member (http://www.gufi.org) BSD-FAQ-it Main Developer (http://www.gufi.org/~rionda) FreeSBIE BugMeister (http://www.freesbie.org) GPG key at: http://www.riondabsd.net/riondagpg.asc Sent from: kaiser.sig11.org running FreeBSD-5.2-CURRENT --=-d8SsZVFoJw83l4lq/E3d Content-Type: application/pgp-signature; name=signature.asc Content-Description: Questa parte del messaggio =?ISO-8859-1?Q?=E8?= firmata -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBHjaB2Mp4pR7Fa+wRAgAfAJ9uAQFaeQyCU+eBl04khfcXZhn+2ACeLbNO ITfcryoP3PrCcdPIrglUBmw= =BQ7f -----END PGP SIGNATURE----- --=-d8SsZVFoJw83l4lq/E3d-- From owner-cvs-src@FreeBSD.ORG Sat Aug 14 16:00:13 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AFED16A4D1 for ; Sat, 14 Aug 2004 16:00:13 +0000 (GMT) Received: from mail.freebsd.org.cn (dns3.freebsd.org.cn [61.129.66.75]) by mx1.FreeBSD.org (Postfix) with SMTP id C46D643D31 for ; Sat, 14 Aug 2004 16:00:10 +0000 (GMT) (envelope-from delphij@frontfree.net) Received: (qmail 26214 invoked by uid 0); 14 Aug 2004 15:57:29 -0000 Received: from unknown (HELO beastie.frontfree.net) (219.239.98.7) by mail.freebsd.org.cn with SMTP; 14 Aug 2004 15:57:29 -0000 Received: from localhost (localhost.frontfree.net [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id F275511FDF; Sat, 14 Aug 2004 23:42:09 +0800 (CST) Received: from beastie.frontfree.net ([127.0.0.1]) by localhost (beastie.frontfree.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01766-10; Sat, 14 Aug 2004 23:42:07 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id EEA0A11DDD; Sat, 14 Aug 2004 23:42:01 +0800 (CST) Date: Sat, 14 Aug 2004 23:42:01 +0800 From: Xin LI To: David Malone Message-ID: <20040814154201.GA306@frontfree.net> References: <200408141532.i7EFWKAT043669@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cmJC7u66zC7hs+87" Content-Disposition: inline In-Reply-To: <200408141532.i7EFWKAT043669@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i X-GPG-key-ID/Fingerprint: 0xCAEEB8C0 / 43B8 B703 B8DD 0231 B333 DC28 39FB 93A0 CAEE B8C0 X-GPG-Public-Key: http://www.delphij.net/delphij.asc X-Operating-System: FreeBSD beastie.frontfree.net 5.2-delphij FreeBSD 5.2-delphij #3: Fri Jul 30 20:01:43 CST 2004 delphij@beastie.frontfree.net:/usr/obj/usr/src/sys/BEASTIE i386 X-URL: http://www.delphij.net X-By: delphij@beastie.frontfree.net X-Location: Beijing, China X-Virus-Scanned: by amavisd-new at frontfree.net cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES options src/sys/modules/ip_mroute_mod Makefile src/sys/netinet ip_id.c ip_input.c ip_mroute.c ip_output.c ip_var.h raw_ip.c tcp_syncache.c tcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:00:13 -0000 --cmJC7u66zC7hs+87 Content-Type: multipart/mixed; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 14, 2004 at 03:32:20PM +0000, David Malone wrote: > dwmalone 2004-08-14 15:32:20 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/conf NOTES options=20 > sys/modules/ip_mroute_mod Makefile=20 > sys/netinet ip_mroute.c ip_input.c ip_output.c=20 > raw_ip.c ip_var.h ip_id.c tcp_syncache.c=20 > tcp_usrreq.c=20 > sys/netinet6 in6_pcb.c frag6.c in6_proto.c ip6_input.c=20 > ip6_output.c ip6_id.c ip6_var.h ipsec.c=20 > sys/netipsec xform_ipip.c=20 > Log: > Get rid of the RANDOM_IP_ID option and make it a sysctl. NetBSD > have already done this, so I have styled the patch on their work: Thanks! What about having an UPDATING entry for this? Cheers, --=20 Xin LI http://www.delphij.net/ See complete headers for GPG key and other information. --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-UPDATING Content-Transfer-Encoding: quoted-printable Index: UPDATING =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/fcvs/src/UPDATING,v retrieving revision 1.341 diff -u -r1.341 UPDATING --- UPDATING 13 Aug 2004 13:14:05 -0000 1.341 +++ UPDATING 14 Aug 2004 15:39:23 -0000 @@ -21,6 +21,12 @@ developers choose to disable these features on build machines to maximize performance. =20 +20040814: + RANDOM_IP_ID is now a sysctl and hence no longer necessary in + kernel options. Please adjust your /etc/sysctl.conf and add + net.inet.ip.random_id=3D1 if you need it, as it was turned off + by default. + 20040807: The size of 'struct ifnet' has changed due to the addition of the if_carp placeholder. All kernel modules implementing network --HlL+5n6rz5pIUxbD-- --cmJC7u66zC7hs+87 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHjLJOfuToMruuMARAk5MAJ4/pVmhW61BP6LMmiU64cM3+ZW/TwCfUa3F Gqlxrp0Bi9aU0fwsx1cVvso= =Iclx -----END PGP SIGNATURE----- --cmJC7u66zC7hs+87-- From owner-cvs-src@FreeBSD.ORG Sat Aug 14 16:10:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13FCB16A4CE; Sat, 14 Aug 2004 16:10:20 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id A793043D2F; Sat, 14 Aug 2004 16:10:19 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.160] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bw16o-0003qI-00; Sat, 14 Aug 2004 18:10:18 +0200 Received: from [217.83.5.147] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bw16n-0005Tr-00; Sat, 14 Aug 2004 18:10:18 +0200 From: Max Laier To: Matteo Riondato Date: Sat, 14 Aug 2004 18:08:07 +0200 User-Agent: KMail/1.6.2 References: <200408141532.i7EFWKAT043669@repoman.freebsd.org> <1092499073.15845.1.camel@kaiser.sig11.org> In-Reply-To: <1092499073.15845.1.camel@kaiser.sig11.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_+jjHB/R+OHiJnFt"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408141808.31032.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: David Malone cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES options src/sys/modules/ip_mroute_mod Makefile src/sys/netinet ip_id.c ip_input.c ip_mroute.c ip_output.c ip_var.h raw_ip.c tcp_syncache.c tcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:10:20 -0000 --Boundary-02=_+jjHB/R+OHiJnFt Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 August 2004 17:57, Matteo Riondato wrote: > Il Sab, 2004-08-14 alle 17:32, David Malone ha scritto: > > . > > > > 2) named the sysctl net.inet.ip.random_id > > > > > > The sysctl defaults to 0 (sequential IP IDs). > > Wouldn't it be safer to have the sysctl defaults to 1 ? Safer - maybe. More convenient - no. "option RANDOM_IP_ID" has not been in= =20 GENERIC for a reason (too short id reuse cycle for highspeed links). Now th= at=20 it is a sysctl there is even less reason to turn it on by default. =2D-=20 /"\ Best regards, | mlaier@freebsd.org \ / Max Laier | ICQ #67774661 X http://pf4freebsd.love2party.net/ | mlaier@EFnet / \ ASCII Ribbon Campaign | Against HTML Mail and News --Boundary-02=_+jjHB/R+OHiJnFt Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHjj+XyyEoT62BG0RAuzQAJ4q/p8sx7ybaSt5XylxZaCBA4z3egCfZvlf K45EhS6xuBJ+3m55a5yJqiI= =qZPM -----END PGP SIGNATURE----- --Boundary-02=_+jjHB/R+OHiJnFt-- From owner-cvs-src@FreeBSD.ORG Sat Aug 14 16:16:01 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE7D716A4CE; Sat, 14 Aug 2004 16:16:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0CF343D39; Sat, 14 Aug 2004 16:16:01 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EGG1mS045298; Sat, 14 Aug 2004 16:16:01 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EGG1i8045297; Sat, 14 Aug 2004 16:16:01 GMT (envelope-from dwmalone) Message-Id: <200408141616.i7EGG1i8045297@repoman.freebsd.org> From: David Malone Date: Sat, 14 Aug 2004 16:16:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:16:02 -0000 dwmalone 2004-08-14 16:16:01 UTC FreeBSD src repository Modified files: . UPDATING Log: Add a note about RANDOM_IP_ID. Revision Changes Path 1.342 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Aug 14 17:15:17 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29B8816A4CE; Sat, 14 Aug 2004 17:15:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 227F043D1D; Sat, 14 Aug 2004 17:15:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHFHG6049585; Sat, 14 Aug 2004 17:15:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHFH16049584; Sat, 14 Aug 2004 17:15:17 GMT (envelope-from rwatson) Message-Id: <200408141715.i7EHFH16049584@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 17:15:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:15:17 -0000 rwatson 2004-08-14 17:15:16 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Cause pfind() not to return processes in the PRS_NEW state. As a result, threads consuming the result of pfind() will not need to check for a NULL credential pointer or other signs of an incompletely created process. However, this also means that pfind() cannot be used to test for the existence or find such a process. Annotate pfind() to indicate that this is the case. A review of curent consumers seems to indicate that this is not a problem for any of them. This closes a number of race conditions that could result in NULL pointer dereferences and related failure modes. Other related races continue to exist, especially during iteration of the allproc list without due caution. Discussed with: tjr, green Revision Changes Path 1.215 +8 -1 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 17:46:11 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB1DE16A4CE; Sat, 14 Aug 2004 17:46:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3A0F43D58; Sat, 14 Aug 2004 17:46:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHkAKn050498; Sat, 14 Aug 2004 17:46:10 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHkAJ5050497; Sat, 14 Aug 2004 17:46:10 GMT (envelope-from stefanf) Message-Id: <200408141746.i7EHkAJ5050497@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 14 Aug 2004 17:46:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen opendir.c src/lib/libc_r/uthread uthread_write.c uthread_writev.c src/sbin/ldconfig ldconfig.c src/sbin/ping ping.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:46:11 -0000 stefanf 2004-08-14 17:46:10 UTC FreeBSD src repository Modified files: lib/libc/gen opendir.c lib/libc_r/uthread uthread_write.c uthread_writev.c sbin/ldconfig ldconfig.c sbin/ping ping.c Log: Avoid using void pointers in additive expressions. PR: 56653 Revision Changes Path 1.22 +1 -1 src/lib/libc/gen/opendir.c 1.24 +2 -1 src/lib/libc_r/uthread/uthread_write.c 1.22 +3 -1 src/lib/libc_r/uthread/uthread_writev.c 1.41 +2 -2 src/sbin/ldconfig/ldconfig.c 1.105 +1 -1 src/sbin/ping/ping.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 17:55:16 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AB2E16A4CE; Sat, 14 Aug 2004 17:55:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F314843D45; Sat, 14 Aug 2004 17:55:15 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHtFAN050787; Sat, 14 Aug 2004 17:55:15 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHtFQl050786; Sat, 14 Aug 2004 17:55:15 GMT (envelope-from stefanf) Message-Id: <200408141755.i7EHtFQl050786@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 14 Aug 2004 17:55:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include complex.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:55:16 -0000 stefanf 2004-08-14 17:55:15 UTC FreeBSD src repository Modified files: include complex.h Log: Use tabulators after '#define'. Revision Changes Path 1.5 +5 -5 src/include/complex.h From owner-cvs-src@FreeBSD.ORG Sat Aug 14 18:03:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1384516A4CE; Sat, 14 Aug 2004 18:03:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E954343D45; Sat, 14 Aug 2004 18:03:21 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EI3LIA050988; Sat, 14 Aug 2004 18:03:21 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EI3Lbd050987; Sat, 14 Aug 2004 18:03:21 GMT (envelope-from stefanf) Message-Id: <200408141803.i7EI3Lbd050987@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 14 Aug 2004 18:03:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include complex.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:03:22 -0000 stefanf 2004-08-14 18:03:21 UTC FreeBSD src repository Modified files: include complex.h Log: Stop defining '_Complex' in a C99 environment, it is supposed to be a keyword. Revision Changes Path 1.6 +2 -0 src/include/complex.h From owner-cvs-src@FreeBSD.ORG Sat Aug 14 18:57:41 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBDED16A4D0; Sat, 14 Aug 2004 18:57:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDE6843D46; Sat, 14 Aug 2004 18:57:41 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EIvfht052539; Sat, 14 Aug 2004 18:57:41 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EIvfx7052538; Sat, 14 Aug 2004 18:57:41 GMT (envelope-from alc) Message-Id: <200408141857.i7EIvfx7052538@repoman.freebsd.org> From: Alan Cox Date: Sat, 14 Aug 2004 18:57:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:57:42 -0000 alc 2004-08-14 18:57:41 UTC FreeBSD src repository Modified files: sys/vm vm_map.c Log: Remove spl calls. Revision Changes Path 1.358 +2 -19 src/sys/vm/vm_map.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 20:57:59 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6447216A4CE; Sat, 14 Aug 2004 20:57:59 +0000 (GMT) Received: from pimout1-ext.prodigy.net (pimout1-ext.prodigy.net [207.115.63.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C9CE43D46; Sat, 14 Aug 2004 20:57:59 +0000 (GMT) (envelope-from julian@elischer.org) Received: from elischer.org (adsl-68-124-233-133.dsl.snfc21.pacbell.net [68.124.233.133])i7EKvu5C080514; Sat, 14 Aug 2004 16:57:57 -0400 Message-ID: <411E7CD4.7010504@elischer.org> Date: Sat, 14 Aug 2004 13:57:56 -0700 From: Julian Elischer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4b) Gecko/20030524 X-Accept-Language: en, hu MIME-Version: 1.0 To: Robert Watson References: <200408141715.i7EHFH16049584@repoman.freebsd.org> In-Reply-To: <200408141715.i7EHFH16049584@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 20:57:59 -0000 Robert Watson wrote: > rwatson 2004-08-14 17:15:16 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_proc.c > Log: > Cause pfind() not to return processes in the PRS_NEW state. As a result, > threads consuming the result of pfind() will not need to check for a NULL > credential pointer or other signs of an incompletely created process. > However, this also means that pfind() cannot be used to test for the > existence or find such a process. Annotate pfind() to indicate that this > is the case. A review of curent consumers seems to indicate that this is > not a problem for any of them. This closes a number of race conditions > that could result in NULL pointer dereferences and related failure modes. > Other related races continue to exist, especially during iteration of the > allproc list without due caution. possibly part of the answer would be to not put the proc on any queues until it is more set up.. > > Discussed with: tjr, green > > Revision Changes Path > 1.215 +8 -1 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 21:01:47 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E2CC16A4CF; Sat, 14 Aug 2004 21:01:47 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 261CA43D41; Sat, 14 Aug 2004 21:01:47 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7EL00H2031165; Sat, 14 Aug 2004 17:00:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7EL00nc031162; Sat, 14 Aug 2004 17:00:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Sat, 14 Aug 2004 16:59:59 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Julian Elischer In-Reply-To: <411E7CD4.7010504@elischer.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:01:47 -0000 On Sat, 14 Aug 2004, Julian Elischer wrote: > > Cause pfind() not to return processes in the PRS_NEW state. As a result, > > threads consuming the result of pfind() will not need to check for a NULL > > credential pointer or other signs of an incompletely created process. > > However, this also means that pfind() cannot be used to test for the > > existence or find such a process. Annotate pfind() to indicate that this > > is the case. A review of curent consumers seems to indicate that this is > > not a problem for any of them. This closes a number of race conditions > > that could result in NULL pointer dereferences and related failure modes. > > Other related races continue to exist, especially during iteration of the > > allproc list without due caution. > > possibly part of the answer would be to not put the proc on any queues > until it is more set up.. Tim had a set of modifications to keep them on a separate list, but I think he also decided it was quite a bit more complicated than they had hoped. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-src@FreeBSD.ORG Sat Aug 14 21:40:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98AD816A4CE; Sat, 14 Aug 2004 21:40:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E7E43D54; Sat, 14 Aug 2004 21:40:28 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELeSIh058839; Sat, 14 Aug 2004 21:40:28 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELeS8H058838; Sat, 14 Aug 2004 21:40:28 GMT (envelope-from phk) Message-Id: <200408142140.i7ELeS8H058838@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 21:40:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fdc fdc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:40:28 -0000 phk 2004-08-14 21:40:28 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c Log: Remove confused comment. Revision Changes Path 1.283 +0 -4 src/sys/dev/fdc/fdc.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 21:43:37 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9740816A4CE; Sat, 14 Aug 2004 21:43:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D1A143D46; Sat, 14 Aug 2004 21:43:37 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELhbqO059079; Sat, 14 Aug 2004 21:43:37 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELhbHY059078; Sat, 14 Aug 2004 21:43:37 GMT (envelope-from marius) Message-Id: <200408142143.i7ELhbHY059078@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 21:43:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_dc.c src/sys/sparc64/include ofw_machdep.h src/sys/sparc64/sparc64 ofw_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:43:37 -0000 marius 2004-08-14 21:43:37 UTC FreeBSD src repository Modified files: sys/pci if_dc.c sys/sparc64/include ofw_machdep.h sys/sparc64/sparc64 ofw_machdep.c Log: - Make OF_getetheraddr() honour the "local-mac-address?" system config variable. If set to "true" OF_getetheraddr() will now return the unique MAC address stored in the "local-mac-address" property of the device's OFW node if present and the host address/system default MAC address if the node doesn't doesn't have such a property. If set to "false" the host address will be returned for all devices like before this change. This brings the behaviour of device drivers for NICs with OFW support/ FCode, i.e. dc(4) for on-board DM9102A on Sun machines, gem(4) and hme(4), regarding "local-mac-address?" in line with NetBSD and Solaris. The man pages of the respective drivers will be updated separately to reflect this change. - Remove OF_getetheraddr2() which was used as a stopgap in dc(4). Its functionality is now part of OF_getetheraddr(). Revision Changes Path 1.148 +1 -1 src/sys/pci/if_dc.c 1.5 +0 -1 src/sys/sparc64/include/ofw_machdep.h 1.11 +11 -11 src/sys/sparc64/sparc64/ofw_machdep.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 21:44:35 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9399216A4CE; Sat, 14 Aug 2004 21:44:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7320E43D31; Sat, 14 Aug 2004 21:44:35 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELiZZ2059162; Sat, 14 Aug 2004 21:44:35 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELiZ7Y059161; Sat, 14 Aug 2004 21:44:35 GMT (envelope-from marius) Message-Id: <200408142144.i7ELiZ7Y059161@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 21:44:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 dc.4 gem.4 hme.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:44:35 -0000 marius 2004-08-14 21:44:35 UTC FreeBSD src repository Modified files: share/man/man4 dc.4 gem.4 hme.4 Log: - Capitalize Ethernet and Fast Ethernet. - Add a NOTES section with information regarding the "local-mac-address?" system configuration variable on sparc64 and add a reference to eeprom(8) for using it. Dump document date for this. - In dc.4, add the on-board DM9102A on Sun Netra X1 and Sun Fire V100 to the list of known working devices. Revision Changes Path 1.28 +34 -6 src/share/man/man4/dc.4 1.3 +28 -3 src/share/man/man4/gem.4 1.4 +25 -1 src/share/man/man4/hme.4 From owner-cvs-src@FreeBSD.ORG Sat Aug 14 22:10:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 889AE16A4CE; Sat, 14 Aug 2004 22:10:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FEAB43D1D; Sat, 14 Aug 2004 22:10:26 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMAQok060334; Sat, 14 Aug 2004 22:10:26 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMAQtT060333; Sat, 14 Aug 2004 22:10:26 GMT (envelope-from imp) Message-Id: <200408142210.i7EMAQtT060333@repoman.freebsd.org> From: Warner Losh Date: Sat, 14 Aug 2004 22:10:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb uhub.c usb_port.h usb_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:10:26 -0000 imp 2004-08-14 22:10:26 UTC FreeBSD src repository Modified files: sys/dev/usb uhub.c usb_port.h usb_subr.c Log: Next step in making usb more newbus: o reprobe children when a new driver is added to uhub o fix the usbd_probe_and_attach to set the ivars to a malloc'd area, as well as freeing the ivars on child destruction. o Don't delete children that don't attach. Evidentally, the need to do this is a common misconception. o minor formatting foo that may violate style(9) at the moment, but keeps the diffs against my p4 tree smaller. This does not solve the ugen gobbling things up problem, but the fixes I have for that expose bugs in other parts of the tree... Revision Changes Path 1.61 +14 -26 src/sys/dev/usb/uhub.c 1.66 +5 -1 src/sys/dev/usb/usb_port.h 1.68 +31 -37 src/sys/dev/usb/usb_subr.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 22:38:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12FCB16A4CE; Sat, 14 Aug 2004 22:38:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A31343D39; Sat, 14 Aug 2004 22:38:21 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMcKOW061059; Sat, 14 Aug 2004 22:38:20 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMcKV0061058; Sat, 14 Aug 2004 22:38:20 GMT (envelope-from marius) Message-Id: <200408142238.i7EMcKV0061058@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 22:38:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/hme if_hme_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:38:21 -0000 marius 2004-08-14 22:38:20 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme_pci.c Log: Make hme(4), i.e. the PCI-variant, MI by reading the MAC address on sytems without Open Firmware directly instead of using OF_getetheraddr(). This is a bit painful though, as the MAC address is contained in the NA field of the VPD of the EBus bridge, which is is another function of the same chip. To make it worse, the VPD of the EBus bridge can't be accessed via the PCI capability pointer but has to be digged out from the Boot PROM and has a non-standard format. The PCI VPD struct and macros used here should be part of the FreeBSD PCI code nevertheless. Approved by: tmm Based on: NetBSD Tested with: Sun X1032A (hme(4)-isp(4)-combo card) on alpha and i386 Revision Changes Path 1.15 +152 -3 src/sys/dev/hme/if_hme_pci.c From owner-cvs-src@FreeBSD.ORG Sat Aug 14 22:38:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2071B16A4CE; Sat, 14 Aug 2004 22:38:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0085143D49; Sat, 14 Aug 2004 22:38:51 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMcoZq061098; Sat, 14 Aug 2004 22:38:50 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMcoLl061097; Sat, 14 Aug 2004 22:38:50 GMT (envelope-from marius) Message-Id: <200408142238.i7EMcoLl061097@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 22:38:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:38:51 -0000 marius 2004-08-14 22:38:50 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Add hme(4) here now that it's MI. Revision Changes Path 1.1260 +2 -0 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Sat Aug 14 22:40:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21E4816A4D9; Sat, 14 Aug 2004 22:40:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB8B543D48; Sat, 14 Aug 2004 22:40:19 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMeGQ1061200; Sat, 14 Aug 2004 22:40:16 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMeGk1061199; Sat, 14 Aug 2004 22:40:16 GMT (envelope-from marius) Message-Id: <200408142240.i7EMeGk1061199@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 22:40:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile src/sys/modules/hme Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:40:23 -0000 marius 2004-08-14 22:40:16 UTC FreeBSD src repository Modified files: sys/modules Makefile sys/modules/hme Makefile Log: Now that hme(4) is MI build its module on all platforms. Tested by: `make universe` and powerpc cross-build on i386 Revision Changes Path 1.392 +1 -2 src/sys/modules/Makefile 1.3 +5 -2 src/sys/modules/hme/Makefile From owner-cvs-src@FreeBSD.ORG Sat Aug 14 23:53:05 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19ADA16A4CE; Sat, 14 Aug 2004 23:53:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE02F43D31; Sat, 14 Aug 2004 23:53:04 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENr4RH063236; Sat, 14 Aug 2004 23:53:04 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENr41U063235; Sat, 14 Aug 2004 23:53:04 GMT (envelope-from marius) Message-Id: <200408142353.i7ENr41U063235@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 23:53:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:53:05 -0000 marius 2004-08-14 23:53:04 UTC FreeBSD src repository Modified files: sys/conf kmod.mk Log: Add sparc64/pci/ofw_pci_if.m to the list of MFILES so modules can use sparc64/pci/ofw_pci.h. This is a bit messy right now but (hopefully) will get better once the MI OFW PCI code has moved from sparc64/pci to dev/ofw. Revision Changes Path 1.166 +2 -1 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Sat Aug 14 23:54:28 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 297E016A4CE; Sat, 14 Aug 2004 23:54:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DC7243D1F; Sat, 14 Aug 2004 23:54:28 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENsSbo063322; Sat, 14 Aug 2004 23:54:28 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENsS7a063321; Sat, 14 Aug 2004 23:54:28 GMT (envelope-from marius) Message-Id: <200408142354.i7ENsS7a063321@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 23:54:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/uart uart_bus_isa.c uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_pc98.c uart_cpu_sparc64.c src/sys/modules/uart Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:54:28 -0000 marius 2004-08-14 23:54:27 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_isa.c uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_pc98.c uart_cpu_sparc64.c sys/modules/uart Makefile Log: - Introduce an uart_cpu_identify() which is implemented in uart_cpu_.c and that can be used as an identify function for all kinds of busses on a certain platform. Expect for sparc64 these are only stubs right now. [1] - For sparc64, add code to its uart_cpu_identify() for registering the on- board ISA UARTs and their resources based on information obtained from Open Firmware. It would be better if this would be done in the OFW ISA code. However, due to the common FreeBSD ISA code and PNP-IDs not always being present in the properties of the ISA nodes there seems to be no good way to implement that. Therefore special casing UARTs as the sole really relevant ISA devices on sparc64 seemed reasonable. [2] Approved by: marcel Discussed with: marcel [1], tmm [2] Tested by: make universe Revision Changes Path 1.3 +2 -0 src/sys/dev/uart/uart_bus_isa.c 1.6 +1 -0 src/sys/dev/uart/uart_cpu.h 1.8 +6 -0 src/sys/dev/uart/uart_cpu_alpha.c 1.8 +6 -0 src/sys/dev/uart/uart_cpu_amd64.c 1.8 +6 -0 src/sys/dev/uart/uart_cpu_i386.c 1.8 +6 -0 src/sys/dev/uart/uart_cpu_ia64.c 1.12 +6 -0 src/sys/dev/uart/uart_cpu_pc98.c 1.11 +46 -0 src/sys/dev/uart/uart_cpu_sparc64.c 1.11 +7 -2 src/sys/modules/uart/Makefile