From owner-cvs-src@FreeBSD.ORG Sun Jul 2 02:37:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FA2B16A59D; Sun, 2 Jul 2006 02:37:35 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A498243F71; Sun, 2 Jul 2006 01:58:33 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k621wXNC055490; Sun, 2 Jul 2006 01:58:33 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k621wXcv055489; Sun, 2 Jul 2006 01:58:33 GMT (envelope-from bmah) Message-Id: <200607020158.k621wXcv055489@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 2 Jul 2006 01:58:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: 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.5 Precedence: 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, 02 Jul 2006 02:37:35 -0000 bmah 2006-07-02 01:58:33 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix grammar and style nits starting in the network interface section and continuing through the end of this document. Revision Changes Path 1.953 +51 -48 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sun Jul 2 03:45:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E1916A40F; Sun, 2 Jul 2006 03:45:34 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D988343D49; Sun, 2 Jul 2006 03:45:33 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k623jXBE062286; Sun, 2 Jul 2006 03:45:33 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k623jX3s062285; Sun, 2 Jul 2006 03:45:33 GMT (envelope-from imp) Message-Id: <200607020345.k623jX3s062285@repoman.freebsd.org> From: Warner Losh Date: Sun, 2 Jul 2006 03:45:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/at91 uart_dev_at91usart.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Jul 2006 03:45:34 -0000 imp 2006-07-02 03:45:33 UTC FreeBSD src repository Modified files: sys/arm/at91 uart_dev_at91usart.c Log: MFp4: Make serial ports more robust and reliable. Make non-console ports work. This might have broken skyeye stuff. o Introduce ping-pong receive buffers. o Use DMA to copy characters directly into memory. o Support baud rates other than 115200 o Use 1 stop bit when 1 stop bit is requested (otherwise 2 were used, which caused dropped characters when received in bursts). o Use 1.5 stop bits for 5-bit bytes, and 2 stop bits otherwise when 2 stop bits were requested. o Actually update line parameters. o Fix comments o Move init into attach o Tweaks to TX interrupt registers to get them reliable and non-storming. o harvest data in ipend since the latency between it and the callback was too long. This likely is how it should be, I don't know why I deferred things to the callback before. o disable all interrupts in console init. We don't want interrupts until we turn on an ISR. o cosmetic tweaks o Automatically detect of the TIMEOUT interrupt is supported. If so, use it so we get better CPU utilization. Otherwise do a character at a time RX. Good news here is that it seems we have enough CPU and low enough fast interrupt latency to do this reliably. o Don't read USART_CR. It is a write-only register. o start to implement bus_ioctl. Do BAUD now... Revision Changes Path 1.7 +208 -53 src/sys/arm/at91/uart_dev_at91usart.c From owner-cvs-src@FreeBSD.ORG Sun Jul 2 03:50:45 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83B6216A412; Sun, 2 Jul 2006 03:50:45 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA0C43D53; Sun, 2 Jul 2006 03:50:45 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k623ojmw062558; Sun, 2 Jul 2006 03:50:45 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k623ojlM062557; Sun, 2 Jul 2006 03:50:45 GMT (envelope-from imp) Message-Id: <200607020350.k623ojlM062557@repoman.freebsd.org> From: Warner Losh Date: Sun, 2 Jul 2006 03:50:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/at91 at91_pio.c at91_pio_rm9200.h at91_piovar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Jul 2006 03:50:45 -0000 imp 2006-07-02 03:50:44 UTC FreeBSD src repository Modified files: sys/arm/at91 at91_pio.c Added files: sys/arm/at91 at91_pio_rm9200.h at91_piovar.h Log: Add support for configuring pins to be one of {GPIO, PERIPHERAL A or PERIPHERAL B}, as well as direction of GPIO pin. Add defines for all the pins. Revision Changes Path 1.2 +88 -1 src/sys/arm/at91/at91_pio.c 1.1 +324 -0 src/sys/arm/at91/at91_pio_rm9200.h (new) 1.1 +38 -0 src/sys/arm/at91/at91_piovar.h (new) From owner-cvs-src@FreeBSD.ORG Sun Jul 2 18:43:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 920B916A526; Sun, 2 Jul 2006 18:43:53 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EDB64430B; Sun, 2 Jul 2006 18:22:47 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k62IMlOX065633; Sun, 2 Jul 2006 18:22:47 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k62IMlxE065632; Sun, 2 Jul 2006 18:22:47 GMT (envelope-from alc) Message-Id: <200607021822.k62IMlxE065632@repoman.freebsd.org> From: Alan Cox Date: Sun, 2 Jul 2006 18:22:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: 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.5 Precedence: 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, 02 Jul 2006 18:43:53 -0000 alc 2006-07-02 18:22:47 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: Correct an error in the new pmap_collect(), thus only affecting HEAD. Specifically, the pv entry was always being freed to the caller's pmap instead of the pmap to which the pv entry belongs. Revision Changes Path 1.563 +1 -1 src/sys/amd64/amd64/pmap.c 1.565 +1 -1 src/sys/i386/i386/pmap.c From owner-cvs-src@FreeBSD.ORG Sun Jul 2 20:49:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C6D816A40F; Sun, 2 Jul 2006 20:49:47 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B75743D55; Sun, 2 Jul 2006 20:49:47 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k62KnkYE082226; Sun, 2 Jul 2006 20:49:46 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k62Knk1i082225; Sun, 2 Jul 2006 20:49:46 GMT (envelope-from maxim) Message-Id: <200607022049.k62Knk1i082225@repoman.freebsd.org> From: Maxim Konovalov Date: Sun, 2 Jul 2006 20:49:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Jul 2006 20:49:47 -0000 maxim 2006-07-02 20:49:46 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: o Remove rev. 1.57 leftover, not reached code. Revision Changes Path 1.85 +0 -2 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Sun Jul 2 20:53:53 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ADC716A407; Sun, 2 Jul 2006 20:53:53 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CED0D43D5E; Sun, 2 Jul 2006 20:53:52 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k62KrqCQ082490; Sun, 2 Jul 2006 20:53:52 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k62Krqkb082489; Sun, 2 Jul 2006 20:53:52 GMT (envelope-from maxim) Message-Id: <200607022053.k62Krqkb082489@repoman.freebsd.org> From: Maxim Konovalov Date: Sun, 2 Jul 2006 20:53:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 02 Jul 2006 20:53:53 -0000 maxim 2006-07-02 20:53:52 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: o Fix grammar in the comment, indent macros. No functional changes. Revision Changes Path 1.86 +7 -7 src/sys/kern/sched_4bsd.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 02:53:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E027D16A40F; Mon, 3 Jul 2006 02:53:40 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7AA743D45; Mon, 3 Jul 2006 02:53:40 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k632repG013526; Mon, 3 Jul 2006 02:53:40 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k632re4v013525; Mon, 3 Jul 2006 02:53:40 GMT (envelope-from yongari) Message-Id: <200607030253.k632re4v013525@repoman.freebsd.org> From: Pyun YongHyeon Date: Mon, 3 Jul 2006 02:53:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c inphy.c lxtphy.c mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c rgephy.c rlphy.c ruephy.c tdkphy.c tlphy.c ukphy.c xmphy.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 02:53:41 -0000 yongari 2006-07-03 02:53:40 UTC FreeBSD src repository Modified files: sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c inphy.c lxtphy.c mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c rgephy.c rlphy.c ruephy.c tdkphy.c tlphy.c ukphy.c xmphy.c Log: Replace hard-coded magic constants to system defined constants (BUS_PROBE_DEFAULT, BUS_PROBE_GENERIC etc). There is no functional changes. Reviewed by: oleg, scottl Revision Changes Path 1.18 +1 -1 src/sys/dev/mii/acphy.c 1.19 +1 -1 src/sys/dev/mii/amphy.c 1.10 +3 -3 src/sys/dev/mii/bmtphy.c 1.43 +12 -12 src/sys/dev/mii/brgphy.c 1.5 +3 -3 src/sys/dev/mii/ciphy.c 1.16 +1 -1 src/sys/dev/mii/e1000phy.c 1.21 +1 -1 src/sys/dev/mii/exphy.c 1.15 +5 -5 src/sys/dev/mii/inphy.c 1.16 +1 -1 src/sys/dev/mii/lxtphy.c 1.21 +1 -1 src/sys/dev/mii/mlphy.c 1.22 +1 -1 src/sys/dev/mii/nsgphy.c 1.25 +1 -1 src/sys/dev/mii/nsphy.c 1.17 +1 -1 src/sys/dev/mii/pnaphy.c 1.16 +1 -1 src/sys/dev/mii/qsphy.c 1.10 +1 -1 src/sys/dev/mii/rgephy.c 1.23 +2 -2 src/sys/dev/mii/rlphy.c 1.5 +1 -1 src/sys/dev/mii/ruephy.c 1.19 +2 -2 src/sys/dev/mii/tdkphy.c 1.20 +1 -1 src/sys/dev/mii/tlphy.c 1.19 +1 -1 src/sys/dev/mii/ukphy.c 1.19 +2 -2 src/sys/dev/mii/xmphy.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 06:13:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9615916A403; Mon, 3 Jul 2006 06:13:11 +0000 (UTC) (envelope-from nate@root.org) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C0AC443E6; Mon, 3 Jul 2006 06:13:11 +0000 (GMT) (envelope-from nate@root.org) X-ORBL: [71.139.63.87] Received: from [10.0.5.51] (ppp-71-139-63-87.dsl.snfc21.pacbell.net [71.139.63.87]) by ylpvm01.prodigy.net (8.13.7 out spool5000 dk/8.13.7) with ESMTP id k636D6G3001978; Mon, 3 Jul 2006 02:13:09 -0400 Message-ID: <44A8B572.6030503@root.org> Date: Sun, 02 Jul 2006 23:13:06 -0700 From: Nate Lawson User-Agent: Thunderbird 1.5.0.2 (X11/20060501) MIME-Version: 1.0 To: Pyun YongHyeon References: <20060703025355.AA9CA16A62D@hub.freebsd.org> In-Reply-To: <20060703025355.AA9CA16A62D@hub.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c inphy.c lxtphy.c mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c rgephy.c rlphy.c ruephy.c tdkphy.c tlphy.c ukphy.c xmphy.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 06:13:11 -0000 Pyun YongHyeon wrote: > yongari 2006-07-03 02:53:40 UTC > > FreeBSD src repository > > Modified files: > sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c > e1000phy.c exphy.c inphy.c lxtphy.c > mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c > rgephy.c rlphy.c ruephy.c tdkphy.c > tlphy.c ukphy.c xmphy.c > Log: > Replace hard-coded magic constants to system defined constants > (BUS_PROBE_DEFAULT, BUS_PROBE_GENERIC etc). > There is no functional changes. > > Reviewed by: oleg, scottl Actually, there are functional changes. Whether those changes are ok or not, I don't know. > --- src/sys/dev/mii/acphy.c:1.17 Fri Sep 30 19:39:27 2005 > +++ src/sys/dev/mii/acphy.c Mon Jul 3 02:53:39 2006 > @@ -132,7 +132,7 @@ > } else > return (ENXIO); > > - return (0); > + return (BUS_PROBE_DEFAULT); > } > > static int This means probe() will be called multiple times to allow bidding for the device. Is that ok for this and other devices? -- Nate From owner-cvs-src@FreeBSD.ORG Mon Jul 3 06:38:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B34C16A4B3; Mon, 3 Jul 2006 06:38:54 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5FCE43D46; Mon, 3 Jul 2006 06:38:53 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k636crLs042885; Mon, 3 Jul 2006 06:38:53 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k636crZd042884; Mon, 3 Jul 2006 06:38:53 GMT (envelope-from des) Message-Id: <200607030638.k636crZd042884@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 3 Jul 2006 06:38:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/compat/linprocfs linprocfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 06:38:54 -0000 des 2006-07-03 06:38:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/compat/linprocfs linprocfs.c Log: MFC: (1.95) add the model name. Revision Changes Path 1.89.2.3 +14 -4 src/sys/compat/linprocfs/linprocfs.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 06:45:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3CAF16A403; Mon, 3 Jul 2006 06:45:03 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF57743D48; Mon, 3 Jul 2006 06:45:01 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [IPv6:::1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k636i0Xn038963; Mon, 3 Jul 2006 00:44:00 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 03 Jul 2006 00:44:04 -0600 (MDT) Message-Id: <20060703.004404.1878036141.imp@bsdimp.com> To: nate@root.org From: "M. Warner Losh" In-Reply-To: <44A8B572.6030503@root.org> References: <20060703025355.AA9CA16A62D@hub.freebsd.org> <44A8B572.6030503@root.org> X-Mailer: Mew version 4.2 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, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, yongari@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c inphy.c lxtphy.c mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c rgephy.c rlphy.c ruephy.c tdkphy.c tlphy.c ukphy.c xmphy.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 06:45:04 -0000 In message: <44A8B572.6030503@root.org> Nate Lawson writes: : Pyun YongHyeon wrote: : > yongari 2006-07-03 02:53:40 UTC : > : > FreeBSD src repository : > : > Modified files: : > sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c : > e1000phy.c exphy.c inphy.c lxtphy.c : > mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c : > rgephy.c rlphy.c ruephy.c tdkphy.c : > tlphy.c ukphy.c xmphy.c : > Log: : > Replace hard-coded magic constants to system defined constants : > (BUS_PROBE_DEFAULT, BUS_PROBE_GENERIC etc). : > There is no functional changes. : > : > Reviewed by: oleg, scottl : : Actually, there are functional changes. Whether those changes are ok or : not, I don't know. They are fine. There are three functional changes. You only noticed one of them. Since this is an important point, I've replied here. : > --- src/sys/dev/mii/acphy.c:1.17 Fri Sep 30 19:39:27 2005 : > +++ src/sys/dev/mii/acphy.c Mon Jul 3 02:53:39 2006 : > @@ -132,7 +132,7 @@ : > } else : > return (ENXIO); : > : > - return (0); : > + return (BUS_PROBE_DEFAULT); : > } : > : > static int : : This means probe() will be called multiple times to allow bidding for : the device. Is that ok for this and other devices? While generally a good, and subtle, point to me, as far as I can tell it is ok. All of these probe routines just lookup things by name, which is safe to do multiple times. The second subtle thing to look at, btw, is to make sure that the probe routine doesn't have any side effects. Like saving values in softc. I believe that this is the case here as well. The third subtle thing is now other probe routines get to bid on the device. When 0 is returned, we short-circuit the probe process. We don't call the other routines. When -X is returned, we call them all, and then call the winning bidder again (which is the first one above). In some cases, this can cause other probe routines to run that wouldn't have before for other devices. Typically, this isn't a big deal, but it is something to consider. We really should have a mii lookup routine ala the pccard ones, but I've not yet sorted out the mii mess. Did you know we use a different bit order than NetBSD, which makes sharing drivers harder? Or at least bringing in changes to existing drivers? Maybe this would make a good jkh project. Warner From owner-cvs-src@FreeBSD.ORG Mon Jul 3 08:01:28 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D0DB16A403; Mon, 3 Jul 2006 08:01:28 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC27943E23; Mon, 3 Jul 2006 08:01:27 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6381Rc3050601; Mon, 3 Jul 2006 08:01:27 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6381Rhr050600; Mon, 3 Jul 2006 08:01:27 GMT (envelope-from yongari) Message-Id: <200607030801.k6381Rhr050600@repoman.freebsd.org> From: Pyun YongHyeon Date: Mon, 3 Jul 2006 08:01:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mii brgphy.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 08:01:28 -0000 yongari 2006-07-03 08:01:27 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c Log: Use mii_phy_match to reduce duplicated code. Reviewed by: glebius Revision Changes Path 1.44 +21 -71 src/sys/dev/mii/brgphy.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 08:22:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37DEF16A412; Mon, 3 Jul 2006 08:22:10 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5AF643D49; Mon, 3 Jul 2006 08:22:09 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k638M9cD052887; Mon, 3 Jul 2006 08:22:09 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k638M9AT052886; Mon, 3 Jul 2006 08:22:09 GMT (envelope-from mjacob) Message-Id: <200607030822.k638M9AT052886@repoman.freebsd.org> From: Matt Jacob Date: Mon, 3 Jul 2006 08:22:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ispfw asm_2322.h ispfw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 08:22:10 -0000 mjacob 2006-07-03 08:22:09 UTC FreeBSD src repository Modified files: sys/dev/ispfw ispfw.c Added files: sys/dev/ispfw asm_2322.h Log: Add 2322 firmware. Revision Changes Path 1.1 +7654 -0 src/sys/dev/ispfw/asm_2322.h (new) 1.16 +5 -0 src/sys/dev/ispfw/ispfw.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 08:24:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 948E816A415; Mon, 3 Jul 2006 08:24:10 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DA9A43D48; Mon, 3 Jul 2006 08:24:10 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k638OAWN052968; Mon, 3 Jul 2006 08:24:10 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k638OAOa052967; Mon, 3 Jul 2006 08:24:10 GMT (envelope-from mjacob) Message-Id: <200607030824.k638OAOa052967@repoman.freebsd.org> From: Matt Jacob Date: Mon, 3 Jul 2006 08:24:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/isp isp.c isp_pci.c ispmbox.h ispreg.h ispvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 08:24:10 -0000 mjacob 2006-07-03 08:24:09 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c isp_pci.c ispmbox.h ispreg.h ispvar.h Log: Do various fixes to support firmware loading for the 2322 (and by extension, the 2422). One peculiar thing I've found with the 2322 is that if you don't force it to do Hard LoopID acquisition, the firmware crashes. This took a while to figure out. While we're at it, fix various bugs having to do with NVRAM reading and option setting with respect to pieces of NVRAM. Revision Changes Path 1.120 +227 -124 src/sys/dev/isp/isp.c 1.115 +20 -4 src/sys/dev/isp/isp_pci.c 1.52 +3 -1 src/sys/dev/isp/ispmbox.h 1.26 +19 -6 src/sys/dev/isp/ispreg.h 1.76 +11 -7 src/sys/dev/isp/ispvar.h From owner-cvs-src@FreeBSD.ORG Mon Jul 3 08:28:04 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 888EB16A555 for ; Mon, 3 Jul 2006 08:28:04 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 965EC43E38 for ; Mon, 3 Jul 2006 08:27:46 +0000 (GMT) (envelope-from pyunyh@gmail.com) Received: by nz-out-0102.google.com with SMTP id x3so397466nzd for ; Mon, 03 Jul 2006 01:27:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=rsVX6EW6cerStXyk1R5oNVIrhfeLZGHteWF2lQSglWDqSmllI1w15gQM4H+j9MGLDOq4GxtgGeb2HZ0sn9Hd9e7/+SzTL/wW4UgFcOoZ66w/PEjNvNvFNMmqT1o/4k42aLqyEFrct8PcUl1M9wh/If0yaLMFtjnbNrhpwapT8jg= Received: by 10.36.12.12 with SMTP id 12mr1969126nzl; Mon, 03 Jul 2006 01:27:45 -0700 (PDT) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.gmail.com with ESMTP id 20sm1840019nzp.2006.07.03.01.27.43; Mon, 03 Jul 2006 01:27:45 -0700 (PDT) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id k637mscD065071 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 3 Jul 2006 16:48:54 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id k637mrwQ065070; Mon, 3 Jul 2006 16:48:53 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Mon, 3 Jul 2006 16:48:53 +0900 From: Pyun YongHyeon To: "M. Warner Losh" Message-ID: <20060703074853.GA64457@cdnetworks.co.kr> References: <20060703025355.AA9CA16A62D@hub.freebsd.org> <44A8B572.6030503@root.org> <20060703.004404.1878036141.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060703.004404.1878036141.imp@bsdimp.com> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, yongari@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, nate@root.org Subject: Re: cvs commit: src/sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c e1000phy.c exphy.c inphy.c lxtphy.c mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c rgephy.c rlphy.c ruephy.c tdkphy.c tlphy.c ukphy.c xmphy.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2006 08:28:04 -0000 On Mon, Jul 03, 2006 at 12:44:04AM -0600, M. Warner Losh wrote: > In message: <44A8B572.6030503@root.org> > Nate Lawson writes: > : Pyun YongHyeon wrote: > : > yongari 2006-07-03 02:53:40 UTC > : > > : > FreeBSD src repository > : > > : > Modified files: > : > sys/dev/mii acphy.c amphy.c bmtphy.c brgphy.c ciphy.c > : > e1000phy.c exphy.c inphy.c lxtphy.c > : > mlphy.c nsgphy.c nsphy.c pnaphy.c qsphy.c > : > rgephy.c rlphy.c ruephy.c tdkphy.c > : > tlphy.c ukphy.c xmphy.c > : > Log: > : > Replace hard-coded magic constants to system defined constants > : > (BUS_PROBE_DEFAULT, BUS_PROBE_GENERIC etc). > : > There is no functional changes. > : > > : > Reviewed by: oleg, scottl > : > : Actually, there are functional changes. Whether those changes are ok or > : not, I don't know. > > They are fine. There are three functional changes. You only noticed > one of them. Since this is an important point, I've replied here. > > : > --- src/sys/dev/mii/acphy.c:1.17 Fri Sep 30 19:39:27 2005 > : > +++ src/sys/dev/mii/acphy.c Mon Jul 3 02:53:39 2006 > : > @@ -132,7 +132,7 @@ > : > } else > : > return (ENXIO); > : > > : > - return (0); > : > + return (BUS_PROBE_DEFAULT); > : > } > : > > : > static int > : > : This means probe() will be called multiple times to allow bidding for > : the device. Is that ok for this and other devices? > > While generally a good, and subtle, point to me, as far as I can tell > it is ok. All of these probe routines just lookup things by name, > which is safe to do multiple times. > > The second subtle thing to look at, btw, is to make sure that the probe > routine doesn't have any side effects. Like saving values in softc. > I believe that this is the case here as well. > > The third subtle thing is now other probe routines get to bid on the > device. When 0 is returned, we short-circuit the probe process. We > don't call the other routines. When -X is returned, we call them > all, and then call the winning bidder again (which is the first one > above). In some cases, this can cause other probe routines to run > that wouldn't have before for other devices. Typically, this isn't a > big deal, but it is something to consider. > > We really should have a mii lookup routine ala the pccard ones, but > I've not yet sorted out the mii mess. Did you know we use a different > bit order than NetBSD, which makes sharing drivers harder? Or at > least bringing in changes to existing drivers? Maybe this would make > a good jkh project. > Yes I checked NetBSD/OpenBSD mii code. But their probe routine(xxxmatch) just return positive vlaue when there are alternative drivers. However using a magic constant in their probe routine made me hard to understand its meaning. I don't see any reason using a positive value except for synching drivers with NetBSD. -- Regards, Pyun YongHyeon From owner-cvs-src@FreeBSD.ORG Mon Jul 3 10:32:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3106C16A407; Mon, 3 Jul 2006 10:32:40 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D380449F9; Mon, 3 Jul 2006 10:32:39 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63AWdPr069118; Mon, 3 Jul 2006 10:32:39 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63AWc28069117; Mon, 3 Jul 2006 10:32:38 GMT (envelope-from pjd) Message-Id: <200607031032.k63AWc28069117@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 3 Jul 2006 10:32:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/mirror g_mirror.c src/sys/geom/raid3 g_raid3.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 10:32:40 -0000 pjd 2006-07-03 10:32:38 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c sys/geom/raid3 g_raid3.c Log: Allow to close access even if device is already destroyed. Reported by: Ulrich Spoerlein PR: kern/98093 MFC after: 1 week Revision Changes Path 1.84 +5 -3 src/sys/geom/mirror/g_mirror.c 1.67 +5 -3 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 10:37:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4253916A415; Mon, 3 Jul 2006 10:37:13 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF9F643D76; Mon, 3 Jul 2006 10:37:09 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63Ab9Lh069448; Mon, 3 Jul 2006 10:37:09 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63Ab9GG069447; Mon, 3 Jul 2006 10:37:09 GMT (envelope-from oleg) Message-Id: <200607031037.k63Ab9GG069447@repoman.freebsd.org> From: Oleg Bulyzhin Date: Mon, 3 Jul 2006 10:37:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mii mii_physubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 10:37:13 -0000 oleg 2006-07-03 10:37:09 UTC FreeBSD src repository Modified files: sys/dev/mii mii_physubr.c Log: Reset autonegotiation timer if current media is not 'auto'. Approved by: glebius (mentor) MFC after: 2 weeks Revision Changes Path 1.25 +3 -1 src/sys/dev/mii/mii_physubr.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 10:55:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E61B516A492; Mon, 3 Jul 2006 10:55:23 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D55343D5D; Mon, 3 Jul 2006 10:55:23 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63AtNoO071679; Mon, 3 Jul 2006 10:55:23 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63AtNDe071678; Mon, 3 Jul 2006 10:55:23 GMT (envelope-from maxim) Message-Id: <200607031055.k63AtNDe071678@repoman.freebsd.org> From: Maxim Konovalov Date: Mon, 3 Jul 2006 10:55:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/mtree misc.c mtree.8 mtree.h spec.c verify.c src/usr.sbin/mtree/test test05.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 10:55:24 -0000 maxim 2006-07-03 10:55:22 UTC FreeBSD src repository Modified files: usr.sbin/mtree misc.c mtree.8 mtree.h spec.c verify.c Added files: usr.sbin/mtree/test test05.sh Log: o Add an 'optional' keyword, which allows files to be in the specification, but not in the file hierarchy. PR: bin/99531 Submitted by: skv Obtained from: NetBSD, originally from Ed Symanzik Regress. test: test/test05.sh MFC after: 1 month Revision Changes Path 1.17 +1 -0 src/usr.sbin/mtree/misc.c 1.54 +4 -1 src/usr.sbin/mtree/mtree.8 1.8 +1 -0 src/usr.sbin/mtree/mtree.h 1.23 +3 -0 src/usr.sbin/mtree/spec.c 1.1 +25 -0 src/usr.sbin/mtree/test/test05.sh (new) 1.25 +2 -0 src/usr.sbin/mtree/verify.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 15:17:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F02C516A47B; Mon, 3 Jul 2006 15:17:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBAE044288; Mon, 3 Jul 2006 14:44:13 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63EiDnG097853; Mon, 3 Jul 2006 14:44:13 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63EiDE0097852; Mon, 3 Jul 2006 14:44:13 GMT (envelope-from rwatson) Message-Id: <200607031444.k63EiDE0097852@repoman.freebsd.org> From: Robert Watson Date: Mon, 3 Jul 2006 14:44:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/bsm audit_record.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 15:17:13 -0000 rwatson 2006-07-03 14:44:13 UTC FreeBSD src repository Modified files: sys/bsm audit_record.h Log: Merge OpenBSM 1.0 alpha 7 nested time.h include to kernel version of audit_record.h. Obtained from: TrustedBSD Project Revision Changes Path 1.3 +2 -0 src/sys/bsm/audit_record.h From owner-cvs-src@FreeBSD.ORG Mon Jul 3 15:17:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15C1316A5F1; Mon, 3 Jul 2006 15:17:22 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C036445DC; Mon, 3 Jul 2006 14:55:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63EtuZu098656; Mon, 3 Jul 2006 14:55:56 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63EtucG098655; Mon, 3 Jul 2006 14:55:56 GMT (envelope-from rwatson) Message-Id: <200607031455.k63EtucG098655@repoman.freebsd.org> From: Robert Watson Date: Mon, 3 Jul 2006 14:55:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit.h audit_arg.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 15:17:22 -0000 rwatson 2006-07-03 14:55:56 UTC FreeBSD src repository Modified files: sys/security/audit audit.h audit_arg.c Log: Correct a number of problems that were previously commented on: - Correct audit_arg_socketaddr() argument name from so to sa. - Assert arguments are non-NULL to many argument capture functions rather than testing them. This may trip some bugs. - Assert the process lock is held when auditing process information. - Test currecord in several more places. - Test validity of more arguments with kasserts, such as flag values when auditing vnode information. Perforce change: 98825 Obtained from: TrustedBSD Project Revision Changes Path 1.7 +1 -1 src/sys/security/audit/audit.h 1.5 +39 -48 src/sys/security/audit/audit_arg.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 15:17:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AFD116A608; Mon, 3 Jul 2006 15:17:38 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3145F4432F; Mon, 3 Jul 2006 14:45:45 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63EjhqB098030; Mon, 3 Jul 2006 14:45:43 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63Ejhu7098029; Mon, 3 Jul 2006 14:45:43 GMT (envelope-from rwatson) Message-Id: <200607031445.k63Ejhu7098029@repoman.freebsd.org> From: Robert Watson Date: Mon, 3 Jul 2006 14:45:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/bsm audit_kevents.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 15:17:39 -0000 rwatson 2006-07-03 14:45:43 UTC FreeBSD src repository Modified files: sys/bsm audit_kevents.h Log: Merge OpenBSM 1.0 alpha 7 new AUE_ event identifiers to kernel version of audit_kevents.h. Obtained from: TrustedBSD Project Revision Changes Path 1.6 +19 -2 src/sys/bsm/audit_kevents.h From owner-cvs-src@FreeBSD.ORG Mon Jul 3 20:02:07 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4299716A50A; Mon, 3 Jul 2006 20:02:07 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5E6C43D48; Mon, 3 Jul 2006 20:02:06 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63K26G8030851; Mon, 3 Jul 2006 20:02:06 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63K26U3030850; Mon, 3 Jul 2006 20:02:06 GMT (envelope-from csjp) Message-Id: <200607032002.k63K26U3030850@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Mon, 3 Jul 2006 20:02:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net bpf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 20:02:07 -0000 csjp 2006-07-03 20:02:06 UTC FreeBSD src repository Modified files: sys/net bpf.c Log: Adjust descriptor locking to tell the kqueue subsystem that our descriptor is already locked. The reason to do this is to avoid two lock+unlock operations in a row. We need the lock here to serialize access to bd_pid for stats collection purposes. Drop the locks all together on detach, as they will be picked up by knlist_remove. This should fix a failed locking assertion when kqueue is being used with bpf descriptors. Discussed with: jmg Revision Changes Path 1.169 +1 -3 src/sys/net/bpf.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 21:25:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5F4D16A56D; Mon, 3 Jul 2006 21:25:09 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77BC6442E1; Mon, 3 Jul 2006 20:56:49 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63KunCx041972; Mon, 3 Jul 2006 20:56:49 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63Kun5f041971; Mon, 3 Jul 2006 20:56:49 GMT (envelope-from mjacob) Message-Id: <200607032056.k63Kun5f041971@repoman.freebsd.org> From: Matt Jacob Date: Mon, 3 Jul 2006 20:56:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/isp isp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 21:25:10 -0000 mjacob 2006-07-03 20:56:49 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c Log: What the heck - make the last (most recent) 2200 f/w also do Hard Loop acquisition. Revision Changes Path 1.121 +6 -2 src/sys/dev/isp/isp.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 22:05:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1727416A47E; Mon, 3 Jul 2006 22:05:39 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C390943D58; Mon, 3 Jul 2006 22:05:38 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63M5cCw047474; Mon, 3 Jul 2006 22:05:38 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63M5cWl047473; Mon, 3 Jul 2006 22:05:38 GMT (envelope-from jkim) Message-Id: <200607032205.k63M5cWl047473@repoman.freebsd.org> From: Jung-uk Kim Date: Mon, 3 Jul 2006 22:05:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/dhclient dhclient.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 22:05:39 -0000 jkim 2006-07-03 22:05:38 UTC FreeBSD src repository Modified files: sbin/dhclient dhclient.c Log: Send client identifier unconditionally. My ancient D-Link router response with NACK if I don't set it. Setting 'option dhcp-client-identifier' is alternative but it is inconvenient because I have to keep the list of all MAC addresses. As bin/94743 pointed out, it is always sent from Windows clients and I found Mac OS X does the same. OK'd by: brooks Revision Changes Path 1.16 +0 -4 src/sbin/dhclient/dhclient.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 23:14:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AAF216A4DF; Mon, 3 Jul 2006 23:14:30 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D06AF43D45; Mon, 3 Jul 2006 23:14:29 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63NETaO051630; Mon, 3 Jul 2006 23:14:29 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63NETLI051629; Mon, 3 Jul 2006 23:14:29 GMT (envelope-from rwatson) Message-Id: <200607032314.k63NETLI051629@repoman.freebsd.org> From: Robert Watson Date: Mon, 3 Jul 2006 23:14:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 23:14:30 -0000 rwatson 2006-07-03 23:14:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_output.c Log: In ip_ctloutput(), check for a NULL inpcb pointer before dereferencing, as this can occur with TCP if protocol-layer socket options are set or queried after the connection has closed. There are still races associated with ip_ctloutput() and connection close with TCP, corrected in HEAD via a more comprehensive set of changes, but this fixes the trivial panic reported on several occasions. This is a RELENG_6_1 and RELENG_6_0 errata branch candidate. PR: 97095 Tested by: Stanislaw Halik MFC after: 3 days Revision Changes Path 1.242.2.10 +3 -0 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Mon Jul 3 23:40:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B977716A4E0; Mon, 3 Jul 2006 23:40:58 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B4E243D55; Mon, 3 Jul 2006 23:40:58 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k63NewqW054014; Mon, 3 Jul 2006 23:40:58 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k63NewqE054013; Mon, 3 Jul 2006 23:40:58 GMT (envelope-from jkim) Message-Id: <200607032340.k63NewqE054013@repoman.freebsd.org> From: Jung-uk Kim Date: Mon, 3 Jul 2006 23:40:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/atkbdc atkbdc_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 03 Jul 2006 23:40:58 -0000 jkim 2006-07-03 23:40:58 UTC FreeBSD src repository Modified files: sys/dev/atkbdc atkbdc_isa.c Log: Make sure command/data port (0x60) and status port (0x64) are in correct order. Some brain-damaged ACPI BIOS has reversed resources. Revision Changes Path 1.36 +10 -4 src/sys/dev/atkbdc/atkbdc_isa.c From owner-cvs-src@FreeBSD.ORG Tue Jul 4 00:50:24 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B2E716A4DF for ; Tue, 4 Jul 2006 00:50:24 +0000 (UTC) (envelope-from sullrich@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9684F43D93 for ; Tue, 4 Jul 2006 00:50:05 +0000 (GMT) (envelope-from sullrich@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1815001uge for ; Mon, 03 Jul 2006 17:50:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=tTbPf+tMov53vb4F7/0EA8/Reqy/aRQD9GLSKVZ9hqAZFgT72q3nAWOrkmMG2RdXyWsRpVTl/NU4QYzGtHcOQMsxGfFLuoofEtwleXqMj3IIwFLReiS6vAJfo3IOKbXPsmmkYpgnvxAPKx5SBHCfizC+I+XyHyk0yHhHg6EB4PE= Received: by 10.67.101.10 with SMTP id d10mr6326314ugm; Mon, 03 Jul 2006 17:50:04 -0700 (PDT) Received: by 10.67.105.8 with HTTP; Mon, 3 Jul 2006 17:50:04 -0700 (PDT) Message-ID: Date: Mon, 3 Jul 2006 20:50:04 -0400 From: "Scott Ullrich" To: "Max Laier" In-Reply-To: <200606271416.29255.max@love2party.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200605141422.k4EEMnmC056704@repoman.freebsd.org> <20060627015411.B30917@mp2.macomnet.net> <200606271416.29255.max@love2party.net> Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, dsh@vlink.ru, Maxim Konovalov , Bruce M Simpson Subject: Re: cvs commit: src/sys/netinet in.h ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 00:50:24 -0000 On 6/27/06, Max Laier wrote: > See attached, for a possible fix. Untested, so be careful. Unfortunately this patch does not help. I was able to get a trace prior to the patch if that would help: http://www.pfsense.com/~sullrich/panics/pfsync_panic_freebsd_7.txt Scott From owner-cvs-src@FreeBSD.ORG Tue Jul 4 02:01:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7944216A4DA; Tue, 4 Jul 2006 02:01:49 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4250343D46; Tue, 4 Jul 2006 02:01:49 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6421nPP071592; Tue, 4 Jul 2006 02:01:49 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6421ngm071591; Tue, 4 Jul 2006 02:01:49 GMT (envelope-from brooks) Message-Id: <200607040201.k6421ngm071591@repoman.freebsd.org> From: Brooks Davis Date: Tue, 4 Jul 2006 02:01:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 02:01:49 -0000 brooks 2006-07-04 02:01:49 UTC FreeBSD src repository Modified files: . MAINTAINERS Log: Remove dhcp entries. They have been incorrect since the import from OpenBSD. Revision Changes Path 1.137 +0 -3 src/MAINTAINERS From owner-cvs-src@FreeBSD.ORG Tue Jul 4 02:02:48 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6498A16A4DE; Tue, 4 Jul 2006 02:02:48 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 319DF43D55; Tue, 4 Jul 2006 02:02:48 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6422mTs071745; Tue, 4 Jul 2006 02:02:48 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6422mZb071744; Tue, 4 Jul 2006 02:02:48 GMT (envelope-from brooks) Message-Id: <200607040202.k6422mZb071744@repoman.freebsd.org> From: Brooks Davis Date: Tue, 4 Jul 2006 02:02:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src MAINTAINERS X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 02:02:48 -0000 brooks 2006-07-04 02:02:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . MAINTAINERS Log: MFC: removal of dhcp entries Revision Changes Path 1.121.2.1 +0 -3 src/MAINTAINERS From owner-cvs-src@FreeBSD.ORG Tue Jul 4 03:29:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 471FF16A4DA; Tue, 4 Jul 2006 03:29:32 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1598743D46; Tue, 4 Jul 2006 03:29:32 +0000 (GMT) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k643TVDj078035; Tue, 4 Jul 2006 03:29:31 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k643TVwB078034; Tue, 4 Jul 2006 03:29:31 GMT (envelope-from grog) Message-Id: <200607040329.k643TVwB078034@repoman.freebsd.org> From: Greg Lehey Date: Tue, 4 Jul 2006 03:29:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 03:29:32 -0000 grog 2006-07-04 03:29:31 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Update dillon's mail address. Revision Changes Path 1.182 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Tue Jul 4 06:21:04 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1158D16A4DE; Tue, 4 Jul 2006 06:21:04 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EB7443D45; Tue, 4 Jul 2006 06:21:03 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k646L0Z2038363; Tue, 4 Jul 2006 10:21:01 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Tue, 4 Jul 2006 10:21:00 +0400 (MSD) From: Maxim Konovalov To: Scott Ullrich In-Reply-To: Message-ID: <20060704101945.J761@mp2.macomnet.net> References: <200605141422.k4EEMnmC056704@repoman.freebsd.org> <20060627015411.B30917@mp2.macomnet.net> <200606271416.29255.max@love2party.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, dsh@vlink.ru, Max Laier , Bruce M Simpson Subject: Re: cvs commit: src/sys/netinet in.h ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 06:21:04 -0000 On Mon, 3 Jul 2006, 20:50-0400, Scott Ullrich wrote: > On 6/27/06, Max Laier wrote: > > See attached, for a possible fix. Untested, so be careful. > > Unfortunately this patch does not help. I was able to get a trace > prior to the patch if that would help: > http://www.pfsense.com/~sullrich/panics/pfsync_panic_freebsd_7.txt How to repeat? Btw allr, lockedvnods etc are not needed there. "bt full" is. -- Maxim Konovalov From owner-cvs-src@FreeBSD.ORG Tue Jul 4 06:36:32 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6FA916A4E6 for ; Tue, 4 Jul 2006 06:36:32 +0000 (UTC) (envelope-from sullrich@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7172843D4C for ; Tue, 4 Jul 2006 06:36:31 +0000 (GMT) (envelope-from sullrich@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1878436uge for ; Mon, 03 Jul 2006 23:36:29 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=mhYRscZtVe2dYnkY2Zzo9gcR5xaAkGPpJNvHuk8fzcSinPB5BsygfhtM+A4e4qgSSXnYt+AGU0y56D2i50cL8isj47ttVArAwfahRmYZDYT+6KHj8lGDz0tB+asUx/DPFVacDv0srAATX4fN0O7PMqP9M1l8X45gzKvPsWd0JDc= Received: by 10.67.19.13 with SMTP id w13mr6469546ugi; Mon, 03 Jul 2006 23:36:29 -0700 (PDT) Received: by 10.67.105.8 with HTTP; Mon, 3 Jul 2006 23:36:29 -0700 (PDT) Message-ID: Date: Tue, 4 Jul 2006 02:36:29 -0400 From: "Scott Ullrich" To: "Maxim Konovalov" In-Reply-To: <20060704101945.J761@mp2.macomnet.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200605141422.k4EEMnmC056704@repoman.freebsd.org> <20060627015411.B30917@mp2.macomnet.net> <200606271416.29255.max@love2party.net> <20060704101945.J761@mp2.macomnet.net> Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, dsh@vlink.ru, Max Laier , Bruce M Simpson Subject: Re: cvs commit: src/sys/netinet in.h ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 06:36:33 -0000 On 7/4/06, Maxim Konovalov wrote: > How to repeat? Btw allr, lockedvnods etc are not needed there. "bt > full" is. # ifconfig pfsync0 pfsync0: flags=0<> mtu 2020 syncpeer: 224.0.0.240 maxupd: 128 # ifconfig pfsync0 syncdev lo0 Fatal trap 12: page fault while in kernel mode fault virtual address = 0x0 fault code = supervisor write, page not present instruction pointer = 0x20:0xc0461d0e stack pointer = 0x28:0xc7640ad4 frame pointer = 0x28:0xc7640b10 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 66 (ifconfig) trap number = 12 I'll get a full trace in a bit, need to get the machine prepped again. Scott From owner-cvs-src@FreeBSD.ORG Tue Jul 4 07:50:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E32B616A4DD; Tue, 4 Jul 2006 07:50:51 +0000 (UTC) (envelope-from maxim@macomnet.ru) Received: from mp2.macomnet.net (mp2.macomnet.net [195.128.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7344243D7B; Tue, 4 Jul 2006 07:50:40 +0000 (GMT) (envelope-from maxim@macomnet.ru) Received: from localhost (localhost.int.ru [127.0.0.1] (may be forged)) by mp2.macomnet.net (8.13.7/8.13.3) with ESMTP id k647oXem020345; Tue, 4 Jul 2006 11:50:34 +0400 (MSD) (envelope-from maxim@macomnet.ru) Date: Tue, 4 Jul 2006 11:50:29 +0400 (MSD) From: Maxim Konovalov To: Scott Ullrich In-Reply-To: Message-ID: <20060704114414.E20044@mp2.macomnet.net> References: <200605141422.k4EEMnmC056704@repoman.freebsd.org> <20060627015411.B30917@mp2.macomnet.net> <200606271416.29255.max@love2party.net> <20060704101945.J761@mp2.macomnet.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, dsh@vlink.ru, Max Laier , Bruce M Simpson Subject: Re: cvs commit: src/sys/netinet in.h ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 07:50:52 -0000 kOn Tue, 4 Jul 2006, 02:36-0400, Scott Ullrich wrote: > On 7/4/06, Maxim Konovalov wrote: > > How to repeat? Btw allr, lockedvnods etc are not needed there. "bt > > full" is. > > # ifconfig pfsync0 > pfsync0: flags=0<> mtu 2020 > syncpeer: 224.0.0.240 maxupd: 128 > # ifconfig pfsync0 syncdev lo0 > 0> > Fatal trap 12: page fault while in kernel mode [...] That's enough, thanks! It seems the same patch for if_pfsync.c solves the problem. The whole patch is: Index: netinet/ip_carp.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/ip_carp.c,v retrieving revision 1.40 diff -u -p -r1.40 ip_carp.c --- netinet/ip_carp.c 2 Jun 2006 19:59:33 -0000 1.40 +++ netinet/ip_carp.c 4 Jul 2006 07:05:26 -0000 @@ -375,6 +375,10 @@ carp_clone_create(struct if_clone *ifc, #ifdef INET6 sc->sc_im6o.im6o_multicast_hlim = CARP_DFLTTL; #endif + sc->sc_imo.imo_membership = (struct in_multi **)malloc( + (sizeof(struct in_multi *) * IP_MIN_MEMBERSHIPS), M_CARP, + M_WAITOK); + sc->sc_imo.imo_max_memberships = IP_MIN_MEMBERSHIPS; callout_init(&sc->sc_ad_tmo, NET_CALLOUT_MPSAFE); callout_init(&sc->sc_md_tmo, NET_CALLOUT_MPSAFE); @@ -415,6 +419,7 @@ carp_clone_destroy(struct ifnet *ifp) bpfdetach(ifp); if_detach(ifp); if_free_type(ifp, IFT_ETHER); + free(sc->sc_imo.imo_membership, M_CARP); free(sc, M_CARP); } Index: contrib/pf/net/if_pfsync.c =================================================================== RCS file: /home/ncvs/src/sys/contrib/pf/net/if_pfsync.c,v retrieving revision 1.28 diff -u -p -r1.28 if_pfsync.c --- contrib/pf/net/if_pfsync.c 16 Jun 2006 10:25:06 -0000 1.28 +++ contrib/pf/net/if_pfsync.c 4 Jul 2006 07:46:29 -0000 @@ -200,6 +200,7 @@ pfsync_clone_destroy(struct ifnet *ifp) if_detach(ifp); if_free(ifp); LIST_REMOVE(sc, sc_next); + free(sc->sc_imo.imo_membership, M_PFSYNC); free(sc, M_PFSYNC); } @@ -227,6 +228,10 @@ pfsync_clone_create(struct if_clone *ifc sc->sc_sendaddr.s_addr = htonl(INADDR_PFSYNC_GROUP); sc->sc_ureq_received = 0; sc->sc_ureq_sent = 0; + sc->sc_imo.imo_membership =(struct in_multi **)malloc( + (sizeof(struct in_multi *) * IP_MIN_MEMBERSHIPS), M_PFSYNC, + M_WAITOK); + sc->sc_imo.imo_max_memberships = IP_MIN_MEMBERSHIPS; ifp = SCP2IFP(sc); if_initname(ifp, ifc->ifc_name, unit); %%% I never used carp(4) so I can't check it works. It would be nice to commit a diff below too: Index: contrib/pf/man/pfsync.4 =================================================================== RCS file: /home/ncvs/src/contrib/pf/man/pfsync.4,v retrieving revision 1.9 diff -u -p -r1.9 pfsync.4 --- contrib/pf/man/pfsync.4 6 Jun 2006 12:35:53 -0000 1.9 +++ contrib/pf/man/pfsync.4 4 Jul 2006 07:49:02 -0000 @@ -33,6 +33,7 @@ .Nm pfsync .Nd packet filter state table logging interface .Sh SYNOPSIS +.Cd "device pf" .Cd "device pfsync" .Sh DESCRIPTION The %%% -- Maxim Konovalov From owner-cvs-src@FreeBSD.ORG Tue Jul 4 07:52:11 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7A0916A4E1; Tue, 4 Jul 2006 07:52:11 +0000 (UTC) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A54343D76; Tue, 4 Jul 2006 07:51:49 +0000 (GMT) (envelope-from max@love2party.net) Received: from [88.64.183.36] (helo=amd64.laiers.local) by mrelayeu.kundenserver.de (node=mrelayeu5) with ESMTP (Nemesis), id 0ML25U-1Fxfh62UNH-0004Gf; Tue, 04 Jul 2006 09:51:41 +0200 From: Max Laier Organization: FreeBSD To: "Scott Ullrich" Date: Tue, 4 Jul 2006 09:51:26 +0200 User-Agent: KMail/1.9.1 References: <200605141422.k4EEMnmC056704@repoman.freebsd.org> <200606271416.29255.max@love2party.net> In-Reply-To: X-Face: ,,8R(x[kmU]tKN@>gtH1yQE4aslGdu+2]; R]*pL,U>^H?)gW@49@wdJ`H<=?utf-8?q?=25=7D*=5FBD=0A=09U=5For=3D=5CmOZf764=26nYj=3DJYbR1PW0ud?=>|!~,,CPC.1-D$FG@0h3#'5"k{V]a~.<=?utf-8?q?mZ=7D44=23Se=7Em=0A=09Fe=7E=5C=5DX5B=5D=5Fxj?=(ykz9QKMw_l0C2AQ]}Ym8)fU MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart6209742.yVLhcD62Bb"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200607040951.39456.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de login:61c499deaeeba3ba5be80f48ecc83056 Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, dsh@vlink.ru, Maxim Konovalov , Bruce M Simpson Subject: Re: cvs commit: src/sys/netinet in.h ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 07:52:12 -0000 --nextPart6209742.yVLhcD62Bb Content-Type: multipart/mixed; boundary="Boundary-01=_G4hqEzGa+MsVv5Y" Content-Transfer-Encoding: 7bit Content-Disposition: inline --Boundary-01=_G4hqEzGa+MsVv5Y Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 04 July 2006 02:50, Scott Ullrich wrote: > On 6/27/06, Max Laier wrote: > > See attached, for a possible fix. Untested, so be careful. > > Unfortunately this patch does not help. I was able to get a trace > prior to the patch if that would help: > http://www.pfsense.com/~sullrich/panics/pfsync_panic_freebsd_7.txt Right, forgot about pfsync. Use this in addition. Again, only compile=20 tested. =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-01=_G4hqEzGa+MsVv5Y Content-Type: text/x-diff; charset="iso-8859-1"; name="if_pfsync.imo.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="if_pfsync.imo.diff" Index: if_pfsync.c =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: /usr/store/mlaier/fcvs/src/sys/contrib/pf/net/if_pfsync.c,v retrieving revision 1.28 diff -u -r1.28 if_pfsync.c =2D-- if_pfsync.c 16 Jun 2006 10:25:06 -0000 1.28 +++ if_pfsync.c 4 Jul 2006 07:45:40 -0000 @@ -200,6 +200,7 @@ if_detach(ifp); if_free(ifp); LIST_REMOVE(sc, sc_next); + free(sc->sc_imo.imo_membership, M_PFSYNC); free(sc, M_PFSYNC); } =20 @@ -227,6 +228,10 @@ sc->sc_sendaddr.s_addr =3D htonl(INADDR_PFSYNC_GROUP); sc->sc_ureq_received =3D 0; sc->sc_ureq_sent =3D 0; + sc->sc_imo.imo_membership =3D (struct in_multi **)malloc( + (sizeof(struct in_multi *) * IP_MIN_MEMBERSHIPS), M_PFSYNC, + M_WAITOK); + sc->sc_imo.imo_max_memberships =3D IP_MIN_MEMBERSHIPS; =20 ifp =3D SCP2IFP(sc); if_initname(ifp, ifc->ifc_name, unit); --Boundary-01=_G4hqEzGa+MsVv5Y-- --nextPart6209742.yVLhcD62Bb Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQBEqh4LXyyEoT62BG0RAvlBAKCCF8H5EZxjB1S4zb+hi8yukCsfowCeLwjw o7dTkiSrTVHWiMo+36ZkBic= =PjCb -----END PGP SIGNATURE----- --nextPart6209742.yVLhcD62Bb-- From owner-cvs-src@FreeBSD.ORG Tue Jul 4 14:14:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E639A16A4DA; Tue, 4 Jul 2006 14:14:16 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A262843D64; Tue, 4 Jul 2006 14:14:16 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k64EEG3U050275; Tue, 4 Jul 2006 14:14:16 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k64EEGws050274; Tue, 4 Jul 2006 14:14:16 GMT (envelope-from maxim) Message-Id: <200607041414.k64EEGws050274@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 4 Jul 2006 14:14:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 14:14:17 -0000 maxim 2006-07-04 14:14:16 UTC FreeBSD src repository Modified files: sys Makefile Log: o Add geom to a list of cscope dirs. Revision Changes Path 1.37 +1 -1 src/sys/Makefile From owner-cvs-src@FreeBSD.ORG Tue Jul 4 20:36:04 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E42716A4DA; Tue, 4 Jul 2006 20:36:04 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 192C643D49; Tue, 4 Jul 2006 20:36:04 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k64Ka32t095388; Tue, 4 Jul 2006 20:36:03 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k64Ka3Cx095387; Tue, 4 Jul 2006 20:36:03 GMT (envelope-from sos) Message-Id: <200607042036.k64Ka3Cx095387@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 4 Jul 2006 20:36:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-chipset.c ata-lowlevel.c ata-pci.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 20:36:04 -0000 sos 2006-07-04 20:36:03 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-lowlevel.c ata-pci.h Log: Add preliminary support for the Serverworks HT1000 chip. HW sponsored by: Yahoo! Revision Changes Path 1.165 +69 -6 src/sys/dev/ata/ata-chipset.c 1.77 +1 -1 src/sys/dev/ata/ata-lowlevel.c 1.65 +4 -0 src/sys/dev/ata/ata-pci.h From owner-cvs-src@FreeBSD.ORG Tue Jul 4 20:39:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 826AF16A4DA; Tue, 4 Jul 2006 20:39:50 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA22843D4C; Tue, 4 Jul 2006 20:39:40 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k64KdcYQ097638; Tue, 4 Jul 2006 20:39:38 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k64Kdc4n097637; Tue, 4 Jul 2006 20:39:38 GMT (envelope-from maxim) Message-Id: <200607042039.k64Kdc4n097637@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 4 Jul 2006 20:39:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet/libalias libalias.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 20:39:50 -0000 maxim 2006-07-04 20:39:38 UTC FreeBSD src repository Modified files: sys/netinet/libalias libalias.3 Log: o Kill BUGS section as it is not valid since rev. 1.4 alias_pptp.c. Spotted by: ru.unix.bsd activists MFC after: 1 week Revision Changes Path 1.55 +1 -6 src/sys/netinet/libalias/libalias.3 From owner-cvs-src@FreeBSD.ORG Tue Jul 4 20:52:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB7A816A4E0; Tue, 4 Jul 2006 20:52:36 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9873243D49; Tue, 4 Jul 2006 20:52:36 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k64KqaqM006145; Tue, 4 Jul 2006 20:52:36 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k64Kqa97006144; Tue, 4 Jul 2006 20:52:36 GMT (envelope-from maxim) Message-Id: <200607042052.k64Kqa97006144@repoman.freebsd.org> From: Maxim Konovalov Date: Tue, 4 Jul 2006 20:52:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/cp cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 20:52:37 -0000 maxim 2006-07-04 20:52:36 UTC FreeBSD src repository Modified files: bin/cp cp.c Log: o Call fts_close() before exit. Obtained from: NetBSD, Coverity ID 1754 Revision Changes Path 1.53 +1 -0 src/bin/cp/cp.c From owner-cvs-src@FreeBSD.ORG Tue Jul 4 23:05:22 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3824B16A4F5 for ; Tue, 4 Jul 2006 23:05:22 +0000 (UTC) (envelope-from sullrich@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD85C43D58 for ; Tue, 4 Jul 2006 23:05:19 +0000 (GMT) (envelope-from sullrich@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so2116761uge for ; Tue, 04 Jul 2006 16:05:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VylnqwL9sDcYOsPGt7tq6yUit8nqg77Bjic+FGpJOSkJluCClFTD3bBgn5Ur/sqplB5S90IZHbOsGgJaMiN4YMTtnXuPYiQz0J0PgPTBnRuA/pciC7i/LH1kqGeDeAx5NDQTgHUaoDVjWOfK4E34HvE2Y1eSmyWl1ux5fULRlLQ= Received: by 10.67.22.2 with SMTP id z2mr7047195ugi; Tue, 04 Jul 2006 16:05:18 -0700 (PDT) Received: by 10.67.105.8 with HTTP; Tue, 4 Jul 2006 16:05:18 -0700 (PDT) Message-ID: Date: Tue, 4 Jul 2006 19:05:18 -0400 From: "Scott Ullrich" To: "Max Laier" In-Reply-To: <200607040951.39456.max@love2party.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200605141422.k4EEMnmC056704@repoman.freebsd.org> <200606271416.29255.max@love2party.net> <200607040951.39456.max@love2party.net> Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, dsh@vlink.ru, Maxim Konovalov , Bruce M Simpson Subject: Re: cvs commit: src/sys/netinet in.h ip_output.c ip_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 23:05:22 -0000 On 7/4/06, Max Laier wrote: > Right, forgot about pfsync. Use this in addition. Again, only compile > tested. No problem. That did the trick. pfSync is online and operational: pfsync0: flags=41 mtu 2020 pfsync: syncdev: lo0 syncpeer: 224.0.0.240 maxupd: 128 Thanks! Scott From owner-cvs-src@FreeBSD.ORG Tue Jul 4 23:09:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BDA216A4E1; Tue, 4 Jul 2006 23:09:14 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEEC843D6A; Tue, 4 Jul 2006 23:09:11 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k64N9BEm015825; Tue, 4 Jul 2006 23:09:11 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k64N9BWa015824; Tue, 4 Jul 2006 23:09:11 GMT (envelope-from thompsa) Message-Id: <200607042309.k64N9BWa015824@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 4 Jul 2006 23:09:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net if_enc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 23:09:14 -0000 thompsa 2006-07-04 23:09:11 UTC FreeBSD src repository Modified files: sys/net if_enc.c Log: Fix a braino in the last revision, enc_clone_destroy needs return void instead of int. The clone system will ensure that our first interface is not destroyed so we dont need the extra checking anyway. Tested by: Scott Ullrich Revision Changes Path 1.4 +3 -12 src/sys/net/if_enc.c From owner-cvs-src@FreeBSD.ORG Tue Jul 4 23:52:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AA8016A4DE; Tue, 4 Jul 2006 23:52:13 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 014CF43D45; Tue, 4 Jul 2006 23:52:13 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k64NqCpp017772; Tue, 4 Jul 2006 23:52:12 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k64NqC93017771; Tue, 4 Jul 2006 23:52:12 GMT (envelope-from yongari) Message-Id: <200607042352.k64NqC93017771@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 4 Jul 2006 23:52:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Jul 2006 23:52:13 -0000 yongari 2006-07-04 23:52:12 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself. Revision Changes Path 1.183 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Jul 5 00:49:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54B2116A4DD; Wed, 5 Jul 2006 00:49:27 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1547743D53; Wed, 5 Jul 2006 00:49:27 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k650nQHQ029218; Wed, 5 Jul 2006 00:49:26 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k650nQKB029217; Wed, 5 Jul 2006 00:49:26 GMT (envelope-from thompsa) Message-Id: <200607050049.k650nQKB029217@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 5 Jul 2006 00:49:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/usb if_aue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 00:49:27 -0000 thompsa 2006-07-05 00:49:26 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c Log: Change the multicast calculation to be the same as the other usb drivers and avoid calling into the usb code with the lock held. This doenst fix the fundamental usb sleeping problem but at least the adapter can be used. Revision Changes Path 1.97 +6 -5 src/sys/dev/usb/if_aue.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 02:16:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE72316A4E1; Wed, 5 Jul 2006 02:16:29 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68FA543D4C; Wed, 5 Jul 2006 02:16:29 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k652GTaT035918; Wed, 5 Jul 2006 02:16:29 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k652GTtN035917; Wed, 5 Jul 2006 02:16:29 GMT (envelope-from bde) Message-Id: <200607050216.k652GTtN035917@repoman.freebsd.org> From: Bruce Evans Date: Wed, 5 Jul 2006 02:16:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_scalbf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 02:16:29 -0000 bde 2006-07-05 02:16:29 UTC FreeBSD src repository Modified files: lib/msun/src e_scalbf.c Log: Backed out rev.1.10. It tried to implement ldexpf() as a weak reference to scalbf(), but ldexpf() cannot be implemented in that way since the types of the second parameter differ. ldexpf() can be implemented as a weak or strong reference to scalbnf() (*) but that was already done long before rev.1.10 was committed. The old implementation uses a reference, so rev.1.10 had no effect on applications. The C files for the scalb() family are not used for amd64 or i386, so rev.1.10 had even less effect for these arches. (*) scalbnf() raises the radix to the given exponent, while ldexpf() raises 2 to the given exponent. Thus the functions are equivalent except possibly for their error handling iff the radix is 2. Standards more or less require identical error handling. Under FreeBSD, the functions are equivalent except for more details being missing in scalbnf()'s man page. Revision Changes Path 1.11 +0 -2 src/lib/msun/src/e_scalbf.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 02:32:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B843116A4DA; Wed, 5 Jul 2006 02:32:55 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76A7243D4C; Wed, 5 Jul 2006 02:32:55 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k652WtKs037493; Wed, 5 Jul 2006 02:32:55 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k652WtnB037492; Wed, 5 Jul 2006 02:32:55 GMT (envelope-from davidxu) Message-Id: <200607050232.k652WtnB037492@repoman.freebsd.org> From: David Xu Date: Wed, 5 Jul 2006 02:32:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/conf GENERIC src/sys/amd64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 02:32:55 -0000 davidxu 2006-07-05 02:32:55 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC sys/amd64/conf GENERIC Log: Temporarily remove SCHED_CORE, it seems I have so many works can do now, one example is POSIX priority mutex for libthr. Revision Changes Path 1.463 +0 -1 src/sys/amd64/conf/GENERIC 1.453 +0 -1 src/sys/i386/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Wed Jul 5 02:56:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCEEA16A4DA; Wed, 5 Jul 2006 02:56:56 +0000 (UTC) (envelope-from mj@feral.com) Received: from ns1.feral.com (ns1.feral.com [192.67.166.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 902C143D49; Wed, 5 Jul 2006 02:56:56 +0000 (GMT) (envelope-from mj@feral.com) Received: from ns1.feral.com (localhost [127.0.0.1]) by ns1.feral.com (8.13.6/8.13.6) with ESMTP id k652uuLk017028; Tue, 4 Jul 2006 19:56:56 -0700 (PDT) (envelope-from mj@feral.com) Received: from localhost (mjacob@localhost) by ns1.feral.com (8.13.6/8.13.6/Submit) with ESMTP id k652uuOt017025; Tue, 4 Jul 2006 19:56:56 -0700 (PDT) (envelope-from mj@feral.com) X-Authentication-Warning: ns1.feral.com: mjacob owned process doing -bs Date: Tue, 4 Jul 2006 19:56:56 -0700 (PDT) From: Matthew Jacob X-X-Sender: mjacob@ns1.feral.com To: David Xu In-Reply-To: <200607050232.k652WtnB037492@repoman.freebsd.org> Message-ID: <20060704195646.O17024@ns1.feral.com> References: <200607050232.k652WtnB037492@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf GENERIC src/sys/amd64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Jacob List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Jul 2006 02:56:57 -0000 I'm sorry, David- can you clarify this? On Wed, 5 Jul 2006, David Xu wrote: > davidxu 2006-07-05 02:32:55 UTC > > FreeBSD src repository > > Modified files: > sys/i386/conf GENERIC > sys/amd64/conf GENERIC > Log: > Temporarily remove SCHED_CORE, it seems I have so many works can do now, > one example is POSIX priority mutex for libthr. > > Revision Changes Path > 1.463 +0 -1 src/sys/amd64/conf/GENERIC > 1.453 +0 -1 src/sys/i386/conf/GENERIC > From owner-cvs-src@FreeBSD.ORG Wed Jul 5 03:05:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from [127.0.0.1] (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 649AA16A4DA; Wed, 5 Jul 2006 03:05:35 +0000 (UTC) (envelope-from davidxu@freebsd.org) Message-ID: <44AB2C81.4030001@freebsd.org> Date: Wed, 05 Jul 2006 11:05:37 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060519 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matthew Jacob References: <200607050232.k652WtnB037492@repoman.freebsd.org> <20060704195646.O17024@ns1.feral.com> In-Reply-To: <20060704195646.O17024@ns1.feral.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf GENERIC src/sys/amd64/conf GENERIC X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 03:05:36 -0000 Matthew Jacob wrote: > > > I'm sorry, David- can you clarify this? > > On Wed, 5 Jul 2006, David Xu wrote: > >> davidxu 2006-07-05 02:32:55 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/i386/conf GENERIC >> sys/amd64/conf GENERIC >> Log: >> Temporarily remove SCHED_CORE, it seems I have so many works can do now, >> one example is POSIX priority mutex for libthr. >> >> Revision Changes Path >> 1.463 +0 -1 src/sys/amd64/conf/GENERIC >> 1.453 +0 -1 src/sys/i386/conf/GENERIC >> > > Well, I was challenged that libthr lacks of POSIX priority mutex supports, I think I will create a branch in perforce to start the project, I may not have enough time to work in the scheduler for a while. From owner-cvs-src@FreeBSD.ORG Wed Jul 5 04:56:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0693E16A4DF; Wed, 5 Jul 2006 04:56:51 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8BEF43D49; Wed, 5 Jul 2006 04:56:50 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k654uoAB060849; Wed, 5 Jul 2006 04:56:50 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k654uo80060848; Wed, 5 Jul 2006 04:56:50 GMT (envelope-from yongari) Message-Id: <200607050456.k654uo80060848@repoman.freebsd.org> From: Pyun YongHyeon Date: Wed, 5 Jul 2006 04:56:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sk if_sk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 04:56:51 -0000 yongari 2006-07-05 04:56:50 UTC FreeBSD src repository Modified files: sys/dev/sk if_sk.c Log: Fix typo in comment. Submitted by: brad AT OpenBSD DOT org Revision Changes Path 1.126 +2 -2 src/sys/dev/sk/if_sk.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 06:10:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06D2F16A4E7; Wed, 5 Jul 2006 06:10:34 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DE3C43D83; Wed, 5 Jul 2006 06:10:23 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k656ALRQ066171; Wed, 5 Jul 2006 06:10:21 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k656ALjA066170; Wed, 5 Jul 2006 06:10:21 GMT (envelope-from bde) Message-Id: <200607050610.k656ALjA066170@repoman.freebsd.org> From: Bruce Evans Date: Wed, 5 Jul 2006 06:10:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ia64/include ieeefp.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 06:10:34 -0000 bde 2006-07-05 06:10:21 UTC FreeBSD src repository Modified files: sys/ia64/include ieeefp.h Log: Fixed FP_R*. fp{get_set}round() apparently never worked on ia64, since the alpha values were used and are quite different. Fixed some style bugs by copying from the i386 version where it is better. Revision Changes Path 1.5 +5 -5 src/sys/ia64/include/ieeefp.h From owner-cvs-src@FreeBSD.ORG Wed Jul 5 07:04:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BC2816A4DD; Wed, 5 Jul 2006 07:04:32 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2FB843D46; Wed, 5 Jul 2006 07:04:31 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6574V9F069698; Wed, 5 Jul 2006 07:04:31 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6574Vhv069697; Wed, 5 Jul 2006 07:04:31 GMT (envelope-from alc) Message-Id: <200607050704.k6574Vhv069697@repoman.freebsd.org> From: Alan Cox Date: Wed, 5 Jul 2006 07:04:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 07:04:32 -0000 alc 2006-07-05 07:04:31 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c Log: pmap_clear_ptes() is already convoluted. This will worsen with the implementation of superpages. Eliminate it and add pmap_clear_write(). There are no functional changes. Checked by: md5 Revision Changes Path 1.564 +49 -28 src/sys/amd64/amd64/pmap.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 08:26:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E7A816A4E2; Wed, 5 Jul 2006 08:26:51 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3501C43D53; Wed, 5 Jul 2006 08:26:51 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k658QpMH075516; Wed, 5 Jul 2006 08:26:51 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k658Qpo5075515; Wed, 5 Jul 2006 08:26:51 GMT (envelope-from brueffer) Message-Id: <200607050826.k658Qpo5075515@repoman.freebsd.org> From: Christian Brueffer Date: Wed, 5 Jul 2006 08:26:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 ata.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 08:26:51 -0000 brueffer 2006-07-05 08:26:50 UTC FreeBSD src repository Modified files: share/man/man4 ata.4 Log: Document ServerWorks HT1000 support. Revision Changes Path 1.65 +2 -2 src/share/man/man4/ata.4 From owner-cvs-src@FreeBSD.ORG Wed Jul 5 11:35:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A069216A4DD; Wed, 5 Jul 2006 11:35:18 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E05F43D53; Wed, 5 Jul 2006 11:35:18 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65BZIPq018135; Wed, 5 Jul 2006 11:35:18 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65BZIjN018134; Wed, 5 Jul 2006 11:35:18 GMT (envelope-from rwatson) Message-Id: <200607051135.k65BZIjN018134@repoman.freebsd.org> From: Robert Watson Date: Wed, 5 Jul 2006 11:35:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_svcout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 11:35:18 -0000 rwatson 2006-07-05 11:35:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/rpcgen rpc_svcout.c Log: Merge rpc_svcout.c:1.23 from HEAD to RELENG_6: In change 1.15, an arbitrary setting of the max RPC record size to RPC_MAXDATASIZE was introduced. This is believed to have been debugging code committed accidentally, although I've been unable to reach the committer to confirm this. The effect was to limit the size of RPCs on TCP and UDP to 9k, well below the default protocol limits in the libc rpc code. This change simply removes these introduced limits, falling back on the libc definitions. PR: 88856 Reported by: Keith Bostic Testing by: Susan LoVerso Reveiwed by: cel, rees Review timeout: alfred, mbr Approved by: mbr Revision Changes Path 1.16.2.1 +0 -11 src/usr.bin/rpcgen/rpc_svcout.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 11:36:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 199D616A4E2; Wed, 5 Jul 2006 11:36:25 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 846F243D5C; Wed, 5 Jul 2006 11:36:24 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65BaOUj018196; Wed, 5 Jul 2006 11:36:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65BaOUa018195; Wed, 5 Jul 2006 11:36:24 GMT (envelope-from rwatson) Message-Id: <200607051136.k65BaOUa018195@repoman.freebsd.org> From: Robert Watson Date: Wed, 5 Jul 2006 11:36:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/usr.bin/rpcgen rpc_svcout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 11:36:25 -0000 rwatson 2006-07-05 11:36:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.bin/rpcgen rpc_svcout.c Log: Merge rpc_svcout.c:1.23 from HEAD to RELENG_5: In change 1.15, an arbitrary setting of the max RPC record size to RPC_MAXDATASIZE was introduced. This is believed to have been debugging code committed accidentally, although I've been unable to reach the committer to confirm this. The effect was to limit the size of RPCs on TCP and UDP to 9k, well below the default protocol limits in the libc rpc code. This change simply removes these introduced limits, falling back on the libc definitions. PR: 88856 Reported by: Keith Bostic Testing by: Susan LoVerso Reveiwed by: cel, rees Review timeout: alfred, mbr Approved by: mbr Revision Changes Path 1.15.6.1 +0 -11 src/usr.bin/rpcgen/rpc_svcout.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 12:43:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3942616A4DE; Wed, 5 Jul 2006 12:43:14 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E95F243D45; Wed, 5 Jul 2006 12:43:13 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65ChDn7022304; Wed, 5 Jul 2006 12:43:13 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65ChDOH022303; Wed, 5 Jul 2006 12:43:13 GMT (envelope-from kib) Message-Id: <200607051243.k65ChDOH022303@repoman.freebsd.org> From: Konstantin Belousov Date: Wed, 5 Jul 2006 12:43:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/lib/libc/i386/gen _ctx_start.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 12:43:14 -0000 kib 2006-07-05 12:43:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/i386/gen _ctx_start.S Log: MFC rev. 1.4. Replace absolute addressing in the call instructions with position-independend calls. This eliminates TEXTREL from libc, making its text segment relocatable. PR: i386/85242 Approved by: kan (mentor) Revision Changes Path 1.3.8.1 +3 -2 src/lib/libc/i386/gen/_ctx_start.S From owner-cvs-src@FreeBSD.ORG Wed Jul 5 15:46:06 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E030716A4DA; Wed, 5 Jul 2006 15:46:06 +0000 (UTC) (envelope-from wsalamon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A57B643D5D; Wed, 5 Jul 2006 15:46:02 +0000 (GMT) (envelope-from wsalamon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65Fk2W2061255; Wed, 5 Jul 2006 15:46:02 GMT (envelope-from wsalamon@repoman.freebsd.org) Received: (from wsalamon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65Fk2if061254; Wed, 5 Jul 2006 15:46:02 GMT (envelope-from wsalamon) Message-Id: <200607051546.k65Fk2if061254@repoman.freebsd.org> From: Wayne Salamon Date: Wed, 5 Jul 2006 15:46:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 15:46:07 -0000 wsalamon 2006-07-05 15:46:02 UTC FreeBSD src repository Modified files: sys/kern syscalls.master Log: Add audit events for the extended attribute system calls. Obtained from: TrustedBSD Project Approved by: rwatson (mentor) Revision Changes Path 1.217 +26 -22 src/sys/kern/syscalls.master From owner-cvs-src@FreeBSD.ORG Wed Jul 5 16:33:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EFED16A4E1; Wed, 5 Jul 2006 16:33:26 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF27843D55; Wed, 5 Jul 2006 16:33:25 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65GXP8k018159; Wed, 5 Jul 2006 16:33:25 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65GXPpP018158; Wed, 5 Jul 2006 16:33:25 GMT (envelope-from kib) Message-Id: <200607051633.k65GXPpP018158@repoman.freebsd.org> From: Konstantin Belousov Date: Wed, 5 Jul 2006 16:33:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 16:33:26 -0000 kib 2006-07-05 16:33:25 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Back out my rev. 1.674. The better fix (rev. 1.637) is already in tree. Approved by: kan (mentor) Revision Changes Path 1.677 +3 -3 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 16:34:16 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C73FC16A4E0; Wed, 5 Jul 2006 16:34:16 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8725643D4C; Wed, 5 Jul 2006 16:34:16 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65GYGug019000; Wed, 5 Jul 2006 16:34:16 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65GYGSj018999; Wed, 5 Jul 2006 16:34:16 GMT (envelope-from kib) Message-Id: <200607051634.k65GYGSj018999@repoman.freebsd.org> From: Konstantin Belousov Date: Wed, 5 Jul 2006 16:34:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 16:34:16 -0000 kib 2006-07-05 16:34:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC rev. 1.637: Fix the LOR that occurs when the MAC compiled into the kernel and vnode is destroyed. LOR: 189 Approved by: kan (mentor) Revision Changes Path 1.635.2.19 +1 -0 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 17:18:47 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF8C16A4DA; Wed, 5 Jul 2006 17:18:47 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AD5143D46; Wed, 5 Jul 2006 17:18:47 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65HIlkj032793; Wed, 5 Jul 2006 17:18:47 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65HIlqS032792; Wed, 5 Jul 2006 17:18:47 GMT (envelope-from emax) Message-Id: <200607051718.k65HIlqS032792@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 5 Jul 2006 17:18:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c ng_bt3c_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 17:18:47 -0000 emax 2006-07-05 17:18:47 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c ng_bt3c_var.h Log: Replace inb() and outb() with bus_space_read_1() and bus_space_write_1() Submitted by: marius MFC after: 1 week Revision Changes Path 1.19 +10 -8 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c 1.4 +2 -0 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_var.h From owner-cvs-src@FreeBSD.ORG Wed Jul 5 17:35:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6207516A4DD; Wed, 5 Jul 2006 17:35:03 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98CD943D53; Wed, 5 Jul 2006 17:34:57 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65HYvMi033685; Wed, 5 Jul 2006 17:34:57 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65HYvCe033684; Wed, 5 Jul 2006 17:34:57 GMT (envelope-from bde) Message-Id: <200607051734.k65HYvCe033684@repoman.freebsd.org> From: Bruce Evans Date: Wed, 5 Jul 2006 17:34:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_scalbf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 17:35:03 -0000 bde 2006-07-05 17:34:57 UTC FreeBSD src repository Modified files: lib/msun/src e_scalbf.c Log: Forced commit to fix the log message for the previous commit: the C files for the scalb() family are only not used for i386, due to only i386 having bogus optimized asm versions for the scalb() family. Thus on amd64, rev.1.10 had no effect in the same way as on all non-i386 arches (the strong reference is just implemented in asm on amd64). Revision Changes Path 1.12 +0 -0 src/lib/msun/src/e_scalbf.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 19:08:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE94E16A4DF; Wed, 5 Jul 2006 19:08:51 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3E0D43D77; Wed, 5 Jul 2006 19:08:49 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65J8nCV040167; Wed, 5 Jul 2006 19:08:49 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65J8nLP040166; Wed, 5 Jul 2006 19:08:49 GMT (envelope-from jhb) Message-Id: <200607051908.k65J8nLP040166@repoman.freebsd.org> From: John Baldwin Date: Wed, 5 Jul 2006 19:08:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/vm vm_page.c vm_pageq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 19:08:51 -0000 jhb 2006-07-05 19:08:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_page.c vm_pageq.c Log: MFC: Move the code to handle the vm.blacklist tunable up a layer. Revision Changes Path 1.304.2.3 +39 -1 src/sys/vm/vm_page.c 1.18.2.1 +0 -30 src/sys/vm/vm_pageq.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 19:24:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12E3216A4E5; Wed, 5 Jul 2006 19:24:15 +0000 (UTC) (envelope-from wsalamon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9567B43D49; Wed, 5 Jul 2006 19:24:14 +0000 (GMT) (envelope-from wsalamon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65JOEo1040996; Wed, 5 Jul 2006 19:24:14 GMT (envelope-from wsalamon@repoman.freebsd.org) Received: (from wsalamon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65JOEIi040995; Wed, 5 Jul 2006 19:24:14 GMT (envelope-from wsalamon) Message-Id: <200607051924.k65JOEIi040995@repoman.freebsd.org> From: Wayne Salamon Date: Wed, 5 Jul 2006 19:24:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys syscall.h syscall.mk sysproto.h src/sys/kern init_sysent.c syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 19:24:15 -0000 wsalamon 2006-07-05 19:24:14 UTC FreeBSD src repository Modified files: sys/sys sysproto.h syscall.mk syscall.h sys/kern init_sysent.c syscalls.c Log: Regen the system calls files, picking up the extended attr events, and some mount-related changes done previously. Approved by: rwatson (mentor) Revision Changes Path 1.212 +17 -17 src/sys/kern/init_sysent.c 1.196 +1 -1 src/sys/kern/syscalls.c 1.193 +1 -1 src/sys/sys/syscall.h 1.148 +1 -1 src/sys/sys/syscall.mk 1.195 +1 -1 src/sys/sys/sysproto.h From owner-cvs-src@FreeBSD.ORG Wed Jul 5 20:06:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE06516A4DA; Wed, 5 Jul 2006 20:06:43 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21F1143D6B; Wed, 5 Jul 2006 20:06:43 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65K6gRs044436; Wed, 5 Jul 2006 20:06:42 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65K6gpa044435; Wed, 5 Jul 2006 20:06:42 GMT (envelope-from bde) Message-Id: <200607052006.k65K6gpa044435@repoman.freebsd.org> From: Bruce Evans Date: Wed, 5 Jul 2006 20:06:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/i387 Makefile.inc e_scalb.S e_scalbf.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 20:06:43 -0000 bde 2006-07-05 20:06:42 UTC FreeBSD src repository Modified files: lib/msun/i387 Makefile.inc Removed files: lib/msun/i387 e_scalb.S e_scalbf.S Log: Removed the optimized asm versions of scalb() and scalbf(). These functions are only for compatibility with obsolete standards. They shouldn't be used, so they shouldn't be optimized. Use the generic versions instead. This fixes scalbf() as a side effect. The optimized asm version left garbage on the FP stack. I fixed the corresponding bug in the optimized asm scalb() and scalbn() in 1996. NetBSD fixed it in scalb(), scalbn() and scalbnf() in 1999 but missed fixing it in scalbf(). Then in 2005 the bug was reimplemented in FreeBSD by importing NetBSD's scalbf(). The generic versions have slightly different error handling: - the asm versions blindly round the second parameter to a (floating point) integer and proceed, while the generic versions return NaN if this rounding changes the value. POSIX permits both behaviours (these functions are XSI extensions and the behaviour for a bogus non-integral second parameter is unspecified). Apart from this and the bug in scalbf(), the behaviour of the generic versions seems to be identical. (I only exhusatively tested generic_scalbf(1.0F, anyfloat) == asm_scalb(1.0F, anyfloat). This covers many representative corner cases involving NaNs and Infs but doesn't test exception flags. The brokenness of scalbf() showed up as weird behaviour after testing just 7 integer cases sequentially.) Revision Changes Path 1.9 +2 -2 src/lib/msun/i387/Makefile.inc 1.9 +0 -45 src/lib/msun/i387/e_scalb.S (dead) 1.3 +0 -15 src/lib/msun/i387/e_scalbf.S (dead) From owner-cvs-src@FreeBSD.ORG Wed Jul 5 20:08:00 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 053BE16A4DD; Wed, 5 Jul 2006 20:08:00 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B52D443D45; Wed, 5 Jul 2006 20:07:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65K7xD4044527; Wed, 5 Jul 2006 20:07:59 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65K7x7v044526; Wed, 5 Jul 2006 20:07:59 GMT (envelope-from pav) Message-Id: <200607052007.k65K7x7v044526@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 5 Jul 2006 20:07:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 20:08:00 -0000 pav 2006-07-05 20:07:59 UTC FreeBSD src repository (doc,ports committer) Modified files: share/man/man7 ports.7 Log: - Document new missing target Revision Changes Path 1.53 +2 -0 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Wed Jul 5 20:38:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9B4116A4DE; Wed, 5 Jul 2006 20:38:54 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A547A43D49; Wed, 5 Jul 2006 20:38:54 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65KcsDF047182; Wed, 5 Jul 2006 20:38:54 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65Kcsho047181; Wed, 5 Jul 2006 20:38:54 GMT (envelope-from pav) Message-Id: <200607052038.k65Kcsho047181@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 5 Jul 2006 20:38:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man7 ports.7 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 20:38:55 -0000 pav 2006-07-05 20:38:54 UTC FreeBSD src repository (doc,ports committer) Modified files: share/man/man7 ports.7 Log: - Document RANDOMIZE_MASTER_SITES, MASTER_SORT - Remove OPTIONS, it's no user settable variable Revision Changes Path 1.54 +7 -13 src/share/man/man7/ports.7 From owner-cvs-src@FreeBSD.ORG Wed Jul 5 22:55:01 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B07F316A4DA; Wed, 5 Jul 2006 22:55:01 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F6843D45; Wed, 5 Jul 2006 22:55:01 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65Mt16w079279; Wed, 5 Jul 2006 22:55:01 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65Mt1Ne079278; Wed, 5 Jul 2006 22:55:01 GMT (envelope-from marcel) Message-Id: <200607052255.k65Mt1Ne079278@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 5 Jul 2006 22:55:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/ia64/disasm disasm.h disasm_decode.c disasm_extract.c disasm_format.c disasm_int.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 22:55:01 -0000 marcel 2006-07-05 22:55:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ia64/disasm disasm.h disasm_decode.c disasm_extract.c disasm_format.c disasm_int.h Log: Sync with HEAD: Update to SDM 2.2. Revision Changes Path 1.3.2.1 +14 -9 src/sys/ia64/disasm/disasm.h 1.3.2.1 +75 -21 src/sys/ia64/disasm/disasm_decode.c 1.2.2.1 +100 -10 src/sys/ia64/disasm/disasm_extract.c 1.2.2.1 +4 -2 src/sys/ia64/disasm/disasm_format.c 1.2.2.1 +7 -1 src/sys/ia64/disasm/disasm_int.h From owner-cvs-src@FreeBSD.ORG Wed Jul 5 22:59:33 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D686E16A4DD; Wed, 5 Jul 2006 22:59:33 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A337E43D49; Wed, 5 Jul 2006 22:59:33 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65MxXUS079653; Wed, 5 Jul 2006 22:59:33 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65MxXnm079652; Wed, 5 Jul 2006 22:59:33 GMT (envelope-from bde) Message-Id: <200607052259.k65MxXnm079652@repoman.freebsd.org> From: Bruce Evans Date: Wed, 5 Jul 2006 22:59:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src s_tanh.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 22:59:33 -0000 bde 2006-07-05 22:59:33 UTC FreeBSD src repository Modified files: lib/msun/src s_tanh.c Log: Fixed tanh(-0.0) on ia64 and optimizeed tanh(x) for 2**-55 <= |x| < 2**-28 as a side effect, by merging with the float precision version of tanh() and the double precision version of sinh(). For tiny x, tanh(x) ~= x, and we used the expression x*(one+x) to return this value (x) and set the inexact flag iff x != 0. This doesn't work on ia64 since gcc -O does the dubious optimization x*(one+x) = x+x*x so as to use fma, so the sign of -0.0 was lost. Instead, handle tiny x in the same as sinh(), although this is imperfect: - return x directly and set the inexact flag in a less efficient way. - increased the threshold for non-tinyness from 2**-55 to 2**-28 so that many more cases are optimized than are pessimized. Updated some comments and fixed bugs in others (ranges for half-open intervals mostly had the open end backwards, and there were nearby style bugs). Revision Changes Path 1.8 +10 -10 src/lib/msun/src/s_tanh.c From owner-cvs-src@FreeBSD.ORG Wed Jul 5 23:37:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E758F16A4DD; Wed, 5 Jul 2006 23:37:21 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D9DF43D49; Wed, 5 Jul 2006 23:37:21 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k65NbLQd083302; Wed, 5 Jul 2006 23:37:21 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k65NbLek083301; Wed, 5 Jul 2006 23:37:21 GMT (envelope-from oleg) Message-Id: <200607052337.k65NbLek083301@repoman.freebsd.org> From: Oleg Bulyzhin Date: Wed, 5 Jul 2006 23:37:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet in_rmx.c src/sys/netinet6 in6_rmx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Jul 2006 23:37:22 -0000 oleg 2006-07-05 23:37:21 UTC FreeBSD src repository Modified files: sys/netinet in_rmx.c sys/netinet6 in6_rmx.c Log: Complete timebase (time_second -> time_uptime) conversion. PR: kern/94249 Reviewed by: andre (few months ago) Approved by: glebius (mentor) Revision Changes Path 1.55 +4 -4 src/sys/netinet/in_rmx.c 1.16 +8 -7 src/sys/netinet6/in6_rmx.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 00:24:37 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D0DA16A4DE; Thu, 6 Jul 2006 00:24:37 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D982843D45; Thu, 6 Jul 2006 00:24:36 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k660Oa9V086846; Thu, 6 Jul 2006 00:24:36 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k660OaiF086845; Thu, 6 Jul 2006 00:24:36 GMT (envelope-from oleg) Message-Id: <200607060024.k660OaiF086845@repoman.freebsd.org> From: Oleg Bulyzhin Date: Thu, 6 Jul 2006 00:24:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 00:24:37 -0000 oleg 2006-07-06 00:24:36 UTC FreeBSD src repository Modified files: sys/net rtsock.c Log: Adjust rt_(set|get)metrics() to do kernel <-> userland timebase conversion. We need it since kernel timebase has changed (time_second -> time_uptime). Approved by: glebius (mentor) Revision Changes Path 1.136 +7 -2 src/sys/net/rtsock.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 06:17:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D05916A4DA; Thu, 6 Jul 2006 06:17:09 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDF2B43D55; Thu, 6 Jul 2006 06:17:08 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k666H8xE035737; Thu, 6 Jul 2006 06:17:08 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k666H8rE035736; Thu, 6 Jul 2006 06:17:08 GMT (envelope-from alc) Message-Id: <200607060617.k666H8rE035736@repoman.freebsd.org> From: Alan Cox Date: Thu, 6 Jul 2006 06:17:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 06:17:09 -0000 alc 2006-07-06 06:17:08 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c Log: Make two simplifications to pmap_ts_referenced(): Eliminate an unnecessary test and exit the loop in a shorter way. Revision Changes Path 1.565 +3 -5 src/sys/amd64/amd64/pmap.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 08:32:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D600116A4DA; Thu, 6 Jul 2006 08:32:50 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F86043D46; Thu, 6 Jul 2006 08:32:50 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k668WovT044587; Thu, 6 Jul 2006 08:32:50 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k668Wohr044586; Thu, 6 Jul 2006 08:32:50 GMT (envelope-from glebius) Message-Id: <200607060832.k668Wohr044586@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 6 Jul 2006 08:32:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/acpica/Osd OsdSchedule.c src/sys/kern kern_synch.c subr_taskqueue.c src/sys/sys systm.h taskqueue.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 08:32:50 -0000 glebius 2006-07-06 08:32:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica/Osd OsdSchedule.c sys/kern kern_synch.c subr_taskqueue.c sys/sys systm.h taskqueue.h Log: MFC: sync taskqueue api with HEAD modulo preserving the calling convention for taskqueue_create This is replay of [1], that was backed out before 6.1-RELEASE due to breaking ACPI on certain laptops. The [2] commit has fixed this problem. bsam@, who once reported the breakage confirms that after [2] the problem has vanished and now it is safe to merge [1] again. [1] http://lists.freebsd.org/pipermail/cvs-src/2006-March/061203.html [2] http://lists.freebsd.org/pipermail/cvs-src/2006-June/065256.html Tested by: bsam Revision Changes Path 1.32.2.6 +1 -24 src/sys/dev/acpica/Osd/OsdSchedule.c 1.270.2.6 +82 -0 src/sys/kern/kern_synch.c 1.27.2.4 +134 -126 src/sys/kern/subr_taskqueue.c 1.234.2.5 +1 -0 src/sys/sys/systm.h 1.14.2.3 +34 -6 src/sys/sys/taskqueue.h From owner-cvs-src@FreeBSD.ORG Thu Jul 6 10:39:59 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93B9F16A4DA; Thu, 6 Jul 2006 10:39:59 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F1CF43D49; Thu, 6 Jul 2006 10:39:59 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66AdxdK062817; Thu, 6 Jul 2006 10:39:59 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66AdxAU062816; Thu, 6 Jul 2006 10:39:59 GMT (envelope-from yongari) Message-Id: <200607061039.k66AdxAU062816@repoman.freebsd.org> From: Pyun YongHyeon Date: Thu, 6 Jul 2006 10:39:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci solo.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 10:39:59 -0000 yongari 2006-07-06 10:39:59 UTC FreeBSD src repository Modified files: sys/dev/sound/pci solo.c Log: Fix a missing unlock operation in interrupt handler. PR: kern/99205 Submitted by: Alexey Illarionov MFC after: 1 week Revision Changes Path 1.39 +3 -1 src/sys/dev/sound/pci/solo.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 11:35:28 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D1716A4E9; Thu, 6 Jul 2006 11:35:28 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 956D243D53; Thu, 6 Jul 2006 11:35:27 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66BZR9d067101; Thu, 6 Jul 2006 11:35:27 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66BZRJW067100; Thu, 6 Jul 2006 11:35:27 GMT (envelope-from delphij) Message-Id: <200607061135.k66BZRJW067100@repoman.freebsd.org> From: Xin LI Date: Thu, 6 Jul 2006 11:35:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 11:35:28 -0000 delphij 2006-07-06 11:35:27 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Reflect library bumps caused by gethostbyaddr(3) change. Revision Changes Path 1.38 +5 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Thu Jul 6 11:43:54 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FF2A16A4DD; Thu, 6 Jul 2006 11:43:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F085143D4C; Thu, 6 Jul 2006 11:43:53 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66BhrWE067518; Thu, 6 Jul 2006 11:43:53 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66Bhr5b067517; Thu, 6 Jul 2006 11:43:53 GMT (envelope-from delphij) Message-Id: <200607061143.k66Bhr5b067517@repoman.freebsd.org> From: Xin LI Date: Thu, 6 Jul 2006 11:43:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 11:43:54 -0000 delphij 2006-07-06 11:43:53 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Oops, library bumps should be reflected with OLD_LIBS. Pointed out by: maxim Revision Changes Path 1.39 +5 -5 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Thu Jul 6 11:59:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9ED216A4DD; Thu, 6 Jul 2006 11:59:27 +0000 (UTC) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6B7943D49; Thu, 6 Jul 2006 11:59:27 +0000 (GMT) (envelope-from oleg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66BxRII068621; Thu, 6 Jul 2006 11:59:27 GMT (envelope-from oleg@repoman.freebsd.org) Received: (from oleg@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66BxRHH068620; Thu, 6 Jul 2006 11:59:27 GMT (envelope-from oleg) Message-Id: <200607061159.k66BxRHH068620@repoman.freebsd.org> From: Oleg Bulyzhin Date: Thu, 6 Jul 2006 11:59:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/netstat route.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 11:59:28 -0000 oleg 2006-07-06 11:59:27 UTC FreeBSD src repository Modified files: usr.bin/netstat route.c Log: Since kernel & userland use different timebase and netstat is reading kernel memory directly, we should do timebase conversion for route lifetime. Approved by: glebius (mentor) Revision Changes Path 1.77 +13 -3 src/usr.bin/netstat/route.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 12:56:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B54616A4DD; Thu, 6 Jul 2006 12:56:39 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFDC743D49; Thu, 6 Jul 2006 12:56:38 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66CucZu081011; Thu, 6 Jul 2006 12:56:38 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66Cuck9081010; Thu, 6 Jul 2006 12:56:38 GMT (envelope-from flz) Message-Id: <200607061256.k66Cuck9081010@repoman.freebsd.org> From: Florent Thoumie Date: Thu, 6 Jul 2006 12:56:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/tail extern.h forward.c tail.1 tail.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 12:56:39 -0000 flz 2006-07-06 12:56:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/tail extern.h forward.c tail.1 tail.c Log: MFC: Add a -q option to suppress header lines when multiple files are specified (and fixes from Ruslan). src/usr.bin/tail/extern.h: rev 1.9 -> 1.10 src/usr.bin/tail/tail.1: rev 1.12 -> 1.13 src/usr.bin/tail/forward.c: rev 1.39 -> 1.40 src/usr.bin/tail/tail.c: rev 1.21 -> 1.22 Revision Changes Path 1.9.2.1 +1 -1 src/usr.bin/tail/extern.h 1.38.2.2 +3 -2 src/usr.bin/tail/forward.c 1.12.2.1 +7 -2 src/usr.bin/tail/tail.1 1.21.2.1 +8 -4 src/usr.bin/tail/tail.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 13:21:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6858916A4DF; Thu, 6 Jul 2006 13:21:03 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18D3243D55; Thu, 6 Jul 2006 13:21:03 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66DL2xL083439; Thu, 6 Jul 2006 13:21:02 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66DL2MZ083438; Thu, 6 Jul 2006 13:21:02 GMT (envelope-from rwatson) Message-Id: <200607061321.k66DL2MZ083438@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 13:21:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_ipsec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 13:21:03 -0000 rwatson 2006-07-06 13:21:02 UTC FreeBSD src repository Modified files: sys/netinet ip_ipsec.c Log: Remove unneeded mac.h include. MFC after: 3 days Revision Changes Path 1.3 +0 -1 src/sys/netinet/ip_ipsec.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 13:22:10 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43C0416A4DF; Thu, 6 Jul 2006 13:22:10 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7EB643D5E; Thu, 6 Jul 2006 13:22:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66DM8AT083600; Thu, 6 Jul 2006 13:22:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66DM8F9083599; Thu, 6 Jul 2006 13:22:08 GMT (envelope-from rwatson) Message-Id: <200607061322.k66DM8F9083599@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 13:22:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/devfs devfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 13:22:10 -0000 rwatson 2006-07-06 13:22:08 UTC FreeBSD src repository Modified files: sys/fs/devfs devfs_vnops.c Log: Use #include "", not #include <> for opt_foo.h. MFC after: 3 days Revision Changes Path 1.131 +2 -2 src/sys/fs/devfs/devfs_vnops.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 13:24:23 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF40816A4DD; Thu, 6 Jul 2006 13:24:23 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F6143D58; Thu, 6 Jul 2006 13:24:23 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66DONYS083725; Thu, 6 Jul 2006 13:24:23 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66DONCi083724; Thu, 6 Jul 2006 13:24:23 GMT (envelope-from rwatson) Message-Id: <200607061324.k66DONCi083724@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 13:24:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/devfs devfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 13:24:23 -0000 rwatson 2006-07-06 13:24:23 UTC FreeBSD src repository Modified files: sys/fs/devfs devfs_vfsops.c Log: Remove now unneeded opt_mac.h and mac.h includes. MFC after: 3 days Revision Changes Path 1.49 +0 -2 src/sys/fs/devfs/devfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 13:25:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7220416A4DA; Thu, 6 Jul 2006 13:25:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1903943D58; Thu, 6 Jul 2006 13:25:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66DP1mt083775; Thu, 6 Jul 2006 13:25:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66DP1Ld083774; Thu, 6 Jul 2006 13:25:01 GMT (envelope-from rwatson) Message-Id: <200607061325.k66DP1Ld083774@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 13:25:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/fs/unionfs union_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 13:25:02 -0000 rwatson 2006-07-06 13:25:01 UTC FreeBSD src repository Modified files: sys/fs/unionfs union_vnops.c Log: Remove unneeded mac.h include. MFC after: 3 days Revision Changes Path 1.134 +0 -1 src/sys/fs/unionfs/union_vnops.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 13:25:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42C0F16A4DF; Thu, 6 Jul 2006 13:25:52 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B7B43D49; Thu, 6 Jul 2006 13:25:51 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66DPpR7083864; Thu, 6 Jul 2006 13:25:51 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66DPpA4083863; Thu, 6 Jul 2006 13:25:51 GMT (envelope-from rwatson) Message-Id: <200607061325.k66DPpA4083863@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 13:25:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern uipc_socket2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 13:25:52 -0000 rwatson 2006-07-06 13:25:51 UTC FreeBSD src repository Modified files: sys/kern uipc_socket2.c Log: Remove now unneeded opt_mac.h and mac.h includes. Revision Changes Path 1.159 +0 -2 src/sys/kern/uipc_socket2.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 15:24:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4733F16A4E0; Thu, 6 Jul 2006 15:24:35 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63AE943D4C; Thu, 6 Jul 2006 15:24:33 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id k66FOW8Z061876 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 6 Jul 2006 08:24:33 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <44AD2B30.1050008@errno.com> Date: Thu, 06 Jul 2006 08:24:32 -0700 From: Sam Leffler User-Agent: Thunderbird 1.5.0.2 (X11/20060508) MIME-Version: 1.0 To: Gleb Smirnoff References: <200607060832.k668Wohr044586@repoman.freebsd.org> In-Reply-To: <200607060832.k668Wohr044586@repoman.freebsd.org> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica/Osd OsdSchedule.c src/sys/kern kern_synch.c subr_taskqueue.c src/sys/sys systm.h taskqueue.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 15:24:35 -0000 Gleb Smirnoff wrote: > glebius 2006-07-06 08:32:50 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/dev/acpica/Osd OsdSchedule.c > sys/kern kern_synch.c subr_taskqueue.c > sys/sys systm.h taskqueue.h > Log: > MFC: sync taskqueue api with HEAD modulo preserving the calling > convention for taskqueue_create > > This is replay of [1], that was backed out before 6.1-RELEASE > due to breaking ACPI on certain laptops. The [2] commit has > fixed this problem. bsam@, who once reported the breakage > confirms that after [2] the problem has vanished and now it > is safe to merge [1] again. > > [1] http://lists.freebsd.org/pipermail/cvs-src/2006-March/061203.html > [2] http://lists.freebsd.org/pipermail/cvs-src/2006-June/065256.html Excellent, thanks for working this issue! Sam From owner-cvs-src@FreeBSD.ORG Thu Jul 6 16:00:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB01C16A4DE; Thu, 6 Jul 2006 16:00:01 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id E677343D46; Thu, 6 Jul 2006 16:00:00 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([69.15.205.254]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k66FxrYC020753; Thu, 6 Jul 2006 09:59:58 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <44AD3371.4030208@samsco.org> Date: Thu, 06 Jul 2006 09:59:45 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Gleb Smirnoff References: <200607060832.k668Wohr044586@repoman.freebsd.org> In-Reply-To: <200607060832.k668Wohr044586@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica/Osd OsdSchedule.c src/sys/kern kern_synch.c subr_taskqueue.c src/sys/sys systm.h taskqueue.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 16:00:02 -0000 Gleb Smirnoff wrote: > glebius 2006-07-06 08:32:50 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/dev/acpica/Osd OsdSchedule.c > sys/kern kern_synch.c subr_taskqueue.c > sys/sys systm.h taskqueue.h > Log: > MFC: sync taskqueue api with HEAD modulo preserving the calling > convention for taskqueue_create > > This is replay of [1], that was backed out before 6.1-RELEASE > due to breaking ACPI on certain laptops. The [2] commit has > fixed this problem. bsam@, who once reported the breakage > confirms that after [2] the problem has vanished and now it > is safe to merge [1] again. > > [1] http://lists.freebsd.org/pipermail/cvs-src/2006-March/061203.html > [2] http://lists.freebsd.org/pipermail/cvs-src/2006-June/065256.html > > Tested by: bsam > > Revision Changes Path > 1.32.2.6 +1 -24 src/sys/dev/acpica/Osd/OsdSchedule.c > 1.270.2.6 +82 -0 src/sys/kern/kern_synch.c > 1.27.2.4 +134 -126 src/sys/kern/subr_taskqueue.c > 1.234.2.5 +1 -0 src/sys/sys/systm.h > 1.14.2.3 +34 -6 src/sys/sys/taskqueue.h Thanks a lot for doing this. Is if_em next on your list? Scott From owner-cvs-src@FreeBSD.ORG Thu Jul 6 19:33:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5279F16A4E1; Thu, 6 Jul 2006 19:33:39 +0000 (UTC) (envelope-from wsalamon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EE5E43D46; Thu, 6 Jul 2006 19:33:38 +0000 (GMT) (envelope-from wsalamon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66JXctC021474; Thu, 6 Jul 2006 19:33:38 GMT (envelope-from wsalamon@repoman.freebsd.org) Received: (from wsalamon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66JXcsi021473; Thu, 6 Jul 2006 19:33:38 GMT (envelope-from wsalamon) Message-Id: <200607061933.k66JXcsi021473@repoman.freebsd.org> From: Wayne Salamon Date: Thu, 6 Jul 2006 19:33:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/security/audit audit_bsm.c src/sys/kern vfs_syscalls.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 19:33:39 -0000 wsalamon 2006-07-06 19:33:38 UTC FreeBSD src repository Modified files: sys/security/audit audit_bsm.c sys/kern vfs_syscalls.c Log: Audit the remaining parameters to the extattr system calls. Generate the audit records for those calls. Obtained from: TrustedBSD Project Approved by: rwatson (mentor) Revision Changes Path 1.416 +28 -0 src/sys/kern/vfs_syscalls.c 1.8 +59 -0 src/sys/security/audit/audit_bsm.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:12:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03EC716A4DE; Thu, 6 Jul 2006 21:12:19 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B757743D45; Thu, 6 Jul 2006 21:12:18 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LCIbI048866; Thu, 6 Jul 2006 21:12:18 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LCINs048865; Thu, 6 Jul 2006 21:12:18 GMT (envelope-from jkim) Message-Id: <200607062112.k66LCINs048865@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 6 Jul 2006 21:12:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/fdc fdc.c src/sys/dev/ic nec765.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:12:19 -0000 jkim 2006-07-06 21:12:18 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c sys/dev/ic nec765.h Log: Enhanced floppy controllers have Data Rate Select Register (DSR) at 0x3f4. Use it to reset controller and to select data rate. According to Intel 80277AA datasheet, software reset behaves the same as DOR reset except that it is self clearing. National Semiconductor PC8477B datasheet says the same. As a side effect, we no longer use Configuration Control Register (CCR) at 0x3f7 for these controllers, which is often missing in modern hardware. Revision Changes Path 1.310 +24 -8 src/sys/dev/fdc/fdc.c 1.12 +6 -0 src/sys/dev/ic/nec765.h From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:29:06 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0591F16A4DF; Thu, 6 Jul 2006 21:29:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF2DE43D45; Thu, 6 Jul 2006 21:29:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LT55K049858; Thu, 6 Jul 2006 21:29:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LT5H8049857; Thu, 6 Jul 2006 21:29:05 GMT (envelope-from jhb) Message-Id: <200607062129.k66LT5H8049857@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:29:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_msg.c ibcs2_poll.h syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:29:06 -0000 jhb 2006-07-06 21:29:05 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_msg.c syscalls.master Removed files: sys/i386/ibcs2 ibcs2_poll.h Log: Use the regular poll(2) function to implement poll(2) for the IBCS2 compat ABI as FreeBSD's poll(2) is ABI compatible. The ibcs2_poll() function attempted to implement poll(2) using a wrapper around select(2). Besides being somewhat ugly, it also had at least one bug in that instead of allocating complete fdset's on the stack via the stackgap it just allocated pointers to fdsets. Revision Changes Path 1.13 +0 -77 src/sys/i386/ibcs2/ibcs2_msg.c 1.6 +0 -51 src/sys/i386/ibcs2/ibcs2_poll.h (dead) 1.23 +2 -2 src/sys/i386/ibcs2/syscalls.master From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:32:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6812C16A4E1; Thu, 6 Jul 2006 21:32:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1044543D7B; Thu, 6 Jul 2006 21:32:21 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LWKx6050012; Thu, 6 Jul 2006 21:32:20 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LWK6B050010; Thu, 6 Jul 2006 21:32:20 GMT (envelope-from jhb) Message-Id: <200607062132.k66LWK6B050010@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:32:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_prot.c src/sys/sys syscallsubr.h src/sys/i386/ibcs2 ibcs2_misc.c syscalls.xenix X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:32:25 -0000 jhb 2006-07-06 21:32:20 UTC FreeBSD src repository Modified files: sys/kern kern_prot.c sys/sys syscallsubr.h sys/i386/ibcs2 ibcs2_misc.c syscalls.xenix Log: Add kern_setgroups() and kern_getgroups() and use them to implement ibcs2_[gs]etgroups() rather than using the stackgap. This also makes ibcs2_[gs]etgroups() MPSAFE. Also, it cleans up one bit of weirdness in the old setgroups() where it allocated an entire credential just so it had a place to copy the group list into. Now setgroups just allocates a NGROUPS_MAX array on the stack that it copies into and then passes to kern_setgroups(). Revision Changes Path 1.63 +25 -42 src/sys/i386/ibcs2/ibcs2_misc.c 1.12 +2 -2 src/sys/i386/ibcs2/syscalls.xenix 1.203 +43 -26 src/sys/kern/kern_prot.c 1.39 +2 -0 src/sys/sys/syscallsubr.h From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:33:21 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1C7016A4E1; Thu, 6 Jul 2006 21:33:21 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB8B43D86; Thu, 6 Jul 2006 21:33:14 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LXEEK050094; Thu, 6 Jul 2006 21:33:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LXEQk050093; Thu, 6 Jul 2006 21:33:14 GMT (envelope-from jhb) Message-Id: <200607062133.k66LXEQk050093@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:33:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c ibcs2_xenix.h ibcs2_xenix_syscall.h ibcs2_xenix_sysent.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:33:21 -0000 jhb 2006-07-06 21:33:14 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_proto.h ibcs2_syscall.h ibcs2_sysent.c ibcs2_xenix.h ibcs2_xenix_syscall.h ibcs2_xenix_sysent.c Log: Regen. Revision Changes Path 1.24 +1 -7 src/sys/i386/ibcs2/ibcs2_proto.h 1.21 +2 -2 src/sys/i386/ibcs2/ibcs2_syscall.h 1.26 +2 -2 src/sys/i386/ibcs2/ibcs2_sysent.c 1.18 +1 -1 src/sys/i386/ibcs2/ibcs2_xenix.h 1.14 +1 -1 src/sys/i386/ibcs2/ibcs2_xenix_syscall.h 1.16 +3 -3 src/sys/i386/ibcs2/ibcs2_xenix_sysent.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:38:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C90E616A4DA; Thu, 6 Jul 2006 21:38:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C56C43D55; Thu, 6 Jul 2006 21:38:25 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LcP2h050472; Thu, 6 Jul 2006 21:38:25 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LcPjv050471; Thu, 6 Jul 2006 21:38:25 GMT (envelope-from jhb) Message-Id: <200607062138.k66LcPjv050471@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:38:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/svr4 svr4_ipc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:38:25 -0000 jhb 2006-07-06 21:38:25 UTC FreeBSD src repository Modified files: sys/compat/svr4 svr4_ipc.c Log: Don't try to copyin extra data for IPC_RMID requests to msgctl() or shmctl(). None of the other ABI's do this (including the native FreeBSD ABI), and uselessly trying to do a copyin() can actually result in a bogus EFAULT if the a process specifies NULL for the optional argument (which is what they should do in this case). Revision Changes Path 1.22 +1 -6 src/sys/compat/svr4/svr4_ipc.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:39:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D231016A4DA; Thu, 6 Jul 2006 21:39:39 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 941D543D53; Thu, 6 Jul 2006 21:39:39 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LddfS050531; Thu, 6 Jul 2006 21:39:39 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LddjH050530; Thu, 6 Jul 2006 21:39:39 GMT (envelope-from jhb) Message-Id: <200607062139.k66LddjH050530@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:39:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_linker.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:39:39 -0000 jhb 2006-07-06 21:39:39 UTC FreeBSD src repository Modified files: sys/kern kern_linker.c Log: - Explicitly acquire Giant around SYSINIT's and SYSUNINIT's since they are not all known to be MPSAFE yet. - Actually remove Giant from the kernel linker by taking it out of the KLD_LOCK() and KLD_UNLOCK() macros. Pointy hat to: jhb (2) Revision Changes Path 1.139 +10 -3 src/sys/kern/kern_linker.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:42:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDB0E16A4DD; Thu, 6 Jul 2006 21:42:36 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99AC143D6B; Thu, 6 Jul 2006 21:42:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LgaIL050810; Thu, 6 Jul 2006 21:42:36 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LgaoV050809; Thu, 6 Jul 2006 21:42:36 GMT (envelope-from jhb) Message-Id: <200607062142.k66LgaoV050809@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:42:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/linux32 syscalls.master src/sys/compat/linux linux_ioctl.c src/sys/i386/linux syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:42:37 -0000 jhb 2006-07-06 21:42:36 UTC FreeBSD src repository Modified files: sys/amd64/linux32 syscalls.master sys/compat/linux linux_ioctl.c sys/i386/linux syscalls.master Log: - Protect the list of linux ioctl handlers with an sx lock. - Hold Giant while calling linux ioctl handlers for now as they aren't all known to be MPSAFE yet. - Mark linux_ioctl() MPSAFE. Revision Changes Path 1.15 +1 -1 src/sys/amd64/linux32/syscalls.master 1.137 +17 -0 src/sys/compat/linux/linux_ioctl.c 1.72 +1 -1 src/sys/i386/linux/syscalls.master From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:43:14 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E983216A4E2; Thu, 6 Jul 2006 21:43:14 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB63343D60; Thu, 6 Jul 2006 21:43:14 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66LhEtt050946; Thu, 6 Jul 2006 21:43:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66LhEsu050945; Thu, 6 Jul 2006 21:43:14 GMT (envelope-from jhb) Message-Id: <200607062143.k66LhEsu050945@repoman.freebsd.org> From: John Baldwin Date: Thu, 6 Jul 2006 21:43:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/linux32 linux32_proto.h linux32_syscall.h linux32_sysent.c src/sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:43:15 -0000 jhb 2006-07-06 21:43:14 UTC FreeBSD src repository Modified files: sys/amd64/linux32 linux32_proto.h linux32_syscall.h linux32_sysent.c sys/i386/linux linux_proto.h linux_syscall.h linux_sysent.c Log: Regen. Revision Changes Path 1.17 +1 -1 src/sys/amd64/linux32/linux32_proto.h 1.17 +1 -1 src/sys/amd64/linux32/linux32_syscall.h 1.17 +2 -2 src/sys/amd64/linux32/linux32_sysent.c 1.75 +1 -1 src/sys/i386/linux/linux_proto.h 1.69 +1 -1 src/sys/i386/linux/linux_syscall.h 1.76 +2 -2 src/sys/i386/linux/linux_sysent.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 21:53:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CA4116A4E1; Thu, 6 Jul 2006 21:53:56 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B1FC43D45; Thu, 6 Jul 2006 21:53:55 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([69.15.205.254]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k66LrmKt022477; Thu, 6 Jul 2006 15:53:54 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <44AD8667.9090600@samsco.org> Date: Thu, 06 Jul 2006 15:53:43 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200607062142.k66LgaoV050809@repoman.freebsd.org> In-Reply-To: <200607062142.k66LgaoV050809@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/linux32 syscalls.master src/sys/compat/linux linux_ioctl.c src/sys/i386/linux syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 21:53:56 -0000 John Baldwin wrote: > jhb 2006-07-06 21:42:36 UTC > > FreeBSD src repository > > Modified files: > sys/amd64/linux32 syscalls.master > sys/compat/linux linux_ioctl.c > sys/i386/linux syscalls.master > Log: > - Protect the list of linux ioctl handlers with an sx lock. > - Hold Giant while calling linux ioctl handlers for now as they aren't all > known to be MPSAFE yet. > - Mark linux_ioctl() MPSAFE. > > Revision Changes Path > 1.15 +1 -1 src/sys/amd64/linux32/syscalls.master > 1.137 +17 -0 src/sys/compat/linux/linux_ioctl.c > 1.72 +1 -1 src/sys/i386/linux/syscalls.master Why not add the small bit of infrastucture so that modules can declare their handlers as MPSAFE or not? There are certainly some drivers that would benefit from this. Scott From owner-cvs-src@FreeBSD.ORG Thu Jul 6 22:08:26 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33A1C16A4E1; Thu, 6 Jul 2006 22:08:26 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BFF643D46; Thu, 6 Jul 2006 22:08:25 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id k66M8L9d012110; Thu, 6 Jul 2006 18:08:22 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Scott Long Date: Thu, 6 Jul 2006 18:08:15 -0400 User-Agent: KMail/1.9.1 References: <200607062142.k66LgaoV050809@repoman.freebsd.org> <44AD8667.9090600@samsco.org> In-Reply-To: <44AD8667.9090600@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607061808.16440.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 06 Jul 2006 18:08:22 -0400 (EDT) X-Virus-Scanned: ClamAV 0.87.1/1586/Wed Jul 5 15:22:07 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/linux32 syscalls.master src/sys/compat/linux linux_ioctl.c src/sys/i386/linux syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 22:08:26 -0000 On Thursday 06 July 2006 17:53, Scott Long wrote: > John Baldwin wrote: > > jhb 2006-07-06 21:42:36 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/amd64/linux32 syscalls.master > > sys/compat/linux linux_ioctl.c > > sys/i386/linux syscalls.master > > Log: > > - Protect the list of linux ioctl handlers with an sx lock. > > - Hold Giant while calling linux ioctl handlers for now as they aren't all > > known to be MPSAFE yet. > > - Mark linux_ioctl() MPSAFE. > > > > Revision Changes Path > > 1.15 +1 -1 src/sys/amd64/linux32/syscalls.master > > 1.137 +17 -0 src/sys/compat/linux/linux_ioctl.c > > 1.72 +1 -1 src/sys/i386/linux/syscalls.master > > Why not add the small bit of infrastucture so that modules can declare > their handlers as MPSAFE or not? There are certainly some drivers that > would benefit from this. We can certainly do that. I'm up to at least 3 places that this could be done now: - module event handlers - sysinit's - linux_ioctl handlers For now my focus is on eliminating syscall mpsafe flag, and most syscalls can be made Giant free at this point, but for a few Giant is just being pushed part of the way in. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Thu Jul 6 22:22:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CABA516A4F5; Thu, 6 Jul 2006 22:22:18 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AC0E43D6E; Thu, 6 Jul 2006 22:22:08 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([69.15.205.254]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k66MM0Xk022656; Thu, 6 Jul 2006 16:22:06 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <44AD8D03.3000706@samsco.org> Date: Thu, 06 Jul 2006 16:21:55 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200607062142.k66LgaoV050809@repoman.freebsd.org> <44AD8667.9090600@samsco.org> <200607061808.16440.jhb@freebsd.org> In-Reply-To: <200607061808.16440.jhb@freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/linux32 syscalls.master src/sys/compat/linux linux_ioctl.c src/sys/i386/linux syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 22:22:18 -0000 John Baldwin wrote: > On Thursday 06 July 2006 17:53, Scott Long wrote: > >>John Baldwin wrote: >> >>>jhb 2006-07-06 21:42:36 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/amd64/linux32 syscalls.master >>> sys/compat/linux linux_ioctl.c >>> sys/i386/linux syscalls.master >>> Log: >>> - Protect the list of linux ioctl handlers with an sx lock. >>> - Hold Giant while calling linux ioctl handlers for now as they aren't > > all > >>> known to be MPSAFE yet. >>> - Mark linux_ioctl() MPSAFE. >>> >>> Revision Changes Path >>> 1.15 +1 -1 src/sys/amd64/linux32/syscalls.master >>> 1.137 +17 -0 src/sys/compat/linux/linux_ioctl.c >>> 1.72 +1 -1 src/sys/i386/linux/syscalls.master >> >>Why not add the small bit of infrastucture so that modules can declare >>their handlers as MPSAFE or not? There are certainly some drivers that >>would benefit from this. > > > We can certainly do that. I'm up to at least 3 places that this could be > done now: > > - module event handlers > - sysinit's > - linux_ioctl handlers > > For now my focus is on eliminating syscall mpsafe flag, and most syscalls > can be made Giant free at this point, but for a few Giant is just being > pushed part of the way in. > What I'm afraid of is that these things will get forgotten now that they have been pushed out of the way. Are you interested in taking the next step here? Scott From owner-cvs-src@FreeBSD.ORG Thu Jul 6 23:22:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AA4416A4DA; Thu, 6 Jul 2006 23:22:35 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF0E243D45; Thu, 6 Jul 2006 23:22:34 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66NMYSn059536; Thu, 6 Jul 2006 23:22:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66NMYsL059535; Thu, 6 Jul 2006 23:22:34 GMT (envelope-from rwatson) Message-Id: <200607062322.k66NMYsL059535@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 23:22:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern subr_acl_posix1e.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 23:22:35 -0000 rwatson 2006-07-06 23:22:34 UTC FreeBSD src repository Modified files: sys/kern subr_acl_posix1e.c Log: Forced commit to recognize repo-copy of kern_acl.c to subr_acl_posix1e.c, which will hold POSIX.1e-specific ACL routines. kern_acl.c will conintue to hold system calls and general purpose ACL routines common to both POSIX.1e, NFSv4, and other types of ACLs we may support in the future. Thanks to: simon Obtained from: TrustedBSD Project Revision Changes Path 1.48 +0 -0 src/sys/kern/subr_acl_posix1e.c From owner-cvs-src@FreeBSD.ORG Thu Jul 6 23:37:39 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B968716A4E1; Thu, 6 Jul 2006 23:37:39 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A21843D49; Thu, 6 Jul 2006 23:37:39 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k66Nbdd5060184; Thu, 6 Jul 2006 23:37:39 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k66NbdVN060183; Thu, 6 Jul 2006 23:37:39 GMT (envelope-from rwatson) Message-Id: <200607062337.k66NbdVN060183@repoman.freebsd.org> From: Robert Watson Date: Thu, 6 Jul 2006 23:37:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_acl.c subr_acl_posix1e.c src/sys/conf files X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Jul 2006 23:37:39 -0000 rwatson 2006-07-06 23:37:39 UTC FreeBSD src repository Modified files: sys/kern kern_acl.c subr_acl_posix1e.c sys/conf files Log: Move POSIX.1e-specific utility routines from kern_acl.c to subr_acl_posix1e.c, leaving kern_acl.c containing only ACL system calls and utility routines common across ACL types. Add subr_acl_posix1e.c to the build. Obtained from: TrustedBSD Project Revision Changes Path 1.1128 +1 -0 src/sys/conf/files 1.48 +4 -584 src/sys/kern/kern_acl.c 1.49 +5 -416 src/sys/kern/subr_acl_posix1e.c From owner-cvs-src@FreeBSD.ORG Fri Jul 7 01:12:26 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4F1916A4DD; Fri, 7 Jul 2006 01:12:26 +0000 (UTC) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9695A43D45; Fri, 7 Jul 2006 01:12:26 +0000 (GMT) (envelope-from gad@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k671CQbC074453; Fri, 7 Jul 2006 01:12:26 GMT (envelope-from gad@repoman.freebsd.org) Received: (from gad@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k671CQcQ074452; Fri, 7 Jul 2006 01:12:26 GMT (envelope-from gad) Message-Id: <200607070112.k671CQcQ074452@repoman.freebsd.org> From: Garance A Drosehn Date: Fri, 7 Jul 2006 01:12:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/lpr/lpd printjob.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 01:12:26 -0000 gad 2006-07-07 01:12:26 UTC FreeBSD src repository Modified files: usr.sbin/lpr/lpd printjob.c Log: Fix checking of the "lock" file in the spool directory for a queue, so that the checking will wind up with the correct mode-bits in the case where the initial open() of that lock file will create it. Due to this bug, the first job ever sent to a queue could leave that queue in a "printing is disabled" state. PR: 93469 Submitted by: Michael Szklarski of kco.com.pl MFC after: 1 week Revision Changes Path 1.64 +9 -2 src/usr.sbin/lpr/lpd/printjob.c From owner-cvs-src@FreeBSD.ORG Fri Jul 7 02:03:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9959316A4DA; Fri, 7 Jul 2006 02:03:05 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8209943D88; Fri, 7 Jul 2006 02:02:57 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6722tCV077101; Fri, 7 Jul 2006 02:02:55 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6722tK8077100; Fri, 7 Jul 2006 02:02:55 GMT (envelope-from marcel) Message-Id: <200607070202.k6722tK8077100@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 7 Jul 2006 02:02:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys gpt.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 02:03:05 -0000 marcel 2006-07-07 02:02:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys gpt.h Log: Sync with HEAD: MFC rev. 1.9 & 1.10 Revision Changes Path 1.8.2.1 +4 -1 src/sys/sys/gpt.h From owner-cvs-src@FreeBSD.ORG Fri Jul 7 02:44:24 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C0EB16A4DE; Fri, 7 Jul 2006 02:44:24 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08D2843D45; Fri, 7 Jul 2006 02:44:24 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k672iNBf083525; Fri, 7 Jul 2006 02:44:23 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k672iNB9083524; Fri, 7 Jul 2006 02:44:23 GMT (envelope-from marcel) Message-Id: <200607070244.k672iNB9083524@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 7 Jul 2006 02:44:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/gpt gpt.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 02:44:24 -0000 marcel 2006-07-07 02:44:23 UTC FreeBSD src repository Modified files: sbin/gpt gpt.c Log: Fix cut-n-paste bug: compare argument s against known aliases, not the global optarg. This bug goes unnoticed because optarg is so far always the actual argument for the formal argument s. Revision Changes Path 1.16 +6 -6 src/sbin/gpt/gpt.c From owner-cvs-src@FreeBSD.ORG Fri Jul 7 03:30:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7551F16A4E7; Fri, 7 Jul 2006 03:30:38 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEAB343D55; Fri, 7 Jul 2006 03:30:37 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k673UbXq087861; Fri, 7 Jul 2006 03:30:37 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k673Ub2G087860; Fri, 7 Jul 2006 03:30:37 GMT (envelope-from marcel) Message-Id: <200607070330.k673Ub2G087860@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 7 Jul 2006 03:30:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/gpt add.c gpt.8 gpt.c gpt.h label.c remove.c show.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 03:30:38 -0000 marcel 2006-07-07 03:30:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/gpt add.c gpt.8 gpt.c gpt.h label.c remove.c show.c Log: Sync with HEAD. Revision Changes Path 1.11.2.2 +2 -19 src/sbin/gpt/add.c 1.13.2.2 +6 -4 src/sbin/gpt/gpt.8 1.10.2.2 +56 -0 src/sbin/gpt/gpt.c 1.7.2.2 +1 -0 src/sbin/gpt/gpt.h 1.1.2.2 +2 -19 src/sbin/gpt/label.c 1.4.2.2 +2 -19 src/sbin/gpt/remove.c 1.11.2.2 +3 -0 src/sbin/gpt/show.c From owner-cvs-src@FreeBSD.ORG Fri Jul 7 04:33:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 403AF16A4E0; Fri, 7 Jul 2006 04:33:09 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A0DE43D45; Fri, 7 Jul 2006 04:33:09 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k674X8ZH093026; Fri, 7 Jul 2006 04:33:08 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k674X8tw093025; Fri, 7 Jul 2006 04:33:08 GMT (envelope-from bde) Message-Id: <200607070433.k674X8tw093025@repoman.freebsd.org> From: Bruce Evans Date: Fri, 7 Jul 2006 04:33:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/msun/src e_log.c e_logf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 04:33:09 -0000 bde 2006-07-07 04:33:08 UTC FreeBSD src repository Modified files: lib/msun/src e_log.c e_logf.c Log: Fixed the threshold for using the simple Taylor approximation. In e_log.c, there was just a off-by-1 (1 ulp) error in the comment about the threshold. The precision of the threshold is unimportant, but the magic numbers in the code are easier to understand when the threshold is described precisely. In e_logf.c, mistranslation of the magic numbers gave an off-by-1 (1 * 16 ulps) error in the intended negative bound for the threshold and an off-by-7 (7 * 16 ulps) error in the intended positive bound for the threshold, and the intended bounds were not translated from the double precision bounds so they were unnecessarily small by a factor of about 2048. The optimization of using the simple Taylor approximation for args near a power of 2 is dubious since it only applies to a relatively small proportion of args, but if it is done then doing it 2048 times as often _may_ be more efficient. (My benchmarks show unexplained dependencies on the data that increase with further optimizations in this area.) Revision Changes Path 1.11 +1 -1 src/lib/msun/src/e_log.c 1.9 +1 -1 src/lib/msun/src/e_logf.c From owner-cvs-src@FreeBSD.ORG Fri Jul 7 07:25:22 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3679F16A4DF; Fri, 7 Jul 2006 07:25:22 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB7F943D46; Fri, 7 Jul 2006 07:25:21 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k677PLwb020043; Fri, 7 Jul 2006 07:25:21 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k677PLSQ020042; Fri, 7 Jul 2006 07:25:21 GMT (envelope-from cperciva) Message-Id: <200607070725.k677PLSQ020042@repoman.freebsd.org> From: Colin Percival Date: Fri, 7 Jul 2006 07:25:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_1 Cc: Subject: cvs commit: src UPDATING src/etc/rc.d jail src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 07:25:22 -0000 cperciva 2006-07-07 07:25:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_1) . UPDATING etc/rc.d jail sys/conf newvers.sh Log: Fix problems in the startup scripts for jails. Errata: FreeBSD-EN-06:01.jail Approved by: so (cperciva) Revision Changes Path 1.416.2.22.2.5 +3 -0 src/UPDATING 1.23.2.3.2.2 +102 -91 src/etc/rc.d/jail 1.69.2.11.2.5 +1 -1 src/sys/conf/newvers.sh From owner-cvs-src@FreeBSD.ORG Fri Jul 7 08:07:22 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F35A16A4E0; Fri, 7 Jul 2006 08:07:22 +0000 (UTC) (envelope-from mistry.7@osu.edu) Received: from mail.united-ware.com (am-productions.biz [69.61.164.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC3D443D68; Fri, 7 Jul 2006 08:07:21 +0000 (GMT) (envelope-from mistry.7@osu.edu) Received: from [192.168.1.100] (am-productions.biz [69.61.164.22]) (authenticated bits=0) by mail.united-ware.com (8.13.6/8.13.6) with ESMTP id k678DUlB065931 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 7 Jul 2006 04:13:36 -0400 (EDT) (envelope-from mistry.7@osu.edu) From: Anish Mistry To: cvs-all@freebsd.org Date: Fri, 7 Jul 2006 04:07:30 -0400 User-Agent: KMail/1.9.1 References: <200607070725.k677PLSQ020042@repoman.freebsd.org> In-Reply-To: <200607070725.k677PLSQ020042@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1396724.izvUyEnyz3"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200607070407.51721.mistry.7@osu.edu> X-Spam-Status: No, score=-8.5 required=5.0 tests=ALL_TRUSTED,BAYES_50, MYFREEBSD2,MYFREEBSD3 autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on mail.united-ware.com X-Virus-Scanned: ClamAV 0.88.2/1587/Thu Jul 6 16:55:48 2006 on mail.united-ware.com X-Virus-Status: Clean Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Colin Percival Subject: Re: cvs commit: src UPDATING src/etc/rc.d jail src/sys/conf newvers.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 08:07:22 -0000 --nextPart1396724.izvUyEnyz3 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 07 July 2006 03:25, Colin Percival wrote: > cperciva 2006-07-07 07:25:21 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6_1) > . UPDATING > etc/rc.d jail > sys/conf newvers.sh > Log: > Fix problems in the startup scripts for jails. > > Errata: FreeBSD-EN-06:01.jail > Approved by: so (cperciva) > > Revision Changes Path > 1.416.2.22.2.5 +3 -0 src/UPDATING > 1.23.2.3.2.2 +102 -91 src/etc/rc.d/jail > 1.69.2.11.2.5 +1 -1 src/sys/conf/newvers.sh Thank you! =2D-=20 Anish Mistry --nextPart1396724.izvUyEnyz3 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBErhZXxqA5ziudZT0RAk4QAJwKuDEpAd8pBkwufzb3qyeTbTAX1QCfYFIh VcUXgUv0Luymv79I6K9ZjGU= =x3PO -----END PGP SIGNATURE----- --nextPart1396724.izvUyEnyz3-- From owner-cvs-src@FreeBSD.ORG Fri Jul 7 13:51:57 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A186216A4DE; Fri, 7 Jul 2006 13:51:57 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5960643D45; Fri, 7 Jul 2006 13:51:57 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67Dpv26020556; Fri, 7 Jul 2006 13:51:57 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67Dpvjp020555; Fri, 7 Jul 2006 13:51:57 GMT (envelope-from rwatson) Message-Id: <200607071351.k67Dpvjp020555@repoman.freebsd.org> From: Robert Watson Date: Fri, 7 Jul 2006 13:51:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/posix1e mac_is_present.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 13:51:57 -0000 rwatson 2006-07-07 13:51:57 UTC FreeBSD src repository Modified files: lib/libc/posix1e mac_is_present.3 Log: Forced commit to recognize repo-copy of mac_is_present_np.3 to mac_is_present.3. Thanks to: simon Obtained from: TrustedBSD Project Revision Changes Path 1.7 +0 -0 src/lib/libc/posix1e/mac_is_present.3 From owner-cvs-src@FreeBSD.ORG Fri Jul 7 14:02:18 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8ACF16A4DA; Fri, 7 Jul 2006 14:02:18 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB8043D53; Fri, 7 Jul 2006 14:02:18 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67E2Hxe021278; Fri, 7 Jul 2006 14:02:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67E2HT0021277; Fri, 7 Jul 2006 14:02:17 GMT (envelope-from rwatson) Message-Id: <200607071402.k67E2HT0021277@repoman.freebsd.org> From: Robert Watson Date: Fri, 7 Jul 2006 14:02:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/posix1e Makefile.inc mac_is_present.3 mac_is_present_np.3 mac_prepare.3 mac_set.3 mac_text.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 14:02:19 -0000 rwatson 2006-07-07 14:02:17 UTC FreeBSD src repository Modified files: lib/libc/posix1e Makefile.inc mac_is_present.3 mac_prepare.3 mac_set.3 mac_text.3 Removed files: lib/libc/posix1e mac_is_present_np.3 Log: Following repo-copy of mac_is_present_np.3 to mac_is_present.3, remove old file, update references, etc. The C function is already named mac_is_present(). Obtained from: TrustedBSD Project Revision Changes Path 1.19 +1 -1 src/lib/libc/posix1e/Makefile.inc 1.8 +2 -2 src/lib/libc/posix1e/mac_is_present.3 1.7 +0 -87 src/lib/libc/posix1e/mac_is_present_np.3 (dead) 1.8 +1 -1 src/lib/libc/posix1e/mac_prepare.3 1.11 +1 -1 src/lib/libc/posix1e/mac_set.3 1.12 +1 -1 src/lib/libc/posix1e/mac_text.3 From owner-cvs-src@FreeBSD.ORG Fri Jul 7 14:32:28 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32E3716A4DD; Fri, 7 Jul 2006 14:32:28 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA98C43D76; Fri, 7 Jul 2006 14:32:27 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67EWRHc024806; Fri, 7 Jul 2006 14:32:27 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67EWRRA024805; Fri, 7 Jul 2006 14:32:27 GMT (envelope-from pjd) Message-Id: <200607071432.k67EWRRA024805@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 7 Jul 2006 14:32:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/geom/raid3 g_raid3_ctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 14:32:28 -0000 pjd 2006-07-07 14:32:27 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3_ctl.c Log: Remove bogus assertion. Reported by: Bradley W. Dutton MFC after: 3 days Revision Changes Path 1.17 +0 -1 src/sys/geom/raid3/g_raid3_ctl.c From owner-cvs-src@FreeBSD.ORG Fri Jul 7 15:34:45 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50D6616A4DE; Fri, 7 Jul 2006 15:34:45 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0612743D45; Fri, 7 Jul 2006 15:34:45 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67FYico031300; Fri, 7 Jul 2006 15:34:44 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67FYirf031299; Fri, 7 Jul 2006 15:34:44 GMT (envelope-from bmah) Message-Id: <200607071534.k67FYirf031299@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 7 Jul 2006 15:34:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 15:34:45 -0000 bmah 2006-07-07 15:34:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/errata article.sgml Log: Update rc.d/jail item for EN-06:01.jail. Somewhat belatedly update NDP item for a merge to RELENG_6. Revision Changes Path 1.73.2.28 +6 -6 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Fri Jul 7 16:55:41 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6825D16A4E1; Fri, 7 Jul 2006 16:55:41 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7014A43D4C; Fri, 7 Jul 2006 16:55:40 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id k67GtbOp018719; Fri, 7 Jul 2006 12:55:39 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: Scott Long Date: Fri, 7 Jul 2006 12:24:57 -0400 User-Agent: KMail/1.9.1 References: <200607062142.k66LgaoV050809@repoman.freebsd.org> <200607061808.16440.jhb@freebsd.org> <44AD8D03.3000706@samsco.org> In-Reply-To: <44AD8D03.3000706@samsco.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607071224.58349.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Fri, 07 Jul 2006 12:55:39 -0400 (EDT) X-Virus-Scanned: ClamAV 0.87.1/1589/Fri Jul 7 10:37:51 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/linux32 syscalls.master src/sys/compat/linux linux_ioctl.c src/sys/i386/linux syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 16:55:41 -0000 On Thursday 06 July 2006 18:21, Scott Long wrote: > John Baldwin wrote: > > On Thursday 06 July 2006 17:53, Scott Long wrote: > > > >>John Baldwin wrote: > >> > >>>jhb 2006-07-06 21:42:36 UTC > >>> > >>> FreeBSD src repository > >>> > >>> Modified files: > >>> sys/amd64/linux32 syscalls.master > >>> sys/compat/linux linux_ioctl.c > >>> sys/i386/linux syscalls.master > >>> Log: > >>> - Protect the list of linux ioctl handlers with an sx lock. > >>> - Hold Giant while calling linux ioctl handlers for now as they aren't > > > > all > > > >>> known to be MPSAFE yet. > >>> - Mark linux_ioctl() MPSAFE. > >>> > >>> Revision Changes Path > >>> 1.15 +1 -1 src/sys/amd64/linux32/syscalls.master > >>> 1.137 +17 -0 src/sys/compat/linux/linux_ioctl.c > >>> 1.72 +1 -1 src/sys/i386/linux/syscalls.master > >> > >>Why not add the small bit of infrastucture so that modules can declare > >>their handlers as MPSAFE or not? There are certainly some drivers that > >>would benefit from this. > > > > > > We can certainly do that. I'm up to at least 3 places that this could be > > done now: > > > > - module event handlers > > - sysinit's > > - linux_ioctl handlers > > > > For now my focus is on eliminating syscall mpsafe flag, and most syscalls > > can be made Giant free at this point, but for a few Giant is just being > > pushed part of the way in. > > > > What I'm afraid of is that these things will get forgotten now that they > have been pushed out of the way. Are you interested in taking the next > step here? I've put it on a list, but if someone else wants to do it first that would be fine by me. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Fri Jul 7 22:59:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BFE016A4DA; Fri, 7 Jul 2006 22:59:03 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DAE743D45; Fri, 7 Jul 2006 22:59:03 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67Mx20Q088582; Fri, 7 Jul 2006 22:59:02 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67Mx2ol088581; Fri, 7 Jul 2006 22:59:02 GMT (envelope-from marcel) Message-Id: <200607072259.k67Mx2ol088581@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 7 Jul 2006 22:59:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: LIBUWX Cc: Subject: cvs commit: src/sys/contrib/ia64/libuwx - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 22:59:03 -0000 marcel 2006-07-07 22:59:02 UTC FreeBSD src repository src/sys/contrib/ia64/libuwx - Imported sources Update of /home/ncvs/src/sys/contrib/ia64/libuwx In directory repoman.freebsd.org:/tmp/cvs-serv88402 Log Message: Import BETA 10 of HP's Unwind Express. This import does not contain any modifications to make it build as part of the FreeBSD kernel. Now that the source appears to have stabilized, local changes will happen on HEAD and will therefore cause affected files to be pulled from the vendor branch. Status: Vendor Tag: LIBUWX Release Tags: BETA10 U src/sys/contrib/ia64/libuwx/src/Makefile U src/sys/contrib/ia64/libuwx/src/uwx.h U src/sys/contrib/ia64/libuwx/src/uwx_bstream.c U src/sys/contrib/ia64/libuwx/src/uwx_bstream.h U src/sys/contrib/ia64/libuwx/src/uwx_context.c U src/sys/contrib/ia64/libuwx/src/uwx_context.h U src/sys/contrib/ia64/libuwx/src/uwx_env.c U src/sys/contrib/ia64/libuwx/src/uwx_env.h U src/sys/contrib/ia64/libuwx/src/uwx_scoreboard.c U src/sys/contrib/ia64/libuwx/src/uwx_scoreboard.h U src/sys/contrib/ia64/libuwx/src/uwx_self.c U src/sys/contrib/ia64/libuwx/src/uwx_self.h U src/sys/contrib/ia64/libuwx/src/uwx_self_context.s N src/sys/contrib/ia64/libuwx/src/uwx_self_info.h U src/sys/contrib/ia64/libuwx/src/uwx_step.c U src/sys/contrib/ia64/libuwx/src/uwx_step.h U src/sys/contrib/ia64/libuwx/src/uwx_str.c U src/sys/contrib/ia64/libuwx/src/uwx_str.h U src/sys/contrib/ia64/libuwx/src/uwx_swap.c U src/sys/contrib/ia64/libuwx/src/uwx_swap.h N src/sys/contrib/ia64/libuwx/src/uwx_symbols.c N src/sys/contrib/ia64/libuwx/src/uwx_symbols.h U src/sys/contrib/ia64/libuwx/src/uwx_trace.c U src/sys/contrib/ia64/libuwx/src/uwx_trace.h U src/sys/contrib/ia64/libuwx/src/uwx_uinfo.c U src/sys/contrib/ia64/libuwx/src/uwx_uinfo.h U src/sys/contrib/ia64/libuwx/src/uwx_utable.c U src/sys/contrib/ia64/libuwx/src/uwx_utable.h U src/sys/contrib/ia64/libuwx/test/Makefile U src/sys/contrib/ia64/libuwx/test/dump_context.c U src/sys/contrib/ia64/libuwx/test/dumpmyself.c U src/sys/contrib/ia64/libuwx/test/primeregs.s No conflicts created by this import From owner-cvs-src@FreeBSD.ORG Fri Jul 7 23:04:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85A8716A4DA; Fri, 7 Jul 2006 23:04:50 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06C4B43D49; Fri, 7 Jul 2006 23:04:50 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67N4n22090218; Fri, 7 Jul 2006 23:04:49 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67N4nad090217; Fri, 7 Jul 2006 23:04:49 GMT (envelope-from marcel) Message-Id: <200607072304.k67N4nad090217@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 7 Jul 2006 23:04:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: LIBUWX Cc: Subject: cvs commit: src/sys/contrib/ia64/libuwx src.diff src/sys/contrib/ia64/libuwx/src uwx_self-new.c uwx_ttrace.c uwx_ttrace.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 23:04:50 -0000 marcel 2006-07-07 23:04:49 UTC FreeBSD src repository Removed files: (Branch: LIBUWX) sys/contrib/ia64/libuwx src.diff sys/contrib/ia64/libuwx/src uwx_self-new.c uwx_ttrace.c uwx_ttrace.h Log: Remove files from the vendor branch that aren't part of BETA 10. Revision Changes Path 1.1.1.2 +0 -352 src/sys/contrib/ia64/libuwx/src.diff (dead) 1.1.1.2 +0 -336 src/sys/contrib/ia64/libuwx/src/uwx_self-new.c (dead) 1.1.1.5 +0 -369 src/sys/contrib/ia64/libuwx/src/uwx_ttrace.c (dead) 1.1.1.4 +0 -64 src/sys/contrib/ia64/libuwx/src/uwx_ttrace.h (dead) From owner-cvs-src@FreeBSD.ORG Fri Jul 7 23:30:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF2816A4DD; Fri, 7 Jul 2006 23:30:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 805C843D4C; Fri, 7 Jul 2006 23:30:14 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67NUEWb091468; Fri, 7 Jul 2006 23:30:14 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67NUELE091467; Fri, 7 Jul 2006 23:30:14 GMT (envelope-from imp) Message-Id: <200607072330.k67NUELE091467@repoman.freebsd.org> From: Warner Losh Date: Fri, 7 Jul 2006 23:30:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys bus.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 23:30:15 -0000 imp 2006-07-07 23:30:14 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys bus.h Log: MFC: phk's bus_{read,write}_* macros. These are slightly different than -current because rman is opaque in RELENG_6, but are 100% API compatible. If they prove to be too slow, we may be able to make rman non-opaque to mitigate it. This should help porting drivers from -current into -stable. Revision Changes Path 1.70.2.1 +135 -0 src/sys/sys/bus.h From owner-cvs-src@FreeBSD.ORG Fri Jul 7 23:56:36 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58EC416A4DA; Fri, 7 Jul 2006 23:56:36 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FBDE43D45; Fri, 7 Jul 2006 23:56:36 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k67NuZo6092751; Fri, 7 Jul 2006 23:56:36 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k67NuZWe092750; Fri, 7 Jul 2006 23:56:35 GMT (envelope-from marcel) Message-Id: <200607072356.k67NuZWe092750@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 7 Jul 2006 23:56:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/contrib/ia64/libuwx/src uwx.h uwx_bstream.c uwx_context.c uwx_env.c uwx_scoreboard.c uwx_step.c uwx_step.h uwx_str.c uwx_trace.c uwx_trace.h uwx_uinfo.c uwx_utable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Jul 2006 23:56:36 -0000 marcel 2006-07-07 23:56:34 UTC FreeBSD src repository Modified files: sys/contrib/ia64/libuwx/src uwx.h uwx_bstream.c uwx_context.c uwx_env.c uwx_scoreboard.c uwx_step.c uwx_step.h uwx_str.c uwx_trace.c uwx_trace.h uwx_uinfo.c uwx_utable.c Log: Apply local modifications to make Unwind Express BETA 10 buildable and usable in the FreeBSD kernel. Revision Changes Path 1.2 +217 -46 src/sys/contrib/ia64/libuwx/src/uwx.h 1.2 +24 -22 src/sys/contrib/ia64/libuwx/src/uwx_bstream.c 1.2 +129 -50 src/sys/contrib/ia64/libuwx/src/uwx_context.c 1.2 +118 -65 src/sys/contrib/ia64/libuwx/src/uwx_env.c 1.2 +67 -29 src/sys/contrib/ia64/libuwx/src/uwx_scoreboard.c 1.2 +400 -98 src/sys/contrib/ia64/libuwx/src/uwx_step.c 1.2 +29 -0 src/sys/contrib/ia64/libuwx/src/uwx_step.h 1.2 +40 -34 src/sys/contrib/ia64/libuwx/src/uwx_str.c 1.2 +66 -38 src/sys/contrib/ia64/libuwx/src/uwx_trace.c 1.2 +139 -117 src/sys/contrib/ia64/libuwx/src/uwx_trace.h 1.2 +59 -43 src/sys/contrib/ia64/libuwx/src/uwx_uinfo.c 1.2 +57 -39 src/sys/contrib/ia64/libuwx/src/uwx_utable.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 00:01:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25DA416A4DF; Sat, 8 Jul 2006 00:01:02 +0000 (UTC) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C594543D45; Sat, 8 Jul 2006 00:01:01 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k680119w092972; Sat, 8 Jul 2006 00:01:01 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68011ld092971; Sat, 8 Jul 2006 00:01:01 GMT (envelope-from mlaier) Message-Id: <200607080001.k68011ld092971@repoman.freebsd.org> From: Max Laier Date: Sat, 8 Jul 2006 00:01:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_carp.c src/sys/contrib/pf/net if_pfsync.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 00:01:02 -0000 mlaier 2006-07-08 00:01:01 UTC FreeBSD src repository Modified files: sys/netinet ip_carp.c sys/contrib/pf/net if_pfsync.c Log: Make in-kernel multicast protocols for pfsync and carp work after enabling dynamic resizing of multicast membership array. Reported and testing by: Maxim Konovalov, Scott Ullrich Reminded by: thompsa MFC after: 2 weeks Revision Changes Path 1.29 +5 -0 src/sys/contrib/pf/net/if_pfsync.c 1.41 +5 -0 src/sys/netinet/ip_carp.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 00:32:43 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19C3016A4DD; Sat, 8 Jul 2006 00:32:43 +0000 (UTC) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82E7843D6D; Sat, 8 Jul 2006 00:32:38 +0000 (GMT) (envelope-from max@love2party.net) Received: from [88.64.182.206] (helo=amd64.laiers.local) by mrelayeu.kundenserver.de (node=mrelayeu0) with ESMTP (Nemesis), id 0MKwh2-1Fz0kD2BuK-00064p; Sat, 08 Jul 2006 02:32:37 +0200 From: Max Laier Organization: FreeBSD To: src-committers@freebsd.org Date: Sat, 8 Jul 2006 02:32:18 +0200 User-Agent: KMail/1.9.1 References: <200607080001.k68011ld092971@repoman.freebsd.org> In-Reply-To: <200607080001.k68011ld092971@repoman.freebsd.org> X-Face: ,,8R(x[kmU]tKN@>gtH1yQE4aslGdu+2]; R]*pL,U>^H?)gW@49@wdJ`H<=?utf-8?q?=25=7D*=5FBD=0A=09U=5For=3D=5CmOZf764=26nYj=3DJYbR1PW0ud?=>|!~,,CPC.1-D$FG@0h3#'5"k{V]a~.<=?utf-8?q?mZ=7D44=23Se=7Em=0A=09Fe=7E=5C=5DX5B=5D=5Fxj?=(ykz9QKMw_l0C2AQ]}Ym8)fU MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart4881537.olZc4E7dhB"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200607080232.24587.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de login:61c499deaeeba3ba5be80f48ecc83056 Cc: cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet ip_carp.c src/sys/contrib/pf/net if_pfsync.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 00:32:43 -0000 --nextPart4881537.olZc4E7dhB Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 08 July 2006 02:01, Max Laier wrote: > MFC after: 2 weeks =2E.. not. I was confused. =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 --nextPart4881537.olZc4E7dhB Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQBErv0YXyyEoT62BG0RArAQAJ9gvCnSPaoTVFqLFR0D+rRWVjztUgCfc4G/ qKHJurLEWXn2oA5FeGQOaq0= =P0SH -----END PGP SIGNATURE----- --nextPart4881537.olZc4E7dhB-- From owner-cvs-src@FreeBSD.ORG Sat Jul 8 03:18:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E02016A4DA; Sat, 8 Jul 2006 03:18:42 +0000 (UTC) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C68DE43D53; Sat, 8 Jul 2006 03:18:41 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k683Ifbr086759; Sat, 8 Jul 2006 03:18:41 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k683IfeJ086758; Sat, 8 Jul 2006 03:18:41 GMT (envelope-from avatar) Message-Id: <200607080318.k683IfeJ086758@repoman.freebsd.org> From: Tai-hwa Liang Date: Sat, 8 Jul 2006 03:18:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 03:18:42 -0000 avatar 2006-07-08 03:18:41 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Adding more antiques came from the RELENG_4(or prior) era: sbin/nfsd, sbin/mount_portal and sbin/kget. MFC after: 1 month Revision Changes Path 1.40 +9 -0 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Sat Jul 8 03:22:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 444B616A4E0; Sat, 8 Jul 2006 03:22:46 +0000 (UTC) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CEDB43D5F; Sat, 8 Jul 2006 03:22:45 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k683MjHt087717; Sat, 8 Jul 2006 03:22:45 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k683MjBt087716; Sat, 8 Jul 2006 03:22:45 GMT (envelope-from avatar) Message-Id: <200607080322.k683MjBt087716@repoman.freebsd.org> From: Tai-hwa Liang Date: Sat, 8 Jul 2006 03:22:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 03:22:46 -0000 avatar 2006-07-08 03:22:44 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Oops, it is sbin/nfsd that was removed, not the man page. MFC after: 1 month Revision Changes Path 1.41 +0 -1 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Sat Jul 8 07:32:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18D8516A4DD; Sat, 8 Jul 2006 07:32:42 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE69543D53; Sat, 8 Jul 2006 07:32:41 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k687Wfv7076312; Sat, 8 Jul 2006 07:32:41 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k687Wf2t076311; Sat, 8 Jul 2006 07:32:41 GMT (envelope-from cperciva) Message-Id: <200607080732.k687Wf2t076311@repoman.freebsd.org> From: Colin Percival Date: Sat, 8 Jul 2006 07:32:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/contrib/texinfo FREEBSD-upgrade X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 07:32:42 -0000 cperciva 2006-07-08 07:32:41 UTC FreeBSD src repository Modified files: contrib/texinfo FREEBSD-upgrade Log: Add note concerning FreeBSD-SA-06:01.texindex. Suggested by: csjp Revision Changes Path 1.7 +4 -0 src/contrib/texinfo/FREEBSD-upgrade From owner-cvs-src@FreeBSD.ORG Sat Jul 8 07:45:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB3B916A504; Sat, 8 Jul 2006 07:45:58 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67FE943D49; Sat, 8 Jul 2006 07:45:58 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k687jw1K084662; Sat, 8 Jul 2006 07:45:58 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k687jwKl084661; Sat, 8 Jul 2006 07:45:58 GMT (envelope-from maxim) Message-Id: <200607080745.k687jwKl084661@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 8 Jul 2006 07:45:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 07:45:58 -0000 maxim 2006-07-08 07:45:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/ypserv Makefile.yp Log: MFC rev. 1.38: NIS clients ask for "shells" map not "shells.list". Revision Changes Path 1.36.2.1 +1 -2 src/usr.sbin/ypserv/Makefile.yp From owner-cvs-src@FreeBSD.ORG Sat Jul 8 07:48:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D59F316A4DA; Sat, 8 Jul 2006 07:48:43 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90C8843D49; Sat, 8 Jul 2006 07:48:43 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k687mhFR086639; Sat, 8 Jul 2006 07:48:43 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k687mhm3086638; Sat, 8 Jul 2006 07:48:43 GMT (envelope-from maxim) Message-Id: <200607080748.k687mhm3086638@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 8 Jul 2006 07:48:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/usb if_ural.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 07:48:43 -0000 maxim 2006-07-08 07:48:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/usb if_ural.c Log: MFC rev. 1.41: remove rev. 1.30 leftover. Revision Changes Path 1.10.2.8 +1 -1 src/sys/dev/usb/if_ural.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 07:53:58 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1488016A4DE; Sat, 8 Jul 2006 07:53:58 +0000 (UTC) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C28D443D5C; Sat, 8 Jul 2006 07:53:57 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k687rv42090249; Sat, 8 Jul 2006 07:53:57 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k687rvM7090245; Sat, 8 Jul 2006 07:53:57 GMT (envelope-from maxim) Message-Id: <200607080753.k687rvM7090245@repoman.freebsd.org> From: Maxim Konovalov Date: Sat, 8 Jul 2006 07:53:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/ypserv yp_server.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 07:53:58 -0000 maxim 2006-07-08 07:53:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/ypserv yp_server.c Log: MFC rev. 1.40: fix a condition logic for !do_dns case. Revision Changes Path 1.39.2.1 +2 -2 src/usr.sbin/ypserv/yp_server.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 12:31:48 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A7EF16A4DF; Sat, 8 Jul 2006 12:31:48 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23B9743D6B; Sat, 8 Jul 2006 12:31:34 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68CVYYf074858; Sat, 8 Jul 2006 12:31:34 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68CVYO2074854; Sat, 8 Jul 2006 12:31:34 GMT (envelope-from netchild) Message-Id: <200607081231.k68CVYO2074854@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 8 Jul 2006 12:31:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/kerneldoc Doxyfile Makefile src/tools/kerneldoc/subsys Dependencies Doxyfile-cam Doxyfile-crypto Doxyfile-dev_pci Doxyfile-dev_sound Doxyfile-dev_usb Doxyfile-geom Doxyfile-i4b Doxyfile-kern ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 12:31:48 -0000 netchild 2006-07-08 12:31:34 UTC FreeBSD src repository Modified files: tools/kerneldoc Doxyfile Makefile tools/kerneldoc/subsys Dependencies Doxyfile-cam Doxyfile-crypto Doxyfile-dev_pci Doxyfile-dev_sound Doxyfile-dev_usb Doxyfile-geom Doxyfile-i4b Doxyfile-kern Doxyfile-libkern Doxyfile-linux Doxyfile-net80211 Doxyfile-netgraph Doxyfile-netinet Doxyfile-netinet6 Doxyfile-netipsec Doxyfile-opencrypto Doxyfile-vm Makefile README common-Doxyfile notreviewed.dox Log: Forced commit to note repo copy from sys/doc. Requested by: trhodes Repo copy by: simon Revision Changes Path 1.2 +0 -0 src/tools/kerneldoc/Doxyfile 1.2 +0 -0 src/tools/kerneldoc/Makefile 1.2 +0 -0 src/tools/kerneldoc/subsys/Dependencies 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-cam 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-crypto 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-dev_pci 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-dev_sound 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-dev_usb 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-geom 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-i4b 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-kern 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-libkern 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-linux 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-net80211 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-netgraph 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-netinet 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-netinet6 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-netipsec 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-opencrypto 1.3 +0 -0 src/tools/kerneldoc/subsys/Doxyfile-vm 1.3 +0 -0 src/tools/kerneldoc/subsys/Makefile 1.2 +0 -0 src/tools/kerneldoc/subsys/README 1.2 +0 -0 src/tools/kerneldoc/subsys/common-Doxyfile 1.2 +0 -0 src/tools/kerneldoc/subsys/notreviewed.dox From owner-cvs-src@FreeBSD.ORG Sat Jul 8 12:32:42 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A70C616A4DF; Sat, 8 Jul 2006 12:32:42 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B6A543D58; Sat, 8 Jul 2006 12:32:42 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68CWgPB075636; Sat, 8 Jul 2006 12:32:42 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68CWgrp075635; Sat, 8 Jul 2006 12:32:42 GMT (envelope-from netchild) Message-Id: <200607081232.k68CWgrp075635@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 8 Jul 2006 12:32:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/kerneldoc/subsys Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 12:32:42 -0000 netchild 2006-07-08 12:32:42 UTC FreeBSD src repository Modified files: tools/kerneldoc/subsys Makefile Log: Add (missing) and remove (obsolete) .m files. Revision Changes Path 1.4 +7 -4 src/tools/kerneldoc/subsys/Makefile From owner-cvs-src@FreeBSD.ORG Sat Jul 8 12:34:30 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A85516A4DD; Sat, 8 Jul 2006 12:34:30 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0304643D46; Sat, 8 Jul 2006 12:34:30 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68CYTs4077019; Sat, 8 Jul 2006 12:34:29 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68CYTgf077018; Sat, 8 Jul 2006 12:34:29 GMT (envelope-from netchild) Message-Id: <200607081234.k68CYTgf077018@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 8 Jul 2006 12:34:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/doc Doxyfile Makefile src/sys/doc/subsys Dependencies Doxyfile-cam Doxyfile-crypto Doxyfile-dev_pci Doxyfile-dev_sound Doxyfile-dev_usb Doxyfile-geom Doxyfile-i4b Doxyfile-kern Doxyfile-libkern Doxyfile-linux Doxyfile-net80211 ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 12:34:30 -0000 netchild 2006-07-08 12:34:29 UTC FreeBSD src repository Removed files: sys/doc Doxyfile Makefile sys/doc/subsys Dependencies Doxyfile-cam Doxyfile-crypto Doxyfile-dev_pci Doxyfile-dev_sound Doxyfile-dev_usb Doxyfile-geom Doxyfile-i4b Doxyfile-kern Doxyfile-libkern Doxyfile-linux Doxyfile-net80211 Doxyfile-netgraph Doxyfile-netinet Doxyfile-netinet6 Doxyfile-netipsec Doxyfile-opencrypto Doxyfile-vm Makefile README common-Doxyfile notreviewed.dox Log: Remove after repo copy to src/tools/kerneldoc. Requested by: trhodes Repo copy by: simon Revision Changes Path 1.2 +0 -211 src/sys/doc/Doxyfile (dead) 1.2 +0 -30 src/sys/doc/Makefile (dead) 1.2 +0 -22 src/sys/doc/subsys/Dependencies (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-cam (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-crypto (dead) 1.3 +0 -22 src/sys/doc/subsys/Doxyfile-dev_pci (dead) 1.3 +0 -22 src/sys/doc/subsys/Doxyfile-dev_sound (dead) 1.3 +0 -21 src/sys/doc/subsys/Doxyfile-dev_usb (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-geom (dead) 1.3 +0 -21 src/sys/doc/subsys/Doxyfile-i4b (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-kern (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-libkern (dead) 1.3 +0 -21 src/sys/doc/subsys/Doxyfile-linux (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-net80211 (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-netgraph (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-netinet (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-netinet6 (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-netipsec (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-opencrypto (dead) 1.3 +0 -20 src/sys/doc/subsys/Doxyfile-vm (dead) 1.3 +0 -125 src/sys/doc/subsys/Makefile (dead) 1.2 +0 -32 src/sys/doc/subsys/README (dead) 1.2 +0 -266 src/sys/doc/subsys/common-Doxyfile (dead) 1.2 +0 -14 src/sys/doc/subsys/notreviewed.dox (dead) From owner-cvs-src@FreeBSD.ORG Sat Jul 8 13:47:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E82A516A4E5; Sat, 8 Jul 2006 13:47:43 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8353243D66; Sat, 8 Jul 2006 13:47:41 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68Dlft3035686; Sat, 8 Jul 2006 13:47:41 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68DlfPG035682; Sat, 8 Jul 2006 13:47:41 GMT (envelope-from des) Message-Id: <200607081347.k68DlfPG035682@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 8 Jul 2006 13:47:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/rc.d nsswitch X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 13:47:44 -0000 des 2006-07-08 13:47:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d nsswitch Log: MFC: (1.10) regenerate host.conf every time nsswitch.conf is updated. Revision Changes Path 1.5.2.2 +3 -1 src/etc/rc.d/nsswitch From owner-cvs-src@FreeBSD.ORG Sat Jul 8 13:49:25 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 187B216A4E7; Sat, 8 Jul 2006 13:49:25 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87D4643D55; Sat, 8 Jul 2006 13:49:24 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68DnOGC036231; Sat, 8 Jul 2006 13:49:24 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68DnOrA036230; Sat, 8 Jul 2006 13:49:24 GMT (envelope-from rodrigc) Message-Id: <200607081349.k68DnOrA036230@repoman.freebsd.org> From: Craig Rodrigues Date: Sat, 8 Jul 2006 13:49:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/mountd mountd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 13:49:25 -0000 rodrigc 2006-07-08 13:49:24 UTC FreeBSD src repository Modified files: usr.sbin/mountd mountd.c Log: In get_exportlist(), properly loop over mounted filesystems. PR: bin/99873 Submitted by: Danny Braniss Revision Changes Path 1.88 +4 -5 src/usr.sbin/mountd/mountd.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 13:54:50 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51CE716A4E0; Sat, 8 Jul 2006 13:54:50 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D1A443D46; Sat, 8 Jul 2006 13:54:50 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68Dsn77039670; Sat, 8 Jul 2006 13:54:49 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68DsnjQ039669; Sat, 8 Jul 2006 13:54:49 GMT (envelope-from rodrigc) Message-Id: <200607081354.k68DsnjQ039669@repoman.freebsd.org> From: Craig Rodrigues Date: Sat, 8 Jul 2006 13:54:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/mountd mountd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 13:54:50 -0000 rodrigc 2006-07-08 13:54:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/mountd mountd.c Log: In get_exportlist(), properly loop over mounted filesystems. PR: bin/99873 Submitted by: Danny Braniss Revision Changes Path 1.81.2.4 +4 -5 src/usr.sbin/mountd/mountd.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 14:06:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DA94716A4DA; Sat, 8 Jul 2006 14:06:56 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89B9043D45; Sat, 8 Jul 2006 14:06:56 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68E6uxX049343; Sat, 8 Jul 2006 14:06:56 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68E6u3w049339; Sat, 8 Jul 2006 14:06:56 GMT (envelope-from netchild) Message-Id: <200607081406.k68E6u3w049339@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 8 Jul 2006 14:06:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c src/sys/compat/linux linux_misc.c src/sys/compat/linprocfs linprocfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 14:06:57 -0000 netchild 2006-07-08 14:06:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/pseudofs pseudofs_vnops.c sys/compat/linux linux_misc.c sys/compat/linprocfs linprocfs.c Log: MFC: - linux_misc.c 1.179 Don't copyout/do unneccesary work if the buffer is a NULL pointer. Noticed by: Dmitry Ganenko Reviewed by: rdivacky (the original version as in emulation@) - linprocfs.c 1.96: Improve linprovfs to provide/fix the - process state (idle, sleeping, running, ...) [1] - the process group ID of the process which owns the connected tty - some page fault stats - time spend in kernel/userland - priority/nice value - starttime [1] - memory/swap stats - scheduling policy Additionally add some new fields and correct some not filled out ones. This brings us down to 15 dummy fields. The fields marked with [1] are needed to get Oracle 10 running. The starttime field is not completely right, since it displays the _same_ starttime for _every_ process, but at least it is not 0 and Oracle accepts this. Noticed by: Dmitry Ganenko [1] Reviewed by: des, rdivacky - pseudofs_vnops.c 1.60: Correctly calculate a buffer length. It was off by one so a read() returned one byte less than needed. Noticed by: Dmitry Ganenko Testcase by: Dmitry Ganenko Reviewed by: des Submitted by: rdivacky Sponsored by: Google SoC 2006 All of those are needed for Oracle 10. Since previous Oracle versions work just fine without those fixes, these patches can be seen as regression fixes too. Because of this I think they are a RELENG_6_x candidate (MFC reminder set). MFC after: 1 month Revision Changes Path 1.89.2.4 +51 -27 src/sys/compat/linprocfs/linprocfs.c 1.170.2.1 +13 -11 src/sys/compat/linux/linux_misc.c 1.56.2.4 +1 -1 src/sys/fs/pseudofs/pseudofs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 14:34:56 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AACE816A4E5; Sat, 8 Jul 2006 14:34:56 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 655CC43D4C; Sat, 8 Jul 2006 14:34:56 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68EYuJi063670; Sat, 8 Jul 2006 14:34:56 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68EYucw063669; Sat, 8 Jul 2006 14:34:56 GMT (envelope-from des) Message-Id: <200607081434.k68EYucw063669@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 8 Jul 2006 14:34:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 14:34:56 -0000 des 2006-07-08 14:34:56 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/lib url.c Log: Turn on libfetch debugging if -v was specified on the command line. MFC after: 2 weeks Revision Changes Path 1.6 +1 -0 src/usr.sbin/pkg_install/lib/url.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 14:37:19 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E13B016A4DD; Sat, 8 Jul 2006 14:37:19 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3CC143D45; Sat, 8 Jul 2006 14:37:19 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68EbJm7065314; Sat, 8 Jul 2006 14:37:19 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68EbJpd065313; Sat, 8 Jul 2006 14:37:19 GMT (envelope-from des) Message-Id: <200607081437.k68EbJpd065313@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 8 Jul 2006 14:37:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/crypto/openssh ssh_namespace.h src/secure/lib/libssh Makefile src/secure/libexec/sftp-server Makefile src/secure/libexec/ssh-keysign Makefile src/secure/usr.bin/scp Makefile src/secure/usr.bin/sftp Makefile src/secure/usr.bin/ssh ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 14:37:20 -0000 des 2006-07-08 14:37:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) secure/lib/libssh Makefile secure/libexec/sftp-server Makefile secure/libexec/ssh-keysign Makefile secure/usr.bin/scp Makefile secure/usr.bin/sftp Makefile secure/usr.bin/ssh Makefile secure/usr.bin/ssh-add Makefile secure/usr.bin/ssh-agent Makefile secure/usr.bin/ssh-keygen Makefile secure/usr.bin/ssh-keyscan Makefile secure/usr.sbin/sshd Makefile Added files: (Branch: RELENG_6) crypto/openssh ssh_namespace.h Log: MFC: namespace munging hack Revision Changes Path 1.1.2.1 +353 -0 src/crypto/openssh/ssh_namespace.h (new) 1.34.2.3 +3 -1 src/secure/lib/libssh/Makefile 1.13.2.1 +3 -1 src/secure/libexec/sftp-server/Makefile 1.6.2.1 +3 -1 src/secure/libexec/ssh-keysign/Makefile 1.14.2.1 +3 -1 src/secure/usr.bin/scp/Makefile 1.12.2.1 +3 -1 src/secure/usr.bin/sftp/Makefile 1.14.2.1 +3 -1 src/secure/usr.bin/ssh-add/Makefile 1.14.2.1 +3 -1 src/secure/usr.bin/ssh-agent/Makefile 1.15.2.1 +3 -1 src/secure/usr.bin/ssh-keygen/Makefile 1.9.2.1 +3 -1 src/secure/usr.bin/ssh-keyscan/Makefile 1.31.2.1 +3 -1 src/secure/usr.bin/ssh/Makefile 1.44.2.1 +3 -1 src/secure/usr.sbin/sshd/Makefile From owner-cvs-src@FreeBSD.ORG Sat Jul 8 15:34:27 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E735016A4DA; Sat, 8 Jul 2006 15:34:27 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A28D443D45; Sat, 8 Jul 2006 15:34:27 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68FYRvh004266; Sat, 8 Jul 2006 15:34:27 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68FYRYi004264; Sat, 8 Jul 2006 15:34:27 GMT (envelope-from kib) Message-Id: <200607081534.k68FYRYi004264@repoman.freebsd.org> From: Konstantin Belousov Date: Sat, 8 Jul 2006 15:34:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sbin/init init.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 15:34:28 -0000 kib 2006-07-08 15:34:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/init init.c Log: MFC rev. 1.62: Reparent the process that executes the window= command from the ttys to the init. This prevents zombies from being accumulated. PR: bin/64198 Tested by: Eugene Grosbein Approved by: kan (mentor) Revision Changes Path 1.60.2.2 +13 -1 src/sbin/init/init.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 15:36:51 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C366716A4DE; Sat, 8 Jul 2006 15:36:51 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F74343D6B; Sat, 8 Jul 2006 15:36:51 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68FapIe005976; Sat, 8 Jul 2006 15:36:51 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68FapFd005972; Sat, 8 Jul 2006 15:36:51 GMT (envelope-from kib) Message-Id: <200607081536.k68FapFd005972@repoman.freebsd.org> From: Konstantin Belousov Date: Sat, 8 Jul 2006 15:36:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/nfsclient nfs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 15:36:51 -0000 kib 2006-07-08 15:36:51 UTC FreeBSD src repository Modified files: sys/nfsclient nfs_vnops.c Log: Always supply curthread as argument to nfs_asyncio and nfs_doio in nfs_strategy. Otherwise, for some buffers, signals would be ignored at the intr mounts. Reviewed by: mohan MFC after: 1 month Approved by: kan (mentor) Revision Changes Path 1.267 +2 -8 src/sys/nfsclient/nfs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 15:39:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26D0116A4DF; Sat, 8 Jul 2006 15:39:12 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C14F943D6E; Sat, 8 Jul 2006 15:39:11 +0000 (GMT) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68FdBMX007667; Sat, 8 Jul 2006 15:39:11 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68FdB5D007666; Sat, 8 Jul 2006 15:39:11 GMT (envelope-from kib) Message-Id: <200607081539.k68FdB5D007666@repoman.freebsd.org> From: Konstantin Belousov Date: Sat, 8 Jul 2006 15:39:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/nfsclient nfs_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 15:39:12 -0000 kib 2006-07-08 15:39:11 UTC FreeBSD src repository Modified files: sys/nfsclient nfs_socket.c Log: Signals may be delivered to process as well as to the thread. Check the thread-delivered signals in addition to the process one. Reviewed by: mohan MFC after: 1 month Approved by: kan (mentor) Revision Changes Path 1.142 +3 -1 src/sys/nfsclient/nfs_socket.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 15:43:34 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 846AB16A4E0; Sat, 8 Jul 2006 15:43:34 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF9743D53; Sat, 8 Jul 2006 15:43:27 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68FhRav010835; Sat, 8 Jul 2006 15:43:27 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68FhR4A010831; Sat, 8 Jul 2006 15:43:27 GMT (envelope-from des) Message-Id: <200607081543.k68FhR4A010831@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 8 Jul 2006 15:43:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/crypto/openssh config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 15:43:34 -0000 des 2006-07-08 15:43:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) crypto/openssh config.h Log: MFC: (1.16) our glob(3) has all the required features. Revision Changes Path 1.11.2.2 +2 -2 src/crypto/openssh/config.h From owner-cvs-src@FreeBSD.ORG Sat Jul 8 15:45:02 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.ORG Delivered-To: cvs-src@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28BD616A4DF; Sat, 8 Jul 2006 15:45:02 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14F6943D64; Sat, 8 Jul 2006 15:44:47 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 17C392086; Sat, 8 Jul 2006 17:44:41 +0200 (CEST) X-Spam-Tests: none X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on tim.des.no Received: from xps.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 09DD82085; Sat, 8 Jul 2006 17:44:41 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id DE82F33C28; Sat, 8 Jul 2006 17:44:40 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Andrey Chernov References: <200606090839.k598d5HQ044431@repoman.freebsd.org> <20060609114719.GB70953@nagual.pp.ru> <20060609150736.GA75964@nagual.pp.ru> Date: Sat, 08 Jul 2006 17:44:40 +0200 In-Reply-To: <20060609150736.GA75964@nagual.pp.ru> (Andrey Chernov's message of "Fri, 9 Jun 2006 19:07:36 +0400") Message-ID: <8664i8rthz.fsf@xps.des.no> User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/crypto/openssh config.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 15:45:02 -0000 Andrey Chernov writes: > 2nd note: it is backward-compatible and can be MFCed to any branch. I just did RELENG_6. I'd rather not touch RELENG_5. > BTW, why configure not sense those flags automatically? I haven't looked too closely, but I think the test in configure.ac is bogus, at least for GLOB_HAS_GL_MATCHC. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Sat Jul 8 15:51:55 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE80516A4DD; Sat, 8 Jul 2006 15:51:55 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A929743D46; Sat, 8 Jul 2006 15:51:55 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68Fpt5u017207; Sat, 8 Jul 2006 15:51:55 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68FptRv017206; Sat, 8 Jul 2006 15:51:55 GMT (envelope-from imp) Message-Id: <200607081551.k68FptRv017206@repoman.freebsd.org> From: Warner Losh Date: Sat, 8 Jul 2006 15:51:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/isa isahint.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 15:51:56 -0000 imp 2006-07-08 15:51:55 UTC FreeBSD src repository Modified files: sys/isa isahint.c Log: Remove old GENERIC kludge. We no longer need to skip devices named atkbd. Version 1.162 of GENERIC fixed this problem in April of 1999. Subsequent to that, the hints data was removed from GENERIC and move to hints files. All the hints file ever created have atkbd at the right location. This should have been removed just after RELENG_4 was branched (and likely around 4.5 in RELENG_4). MFC After: 3 days Revision Changes Path 1.17 +2 -8 src/sys/isa/isahint.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 16:50:11 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9BC216A4DD; Sat, 8 Jul 2006 16:50:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D04743D49; Sat, 8 Jul 2006 16:50:11 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68GoBXV071682; Sat, 8 Jul 2006 16:50:11 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68GoBOM071678; Sat, 8 Jul 2006 16:50:11 GMT (envelope-from imp) Message-Id: <200607081650.k68GoBOM071678@repoman.freebsd.org> From: Warner Losh Date: Sat, 8 Jul 2006 16:50:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/isa isahint.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 16:50:12 -0000 imp 2006-07-08 16:50:10 UTC FreeBSD src repository Modified files: sys/isa isahint.c Log: (apply '(lambda (reformat-region 'style-9-parens)) (read-file isahint.c)) remove redundant parens, per style(9) to reduce that limp, lispy feeling. Revision Changes Path 1.18 +2 -2 src/sys/isa/isahint.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 17:06:20 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF2E516A4DE; Sat, 8 Jul 2006 17:06:20 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EED943D4C; Sat, 8 Jul 2006 17:06:20 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68H6K9U082830; Sat, 8 Jul 2006 17:06:20 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68H6FBX082800; Sat, 8 Jul 2006 17:06:15 GMT (envelope-from imp) Message-Id: <200607081706.k68H6FBX082800@repoman.freebsd.org> From: Warner Losh Date: Sat, 8 Jul 2006 17:06:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern bus_if.m subr_bus.c src/sys/sys bus.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 17:06:20 -0000 imp 2006-07-08 17:06:15 UTC FreeBSD src repository Modified files: sys/kern subr_bus.c bus_if.m sys/sys bus.h Log: Create bus_enumerate_hinted_children. This routine will allow drivers to use the hinted child system. Bus drivers that use this need to implmenet the bus_hinted_child method, where they actually add the child to their bus, as they see fit. The bus is repsonsible for getting the attribtues for the child, adding it in the right order, etc. ISA hinting will be updated to use this method. MFC After: 3 days Revision Changes Path 1.30 +22 -0 src/sys/kern/bus_if.m 1.194 +34 -0 src/sys/kern/subr_bus.c 1.75 +1 -0 src/sys/sys/bus.h From owner-cvs-src@FreeBSD.ORG Sat Jul 8 18:35:09 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8649216A4E0; Sat, 8 Jul 2006 18:35:09 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BBF843D49; Sat, 8 Jul 2006 18:35:04 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (ip70-177-190-239.dc.dc.cox.net [70.177.190.239]) (authenticated bits=0) by pittgoth.com (8.13.4/8.13.4) with ESMTP id k68IjLKC046348 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 8 Jul 2006 14:45:23 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Sat, 8 Jul 2006 14:34:58 -0400 From: Tom Rhodes To: Alexander Leidinger Message-Id: <20060708143458.15790ee9.trhodes@FreeBSD.org> In-Reply-To: <200607081231.k68CVYO2074854@repoman.freebsd.org> References: <200607081231.k68CVYO2074854@repoman.freebsd.org> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/kerneldoc Doxyfile Makefile src/tools/kerneldoc/subsys Dependencies Doxyfile-cam Doxyfile-crypto Doxyfile-dev_pci Doxyfile-dev_sound Doxyfile-dev_usb Doxyfile-geom Doxyfile-i4b Doxyfile-kern ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 18:35:09 -0000 On Sat, 8 Jul 2006 12:31:34 +0000 (UTC) Alexander Leidinger wrote: > netchild 2006-07-08 12:31:34 UTC > > FreeBSD src repository > > Modified files: > tools/kerneldoc Doxyfile Makefile > tools/kerneldoc/subsys Dependencies Doxyfile-cam > Doxyfile-crypto Doxyfile-dev_pci > Doxyfile-dev_sound Doxyfile-dev_usb > Doxyfile-geom Doxyfile-i4b > Doxyfile-kern Doxyfile-libkern > Doxyfile-linux Doxyfile-net80211 > Doxyfile-netgraph Doxyfile-netinet > Doxyfile-netinet6 Doxyfile-netipsec > Doxyfile-opencrypto Doxyfile-vm > Makefile README common-Doxyfile > notreviewed.dox > Log: > Forced commit to note repo copy from sys/doc. > > Requested by: trhodes > Repo copy by: simon Thanks! -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Sat Jul 8 19:05:38 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9925516A4DD for ; Sat, 8 Jul 2006 19:05:38 +0000 (UTC) (envelope-from chucklever@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CAEF43D55 for ; Sat, 8 Jul 2006 19:05:36 +0000 (GMT) (envelope-from chucklever@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1143775uge for ; Sat, 08 Jul 2006 12:05:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=XQxfBcIS46Bm7n8XI7Z4uCBSRG4bQ8Q8UsRG1qaMAQyfsAJntmMjkr54ePaOD0QtdE7qWPZ3XhXIOnRDW5zXzCTWmwL1LjsH70VwPYhLRh0BUCpsLcVqgM5mOnVbDJqwN825/YUTggewRSiI1H70dic+sUZk+Bl/wzQpE49H37g= Received: by 10.78.170.17 with SMTP id s17mr1173637hue; Sat, 08 Jul 2006 12:05:35 -0700 (PDT) Received: by 10.78.175.15 with HTTP; Sat, 8 Jul 2006 12:05:35 -0700 (PDT) Message-ID: <76bd70e30607081205v57db0e48w70fa9025391b9fcb@mail.gmail.com> Date: Sat, 8 Jul 2006 15:05:35 -0400 From: "Chuck Lever" To: "Konstantin Belousov" In-Reply-To: <200607081539.k68FdB5D007666@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200607081539.k68FdB5D007666@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org Subject: Re: cvs commit: src/sys/nfsclient nfs_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 19:05:38 -0000 On 7/8/06, Konstantin Belousov wrote: > kib 2006-07-08 15:39:11 UTC > > FreeBSD src repository > > Modified files: > sys/nfsclient nfs_socket.c > Log: > Signals may be delivered to process as well as to the thread. Check the > thread-delivered signals in addition to the process one. > > Reviewed by: mohan > MFC after: 1 month > Approved by: kan (mentor) > > Revision Changes Path > 1.142 +3 -1 src/sys/nfsclient/nfs_socket.c Is this a problem in the NFSv4 client as well? -- "We who cut mere stones must always be envisioning cathedrals" -- Quarry worker's creed From owner-cvs-src@FreeBSD.ORG Sat Jul 8 19:51:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 938D416A4DA; Sat, 8 Jul 2006 19:51:38 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DD8B43D46; Sat, 8 Jul 2006 19:51:38 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68JpcS3085263; Sat, 8 Jul 2006 19:51:38 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68Jpcfm085262; Sat, 8 Jul 2006 19:51:38 GMT (envelope-from jhb) Message-Id: <200607081951.k68Jpcfm085262@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 19:51:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/linux linux_ipc.c src/sys/compat/svr4 svr4_ipc.c src/sys/kern sysv_sem.c src/sys/sys syscallsubr.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 19:51:38 -0000 jhb 2006-07-08 19:51:38 UTC FreeBSD src repository Modified files: sys/compat/linux linux_ipc.c sys/compat/svr4 svr4_ipc.c sys/kern sysv_sem.c sys/sys syscallsubr.h Log: Rework kern_semctl a bit to always assume the UIO_SYSSPACE case. This mostly consists of pushing a few copyin's and copyout's up into __semctl() as all the other callers were already doing the UIO_SYSSPACE case. This also changes kern_semctl() to set the return value in a passed in pointer to a register_t rather than td->td_retval[0] directly so that callers can only set td->td_retval[0] if all the various copyout's succeed. As a result of these changes, kern_semctl() no longer does copyin/copyout (except for GETALL/SETALL) so simplify the locking to acquire the semakptr mutex before the MAC check and hold it all the way until the end of the big switch statement. The GETALL/SETALL cases have to temporarily drop it while they do copyin/malloc and copyout. Also, simplify the SETALL case to remove handling for a non-existent race condition. Revision Changes Path 1.48 +12 -11 src/sys/compat/linux/linux_ipc.c 1.23 +12 -8 src/sys/compat/svr4/svr4_ipc.c 1.82 +87 -84 src/sys/kern/sysv_sem.c 1.40 +1 -1 src/sys/sys/syscallsubr.h From owner-cvs-src@FreeBSD.ORG Sat Jul 8 19:52:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E2DA16A4DF; Sat, 8 Jul 2006 19:52:49 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58A4543D46; Sat, 8 Jul 2006 19:52:49 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68JqnDV085903; Sat, 8 Jul 2006 19:52:49 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68JqnMW085899; Sat, 8 Jul 2006 19:52:49 GMT (envelope-from jhb) Message-Id: <200607081952.k68JqnMW085899@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 19:52:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_ipc.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 19:52:49 -0000 jhb 2006-07-08 19:52:49 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_ipc.h Log: Use ibsc2_key_t rather than key_t. Revision Changes Path 1.9 +1 -1 src/sys/i386/ibcs2/ibcs2_ipc.h From owner-cvs-src@FreeBSD.ORG Sat Jul 8 19:54:12 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7DF316A4E1; Sat, 8 Jul 2006 19:54:12 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B5843D46; Sat, 8 Jul 2006 19:54:12 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68JsCXw086612; Sat, 8 Jul 2006 19:54:12 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68JsCWN086611; Sat, 8 Jul 2006 19:54:12 GMT (envelope-from jhb) Message-Id: <200607081954.k68JsCWN086611@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 19:54:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_ipc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 19:54:12 -0000 jhb 2006-07-08 19:54:12 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_ipc.c Log: - Split the IBCS2 ipc foosys() system calls up into subfunctions matching the organization in svr4_ipc.c. - Use kern_msgctl(), kern_semctl(), and kern_shmctl() instead of the stackgap. Revision Changes Path 1.24 +298 -152 src/sys/i386/ibcs2/ibcs2_ipc.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 20:03:40 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10C6916A4DA; Sat, 8 Jul 2006 20:03:40 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB02043D45; Sat, 8 Jul 2006 20:03:39 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68K3de3090508; Sat, 8 Jul 2006 20:03:39 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68K3dRb090507; Sat, 8 Jul 2006 20:03:39 GMT (envelope-from jhb) Message-Id: <200607082003.k68K3dRb090507@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 20:03:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/linux linux_socket.c src/sys/fs/portalfs portal_vnops.c src/sys/kern kern_descrip.c src/sys/sys syscallsubr.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 20:03:40 -0000 jhb 2006-07-08 20:03:39 UTC FreeBSD src repository Modified files: sys/compat/linux linux_socket.c sys/fs/portalfs portal_vnops.c sys/kern kern_descrip.c sys/sys syscallsubr.h Log: Add a kern_close() so that the ABIs can close a file descriptor w/o having to populate a close_args struct and change some of the places that do. Revision Changes Path 1.69 +1 -5 src/sys/compat/linux/linux_socket.c 1.71 +2 -4 src/sys/fs/portalfs/portal_vnops.c 1.296 +10 -2 src/sys/kern/kern_descrip.c 1.41 +1 -0 src/sys/sys/syscallsubr.h From owner-cvs-src@FreeBSD.ORG Sat Jul 8 20:05:05 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A627116A4DD; Sat, 8 Jul 2006 20:05:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557D943D45; Sat, 8 Jul 2006 20:05:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68K55Ke090671; Sat, 8 Jul 2006 20:05:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68K553i090670; Sat, 8 Jul 2006 20:05:05 GMT (envelope-from jhb) Message-Id: <200607082005.k68K553i090670@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 20:05:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_other.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 20:05:05 -0000 jhb 2006-07-08 20:05:05 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_other.c Log: Use kern_connect() in spx_open() to avoid the need for the stackgap. I also used kern_close() for simplicity though close(2) wasn't requiring the use of the stackgap. Revision Changes Path 1.18 +11 -16 src/sys/i386/ibcs2/ibcs2_other.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 20:12:15 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C14616A4DA; Sat, 8 Jul 2006 20:12:15 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA7F743D46; Sat, 8 Jul 2006 20:12:14 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68KCESg091183; Sat, 8 Jul 2006 20:12:14 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68KCE0U091182; Sat, 8 Jul 2006 20:12:14 GMT (envelope-from jhb) Message-Id: <200607082012.k68KCE0U091182@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 20:12:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_xenix.c syscalls.xenix src/sys/kern sys_generic.c src/sys/sys syscallsubr.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 20:12:15 -0000 jhb 2006-07-08 20:12:14 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_xenix.c syscalls.xenix sys/kern sys_generic.c sys/sys syscallsubr.h Log: - Split ioctl() up into ioctl() and kern_ioctl(). The kern_ioctl() assumes that the 'data' pointer is already setup to point to a valid KVM buffer or contains the copied-in data from userland as appropriate (ioctl(2) still does this). kern_ioctl() takes care of looking up a file pointer, implementing FIONCLEX and FIOCLEX, and calling fi_ioctl(). - Use kern_ioctl() to implement xenix_rdchk() instead of using the stackgap and mark xenix_rdchk() MPSAFE. Revision Changes Path 1.37 +7 -10 src/sys/i386/ibcs2/ibcs2_xenix.c 1.13 +1 -1 src/sys/i386/ibcs2/syscalls.xenix 1.149 +44 -37 src/sys/kern/sys_generic.c 1.42 +1 -0 src/sys/sys/syscallsubr.h From owner-cvs-src@FreeBSD.ORG Sat Jul 8 20:14:35 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0768816A4DA; Sat, 8 Jul 2006 20:14:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3AB143D45; Sat, 8 Jul 2006 20:14:34 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k68KEY05091268; Sat, 8 Jul 2006 20:14:34 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k68KEY4Z091267; Sat, 8 Jul 2006 20:14:34 GMT (envelope-from jhb) Message-Id: <200607082014.k68KEY4Z091267@repoman.freebsd.org> From: John Baldwin Date: Sat, 8 Jul 2006 20:14:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_xenix.h ibcs2_xenix_syscall.h ibcs2_xenix_sysent.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 20:14:35 -0000 jhb 2006-07-08 20:14:34 UTC FreeBSD src repository Modified files: sys/i386/ibcs2 ibcs2_xenix.h ibcs2_xenix_syscall.h ibcs2_xenix_sysent.c Log: Regen. Revision Changes Path 1.19 +1 -1 src/sys/i386/ibcs2/ibcs2_xenix.h 1.15 +1 -1 src/sys/i386/ibcs2/ibcs2_xenix_syscall.h 1.17 +2 -2 src/sys/i386/ibcs2/ibcs2_xenix_sysent.c From owner-cvs-src@FreeBSD.ORG Sat Jul 8 20:30:07 2006 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E15DD16A4E1; Sat, 8 Jul 2006 20:30:06 +0000 (UTC) (envelope-from john@baldwin.cx) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2EED43D46; Sat, 8 Jul 2006 20:30:05 +0000 (GMT) (envelope-from john@baldwin.cx) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.4/8.13.4) with ESMTP id k68KU4pI035323; Sat, 8 Jul 2006 16:30:04 -0400 (EDT) (envelope-from john@baldwin.cx) From: John Baldwin To: Warner Losh Date: Sat, 8 Jul 2006 16:17:20 -0400 User-Agent: KMail/1.9.1 References: <200607081706.k68H6FBX082800@repoman.freebsd.org> In-Reply-To: <200607081706.k68H6FBX082800@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607081617.21551.john@baldwin.cx> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Sat, 08 Jul 2006 16:30:04 -0400 (EDT) X-Virus-Scanned: ClamAV 0.87.1/1589/Fri Jul 7 10:37:51 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern bus_if.m subr_bus.c src/sys/sys bus.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Jul 2006 20:30:07 -0000 On Saturday 08 July 2006 13:06, Warner Losh wrote: > imp 2006-07-08 17:06:15 UTC > > FreeBSD src repository > > Modified files: > sys/kern subr_bus.c bus_if.m > sys/sys bus.h > Log: > Create bus_enumerate_hinted_children. This routine will allow drivers > to use the hinted child system. Bus drivers that use this need to > implmenet the bus_hinted_child method, where they actually add the > child to their bus, as they see fit. The bus is repsonsible for > getting the attribtues for the child, adding it in the right order, > etc. ISA hinting will be updated to use this method. > > MFC After: 3 days Hmm, did you see my e-mail about trying to get hinting to DTRT with respect to wiring unit numbers for things like sio0 with ACPI and ISA on acpi@ yesterday? It might well be orthogonal to this, but I'm curious if you could look my suggestion over and see how well it jives with what you are doing here. -- John Baldwin