From owner-cvs-src@FreeBSD.ORG Sun Oct 23 00:16:42 2005 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 760E016A420; Sun, 23 Oct 2005 00:16:42 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0405E43D48; Sun, 23 Oct 2005 00:16:42 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0GfVq046659; Sun, 23 Oct 2005 00:16:41 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0GfWa046658; Sun, 23 Oct 2005 00:16:41 GMT (envelope-from njl) Message-Id: <200510230016.j9N0GfWa046658@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:16: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/sys/dev/acpica acpi_battery.c acpiio.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, 23 Oct 2005 00:16:42 -0000 njl 2005-10-23 00:16:41 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c acpiio.h Log: Cleanups and support code for importing smart battery support. * Use ACPI_BATT_UNKNOWN instead of constants * Use maxunit instead of a count of devices since we may have sparse battery devices in the future. Only userland should be using unit numbers anyway, so provide a translation function. (Kernel use of batteries should be restricted to looking up a device_t and calling methods directly. * Don't check acpi_BatteryIsPresent() in acpi_battery. Leave it up to the hardware-specific driver (i.e. cmbat) since smart batteries seem to not report the "battery present" flag. * Convert mA to mW if the battery uses those units. CM-batteries only used mW so this deficiency went unnoticed. * Clean strings reported in the battery info from any control chars. * Only dereference the unit from ioctl_arg if the full struct is present. Unit wouldn't have been used later if it wasn't present but this is cleaner. Translate the unit if it's not ACPI_BATTERY_ALL_UNITS. * bzero structs before returning them to usermode for future compat. Most of this work was submitted by Hans Petter Selasky and then majorly reworked by myself. Submitted by: Hans Petter Selasky Revision Changes Path 1.20 +120 -29 src/sys/dev/acpica/acpi_battery.c 1.16 +4 -1 src/sys/dev/acpica/acpiio.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 00:20:14 2005 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 3709A16A41F; Sun, 23 Oct 2005 00:20:14 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F266143D4C; Sun, 23 Oct 2005 00:20:13 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0KDVS046757; Sun, 23 Oct 2005 00:20:13 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0KD4g046756; Sun, 23 Oct 2005 00:20:13 GMT (envelope-from njl) Message-Id: <200510230020.j9N0KD4g046756@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:20: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/dev/acpica acpi_smbat.c acpi_smbus.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, 23 Oct 2005 00:20:14 -0000 njl 2005-10-23 00:20:13 UTC FreeBSD src repository Added files: sys/dev/acpica acpi_smbat.c acpi_smbus.h Log: Import ACPI smart battery support. Newer systems (Acer, mostly) do not support the CM-battery interface. Smart batteries can eventually be supported without ACPI via a separate SMBus interface. The ACPI interface uses the embedded controller for reading/writing to the SMBus, and normal ASL definitions for locating the battery controller (since SMBus can't be enumerated.) Also import definitions for the smart battery interface. This was written by Hans Petter Selasky with minor cleanups from myself. Submitted by: Hans Petter Selasky Revision Changes Path 1.1 +402 -0 src/sys/dev/acpica/acpi_smbat.c (new) 1.1 +285 -0 src/sys/dev/acpica/acpi_smbus.h (new) From owner-cvs-src@FreeBSD.ORG Sun Oct 23 00:22:03 2005 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 9F26716A41F; Sun, 23 Oct 2005 00:22:03 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9EC43D45; Sun, 23 Oct 2005 00:22:03 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0M3m0046987; Sun, 23 Oct 2005 00:22:03 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0M3vc046986; Sun, 23 Oct 2005 00:22:03 GMT (envelope-from njl) Message-Id: <200510230022.j9N0M3vc046986@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:22: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/modules/acpi/acpi Makefile 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: Sun, 23 Oct 2005 00:22:03 -0000 njl 2005-10-23 00:22:03 UTC FreeBSD src repository Modified files: sys/modules/acpi/acpi Makefile sys/conf files Log: Hook acpi_smbat up to the build. Revision Changes Path 1.1060 +1 -0 src/sys/conf/files 1.13 +1 -1 src/sys/modules/acpi/acpi/Makefile From owner-cvs-src@FreeBSD.ORG Sun Oct 23 00:28:39 2005 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 8D62516A41F; Sun, 23 Oct 2005 00:28:39 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C55043D45; Sun, 23 Oct 2005 00:28:39 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0SdOI047312; Sun, 23 Oct 2005 00:28:39 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0SdID047311; Sun, 23 Oct 2005 00:28:39 GMT (envelope-from njl) Message-Id: <200510230028.j9N0SdID047311@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:28: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/dev/acpica acpi.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, 23 Oct 2005 00:28:39 -0000 njl 2005-10-23 00:28:39 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Add a hack to get around PCI link devices that report "present" but not "functional" (i.e., if they are disabled). We should probe them anyway since we may enable them later. Tested by: thompsa MFC after: 3 days Revision Changes Path 1.216 +6 -1 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 00:55:57 2005 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 B5EE116A41F; Sun, 23 Oct 2005 00:55:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 563A443D45; Sun, 23 Oct 2005 00:55:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N0tvIr055587; Sun, 23 Oct 2005 00:55:57 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N0tvkL055586; Sun, 23 Oct 2005 00:55:57 GMT (envelope-from njl) Message-Id: <200510230055.j9N0tvkL055586@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 00:55: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/usr.sbin/powerd powerd.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, 23 Oct 2005 00:55:58 -0000 njl 2005-10-23 00:55:57 UTC FreeBSD src repository Modified files: usr.sbin/powerd powerd.c Log: Whitespace fix. Revision Changes Path 1.15 +1 -1 src/usr.sbin/powerd/powerd.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 01:37:25 2005 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 8BA1516A41F; Sun, 23 Oct 2005 01:37:25 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46D3843D46; Sun, 23 Oct 2005 01:37:25 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1bP8i057160; Sun, 23 Oct 2005 01:37:25 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1bPYM057159; Sun, 23 Oct 2005 01:37:25 GMT (envelope-from tjr) Message-Id: <200510230137.j9N1bPYM057159@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 23 Oct 2005 01:37: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/usr.bin/ncal ncal.1 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, 23 Oct 2005 01:37:25 -0000 tjr 2005-10-23 01:37:25 UTC FreeBSD src repository Modified files: usr.bin/ncal ncal.1 Log: Document incorrect handling of multibyte characters. PR: 87724 Revision Changes Path 1.19 +5 -1 src/usr.bin/ncal/ncal.1 From owner-cvs-src@FreeBSD.ORG Sun Oct 23 01:44:09 2005 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 2037F16A41F; Sun, 23 Oct 2005 01:44:09 +0000 (GMT) (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 D10A243D45; Sun, 23 Oct 2005 01:44:08 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N1i8NF057614; Sun, 23 Oct 2005 01:44:08 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N1i86a057613; Sun, 23 Oct 2005 01:44:08 GMT (envelope-from csjp) Message-Id: <200510230144.j9N1i86a057613@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sun, 23 Oct 2005 01:44: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/net if_mib.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, 23 Oct 2005 01:44:09 -0000 csjp 2005-10-23 01:44:08 UTC FreeBSD src repository Modified files: sys/net if_mib.c Log: Before we export network interface data through the ifmibdata structure, OR the flags bits with the driver managed status flags. This fixes an issue where RUNNING flags would not be reported to processes, which conflicts with the flags information provided by ifconfig(8). Revision Changes Path 1.16 +1 -1 src/sys/net/if_mib.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 02:36:59 2005 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 03B5916A41F; Sun, 23 Oct 2005 02:36:59 +0000 (GMT) (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 C522F43D48; Sun, 23 Oct 2005 02:36:58 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2awnC060571; Sun, 23 Oct 2005 02:36:58 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2awwb060570; Sun, 23 Oct 2005 02:36:58 GMT (envelope-from thompsa) Message-Id: <200510230236.j9N2awwb060570@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 23 Oct 2005 02:36: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/sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c src/sys/netgraph ng_ether.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, 23 Oct 2005 02:36:59 -0000 thompsa 2005-10-23 02:36:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c sys/netgraph ng_ether.c Log: MFC ng_ether support for if_bridge and cleanup of bridge hooks. bridgestp.c; r1.8 if_bridge.c; r1.25, 1.27 if_bridgevar.h; r1.5 if_ethersubr.c; r1.201, 1.202, 1.206 ng_ether.c; r1.52 - 1.54 Approved by: re (scottl) Revision Changes Path 1.3.2.4 +0 -1 src/sys/net/bridgestp.c 1.11.2.14 +16 -9 src/sys/net/if_bridge.c 1.4.2.1 +22 -8 src/sys/net/if_bridgevar.h 1.193.2.6 +4 -26 src/sys/net/if_ethersubr.c 1.49.2.2 +11 -2 src/sys/netgraph/ng_ether.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 02:37:29 2005 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 705A516A41F; Sun, 23 Oct 2005 02:37:29 +0000 (GMT) (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 11DEE43D48; Sun, 23 Oct 2005 02:37:29 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N2bSF7060668; Sun, 23 Oct 2005 02:37:28 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N2bSJb060667; Sun, 23 Oct 2005 02:37:28 GMT (envelope-from thompsa) Message-Id: <200510230237.j9N2bSJb060667@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 23 Oct 2005 02:37:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c src/sys/netgraph ng_ether.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, 23 Oct 2005 02:37:29 -0000 thompsa 2005-10-23 02:37:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net bridgestp.c if_bridge.c if_bridgevar.h if_ethersubr.c sys/netgraph ng_ether.c Log: MFC ng_ether support for if_bridge and cleanup of bridge hooks. bridgestp.c; r1.8 if_bridge.c; r1.25, 1.27 if_bridgevar.h; r1.5 if_ethersubr.c; r1.201, 1.202, 1.206 ng_ether.c; r1.52 - 1.54 Approved by: re (scottl) Revision Changes Path 1.3.2.3.2.1 +0 -1 src/sys/net/bridgestp.c 1.11.2.12.2.2 +16 -9 src/sys/net/if_bridge.c 1.4.6.1 +22 -8 src/sys/net/if_bridgevar.h 1.193.2.4.2.2 +4 -26 src/sys/net/if_ethersubr.c 1.49.2.1.2.1 +11 -2 src/sys/netgraph/ng_ether.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 03:34:43 2005 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 D756916A41F; Sun, 23 Oct 2005 03:34:43 +0000 (GMT) (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 94E7243D45; Sun, 23 Oct 2005 03:34:43 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3YhDG063399; Sun, 23 Oct 2005 03:34:43 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3Yhhi063398; Sun, 23 Oct 2005 03:34:43 GMT (envelope-from delphij) Message-Id: <200510230334.j9N3Yhhi063398@repoman.freebsd.org> From: Xin LI Date: Sun, 23 Oct 2005 03:34: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 UPDATING 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, 23 Oct 2005 03:34:44 -0000 delphij 2005-10-23 03:34:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: Remove a note that claims that the debugging options are turned on by default, to match the reality that these has been turned off on the 6-STABLE branch since 6.0-BETA6. This is a direct commit against RELENG_6 since it is not applicable for HEAD. Approved by: re (scottl) Revision Changes Path 1.416.2.4 +0 -13 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sun Oct 23 03:36:03 2005 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 CB22916A41F; Sun, 23 Oct 2005 03:36:03 +0000 (GMT) (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 8A3EA43D45; Sun, 23 Oct 2005 03:36:03 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3a3Al063528; Sun, 23 Oct 2005 03:36:03 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3a3Dk063527; Sun, 23 Oct 2005 03:36:03 GMT (envelope-from delphij) Message-Id: <200510230336.j9N3a3Dk063527@repoman.freebsd.org> From: Xin LI Date: Sun, 23 Oct 2005 03:36:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING 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, 23 Oct 2005 03:36:03 -0000 delphij 2005-10-23 03:36:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING Log: MFR6: Remove the "6.x is slow" note to reflect reality. Approved by: re (scottl) Revision Changes Path 1.416.2.3.2.2 +0 -13 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sun Oct 23 03:59:52 2005 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 DDE4A16A420; Sun, 23 Oct 2005 03:59:52 +0000 (GMT) (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 9A16B43D46; Sun, 23 Oct 2005 03:59:52 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N3xq2l064334; Sun, 23 Oct 2005 03:59:52 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N3xqZP064333; Sun, 23 Oct 2005 03:59:52 GMT (envelope-from davidxu) Message-Id: <200510230359.j9N3xqZP064333@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 03:59: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/sys signal.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, 23 Oct 2005 03:59:53 -0000 davidxu 2005-10-23 03:59:52 UTC FreeBSD src repository Modified files: sys/sys signal.h Log: Add member fields for POSIX timer. Revision Changes Path 1.48 +6 -0 src/sys/sys/signal.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 04:12:26 2005 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 D4CD016A420; Sun, 23 Oct 2005 04:12:26 +0000 (GMT) (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 8FB6743D45; Sun, 23 Oct 2005 04:12:26 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N4CQnq064891; Sun, 23 Oct 2005 04:12:26 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N4CQMI064890; Sun, 23 Oct 2005 04:12:26 GMT (envelope-from davidxu) Message-Id: <200510230412.j9N4CQMI064890@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 04: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/sys/sys signalvar.h src/sys/kern kern_sig.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, 23 Oct 2005 04:12:27 -0000 davidxu 2005-10-23 04:12:26 UTC FreeBSD src repository Modified files: sys/sys signalvar.h sys/kern kern_sig.c Log: 1. Make ksiginfo_alloc and ksiginfo_free public. 2. Introduce flags KSI_EXT and KSI_INS. The flag KSI_EXT allows a ksiginfo to be managed by outside code, the KSI_INS indicates sigqueue_add should directly insert passed ksiginfo into queue other than copy it. Revision Changes Path 1.308 +58 -12 src/sys/kern/kern_sig.c 1.71 +12 -1 src/sys/sys/signalvar.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 04:22:57 2005 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 8DC4816A420; Sun, 23 Oct 2005 04:22:56 +0000 (GMT) (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 5663443D45; Sun, 23 Oct 2005 04:22:56 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N4MuhT065397; Sun, 23 Oct 2005 04:22:56 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N4Mu43065396; Sun, 23 Oct 2005 04:22:56 GMT (envelope-from davidxu) Message-Id: <200510230422.j9N4Mu43065396@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 04:22: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/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c syscalls.master src/sys/sys proc.h timers.h timespec.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, 23 Oct 2005 04:22:58 -0000 davidxu 2005-10-23 04:22:56 UTC FreeBSD src repository Modified files: sys/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c syscalls.master sys/sys proc.h timers.h timespec.h Log: Implement POSIX timers. Current only CLOCK_REALTIME and CLOCK_MONOTONIC clock are supported. I have plan to merge XSI timer ITIMER_REAL and other two CPU timers into the new code, current three slots are available for the XSI timers. The SIGEV_THREAD notification type is not supported yet because our sigevent struct lacks of two member fields: sigev_notify_function sigev_notify_attributes I have found the sigevent is used in AIO, so I won't add the two members unless the AIO code is adjusted. Revision Changes Path 1.281 +3 -0 src/sys/kern/kern_exec.c 1.267 +4 -2 src/sys/kern/kern_exit.c 1.219 +1 -0 src/sys/kern/kern_thread.c 1.118 +664 -2 src/sys/kern/kern_time.c 1.202 +9 -5 src/sys/kern/syscalls.master 1.438 +2 -0 src/sys/sys/proc.h 1.6 +75 -2 src/sys/sys/timers.h 1.5 +9 -0 src/sys/sys/timespec.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 04:26:14 2005 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 22A3B16A420; Sun, 23 Oct 2005 04:26:14 +0000 (GMT) (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 3573F43D6A; Sun, 23 Oct 2005 04:26:10 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N4QAbG065609; Sun, 23 Oct 2005 04:26:10 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N4QADx065608; Sun, 23 Oct 2005 04:26:10 GMT (envelope-from davidxu) Message-Id: <200510230426.j9N4QADx065608@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 04:26: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/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: Sun, 23 Oct 2005 04:26:14 -0000 davidxu 2005-10-23 04:26:10 UTC FreeBSD src repository Modified files: sys/sys sysproto.h syscall.mk syscall.h sys/kern init_sysent.c syscalls.c Log: Regen for POSIX timer syscalls. Revision Changes Path 1.200 +6 -6 src/sys/kern/init_sysent.c 1.184 +6 -6 src/sys/kern/syscalls.c 1.181 +6 -1 src/sys/sys/syscall.h 1.136 +6 -1 src/sys/sys/syscall.mk 1.181 +27 -1 src/sys/sys/sysproto.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 05:36:41 2005 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 9D91716A41F; Sun, 23 Oct 2005 05:36:41 +0000 (GMT) (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 5B26E43D45; Sun, 23 Oct 2005 05:36:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N5afkE075359; Sun, 23 Oct 2005 05:36:41 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N5afEA075358; Sun, 23 Oct 2005 05:36:41 GMT (envelope-from davidxu) Message-Id: <200510230536.j9N5afEA075358@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 05:36: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/sys/sys unistd.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, 23 Oct 2005 05:36:41 -0000 davidxu 2005-10-23 05:36:41 UTC FreeBSD src repository Modified files: sys/sys unistd.h Log: Change _POSIX_REALTIME_SIGNALS to 200112L to indicates we support realtime signals. Define missing _POSIX_TIMERS, it will be changed to 200112L once struct sigevent is fixed. Revision Changes Path 1.42 +2 -1 src/sys/sys/unistd.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 07:11:51 2005 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 CAC0A16A41F; Sun, 23 Oct 2005 07:11:51 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFDA243D60; Sun, 23 Oct 2005 07:11:45 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j9N7Bffv039612 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 23 Oct 2005 11:11:42 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j9N7BfA6039611; Sun, 23 Oct 2005 11:11:41 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Sun, 23 Oct 2005 11:11:41 +0400 From: Gleb Smirnoff To: "Christian S.J. Peron" Message-ID: <20051023071141.GS59364@cell.sick.ru> References: <200510230144.j9N1i86a057613@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510230144.j9N1i86a057613@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_mib.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, 23 Oct 2005 07:11:51 -0000 On Sun, Oct 23, 2005 at 01:44:08AM +0000, Christian S.J. Peron wrote: C> csjp 2005-10-23 01:44:08 UTC C> C> FreeBSD src repository C> C> Modified files: C> sys/net if_mib.c C> Log: C> Before we export network interface data through the ifmibdata structure, C> OR the flags bits with the driver managed status flags. This fixes an C> issue where RUNNING flags would not be reported to processes, which C> conflicts with the flags information provided by ifconfig(8). C> C> Revision Changes Path C> 1.16 +1 -1 src/sys/net/if_mib.c Does this fix that bsnmpd reports all interfaces as "operatinally down" after the if_drv_flags was introduced? -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Sun Oct 23 07:41:57 2005 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 60B3F16A41F; Sun, 23 Oct 2005 07:41:57 +0000 (GMT) (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 1ED6143D45; Sun, 23 Oct 2005 07:41:57 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N7fujU079577; Sun, 23 Oct 2005 07:41:57 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N7fuSo079576; Sun, 23 Oct 2005 07:41:56 GMT (envelope-from alc) Message-Id: <200510230741.j9N7fuSo079576@repoman.freebsd.org> From: Alan Cox Date: Sun, 23 Oct 2005 07:41: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/kern uipc_cow.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, 23 Oct 2005 07:41:57 -0000 alc 2005-10-23 07:41:56 UTC FreeBSD src repository Modified files: sys/kern uipc_cow.c Log: Previously, nothing prevented the page that was returned by pmap_extract() from being reclaimed before it was wired. Use pmap_extract_and_hold() instead of pmap_extract() and retain the hold on the page until it has been wired. Revision Changes Path 1.26 +3 -4 src/sys/kern/uipc_cow.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 09:05:53 2005 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 4091D16A41F; Sun, 23 Oct 2005 09:05:53 +0000 (GMT) (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 F147943D45; Sun, 23 Oct 2005 09:05:52 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9N95q92089657; Sun, 23 Oct 2005 09:05:52 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9N95q4K089656; Sun, 23 Oct 2005 09:05:52 GMT (envelope-from glebius) Message-Id: <200510230905.j9N95q4K089656@repoman.freebsd.org> From: Gleb Smirnoff Date: Sun, 23 Oct 2005 09:05: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/dev/ic i8259.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, 23 Oct 2005 09:05:53 -0000 glebius 2005-10-23 09:05:52 UTC FreeBSD src repository Modified files: sys/dev/ic i8259.h Log: Typo. PR: misc/87679 Submitted by: Alan Amesbury Revision Changes Path 1.2 +1 -1 src/sys/dev/ic/i8259.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 10:11:47 2005 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 7EDA016A41F; Sun, 23 Oct 2005 10:11:47 +0000 (GMT) (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 3BC4843D45; Sun, 23 Oct 2005 10:11:47 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NABlDk092031; Sun, 23 Oct 2005 10:11:47 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NABlBw092030; Sun, 23 Oct 2005 10:11:47 GMT (envelope-from davidxu) Message-Id: <200510231011.j9NABlBw092030@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 10:11: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/sys timers.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, 23 Oct 2005 10:11:47 -0000 davidxu 2005-10-23 10:11:46 UTC FreeBSD src repository Modified files: sys/sys timers.h Log: Make kernel structures invisible to userland. Revision Changes Path 1.7 +4 -1 src/sys/sys/timers.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 10:43:16 2005 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 4C75D16A41F; Sun, 23 Oct 2005 10:43:16 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09D6C43D45; Sun, 23 Oct 2005 10:43:16 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NAhFGc093094; Sun, 23 Oct 2005 10:43:15 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NAhFLF093093; Sun, 23 Oct 2005 10:43:15 GMT (envelope-from ps) Message-Id: <200510231043.j9NAhFLF093093@repoman.freebsd.org> From: Paul Saab Date: Sun, 23 Oct 2005 10:43: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/compat/freebsd32 freebsd32_misc.c 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: Sun, 23 Oct 2005 10:43:16 -0000 ps 2005-10-23 10:43:15 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_misc.c syscalls.master Log: Implement for FreeBSD 3 32 binaries: sigaction, sigprocmask, sigpending, sigvec, sigblock, sigsetmask, sigsuspend, sigstack Revision Changes Path 1.44 +201 -0 src/sys/compat/freebsd32/freebsd32_misc.c 1.56 +18 -8 src/sys/compat/freebsd32/syscalls.master From owner-cvs-src@FreeBSD.ORG Sun Oct 23 10:43:40 2005 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 D448516A41F; Sun, 23 Oct 2005 10:43:39 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 818E143D45; Sun, 23 Oct 2005 10:43:39 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NAhds9093183; Sun, 23 Oct 2005 10:43:39 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NAhdp8093182; Sun, 23 Oct 2005 10:43:39 GMT (envelope-from ps) Message-Id: <200510231043.j9NAhdp8093182@repoman.freebsd.org> From: Paul Saab Date: Sun, 23 Oct 2005 10:43: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/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_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: Sun, 23 Oct 2005 10:43:40 -0000 ps 2005-10-23 10:43:39 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: regen Revision Changes Path 1.44 +39 -1 src/sys/compat/freebsd32/freebsd32_proto.h 1.44 +9 -7 src/sys/compat/freebsd32/freebsd32_syscall.h 1.35 +9 -9 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.45 +9 -9 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 11:19:57 2005 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 6080516A41F; Sun, 23 Oct 2005 11:19:57 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F9F943D48; Sun, 23 Oct 2005 11:19:57 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NBJu8A094529; Sun, 23 Oct 2005 11:19:56 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NBJuLF094528; Sun, 23 Oct 2005 11:19:56 GMT (envelope-from stefanf) Message-Id: <200510231119.j9NBJuLF094528@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 23 Oct 2005 11:19: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/gnu/usr.bin/grep grep.1 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, 23 Oct 2005 11:19:57 -0000 stefanf 2005-10-23 11:19:56 UTC FreeBSD src repository Modified files: gnu/usr.bin/grep grep.1 Log: Document [:blank:]. Revision Changes Path 1.27 +1 -0 src/gnu/usr.bin/grep/grep.1 From owner-cvs-src@FreeBSD.ORG Sun Oct 23 11:36:48 2005 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 C605E16A420; Sun, 23 Oct 2005 11:36:48 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd4mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35C0543D5C; Sun, 23 Oct 2005 11:36:47 +0000 (GMT) (envelope-from cperciva@freebsd.org) Received: from pd2mr4so.prod.shaw.ca (pd2mr4so-qfe3.prod.shaw.ca [10.0.141.107]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IOT00KTR9LAPT40@l-daemon>; Sun, 23 Oct 2005 05:36:46 -0600 (MDT) Received: from pn2ml5so.prod.shaw.ca ([10.0.121.149]) by pd2mr4so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0IOT00DBY9LAQL70@pd2mr4so.prod.shaw.ca>; Sun, 23 Oct 2005 05:36:46 -0600 (MDT) Received: from [192.168.0.60] (S0106006067227a4a.vc.shawcable.net [24.87.209.6]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0IOT003369L9EO@l-daemon>; Sun, 23 Oct 2005 05:36:46 -0600 (MDT) Date: Sun, 23 Oct 2005 04:36:45 -0700 From: Colin Percival In-reply-to: <200510231119.j9NBJuLF094528@repoman.freebsd.org> To: Stefan Farfeleder Message-id: <435B75CD.7040903@freebsd.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: 7bit X-Accept-Language: en-us, en X-Enigmail-Version: 0.92.1.0 References: <200510231119.j9NBJuLF094528@repoman.freebsd.org> User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051001) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.1 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, 23 Oct 2005 11:36:49 -0000 Stefan Farfeleder wrote: > Modified files: > gnu/usr.bin/grep grep.1 > Log: > Document [:blank:]. The text now claims that [:alnum:], [:alpha:], [:blank:] ... [:space:] ... are self-explanatory names. While I've managed to work out the difference between :blank: and :space: by looking at the source code (:blank: matches [ \t], while :space: matches [ \f\n\r\t\v] and possibly other characters depending upon the locale), I have trouble accepting that this difference is obvious from the names. Could you add some text explaining this difference? Colin Percival From owner-cvs-src@FreeBSD.ORG Sun Oct 23 12:02:28 2005 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 6776516A41F; Sun, 23 Oct 2005 12:02:28 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from viefep17-int.chello.at (viefep17-int.chello.at [213.46.255.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FA6243D45; Sun, 23 Oct 2005 12:02:26 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep17-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20051023120224.KDY9681.viefep17-int.chello.at@wombat.fafoe.narf.at>; Sun, 23 Oct 2005 14:02:24 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 0F0302B2; Sun, 23 Oct 2005 14:02:22 +0200 (CEST) Date: Sun, 23 Oct 2005 14:02:22 +0200 From: Stefan Farfeleder To: Colin Percival Message-ID: <20051023120218.GB576@wombat.fafoe.narf.at> References: <200510231119.j9NBJuLF094528@repoman.freebsd.org> <435B75CD.7040903@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: <435B75CD.7040903@freebsd.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@FreeBSD.org, Stefan Farfeleder , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.1 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, 23 Oct 2005 12:02:28 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Oct 23, 2005 at 04:36:45AM -0700, Colin Percival wrote: > Stefan Farfeleder wrote: > > Modified files: > > gnu/usr.bin/grep grep.1 > > Log: > > Document [:blank:]. > > The text now claims that [:alnum:], [:alpha:], [:blank:] ... [:space:] ... > are self-explanatory names. While I've managed to work out the difference > between :blank: and :space: by looking at the source code (:blank: matches > [ \t], while :space: matches [ \f\n\r\t\v] and possibly other characters > depending upon the locale), I have trouble accepting that this difference > is obvious from the names. > > Could you add some text explaining this difference? Well, I think many of those aren't really self-explanatory (eg. [:cntrl:], [:graph:], [:print:]) if you don't know the C library. Here's a patch that refers to ctype(3), though I'm not sure how to do that correctly because grep(1) isn't in mdoc format. Stefan --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="grep.1.diff" Index: grep.1 =================================================================== RCS file: /home/ncvs/src/gnu/usr.bin/grep/grep.1,v retrieving revision 1.27 diff -I.svn -u -r1.27 grep.1 --- grep.1 23 Oct 2005 11:19:56 -0000 1.27 +++ grep.1 23 Oct 2005 11:56:11 -0000 @@ -507,7 +507,7 @@ .PP Finally, certain named classes of characters are predefined within bracket expressions, as follows. -Their names are self explanatory, and they are +They are .BR [:alnum:] , .BR [:alpha:] , .BR [:blank:] , @@ -521,13 +521,10 @@ .BR [:upper:] , and .BR [:xdigit:]. -For example, -.B [[:alnum:]] -means -.BR [0\-9A\-Za\-z] , -except the latter form depends upon the C locale and the -\s-1ASCII\s0 character encoding, whereas the former is independent -of locale and character set. +Such a character class matches a character for which the corresponding +ctype(3) function (prefixed with +.BR is ) +returns a non-zero value. (Note that the brackets in these class names are part of the symbolic names, and must be included in addition to the brackets delimiting the bracket list.) Most metacharacters lose their special meaning --3V7upXqbjpZ4EhLz-- From owner-cvs-src@FreeBSD.ORG Sun Oct 23 12:19:09 2005 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 62ABA16A41F; Sun, 23 Oct 2005 12:19:09 +0000 (GMT) (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 1B0AF43D45; Sun, 23 Oct 2005 12:19:09 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NCJ8hP096772; Sun, 23 Oct 2005 12:19:08 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NCJ8tT096771; Sun, 23 Oct 2005 12:19:08 GMT (envelope-from davidxu) Message-Id: <200510231219.j9NCJ8tT096771@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 12:19: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/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c src/sys/sys proc.h timers.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, 23 Oct 2005 12:19:09 -0000 davidxu 2005-10-23 12:19:08 UTC FreeBSD src repository Modified files: sys/kern kern_exec.c kern_exit.c kern_thread.c kern_time.c sys/sys proc.h timers.h Log: Make p_itimers as a pointer, so file sys/proc.h does not need to include sys/timers.h. Revision Changes Path 1.282 +1 -0 src/sys/kern/kern_exec.c 1.268 +1 -0 src/sys/kern/kern_exit.c 1.220 +0 -1 src/sys/kern/kern_thread.c 1.119 +25 -28 src/sys/kern/kern_time.c 1.439 +1 -2 src/sys/sys/proc.h 1.8 +2 -2 src/sys/sys/timers.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 14:06:54 2005 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 1961916A41F; Sun, 23 Oct 2005 14:06:54 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA32243D45; Sun, 23 Oct 2005 14:06:53 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NE6rJR008374; Sun, 23 Oct 2005 14:06:53 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NE6r8L008373; Sun, 23 Oct 2005 14:06:53 GMT (envelope-from yar) Message-Id: <200510231406.j9NE6r8L008373@repoman.freebsd.org> From: Yar Tikhiy Date: Sun, 23 Oct 2005 14:06: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/etc/rc.d ike named ppp-user sshd 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, 23 Oct 2005 14:06:54 -0000 yar 2005-10-23 14:06:53 UTC FreeBSD src repository Modified files: etc/rc.d ike named ppp-user sshd Log: Don't be lazy, set the "command" variable even if /etc/defaults/rc.conf will provide foo_program, too. By specifying "command" we explicitly say that we're going to rely on rc.subr(8) default methods, and rc.subr(8) will take advantage of this soon. The majority of our rc.d scripts already set "command" if appropriate, so fix just the non-compliant handful. Revision Changes Path 1.5 +1 -0 src/etc/rc.d/ike 1.23 +1 -0 src/etc/rc.d/named 1.8 +1 -0 src/etc/rc.d/ppp-user 1.9 +1 -0 src/etc/rc.d/sshd From owner-cvs-src@FreeBSD.ORG Sun Oct 23 15:29:34 2005 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 DE5B816A41F; Sun, 23 Oct 2005 15:29:34 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D8C43D45; Sun, 23 Oct 2005 15:29:34 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9NFTYDw068555; Sun, 23 Oct 2005 15:29:34 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9NFTYsG068554; Sun, 23 Oct 2005 15:29:34 GMT (envelope-from csjp) Date: Sun, 23 Oct 2005 15:29:34 +0000 From: "Christian S.J. Peron" To: Gleb Smirnoff Message-ID: <20051023152934.GA88701@freefall.freebsd.org> References: <200510230144.j9N1i86a057613@repoman.freebsd.org> <20051023071141.GS59364@cell.sick.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051023071141.GS59364@cell.sick.ru> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_mib.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, 23 Oct 2005 15:29:35 -0000 On Sun, Oct 23, 2005 at 11:11:41AM +0400, Gleb Smirnoff wrote: > > Does this fix that bsnmpd reports all interfaces as "operatinally down" > after the if_drv_flags was introduced? > Nope, but this should: http://people.freebsd.org/~csjp/mibII_interfaces.c.1130030000.diff I am just waiting for harti to give me the green light. -- Christian S.J. Peron csjp@FreeBSD.ORG FreeBSD Committer FreeBSD Security Team From owner-cvs-src@FreeBSD.ORG Sun Oct 23 16:15:05 2005 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 A23BB16A41F; Sun, 23 Oct 2005 16:15:05 +0000 (GMT) (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 43AD543D69; Sun, 23 Oct 2005 16:15:03 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NGF3QL014543; Sun, 23 Oct 2005 16:15:03 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NGF2ND014542; Sun, 23 Oct 2005 16:15:03 GMT (envelope-from csjp) Message-Id: <200510231615.j9NGF2ND014542@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sun, 23 Oct 2005 16:15: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/sbin/ipfw ipfw.8 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, 23 Oct 2005 16:15:05 -0000 csjp 2005-10-23 16:15:02 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 Log: Restore the documentation about uid, gid or prison based rules requiring that debug.mpsafenet be set to 0. It is still possible for dead locks to occur while these filtering options are used due to the layering violation inherent in their implementation. Discussed: -current, rwatson, glebius Revision Changes Path 1.178 +10 -0 src/sbin/ipfw/ipfw.8 From owner-cvs-src@FreeBSD.ORG Sun Oct 23 16:52:14 2005 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 4791B16A41F; Sun, 23 Oct 2005 16:52:14 +0000 (GMT) (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 0726F43D45; Sun, 23 Oct 2005 16:52:14 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NGqDMA023068; Sun, 23 Oct 2005 16:52:13 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NGqD1D023067; Sun, 23 Oct 2005 16:52:13 GMT (envelope-from pjd) Message-Id: <200510231652.j9NGqD1D023067@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Sun, 23 Oct 2005 16:52: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/sys mount.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, 23 Oct 2005 16:52:14 -0000 pjd 2005-10-23 16:52:13 UTC FreeBSD src repository Modified files: sys/sys mount.h Log: MNT_JAILDEVFS is not used anymore. Mark it as spare. OK'ed by: phk Revision Changes Path 1.199 +6 -3 src/sys/sys/mount.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 18:22:16 2005 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 DF88316A41F; Sun, 23 Oct 2005 18:22:16 +0000 (GMT) (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 9DC2543D48; Sun, 23 Oct 2005 18:22:16 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NIMGHT026774; Sun, 23 Oct 2005 18:22:16 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NIMGKP026773; Sun, 23 Oct 2005 18:22:16 GMT (envelope-from imp) Message-Id: <200510231822.j9NIMGKP026773@repoman.freebsd.org> From: Warner Losh Date: Sun, 23 Oct 2005 18:22: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/dev/pccard pccardvarp.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, 23 Oct 2005 18:22:17 -0000 imp 2005-10-23 18:22:16 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pccard pccardvarp.h Log: MFC: 1.2. Mempage size needs to be 1k rather than 4k. Prior versions of FreeBSD used this value and it was recently increased to 4k. This broke the two 16-bit card at boot scenario. Revert it back to 1k. Approved by: re (scottl) Revision Changes Path 1.1.2.2 +1 -1 src/sys/dev/pccard/pccardvarp.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 18:23:27 2005 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 CB0F216A41F; Sun, 23 Oct 2005 18:23:27 +0000 (GMT) (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 8A00943D48; Sun, 23 Oct 2005 18:23:27 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NINR0r026841; Sun, 23 Oct 2005 18:23:27 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NINRca026840; Sun, 23 Oct 2005 18:23:27 GMT (envelope-from imp) Message-Id: <200510231823.j9NINRca026840@repoman.freebsd.org> From: Warner Losh Date: Sun, 23 Oct 2005 18:23:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/pccard pccardvarp.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, 23 Oct 2005 18:23:28 -0000 imp 2005-10-23 18:23:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/pccard pccardvarp.h Log: MF RELENG_6: (1.2) reduce the memory page size to 1k. Revision Changes Path 1.1.2.1.2.1 +1 -1 src/sys/dev/pccard/pccardvarp.h From owner-cvs-src@FreeBSD.ORG Sun Oct 23 19:31:19 2005 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 7BC6416A41F; Sun, 23 Oct 2005 19:31:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 391B743D46; Sun, 23 Oct 2005 19:31:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJVJk5029118; Sun, 23 Oct 2005 19:31:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJVJnH029117; Sun, 23 Oct 2005 19:31:19 GMT (envelope-from njl) Message-Id: <200510231931.j9NJVJnH029117@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 19:31: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/acpica acpi_battery.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, 23 Oct 2005 19:31:19 -0000 njl 2005-10-23 19:31:18 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c Log: Add prototype to be consistent. Revision Changes Path 1.21 +1 -0 src/sys/dev/acpica/acpi_battery.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 19:38:01 2005 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 1DEA116A41F; Sun, 23 Oct 2005 19:38:01 +0000 (GMT) (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 C56AB43D64; Sun, 23 Oct 2005 19:37:55 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJbtpK029352; Sun, 23 Oct 2005 19:37:55 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJbtV5029351; Sun, 23 Oct 2005 19:37:55 GMT (envelope-from maxim) Message-Id: <200510231937.j9NJbtV5029351@repoman.freebsd.org> From: Maxim Konovalov Date: Sun, 23 Oct 2005 19:37: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/share/examples/etc make.conf 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, 23 Oct 2005 19:38:01 -0000 maxim 2005-10-23 19:37:55 UTC FreeBSD src repository Modified files: share/examples/etc make.conf Log: s/RADUIS/RADIUS/ Submitted by: jisakiel@yahoo.es MFC after: 1 week Revision Changes Path 1.269 +1 -1 src/share/examples/etc/make.conf From owner-cvs-src@FreeBSD.ORG Sun Oct 23 19:38:07 2005 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 BC0E616A420; Sun, 23 Oct 2005 19:38:07 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04A8043D48; Sun, 23 Oct 2005 19:38:06 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NJc6pP029390; Sun, 23 Oct 2005 19:38:06 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NJc64p029389; Sun, 23 Oct 2005 19:38:06 GMT (envelope-from njl) Message-Id: <200510231938.j9NJc64p029389@repoman.freebsd.org> From: Nate Lawson Date: Sun, 23 Oct 2005 19:38: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/i386/cpufreq p4tcc.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, 23 Oct 2005 19:38:07 -0000 njl 2005-10-23 19:38:06 UTC FreeBSD src repository Modified files: sys/i386/cpufreq p4tcc.c Log: Like acpi_throttle, set frequency to 100% in attach. Some BIOSen may set this value lower, making the system quite slow after booting. Revision Changes Path 1.12 +8 -0 src/sys/i386/cpufreq/p4tcc.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 20:35:03 2005 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 250B216A41F; Sun, 23 Oct 2005 20:35:03 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE6A43D49; Sun, 23 Oct 2005 20:35:02 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9NKZ2Aw022714; Sun, 23 Oct 2005 20:35:02 GMT (envelope-from csjp@freefall.freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9NKZ2f4022713; Sun, 23 Oct 2005 20:35:02 GMT (envelope-from csjp) Date: Sun, 23 Oct 2005 20:35:02 +0000 From: "Christian S.J. Peron" To: Gleb Smirnoff Message-ID: <20051023203502.GA21142@freefall.freebsd.org> References: <200510230144.j9N1i86a057613@repoman.freebsd.org> <20051023071141.GS59364@cell.sick.ru> <20051023152934.GA88701@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051023152934.GA88701@freefall.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_mib.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, 23 Oct 2005 20:35:03 -0000 On Sun, Oct 23, 2005 at 03:29:34PM +0000, Christian S.J. Peron wrote: > On Sun, Oct 23, 2005 at 11:11:41AM +0400, Gleb Smirnoff wrote: > > > > Does this fix that bsnmpd reports all interfaces as "operatinally down" > > after the if_drv_flags was introduced? > > > > Nope, but this should: > > http://people.freebsd.org/~csjp/mibII_interfaces.c.1130030000.diff > > I am just waiting for harti to give me the green light. > Sorry, I probably should have clarified: (1) Yes, this does fix the issue of interfaces being reported as operationally down by bsnmpd. As the RUNNING mask was not being set by the kernel before it was returned to userspace. (2) However, RUNNING flags are not synonomous with the devices being up, so the patch listed above changes bsnmpd to check link status instead of checking the RUNNING mask. -- Christian S.J. Peron csjp@FreeBSD.ORG FreeBSD Committer FreeBSD Security Team From owner-cvs-src@FreeBSD.ORG Sun Oct 23 22:30:08 2005 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 9CEE416A421; Sun, 23 Oct 2005 22:30:08 +0000 (GMT) (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 5208D43D46; Sun, 23 Oct 2005 22:30:08 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NMU8Xg042711; Sun, 23 Oct 2005 22:30:08 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NMU8EB042710; Sun, 23 Oct 2005 22:30:08 GMT (envelope-from thompsa) Message-Id: <200510232230.j9NMU8EB042710@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 23 Oct 2005 22:30: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/net if_bridge.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, 23 Oct 2005 22:30:08 -0000 thompsa 2005-10-23 22:30:08 UTC FreeBSD src repository Modified files: sys/net if_bridge.c Log: If we have been called from ether_ifdetach() then do not try and clear the promisc flag from the member interface, this is a no-op anyway since the interface is disappearing. The driver may have already released its resources such as miibus and this is likely to panic the kernel. Submitted and tested by: Wojciech A. Koszek MFC after: 2 weeks Revision Changes Path 1.30 +24 -19 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 22:31:37 2005 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 4180516A41F; Sun, 23 Oct 2005 22:31:37 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz [60.234.149.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id C676443D49; Sun, 23 Oct 2005 22:31:36 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 4D7C81CCDD; Mon, 24 Oct 2005 11:31:35 +1300 (NZDT) Date: Mon, 24 Oct 2005 11:31:35 +1300 From: Andrew Thompson To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051023223135.GA67158@heff.fud.org.nz> References: <200510232230.j9NMU8EB042710@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510232230.j9NMU8EB042710@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: cvs commit: src/sys/net if_bridge.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, 23 Oct 2005 22:31:37 -0000 On Sun, Oct 23, 2005 at 10:30:08PM +0000, Andrew Thompson wrote: > thompsa 2005-10-23 22:30:08 UTC > > FreeBSD src repository > > Modified files: > sys/net if_bridge.c > Log: > If we have been called from ether_ifdetach() then do not try and clear the > promisc flag from the member interface, this is a no-op anyway since the > interface is disappearing. The driver may have already released > its resources such as miibus and this is likely to panic the kernel. > > Submitted and tested by: Wojciech A. Koszek oops, I mean 'Reported and tested by' From owner-cvs-src@FreeBSD.ORG Sun Oct 23 22:59:33 2005 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 E556416A41F; Sun, 23 Oct 2005 22:59:33 +0000 (GMT) (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 93FFB43D4C; Sun, 23 Oct 2005 22:59:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NMxXhJ043740; Sun, 23 Oct 2005 22:59:33 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NMxXia043739; Sun, 23 Oct 2005 22:59:33 GMT (envelope-from davidxu) Message-Id: <200510232259.j9NMxXia043739@repoman.freebsd.org> From: David Xu Date: Sun, 23 Oct 2005 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/sys/kern kern_time.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, 23 Oct 2005 22:59:34 -0000 davidxu 2005-10-23 22:59:33 UTC FreeBSD src repository Modified files: sys/kern kern_time.c Log: Don't touch last overrun if signal was already on queue. Revision Changes Path 1.120 +0 -2 src/sys/kern/kern_time.c From owner-cvs-src@FreeBSD.ORG Sun Oct 23 23:09:14 2005 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 EC1C216A41F; Sun, 23 Oct 2005 23:09:14 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A888C43D46; Sun, 23 Oct 2005 23:09:14 +0000 (GMT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NN9EPH044102; Sun, 23 Oct 2005 23:09:14 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NN9E0u044101; Sun, 23 Oct 2005 23:09:14 GMT (envelope-from cognet) Message-Id: <200510232309.j9NN9E0u044101@repoman.freebsd.org> From: Olivier Houchard Date: Sun, 23 Oct 2005 23:09: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/arm/arm bcopyinout.S pmap.c support.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: Sun, 23 Oct 2005 23:09:15 -0000 cognet 2005-10-23 23:09:14 UTC FreeBSD src repository Modified files: sys/arm/arm bcopyinout.S pmap.c support.S Log: Unbreak for !__XSCALE__. Revision Changes Path 1.8 +2 -0 src/sys/arm/arm/bcopyinout.S 1.39 +2 -0 src/sys/arm/arm/pmap.c 1.11 +1 -0 src/sys/arm/arm/support.S From owner-cvs-src@FreeBSD.ORG Sun Oct 23 23:24:30 2005 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 9CE6B16A41F; Sun, 23 Oct 2005 23:24:30 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46C5643D4C; Sun, 23 Oct 2005 23:24:30 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9NNOTK6000899; Sun, 23 Oct 2005 16:24:29 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9NNOTsD000898; Sun, 23 Oct 2005 16:24:29 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Oct 2005 16:24:29 -0700 From: "David O'Brien" To: Paul Saab Message-ID: <20051023232429.GA99487@dragon.NUXI.org> References: <200510231043.j9NAhFLF093093@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510231043.j9NAhFLF093093@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/freebsd32 freebsd32_misc.c syscalls.master X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2005 23:24:30 -0000 On Sun, Oct 23, 2005 at 10:43:15AM +0000, Paul Saab wrote: > ps 2005-10-23 10:43:15 UTC > FreeBSD src repository > Modified files: > sys/compat/freebsd32 freebsd32_misc.c syscalls.master > Log: > Implement for FreeBSD 3 32 binaries: > sigaction, sigprocmask, sigpending, sigvec, sigblock, sigsetmask, > sigsuspend, sigstack > 1.44 +201 -0 src/sys/compat/freebsd32/freebsd32_misc.c > 1.56 +18 -8 src/sys/compat/freebsd32/syscalls.master FYI, these changes broke the AMD64 kernel build. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Sun Oct 23 23:58:24 2005 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 B3F7F16A41F; Sun, 23 Oct 2005 23:58:24 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7087C43D46; Sun, 23 Oct 2005 23:58:24 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9NNwO6f045841; Sun, 23 Oct 2005 23:58:24 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9NNwO8r045837; Sun, 23 Oct 2005 23:58:24 GMT (envelope-from obrien) Message-Id: <200510232358.j9NNwO8r045837@repoman.freebsd.org> From: "David E. O'Brien" Date: Sun, 23 Oct 2005 23:58: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/sys/compat/freebsd32 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: Sun, 23 Oct 2005 23:58:24 -0000 obrien 2005-10-23 23:58:24 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 Makefile Log: Add a 'clean' target. Revision Changes Path 1.4 +3 -0 src/sys/compat/freebsd32/Makefile From owner-cvs-src@FreeBSD.ORG Mon Oct 24 00:00:00 2005 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 779C916A41F; Mon, 24 Oct 2005 00:00:00 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 316F243D45; Mon, 24 Oct 2005 00:00:00 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O000Gx045910; Mon, 24 Oct 2005 00:00:00 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O000iS045909; Mon, 24 Oct 2005 00:00:00 GMT (envelope-from ps) Message-Id: <200510240000.j9O000iS045909@repoman.freebsd.org> From: Paul Saab Date: Mon, 24 Oct 2005 00:00:00 +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/ia32 ia32_reg.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, 24 Oct 2005 00:00:00 -0000 ps 2005-10-24 00:00:00 UTC FreeBSD src repository Modified files: sys/amd64/ia32 ia32_reg.c Log: include opt_compat.h to unbreak the build Revision Changes Path 1.3 +2 -0 src/sys/amd64/ia32/ia32_reg.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 01:36:17 2005 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 58BD416A41F; Mon, 24 Oct 2005 01:36:17 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14B9143D45; Mon, 24 Oct 2005 01:36:17 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O1aGa4056526; Mon, 24 Oct 2005 01:36:16 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O1aGfk056525; Mon, 24 Oct 2005 01:36:16 GMT (envelope-from obrien) Message-Id: <200510240136.j9O1aGfk056525@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 01:36: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/gnu/usr.bin/send-pr send-pr.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, 24 Oct 2005 01:36:17 -0000 obrien 2005-10-24 01:36:16 UTC FreeBSD src repository Modified files: gnu/usr.bin/send-pr send-pr.sh Log: Add vim syntax highlighting support to the send-pr(1) utility. PR: 35333 Submitted by: Hendrik Scholz Revision Changes Path 1.37 +2 -0 src/gnu/usr.bin/send-pr/send-pr.sh From owner-cvs-src@FreeBSD.ORG Mon Oct 24 04:31:16 2005 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 C344116A41F; Mon, 24 Oct 2005 04:31:16 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C1C643D48; Mon, 24 Oct 2005 04:31:16 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4VGVT063054; Mon, 24 Oct 2005 04:31:16 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4VGSA063053; Mon, 24 Oct 2005 04:31:16 GMT (envelope-from obrien) Message-Id: <200510240431.j9O4VGSA063053@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:31:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Cc: Subject: cvs commit: src/sys/contrib/dev/acpica - 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: Mon, 24 Oct 2005 04:31:17 -0000 obrien 2005-10-24 04:31:16 UTC FreeBSD src repository src/sys/contrib/dev/acpica - Imported sources Update of /home/ncvs/src/sys/contrib/dev/acpica In directory repoman.freebsd.org:/tmp/cvs-serv63022 Log Message: Vendor import of Intel ACPI-CA 20041119 with system includes fixups. Status: Vendor Tag: INTEL Release Tags: r20041119sysinc U src/sys/contrib/dev/acpica/CHANGES.txt U src/sys/contrib/dev/acpica/acapps.h U src/sys/contrib/dev/acpica/acconfig.h U src/sys/contrib/dev/acpica/acdebug.h U src/sys/contrib/dev/acpica/acdisasm.h U src/sys/contrib/dev/acpica/acdispat.h U src/sys/contrib/dev/acpica/acefi.h C src/sys/contrib/dev/acpica/acenv.h U src/sys/contrib/dev/acpica/acevents.h U src/sys/contrib/dev/acpica/acexcep.h C src/sys/contrib/dev/acpica/acfreebsd.h U src/sys/contrib/dev/acpica/acgcc.h U src/sys/contrib/dev/acpica/acglobal.h U src/sys/contrib/dev/acpica/achware.h U src/sys/contrib/dev/acpica/acinterp.h U src/sys/contrib/dev/acpica/aclocal.h U src/sys/contrib/dev/acpica/acmacros.h U src/sys/contrib/dev/acpica/acnamesp.h U src/sys/contrib/dev/acpica/acobject.h U src/sys/contrib/dev/acpica/acoutput.h U src/sys/contrib/dev/acpica/acparser.h C src/sys/contrib/dev/acpica/acpi.h C src/sys/contrib/dev/acpica/acpiosxf.h C src/sys/contrib/dev/acpica/acpixf.h U src/sys/contrib/dev/acpica/acresrc.h U src/sys/contrib/dev/acpica/acstruct.h U src/sys/contrib/dev/acpica/actables.h U src/sys/contrib/dev/acpica/actbl.h U src/sys/contrib/dev/acpica/actbl1.h U src/sys/contrib/dev/acpica/actbl2.h U src/sys/contrib/dev/acpica/actypes.h U src/sys/contrib/dev/acpica/acutils.h U src/sys/contrib/dev/acpica/amlcode.h U src/sys/contrib/dev/acpica/amlresrc.h C src/sys/contrib/dev/acpica/dbcmds.c U src/sys/contrib/dev/acpica/dbdisply.c U src/sys/contrib/dev/acpica/dbexec.c C src/sys/contrib/dev/acpica/dbfileio.c U src/sys/contrib/dev/acpica/dbhistry.c U src/sys/contrib/dev/acpica/dbinput.c U src/sys/contrib/dev/acpica/dbstats.c U src/sys/contrib/dev/acpica/dbutils.c C src/sys/contrib/dev/acpica/dbxface.c U src/sys/contrib/dev/acpica/dmbuffer.c U src/sys/contrib/dev/acpica/dmnames.c U src/sys/contrib/dev/acpica/dmobject.c C src/sys/contrib/dev/acpica/dmopcode.c U src/sys/contrib/dev/acpica/dmresrc.c U src/sys/contrib/dev/acpica/dmresrcl.c U src/sys/contrib/dev/acpica/evgpe.c U src/sys/contrib/dev/acpica/dmresrcs.c U src/sys/contrib/dev/acpica/dmutils.c U src/sys/contrib/dev/acpica/dmwalk.c U src/sys/contrib/dev/acpica/dsfield.c U src/sys/contrib/dev/acpica/dsinit.c U src/sys/contrib/dev/acpica/dsmethod.c U src/sys/contrib/dev/acpica/dsmthdat.c U src/sys/contrib/dev/acpica/dsobject.c U src/sys/contrib/dev/acpica/dsopcode.c U src/sys/contrib/dev/acpica/dsutils.c U src/sys/contrib/dev/acpica/dswexec.c U src/sys/contrib/dev/acpica/dswload.c U src/sys/contrib/dev/acpica/dswscope.c U src/sys/contrib/dev/acpica/dswstate.c U src/sys/contrib/dev/acpica/evevent.c U src/sys/contrib/dev/acpica/evgpeblk.c U src/sys/contrib/dev/acpica/evmisc.c U src/sys/contrib/dev/acpica/evregion.c U src/sys/contrib/dev/acpica/evrgnini.c U src/sys/contrib/dev/acpica/evsci.c U src/sys/contrib/dev/acpica/evxface.c U src/sys/contrib/dev/acpica/evxfevnt.c U src/sys/contrib/dev/acpica/evxfregn.c U src/sys/contrib/dev/acpica/exconfig.c U src/sys/contrib/dev/acpica/exconvrt.c U src/sys/contrib/dev/acpica/hwgpe.c U src/sys/contrib/dev/acpica/excreate.c U src/sys/contrib/dev/acpica/exdump.c U src/sys/contrib/dev/acpica/exfield.c C src/sys/contrib/dev/acpica/exfldio.c U src/sys/contrib/dev/acpica/exmisc.c U src/sys/contrib/dev/acpica/exmutex.c U src/sys/contrib/dev/acpica/exnames.c U src/sys/contrib/dev/acpica/exoparg1.c U src/sys/contrib/dev/acpica/exoparg2.c U src/sys/contrib/dev/acpica/exoparg3.c U src/sys/contrib/dev/acpica/exoparg6.c U src/sys/contrib/dev/acpica/exprep.c U src/sys/contrib/dev/acpica/exregion.c U src/sys/contrib/dev/acpica/exresnte.c U src/sys/contrib/dev/acpica/exresolv.c U src/sys/contrib/dev/acpica/exresop.c U src/sys/contrib/dev/acpica/exstore.c U src/sys/contrib/dev/acpica/exstoren.c U src/sys/contrib/dev/acpica/exstorob.c C src/sys/contrib/dev/acpica/exsystem.c U src/sys/contrib/dev/acpica/exutils.c U src/sys/contrib/dev/acpica/hwacpi.c C src/sys/contrib/dev/acpica/hwregs.c C src/sys/contrib/dev/acpica/hwsleep.c U src/sys/contrib/dev/acpica/hwtimer.c U src/sys/contrib/dev/acpica/nsaccess.c U src/sys/contrib/dev/acpica/nsalloc.c U src/sys/contrib/dev/acpica/nsdump.c U src/sys/contrib/dev/acpica/nsdumpdv.c U src/sys/contrib/dev/acpica/nseval.c U src/sys/contrib/dev/acpica/nsinit.c U src/sys/contrib/dev/acpica/nsload.c U src/sys/contrib/dev/acpica/nsnames.c U src/sys/contrib/dev/acpica/nsobject.c U src/sys/contrib/dev/acpica/nsparse.c U src/sys/contrib/dev/acpica/nssearch.c U src/sys/contrib/dev/acpica/nsutils.c U src/sys/contrib/dev/acpica/nswalk.c U src/sys/contrib/dev/acpica/nsxfeval.c U src/sys/contrib/dev/acpica/nsxfname.c U src/sys/contrib/dev/acpica/nsxfobj.c U src/sys/contrib/dev/acpica/osunixxf.c U src/sys/contrib/dev/acpica/psargs.c U src/sys/contrib/dev/acpica/psopcode.c C src/sys/contrib/dev/acpica/psparse.c U src/sys/contrib/dev/acpica/psscope.c U src/sys/contrib/dev/acpica/pstree.c U src/sys/contrib/dev/acpica/psutils.c U src/sys/contrib/dev/acpica/pswalk.c U src/sys/contrib/dev/acpica/psxface.c U src/sys/contrib/dev/acpica/rsaddr.c U src/sys/contrib/dev/acpica/rscalc.c C src/sys/contrib/dev/acpica/rscreate.c U src/sys/contrib/dev/acpica/rsdump.c U src/sys/contrib/dev/acpica/rsio.c U src/sys/contrib/dev/acpica/rsirq.c U src/sys/contrib/dev/acpica/rslist.c U src/sys/contrib/dev/acpica/rsmemory.c U src/sys/contrib/dev/acpica/rsmisc.c U src/sys/contrib/dev/acpica/rsutils.c U src/sys/contrib/dev/acpica/rsxface.c U src/sys/contrib/dev/acpica/tbconvrt.c C src/sys/contrib/dev/acpica/tbget.c U src/sys/contrib/dev/acpica/tbgetall.c U src/sys/contrib/dev/acpica/tbinstal.c U src/sys/contrib/dev/acpica/tbrsdt.c U src/sys/contrib/dev/acpica/tbutils.c U src/sys/contrib/dev/acpica/tbxface.c U src/sys/contrib/dev/acpica/tbxfroot.c U src/sys/contrib/dev/acpica/utalloc.c U src/sys/contrib/dev/acpica/utclib.c U src/sys/contrib/dev/acpica/utcopy.c U src/sys/contrib/dev/acpica/utdebug.c U src/sys/contrib/dev/acpica/utdelete.c C src/sys/contrib/dev/acpica/uteval.c C src/sys/contrib/dev/acpica/utglobal.c U src/sys/contrib/dev/acpica/utinit.c U src/sys/contrib/dev/acpica/utmath.c U src/sys/contrib/dev/acpica/utmisc.c U src/sys/contrib/dev/acpica/utobject.c U src/sys/contrib/dev/acpica/utxface.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmalloc.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmclib.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmcopy.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmdebug.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmdelete.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmeval.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmglobal.c U src/sys/contrib/dev/acpica/Subsystem/Common/cminit.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmobject.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmutils.c U src/sys/contrib/dev/acpica/Subsystem/Common/cmxface.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbcmds.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisasm.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisply.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbexec.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbfileio.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbhistry.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbinput.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbstats.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbutils.c U src/sys/contrib/dev/acpica/Subsystem/Debugger/dbxface.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsfield.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmethod.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmthdat.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsobject.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsopcode.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsutils.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswexec.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswload.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswscope.c U src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswstate.c U src/sys/contrib/dev/acpica/Subsystem/Events/evevent.c U src/sys/contrib/dev/acpica/Subsystem/Events/evmisc.c U src/sys/contrib/dev/acpica/Subsystem/Events/evregion.c U src/sys/contrib/dev/acpica/Subsystem/Events/evrgnini.c U src/sys/contrib/dev/acpica/Subsystem/Events/evsci.c U src/sys/contrib/dev/acpica/Subsystem/Events/evxface.c U src/sys/contrib/dev/acpica/Subsystem/Events/evxfevnt.c U src/sys/contrib/dev/acpica/Subsystem/Events/evxfregn.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwacpi.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwcpu32.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwgpe.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwregs.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwsleep.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwtimer.c U src/sys/contrib/dev/acpica/Subsystem/Hardware/hwxface.c U src/sys/contrib/dev/acpica/Subsystem/Include/accommon.h U src/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h U src/sys/contrib/dev/acpica/Subsystem/Include/acdebug.h U src/sys/contrib/dev/acpica/Subsystem/Include/acdispat.h U src/sys/contrib/dev/acpica/Subsystem/Include/acefi.h U src/sys/contrib/dev/acpica/Subsystem/Include/acenv.h U src/sys/contrib/dev/acpica/Subsystem/Include/acevents.h U src/sys/contrib/dev/acpica/Subsystem/Include/acexcep.h U src/sys/contrib/dev/acpica/Subsystem/Include/acfreebsd.h U src/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h U src/sys/contrib/dev/acpica/Subsystem/Include/acglobal.h U src/sys/contrib/dev/acpica/Subsystem/Include/achware.h U src/sys/contrib/dev/acpica/Subsystem/Include/acinterp.h U src/sys/contrib/dev/acpica/Subsystem/Include/aclinux.h U src/sys/contrib/dev/acpica/Subsystem/Include/aclocal.h U src/sys/contrib/dev/acpica/Subsystem/Include/acmacros.h U src/sys/contrib/dev/acpica/Subsystem/Include/acmsvc.h U src/sys/contrib/dev/acpica/Subsystem/Include/acnamesp.h U src/sys/contrib/dev/acpica/Subsystem/Include/acobject.h U src/sys/contrib/dev/acpica/Subsystem/Include/acoutput.h U src/sys/contrib/dev/acpica/Subsystem/Include/acparser.h U src/sys/contrib/dev/acpica/Subsystem/Include/acpi.h U src/sys/contrib/dev/acpica/Subsystem/Include/acpiosxf.h U src/sys/contrib/dev/acpica/Subsystem/Include/acpixf.h U src/sys/contrib/dev/acpica/Subsystem/Include/acresrc.h U src/sys/contrib/dev/acpica/Subsystem/Include/actables.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl1.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl2.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl32.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl64.h U src/sys/contrib/dev/acpica/Subsystem/Include/actbl71.h U src/sys/contrib/dev/acpica/Subsystem/Include/actypes.h U src/sys/contrib/dev/acpica/Subsystem/Include/acwin.h U src/sys/contrib/dev/acpica/Subsystem/Include/amlcode.h U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconfig.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconvrt.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amcreate.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdump.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdyadic.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfield.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammisc.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammonad.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amnames.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amprep.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amregion.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresnte.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresolv.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresop.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstore.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstorob.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amsystem.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amutils.c U src/sys/contrib/dev/acpica/Subsystem/Interpreter/amxface.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsaccess.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsalloc.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsdump.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nseval.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsinit.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsload.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsnames.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsobject.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nssearch.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsutils.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nswalk.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfname.c U src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfobj.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psargs.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psfind.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psopcode.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psparse.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psscope.c U src/sys/contrib/dev/acpica/Subsystem/Parser/pstree.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psutils.c U src/sys/contrib/dev/acpica/Subsystem/Parser/pswalk.c U src/sys/contrib/dev/acpica/Subsystem/Parser/psxface.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsaddr.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rscalc.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rscreate.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsdump.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsio.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsirq.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rslist.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsmemory.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsmisc.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsutils.c U src/sys/contrib/dev/acpica/Subsystem/Resources/rsxface.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbconvrt.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbget.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbinstal.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbutils.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbxface.c U src/sys/contrib/dev/acpica/Subsystem/Tables/tbxfroot.c U src/sys/contrib/dev/acpica/common/adisasm.c U src/sys/contrib/dev/acpica/common/getopt.c U src/sys/contrib/dev/acpica/compiler/aslanalyze.c U src/sys/contrib/dev/acpica/compiler/aslcodegen.c U src/sys/contrib/dev/acpica/compiler/aslcompile.c U src/sys/contrib/dev/acpica/compiler/aslcompiler.h U src/sys/contrib/dev/acpica/compiler/aslcompiler.l U src/sys/contrib/dev/acpica/compiler/aslcompiler.y U src/sys/contrib/dev/acpica/compiler/aslerror.c U src/sys/contrib/dev/acpica/compiler/aslfiles.c U src/sys/contrib/dev/acpica/compiler/aslfold.c U src/sys/contrib/dev/acpica/compiler/aslglobal.h U src/sys/contrib/dev/acpica/compiler/asllength.c U src/sys/contrib/dev/acpica/compiler/asllisting.c U src/sys/contrib/dev/acpica/compiler/aslload.c U src/sys/contrib/dev/acpica/compiler/asllookup.c U src/sys/contrib/dev/acpica/compiler/aslmain.c U src/sys/contrib/dev/acpica/compiler/aslmap.c U src/sys/contrib/dev/acpica/compiler/aslopcodes.c U src/sys/contrib/dev/acpica/compiler/asloperands.c U src/sys/contrib/dev/acpica/compiler/aslopt.c U src/sys/contrib/dev/acpica/compiler/aslresource.c U src/sys/contrib/dev/acpica/compiler/aslrestype1.c U src/sys/contrib/dev/acpica/compiler/aslrestype2.c U src/sys/contrib/dev/acpica/compiler/aslstubs.c U src/sys/contrib/dev/acpica/compiler/asltransform.c U src/sys/contrib/dev/acpica/compiler/asltree.c U src/sys/contrib/dev/acpica/compiler/asltypes.h U src/sys/contrib/dev/acpica/compiler/aslutils.c 18 conflicts created by this import. Use the following command to help the merge: cvs checkout -jINTEL:yesterday -jINTEL src/sys/contrib/dev/acpica From owner-cvs-src@FreeBSD.ORG Mon Oct 24 04:35:21 2005 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 056C116A41F; Mon, 24 Oct 2005 04:35:21 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBEDA43D48; Mon, 24 Oct 2005 04:35:20 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4ZKWf063211; Mon, 24 Oct 2005 04:35:20 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4ZKUQ063210; Mon, 24 Oct 2005 04:35:20 GMT (envelope-from obrien) Message-Id: <200510240435.j9O4ZKUQ063210@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:35: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/contrib/dev/acpica acenv.h acfreebsd.h acpi.h acpiosxf.h acpixf.h dbcmds.c dbfileio.c dbxface.c dmopcode.c exfldio.c exsystem.c hwregs.c hwsleep.c psparse.c rscreate.c tbget.c uteval.c utglobal.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, 24 Oct 2005 04:35:21 -0000 obrien 2005-10-24 04:35:20 UTC FreeBSD src repository Modified files: sys/contrib/dev/acpica acenv.h acfreebsd.h acpi.h acpiosxf.h acpixf.h dbcmds.c dbfileio.c dbxface.c dmopcode.c exfldio.c exsystem.c hwregs.c hwsleep.c psparse.c rscreate.c tbget.c uteval.c utglobal.c Log: Fix conflicts of import of Intel ACPI-CA 20041119 with system includes fixups. Revision Changes Path 1.11 +1 -1 src/sys/contrib/dev/acpica/acenv.h 1.29 +1 -1 src/sys/contrib/dev/acpica/acfreebsd.h 1.7 +15 -15 src/sys/contrib/dev/acpica/acpi.h 1.17 +2 -2 src/sys/contrib/dev/acpica/acpiosxf.h 1.23 +2 -2 src/sys/contrib/dev/acpica/acpixf.h 1.15 +9 -9 src/sys/contrib/dev/acpica/dbcmds.c 1.12 +4 -4 src/sys/contrib/dev/acpica/dbfileio.c 1.8 +4 -4 src/sys/contrib/dev/acpica/dbxface.c 1.3 +4 -4 src/sys/contrib/dev/acpica/dmopcode.c 1.24 +5 -5 src/sys/contrib/dev/acpica/exfldio.c 1.12 +3 -3 src/sys/contrib/dev/acpica/exsystem.c 1.5 +3 -3 src/sys/contrib/dev/acpica/hwregs.c 1.19 +1 -1 src/sys/contrib/dev/acpica/hwsleep.c 1.26 +6 -6 src/sys/contrib/dev/acpica/psparse.c 1.11 +4 -4 src/sys/contrib/dev/acpica/rscreate.c 1.16 +2 -2 src/sys/contrib/dev/acpica/tbget.c 1.5 +3 -3 src/sys/contrib/dev/acpica/uteval.c 1.18 +2 -2 src/sys/contrib/dev/acpica/utglobal.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 04:36:14 2005 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 CA35316A41F; Mon, 24 Oct 2005 04:36:14 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 875A143D46; Mon, 24 Oct 2005 04:36:14 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4aEp3063570; Mon, 24 Oct 2005 04:36:14 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4aE2l063569; Mon, 24 Oct 2005 04:36:14 GMT (envelope-from obrien) Message-Id: <200510240436.j9O4aE2l063569@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:36: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/contrib/dev/acpica acpica_prep.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, 24 Oct 2005 04:36:14 -0000 obrien 2005-10-24 04:36:14 UTC FreeBSD src repository Modified files: sys/contrib/dev/acpica acpica_prep.sh Log: Add a commented out version of what was done for the r20041119sysinc import. Revision Changes Path 1.8 +13 -1 src/sys/contrib/dev/acpica/acpica_prep.sh From owner-cvs-src@FreeBSD.ORG Mon Oct 24 04:38:47 2005 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 EC60116A41F; Mon, 24 Oct 2005 04:38:47 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F9E343D49; Mon, 24 Oct 2005 04:38:47 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O4clFA028188; Sun, 23 Oct 2005 21:38:47 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O4clT2028187; Sun, 23 Oct 2005 21:38:47 -0700 (PDT) (envelope-from obrien) Date: Sun, 23 Oct 2005 21:38:47 -0700 From: "David O'Brien" To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051024043847.GA28046@dragon.NUXI.org> References: <200510240431.j9O4VGSA063053@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510240431.j9O4VGSA063053@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Subject: Re: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 04:38:48 -0000 On Mon, Oct 24, 2005 at 04:31:16AM +0000, David E. O'Brien wrote: > obrien 2005-10-24 04:31:16 UTC > FreeBSD src repository > src/sys/contrib/dev/acpica - Imported sources > Update of /home/ncvs/src/sys/contrib/dev/acpica > In directory repoman.freebsd.org:/tmp/cvs-serv63022 > > Log Message: > Vendor import of Intel ACPI-CA 20041119 with system includes fixups. > > Vendor Tag: INTEL > Release Tags: r20041119sysinc Approved by: njl, marks From owner-cvs-src@FreeBSD.ORG Mon Oct 24 04:40:38 2005 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 7473216A41F; Mon, 24 Oct 2005 04:40:38 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30D9043D49; Mon, 24 Oct 2005 04:40:38 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O4ecNC063763; Mon, 24 Oct 2005 04:40:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O4ecBQ063762; Mon, 24 Oct 2005 04:40:38 GMT (envelope-from obrien) Message-Id: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 24 Oct 2005 04:40: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/conf kern.pre.mk 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, 24 Oct 2005 04:40:38 -0000 obrien 2005-10-24 04:40:38 UTC FreeBSD src repository Modified files: sys/conf kern.pre.mk Log: We no longer need INCLUDES+= -I$S/contrib/dev/acpica. Revision Changes Path 1.73 +2 -5 src/sys/conf/kern.pre.mk From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:05:10 2005 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 EE5CF16A41F; Mon, 24 Oct 2005 05:05:09 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A569743D48; Mon, 24 Oct 2005 05:05:09 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O559TW071736; Mon, 24 Oct 2005 05:05:09 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5599W071735; Mon, 24 Oct 2005 05:05:09 GMT (envelope-from wpaul) Message-Id: <200510240505.j9O5599W071735@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 05:05: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/compat/ndis subr_ndis.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, 24 Oct 2005 05:05:10 -0000 wpaul 2005-10-24 05:05:09 UTC FreeBSD src repository Modified files: sys/compat/ndis subr_ndis.c Log: Fix handling of message table messages that got broken when I converted NdisWriteErrorLogEntry() to use the RtlXXX unicode/ansi conversion routines. Revision Changes Path 1.97 +5 -5 src/sys/compat/ndis/subr_ndis.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:06:19 2005 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 CF4B516A41F; Mon, 24 Oct 2005 05:06:19 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D3D443D46; Mon, 24 Oct 2005 05:06:19 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O56JMS071908; Mon, 24 Oct 2005 05:06:19 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O56JcC071907; Mon, 24 Oct 2005 05:06:19 GMT (envelope-from wpaul) Message-Id: <200510240506.j9O56JcC071907@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 05:06:19 +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/sys/compat/ndis subr_ndis.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, 24 Oct 2005 05:06:20 -0000 wpaul 2005-10-24 05:06:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis subr_ndis.c Log: MFC: fix handling of message table strings in NdisWriteErrorLogEntry() Revision Changes Path 1.67.2.10 +5 -5 src/sys/compat/ndis/subr_ndis.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:16:41 2005 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 A1F2A16A420; Mon, 24 Oct 2005 05:16:41 +0000 (GMT) (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 5EBAA43D46; Mon, 24 Oct 2005 05:16:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5Gfft072358; Mon, 24 Oct 2005 05:16:41 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5Gfp9072357; Mon, 24 Oct 2005 05:16:41 GMT (envelope-from davidxu) Message-Id: <200510240516.j9O5Gfp9072357@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:16: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/lib/libthr/thread thr_mutexattr.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, 24 Oct 2005 05:16:41 -0000 davidxu 2005-10-24 05:16:41 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_mutexattr.c Log: Add functions pthread_mutexattr_setpshared and pthread_mutexattr_getpshared. Revision Changes Path 1.3 +28 -0 src/lib/libthr/thread/thr_mutexattr.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:20:05 2005 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 8ED4216A41F; Mon, 24 Oct 2005 05:20:05 +0000 (GMT) (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 465B243D45; Mon, 24 Oct 2005 05:20:05 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5K5ou072463; Mon, 24 Oct 2005 05:20:05 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5K5he072462; Mon, 24 Oct 2005 05:20:05 GMT (envelope-from davidxu) Message-Id: <200510240520.j9O5K5he072462@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:20: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/lib/libthr pthread.map 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, 24 Oct 2005 05:20:05 -0000 davidxu 2005-10-24 05:20:05 UTC FreeBSD src repository Modified files: lib/libthr pthread.map Log: Export following functions: _pthread_mutexattr_getpshared _pthread_mutexattr_setpshared pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Revision Changes Path 1.7 +6 -0 src/lib/libthr/pthread.map From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:27:06 2005 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 C4E1E16A41F; Mon, 24 Oct 2005 05:27:06 +0000 (GMT) (envelope-from nate@root.org) Received: from ylpvm12.prodigy.net (ylpvm12-ext.prodigy.net [207.115.57.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59D0E43D45; Mon, 24 Oct 2005 05:27:04 +0000 (GMT) (envelope-from nate@root.org) Received: from pimout5-ext.prodigy.net (pimout5-int.prodigy.net [207.115.4.21]) by ylpvm12.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id j9O5RUTl005737; Mon, 24 Oct 2005 01:27:30 -0400 X-ORBL: [71.139.0.107] Received: from [10.0.5.50] (ppp-71-139-0-107.dsl.snfc21.pacbell.net [71.139.0.107]) by pimout5-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id j9O5R2vH122112; Mon, 24 Oct 2005 01:27:02 -0400 Message-ID: <435C70A5.9060408@root.org> Date: Sun, 23 Oct 2005 22:27:01 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050723) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "David E. O'Brien" References: <20051024043630.95DB416A439@hub.freebsd.org> In-Reply-To: <20051024043630.95DB416A439@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/contrib/dev/acpica acpica_prep.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, 24 Oct 2005 05:27:06 -0000 David E. O'Brien wrote: > obrien 2005-10-24 04:36:14 UTC > > FreeBSD src repository > > Modified files: > sys/contrib/dev/acpica acpica_prep.sh > Log: > Add a commented out version of what was done for the r20041119sysinc import. > > Revision Changes Path > 1.8 +13 -1 src/sys/contrib/dev/acpica/acpica_prep.sh > > > Index: src/sys/contrib/dev/acpica/acpica_prep.sh > diff -u src/sys/contrib/dev/acpica/acpica_prep.sh:1.7 src/sys/contrib/dev/acpica/acpica_prep.sh:1.8 > --- src/sys/contrib/dev/acpica/acpica_prep.sh:1.7 Wed Apr 14 02:03:33 2004 > +++ src/sys/contrib/dev/acpica/acpica_prep.sh Mon Oct 24 04:36:14 2005 > @@ -67,6 +67,18 @@ > sed -e 's/platform\///' $i > $i.new && mv $i.new $i > done > > +# canonify include paths > +#for H in \ > +#acpi.h acdispat.h amlcode.h acnamesp.h acevents.h acdebug.h acresrc.h acdisasm.h acparser.h acinterp.h actables.h > +#do > +# sed -i "" -e "s|\"$H\"|\|g" *.c > +#done > +#for H in \ > +#acconfig.h acenv.h actypes.h acexcep.h acmacros.h actbl.h actbl1.h actbl2.h aclocal.h acoutput.h acpiosxf.h acpixf.h acobject.h acstruct.h acglobal.h achware.h acutils.h acfreebsd.h acgcc.h amlresrc.h > +#do > +# sed -i "" -e "s|\"$H\"|\|g" *.h > +#done > + > # post-clean > echo post-clean > rm -rf ${wrk} Why not uncomment those if it was tested? -- Nate From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:34:21 2005 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 C7AD216A41F; Mon, 24 Oct 2005 05:34:21 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8651543D55; Mon, 24 Oct 2005 05:34:21 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5YLTK072977; Mon, 24 Oct 2005 05:34:21 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5YL1X072976; Mon, 24 Oct 2005 05:34:21 GMT (envelope-from njl) Message-Id: <200510240534.j9O5YL1X072976@repoman.freebsd.org> From: Nate Lawson Date: Mon, 24 Oct 2005 05:34: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/dev/acpica acpi_acad.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, 24 Oct 2005 05:34:21 -0000 njl 2005-10-24 05:34:21 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: If no AC line devices are found, go ahead and notify devd that the system is on AC power (i.e. not a laptop). This allows power_profile to run once for desktop systems as well, for instance, to set C3 or CPU frequency. MFC after: 2 weeks Revision Changes Path 1.36 +18 -0 src/sys/dev/acpica/acpi_acad.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:35:14 2005 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 D61E816A41F; Mon, 24 Oct 2005 05:35:14 +0000 (GMT) (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 48D3743D45; Mon, 24 Oct 2005 05:35:14 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5ZEY4073050; Mon, 24 Oct 2005 05:35:14 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5ZEk8073049; Mon, 24 Oct 2005 05:35:14 GMT (envelope-from davidxu) Message-Id: <200510240535.j9O5ZEk8073049@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:35: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/lib/libpthread/thread thr_condattr_pshared.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, 24 Oct 2005 05:35:15 -0000 davidxu 2005-10-24 05:35:14 UTC FreeBSD src repository Added files: lib/libpthread/thread thr_condattr_pshared.c Log: Add function pthread_condattr_setpshared and pthread_condattr_getpshared. Revision Changes Path 1.1 +56 -0 src/lib/libpthread/thread/thr_condattr_pshared.c (new) From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:35:41 2005 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 5E29D16A41F; Mon, 24 Oct 2005 05:35:41 +0000 (GMT) (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 1A7DD43D48; Mon, 24 Oct 2005 05:35:41 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5ZeAe073165; Mon, 24 Oct 2005 05:35:40 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5ZeEb073164; Mon, 24 Oct 2005 05:35:40 GMT (envelope-from davidxu) Message-Id: <200510240535.j9O5ZeEb073164@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:35: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/lib/libpthread/thread thr_mattr_pshared.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, 24 Oct 2005 05:35:41 -0000 davidxu 2005-10-24 05:35:40 UTC FreeBSD src repository Added files: lib/libpthread/thread thr_mattr_pshared.c Log: Add functions pthread_mutexattr_setpshared and pthread_mutexattr_getpshared. Revision Changes Path 1.1 +56 -0 src/lib/libpthread/thread/thr_mattr_pshared.c (new) From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:37:21 2005 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 A1FDD16A41F; Mon, 24 Oct 2005 05:37:21 +0000 (GMT) (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 4BE7943D64; Mon, 24 Oct 2005 05:37:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5bLCv073218; Mon, 24 Oct 2005 05:37:21 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5bLHn073217; Mon, 24 Oct 2005 05:37:21 GMT (envelope-from davidxu) Message-Id: <200510240537.j9O5bLHn073217@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05: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/lib/libpthread pthread.map 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, 24 Oct 2005 05:37:21 -0000 davidxu 2005-10-24 05:37:21 UTC FreeBSD src repository Modified files: lib/libpthread pthread.map Log: Export following functions: _pthread_condattr_getpshared _pthread_condattr_setpshared _pthread_mutexattr_getpshared _pthread_mutexattr_setpshared pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Revision Changes Path 1.16 +8 -0 src/lib/libpthread/pthread.map From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:48:33 2005 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 23FFD16A41F; Mon, 24 Oct 2005 05:48:33 +0000 (GMT) (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 D5B8243D48; Mon, 24 Oct 2005 05:48:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5mWBp073697; Mon, 24 Oct 2005 05:48:32 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5mWVf073696; Mon, 24 Oct 2005 05:48:32 GMT (envelope-from davidxu) Message-Id: <200510240548.j9O5mWVf073696@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:48:32 +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/libpthread/thread Makefile.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: Mon, 24 Oct 2005 05:48:33 -0000 davidxu 2005-10-24 05:48:32 UTC FreeBSD src repository Modified files: lib/libpthread/thread Makefile.inc Log: Include files thr_condattr_pshared.c and thr_mattr_pshare.c. Revision Changes Path 1.50 +2 -0 src/lib/libpthread/thread/Makefile.inc From owner-cvs-src@FreeBSD.ORG Mon Oct 24 05:53:55 2005 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 16FB216A41F; Mon, 24 Oct 2005 05:53:55 +0000 (GMT) (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 C9ABE43D4C; Mon, 24 Oct 2005 05:53:54 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O5rsSa073933; Mon, 24 Oct 2005 05:53:54 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O5rsEC073932; Mon, 24 Oct 2005 05:53:54 GMT (envelope-from davidxu) Message-Id: <200510240553.j9O5rsEC073932@repoman.freebsd.org> From: David Xu Date: Mon, 24 Oct 2005 05:53: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/include pthread.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, 24 Oct 2005 05:53:55 -0000 davidxu 2005-10-24 05:53:54 UTC FreeBSD src repository Modified files: include pthread.h Log: Add prototype for following functions, plus tab fixes. pthread_condattr_getpshared pthread_condattr_setpshared pthread_mutexattr_getpshared pthread_mutexattr_setpshared Revision Changes Path 1.40 +8 -5 src/include/pthread.h From owner-cvs-src@FreeBSD.ORG Mon Oct 24 07:18:35 2005 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 4FF3F16A41F; Mon, 24 Oct 2005 07:18:35 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01CAD43D45; Mon, 24 Oct 2005 07:18:34 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O7IXbR034795; Mon, 24 Oct 2005 00:18:33 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O7IWGn034794; Mon, 24 Oct 2005 00:18:32 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 00:18:32 -0700 From: "David O'Brien" To: Nate Lawson Message-ID: <20051024071832.GB22437@dragon.NUXI.org> References: <20051024043630.95DB416A439@hub.freebsd.org> <435C70A5.9060408@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435C70A5.9060408@root.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica acpica_prep.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 07:18:35 -0000 On Sun, Oct 23, 2005 at 10:27:01PM -0700, Nate Lawson wrote: > David E. O'Brien wrote: > >obrien 2005-10-24 04:36:14 UTC > > FreeBSD src repository > > > > Modified files: > > sys/contrib/dev/acpica acpica_prep.sh > > Log: > > Add a commented out version of what was done for the r20041119sysinc > > import. > > > > Revision Changes Path > > 1.8 +13 -1 src/sys/contrib/dev/acpica/acpica_prep.sh .. > Why not uncomment those if it was tested? You said to add it, commented if I prefered. :-) The simple script I sent you was run on a checkout of the vendor branch - where you had already run acpica_prep.sh. I didn't want to just add my changes implying that acpica_prep.sh as a whole was fully tested. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Mon Oct 24 07:24:24 2005 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 71F0A16A41F; Mon, 24 Oct 2005 07:24:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E7AF43D45; Mon, 24 Oct 2005 07:24:24 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9O7ONs1034951; Mon, 24 Oct 2005 00:24:23 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9O7ON07034950; Mon, 24 Oct 2005 00:24:23 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 00:24:23 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051024072423.GA34909@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200509271657.j8RGvj2n015326@repoman.freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2005 07:24:24 -0000 On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > rik 2005-09-27 16:57:45 UTC > > FreeBSD src repository > > Modified files: > sys/dev/cp if_cp.c > Log: > Restore if_cp.c 1.27 > ---------------------------- > revision 1.27 > date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: +3 -2 > Make sure that we call if_free(ifp) after bus_teardown_intr. Since we > could get an interrupt after we free the ifp, and the interrupt > handler depended on the ifp being still alive, this could, in theory, > cause a crash. Eliminate this possibility by moving the if_free to > after the bus_teardown_intr() call. > > In fact, this change do nothing for this driver. It is protected from > this by cp_destroy variable. This variable also protects driver from > initiation of any activity from network stack with disabled intr > handler with this change applied. You should not have backed out my commit without discussing it with me and understanding the reason for the change. Do it again and I *will* be taking it Core. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Mon Oct 24 08:16:01 2005 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 75D0016A41F; Mon, 24 Oct 2005 08:16:01 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05DF43D49; Mon, 24 Oct 2005 08:16:00 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8G0Um079511; Mon, 24 Oct 2005 08:16:00 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8Fxwj079510; Mon, 24 Oct 2005 08:15:59 GMT (envelope-from ceri) Message-Id: <200510240815.j9O8Fxwj079510@repoman.freebsd.org> From: Ceri Davies Date: Mon, 24 Oct 2005 08:15: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 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: Mon, 24 Oct 2005 08:16:01 -0000 ceri 2005-10-24 08:15:58 UTC FreeBSD src repository Modified files: . MAINTAINERS Log: Note that bugmaster would like to review commits to send-pr. Revision Changes Path 1.126 +1 -0 src/MAINTAINERS From owner-cvs-src@FreeBSD.ORG Mon Oct 24 08:53:23 2005 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 5B33416A41F; Mon, 24 Oct 2005 08:53:23 +0000 (GMT) (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 EF61243D46; Mon, 24 Oct 2005 08:53:22 +0000 (GMT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9O8rMXF088747; Mon, 24 Oct 2005 08:53:22 GMT (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9O8rMtd088746; Mon, 24 Oct 2005 08:53:22 GMT (envelope-from maxim) Message-Id: <200510240853.j9O8rMtd088746@repoman.freebsd.org> From: Maxim Konovalov Date: Mon, 24 Oct 2005 08:53: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/etc rc.subr 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, 24 Oct 2005 08:53:23 -0000 maxim 2005-10-24 08:53:22 UTC FreeBSD src repository Modified files: etc rc.subr Log: o Grammar. Submitted by: Ulrich Spoerlein MFC after: 1 week Revision Changes Path 1.40 +1 -1 src/etc/rc.subr From owner-cvs-src@FreeBSD.ORG Mon Oct 24 13:29:15 2005 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 5BCE416A41F; Mon, 24 Oct 2005 13:29:15 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A21943D46; Mon, 24 Oct 2005 13:29:15 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ODTENQ010155; Mon, 24 Oct 2005 13:29:14 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ODTEgG010154; Mon, 24 Oct 2005 13:29:14 GMT (envelope-from kensmith) Message-Id: <200510241329.j9ODTEgG010154@repoman.freebsd.org> From: Ken Smith Date: Mon, 24 Oct 2005 13:29: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: CVSROOT approvers 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, 24 Oct 2005 13:29:15 -0000 kensmith 2005-10-24 13:29:14 UTC FreeBSD src repository Modified files: . approvers Log: Require re@ approval for RELENG_6_0 commits. Noticed by: imp, wilko, des Approved by: core (implicitly) Revision Changes Path 1.26 +1 -0 CVSROOT/approvers From owner-cvs-src@FreeBSD.ORG Mon Oct 24 14:08:37 2005 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 7AB5B16A421; Mon, 24 Oct 2005 14:08:37 +0000 (GMT) (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 2B24243D48; Mon, 24 Oct 2005 14:08:37 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OE8b60011879; Mon, 24 Oct 2005 14:08:37 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OE8bLR011878; Mon, 24 Oct 2005 14:08:37 GMT (envelope-from bde) Message-Id: <200510241408.j9OE8bLR011878@repoman.freebsd.org> From: Bruce Evans Date: Mon, 24 Oct 2005 14:08:37 +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 k_cos.c k_cosf.c k_sin.c k_sinf.c s_cos.c s_cosf.c s_sin.c s_sinf.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, 24 Oct 2005 14:08:37 -0000 bde 2005-10-24 14:08:37 UTC FreeBSD src repository Modified files: lib/msun/src k_cos.c k_cosf.c k_sin.c k_sinf.c s_cos.c s_cosf.c s_sin.c s_sinf.c Log: Moved the optimization for tiny x from __kernel_{cos,sin}[f](x) to {cos_sin}[f](x) so that x doesn't need to be reclassified in the "kernel" functions to determine if it is tiny (it still needs to be reclassified in the cosine case for other reasons that will go away). This optimization is quite large for exponentially distributed x, since x is tiny for almost half of the domain, but it is a pessimization for uniformally distributed x since it takes a little time for all cases but rarely applies. Arg reduction on exponentially distributed x rarely gives a tiny x unless the reduction is null, so it is best to only do the optimization if the initial x is tiny, which is what this commit arranges. The imediate result is an average optimization of 1.4% relative to the previous version in a case that doesn't favour the optimization (double cos(x) on all float x) and a large pessimization for the relatively unimportant cases of lgamma[f][_r](x) on tiny, negative, exponentially distributed x. The optimization should be recovered for lgamma*() as part of fixing lgamma*()'s low-quality arg reduction. Fixed various wrong constants for the cutoff for "tiny". For cosine, the cutoff is when x**2/2! == {FLT or DBL}_EPSILON/2. We round down to an integral power of 2 (and for cos() reduce the power by another 1) because the exact cutoff doesn't matter and would take more work to determine. For sine, the exact cutoff is larger due to the ration of terms being x**2/3! instead of x**2/2!, but we use the same cutoff as for cosine. We now use a cutoff of 2**-27 for double precision and 2**-12 for single precision. 2**-27 was used in all cases but was misspelled 2**27 in comments. Wrong and sloppy cutoffs just cause missed optimizations (provided the rounding mode is to nearest -- other modes just aren't supported). Revision Changes Path 1.9 +0 -3 src/lib/msun/src/k_cos.c 1.9 +0 -3 src/lib/msun/src/k_cosf.c 1.9 +1 -5 src/lib/msun/src/k_sin.c 1.8 +1 -5 src/lib/msun/src/k_sinf.c 1.10 +5 -1 src/lib/msun/src/s_cos.c 1.8 +5 -3 src/lib/msun/src/s_cosf.c 1.10 +5 -1 src/lib/msun/src/s_sin.c 1.8 +5 -1 src/lib/msun/src/s_sinf.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 14:23:42 2005 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 A4E3116A433; Mon, 24 Oct 2005 14:23:42 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6151D43DCA; Mon, 24 Oct 2005 14:23:10 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OEN5Ou012750; Mon, 24 Oct 2005 14:23:05 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OEN5Ne012749; Mon, 24 Oct 2005 14:23:05 GMT (envelope-from ups) Message-Id: <200510241423.j9OEN5Ne012749@repoman.freebsd.org> From: Stephan Uphoff Date: Mon, 24 Oct 2005 14:23:04 +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_cluster.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, 24 Oct 2005 14:23:43 -0000 ups 2005-10-24 14:23:04 UTC FreeBSD src repository Modified files: sys/kern vfs_cluster.c Log: Only set B_RAM (Read ahead mark) on an incore buffers if we can lock it. This fixes a race condition caused by the unlocked write access to the b_flags field. MFC after: 3 days Revision Changes Path 1.168 +8 -3 src/sys/kern/vfs_cluster.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 15:21:37 2005 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 F36ED16A41F; Mon, 24 Oct 2005 15:21:36 +0000 (GMT) (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 B109D43D45; Mon, 24 Oct 2005 15:21:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFLaFf015336; Mon, 24 Oct 2005 15:21:36 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFLaET015335; Mon, 24 Oct 2005 15:21:36 GMT (envelope-from jhb) Message-Id: <200510241521.j9OFLaET015335@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 15:21: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/ddb db_command.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, 24 Oct 2005 15:21:37 -0000 jhb 2005-10-24 15:21:36 UTC FreeBSD src repository Modified files: sys/ddb db_command.c Log: - Rename 'traceall' to 'alltrace' so that the 'tr' shortcut for 'trace' still works. Also, this is consistent with 'show pcpu' vs 'show allpcpu'. (And 'show allstacks' on OS X for that matter.) - Add 'bt' as an alias for 'trace'. We already have a 'where' alias as well, so this makes it easier for gdb-wired hands to work in ddb. Ok'd by: rwatson (1) Requested by: scottl (2) MFC after: 1 day Revision Changes Path 1.64 +2 -1 src/sys/ddb/db_command.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 15:42:29 2005 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 DE32616A41F; Mon, 24 Oct 2005 15:42:29 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06EB543D45; Mon, 24 Oct 2005 15:42:28 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Mon, 24 Oct 2005 11:59:10 -0400 From: John Baldwin To: obrien@freebsd.org Date: Mon, 24 Oct 2005 10:34:25 -0400 User-Agent: KMail/1.8.2 References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> In-Reply-To: <20051024072423.GA34909@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510241034.27073.jhb@freebsd.org> Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Mon, 24 Oct 2005 15:42:30 -0000 On Monday 24 October 2005 03:24 am, David O'Brien wrote: > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > rik 2005-09-27 16:57:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/cp if_cp.c > > Log: > > Restore if_cp.c 1.27 > > ---------------------------- > > revision 1.27 > > date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: > > +3 -2 Make sure that we call if_free(ifp) after bus_teardown_intr. Since > > we could get an interrupt after we free the ifp, and the interrupt > > handler depended on the ifp being still alive, this could, in theory, > > cause a crash. Eliminate this possibility by moving the if_free to after > > the bus_teardown_intr() call. > > > > In fact, this change do nothing for this driver. It is protected from > > this by cp_destroy variable. This variable also protects driver from > > initiation of any activity from network stack with disabled intr > > handler with this change applied. > > You should not have backed out my commit without discussing it with me > and understanding the reason for the change. > Do it again and I *will* be taking it Core. Looks like he added some function prototypes and moved the cdevsw up. Does i compile now with gcc 4.0? It seems that his changes were a lot simpler and didn't destroy nearly as much CVS history as your changes. It would really be preferable to use simpler solutions rather than destroying version history with really big diffs. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Mon Oct 24 15:57:29 2005 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 A479B16A41F; Mon, 24 Oct 2005 15:57:29 +0000 (GMT) (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 5762743D69; Mon, 24 Oct 2005 15:57:27 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFvRWT017042; Mon, 24 Oct 2005 15:57:27 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFvRZ1017041; Mon, 24 Oct 2005 15:57:27 GMT (envelope-from jhb) Message-Id: <200510241557.j9OFvRZ1017041@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 15:57: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/kern subr_taskqueue.c subr_witness.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, 24 Oct 2005 15:57:29 -0000 jhb 2005-10-24 15:57:27 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c subr_witness.c Log: Spell hierarchy correctly in comments. Submitted by: Wojciech A. Koszek dunstan at freebsd dot czest dot pl Revision Changes Path 1.28 +19 -0 src/sys/kern/subr_taskqueue.c 1.204 +2 -2 src/sys/kern/subr_witness.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 15:58:22 2005 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 825C716A41F; Mon, 24 Oct 2005 15:58:22 +0000 (GMT) (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 904A343D5D; Mon, 24 Oct 2005 15:58:21 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OFwLia017138; Mon, 24 Oct 2005 15:58:21 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OFwLtH017137; Mon, 24 Oct 2005 15:58:21 GMT (envelope-from jhb) Message-Id: <200510241558.j9OFwLtH017137@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 15:58: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/kern subr_taskqueue.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, 24 Oct 2005 15:58:22 -0000 jhb 2005-10-24 15:58:21 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c Log: Revert previous change to this file. I accidentally committed while fixing spelling in a comment. Revision Changes Path 1.29 +0 -19 src/sys/kern/subr_taskqueue.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 16:11:07 2005 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 3FDC716A41F; Mon, 24 Oct 2005 16:11:07 +0000 (GMT) (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 B30F343D45; Mon, 24 Oct 2005 16:11:04 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.204] ([192.168.254.204]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id j9OGB32G020875; Mon, 24 Oct 2005 10:11:03 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <435D0798.2090306@samsco.org> Date: Mon, 24 Oct 2005 10:11:04 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "David E. O'Brien" References: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> In-Reply-To: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.pre.mk 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, 24 Oct 2005 16:11:07 -0000 David E. O'Brien wrote: > obrien 2005-10-24 04:40:38 UTC > > FreeBSD src repository > > Modified files: > sys/conf kern.pre.mk > Log: > We no longer need INCLUDES+= -I$S/contrib/dev/acpica. > > Revision Changes Path > 1.73 +2 -5 src/sys/conf/kern.pre.mk Why is this so important? Why is it worth conflicts with vendor code? Scott From owner-cvs-src@FreeBSD.ORG Mon Oct 24 17:47:48 2005 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 3B2B416A41F; Mon, 24 Oct 2005 17:47:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB79D43D46; Mon, 24 Oct 2005 17:47:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHlluE029620; Mon, 24 Oct 2005 17:47:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHllFH029619; Mon, 24 Oct 2005 17:47:47 GMT (envelope-from wpaul) Message-Id: <200510241747.j9OHllFH029619@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 17:47: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/dev/if_ndis if_ndis.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, 24 Oct 2005 17:47:48 -0000 wpaul 2005-10-24 17:47:47 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: Do not allow ndis_ticktask() to run after ndis_halt_nic() has been called. (It may have been queued up in one of the workitem threads, and letting it fire after the NIC has been halted will cause a crash in some cases.) Revision Changes Path 1.110 +11 -0 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 17:48:47 2005 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 B07F316A41F; Mon, 24 Oct 2005 17:48:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C97843D46; Mon, 24 Oct 2005 17:48:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OHmlFV029689; Mon, 24 Oct 2005 17:48:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OHml5V029688; Mon, 24 Oct 2005 17:48:47 GMT (envelope-from wpaul) Message-Id: <200510241748.j9OHml5V029688@repoman.freebsd.org> From: Bill Paul Date: Mon, 24 Oct 2005 17:48:47 +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/sys/dev/if_ndis if_ndis.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, 24 Oct 2005 17:48:47 -0000 wpaul 2005-10-24 17:48:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/if_ndis if_ndis.c Log: MFC: don't allow ndis_ticktask() to run after the NIC has been halted Revision Changes Path 1.69.2.9 +11 -0 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 18:30:57 2005 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 BEA5716A420; Mon, 24 Oct 2005 18:30:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BC0D43D45; Mon, 24 Oct 2005 18:30:57 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OIUvCV031482; Mon, 24 Oct 2005 18:30:57 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OIUvQr031481; Mon, 24 Oct 2005 18:30:57 GMT (envelope-from njl) Message-Id: <200510241830.j9OIUvQr031481@repoman.freebsd.org> From: Nate Lawson Date: Mon, 24 Oct 2005 18:30: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/sys/dev/acpica acpi_acad.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, 24 Oct 2005 18:30:57 -0000 njl 2005-10-24 18:30:57 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: Invert the check logic. No functional change, but I prefer this version. Revision Changes Path 1.37 +2 -4 src/sys/dev/acpica/acpi_acad.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 18:34:54 2005 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 883DC16A41F; Mon, 24 Oct 2005 18:34:54 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4590443D46; Mon, 24 Oct 2005 18:34:54 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OIYsdk031573; Mon, 24 Oct 2005 18:34:54 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OIYsUM031572; Mon, 24 Oct 2005 18:34:54 GMT (envelope-from njl) Message-Id: <200510241834.j9OIYsUM031572@repoman.freebsd.org> From: Nate Lawson Date: Mon, 24 Oct 2005 18:34: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/usr.sbin/powerd powerd.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, 24 Oct 2005 18:34:54 -0000 njl 2005-10-24 18:34:54 UTC FreeBSD src repository Modified files: usr.sbin/powerd powerd.c Log: Create the devd thread after we have called daemon(). Otherwise, it would be killed when the parent exits. Submitted by: Rudolf Cejka Revision Changes Path 1.16 +3 -3 src/usr.sbin/powerd/powerd.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 20:14:29 2005 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 4375E16A41F; Mon, 24 Oct 2005 20:14:29 +0000 (GMT) (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 7B40143D6E; Mon, 24 Oct 2005 20:14:25 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKEPDH035807; Mon, 24 Oct 2005 20:14:25 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKEOu8035806; Mon, 24 Oct 2005 20:14:24 GMT (envelope-from jhb) Message-Id: <200510242014.j9OKEOu8035806@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:14: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/sys/kern subr_witness.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, 24 Oct 2005 20:14:29 -0000 jhb 2005-10-24 20:14:24 UTC FreeBSD src repository Modified files: sys/kern subr_witness.c Log: Don't panic if a spin lock is initialized that isn't in our static order list. Just warn about it instead. Requested by: scottl MFC after: 1 day Revision Changes Path 1.205 +16 -7 src/sys/kern/subr_witness.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 20:15:23 2005 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 9E52416A41F; Mon, 24 Oct 2005 20:15:23 +0000 (GMT) (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 5BA3A43D53; Mon, 24 Oct 2005 20:15:23 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKFNc3035889; Mon, 24 Oct 2005 20:15:23 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKFNu9035888; Mon, 24 Oct 2005 20:15:23 GMT (envelope-from jhb) Message-Id: <200510242015.j9OKFNu9035888@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:15: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/kern kern_proc.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, 24 Oct 2005 20:15:23 -0000 jhb 2005-10-24 20:15:23 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Document in #ifdef notnow code the actions that proc_fini would need to take if struct procs were actually freed. Revision Changes Path 1.233 +9 -0 src/sys/kern/kern_proc.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 20:31:05 2005 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 3D51516A41F; Mon, 24 Oct 2005 20:31:05 +0000 (GMT) (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 EB40043D46; Mon, 24 Oct 2005 20:31:04 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKV4rZ036585; Mon, 24 Oct 2005 20:31:04 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKV4tr036584; Mon, 24 Oct 2005 20:31:04 GMT (envelope-from jhb) Message-Id: <200510242031.j9OKV4tr036584@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:31:04 +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_kdb.c src/sys/amd64/amd64 mp_machdep.c src/sys/i386/i386 mp_machdep.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, 24 Oct 2005 20:31:05 -0000 jhb 2005-10-24 20:31:04 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c sys/amd64/amd64 mp_machdep.c sys/i386/i386 mp_machdep.c Log: - Various small whitespace and style nits. - Use PCPU_GET(cpumask) in preference to 1 << PCPU_GET(cpuid) in a few places. Revision Changes Path 1.263 +10 -15 src/sys/amd64/amd64/mp_machdep.c 1.255 +10 -14 src/sys/i386/i386/mp_machdep.c 1.14 +10 -11 src/sys/kern/subr_kdb.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 20:52:27 2005 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 19B7E16A41F; Mon, 24 Oct 2005 20:52:27 +0000 (GMT) (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 C93C243D45; Mon, 24 Oct 2005 20:52:26 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKqQSD044778; Mon, 24 Oct 2005 20:52:26 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKqQcC044777; Mon, 24 Oct 2005 20:52:26 GMT (envelope-from jhb) Message-Id: <200510242052.j9OKqQcC044777@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 20:52: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/amd64/amd64 apic_vector.S src/sys/i386/i386 apic_vector.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: Mon, 24 Oct 2005 20:52:27 -0000 jhb 2005-10-24 20:52:26 UTC FreeBSD src repository Modified files: sys/amd64/amd64 apic_vector.S sys/i386/i386 apic_vector.s Log: Use xchg in Xcpustop to close a race and make cpustop_restartfunc truly one-shot in the SMP case (before using the simple mov / cmp / mov sequence could allow multiple CPUs to execute the restart function on resume). Revision Changes Path 1.104 +3 -2 src/sys/amd64/amd64/apic_vector.S 1.105 +3 -2 src/sys/i386/i386/apic_vector.s From owner-cvs-src@FreeBSD.ORG Mon Oct 24 20:53:52 2005 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 B69A116A41F; Mon, 24 Oct 2005 20:53:52 +0000 (GMT) (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 592EE43D4C; Mon, 24 Oct 2005 20:53:52 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OKrqlW044880; Mon, 24 Oct 2005 20:53:52 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OKrqDa044879; Mon, 24 Oct 2005 20:53:52 GMT (envelope-from jhb) Message-Id: <200510242053.j9OKrqDa044879@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 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/amd64/amd64 vm_machdep.c src/sys/i386/i386 vm_machdep.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, 24 Oct 2005 20:53:52 -0000 jhb 2005-10-24 20:53:52 UTC FreeBSD src repository Modified files: sys/amd64/amd64 vm_machdep.c sys/i386/i386 vm_machdep.c Log: When restarting the BSP during cpu_reset() use a membar to ensure that the updated cpustop_restartfunc is seen when the BSP resumes execution. This matches the membar already present in restart_cpus(). Revision Changes Path 1.250 +3 -1 src/sys/amd64/amd64/vm_machdep.c 1.264 +4 -1 src/sys/i386/i386/vm_machdep.c From owner-cvs-src@FreeBSD.ORG Mon Oct 24 21:04:19 2005 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 E56A016A41F; Mon, 24 Oct 2005 21:04:19 +0000 (GMT) (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 8C6F143D48; Mon, 24 Oct 2005 21:04:19 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OL4JXP045828; Mon, 24 Oct 2005 21:04:19 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OL4J2B045827; Mon, 24 Oct 2005 21:04:19 GMT (envelope-from jhb) Message-Id: <200510242104.j9OL4J2B045827@repoman.freebsd.org> From: John Baldwin Date: Mon, 24 Oct 2005 21:04:19 +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_kdb.c subr_smp.c src/sys/amd64/amd64 mp_machdep.c trap.c src/sys/amd64/conf NOTES src/sys/amd64/include smp.h src/sys/conf options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mp_machdep.c trap.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, 24 Oct 2005 21:04:20 -0000 jhb 2005-10-24 21:04:19 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c subr_smp.c sys/amd64/amd64 mp_machdep.c trap.c sys/amd64/conf NOTES sys/amd64/include smp.h sys/conf options.amd64 options.i386 options.pc98 sys/i386/conf NOTES sys/i386/i386 mp_machdep.c trap.c sys/i386/include smp.h sys/pc98/conf NOTES sys/sys smp.h Log: Rename the KDB_STOP_NMI kernel option to STOP_NMI and make it apply to all IPI_STOP IPIs. - Change the i386 and amd64 MD IPI code to send an NMI if STOP_NMI is enabled if an attempt is made to send an IPI_STOP IPI. If the kernel option is enabled, there is also a sysctl to change the behavior at runtime (debug.stop_cpus_with_nmi which defaults to enabled). This includes removing stop_cpus_nmi() and making ipi_nmi_selected() a private function for i386 and amd64. - Fix ipi_all(), ipi_all_but_self(), and ipi_self() on i386 and amd64 to properly handle bitmapped IPIs as well as IPI_STOP IPIs when STOP_NMI is enabled. - Fix ipi_nmi_handler() to execute the restart function on the first CPU that is restarted making use of atomic_readandclear() rather than assuming that the BSP is always included in the set of restarted CPUs. Also, the NMI handler didn't clear the function pointer meaning that subsequent stop and restarts could execute the function again. - Define a new macro HAVE_STOPPEDPCBS on i386 and amd64 to control the use of stoppedpcbs[] and always enable it for i386 and amd64 instead of being dependent on KDB_STOP_NMI. It works fine in both the NMI and non-NMI cases. Revision Changes Path 1.264 +47 -12 src/sys/amd64/amd64/mp_machdep.c 1.296 +3 -3 src/sys/amd64/amd64/trap.c 1.46 +1 -1 src/sys/amd64/conf/NOTES 1.85 +2 -3 src/sys/amd64/include/smp.h 1.22 +1 -1 src/sys/conf/options.amd64 1.226 +1 -1 src/sys/conf/options.i386 1.190 +1 -1 src/sys/conf/options.pc98 1.1209 +1 -1 src/sys/i386/conf/NOTES 1.256 +44 -9 src/sys/i386/i386/mp_machdep.c 1.283 +3 -3 src/sys/i386/i386/trap.c 1.83 +2 -3 src/sys/i386/include/smp.h 1.15 +8 -35 src/sys/kern/subr_kdb.c 1.197 +0 -32 src/sys/kern/subr_smp.c 1.65 +1 -1 src/sys/pc98/conf/NOTES 1.85 +0 -3 src/sys/sys/smp.h From owner-cvs-src@FreeBSD.ORG Mon Oct 24 22:32:19 2005 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 C80B616A41F; Mon, 24 Oct 2005 22:32:19 +0000 (GMT) (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 82E8D43D45; Mon, 24 Oct 2005 22:32:19 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9OMWJ4W049645; Mon, 24 Oct 2005 22:32:19 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9OMWJan049644; Mon, 24 Oct 2005 22:32:19 GMT (envelope-from cperciva) Message-Id: <200510242232.j9OMWJan049644@repoman.freebsd.org> From: Colin Percival Date: Mon, 24 Oct 2005 22:32:19 +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/alias generic.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, 24 Oct 2005 22:32:20 -0000 cperciva 2005-10-24 22:32:19 UTC FreeBSD src repository Modified files: usr.bin/alias generic.sh Log: Use the "builtin" shell function to make sure that the requested command is handled as a shell function. This avoids the following peculiar behaviour when /usr/bin is on a case-insensitive filesystem: # READ foo (... long pause, depending upon the amount of swap space available ...) sh: Resource temporarily unavailable. Reported by: I can't remember; someone on IRC. MFC after: 1 week Revision Changes Path 1.2 +1 -1 src/usr.bin/alias/generic.sh From owner-cvs-src@FreeBSD.ORG Mon Oct 24 23:54:40 2005 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 9149316A41F; Mon, 24 Oct 2005 23:54:40 +0000 (GMT) (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 099B043D45; Mon, 24 Oct 2005 23:54:40 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9ONsdDR052398; Mon, 24 Oct 2005 23:54:39 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9ONsd0S052397; Mon, 24 Oct 2005 23:54:39 GMT (envelope-from imp) Message-Id: <200510242354.j9ONsd0S052397@repoman.freebsd.org> From: Warner Losh Date: Mon, 24 Oct 2005 23:54: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/conf kern.post.mk 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, 24 Oct 2005 23:54:40 -0000 imp 2005-10-24 23:54:39 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk Log: Back out most of 1.84. It was unwise to force debug kernels to always be installed. It should have been optional to install a non-debug one, just like it was formerly optional to install a debug one. In order to do that, most of 1.84 had to go. Instead, make installing the debug kernel the default, but create a new option INSTALL_NODEBUG for those people that have small / partitions and good source control habits. This preserves the behavior of 1.84 while allowing it to be overriden for people (like me) that do not have the time to upgrade to get a bigger / and also don't have time for stupid makefile tricks when upgrading their older system, but still want a kernel.debug around if things go south. Revision Changes Path 1.85 +17 -6 src/sys/conf/kern.post.mk From owner-cvs-src@FreeBSD.ORG Tue Oct 25 00:09:59 2005 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 5D56D16A41F; Tue, 25 Oct 2005 00:09:59 +0000 (GMT) (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 00BA843D45; Tue, 25 Oct 2005 00:09:59 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P09wCa052984; Tue, 25 Oct 2005 00:09:58 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P09w2e052983; Tue, 25 Oct 2005 00:09:58 GMT (envelope-from davidxu) Message-Id: <200510250009.j9P09w2e052983@repoman.freebsd.org> From: David Xu Date: Tue, 25 Oct 2005 00:09: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/lib/libthr pthread.map 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, 25 Oct 2005 00:09:59 -0000 davidxu 2005-10-25 00:09:58 UTC FreeBSD src repository Modified files: lib/libthr pthread.map Log: Put pthread_condattr_init sorted order. Revision Changes Path 1.8 +1 -1 src/lib/libthr/pthread.map From owner-cvs-src@FreeBSD.ORG Tue Oct 25 03:49:25 2005 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 0EA4C16A41F; Tue, 25 Oct 2005 03:49:25 +0000 (GMT) (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 9965B43D49; Tue, 25 Oct 2005 03:49:24 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P3nOtF075969; Tue, 25 Oct 2005 03:49:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P3nOdu075968; Tue, 25 Oct 2005 03:49:24 GMT (envelope-from imp) Message-Id: <200510250349.j9P3nOdu075968@repoman.freebsd.org> From: Warner Losh Date: Tue, 25 Oct 2005 03: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/sys/dev/fe if_fe_pccard.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, 25 Oct 2005 03:49:25 -0000 imp 2005-10-25 03:49:24 UTC FreeBSD src repository Modified files: sys/dev/fe if_fe_pccard.c Log: Preliminary support for Xircom Credit Card Adapter. Not to be confused with the Credit Card Adapter II and its spawn (which the xe driver supports). These changes get my card probing and attaching. I recently won one of these (and a NEC rebadged version) in an lot auction. The NEC didn't work, so I took it apart and found the MB86960A chip and then modified if_fe_pccard.c to attach. I can't test this card further since I have no dongle for this card. Revision Changes Path 1.31 +55 -13 src/sys/dev/fe/if_fe_pccard.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 03:56:22 2005 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 15E1016A41F; Tue, 25 Oct 2005 03:56:22 +0000 (GMT) (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 DC8EA43D45; Tue, 25 Oct 2005 03:56:21 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P3uLq6076335; Tue, 25 Oct 2005 03:56:21 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P3uLn0076334; Tue, 25 Oct 2005 03:56:21 GMT (envelope-from yongari) Message-Id: <200510250356.j9P3uLn0076334@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 25 Oct 2005 03:56: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/dev/hme if_hme.c if_hmereg.h if_hmevar.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, 25 Oct 2005 03:56:22 -0000 yongari 2005-10-25 03:56:21 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme.c if_hmereg.h if_hmevar.h Log: - Convert hme(4) to use TX side bus_dmamap_load_mbuf_sg(9). - Move hardware counter reading/zeroing to hme_tick(). This saves 8 register access per interrupt. [1] - Use imax macro for getting max. argument between two integers. - Invoke bus_dmamap_sync(9) first before freeing mbuf. - Check driver queue first to reduce locking operation in hme_start_locked() and interrupt handler. - Simplyfy watchdog timer setup in interrupt handler. - Don't log normal errors such as RX overrun. If we have DMA stuck condition, reinitialize the driver and log it. Reviewed by: marius Obtained from: OpenBSD [1] Revision Changes Path 1.44 +128 -142 src/sys/dev/hme/if_hme.c 1.7 +6 -0 src/sys/dev/hme/if_hmereg.h 1.9 +1 -0 src/sys/dev/hme/if_hmevar.h From owner-cvs-src@FreeBSD.ORG Tue Oct 25 04:01:41 2005 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 D1AC516A41F; Tue, 25 Oct 2005 04:01:41 +0000 (GMT) (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 912A243D46; Tue, 25 Oct 2005 04:01:41 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P41fnK076624; Tue, 25 Oct 2005 04:01:41 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P41fCY076623; Tue, 25 Oct 2005 04:01:41 GMT (envelope-from yongari) Message-Id: <200510250401.j9P41fCY076623@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 25 Oct 2005 04:01: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/sys/modules/sound/driver 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, 25 Oct 2005 04:01:42 -0000 yongari 2005-10-25 04:01:41 UTC FreeBSD src repository Modified files: sys/modules/sound/driver Makefile Log: Connect es137x build on sparc64. Revision Changes Path 1.17 +1 -1 src/sys/modules/sound/driver/Makefile From owner-cvs-src@FreeBSD.ORG Tue Oct 25 04:05:49 2005 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 0A84C16A41F; Tue, 25 Oct 2005 04:05:49 +0000 (GMT) (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 BD69F43D45; Tue, 25 Oct 2005 04:05:48 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P45mPU076830; Tue, 25 Oct 2005 04:05:48 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P45mJb076829; Tue, 25 Oct 2005 04:05:48 GMT (envelope-from yongari) Message-Id: <200510250405.j9P45mJb076829@repoman.freebsd.org> From: Pyun YongHyeon Date: Tue, 25 Oct 2005 04:05:48 +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/sparc64/conf NOTES 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, 25 Oct 2005 04:05:49 -0000 yongari 2005-10-25 04:05:48 UTC FreeBSD src repository Modified files: sys/sparc64/conf NOTES Log: Remove "nodevice snd_es137x" as it is supported now. Revision Changes Path 1.20 +0 -1 src/sys/sparc64/conf/NOTES From owner-cvs-src@FreeBSD.ORG Tue Oct 25 04:32:42 2005 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 CFB8916A41F; Tue, 25 Oct 2005 04:32:42 +0000 (GMT) (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 8E6B743D45; Tue, 25 Oct 2005 04:32:42 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4Wgpt077870; Tue, 25 Oct 2005 04:32:42 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4Wgf9077869; Tue, 25 Oct 2005 04:32:42 GMT (envelope-from brueffer) Message-Id: <200510250432.j9P4Wgf9077869@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 25 Oct 2005 04: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/release/doc/share/misc dev.archlist.txt 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, 25 Oct 2005 04:32:43 -0000 brueffer 2005-10-25 04:32:42 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt Log: snd_es137x now works on sparc64. Revision Changes Path 1.70 +1 -1 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Tue Oct 25 04:53:29 2005 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 E590716A41F; Tue, 25 Oct 2005 04:53:29 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B816D43D49; Tue, 25 Oct 2005 04:53:29 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P4rTOL085861; Tue, 25 Oct 2005 04:53:29 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P4rTJk085860; Tue, 25 Oct 2005 04:53:29 GMT (envelope-from wpaul) Message-Id: <200510250453.j9P4rTJk085860@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 04:53: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/i386/pci pci_cfgreg.c src/sys/amd64/pci pci_cfgreg.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, 25 Oct 2005 04:53:30 -0000 wpaul 2005-10-25 04:53:29 UTC FreeBSD src repository Modified files: sys/i386/pci pci_cfgreg.c sys/amd64/pci pci_cfgreg.c Log: Modify the pci_cfgdisable() routine to bring it more in line with other OSes (Solaris, Linux, VxWorks). It's not necessary to write a 0 to the config address register when using config mechanism 1 to turn off config access. In fact, it can be downright troublesome, since it seems to confuse the PCI-PCI bridge in the AMD8111 chipset and cause it to sporadically botch reads from some devices. This is the cause of the missing USP ports problem I was experiencing with my Sun Opteron system. Also correct the case for mechanism 2: it's only necessary to write a 0 to the ENABLE port. Revision Changes Path 1.109 +6 -2 src/sys/amd64/pci/pci_cfgreg.c 1.117 +7 -3 src/sys/i386/pci/pci_cfgreg.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 05:20:21 2005 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 597FF16A41F; Tue, 25 Oct 2005 05:20:21 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id C422F43D5A; Tue, 25 Oct 2005 05:20:18 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5KIxh067137; Mon, 24 Oct 2005 22:20:18 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5KIcm067136; Mon, 24 Oct 2005 22:20:18 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:20:18 -0700 From: "David O'Brien" To: John Baldwin Message-ID: <20051025052018.GE55418@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510241034.27073.jhb@freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:20:21 -0000 On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: > On Monday 24 October 2005 03:24 am, David O'Brien wrote: > > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > > rik 2005-09-27 16:57:45 UTC > > > FreeBSD src repository > > > Modified files: > > > sys/dev/cp if_cp.c > > > Log: > > > Restore if_cp.c 1.27 ... > > You should not have backed out my commit without discussing it with me > > and understanding the reason for the change. > > Do it again and I *will* be taking it Core. > > Looks like he added some function prototypes and moved the cdevsw up. Does i > compile now with gcc 4.0? It seems that his changes were a lot simpler and > didn't destroy nearly as much CVS history as your changes. It would really > be preferable to use simpler solutions rather than destroying version history > with really big diffs. Doesn't matter -- it was a clear back out of my recent commit. src/MAINTAINERS doesn't list any of these drivers, so what was his authority in unilaterally backing out my commit? It is also port portable to define static functions early in a file, before they are used. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Tue Oct 25 05:32:45 2005 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 4D7C516A41F; Tue, 25 Oct 2005 05:32:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D5BE43D48; Tue, 25 Oct 2005 05:32:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P5Wifh087454; Tue, 25 Oct 2005 05:32:44 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P5WiJN087453; Tue, 25 Oct 2005 05:32:44 GMT (envelope-from wpaul) Message-Id: <200510250532.j9P5WiJN087453@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 05:32: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/i386/pci pci_cfgreg.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, 25 Oct 2005 05:32:45 -0000 wpaul 2005-10-25 05:32:44 UTC FreeBSD src repository Modified files: sys/i386/pci pci_cfgreg.c Log: Undo the change to pci_cfgdisable() on i386 for now. It seems to fix the amd64 case, but makes the i386 case fail even more often. Revision Changes Path 1.118 +2 -6 src/sys/i386/pci/pci_cfgreg.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 05:49:41 2005 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 A3E3016A41F; Tue, 25 Oct 2005 05:49:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5347943D45; Tue, 25 Oct 2005 05:49:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9P5nd7e068159; Mon, 24 Oct 2005 22:49:39 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9P5narG068158; Mon, 24 Oct 2005 22:49:36 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Oct 2005 22:49:35 -0700 From: "David O'Brien" To: Scott Long Message-ID: <20051025054935.GH55418@dragon.NUXI.org> References: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> <435D0798.2090306@samsco.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435D0798.2090306@samsco.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.pre.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2005 05:49:41 -0000 On Mon, Oct 24, 2005 at 10:11:04AM -0600, Scott Long wrote: > David E. O'Brien wrote: > >obrien 2005-10-24 04:40:38 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf kern.pre.mk > > Log: > > We no longer need INCLUDES+= -I$S/contrib/dev/acpica. > > > > Revision Changes Path > > 1.73 +2 -5 src/sys/conf/kern.pre.mk > > Why is this so important? Why is it worth conflicts with vendor code? How does it conflict with vendor code? See the recient archives of why it is wrong to have -I's in kern.pre.mk and how it only started in BSD .mk files when msmith imported acpica (Makefile.i386 rev 2.111). [only to later start mundging the files before importing them.] Warner also seems to have thought it wasn't good to polute the build of all files with global -I's: RCS file: /home/ncvs/src/sys/conf/Makefile.i386,v .. revision 1.265 date: 2005/04/13 14:49:57; author: imp; state: Exp; lines: +0 -2 .. Also, move the -I stuff to the centralized kern.pre.mk. However, it might be better to add these flags to files.conf. .. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Tue Oct 25 06:17:05 2005 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 473C716A41F; Tue, 25 Oct 2005 06:17:05 +0000 (GMT) (envelope-from nate@root.org) Received: from ylpvm12.prodigy.net (ylpvm12-ext.prodigy.net [207.115.57.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A4EF43D48; Tue, 25 Oct 2005 06:17:03 +0000 (GMT) (envelope-from nate@root.org) Received: from pimout5-ext.prodigy.net (pimout5-int.prodigy.net [207.115.4.21]) by ylpvm12.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id j9P6HSTl012716; Tue, 25 Oct 2005 02:17:28 -0400 X-ORBL: [71.139.0.107] Received: from [10.0.0.242] (ppp-71-139-0-107.dsl.snfc21.pacbell.net [71.139.0.107]) by pimout5-ext.prodigy.net (8.13.4 outbound domainkey aix/8.13.4) with ESMTP id j9P6GwxW158370; Tue, 25 Oct 2005 02:16:59 -0400 Message-ID: <435DCDE7.4010101@root.org> Date: Mon, 24 Oct 2005 23:17:11 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200510240440.j9O4ecBQ063762@repoman.freebsd.org> <435D0798.2090306@samsco.org> <20051025054935.GH55418@dragon.NUXI.org> In-Reply-To: <20051025054935.GH55418@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Scott Long , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.pre.mk 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, 25 Oct 2005 06:17:05 -0000 David O'Brien wrote: > On Mon, Oct 24, 2005 at 10:11:04AM -0600, Scott Long wrote: > >>David E. O'Brien wrote: >> >>>obrien 2005-10-24 04:40:38 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/conf kern.pre.mk >>> Log: >>> We no longer need INCLUDES+= -I$S/contrib/dev/acpica. >>> >>> Revision Changes Path >>> 1.73 +2 -5 src/sys/conf/kern.pre.mk >> >>Why is this so important? Why is it worth conflicts with vendor code? > > > How does it conflict with vendor code? > See the recient archives of why it is wrong to have -I's in kern.pre.mk > and how it only started in BSD .mk files when msmith imported acpica > (Makefile.i386 rev 2.111). > [only to later start mundging the files before importing them.] > > Warner also seems to have thought it wasn't good to polute the build of > all files with global -I's: > > RCS file: /home/ncvs/src/sys/conf/Makefile.i386,v > .. > revision 1.265 > date: 2005/04/13 14:49:57; author: imp; state: Exp; lines: +0 -2 > .. > Also, move the -I stuff to the centralized kern.pre.mk. However, it > might be better to add these flags to files.conf. > .. I think this is a pretty minor gain also. There are other similar areas that could benefit much more from some Makefile-reworking (especially the handling for .m files at the top of sys/conf/files). However, since we already bash the acpi-ca distro with a hammer (see acpica_prep.sh), this was a minor enough change to tolerate. -Nate From owner-cvs-src@FreeBSD.ORG Tue Oct 25 06:53:46 2005 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 4204016A41F; Tue, 25 Oct 2005 06:53:46 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 110C743D48; Tue, 25 Oct 2005 06:53:46 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P6rj83090260; Tue, 25 Oct 2005 06:53:45 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P6rjT8090259; Tue, 25 Oct 2005 06:53:45 GMT (envelope-from wpaul) Message-Id: <200510250653.j9P6rjT8090259@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 06:53:45 +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/pci pci.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, 25 Oct 2005 06:53:46 -0000 wpaul 2005-10-25 06:53:45 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Add a 1 microsecond delay in pci_add_children(), right before the read of the PCIR_HDRTYPE register. It's the value returned from this read access that determines whether or not we decide a device is present at the current slot index. For some reason that I can't adequately explain, this read fails on my machine when probing the USB controller on my machine (which happens a multifunction device at slot index 3 hung off the PCI-PCI bridge on the AMD8111 (bus index 1)). The read will return 0xFF even though it should return 0x80 to indicate the presence of a multifunction device. As near as I can tell, there's some timing issue involved with reading the 'dead' slot indexes 0 through 2 that causes the read of the actual device at slot 3 to fail. I tried a couple of different tricks to correct the problem (the patch to amd64/pci/pci_cfgreg.c fixes it for the amd64 arch), but adding this delay is the only thing that always allows the USB controllers to be correctly probed 100% of the time. Whatever the problem is, it's likely confined to the AMD8111 chipset. However, a simple 1us delay is fairly harmless and should have no side effects for other hardware. I consider this to be voodoo, but it's fairly benign voodoo and it makes my USB keyboard and mouse work again. Note that this is the second time that I've had to resort to a 1us delay to fix a PCI-related problem with this AMD8111/Opteron system (the first being a fix I made a while back to the NDISulator). It's possible the delay really belongs in the cfgreg code itself, or that pci_cfgreg needs some custom hackery for an errata in the 8111. (I checked but couldn't find any documented errata on AMD's site that could account for these problems.) Revision Changes Path 1.300 +1 -0 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 08:11:52 2005 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 1494316A41F for ; Tue, 25 Oct 2005 08:11:52 +0000 (GMT) (envelope-from silby@silby.com) Received: from relay02.pair.com (relay02.pair.com [209.68.5.16]) by mx1.FreeBSD.org (Postfix) with SMTP id DB0BD43D49 for ; Tue, 25 Oct 2005 08:11:50 +0000 (GMT) (envelope-from silby@silby.com) Received: (qmail 12555 invoked from network); 25 Oct 2005 08:11:49 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 25 Oct 2005 08:11:49 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 25 Oct 2005 03:11:43 -0500 (CDT) From: Mike Silbersack To: Nate Lawson In-Reply-To: <200510230020.j9N0KD4g046756@repoman.freebsd.org> Message-ID: <20051025031002.B911@odysseus.silby.com> References: <200510230020.j9N0KD4g046756@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/dev/acpica acpi_smbat.c acpi_smbus.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, 25 Oct 2005 08:11:52 -0000 On Sun, 23 Oct 2005, Nate Lawson wrote: > njl 2005-10-23 00:20:13 UTC > > FreeBSD src repository > > Added files: > sys/dev/acpica acpi_smbat.c acpi_smbus.h > Log: > Import ACPI smart battery support. Newer systems (Acer, mostly) do not > support the CM-battery interface. Smart batteries can eventually be > supported without ACPI via a separate SMBus interface. The ACPI interface > uses the embedded controller for reading/writing to the SMBus, and normal > ASL definitions for locating the battery controller (since SMBus can't be > enumerated.) Also import definitions for the smart battery interface. > > This was written by Hans Petter Selasky with minor cleanups from myself. Nice, I've been waiting for this for a while. Well, sorta waiting. It turns out that the battery life on my Acer Pentium M laptop is so good that I can estimate when it'll run out mentally. "Has it been more than 2 hours since I wandered away from an outlet? Hm, maybe I should return." Now I just have to wait for this to be MFC'd to RELENG_6. :) Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Tue Oct 25 08:56:34 2005 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 07A3C16A41F; Tue, 25 Oct 2005 08:56:34 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE17943D48; Tue, 25 Oct 2005 08:56:33 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from freefall.freebsd.org (yar@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9P8uXuG054165; Tue, 25 Oct 2005 08:56:33 GMT (envelope-from yar@freefall.freebsd.org) Received: (from yar@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9P8uXwR054164; Tue, 25 Oct 2005 08:56:33 GMT (envelope-from yar) Date: Tue, 25 Oct 2005 08:56:33 +0000 From: Yar Tikhiy To: Jung-uk Kim Message-ID: <20051025085633.GA53953@freefall.freebsd.org> References: <200510202150.j9KLoinG035648@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510202150.j9KLoinG035648@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.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, 25 Oct 2005 08:56:34 -0000 On Thu, Oct 20, 2005 at 09:50:44PM +0000, Jung-uk Kim wrote: > jkim 2005-10-20 21:50:44 UTC > > FreeBSD src repository > > Modified files: > gnu/usr.bin/grep grep.c > Log: > Fix a longstanding buglet in bz-prefixed grep(1). > > Revision Changes Path > 1.32 +5 -5 src/gnu/usr.bin/grep/grep.c IMHO we should either MFC this fix to or drop bz[ef]grep links from RELENG_6_0 in order to avoid shipping deliberately broken command-line tools in 6.0-RELEASE. Yar From owner-cvs-src@FreeBSD.ORG Tue Oct 25 09:05:08 2005 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 5B3B016A41F; Tue, 25 Oct 2005 09:05:08 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2343743D49; Tue, 25 Oct 2005 09:05:08 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P958gb002501; Tue, 25 Oct 2005 09:05:08 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9575Z002500; Tue, 25 Oct 2005 09:05:07 GMT (envelope-from ru) Message-Id: <200510250905.j9P9575Z002500@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 25 Oct 2005 09:05:07 +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 Makefile src/sys/conf kern.post.mk kmod.mk 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, 25 Oct 2005 09:05:08 -0000 ru 2005-10-25 09:05:07 UTC FreeBSD src repository Modified files: release Makefile sys/conf kern.post.mk kmod.mk Log: Refactor (some more) installation of kernel and module objects. Try to make everyone happy: David (to have debug kernels installed by default), Warner (to be able to override that), and myself (for actually making it all work and to be consistent). Now, if kernel was configured for debugging (through DEBUG=-g in the kernel config file or "config -g"), doing "make install" will install debug versions of kernel and module objects with their canonical names, kernel.debug -> /boot/kernel/kernel if_fxp.ko.debug -> /boot/kernel/if_fxp.ko Installing a kernel not configured for debugging, or debug kernel with INSTALL_NODEBUG variable defined, will install non-debug kernel and module objects. Also, restore the install.debug and reinstall.debug targets that are part of the existing API (they cause some additional gdb(1) scripts to be installed). Revision Changes Path 1.891 +0 -4 src/release/Makefile 1.86 +4 -2 src/sys/conf/kern.post.mk 1.197 +3 -8 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Tue Oct 25 09:18:51 2005 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 ADF2D16A41F; Tue, 25 Oct 2005 09:18:51 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C82543D45; Tue, 25 Oct 2005 09:18:51 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9P9Ippj003343; Tue, 25 Oct 2005 09:18:51 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9P9Ipe8003342; Tue, 25 Oct 2005 09:18:51 GMT (envelope-from tjr) Message-Id: <200510250918.j9P9Ipe8003342@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 25 Oct 2005 09:18: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/gnu/usr.bin/grep search.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, 25 Oct 2005 09:18:52 -0000 tjr 2005-10-25 09:18:50 UTC FreeBSD src repository Modified files: gnu/usr.bin/grep search.c Log: Fix 'grep -Fw' for encodings other than UTF-8 (RH bug #161700). PR: 87969 Obtained from: Fedora (Tim Waugh) Revision Changes Path 1.24 +2 -2 src/gnu/usr.bin/grep/search.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 10:16:21 2005 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 2106316A420 for ; Tue, 25 Oct 2005 10:16:21 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 607AA43D49 for ; Tue, 25 Oct 2005 10:16:20 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9PADGdn080708 for cvs-src@freebsd.org.checked; Tue, 25 Oct 2005 14:13:16 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from [144.206.181.94] (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9PAAgo7080662; Tue, 25 Oct 2005 14:10:43 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <435E04AA.3080605@cronyx.ru> Date: Tue, 25 Oct 2005 14:10:50 +0400 From: Roman Kurakin User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> In-Reply-To: <20051025052018.GE55418@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_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, 25 Oct 2005 10:16:21 -0000 David O'Brien wrote: >On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: > > >>On Monday 24 October 2005 03:24 am, David O'Brien wrote: >> >> >>>On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: >>> >>> >>>>rik 2005-09-27 16:57:45 UTC >>>> FreeBSD src repository >>>> Modified files: >>>> sys/dev/cp if_cp.c >>>> Log: >>>> Restore if_cp.c 1.27 >>>> >>>> >... > > >>>You should not have backed out my commit without discussing it with me >>>and understanding the reason for the change. >>>Do it again and I *will* be taking it Core. >>> >>> >>Looks like he added some function prototypes and moved the cdevsw up. Does i >>compile now with gcc 4.0? It seems that his changes were a lot simpler and >>didn't destroy nearly as much CVS history as your changes. It would really >>be preferable to use simpler solutions rather than destroying version history >>with really big diffs. >> >> > >Doesn't matter -- it was a clear back out of my recent commit. >src/MAINTAINERS doesn't list any of these drivers, so what was his > > I do not want to list them in src/MAINTAINERS cause I think it is better to allow any commits. Cases such this one is rare. Since I didn't get reply from you within a week and I do not like function relocation and didn't find explanation from commit log I've backout function relocation, not fix of forward variable declaration. The commit log didn't state what was the problem variable forward declaration or/and function forward declaration. rik >authority in unilaterally backing out my commit? >It is also port portable to define static functions early in a file, >before they are used. > > > From owner-cvs-src@FreeBSD.ORG Tue Oct 25 12:13:38 2005 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 32DDA16A41F; Tue, 25 Oct 2005 12:13:38 +0000 (GMT) (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 F302C43D46; Tue, 25 Oct 2005 12:13:37 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCDbwJ010109; Tue, 25 Oct 2005 12:13:37 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCDbBp010108; Tue, 25 Oct 2005 12:13:37 GMT (envelope-from bde) Message-Id: <200510251213.j9PCDbBp010108@repoman.freebsd.org> From: Bruce Evans Date: Tue, 25 Oct 2005 12:13:37 +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_rem_pio2f.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, 25 Oct 2005 12:13:38 -0000 bde 2005-10-25 12:13:37 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c Log: More fixes for arg reduction near pi/2 on systems with broken assignment to floats (mainly i386's). All errors of more than 1 ulp for float precision trig functions were supposed to have been fixed; however, compiling with gcc -O2 uncovered 18250 more such errors for cosf(), with a maximum error of 1.409 ulps. Use essentially the same fix as in rev.1.8 of k_rem_pio2f.c (access a non-volatile variable as a volatile). Here the -O1 case apparently worked because the variable is in a 2-element array and it takes -O2 to mess up such a variable by putting it in a register. The maximum error for cosf() on i386 with gcc -O2 is now 0.5467 (it is still 0.5650 with gcc -O1). This shows that -O2 still causes some extra precision, but the extra precision is now good. Extra precision is harmful mainly for implementing extra precision in software. We want to represent x+y as w+r where both "+" operations are in infinite precision and r is tiny compared with w. There is a standard algorithm for this (Knuth (1981) 4.2.2 Theorem C), and fdlibm uses this routinely, but the algorithm requires w and r to have the same precision as x and y. w is just x+y (calculated in the same finite precision as x and y), and r is a tiny correction term. The i386 gcc bugs tend to give extra precision in w, and then using this extra precision in the calculation of r results in the correction mostly staying in w and being missing from r. There still tends to be no problem if the result is a simple expression involving w and r -- modulo spills, w keeps its extra precision and r remains the right correction for this wrong w. However, here we want to pass w and r to extern functions. Extra precision is not retained in function args, so w gets fixed up, but the change to the tiny r is tinier, so r almost remains as a wrong correction for the right w. Revision Changes Path 1.12 +8 -5 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 12:16:07 2005 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 2AC2916A41F; Tue, 25 Oct 2005 12:16:07 +0000 (GMT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id C193843D45; Tue, 25 Oct 2005 12:16:06 +0000 (GMT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.12.11) with ESMTP id j9PCG6jx049190; Tue, 25 Oct 2005 05:16:06 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id j9PCG6fB049189; Tue, 25 Oct 2005 05:16:06 -0700 (PDT) (envelope-from rizzo) Date: Tue, 25 Oct 2005 05:16:06 -0700 From: Luigi Rizzo To: Bruce Evans Message-ID: <20051025051606.A49155@xorpc.icir.org> References: <200510251213.j9PCDbBp010108@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200510251213.j9PCDbBp010108@repoman.freebsd.org>; from bde@FreeBSD.org on Tue, Oct 25, 2005 at 12:13:37PM +0000 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/msun/src e_rem_pio2f.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, 25 Oct 2005 12:16:07 -0000 wow now this is a commit message!!! On Tue, Oct 25, 2005 at 12:13:37PM +0000, Bruce Evans wrote: > bde 2005-10-25 12:13:37 UTC > > FreeBSD src repository > > Modified files: > lib/msun/src e_rem_pio2f.c > Log: > More fixes for arg reduction near pi/2 on systems with broken assignment > to floats (mainly i386's). All errors of more than 1 ulp for float > precision trig functions were supposed to have been fixed; however, > compiling with gcc -O2 uncovered 18250 more such errors for cosf(), > with a maximum error of 1.409 ulps. > > Use essentially the same fix as in rev.1.8 of k_rem_pio2f.c (access a > non-volatile variable as a volatile). Here the -O1 case apparently > worked because the variable is in a 2-element array and it takes -O2 > to mess up such a variable by putting it in a register. > > The maximum error for cosf() on i386 with gcc -O2 is now 0.5467 (it > is still 0.5650 with gcc -O1). This shows that -O2 still causes some > extra precision, but the extra precision is now good. > > Extra precision is harmful mainly for implementing extra precision in > software. We want to represent x+y as w+r where both "+" operations > are in infinite precision and r is tiny compared with w. There is a > standard algorithm for this (Knuth (1981) 4.2.2 Theorem C), and fdlibm > uses this routinely, but the algorithm requires w and r to have the > same precision as x and y. w is just x+y (calculated in the same > finite precision as x and y), and r is a tiny correction term. The > i386 gcc bugs tend to give extra precision in w, and then using this > extra precision in the calculation of r results in the correction > mostly staying in w and being missing from r. There still tends to > be no problem if the result is a simple expression involving w and r > -- modulo spills, w keeps its extra precision and r remains the right > correction for this wrong w. However, here we want to pass w and r > to extern functions. Extra precision is not retained in function args, > so w gets fixed up, but the change to the tiny r is tinier, so r almost > remains as a wrong correction for the right w. > > Revision Changes Path > 1.12 +8 -5 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 12:49:57 2005 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 152B516A41F; Tue, 25 Oct 2005 12:49:57 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C498543D4C; Tue, 25 Oct 2005 12:49:56 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCnuvv018666; Tue, 25 Oct 2005 12:49:56 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCnusA018665; Tue, 25 Oct 2005 12:49:56 GMT (envelope-from marius) Message-Id: <200510251249.j9PCnusA018665@repoman.freebsd.org> From: Marius Strobl Date: Tue, 25 Oct 2005 12:49: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/boot/ofw/libofw devicename.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, 25 Oct 2005 12:49:57 -0000 marius 2005-10-25 12:49:56 UTC FreeBSD src repository Modified files: sys/boot/ofw/libofw devicename.c Log: In ofw_parsedev() check the return value of malloc() and protect against a NULL pointer dereference when ofw_parsedev() is called with a NULL path argument. Tested on: powerpc (grehan), sparc64 Revision Changes Path 1.16 +5 -1 src/sys/boot/ofw/libofw/devicename.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 12:51:50 2005 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 6C61C16A41F; Tue, 25 Oct 2005 12:51:50 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C6A43D48; Tue, 25 Oct 2005 12:51:50 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PCpnSg018832; Tue, 25 Oct 2005 12:51:49 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PCpn6E018831; Tue, 25 Oct 2005 12:51:49 GMT (envelope-from marius) Message-Id: <200510251251.j9PCpn6E018831@repoman.freebsd.org> From: Marius Strobl Date: Tue, 25 Oct 2005 12:51: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/boot/ofw/libofw ofw_disk.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, 25 Oct 2005 12:51:50 -0000 marius 2005-10-25 12:51:49 UTC FreeBSD src repository Modified files: sys/boot/ofw/libofw ofw_disk.c Log: - Add a workaround for the fact that OFW doesn't guarantee that devices can be opened multiple times simultaneously but we're expected to be able to do so by the rest of the loader. This fixes booting from disks attached to the on-board SCSI controller of Sun Ultra 1 (previously this triggered a trap) and probably also of AX1115 boards. - While here, remove unused variables and add empty lines where style(9) requires such. Tested on: powerpc (grehan), sparc64 MFC after: 1 month Revision Changes Path 1.13 +57 -6 src/sys/boot/ofw/libofw/ofw_disk.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 13:45:08 2005 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 5865D16A41F; Tue, 25 Oct 2005 13:45:08 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D79643D48; Tue, 25 Oct 2005 13:45:08 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PDj7eW020647; Tue, 25 Oct 2005 13:45:07 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PDj7AZ020646; Tue, 25 Oct 2005 13:45:07 GMT (envelope-from ceri) Message-Id: <200510251345.j9PDj7AZ020646@repoman.freebsd.org> From: Ceri Davies Date: Tue, 25 Oct 2005 13:45:07 +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/geom/class/mirror geom_mirror.c gmirror.8 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, 25 Oct 2005 13:45:08 -0000 ceri 2005-10-25 13:45:07 UTC FreeBSD src repository Modified files: sbin/geom/class/mirror geom_mirror.c gmirror.8 Log: gmirror.8: Note the default balancing algorithm and stripe size. geom_mirror.c: Slightly friendlier error message. Reviewed by: pjd Revision Changes Path 1.11 +1 -1 src/sbin/geom/class/mirror/geom_mirror.c 1.18 +3 -1 src/sbin/geom/class/mirror/gmirror.8 From owner-cvs-src@FreeBSD.ORG Tue Oct 25 15:37:38 2005 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 6392C16A41F; Tue, 25 Oct 2005 15:37:38 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFBEE43D49; Tue, 25 Oct 2005 15:37:35 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.1/8.13.1) with ESMTP id j9PFjs2P080035; Tue, 25 Oct 2005 11:45:54 -0400 (EDT) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Yar Tikhiy , "Tim J. Robbins" Date: Tue, 25 Oct 2005 11:37:18 -0400 User-Agent: KMail/1.6.2 References: <200510202150.j9KLoinG035648@repoman.freebsd.org> <20051025085633.GA53953@freefall.freebsd.org> In-Reply-To: <20051025085633.GA53953@freefall.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="euc-kr" Content-Transfer-Encoding: 7bit Message-Id: <200510251137.21617.jkim@FreeBSD.org> X-Virus-Scanned: ClamAV devel-20050919/1146/Fri Oct 21 00:36:48 2005 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/grep grep.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, 25 Oct 2005 15:37:38 -0000 On Tuesday 25 October 2005 04:56 am, Yar Tikhiy wrote: > On Thu, Oct 20, 2005 at 09:50:44PM +0000, Jung-uk Kim wrote: > > jkim 2005-10-20 21:50:44 UTC > > > > FreeBSD src repository > > > > Modified files: > > gnu/usr.bin/grep grep.c > > Log: > > Fix a longstanding buglet in bz-prefixed grep(1). > > > > Revision Changes Path > > 1.32 +5 -5 src/gnu/usr.bin/grep/grep.c > > IMHO we should either MFC this fix to or drop bz[ef]grep links from > RELENG_6_0 in order to avoid shipping deliberately broken > command-line tools in 6.0-RELEASE. I agree. And this fix should be MFC'd also: http://docs.freebsd.org/cgi/mid.cgi?200510250918.j9P9Ipe8003342 BTW, thanks for letting me know there was a PR. Jung-uk Kim > Yar From owner-cvs-src@FreeBSD.ORG Tue Oct 25 16:14:35 2005 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 D3CAF16A41F; Tue, 25 Oct 2005 16:14:35 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E61E43D53; Tue, 25 Oct 2005 16:14:35 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PGEZvh026117; Tue, 25 Oct 2005 16:14:35 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PGEZF3026116; Tue, 25 Oct 2005 16:14:35 GMT (envelope-from wpaul) Message-Id: <200510251614.j9PGEZF3026116@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 16: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/dev/if_ndis if_ndis.c if_ndisvar.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, 25 Oct 2005 16:14:36 -0000 wpaul 2005-10-25 16:14:34 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c if_ndisvar.h Log: Correct some __FreeBSD_version conditionals to use version bumps closer to the actual dates when code actually changed. Also add special case link state change handling for RELENG_5, which doesn't have if_link_state_change(). No actual operational changes are done. Revision Changes Path 1.111 +26 -11 src/sys/dev/if_ndis/if_ndis.c 1.26 +1 -1 src/sys/dev/if_ndis/if_ndisvar.h From owner-cvs-src@FreeBSD.ORG Tue Oct 25 16:16:01 2005 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 8941916A41F; Tue, 25 Oct 2005 16:16:01 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45EC443D46; Tue, 25 Oct 2005 16:16:01 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PGG1bp026210; Tue, 25 Oct 2005 16:16:01 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PGG14n026209; Tue, 25 Oct 2005 16:16:01 GMT (envelope-from wpaul) Message-Id: <200510251616.j9PGG14n026209@repoman.freebsd.org> From: Bill Paul Date: Tue, 25 Oct 2005 16:16:01 +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/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 25 Oct 2005 16:16:01 -0000 wpaul 2005-10-25 16:16:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/if_ndis if_ndis.c if_ndisvar.h Log: MFC: correct some __FreeBSD_version conditionals, fix link state change notifications for RELENG_5. Revision Changes Path 1.69.2.10 +26 -11 src/sys/dev/if_ndis/if_ndis.c 1.15.2.5 +1 -1 src/sys/dev/if_ndis/if_ndisvar.h From owner-cvs-src@FreeBSD.ORG Tue Oct 25 16:31:10 2005 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 A5E0316A420; Tue, 25 Oct 2005 16:31:10 +0000 (GMT) (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 29C7743D45; Tue, 25 Oct 2005 16:31:10 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.200] ([10.0.0.200]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id j9PGV1pU009396 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 25 Oct 2005 09:31:03 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <435E5DB6.5020400@errno.com> Date: Tue, 25 Oct 2005 09:30:46 -0700 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050927) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Roman Kurakin References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> In-Reply-To: <435E04AA.3080605@cronyx.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , src-committers@FreeBSD.org, John Baldwin , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_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, 25 Oct 2005 16:31:10 -0000 Roman Kurakin wrote: > David O'Brien wrote: > >> On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: >> >> >>> On Monday 24 October 2005 03:24 am, David O'Brien wrote: >>> >>> >>>> On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: >>>> >>>> >>>>> rik 2005-09-27 16:57:45 UTC >>>>> FreeBSD src repository >>>>> Modified files: >>>>> sys/dev/cp if_cp.c >>>>> Log: >>>>> Restore if_cp.c 1.27 >>>>> >> >> ... >> >> >>>> You should not have backed out my commit without discussing it with me >>>> and understanding the reason for the change. >>>> Do it again and I *will* be taking it Core. >>>> >>> >>> Looks like he added some function prototypes and moved the cdevsw >>> up. Does i compile now with gcc 4.0? It seems that his changes were >>> a lot simpler and didn't destroy nearly as much CVS history as your >>> changes. It would really be preferable to use simpler solutions >>> rather than destroying version history with really big diffs. >>> >> >> >> Doesn't matter -- it was a clear back out of my recent commit. >> src/MAINTAINERS doesn't list any of these drivers, so what was his >> >> > I do not want to list them in src/MAINTAINERS cause I think it is better > to allow any commits. > Cases such this one is rare. > > Since I didn't get reply from you within a week and I do not like > function relocation and didn't > find explanation from commit log I've backout function relocation, not > fix of forward variable > declaration. > > The commit log didn't state what was the problem variable forward > declaration or/and function > forward declaration. > > rik > >> authority in unilaterally backing out my commit? >> It is also port portable to define static functions early in a file, >> before they are used. Roman, I very much agree with your view on maintainership--when someone is given commit privileges we should trust them to commit changes to any piece of the system. If they are not certain their change is good and/or correct then they should get review (and in many cases review is a good habit regardless). There have been a spate of changes of the above sort that go against this tenet. It's made me stop working on freebsd and I suspect the continued practice will make others find a different place to spend their time. Sam From owner-cvs-src@FreeBSD.ORG Tue Oct 25 16:42:33 2005 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 6CA5716A41F; Tue, 25 Oct 2005 16:42:33 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28B6743D55; Tue, 25 Oct 2005 16:42:24 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 0CDAB1A3C29; Tue, 25 Oct 2005 09:42:24 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DD031531F8; Tue, 25 Oct 2005 12:42:22 -0400 (EDT) Date: Tue, 25 Oct 2005 12:42:22 -0400 From: Kris Kennaway To: John Baldwin Message-ID: <20051025164222.GB16812@xor.obsecurity.org> References: <200510242104.j9OL4J2B045827@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ftEhullJWpWg/VHq" Content-Disposition: inline In-Reply-To: <200510242104.j9OL4J2B045827@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern subr_kdb.c subr_smp.c src/sys/amd64/amd64 mp_machdep.c trap.c src/sys/amd64/conf NOTES src/sys/amd64/include smp.h src/sys/conf options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mp_machdep.c trap.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, 25 Oct 2005 16:42:33 -0000 --ftEhullJWpWg/VHq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 24, 2005 at 09:04:19PM +0000, John Baldwin wrote: > jhb 2005-10-24 21:04:19 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/kern subr_kdb.c subr_smp.c=20 > sys/amd64/amd64 mp_machdep.c trap.c=20 > sys/amd64/conf NOTES=20 > sys/amd64/include smp.h=20 > sys/conf options.amd64 options.i386 options.pc98=20 > sys/i386/conf NOTES=20 > sys/i386/i386 mp_machdep.c trap.c=20 > sys/i386/include smp.h=20 > sys/pc98/conf NOTES=20 > sys/sys smp.h=20 > Log: > Rename the KDB_STOP_NMI kernel option to STOP_NMI and make it apply to = all > IPI_STOP IPIs. I thought we were going to make KDB_STOP_NMI the default (since it's necessary to avoid hangs on panic on SMP machines). That seems like it's more risky now that it's bound up with other code. Kris --ftEhullJWpWg/VHq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDXmBtWry0BWjoQKURAsCuAKCVuyPdTKPPvXKtQvW/CHLOiY6HrwCg9gMK MHnk4yajRellor+gcBtcdAs= =fq/V -----END PGP SIGNATURE----- --ftEhullJWpWg/VHq-- From owner-cvs-src@FreeBSD.ORG Tue Oct 25 17:19:40 2005 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 B315816A420; Tue, 25 Oct 2005 17:19:40 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3732443D58; Tue, 25 Oct 2005 17:19:38 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Tue, 25 Oct 2005 13:36:22 -0400 From: John Baldwin To: obrien@freebsd.org Date: Tue, 25 Oct 2005 13:09:30 -0400 User-Agent: KMail/1.8.2 References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> In-Reply-To: <20051025052018.GE55418@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510251309.31811.jhb@freebsd.org> Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_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, 25 Oct 2005 17:19:40 -0000 On Tuesday 25 October 2005 01:20 am, David O'Brien wrote: > On Mon, Oct 24, 2005 at 10:34:25AM -0400, John Baldwin wrote: > > On Monday 24 October 2005 03:24 am, David O'Brien wrote: > > > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > > > rik 2005-09-27 16:57:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > > > sys/dev/cp if_cp.c > > > > Log: > > > > Restore if_cp.c 1.27 > > ... > > > > You should not have backed out my commit without discussing it with me > > > and understanding the reason for the change. > > > Do it again and I *will* be taking it Core. > > > > Looks like he added some function prototypes and moved the cdevsw up. > > Does i compile now with gcc 4.0? It seems that his changes were a lot > > simpler and didn't destroy nearly as much CVS history as your changes. > > It would really be preferable to use simpler solutions rather than > > destroying version history with really big diffs. > > Doesn't matter -- it was a clear back out of my recent commit. > src/MAINTAINERS doesn't list any of these drivers, so what was his > authority in unilaterally backing out my commit? > It is also port portable to define static functions early in a file, > before they are used. Oh wanh. Does the code as it stands now compile ok with gcc 4.0 or is it still broken? Can you at least answer that question? Also, why is it so bad to use prototypes for static functions and then use them before they are defined? A whole bunch of drivers in the tree do that depending on where they put their cdevsw or DEVICE_METHOD() defintions! Also, anyone with half a brain that reads commit mail knows that rik works on cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim is just a bunch of hot air personally. The goal here is not to be able to point at someone and say "look, he didn't follow the exact letter of sub-section 7 of rule8 !!!!", the goal is to turn out a non-suck OS in an environment via a rather diverse (geographic and otherwise) group of developers. This means that as developers we all need to be more like the software we supposedly work on: strict on what we "send" (how we work with other folks), and liberal on what we "receive" (how we handle interactions with other folks). Rules are not there for people to nitpick. They are there to help enable us to achieve the end goal, but you need to evaluation actions as far as how best to achieve the end goal. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Oct 25 17:19:41 2005 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 BA56C16A422; Tue, 25 Oct 2005 17:19:40 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78DD743D5A; Tue, 25 Oct 2005 17:19:39 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Tue, 25 Oct 2005 13:36:22 -0400 From: John Baldwin To: Kris Kennaway Date: Tue, 25 Oct 2005 13:16:07 -0400 User-Agent: KMail/1.8.2 References: <200510242104.j9OL4J2B045827@repoman.freebsd.org> <20051025164222.GB16812@xor.obsecurity.org> In-Reply-To: <20051025164222.GB16812@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510251316.08672.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern subr_kdb.c subr_smp.c src/sys/amd64/amd64 mp_machdep.c trap.c src/sys/amd64/conf NOTES src/sys/amd64/include smp.h src/sys/conf options.amd64 options.i386 options.pc98 src/sys/i386/conf NOTES src/sys/i386/i386 mp_machdep.c trap.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, 25 Oct 2005 17:19:41 -0000 On Tuesday 25 October 2005 12:42 pm, Kris Kennaway wrote: > On Mon, Oct 24, 2005 at 09:04:19PM +0000, John Baldwin wrote: > > jhb 2005-10-24 21:04:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern subr_kdb.c subr_smp.c > > sys/amd64/amd64 mp_machdep.c trap.c > > sys/amd64/conf NOTES > > sys/amd64/include smp.h > > sys/conf options.amd64 options.i386 options.pc98 > > sys/i386/conf NOTES > > sys/i386/i386 mp_machdep.c trap.c > > sys/i386/include smp.h > > sys/pc98/conf NOTES > > sys/sys smp.h > > Log: > > Rename the KDB_STOP_NMI kernel option to STOP_NMI and make it apply to > > all IPI_STOP IPIs. > > I thought we were going to make KDB_STOP_NMI the default (since it's > necessary to avoid hangs on panic on SMP machines). That seems like > it's more risky now that it's bound up with other code. Well, the MI parts of KDB_STOP_NMI (using stoppedpcbs[] on x86) now is the default. All this does is make it so that all IPI_STOP IPIs (such as those used during shutdown, which is currently the only use outside of KDB) are able to use NMIs now. Also, it makes it simpler to enable stoppedpcbs[] on other archs like sparc64. If you want to turn STOP_NMI on by default that would be fine with me. The NMIs can still be disabled via sysctl/tunable even with the option on. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Tue Oct 25 17:43:38 2005 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 025B516A41F; Tue, 25 Oct 2005 17:43:38 +0000 (GMT) (envelope-from nate@root.org) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id A308843D46; Tue, 25 Oct 2005 17:43:37 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.33] (adsl-67-119-74-222.dsl.sntc01.pacbell.net [67.119.74.222]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id j9PHhZxq020589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 25 Oct 2005 10:43:36 -0700 Message-ID: <435E6EC7.1050308@root.org> Date: Tue, 25 Oct 2005 10:43:35 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Silbersack References: <200510230020.j9N0KD4g046756@repoman.freebsd.org> <20051025031002.B911@odysseus.silby.com> In-Reply-To: <20051025031002.B911@odysseus.silby.com> 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/acpica acpi_smbat.c acpi_smbus.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, 25 Oct 2005 17:43:38 -0000 Mike Silbersack wrote: > > On Sun, 23 Oct 2005, Nate Lawson wrote: > >> njl 2005-10-23 00:20:13 UTC >> >> FreeBSD src repository >> >> Added files: >> sys/dev/acpica acpi_smbat.c acpi_smbus.h >> Log: >> Import ACPI smart battery support. Newer systems (Acer, mostly) do not >> support the CM-battery interface. Smart batteries can eventually be >> supported without ACPI via a separate SMBus interface. The ACPI >> interface >> uses the embedded controller for reading/writing to the SMBus, and >> normal >> ASL definitions for locating the battery controller (since SMBus >> can't be >> enumerated.) Also import definitions for the smart battery interface. >> >> This was written by Hans Petter Selasky with minor cleanups from myself. > > > Nice, I've been waiting for this for a while. Well, sorta waiting. It > turns out that the battery life on my Acer Pentium M laptop is so good > that I can estimate when it'll run out mentally. "Has it been more than > 2 hours since I wandered away from an outlet? Hm, maybe I should return." > > Now I just have to wait for this to be MFC'd to RELENG_6. :) I'd appreciate testing feedback before MFC. And the MFC will be after 6.0. -- Nate From owner-cvs-src@FreeBSD.ORG Tue Oct 25 18:47:13 2005 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 D505616A441; Tue, 25 Oct 2005 18:47:12 +0000 (GMT) (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 9F7AB43D48; Tue, 25 Oct 2005 18:47:12 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIlCfD039607; Tue, 25 Oct 2005 18:47:12 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIlCqn039606; Tue, 25 Oct 2005 18:47:12 GMT (envelope-from rwatson) Message-Id: <200510251847.j9PIlCqn039606@repoman.freebsd.org> From: Robert Watson Date: Tue, 25 Oct 2005 18:47: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/tools/tools/netrate/httpd httpd.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, 25 Oct 2005 18:47:13 -0000 rwatson 2005-10-25 18:47:12 UTC FreeBSD src repository Modified files: tools/tools/netrate/httpd httpd.c Log: Updates and enhancements to the multi-threaded httpd performance test tool: - Use uname(3) to query the OS name to report in the HTTP headers. This is probably more useful than hard-coding FreeBSD. - If no path is specified, create a 1k temporary file and send that instead. Pass a file descriptor into http_serve() rather than using a global fd. - Add more carriage returns to the HTTP headers to be a bit more correct. (Suggested by: andre) - Read to a buffer rather than a single character to reduce the number of recv() system calls pulling in the HTTP request. - Properly wait for two, not one, \n's on input. Revision Changes Path 1.4 +92 -33 src/tools/tools/netrate/httpd/httpd.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 18:57:03 2005 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 B47C616A41F; Tue, 25 Oct 2005 18:57:03 +0000 (GMT) (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 709CC43D45; Tue, 25 Oct 2005 18:57:03 +0000 (GMT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PIv3TE040134; Tue, 25 Oct 2005 18:57:03 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PIv3wm040133; Tue, 25 Oct 2005 18:57:03 GMT (envelope-from brueffer) Message-Id: <200510251857.j9PIv3wm040133@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 25 Oct 2005 18:57: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/share/man/man4 bge.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: Tue, 25 Oct 2005 18:57:04 -0000 brueffer 2005-10-25 18:57:03 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 bge.4 Log: Xref polling(4). Revision Changes Path 1.22 +2 -1 src/share/man/man4/bge.4 From owner-cvs-src@FreeBSD.ORG Tue Oct 25 19:29:03 2005 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 59B8816A41F; Tue, 25 Oct 2005 19:29:03 +0000 (GMT) (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 1672743D46; Tue, 25 Oct 2005 19:29:03 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJT28J042511; Tue, 25 Oct 2005 19:29:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJT2AX042510; Tue, 25 Oct 2005 19:29:02 GMT (envelope-from jhb) Message-Id: <200510251929.j9PJT2AX042510@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 19:29: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 subr_taskqueue.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, 25 Oct 2005 19:29:03 -0000 jhb 2005-10-25 19:29:02 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c Log: Use shorter names for the Giant and fast taskqueues so that their names actually fit. Revision Changes Path 1.30 +2 -2 src/sys/kern/subr_taskqueue.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 19:45:17 2005 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 82AFD16A41F; Tue, 25 Oct 2005 19:45:17 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3DE543D45; Tue, 25 Oct 2005 19:45:16 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (uucp@localhost [127.0.0.1]) by storm.uk.FreeBSD.org (8.13.4/8.13.4) with ESMTP id j9PJjFRv028348; Tue, 25 Oct 2005 20:45:15 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: (from uucp@localhost) by storm.uk.FreeBSD.org (8.13.4/8.12.11/Submit) with UUCP id j9PJjFkr028347; Tue, 25 Oct 2005 20:45:15 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: from grondar.org (localhost [127.0.0.1]) by grunt.grondar.org (8.13.4/8.13.4) with ESMTP id j9PJiFKx021173; Tue, 25 Oct 2005 20:44:15 +0100 (BST) (envelope-from markm@FreeBSD.org) Message-Id: <200510251944.j9PJiFKx021173@grunt.grondar.org> To: John Baldwin From: Mark Murray From: Mark Murray Date: Tue, 25 Oct 2005 20:44:15 +0100 Cc: Roman Kurakin , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_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, 25 Oct 2005 19:45:17 -0000 John Baldwin writes: >Also, anyone with half a brain that reads commit mail knows that rik works on >cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim is just a >bunch of hot air personally. The goal here is not to be able to point at >someone and say "look, he didn't follow the exact letter of sub-section 7 of >rule8 !!!!", the goal is to turn out a non-suck OS in an environment via a >rather diverse (geographic and otherwise) group of developers. This means >that as developers we all need to be more like the software we supposedly >work on: strict on what we "send" (how we work with other folks), and liberal >on what we "receive" (how we handle interactions with other folks). Rules are not there for people to nitpick. They are there to help enable us to >achieve the end goal, but you need to evaluation actions as far as how best >to achieve the end goal. Brilliantly said!! Mr Baldwin, take a bow. M -- Mark R V Murray What is the most interesting question you have asked? What, if any, was the answer? From owner-cvs-src@FreeBSD.ORG Tue Oct 25 19:46:17 2005 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 0B24916A41F; Tue, 25 Oct 2005 19:46:17 +0000 (GMT) (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 9D6BA43D4C; Tue, 25 Oct 2005 19:46:15 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJkFtE043411; Tue, 25 Oct 2005 19:46:15 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJkF7J043410; Tue, 25 Oct 2005 19:46:15 GMT (envelope-from delphij) Message-Id: <200510251946.j9PJkF7J043410@repoman.freebsd.org> From: Xin LI Date: Tue, 25 Oct 2005 19:46: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/ufs/ufs ufs_bmap.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, 25 Oct 2005 19:46:17 -0000 delphij 2005-10-25 19:46:15 UTC FreeBSD src repository Modified files: sys/ufs/ufs ufs_bmap.c Log: Remove an unneeded "a" from comment. Revision Changes Path 1.65 +1 -1 src/sys/ufs/ufs/ufs_bmap.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 19:48:49 2005 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 5A36616A41F; Tue, 25 Oct 2005 19:48:49 +0000 (GMT) (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 D714943D48; Tue, 25 Oct 2005 19:48:48 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJmm47043892; Tue, 25 Oct 2005 19:48:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJmmmj043891; Tue, 25 Oct 2005 19:48:48 GMT (envelope-from jhb) Message-Id: <200510251948.j9PJmmmj043891@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 19:48:48 +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/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 25 Oct 2005 19:48:49 -0000 jhb 2005-10-25 19:48:48 UTC FreeBSD src repository Modified files: sys/alpha/alpha interrupt.c sys/alpha/isa isa.c sys/amd64/amd64 intr_machdep.c sys/amd64/include intr_machdep.h sys/amd64/isa atpic.c sys/arm/arm intr.c sys/dev/sio sio.c sys/dev/uart uart_kbd_sun.c uart_tty.c sys/i386/i386 intr_machdep.c sys/i386/include intr_machdep.h sys/i386/isa atpic.c sys/ia64/ia64 interrupt.c sys/kern kern_clock.c kern_intr.c subr_witness.c sys/powerpc/include intr_machdep.h sys/powerpc/powerpc intr_machdep.c sys/sparc64/include intr_machdep.h sys/sparc64/sparc64 intr_machdep.c sys/sys interrupt.h proc.h Log: Reorganize the interrupt handling code a bit to make a few things cleaner and increase flexibility to allow various different approaches to be tried in the future. - Split struct ithd up into two pieces. struct intr_event holds the list of interrupt handlers associated with interrupt sources. struct intr_thread contains the data relative to an interrupt thread. Currently we still provide a 1:1 relationship of events to threads with the exception that events only have an associated thread if there is at least one threaded interrupt handler attached to the event. This means that on x86 we no longer have 4 bazillion interrupt threads with no handlers. It also means that interrupt events with only INTR_FAST handlers no longer have an associated thread either. - Renamed struct intrhand to struct intr_handler to follow the struct intr_foo naming convention. This did require renaming the powerpc MD struct intr_handler to struct ppc_intr_handler. - INTR_FAST no longer implies INTR_EXCL on all architectures except for powerpc. This means that multiple INTR_FAST handlers can attach to the same interrupt and that INTR_FAST and non-INTR_FAST handlers can attach to the same interrupt. Sharing INTR_FAST handlers may not always be desirable, but having sio(4) and uhci(4) fight over an IRQ isn't fun either. Drivers can always still use INTR_EXCL to ask for an interrupt exclusively. The way this sharing works is that when an interrupt comes in, all the INTR_FAST handlers are executed first, and if any threaded handlers exist, the interrupt thread is scheduled afterwards. This type of layout also makes it possible to investigate using interrupt filters ala OS X where the filter determines whether or not its companion threaded handler should run. - Aside from the INTR_FAST changes above, the impact on MD interrupt code is mostly just 's/ithread/intr_event/'. - A new MI ddb command 'show intrs' walks the list of interrupt events dumping their state. It also has a '/v' verbose switch which dumps info about all of the handlers attached to each event. - We currently don't destroy an interrupt thread when the last threaded handler is removed because it would suck for things like ppbus(8)'s braindead behavior. The code is present, though, it is just under #if 0 for now. - Move the code to actually execute the threaded handlers for an interrrupt event into a separate function so that ithread_loop() becomes more readable. Previously this code was all in the middle of ithread_loop() and indented halfway across the screen. - Made struct intr_thread private to kern_intr.c and replaced td_ithd with a thread private flag TDP_ITHREAD. - In statclock, check curthread against idlethread directly rather than curthread's proc against idlethread's proc. (Not really related to intr changes) Tested on: alpha, amd64, i386, sparc64 Tested on: arm, ia64 (older version of patch by cognet and marcel) Revision Changes Path 1.88 +43 -29 src/sys/alpha/alpha/interrupt.c 1.38 +5 -5 src/sys/alpha/isa/isa.c 1.16 +58 -52 src/sys/amd64/amd64/intr_machdep.c 1.6 +1 -1 src/sys/amd64/include/intr_machdep.h 1.16 +2 -2 src/sys/amd64/isa/atpic.c 1.11 +28 -22 src/sys/arm/arm/intr.c 1.462 +2 -2 src/sys/dev/sio/sio.c 1.6 +1 -1 src/sys/dev/uart/uart_kbd_sun.c 1.24 +2 -2 src/sys/dev/uart/uart_tty.c 1.15 +58 -52 src/sys/i386/i386/intr_machdep.c 1.8 +1 -1 src/sys/i386/include/intr_machdep.h 1.21 +2 -2 src/sys/i386/isa/atpic.c 1.52 +32 -25 src/sys/ia64/ia64/interrupt.c 1.180 +3 -2 src/sys/kern/kern_clock.c 1.127 +437 -270 src/sys/kern/kern_intr.c 1.206 +0 -1 src/sys/kern/subr_witness.c 1.6 +3 -3 src/sys/powerpc/include/intr_machdep.h 1.7 +35 -32 src/sys/powerpc/powerpc/intr_machdep.c 1.14 +1 -1 src/sys/sparc64/include/intr_machdep.h 1.24 +43 -36 src/sys/sparc64/sparc64/intr_machdep.c 1.32 +36 -36 src/sys/sys/interrupt.h 1.440 +1 -3 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Tue Oct 25 19:54:26 2005 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 15BFE16A41F; Tue, 25 Oct 2005 19:54:26 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 472ED43D5A; Tue, 25 Oct 2005 19:54:25 +0000 (GMT) (envelope-from wollman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJsPt0044233; Tue, 25 Oct 2005 19:54:25 GMT (envelope-from wollman@repoman.freebsd.org) Received: (from wollman@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJsPpG044232; Tue, 25 Oct 2005 19:54:25 GMT (envelope-from wollman) Message-Id: <200510251954.j9PJsPpG044232@repoman.freebsd.org> From: Garrett Wollman Date: Tue, 25 Oct 2005 19:54: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/sys unistd.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, 25 Oct 2005 19:54:26 -0000 wollman 2005-10-25 19:54:25 UTC FreeBSD src repository Modified files: sys/sys unistd.h Log: We've supported the _POSIX_MONOTONIC_CLOCK option for a long time. Advertise it. MFC after: 1 week Revision Changes Path 1.43 +1 -1 src/sys/sys/unistd.h From owner-cvs-src@FreeBSD.ORG Tue Oct 25 19:59:23 2005 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 9E34B16A41F; Tue, 25 Oct 2005 19:59:23 +0000 (GMT) (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 448C343D53; Tue, 25 Oct 2005 19:59:23 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PJxNV1044536; Tue, 25 Oct 2005 19:59:23 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PJxNLp044535; Tue, 25 Oct 2005 19:59:23 GMT (envelope-from imp) Message-Id: <200510251959.j9PJxNLp044535@repoman.freebsd.org> From: Warner Losh Date: Tue, 25 Oct 2005 19:59:23 +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/devd devd.cc 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, 25 Oct 2005 19:59:23 -0000 imp 2005-10-25 19:59:23 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/devd devd.cc Log: MFC: 1.26 remove 'string' to avoid shadowing a variable we want to change. Approved by: re@ (scottl) Revision Changes Path 1.22.2.4 +1 -1 src/sbin/devd/devd.cc From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:05:49 2005 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 440F216A41F; Tue, 25 Oct 2005 20:05:49 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C158443D6E; Tue, 25 Oct 2005 20:05:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PK5i0R044823; Tue, 25 Oct 2005 20:05:44 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PK5iVW044822; Tue, 25 Oct 2005 20:05:44 GMT (envelope-from njl) Message-Id: <200510252005.j9PK5iVW044822@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:05: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/usr.sbin/powerd powerd.8 powerd.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, 25 Oct 2005 20:05:49 -0000 njl 2005-10-25 20:05:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/powerd powerd.8 powerd.c Log: MFC: Warn, don't error out when we temporarily can't set the frequency. Accept "maximum" and "minimum" keywords. Set signals in the right place. Approved by: re (scottl) Revision Changes Path 1.5.2.1 +1 -1 src/usr.sbin/powerd/powerd.8 1.6.2.3 +34 -17 src/usr.sbin/powerd/powerd.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:07:48 2005 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 7C94616A41F; Tue, 25 Oct 2005 20:07:48 +0000 (GMT) (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 6882A43D6E; Tue, 25 Oct 2005 20:07:47 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PK7lbw044956; Tue, 25 Oct 2005 20:07:47 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PK7l9F044955; Tue, 25 Oct 2005 20:07:47 GMT (envelope-from imp) Message-Id: <200510252007.j9PK7l9F044955@repoman.freebsd.org> From: Warner Losh Date: Tue, 25 Oct 2005 20:07:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sbin/devd devd.cc 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, 25 Oct 2005 20:07:48 -0000 imp 2005-10-25 20:07:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sbin/devd devd.cc Log: MFC: 1.26 Approved by: re@ (scottl) Revision Changes Path 1.22.2.3.2.1 +1 -1 src/sbin/devd/devd.cc From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:07:53 2005 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 2B14416A420; Tue, 25 Oct 2005 20:07:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F177643D4C; Tue, 25 Oct 2005 20:07:51 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PK7pW4044988; Tue, 25 Oct 2005 20:07:51 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PK7pWK044987; Tue, 25 Oct 2005 20:07:51 GMT (envelope-from njl) Message-Id: <200510252007.j9PK7pWK044987@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:07:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/usr.sbin/powerd powerd.8 powerd.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, 25 Oct 2005 20:07:53 -0000 njl 2005-10-25 20:07:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/powerd powerd.8 powerd.c Log: MFC: powerd.c rev 1.6.2.3, powerd.8 rev 1.5.2.1 Approved by: re (scottl) Revision Changes Path 1.5.6.1 +1 -1 src/usr.sbin/powerd/powerd.8 1.6.2.2.2.1 +34 -17 src/usr.sbin/powerd/powerd.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:10:59 2005 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 769E416A41F; Tue, 25 Oct 2005 20:10:59 +0000 (GMT) (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 D2FD943D6B; Tue, 25 Oct 2005 20:10:56 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKAu0Y045148; Tue, 25 Oct 2005 20:10:56 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKAuES045147; Tue, 25 Oct 2005 20:10:56 GMT (envelope-from jhb) Message-Id: <200510252010.j9PKAuES045147@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:10: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/ddb db_command.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, 25 Oct 2005 20:10:59 -0000 jhb 2005-10-25 20:10:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ddb db_command.c Log: MFC: Rename 'traceall' to 'alltrace' and add a 'bt' alias for 'trace'. Approved by: re (scottl) Revision Changes Path 1.60.2.2 +2 -1 src/sys/ddb/db_command.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:11:58 2005 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 D520B16A420; Tue, 25 Oct 2005 20:11:58 +0000 (GMT) (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 92CD743D46; Tue, 25 Oct 2005 20:11:58 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKBwrX045252; Tue, 25 Oct 2005 20:11:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKBwnm045251; Tue, 25 Oct 2005 20:11:58 GMT (envelope-from jhb) Message-Id: <200510252011.j9PKBwnm045251@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:11:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/ddb db_command.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, 25 Oct 2005 20:11:59 -0000 jhb 2005-10-25 20:11:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/ddb db_command.c Log: MF6: Rename 'traceall' to 'alltrace' and add a 'bt' alias for 'trace'. Approved by: re (scottl) Revision Changes Path 1.60.2.1.2.1 +2 -1 src/sys/ddb/db_command.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:14:10 2005 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 0B8CC16A41F; Tue, 25 Oct 2005 20:14:10 +0000 (GMT) (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 420CE43D55; Tue, 25 Oct 2005 20:14:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKE5i5045375; Tue, 25 Oct 2005 20:14:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKE5JS045374; Tue, 25 Oct 2005 20:14:05 GMT (envelope-from jhb) Message-Id: <200510252014.j9PKE5JS045374@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:14:05 +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 subr_witness.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, 25 Oct 2005 20:14:10 -0000 jhb 2005-10-25 20:14:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern subr_witness.c Log: MFC: Don't panic if a spin lock is initialized that isn't in our static order list. Just warn about it instead. Approved by: re (scottl) Revision Changes Path 1.195.2.4 +16 -7 src/sys/kern/subr_witness.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:17:11 2005 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 C97A216A41F; Tue, 25 Oct 2005 20:17:11 +0000 (GMT) (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 869AE43D4C; Tue, 25 Oct 2005 20:17:11 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKHB5D045535; Tue, 25 Oct 2005 20:17:11 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKHBgM045534; Tue, 25 Oct 2005 20:17:11 GMT (envelope-from jhb) Message-Id: <200510252017.j9PKHBgM045534@repoman.freebsd.org> From: John Baldwin Date: Tue, 25 Oct 2005 20:17:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/kern subr_witness.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, 25 Oct 2005 20:17:12 -0000 jhb 2005-10-25 20:17:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern subr_witness.c Log: MF6: Don't panic if a spin lock is initialized that isn't in our static order list. Just warn about it instead. Approved by: re (scottl) Revision Changes Path 1.195.2.3.2.1 +16 -7 src/sys/kern/subr_witness.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:33:32 2005 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 4D09316A41F; Tue, 25 Oct 2005 20:33:32 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 099C143D45; Tue, 25 Oct 2005 20:33:32 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKXVAT046405; Tue, 25 Oct 2005 20:33:31 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKXVu4046404; Tue, 25 Oct 2005 20:33:31 GMT (envelope-from kris) Message-Id: <200510252033.j9PKXVu4046404@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:33:31 +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/nullfs null_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: Tue, 25 Oct 2005 20:33:32 -0000 kris 2005-10-25 20:33:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/nullfs null_vfsops.c Log: MFC 1.73: Reflect mpsafety of the underlying filesystem in the nullfs image. Approved by: re (scottl) Revision Changes Path 1.72.2.1 +1 -0 src/sys/fs/nullfs/null_vfsops.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:34:00 2005 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 7572716A41F; Tue, 25 Oct 2005 20:34:00 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32E2343D4C; Tue, 25 Oct 2005 20:34:00 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKY0ua046455; Tue, 25 Oct 2005 20:34:00 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKY0vs046454; Tue, 25 Oct 2005 20:34:00 GMT (envelope-from kris) Message-Id: <200510252034.j9PKY0vs046454@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:34:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/fs/nullfs null_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: Tue, 25 Oct 2005 20:34:00 -0000 kris 2005-10-25 20:34:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/fs/nullfs null_vfsops.c Log: MFC 1.73: Reflect mpsafety of the underlying filesystem in the nullfs image. Approved by: re (scottl) Revision Changes Path 1.72.4.1 +1 -0 src/sys/fs/nullfs/null_vfsops.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:42:07 2005 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 84E7616A41F; Tue, 25 Oct 2005 20:42:07 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42A4C43D48; Tue, 25 Oct 2005 20:42:07 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKg7UC046804; Tue, 25 Oct 2005 20:42:07 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKg7PR046803; Tue, 25 Oct 2005 20:42:07 GMT (envelope-from kris) Message-Id: <200510252042.j9PKg7PR046803@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:42:07 +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: Tue, 25 Oct 2005 20:42:07 -0000 kris 2005-10-25 20:42:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_subr.c Log: MFC r1.650: Default to mpsafevfs=1 on sparc64 Approved by: re (scottl) Revision Changes Path 1.635.2.10 +2 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:43:26 2005 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 2F2F216A41F; Tue, 25 Oct 2005 20:43:26 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E08A143D46; Tue, 25 Oct 2005 20:43:25 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKhP33046891; Tue, 25 Oct 2005 20:43:25 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKhPuq046890; Tue, 25 Oct 2005 20:43:25 GMT (envelope-from kris) Message-Id: <200510252043.j9PKhPuq046890@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 25 Oct 2005 20:43:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 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: Tue, 25 Oct 2005 20:43:26 -0000 kris 2005-10-25 20:43:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern vfs_subr.c Log: MFC r1.650: Default to mpsafevfs=1 on sparc64 Approved by: re (scottl) Revision Changes Path 1.635.2.9.2.1 +2 -1 src/sys/kern/vfs_subr.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:51:25 2005 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 EFA7416A41F; Tue, 25 Oct 2005 20:51:25 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE07743D46; Tue, 25 Oct 2005 20:51:25 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKpPEu054517; Tue, 25 Oct 2005 20:51:25 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKpPMT054516; Tue, 25 Oct 2005 20:51:25 GMT (envelope-from njl) Message-Id: <200510252051.j9PKpPMT054516@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:51:25 +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 acpi.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, 25 Oct 2005 20:51:26 -0000 njl 2005-10-25 20:51:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/acpica acpi.c Log: MFC rev 1.216: Don't disable PCI link devices even when they're !enabled Approved by: re (scottl) Revision Changes Path 1.214.2.1 +6 -1 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:51:59 2005 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 3E04816A41F; Tue, 25 Oct 2005 20:51:59 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFC6543D53; Tue, 25 Oct 2005 20:51:58 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKpwBr054563; Tue, 25 Oct 2005 20:51:58 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKpwMT054562; Tue, 25 Oct 2005 20:51:58 GMT (envelope-from njl) Message-Id: <200510252051.j9PKpwMT054562@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:51:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/acpica acpi.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, 25 Oct 2005 20:51:59 -0000 njl 2005-10-25 20:51:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/acpica acpi.c Log: MFC rev 1.214.2.1: Don't disable PCI link devices even when they're !enabled Approved by: re (scottl) Revision Changes Path 1.214.4.1 +6 -1 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:52:44 2005 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 8901D16A41F; Tue, 25 Oct 2005 20:52:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4741043D46; Tue, 25 Oct 2005 20:52:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKqivE054606; Tue, 25 Oct 2005 20:52:44 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKqib2054605; Tue, 25 Oct 2005 20:52:44 GMT (envelope-from njl) Message-Id: <200510252052.j9PKqib2054605@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:52: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/sys/i386/cpufreq p4tcc.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, 25 Oct 2005 20:52:44 -0000 njl 2005-10-25 20:52:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/cpufreq p4tcc.c Log: MFC rev 1.12: set to 100% on boot Approved by: re (scottl) Revision Changes Path 1.11.2.1 +8 -0 src/sys/i386/cpufreq/p4tcc.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:53:23 2005 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 4548516A41F; Tue, 25 Oct 2005 20:53:23 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0388843D45; Tue, 25 Oct 2005 20:53:23 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKrMGE054684; Tue, 25 Oct 2005 20:53:22 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKrMFH054683; Tue, 25 Oct 2005 20:53:22 GMT (envelope-from njl) Message-Id: <200510252053.j9PKrMFH054683@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 20:53:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/i386/cpufreq p4tcc.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, 25 Oct 2005 20:53:23 -0000 njl 2005-10-25 20:53:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/i386/cpufreq p4tcc.c Log: MFC rev 1.11.2.1: set to 100% on boot Approved by: re (scottl) Revision Changes Path 1.11.6.1 +8 -0 src/sys/i386/cpufreq/p4tcc.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:56:12 2005 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 8904416A41F; Tue, 25 Oct 2005 20:56:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48FF843D45; Tue, 25 Oct 2005 20:56:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKuC25054880; Tue, 25 Oct 2005 20:56:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKuC6F054879; Tue, 25 Oct 2005 20:56:12 GMT (envelope-from ru) Message-Id: <200510252056.j9PKuC6F054879@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 25 Oct 2005 20:56: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/netgraph ng_split.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, 25 Oct 2005 20:56:12 -0000 ru 2005-10-25 20:56:12 UTC FreeBSD src repository Modified files: sys/netgraph ng_split.h Log: Make the cookie constant name canonical. Revision Changes Path 1.5 +1 -1 src/sys/netgraph/ng_split.h From owner-cvs-src@FreeBSD.ORG Tue Oct 25 20:58:31 2005 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 3DF2316A41F; Tue, 25 Oct 2005 20:58:31 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F19D643D4C; Tue, 25 Oct 2005 20:58:30 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PKwULm054996; Tue, 25 Oct 2005 20:58:30 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PKwUp0054995; Tue, 25 Oct 2005 20:58:30 GMT (envelope-from ru) Message-Id: <200510252058.j9PKwUp0054995@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 25 Oct 2005 20:58:30 +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/libnetgraph debug.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, 25 Oct 2005 20:58:31 -0000 ru 2005-10-25 20:58:30 UTC FreeBSD src repository Modified files: lib/libnetgraph debug.c Log: Recognize all current standard node types. Revision Changes Path 1.9 +42 -4 src/lib/libnetgraph/debug.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 21:15:47 2005 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 E9B3016A41F; Tue, 25 Oct 2005 21:15:47 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9A1B43D45; Tue, 25 Oct 2005 21:15:47 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLFlq5055906; Tue, 25 Oct 2005 21:15:47 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLFl72055905; Tue, 25 Oct 2005 21:15:47 GMT (envelope-from njl) Message-Id: <200510252115.j9PLFl72055905@repoman.freebsd.org> From: Nate Lawson Date: Tue, 25 Oct 2005 21:15: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/dev/acpica acpi_cpu.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, 25 Oct 2005 21:15:48 -0000 njl 2005-10-25 21:15:47 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cpu.c Log: If we're trying to use C2/3 and reads from the register are returning immediately, back off to the next higher Cx sleep state. Some machines with a Via chipset report a valid C3 but a register read doesn't actually halt the CPU. This would cause the machine to appear unresponsive as it repeatedly called cpu_idle() which immediately returned. Causing interrupts (i.e. by pressing the power button) would cause the system to make forward progress, showing that it wasn't actually hung. Also, enable interrupts a little earlier. We don't need them disabled to calculate the delta time for the read. Reported by: silby MFC after: 2 weeks Revision Changes Path 1.59 +24 -3 src/sys/dev/acpica/acpi_cpu.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 21:31:23 2005 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 7035316A41F; Tue, 25 Oct 2005 21:31:23 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E8E743D48; Tue, 25 Oct 2005 21:31:23 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9PLVNWv059346; Tue, 25 Oct 2005 21:31:23 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9PLVNfw059339; Tue, 25 Oct 2005 21:31:23 GMT (envelope-from grehan) Message-Id: <200510252131.j9PLVNfw059339@repoman.freebsd.org> From: Peter Grehan Date: Tue, 25 Oct 2005 21:31: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/sys/dev/zs zs.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, 25 Oct 2005 21:31:23 -0000 grehan 2005-10-25 21:31:22 UTC FreeBSD src repository Modified files: sys/dev/zs zs.c Log: Catch up with interrupt-thread changes. Revision Changes Path 1.32 +1 -1 src/sys/dev/zs/zs.c From owner-cvs-src@FreeBSD.ORG Tue Oct 25 22:45:41 2005 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 1050516A41F; Tue, 25 Oct 2005 22:45:41 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD41F43D48; Tue, 25 Oct 2005 22:45:40 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 639753093; Tue, 25 Oct 2005 17:45:40 -0500 (CDT) Date: Tue, 25 Oct 2005 17:45:40 -0500 To: John Baldwin Message-ID: <20051025224540.GB4123@soaustin.net> References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510251948.j9PJmmmj043891@repoman.freebsd.org> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 25 Oct 2005 22:45:41 -0000 On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > Reorganize the interrupt handling code a bit to make a few things cleaner > and increase flexibility to allow various different approaches to be tried > in the future. Wow. Having (in a previous existance) worked on real-time OS interrupt handlers I can likely guess how much work went into this. Nice. mcl From owner-cvs-src@FreeBSD.ORG Wed Oct 26 00:06:58 2005 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 EC31D16A41F; Wed, 26 Oct 2005 00:06:58 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9CBB43D45; Wed, 26 Oct 2005 00:06:58 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q06wF5007594; Wed, 26 Oct 2005 00:06:58 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q06wkG007593; Wed, 26 Oct 2005 00:06:58 GMT (envelope-from peter) Message-Id: <200510260006.j9Q06wkG007593@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 00:06: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/lib/libkvm kvm_amd64.c kvm_i386.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, 26 Oct 2005 00:06:59 -0000 peter 2005-10-26 00:06:58 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libkvm kvm_amd64.c kvm_i386.c Log: MFC: Fix fencepost error that made libkvm fail to read crashdumps. Approved by: re Revision Changes Path 1.18.2.1 +3 -3 src/lib/libkvm/kvm_amd64.c 1.17.2.1 +4 -4 src/lib/libkvm/kvm_i386.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 00:07:26 2005 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 4075716A423; Wed, 26 Oct 2005 00:07:26 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A80F243D5D; Wed, 26 Oct 2005 00:07:25 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q07P66007677; Wed, 26 Oct 2005 00:07:25 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q07Pl8007676; Wed, 26 Oct 2005 00:07:25 GMT (envelope-from peter) Message-Id: <200510260007.j9Q07Pl8007676@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 00:07:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/lib/libkvm kvm_amd64.c kvm_i386.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, 26 Oct 2005 00:07:26 -0000 peter 2005-10-26 00:07:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) lib/libkvm kvm_amd64.c kvm_i386.c Log: MFC: Fix fencepost error that made libkvm fail to read crashdumps. Approved by: re Revision Changes Path 1.18.4.1 +3 -3 src/lib/libkvm/kvm_amd64.c 1.17.4.1 +4 -4 src/lib/libkvm/kvm_i386.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 00:55:23 2005 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 445E316A41F; Wed, 26 Oct 2005 00:55:23 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D071743D58; Wed, 26 Oct 2005 00:55:22 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q0tMpf023021; Wed, 26 Oct 2005 00:55:22 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q0tMk8023020; Wed, 26 Oct 2005 00:55:22 GMT (envelope-from grehan) Message-Id: <200510260055.j9Q0tMk8023020@repoman.freebsd.org> From: Peter Grehan Date: Wed, 26 Oct 2005 00: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/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: Wed, 26 Oct 2005 00:55:23 -0000 grehan 2005-10-26 00:55:22 UTC FreeBSD src repository Modified files: sys/dev/mii brgphy.c Log: Oops, forgot to add in r1.36 - MFC after: 1 day (it's been in HEAD for quite a while now..) Revision Changes Path 1.37 +0 -0 src/sys/dev/mii/brgphy.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 01:49:12 2005 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 30F3816A41F; Wed, 26 Oct 2005 01:49:12 +0000 (GMT) (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 E2EF343D45; Wed, 26 Oct 2005 01:49:11 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q1nBpW032831; Wed, 26 Oct 2005 01:49:11 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q1nBEN032830; Wed, 26 Oct 2005 01:49:11 GMT (envelope-from marcel) Message-Id: <200510260149.j9Q1nBEN032830@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 26 Oct 2005 01:49: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/dev/uart uart_bus_pci.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, 26 Oct 2005 01:49:12 -0000 marcel 2005-10-26 01:49:11 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_pci.c Log: Remove PCI IDs for multiport cards: o Oxford Semiconductor PCI Dual Port Serial o Netmos Nm9845 PCI Bridge with Dual UART Add PCI IDs for single-port cards: o Various SIIG Cyber Serial o Oxford Semiconductor OXCB950 UART Update description as per puc(4). Revision Changes Path 1.6 +15 -10 src/sys/dev/uart/uart_bus_pci.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 02:22:30 2005 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 4C94916A41F; Wed, 26 Oct 2005 02:22:30 +0000 (GMT) (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 54D9D43D68; Wed, 26 Oct 2005 02:22:28 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q2MS2Q039926; Wed, 26 Oct 2005 02:22:28 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q2MSfF039925; Wed, 26 Oct 2005 02:22:28 GMT (envelope-from marcel) Message-Id: <200510260222.j9Q2MSfF039925@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 26 Oct 2005 02:22:28 +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/gnu/usr.bin/gdb/kgdb main.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, 26 Oct 2005 02:22:30 -0000 marcel 2005-10-26 02:22:28 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/kgdb main.c Log: Fix dump of the unread portion of the kernel message buffer. PR: bin/87964 Submitted by: Frank Mayhar frank at exit dot com Revision Changes Path 1.10 +4 -0 src/gnu/usr.bin/gdb/kgdb/main.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 03:24:29 2005 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 3B49216A41F; Wed, 26 Oct 2005 03:24:29 +0000 (GMT) (envelope-from takawata@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EECF243D45; Wed, 26 Oct 2005 03:24:28 +0000 (GMT) (envelope-from takawata@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q3OSKd045830; Wed, 26 Oct 2005 03:24:28 GMT (envelope-from takawata@repoman.freebsd.org) Received: (from takawata@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q3OSVf045829; Wed, 26 Oct 2005 03:24:28 GMT (envelope-from takawata) Message-Id: <200510260324.j9Q3OSVf045829@repoman.freebsd.org> From: Takanori Watanabe Date: Wed, 26 Oct 2005 03:24:28 +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/label g_label_ntfs.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, 26 Oct 2005 03:24:29 -0000 takawata 2005-10-26 03:24:28 UTC FreeBSD src repository Modified files: sys/geom/label g_label_ntfs.c Log: Add checking for File record magic. Revision Changes Path 1.3 +6 -0 src/sys/geom/label/g_label_ntfs.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 04:12:35 2005 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 810A216A41F; Wed, 26 Oct 2005 04:12:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E28443D46; Wed, 26 Oct 2005 04:12:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4CZjR053255; Wed, 26 Oct 2005 04:12:35 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4CZfP053254; Wed, 26 Oct 2005 04:12:35 GMT (envelope-from yar) Message-Id: <200510260412.j9Q4CZfP053254@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 04:12: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/etc rc.subr src/share/man/man8 rc.subr.8 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, 26 Oct 2005 04:12:35 -0000 yar 2005-10-26 04:12:34 UTC FreeBSD src repository Modified files: etc rc.subr share/man/man8 rc.subr.8 Log: Document that `reload' is not provided by default yet it can be enabled when applicable. Revision Changes Path 1.41 +2 -0 src/etc/rc.subr 1.7 +11 -1 src/share/man/man8/rc.subr.8 From owner-cvs-src@FreeBSD.ORG Wed Oct 26 04:20:19 2005 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 0CA1C16A41F; Wed, 26 Oct 2005 04:20:19 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFAC743D48; Wed, 26 Oct 2005 04:20:18 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4KICf054313; Wed, 26 Oct 2005 04:20:18 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4KIaO054312; Wed, 26 Oct 2005 04:20:18 GMT (envelope-from yar) Message-Id: <200510260420.j9Q4KIaO054312@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 04:20: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/share/man/man8 rc.subr.8 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, 26 Oct 2005 04:20:19 -0000 yar 2005-10-26 04:20:18 UTC FreeBSD src repository Modified files: share/man/man8 rc.subr.8 Log: Use consistent punctuation and vertical indenting around .Dl's. Wrap a too long line. Revision Changes Path 1.8 +10 -8 src/share/man/man8/rc.subr.8 From owner-cvs-src@FreeBSD.ORG Wed Oct 26 04:32:32 2005 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 3B4CB16A41F; Wed, 26 Oct 2005 04:32:32 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE9B843D45; Wed, 26 Oct 2005 04:32:31 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q4WVkO055223; Wed, 26 Oct 2005 04:32:31 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q4WVBq055222; Wed, 26 Oct 2005 04:32:31 GMT (envelope-from yar) Message-Id: <200510260432.j9Q4WVBq055222@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 04:32: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/etc rc.subr 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, 26 Oct 2005 04:32:32 -0000 yar 2005-10-26 04:32:31 UTC FreeBSD src repository Modified files: etc rc.subr Log: Override $command with $foo_program only if $command has been set in the first place. This should reduce unwanted side-effects in rc.d scripts that don't mean to use $command and rc.subr(8) methods associated with it at all. Discussed with: brooks Reviewed by: -rc (silence) Revision Changes Path 1.42 +1 -3 src/etc/rc.subr From owner-cvs-src@FreeBSD.ORG Wed Oct 26 05:57:35 2005 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 DA99B16A41F; Wed, 26 Oct 2005 05:57:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9729B43D49; Wed, 26 Oct 2005 05:57:35 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q5vZp2076712; Wed, 26 Oct 2005 05:57:35 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q5vZ7J076711; Wed, 26 Oct 2005 05:57:35 GMT (envelope-from yar) Message-Id: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 26 Oct 2005 05:57:35 +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 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, 26 Oct 2005 05:57:36 -0000 yar 2005-10-26 05:57:35 UTC FreeBSD src repository Modified files: sys/netinet ip_carp.c Log: Since carp(4) interfaces presently are kinda fake yet possess IP addresses, mark them with LOOPBACK so that routing daemons take them easy for link-state routing protocols. Reviewed by: glebius Revision Changes Path 1.34 +1 -1 src/sys/netinet/ip_carp.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 06:17:28 2005 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 B6CB216A41F; Wed, 26 Oct 2005 06:17:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB01843D5C; Wed, 26 Oct 2005 06:17:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6HRKp082377; Wed, 26 Oct 2005 06:17:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6HRqh082376; Wed, 26 Oct 2005 06:17:27 GMT (envelope-from ru) Message-Id: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 26 Oct 2005 06:17: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/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 06:17:28 -0000 ru 2005-10-26 06:17:27 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c Log: Catch up with new interrupt handling code. Revision Changes Path 1.16 +3 -3 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 06:40:22 2005 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 C045316A41F; Wed, 26 Oct 2005 06:40:22 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D44643D45; Wed, 26 Oct 2005 06:40:22 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6eM1T087562; Wed, 26 Oct 2005 06:40:22 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6eMHQ087561; Wed, 26 Oct 2005 06:40:22 GMT (envelope-from ru) Message-Id: <200510260640.j9Q6eMHQ087561@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 26 Oct 2005 06:40: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/sys/dev/cy cy.c src/sys/dev/rc rc.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, 26 Oct 2005 06:40:22 -0000 ru 2005-10-26 06:40:22 UTC FreeBSD src repository Modified files: sys/dev/cy cy.c sys/dev/rc rc.c Log: Catch up with new interrupt handling code. Revision Changes Path 1.162 +2 -2 src/sys/dev/cy/cy.c 1.101 +2 -2 src/sys/dev/rc/rc.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 06:44:59 2005 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 AAA6B16A41F; Wed, 26 Oct 2005 06:44:59 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66D9843D4C; Wed, 26 Oct 2005 06:44:59 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6ixnF088882; Wed, 26 Oct 2005 06:44:59 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6ixmT088881; Wed, 26 Oct 2005 06:44:59 GMT (envelope-from ru) Message-Id: <200510260644.j9Q6ixmT088881@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 26 Oct 2005 06:44: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/cx if_cx.c src/sys/dev/sab sab.c src/sys/pc98/cbus sio.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, 26 Oct 2005 06:44:59 -0000 ru 2005-10-26 06:44:59 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/sab sab.c sys/pc98/cbus sio.c Log: Catch up with new interrupt handling code. Revision Changes Path 1.50 +2 -2 src/sys/dev/cx/if_cx.c 1.41 +1 -1 src/sys/dev/sab/sab.c 1.238 +2 -2 src/sys/pc98/cbus/sio.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 06:52:58 2005 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 AE74D16A41F; Wed, 26 Oct 2005 06:52:58 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D30543D46; Wed, 26 Oct 2005 06:52:58 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6qwBu090002; Wed, 26 Oct 2005 06:52:58 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6qwQb090001; Wed, 26 Oct 2005 06:52:58 GMT (envelope-from wpaul) Message-Id: <200510260652.j9Q6qwQb090001@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 06:52: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/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.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, 26 Oct 2005 06:52:58 -0000 wpaul 2005-10-26 06:52:58 UTC FreeBSD src repository Modified files: sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c Log: Get rid of the timer tracking and reaping code in NdisMInitializeTimer() and ndis_halt_nic(). It's been disabled for some time anyway, and it turns out there's a possible deadlock in NdisMInitializeTimer() when acquiring the miniport block lock to modify the timer list: it's possible for a driver to call NdisMInitializeTimer() when the miniport block lock has already been acquired by an earlier piece of code. You can't acquire the same spinlock twice, so this can deadlock. Also, implement MmMapIoSpace() and MmUnmapIoSpace(), and make NdisMMapIoSpace() and NdisMUnmapIoSpace() use them. There are some drivers that want MmMapIoSpace() and MmUnmapIoSpace() so that they can map arbitrary register spaces not directly associated with their device resources. For example, there's an Atheros driver for a miniPci card (0x168C:0x1014) on the IBM Thinkpad x40 that wants to map some I/O spaces at 0xF00000 and 0xE00000 which are held by the acpi0 device. I don't know what it wants these ranges for, but if it can't map and access them, the MiniportInitialize() method fails. Revision Changes Path 1.89 +0 -23 src/sys/compat/ndis/kern_ndis.c 1.41 +2 -0 src/sys/compat/ndis/ntoskrnl_var.h 1.98 +3 -24 src/sys/compat/ndis/subr_ndis.c 1.78 +113 -0 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 06:55:52 2005 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 0AFDC16A41F; Wed, 26 Oct 2005 06:55:52 +0000 (GMT) (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 9037443D80; Wed, 26 Oct 2005 06:55:46 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6tkPb090415; Wed, 26 Oct 2005 06:55:46 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6tkeI090414; Wed, 26 Oct 2005 06:55:46 GMT (envelope-from davidxu) Message-Id: <200510260655.j9Q6tkeI090414@repoman.freebsd.org> From: David Xu Date: Wed, 26 Oct 2005 06:55: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/sys umtx.h src/sys/kern kern_thr.c kern_umtx.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, 26 Oct 2005 06:55:52 -0000 davidxu 2005-10-26 06:55:46 UTC FreeBSD src repository Modified files: sys/sys umtx.h sys/kern kern_thr.c kern_umtx.c Log: do umtx_wake at userland thread exit address, so that others userland threads can wait for a thread to exit, and safely assume that the thread has left userland and is no longer using its userland stack, this is necessary for pthread_join when a thread is waiting for another thread to exit which has user customized stack, after pthread_join returns, the userland stack can be reused for other purposes, without this change, the joiner thread has to spin at the address to ensure the thread is really exited. Revision Changes Path 1.36 +5 -1 src/sys/kern/kern_thr.c 1.34 +3 -3 src/sys/kern/kern_umtx.c 1.17 +2 -0 src/sys/sys/umtx.h From owner-cvs-src@FreeBSD.ORG Wed Oct 26 06:56:23 2005 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 5808116A41F; Wed, 26 Oct 2005 06:56:23 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1298643D73; Wed, 26 Oct 2005 06:56:23 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q6uMbH090483; Wed, 26 Oct 2005 06:56:22 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q6uMM9090482; Wed, 26 Oct 2005 06:56:22 GMT (envelope-from wpaul) Message-Id: <200510260656.j9Q6uMM9090482@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 06:56:22 +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/sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.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, 26 Oct 2005 06:56:23 -0000 wpaul 2005-10-26 06:56:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c Log: MFC: implement MmMapIoSpace() and MmUnmapIoSpace(), remove old timer tracking code to fix deadlock in NdisMInitializeTimer(). Revision Changes Path 1.60.2.8 +0 -23 src/sys/compat/ndis/kern_ndis.c 1.17.2.10 +2 -0 src/sys/compat/ndis/ntoskrnl_var.h 1.67.2.11 +3 -24 src/sys/compat/ndis/subr_ndis.c 1.43.2.11 +113 -0 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 07:11:44 2005 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 57DDD16A428; Wed, 26 Oct 2005 07:11:44 +0000 (GMT) (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 1240B43D45; Wed, 26 Oct 2005 07:11:44 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q7Bh79092201; Wed, 26 Oct 2005 07:11:43 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q7BhRu092197; Wed, 26 Oct 2005 07:11:43 GMT (envelope-from davidxu) Message-Id: <200510260711.j9Q7BhRu092197@repoman.freebsd.org> From: David Xu Date: Wed, 26 Oct 2005 07:11: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/lib/libthr/thread thr_exit.c thr_join.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, 26 Oct 2005 07:11:44 -0000 davidxu 2005-10-26 07:11:43 UTC FreeBSD src repository Modified files: lib/libthr/thread thr_exit.c thr_join.c Log: Follow the change in kernel, joiner thread just waits at thread id address, let kernel wake it up. Revision Changes Path 1.19 +5 -2 src/lib/libthr/thread/thr_exit.c 1.18 +5 -4 src/lib/libthr/thread/thr_join.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 07:16:32 2005 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 E97FC16A41F; Wed, 26 Oct 2005 07:16:32 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A043743D48; Wed, 26 Oct 2005 07:16:32 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9Q7GS77059606; Wed, 26 Oct 2005 07:16:29 GMT (envelope-from davidxu@freebsd.org) Message-ID: <435F2D4F.4090601@freebsd.org> Date: Wed, 26 Oct 2005 15:16:31 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200510260711.j9Q7BhRu092197@repoman.freebsd.org> In-Reply-To: <200510260711.j9Q7BhRu092197@repoman.freebsd.org> 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/lib/libthr/thread thr_exit.c thr_join.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, 26 Oct 2005 07:16:33 -0000 David Xu wrote: > davidxu 2005-10-26 07:11:43 UTC > > FreeBSD src repository > > Modified files: > lib/libthr/thread thr_exit.c thr_join.c > Log: > Follow the change in kernel, joiner thread just waits at thread id > address, let kernel wake it up. > > Revision Changes Path > 1.19 +5 -2 src/lib/libthr/thread/thr_exit.c > 1.18 +5 -4 src/lib/libthr/thread/thr_join.c > > Forgot to say: MFC: after 3 days. From owner-cvs-src@FreeBSD.ORG Wed Oct 26 07:18:38 2005 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 4380116A41F; Wed, 26 Oct 2005 07:18:38 +0000 (GMT) (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 F05A743D48; Wed, 26 Oct 2005 07:18:37 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9Q7Ib3E092953; Wed, 26 Oct 2005 07:18:37 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9Q7Ib6V092952; Wed, 26 Oct 2005 07:18:37 GMT (envelope-from glebius) Message-Id: <200510260718.j9Q7Ib6V092952@repoman.freebsd.org> From: Gleb Smirnoff Date: Wed, 26 Oct 2005 07:18:37 +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_exit.c src/sys/nfsclient nfs_lock.c nlminfo.h src/sys/sys lockf.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, 26 Oct 2005 07:18:38 -0000 glebius 2005-10-26 07:18:37 UTC FreeBSD src repository Modified files: sys/kern kern_exit.c sys/nfsclient nfs_lock.c nlminfo.h sys/sys lockf.h Log: - Fix leak of struct nlminfo on process exit. - Fix malloc type collision, that made the above problem difficult to understand. Reported by: Vladimir Sharun Revision Changes Path 1.269 +9 -0 src/sys/kern/kern_exit.c 1.41 +15 -1 src/sys/nfsclient/nfs_lock.c 1.3 +1 -3 src/sys/nfsclient/nlminfo.h 1.19 +0 -4 src/sys/sys/lockf.h From owner-cvs-src@FreeBSD.ORG Wed Oct 26 09:11:12 2005 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 5A58916A41F; Wed, 26 Oct 2005 09:11:12 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4A2143D58; Wed, 26 Oct 2005 09:11:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 104C946BB3; Wed, 26 Oct 2005 05:11:09 -0400 (EDT) Date: Wed, 26 Oct 2005 10:11:08 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: <200510252010.j9PKAuES045147@repoman.freebsd.org> Message-ID: <20051026101024.A32255@fledge.watson.org> References: <200510252010.j9PKAuES045147@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/ddb db_command.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, 26 Oct 2005 09:11:12 -0000 On Tue, 25 Oct 2005, John Baldwin wrote: > jhb 2005-10-25 20:10:56 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/ddb db_command.c > Log: > MFC: Rename 'traceall' to 'alltrace' and add a 'bt' alias for 'trace'. > > Approved by: re (scottl) Might want to send a note to current@ and stable@ about the recent debugger additions and renames. The additions are useful, and the renames are for things that haven't been around long, but it would prevent some toe-stubbing I suspect. Thanks! Robert N M Watson From owner-cvs-src@FreeBSD.ORG Wed Oct 26 09:15:24 2005 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 6F3D916A41F; Wed, 26 Oct 2005 09:15:24 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D450043D60; Wed, 26 Oct 2005 09:15:10 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 12EBB46B93; Wed, 26 Oct 2005 05:15:10 -0400 (EDT) Date: Wed, 26 Oct 2005 10:15:09 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Yar Tikhiy In-Reply-To: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> Message-ID: <20051026101319.A32255@fledge.watson.org> References: <200510260557.j9Q5vZ7J076711@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/netinet ip_carp.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, 26 Oct 2005 09:15:24 -0000 On Wed, 26 Oct 2005, Yar Tikhiy wrote: > Since carp(4) interfaces presently are kinda fake yet possess > IP addresses, mark them with LOOPBACK so that routing daemons > take them easy for link-state routing protocols. > > Reviewed by: glebius Be aware that several network protocols, including IPv4 and IPv6, have special-case handling for interfaces tagged as IFF_LOOPBACK. I don't know whether this is a problem or not, but it's something you might want to investigate. I've previously run into problems with if_disc because it's marked as IFF_LOOPBACK and IPv6 has tried to use it for things that are not appropriate with if_disc -- unfortunately, I don't remember the details. I think we may actually be in need of either a new flag, IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable way for protocols to ask if an interface is a loopback interface or not. Robert N M Watson From owner-cvs-src@FreeBSD.ORG Wed Oct 26 09:35:39 2005 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 3EA2A16A41F; Wed, 26 Oct 2005 09:35:39 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8870E43D46; Wed, 26 Oct 2005 09:35:38 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j9Q9Zawb092489 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 26 Oct 2005 13:35:37 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j9Q9ZaXp092488; Wed, 26 Oct 2005 13:35:36 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Wed, 26 Oct 2005 13:35:36 +0400 From: Gleb Smirnoff To: Robert Watson Message-ID: <20051026093536.GF41520@cell.sick.ru> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026101319.A32255@fledge.watson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20051026101319.A32255@fledge.watson.org> User-Agent: Mutt/1.5.6i Cc: cvs-src@FreeBSD.org, Yar Tikhiy , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 26 Oct 2005 09:35:39 -0000 On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: R> I think we may actually be in need of either a new flag, R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable way R> for protocols to ask if an interface is a loopback interface or not. I'd prefer to rewrite those subsystems that use interface layer but aren't actually interfaces. I have plans to do this for CARP. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Wed Oct 26 09:58:44 2005 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 9E59316A41F; Wed, 26 Oct 2005 09:58:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE8FE43D58; Wed, 26 Oct 2005 09:58:43 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 642D446B8E; Wed, 26 Oct 2005 05:58:43 -0400 (EDT) Date: Wed, 26 Oct 2005 10:58:43 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Gleb Smirnoff In-Reply-To: <20051026093536.GF41520@cell.sick.ru> Message-ID: <20051026105820.X32255@fledge.watson.org> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026101319.A32255@fledge.watson.org> <20051026093536.GF41520@cell.sick.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, Yar Tikhiy , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 26 Oct 2005 09:58:44 -0000 On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > R> I think we may actually be in need of either a new flag, > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable way > R> for protocols to ask if an interface is a loopback interface or not. > > I'd prefer to rewrite those subsystems that use interface layer but > aren't actually interfaces. I have plans to do this for CARP. At least in the case of if_disc, this won't help. I'm not quite sure why if_disc is IFF_LOOPBACK. Robert N M Watson From owner-cvs-src@FreeBSD.ORG Wed Oct 26 11:08:33 2005 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 074DB16A41F; Wed, 26 Oct 2005 11:08:33 +0000 (GMT) (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 BA16243D45; Wed, 26 Oct 2005 11:08:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QB8WfA027190; Wed, 26 Oct 2005 11:08:32 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QB8Wwg027186; Wed, 26 Oct 2005 11:08:32 GMT (envelope-from davidxu) Message-Id: <200510261108.j9QB8Wwg027186@repoman.freebsd.org> From: David Xu Date: Wed, 26 Oct 2005 11:08:32 +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/libthr/thread thr_timer.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, 26 Oct 2005 11:08:33 -0000 davidxu 2005-10-26 11:08:32 UTC FreeBSD src repository Added files: lib/libthr/thread thr_timer.c Log: Add experiment code to implement POSIX timer's SIGEV_THREAD notification. Revision Changes Path 1.1 +168 -0 src/lib/libthr/thread/thr_timer.c (new) From owner-cvs-src@FreeBSD.ORG Wed Oct 26 11:19:59 2005 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 9B9AE16A41F; Wed, 26 Oct 2005 11:19:59 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66CED43D45; Wed, 26 Oct 2005 11:19:59 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9QBJu4h092225; Wed, 26 Oct 2005 11:19:57 GMT (envelope-from davidxu@freebsd.org) Message-ID: <435F665F.5030502@freebsd.org> Date: Wed, 26 Oct 2005 19:19:59 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200510261108.j9QB8Wwg027186@repoman.freebsd.org> In-Reply-To: <200510261108.j9QB8Wwg027186@repoman.freebsd.org> 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/lib/libthr/thread thr_timer.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, 26 Oct 2005 11:19:59 -0000 David Xu wrote: > davidxu 2005-10-26 11:08:32 UTC > > FreeBSD src repository > > Added files: > lib/libthr/thread thr_timer.c > Log: > Add experiment code to implement POSIX timer's SIGEV_THREAD notification. > > Revision Changes Path > 1.1 +168 -0 src/lib/libthr/thread/thr_timer.c (new) > > I hope soon we can add sigev_notify_function and sigev_notify_attributes in to structure sigevent (see signal.h), Some information can be found at here: http://groups.google.com/group/comp.programming.threads/browse_thread/thread/31f762c00076f4b0/043c76ee3e5c4bdd?lnk=st&q=timer_create&rnum=9#043c76ee3e5c4bdd David Xu From owner-cvs-src@FreeBSD.ORG Wed Oct 26 12:07:24 2005 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 38B2116A41F; Wed, 26 Oct 2005 12:07:24 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D246C43D58; Wed, 26 Oct 2005 12:07:23 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QC7Ne3037050; Wed, 26 Oct 2005 12:07:23 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QC7N9D037049; Wed, 26 Oct 2005 12:07:23 GMT (envelope-from keramida) Message-Id: <200510261207.j9QC7N9D037049@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 26 Oct 2005 12:07: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/contrib/top top.X 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, 26 Oct 2005 12:07:24 -0000 keramida 2005-10-26 12:07:23 UTC FreeBSD src repository (doc committer) Modified files: contrib/top top.X Log: Typo. PR: docs/88015 Submitted by: Marian Cerny MFC after: 3 days Revision Changes Path 1.13 +1 -1 src/contrib/top/top.X From owner-cvs-src@FreeBSD.ORG Wed Oct 26 12:16:03 2005 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 A887216A422; Wed, 26 Oct 2005 12:16:03 +0000 (GMT) (envelope-from max@love2party.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BBE543D53; Wed, 26 Oct 2005 12:16:02 +0000 (GMT) (envelope-from max@love2party.net) Received: from p54A3C62B.dip.t-dialin.net [84.163.198.43] (helo=donor.laier.local) by mrelayeu.kundenserver.de with ESMTP (Nemesis), id 0MKwtQ-1EUkCH0NqJ-0002em; Wed, 26 Oct 2005 14:16:01 +0200 From: Max Laier To: Robert Watson Date: Wed, 26 Oct 2005 14:15:47 +0200 User-Agent: KMail/1.8.2 References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> In-Reply-To: <20051026105820.X32255@fledge.watson.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1391944.u5ptIuUrKn"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200510261416.09346.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de login:61c499deaeeba3ba5be80f48ecc83056 Cc: cvs-src@freebsd.org, Yar Tikhiy , Gleb Smirnoff , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 26 Oct 2005 12:16:03 -0000 --nextPart1391944.u5ptIuUrKn Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 26 October 2005 11:58, Robert Watson wrote: > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > R> I think we may actually be in need of either a new flag, > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > way R> for protocols to ask if an interface is a loopback interface or > > not. > > > > I'd prefer to rewrite those subsystems that use interface layer but > > aren't actually interfaces. I have plans to do this for CARP. > > At least in the case of if_disc, this won't help. I'm not quite sure why > if_disc is IFF_LOOPBACK. Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which= =20 also contains the following comment: /* * Discard interface driver for protocol testing and timing. * (Based on the loopback.) */ So it might be a good idea to get rid of it and work from there. =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 --nextPart1391944.u5ptIuUrKn Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDX3OJXyyEoT62BG0RAnHxAJ9Qg9t6x/Zu+JHZE+UmS986W9KO3QCfVDzs aRWDTyxsRbJy2gc9+D0ZbOE= =POH8 -----END PGP SIGNATURE----- --nextPart1391944.u5ptIuUrKn-- From owner-cvs-src@FreeBSD.ORG Wed Oct 26 12:36:19 2005 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 2AABC16A41F; Wed, 26 Oct 2005 12:36:19 +0000 (GMT) (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 AD06643D46; Wed, 26 Oct 2005 12:36:18 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QCaI0h041602; Wed, 26 Oct 2005 12:36:18 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QCaI5s041601; Wed, 26 Oct 2005 12:36:18 GMT (envelope-from bde) Message-Id: <200510261236.j9QCaI5s041601@repoman.freebsd.org> From: Bruce Evans Date: Wed, 26 Oct 2005 12:36: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/lib/msun/src k_cos.c k_cosf.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, 26 Oct 2005 12:36:19 -0000 bde 2005-10-26 12:36:18 UTC FreeBSD src repository Modified files: lib/msun/src k_cos.c k_cosf.c Log: Use a better algorithm for reducing the error in __kernel_cos[f](). This supersedes the fix for the old algorithm in rev.1.8 of k_cosf.c. I want this change mainly because it is an optimization. It helps make software cos[f](x) and sin[f](x) faster than the i387 hardware versions for small x. It is also a simplification, and reduces the maximum relative error for cosf() and sinf() on machines like amd64 from about 0.87 ulps to about 0.80 ulps. It was validated for cosf() and sinf() by exhaustive testing. Exhaustive testing is not possible for cos() and sin(), but ucbtest reports a similar reduction for the worst case found by non-exhaustive testing. ucbtest's non-exhaustive testing seems to be good enough to find problems in algorithms but not maximum relative errors when there are spikes. E.g., short runs of it find only 3 ulp error where the i387 hardware cos() has an error of about 2**40 ulps near pi/2. Revision Changes Path 1.10 +17 -24 src/lib/msun/src/k_cos.c 1.10 +5 -27 src/lib/msun/src/k_cosf.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 15:14:23 2005 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 34AC616A420; Wed, 26 Oct 2005 15:14:23 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 127F143D49; Wed, 26 Oct 2005 15:14:21 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 11:31:06 -0400 From: John Baldwin To: Ruslan Ermilov Date: Wed, 26 Oct 2005 11:00:53 -0400 User-Agent: KMail/1.8.2 References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> In-Reply-To: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261100.55974.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 15:14:23 -0000 On Wednesday 26 October 2005 02:17 am, Ruslan Ermilov wrote: > ru 2005-10-26 06:17:27 UTC > > FreeBSD src repository > > Modified files: > sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c > Log: > Catch up with new interrupt handling code. > > Revision Changes Path > 1.16 +3 -3 > src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c Sorry about that, will be fixing it more cleanly. BTW, does anyone know why this driver allocates its softc manualn in its attach routine? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Oct 26 15:14:23 2005 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 5E16316A422; Wed, 26 Oct 2005 15:14:23 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B0B43D48; Wed, 26 Oct 2005 15:14:21 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 11:31:06 -0400 From: John Baldwin To: Peter Grehan Date: Wed, 26 Oct 2005 10:42:44 -0400 User-Agent: KMail/1.8.2 References: <200510252131.j9PLVNfw059339@repoman.freebsd.org> In-Reply-To: <200510252131.j9PLVNfw059339@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261042.45569.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/zs zs.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, 26 Oct 2005 15:14:23 -0000 On Tuesday 25 October 2005 05:31 pm, Peter Grehan wrote: > grehan 2005-10-25 21:31:22 UTC > > FreeBSD src repository > > Modified files: > sys/dev/zs zs.c > Log: > Catch up with interrupt-thread changes. Sorry, I must have missed several files in my tree-wide sweeps. I should probably also add a real remove() function for swi's to make that interface more consistent and to avoid violating the swi abstraction. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Oct 26 15:51:05 2005 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 A60C116A41F; Wed, 26 Oct 2005 15:51:05 +0000 (GMT) (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 61C0043D45; Wed, 26 Oct 2005 15:51:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFp5Yx067510; Wed, 26 Oct 2005 15:51:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFp5aZ067509; Wed, 26 Oct 2005 15:51:05 GMT (envelope-from jhb) Message-Id: <200510261551.j9QFp5aZ067509@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 15:51: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/kern kern_intr.c src/sys/sys interrupt.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, 26 Oct 2005 15:51:06 -0000 jhb 2005-10-26 15:51:05 UTC FreeBSD src repository Modified files: sys/kern kern_intr.c sys/sys interrupt.h Log: Add a swi_remove() function to teardown software interrupt handlers. For now it just calls intr_event_remove_handler(), but at some point it might also be responsible for tearing down interrupt events created via swi_add. Revision Changes Path 1.128 +17 -0 src/sys/kern/kern_intr.c 1.33 +1 -0 src/sys/sys/interrupt.h From owner-cvs-src@FreeBSD.ORG Wed Oct 26 15:52:19 2005 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 B7A7416A41F; Wed, 26 Oct 2005 15:52:19 +0000 (GMT) (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 155CE43D6B; Wed, 26 Oct 2005 15:52:17 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QFqGuw067672; Wed, 26 Oct 2005 15:52:16 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QFqGDs067671; Wed, 26 Oct 2005 15:52:16 GMT (envelope-from jhb) Message-Id: <200510261552.j9QFqGDs067671@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 15:52: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/dev/cx if_cx.c src/sys/dev/rc rc.c src/sys/dev/sab sab.c src/sys/dev/uart uart_tty.c src/sys/dev/zs zs.c src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 15:52:20 -0000 jhb 2005-10-26 15:52:16 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/rc rc.c sys/dev/sab sab.c sys/dev/uart uart_tty.c sys/dev/zs zs.c sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c Log: - Use swi_remove() to teardown swi handlers rather than intr_event_remove_handler(). - Remove tty: prefix from a couple of swi handler names. Revision Changes Path 1.51 +1 -1 src/sys/dev/cx/if_cx.c 1.102 +2 -2 src/sys/dev/rc/rc.c 1.42 +1 -1 src/sys/dev/sab/sab.c 1.25 +1 -1 src/sys/dev/uart/uart_tty.c 1.33 +1 -1 src/sys/dev/zs/zs.c 1.17 +2 -2 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 16:33:20 2005 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 1466316A420 for ; Wed, 26 Oct 2005 16:33:20 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60A6043D4C for ; Wed, 26 Oct 2005 16:33:17 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: by nproxy.gmail.com with SMTP id p48so41566nfa for ; Wed, 26 Oct 2005 09:33:15 -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=QHvqEDVN8CY9W5TBC51u0HWUldbnFQBt+zsysYb25DV4mwR0epNZzaQr+yPo4DVV8BFEoxUQJgp6htX/H3CW2WjEO0qCAPYNVkqsL5qbv4FTF06tHgHHXjdAm1TjFqE/W8Iujqwo+jHrYyWFpnH/ztECZMZNIoOgNbOk1TckV0k= Received: by 10.48.236.12 with SMTP id j12mr279251nfh; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) Received: by 10.48.127.20 with HTTP; Wed, 26 Oct 2005 09:33:15 -0700 (PDT) Message-ID: Date: Wed, 26 Oct 2005 09:33:15 -0700 From: Maksim Yevmenkin To: John Baldwin In-Reply-To: <200510261100.55974.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 16:33:20 -0000 John, [...] > Sorry about that, will be fixing it more cleanly. BTW, does anyone know = why > this driver allocates its softc manualn in its attach routine? ng_bt3c(4) is a netgraph device driver. there could be failures in both device part (i/o port, interrupts etc.) as well as in netgraph part (could not create node). so decided to do it this way. right now i can not recall any other reason :) thanks, max From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:01:41 2005 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 1FCB116A427; Wed, 26 Oct 2005 17:01:41 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A09CC43D46; Wed, 26 Oct 2005 17:01:40 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QH1d78099706; Wed, 26 Oct 2005 10:01:39 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QH1doT099705; Wed, 26 Oct 2005 10:01:39 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 10:01:39 -0700 From: "David O'Brien" To: John Baldwin Message-ID: <20051026170139.GA99571@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <200510251309.31811.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510251309.31811.jhb@freebsd.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:01:41 -0000 On Tue, Oct 25, 2005 at 01:09:30PM -0400, John Baldwin wrote: > Also, anyone with half a brain that reads commit mail knows that rik works on > cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim is just a > bunch of hot air personally. What ever. Others have complained that we have a situation where poeple claim mainatainership, but make it too hard to figure out. The number of files one changes to please a new compiler makes it too large a task to do a 'cvs log' on every file change. We have an offical centralized mechanism to state mainaintership AND a special location for source code - so that others can easily know. If it isn't used, then the maintainer shouldn't be claiming an issue about maintainership. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:08:11 2005 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 755B616A41F; Wed, 26 Oct 2005 17:08:11 +0000 (GMT) (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 DA66743D45; Wed, 26 Oct 2005 17:08:06 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.14] (imini.samsco.home [192.168.254.14]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id j9QH84rK032338; Wed, 26 Oct 2005 11:08:05 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <435FB7F4.6020700@samsco.org> Date: Wed, 26 Oct 2005 11:08:04 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.7) Gecko/20050416 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Maksim Yevmenkin References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org, John Baldwin Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 17:08:11 -0000 Maksim Yevmenkin wrote: > John, > > [...] > > >>Sorry about that, will be fixing it more cleanly. BTW, does anyone know why >>this driver allocates its softc manualn in its attach routine? > > > ng_bt3c(4) is a netgraph device driver. there could be failures in > both device part (i/o port, interrupts etc.) as well as in netgraph > part (could not create node). so decided to do it this way. right now > i can not recall any other reason :) > > thanks, > max If the driver is attaching via normal newbus methods, and the bluetooth stack hasn't done something strange to override this, then there is no need to not trust the softc that is automatically provided. Scott From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:13:51 2005 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 7FB8916A41F; Wed, 26 Oct 2005 17:13:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC4F843D48; Wed, 26 Oct 2005 17:13:50 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 13:30:35 -0400 From: John Baldwin To: obrien@freebsd.org Date: Wed, 26 Oct 2005 13:14:45 -0400 User-Agent: KMail/1.8.2 References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <200510251309.31811.jhb@freebsd.org> <20051026170139.GA99571@dragon.NUXI.org> In-Reply-To: <20051026170139.GA99571@dragon.NUXI.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261314.46614.jhb@freebsd.org> Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Wed, 26 Oct 2005 17:13:51 -0000 On Wednesday 26 October 2005 01:01 pm, David O'Brien wrote: > On Tue, Oct 25, 2005 at 01:09:30PM -0400, John Baldwin wrote: > > Also, anyone with half a brain that reads commit mail knows that rik > > works on cp(4) and cx(4), so I think that your lack-of-MAINTAINERS claim > > is just a bunch of hot air personally. > > What ever. Others have complained that we have a situation where poeple > claim mainatainership, but make it too hard to figure out. The number of > files one changes to please a new compiler makes it too large a task to > do a 'cvs log' on every file change. We have an offical centralized > mechanism to state mainaintership AND a special location for source code > - so that others can easily know. If it isn't used, then the maintainer > shouldn't be claiming an issue about maintainership. He didn't claim that, you put that in his mouth. He just backed out your changes and replaced them with a much simpler version. If anything, his argument was to avoid rediculously large diffs and repo churn. Surely you of all people can understand those arguments give your history of jumping up and down over vendor branch stuff. You jumped up and down about how dare he back out your changes WITHOUT REGARD for the fact that he might have addressed your gcc 4.0 concerns already when he did his updates (I guess you couldn't be bothered to check that part even though it only took me about 5 clicks via cvsweb to find the relevant diff for the net changes). Given that he didn't just revert your changes entirely but solved the underlying problem in a different way it seems to me that his change is not a "backout" per se and that the argument should have ended right there. In fact, here's the cvsweb URL. You can see clearly how he changed things such that his commit wasn't a direct backout of your changes: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/cp/if_cp.c.diff?r1=1.28&r2=1.24.2.1&f=h Please have the courtesy to read the commit log (where rik mentioned the use of forward static function declarations, etc.) and then check the diff before going off half-coked making wild and baseless accusations complete with threats about bringing the whole mess up to core if the targeted developer doesn't cower in fear and cater to your whims. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:13:51 2005 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 DBF0716A420; Wed, 26 Oct 2005 17:13:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3700D43D49; Wed, 26 Oct 2005 17:13:51 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 13:30:34 -0400 From: John Baldwin To: Maksim Yevmenkin Date: Wed, 26 Oct 2005 12:58:49 -0400 User-Agent: KMail/1.8.2 References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261258.51651.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 17:13:52 -0000 On Wednesday 26 October 2005 12:33 pm, Maksim Yevmenkin wrote: > John, > > [...] > > > Sorry about that, will be fixing it more cleanly. BTW, does anyone know > > why this driver allocates its softc manualn in its attach routine? > > ng_bt3c(4) is a netgraph device driver. there could be failures in > both device part (i/o port, interrupts etc.) as well as in netgraph > part (could not create node). so decided to do it this way. right now > i can not recall any other reason :) Even if netgraph fails then new-bus will still free it for you when attach returns ENXIO. All you have to do is set the size in your driver_t and axe the malloc, free, and device_set_softc calls and you should be done. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:22:53 2005 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 9A89816A41F; Wed, 26 Oct 2005 17:22:53 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id C41AE43D48; Wed, 26 Oct 2005 17:22:52 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 13:39:37 -0400 From: John Baldwin To: Mark Linimon Date: Wed, 26 Oct 2005 13:20:45 -0400 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <20051025224540.GB4123@soaustin.net> In-Reply-To: <20051025224540.GB4123@soaustin.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261320.46985.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 26 Oct 2005 17:22:53 -0000 On Tuesday 25 October 2005 06:45 pm, Mark Linimon wrote: > On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > > Reorganize the interrupt handling code a bit to make a few things > > cleaner and increase flexibility to allow various different approaches to > > be tried in the future. > > Wow. Having (in a previous existance) worked on real-time OS interrupt > handlers I can likely guess how much work went into this. Nice. Actually, this diff wasn't a huge deal, it was mostly just a refactoring of what was already there. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:24:56 2005 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 3740C16A41F for ; Wed, 26 Oct 2005 17:24:56 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: from nproxy.gmail.com (nproxy.gmail.com [64.233.182.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A76F43D49 for ; Wed, 26 Oct 2005 17:24:51 +0000 (GMT) (envelope-from maksim.yevmenkin@gmail.com) Received: by nproxy.gmail.com with SMTP id p48so43970nfa for ; Wed, 26 Oct 2005 10:24:42 -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=LQjXCaFZ52sUHQKxJ8UGWA7nFSJVU/3L9nwEVkl6dbGZ6zbx2M7WDTrBu3bq+veUBFveKehe5jijYLIxsqHXy+Mxg1n5DbGSVNFAYfdps80+uWxNJ5tYJsiOVeE6RPSs6zHEvsoS634Xs9KGHvpcz54w4iryWHIdDuEQlxm/iFk= Received: by 10.48.240.15 with SMTP id n15mr288547nfh; Wed, 26 Oct 2005 10:24:42 -0700 (PDT) Received: by 10.48.127.20 with HTTP; Wed, 26 Oct 2005 10:24:42 -0700 (PDT) Message-ID: Date: Wed, 26 Oct 2005 10:24:42 -0700 From: Maksim Yevmenkin To: John Baldwin In-Reply-To: <200510261258.51651.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261100.55974.jhb@freebsd.org> <200510261258.51651.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 17:24:56 -0000 On 10/26/05, John Baldwin wrote: > On Wednesday 26 October 2005 12:33 pm, Maksim Yevmenkin wrote: > > John, > > > > [...] > > > > > Sorry about that, will be fixing it more cleanly. BTW, does anyone k= now > > > why this driver allocates its softc manualn in its attach routine? > > > > ng_bt3c(4) is a netgraph device driver. there could be failures in > > both device part (i/o port, interrupts etc.) as well as in netgraph > > part (could not create node). so decided to do it this way. right now > > i can not recall any other reason :) > > Even if netgraph fails then new-bus will still free it for you when attac= h > returns ENXIO. All you have to do is set the size in your driver_t and a= xe > the malloc, free, and device_set_softc calls and you should be done. would something like this do? or am i missing something? please note: i have not tested the patch. cvs diff: Diffing . Index: ng_bt3c_pccard.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: /home/ncvs/src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard= .c,v retrieving revision 1.17 diff -u -r1.17 ng_bt3c_pccard.c --- ng_bt3c_pccard.c 26 Oct 2005 15:52:16 -0000 1.17 +++ ng_bt3c_pccard.c 26 Oct 2005 17:23:02 -0000 @@ -612,11 +612,7 @@ static int bt3c_pccard_attach(device_t dev) { - bt3c_softc_p sc =3D NULL; - - sc =3D (bt3c_softc_p) malloc(sizeof(*sc), M_BT3C, M_NOWAIT|M_ZERO); - if (sc =3D=3D NULL) - return (ENOMEM); + bt3c_softc_p sc =3D (bt3c_softc_p) device_get_softc(dev); /* Allocate I/O ports */ sc->iobase_rid =3D 0; @@ -677,7 +673,6 @@ sc->want =3D 1; NG_NODE_SET_PRIVATE(sc->node, sc); - device_set_softc(dev, sc); return (0); bad: @@ -705,8 +700,6 @@ sc->iobase_rid =3D 0; } - free(sc, M_BT3C); - return (ENXIO); } /* bt3c_pccacd_attach */ @@ -1197,7 +1190,7 @@ static driver_t bt3c_pccard_driver =3D { NG_BT3C_NODE_TYPE, bt3c_pccard_methods, - 0 + sizeof(bt3c_softc_t) }; static devclass_t bt3c_devclass; =3D=3D max From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:27:54 2005 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 D894C16A41F; Wed, 26 Oct 2005 17:27:54 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACFD043D49; Wed, 26 Oct 2005 17:27:51 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QHRZAG010918; Wed, 26 Oct 2005 10:27:35 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QHRYRK010917; Wed, 26 Oct 2005 10:27:34 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 10:27:34 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051026172734.GA99901@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435E04AA.3080605@cronyx.ru> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 17:27:55 -0000 On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: > The commit log didn't state what was the problem variable forward > declaration or/and function > forward declaration. Since you became a committer 2003/12/18, I guess you haven't been part of FreeBSD when we've worked on a GCC compiler upgrade. We make these type of changes to make a new version of GCC build FreeBSD. The other choice is to disconnect these drivers from the build. The commits done where typical of what's been done for the past decade. -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:37:56 2005 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 0993F16A41F; Wed, 26 Oct 2005 17:37:56 +0000 (GMT) (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 BD21143D72; Wed, 26 Oct 2005 17:37:55 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHbtLV082667; Wed, 26 Oct 2005 17:37:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHbtnd082666; Wed, 26 Oct 2005 17:37:55 GMT (envelope-from jhb) Message-Id: <200510261737.j9QHbtnd082666@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 17:37: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/usr.bin/pr pr.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, 26 Oct 2005 17:37:56 -0000 jhb 2005-10-26 17:37:55 UTC FreeBSD src repository Modified files: usr.bin/pr pr.c Log: Fix misspelled 'argument' and try to make the sentence into English. Submitted by: Andre Guibert de Bruet andy at siliconlandmark dot com Revision Changes Path 1.19 +1 -1 src/usr.bin/pr/pr.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 17:39:36 2005 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 5635616A41F; Wed, 26 Oct 2005 17:39:36 +0000 (GMT) (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 11ECD43D6B; Wed, 26 Oct 2005 17:39:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QHdZog082964; Wed, 26 Oct 2005 17:39:35 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QHdZus082963; Wed, 26 Oct 2005 17:39:35 GMT (envelope-from jhb) Message-Id: <200510261739.j9QHdZus082963@repoman.freebsd.org> From: John Baldwin Date: Wed, 26 Oct 2005 17:39:35 +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/examples/ipfilter ipf-howto.txt 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, 26 Oct 2005 17:39:36 -0000 jhb 2005-10-26 17:39:35 UTC FreeBSD src repository Modified files: share/examples/ipfilter ipf-howto.txt Log: Spell 'argument' correctly. Submitted by: Andre Guibert de Bruet andy at siliconlandmark dot com Revision Changes Path 1.3 +1 -1 src/share/examples/ipfilter/ipf-howto.txt From owner-cvs-src@FreeBSD.ORG Wed Oct 26 18:25:30 2005 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 C31FB16A41F; Wed, 26 Oct 2005 18:25:30 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 228D143D48; Wed, 26 Oct 2005 18:25:30 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Wed, 26 Oct 2005 14:42:12 -0400 From: John Baldwin To: Maksim Yevmenkin Date: Wed, 26 Oct 2005 14:23:47 -0400 User-Agent: KMail/1.8.2 References: <200510260617.j9Q6HRqh082376@repoman.freebsd.org> <200510261258.51651.jhb@freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261423.49602.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 18:25:30 -0000 On Wednesday 26 October 2005 01:24 pm, Maksim Yevmenkin wrote: > On 10/26/05, John Baldwin wrote: > > On Wednesday 26 October 2005 12:33 pm, Maksim Yevmenkin wrote: > > > John, > > > > > > [...] > > > > > > > Sorry about that, will be fixing it more cleanly. BTW, does anyone > > > > know why this driver allocates its softc manualn in its attach > > > > routine? > > > > > > ng_bt3c(4) is a netgraph device driver. there could be failures in > > > both device part (i/o port, interrupts etc.) as well as in netgraph > > > part (could not create node). so decided to do it this way. right now > > > i can not recall any other reason :) > > > > Even if netgraph fails then new-bus will still free it for you when > > attach returns ENXIO. All you have to do is set the size in your > > driver_t and axe the malloc, free, and device_set_softc calls and you > > should be done. > > would something like this do? or am i missing something? please note: > i have not tested the patch. > > cvs diff: Diffing . > Index: ng_bt3c_pccard.c > =================================================================== > RCS file: > /home/ncvs/src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c,v > retrieving revision 1.17 > diff -u -r1.17 ng_bt3c_pccard.c > --- ng_bt3c_pccard.c 26 Oct 2005 15:52:16 -0000 1.17 > +++ ng_bt3c_pccard.c 26 Oct 2005 17:23:02 -0000 > @@ -612,11 +612,7 @@ > static int > bt3c_pccard_attach(device_t dev) > { > - bt3c_softc_p sc = NULL; > - > - sc = (bt3c_softc_p) malloc(sizeof(*sc), M_BT3C, M_NOWAIT|M_ZERO); > - if (sc == NULL) > - return (ENOMEM); > + bt3c_softc_p sc = (bt3c_softc_p) device_get_softc(dev); > > /* Allocate I/O ports */ > sc->iobase_rid = 0; > @@ -677,7 +673,6 @@ > sc->want = 1; > > NG_NODE_SET_PRIVATE(sc->node, sc); > - device_set_softc(dev, sc); > > return (0); > bad: > @@ -705,8 +700,6 @@ > sc->iobase_rid = 0; > } > > - free(sc, M_BT3C); > - > return (ENXIO); > } /* bt3c_pccacd_attach */ > > @@ -1197,7 +1190,7 @@ > static driver_t bt3c_pccard_driver = { > NG_BT3C_NODE_TYPE, > bt3c_pccard_methods, > - 0 > + sizeof(bt3c_softc_t) > }; > > static devclass_t bt3c_devclass; > > == > > max Yep. Also remove the free() in detach() as well. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Wed Oct 26 18:46:28 2005 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 4778B16A41F; Wed, 26 Oct 2005 18:46:28 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 112C143D4C; Wed, 26 Oct 2005 18:46:28 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QIkRsa087701; Wed, 26 Oct 2005 18:46:27 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QIkRIP087700; Wed, 26 Oct 2005 18:46:27 GMT (envelope-from wpaul) Message-Id: <200510261846.j9QIkRIP087700@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 18:46: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/compat/ndis pe_var.h subr_pe.c src/usr.sbin/ndiscvt ndiscvt.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, 26 Oct 2005 18:46:28 -0000 wpaul 2005-10-26 18:46:27 UTC FreeBSD src repository Modified files: sys/compat/ndis pe_var.h subr_pe.c usr.sbin/ndiscvt ndiscvt.c Log: Clean up and apply the fix for PR 83477. The calculation for locating the start of the section headers has to take into account the fact that the image_nt_header is really variable sized. It happens that the existing calculation is correct for _most_ production binaries produced by the Windows DDK, but if we get a binary with oddball offsets, the PE loader could crash. Changes from the supplied patch are: - We don't really need to use the IMAGE_SIZEOF_NT_HEADER() macro when computing how much of the header to return to callers of pe_get_optional_header(). While it's important to take the variable size of the header into account in other calculations, we never actually look at anything outside the non-variable portion of the header. This saves callers from having to allocate a variable sized buffer off the heap (I purposely tried to avoid using malloc() in subr_pe.c to make it easier to compile in both the -D_KERNEL and !-D_KERNEL case), and since we're copying into a buffer on the stack, we always have to copy the same amount of data or else we'll trash the stack something fierce. - We need to get offsetof() in the !-D_KERNEL case. - ndiscvt.c needs the IMAGE_FIRST_SECTION() macro too, since it does a little bit of section pre-processing. PR: kern/83477 Revision Changes Path 1.14 +9 -0 src/sys/compat/ndis/pe_var.h 1.12 +13 -7 src/sys/compat/ndis/subr_pe.c 1.12 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 18:48:58 2005 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 2E9CA16A41F; Wed, 26 Oct 2005 18:48:58 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDD2843D46; Wed, 26 Oct 2005 18:48:57 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QImvOG087835; Wed, 26 Oct 2005 18:48:57 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QImvMH087834; Wed, 26 Oct 2005 18:48:57 GMT (envelope-from wpaul) Message-Id: <200510261848.j9QImvMH087834@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 18:48:57 +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/sys/compat/ndis pe_var.h subr_pe.c src/usr.sbin/ndiscvt ndiscvt.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, 26 Oct 2005 18:48:58 -0000 wpaul 2005-10-26 18:48:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis pe_var.h subr_pe.c usr.sbin/ndiscvt ndiscvt.c Log: MFC: merge the fix for PR 83477. PR: kern/83477 Revision Changes Path 1.8.2.4 +9 -0 src/sys/compat/ndis/pe_var.h 1.7.2.4 +13 -7 src/sys/compat/ndis/subr_pe.c 1.9.2.3 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 19:44:17 2005 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 C3A2216A41F; Wed, 26 Oct 2005 19:44:17 +0000 (GMT) (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 80D4843D45; Wed, 26 Oct 2005 19:44:17 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJiHeW090933; Wed, 26 Oct 2005 19:44:17 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJiHh3090932; Wed, 26 Oct 2005 19:44:17 GMT (envelope-from pjd) Message-Id: <200510261944.j9QJiHh3090932@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 26 Oct 2005 19:44: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/tools/tools/netrate/http http.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, 26 Oct 2005 19:44:17 -0000 pjd 2005-10-26 19:44:17 UTC FreeBSD src repository Modified files: tools/tools/netrate/http http.c Log: Change u_int64_t to uintmax_t and use %ju, so it compiles on 64bit archs. I changed every u_int64_t to uintmax_t, as we should use eventually uint64_t anyway those days. Revision Changes Path 1.3 +6 -5 src/tools/tools/netrate/http/http.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 19:57:05 2005 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 F161E16A41F; Wed, 26 Oct 2005 19:57:04 +0000 (GMT) (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 9A08243D49; Wed, 26 Oct 2005 19:57:04 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QJv4RO091619; Wed, 26 Oct 2005 19:57:04 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QJv438091618; Wed, 26 Oct 2005 19:57:04 GMT (envelope-from pjd) Message-Id: <200510261957.j9QJv438091618@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 26 Oct 2005 19:57:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/net if_vlan.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, 26 Oct 2005 19:57:05 -0000 pjd 2005-10-26 19:57:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net if_vlan.c Log: Call if_clone_detach() after vlan_clone_destroy() loop, as if_clone_detach() is freeing ifc_units field, which is used in vlan_clone_destroy()->ifc_free_unit(). This fixes panic: ifc_free_unit: bit is already cleared The fix introduces a small race in that a new interface could be created between the vlan_clone_destroy() loop and the call to if_clone_detach(). The race is probably too hard to trigger to be worry about it. This is not an MFC, because better fix was committed to HEAD. We decided to use this fix, as it is a low-risk fix, which fits just fine for 6.0 at this stage. Discussed with: brooks, thompsa Approved by: re (scottl) Revision Changes Path 1.79.2.4.2.1 +1 -1 src/sys/net/if_vlan.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:03:57 2005 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 A1B0316A41F; Wed, 26 Oct 2005 20:03:57 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: from heff.fud.org.nz (60-234-149-201.bitstream.orcon.net.nz [60.234.149.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E6E43D45; Wed, 26 Oct 2005 20:03:57 +0000 (GMT) (envelope-from thompsa@freebsd.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id C53951CCDD; Thu, 27 Oct 2005 09:03:55 +1300 (NZDT) Date: Thu, 27 Oct 2005 09:03:55 +1300 From: Andrew Thompson To: Pawel Jakub Dawidek Message-ID: <20051026200355.GA80702@heff.fud.org.nz> References: <200510261957.j9QJv438091618@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510261957.j9QJv438091618@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_vlan.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, 26 Oct 2005 20:03:57 -0000 On Wed, Oct 26, 2005 at 07:57:04PM +0000, Pawel Jakub Dawidek wrote: > pjd 2005-10-26 19:57:04 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6_0) > sys/net if_vlan.c > Log: > Call if_clone_detach() after vlan_clone_destroy() loop, as if_clone_detach() > is freeing ifc_units field, which is used in > vlan_clone_destroy()->ifc_free_unit(). > > This fixes panic: ifc_free_unit: bit is already cleared > > The fix introduces a small race in that a new interface could be created > between the vlan_clone_destroy() loop and the call to if_clone_detach(). > The race is probably too hard to trigger to be worry about it. > > This is not an MFC, because better fix was committed to HEAD. > We decided to use this fix, as it is a low-risk fix, which fits just fine > for 6.0 at this stage. Thanks! Another thing to note is without INVARIANTS this would have modified memory after free. From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:16:29 2005 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 CB8C216A421 for ; Wed, 26 Oct 2005 20:16:29 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15E3643D46 for ; Wed, 26 Oct 2005 20:16:28 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9QKDNs6099355 for cvs-src@freebsd.org.checked; Thu, 27 Oct 2005 00:13:23 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9QKAlSj099303; Thu, 27 Oct 2005 00:10:47 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <435FE099.6060508@cronyx.ru> Date: Thu, 27 Oct 2005 00:01:29 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> <20051026172734.GA99901@dragon.NUXI.org> In-Reply-To: <20051026172734.GA99901@dragon.NUXI.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_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: Wed, 26 Oct 2005 20:16:29 -0000 David O'Brien: >On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: > > >>The commit log didn't state what was the problem variable forward >>declaration or/and function >>forward declaration. >> >> > >Since you became a committer 2003/12/18, I guess you haven't been part of >FreeBSD when we've worked on a GCC compiler upgrade. We make these type >of changes to make a new version of GCC build FreeBSD. The other choice >is to disconnect these drivers from the build. The commits done where >typical of what's been done for the past decade. > Please provide detailed technical information what is wrong in my change of your commit. Which versions of system affected. How I can reproduce this problem. If you do not provide me that information I will not find out were I was wrong. If you can't provide me such information I do not see a reason of this discussion. You are not trying to explain me what is wrong with technical details. If you say I am wrong and do not try to explain this is philosophy. You've told me that you do not have time to explain me three times the same, but you've lost much more time not explaining. rik > > > From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:19:41 2005 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 A2DC516A41F; Wed, 26 Oct 2005 20:19:41 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C552843D5D; Wed, 26 Oct 2005 20:19:39 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKJdUa093159; Wed, 26 Oct 2005 20:19:39 GMT (envelope-from keramida@repoman.freebsd.org) Received: (from keramida@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKJd10093158; Wed, 26 Oct 2005 20:19:39 GMT (envelope-from keramida) Message-Id: <200510262019.j9QKJd10093158@repoman.freebsd.org> From: Giorgos Keramidas Date: Wed, 26 Oct 2005 20:19: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/usr.sbin/jail jail.8 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, 26 Oct 2005 20:19:41 -0000 keramida 2005-10-26 20:19:39 UTC FreeBSD src repository (doc committer) Modified files: usr.sbin/jail jail.8 Log: Note that the jail setup example is meant to be fed to sh(1), not csh(1). PR: docs/87351 Submitted by: "Eli K. Breen" Approved by: simon, brooks MFC after: 3 days Revision Changes Path 1.71 +4 -3 src/usr.sbin/jail/jail.8 From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:21:29 2005 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 AE82516A420; Wed, 26 Oct 2005 20:21:29 +0000 (GMT) (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 EC00643D68; Wed, 26 Oct 2005 20:21:24 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKLOJP093422; Wed, 26 Oct 2005 20:21:24 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKLOlv093421; Wed, 26 Oct 2005 20:21:24 GMT (envelope-from delphij) Message-Id: <200510262021.j9QKLOlv093421@repoman.freebsd.org> From: Xin LI Date: Wed, 26 Oct 2005 20:21:24 +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 uipc_cow.c src/sys/vm vm_object.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, 26 Oct 2005 20:21:29 -0000 delphij 2005-10-26 20:21:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern uipc_cow.c sys/vm vm_object.c Log: MFC (by alc) changesets that addresses several race conditions that can cause a kernel compiled with ZERO_COPY_SOCKETS to panic under certain circumstances: sys/kern/uipc_cow.c: 1.24 - 1.26 sys/vm/vm_object.c: 1.351 Approved by: re (scottl) Revision Changes Path 1.23.2.1 +10 -10 src/sys/kern/uipc_cow.c 1.349.2.2 +12 -4 src/sys/vm/vm_object.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:21:46 2005 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 002DB16A4C8; Wed, 26 Oct 2005 20:21:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A53643D46; Wed, 26 Oct 2005 20:21:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKLj9Q093467; Wed, 26 Oct 2005 20:21:45 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKLjKM093466; Wed, 26 Oct 2005 20:21:45 GMT (envelope-from wpaul) Message-Id: <200510262021.j9QKLjKM093466@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 20:21:45 +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/ndis subr_ntoskrnl.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, 26 Oct 2005 20:21:46 -0000 wpaul 2005-10-26 20:21:45 UTC FreeBSD src repository Modified files: sys/compat/ndis subr_ntoskrnl.c Log: Minor nit: in ntoskrnl_finddev(), only free the 'children' device_t array if device_find_children() actually returned a non-NULL array pointer. Revision Changes Path 1.79 +9 -2 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:22:01 2005 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 EFDB316A433; Wed, 26 Oct 2005 20:22:00 +0000 (GMT) (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 A848A43D45; Wed, 26 Oct 2005 20:22:00 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKM0q8093530; Wed, 26 Oct 2005 20:22:00 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKM0b5093529; Wed, 26 Oct 2005 20:22:00 GMT (envelope-from delphij) Message-Id: <200510262022.j9QKM0b5093529@repoman.freebsd.org> From: Xin LI Date: Wed, 26 Oct 2005 20:22:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/kern uipc_cow.c src/sys/vm vm_object.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, 26 Oct 2005 20:22:01 -0000 delphij 2005-10-26 20:22:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern uipc_cow.c sys/vm vm_object.c Log: MFRELENG_6 (by alc) changesets that addresses several race conditions that can cause a kernel compiled with ZERO_COPY_SOCKETS to panic under certain circumstances: sys/kern/uipc_cow.c: 1.24 - 1.26 sys/vm/vm_object.c: 1.351 Approved by: re (scottl) Revision Changes Path 1.23.4.1 +10 -10 src/sys/kern/uipc_cow.c 1.349.2.1.2.1 +12 -4 src/sys/vm/vm_object.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 20:23:32 2005 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 D2EDD16A41F; Wed, 26 Oct 2005 20:23:32 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CBF743D5F; Wed, 26 Oct 2005 20:23:30 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QKNUtx093629; Wed, 26 Oct 2005 20:23:30 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QKNUjY093628; Wed, 26 Oct 2005 20:23:30 GMT (envelope-from wpaul) Message-Id: <200510262023.j9QKNUjY093628@repoman.freebsd.org> From: Bill Paul Date: Wed, 26 Oct 2005 20:23:30 +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/sys/compat/ndis subr_ntoskrnl.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, 26 Oct 2005 20:23:33 -0000 wpaul 2005-10-26 20:23:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/compat/ndis subr_ntoskrnl.c Log: MFC: only free child device array if device_get_children() returned a non-NULL array pointer. Revision Changes Path 1.43.2.12 +9 -2 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:07:04 2005 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 AA6F616A41F; Wed, 26 Oct 2005 21:07:04 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37DD543D45; Wed, 26 Oct 2005 21:07:03 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.1/8.13.1) with ESMTP id j9QLFSFG027895; Wed, 26 Oct 2005 17:15:28 -0400 (EDT) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Ruslan Ermilov Date: Wed, 26 Oct 2005 17:06:49 -0400 User-Agent: KMail/1.6.2 References: <200510250905.j9P9575Z002500@repoman.freebsd.org> In-Reply-To: <200510250905.j9P9575Z002500@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="euc-kr" Content-Transfer-Encoding: 7bit Message-Id: <200510261706.50768.jkim@FreeBSD.org> X-Virus-Scanned: ClamAV devel-20050919/1148/Tue Oct 25 15:34:12 2005 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile src/sys/conf kern.post.mk kmod.mk 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, 26 Oct 2005 21:07:04 -0000 On Tuesday 25 October 2005 05:05 am, Ruslan Ermilov wrote: > ru 2005-10-25 09:05:07 UTC > > FreeBSD src repository > > Modified files: > release Makefile > sys/conf kern.post.mk kmod.mk > Log: > Refactor (some more) installation of kernel and module objects. > > Try to make everyone happy: David (to have debug kernels > installed by default), Warner (to be able to override that), and > myself (for actually making it all work and to be consistent). > > Now, if kernel was configured for debugging (through DEBUG=-g in > the kernel config file or "config -g"), doing "make install" will > install debug versions of kernel and module objects with their > canonical names, > > kernel.debug -> /boot/kernel/kernel > if_fxp.ko.debug -> /boot/kernel/if_fxp.ko > > Installing a kernel not configured for debugging, or debug kernel > with INSTALL_NODEBUG variable defined, will install non-debug > kernel and module objects. > > Also, restore the install.debug and reinstall.debug targets that > are part of the existing API (they cause some additional gdb(1) > scripts to be installed). > > Revision Changes Path > 1.891 +0 -4 src/release/Makefile > 1.86 +4 -2 src/sys/conf/kern.post.mk > 1.197 +3 -8 src/sys/conf/kmod.mk It's broken amd64. I had DEBUG=-g in the configuration and it's spewing a lot of 'kldload: unexpected relocation type 10' while preloading modules. :-( Jung-uk Kim From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:13:30 2005 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 B861616A41F; Wed, 26 Oct 2005 21:13:30 +0000 (GMT) (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 76C7C43D45; Wed, 26 Oct 2005 21:13:30 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLDU6f004644; Wed, 26 Oct 2005 21:13:30 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLDU21004643; Wed, 26 Oct 2005 21:13:30 GMT (envelope-from jkim) Message-Id: <200510262113.j9QLDU21004643@repoman.freebsd.org> From: Jung-uk Kim Date: Wed, 26 Oct 2005 21:13:30 +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/gnu/usr.bin/grep grep.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, 26 Oct 2005 21:13:30 -0000 jkim 2005-10-26 21:13:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/grep grep.c Log: MFC: Fix a longstanding buglet in bz-prefixed grep(1). PR: gnu/72200 Approved by: re Revision Changes Path 1.31.2.1 +5 -5 src/gnu/usr.bin/grep/grep.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:14:45 2005 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 0D92016A41F; Wed, 26 Oct 2005 21:14:45 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE39B43D46; Wed, 26 Oct 2005 21:14:44 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLEiG4004799; Wed, 26 Oct 2005 21:14:44 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLEiss004798; Wed, 26 Oct 2005 21:14:44 GMT (envelope-from ariff) Message-Id: <200510262114.j9QLEiss004798@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:14: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/sys/dev/sound/pcm mixer.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, 26 Oct 2005 21:14:45 -0000 ariff 2005-10-26 21:14:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pcm mixer.c Log: Track every mixer device closing for proper refcount calculation. This solve device busy and panic issues during sound module unloading. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.43.2.2 +1 -1 src/sys/dev/sound/pcm/mixer.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:15:07 2005 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 DDFEA16A41F; Wed, 26 Oct 2005 21:15:07 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71FB843D48; Wed, 26 Oct 2005 21:15:07 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLF7Gn004876; Wed, 26 Oct 2005 21:15:07 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLF7gC004875; Wed, 26 Oct 2005 21:15:07 GMT (envelope-from ariff) Message-Id: <200510262115.j9QLF7gC004875@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:15:07 +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/sound/pcm sound.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, 26 Oct 2005 21:15:08 -0000 ariff 2005-10-26 21:15:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pcm sound.c Log: Rearrange sound unregister procedure to detect mixer busy state and destroy it before anything else. This solve panic issue during sound module unloading if the sound / mixer device being held by external processes. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.93.2.1 +15 -12 src/sys/dev/sound/pcm/sound.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:15:34 2005 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 6832C16A421; Wed, 26 Oct 2005 21:15:34 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE92A43D45; Wed, 26 Oct 2005 21:15:33 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLFXVV004993; Wed, 26 Oct 2005 21:15:33 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLFXlV004992; Wed, 26 Oct 2005 21:15:33 GMT (envelope-from ariff) Message-Id: <200510262115.j9QLFXlV004992@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:15:33 +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/sound/pcm vchan.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, 26 Oct 2005 21:15:34 -0000 ariff 2005-10-26 21:15:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pcm vchan.c Log: Virtual channel default speed should be based on soundcard capabilities. This solve various mysterious slowdown especially for fixed-rate ac97 soundcards. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.17.2.1 +30 -2 src/sys/dev/sound/pcm/vchan.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:15:52 2005 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 21A8A16A41F; Wed, 26 Oct 2005 21:15:52 +0000 (GMT) (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 D38FF43D46; Wed, 26 Oct 2005 21:15:51 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLFpc3005028; Wed, 26 Oct 2005 21:15:51 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLFpCK005027; Wed, 26 Oct 2005 21:15:51 GMT (envelope-from jkim) Message-Id: <200510262115.j9QLFpCK005027@repoman.freebsd.org> From: Jung-uk Kim Date: Wed, 26 Oct 2005 21:15:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/gnu/usr.bin/grep grep.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, 26 Oct 2005 21:15:52 -0000 jkim 2005-10-26 21:15:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) gnu/usr.bin/grep grep.c Log: MFRELENG_6: Fix a longstanding buglet in bz-prefixed grep(1). PR: gnu/72200 Approved by: re Revision Changes Path 1.31.4.1 +5 -5 src/gnu/usr.bin/grep/grep.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:17:41 2005 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 1D39E16A41F; Wed, 26 Oct 2005 21:17:41 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF62643D45; Wed, 26 Oct 2005 21:17:40 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLHe9f005110; Wed, 26 Oct 2005 21:17:40 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLHe54005109; Wed, 26 Oct 2005 21:17:40 GMT (envelope-from ariff) Message-Id: <200510262117.j9QLHe54005109@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:17:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/sound/pcm mixer.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, 26 Oct 2005 21:17:41 -0000 ariff 2005-10-26 21:17:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/sound/pcm mixer.c Log: Track every mixer device closing for proper refcount calculation. This solve device busy and panic issues during sound module unloading. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.43.2.1.2.1 +1 -1 src/sys/dev/sound/pcm/mixer.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:18:10 2005 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 1CDC316A424; Wed, 26 Oct 2005 21:18:10 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC44C43D45; Wed, 26 Oct 2005 21:18:09 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLI9b9005148; Wed, 26 Oct 2005 21:18:09 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLI9xY005147; Wed, 26 Oct 2005 21:18:09 GMT (envelope-from ariff) Message-Id: <200510262118.j9QLI9xY005147@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:18:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/sound/pcm sound.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, 26 Oct 2005 21:18:10 -0000 ariff 2005-10-26 21:18:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/sound/pcm sound.c Log: Rearrange sound unregister procedure to detect mixer busy state and destroy it before anything else. This solve panic issue during sound module unloading if the sound / mixer device being held by external processes. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.93.4.1 +15 -12 src/sys/dev/sound/pcm/sound.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:18:42 2005 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 9C42F16A41F; Wed, 26 Oct 2005 21:18:42 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29D4A43D48; Wed, 26 Oct 2005 21:18:42 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLIgjG005186; Wed, 26 Oct 2005 21:18:42 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLIgIq005185; Wed, 26 Oct 2005 21:18:42 GMT (envelope-from ariff) Message-Id: <200510262118.j9QLIgIq005185@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 26 Oct 2005 21:18:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/sound/pcm vchan.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, 26 Oct 2005 21:18:42 -0000 ariff 2005-10-26 21:18:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/sound/pcm vchan.c Log: Virtual channel default speed should be based on soundcard capabilities. This solve various mysterious slowdown especially for fixed-rate ac97 soundcards. Approved by: re (scottl), netchild (mentor) Reviewed by: andreas Revision Changes Path 1.17.4.1 +30 -2 src/sys/dev/sound/pcm/vchan.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:57:25 2005 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 C0ECE16A41F; Wed, 26 Oct 2005 21:57:25 +0000 (GMT) (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 7D9DA43D48; Wed, 26 Oct 2005 21:57:25 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLvPO9008351; Wed, 26 Oct 2005 21:57:25 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLvPab008350; Wed, 26 Oct 2005 21:57:25 GMT (envelope-from csjp) Message-Id: <200510262157.j9QLvPab008350@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Wed, 26 Oct 2005 21:57:25 +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/ipfw ipfw.8 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, 26 Oct 2005 21:57:25 -0000 csjp 2005-10-26 21:57:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/ipfw ipfw.8 Log: MFC notes about ucred based rules and debug.mpsafenet requirements. Approved by: re (scottl) Revision Changes Path 1.175.2.2 +10 -0 src/sbin/ipfw/ipfw.8 From owner-cvs-src@FreeBSD.ORG Wed Oct 26 21:58:43 2005 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 379DA16A41F; Wed, 26 Oct 2005 21:58:43 +0000 (GMT) (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 E693843D49; Wed, 26 Oct 2005 21:58:42 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QLwgPn008470; Wed, 26 Oct 2005 21:58:42 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QLwgEA008469; Wed, 26 Oct 2005 21:58:42 GMT (envelope-from csjp) Message-Id: <200510262158.j9QLwgEA008469@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Wed, 26 Oct 2005 21:58:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sbin/ipfw ipfw.8 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, 26 Oct 2005 21:58:43 -0000 csjp 2005-10-26 21:58:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sbin/ipfw ipfw.8 Log: MFC notes about ucred based rules and debug.mpsafenet requirements. Approved by: re (scottl) Revision Changes Path 1.175.2.1.2.1 +10 -0 src/sbin/ipfw/ipfw.8 From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:06:31 2005 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 1207716A41F; Wed, 26 Oct 2005 22:06:31 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C48F843D45; Wed, 26 Oct 2005 22:06:30 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QM6UIJ009149; Wed, 26 Oct 2005 22:06:30 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QM6Uwn009148; Wed, 26 Oct 2005 22:06:30 GMT (envelope-from peter) Message-Id: <200510262206.j9QM6Uwn009148@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:06:30 +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/amd64/ia32 ia32_reg.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, 26 Oct 2005 22:06:31 -0000 peter 2005-10-26 22:06:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/ia32 ia32_reg.c Log: MFC: 1.2: don't set segment registers yet. Approved by: re Revision Changes Path 1.1.2.1 +4 -0 src/sys/amd64/ia32/ia32_reg.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:07:04 2005 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 2673416A41F; Wed, 26 Oct 2005 22:07:04 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7D4443D45; Wed, 26 Oct 2005 22:07:03 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QM73bN009191; Wed, 26 Oct 2005 22:07:03 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QM73cU009190; Wed, 26 Oct 2005 22:07:03 GMT (envelope-from peter) Message-Id: <200510262207.j9QM73cU009190@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:07:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/amd64/ia32 ia32_reg.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, 26 Oct 2005 22:07:04 -0000 peter 2005-10-26 22:07:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/amd64/ia32 ia32_reg.c Log: MFC: 1.2: don't set segment registers yet. Approved by: re Revision Changes Path 1.1.4.1 +4 -0 src/sys/amd64/ia32/ia32_reg.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:16:53 2005 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 761C916A41F; Wed, 26 Oct 2005 22:16:53 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3436E43D45; Wed, 26 Oct 2005 22:16:53 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMGrgI009717; Wed, 26 Oct 2005 22:16:53 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMGrZB009716; Wed, 26 Oct 2005 22:16:53 GMT (envelope-from peter) Message-Id: <200510262216.j9QMGrZB009716@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:16: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/amd64/amd64 machdep.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, 26 Oct 2005 22:16:53 -0000 peter 2005-10-26 22:16:52 UTC FreeBSD src repository Modified files: sys/amd64/amd64 machdep.c Log: Change PHYSMAP_SIZE to allow for more memory segments. The old value was too low for certain Dell amd64 machines. Revision Changes Path 1.643 +1 -1 src/sys/amd64/amd64/machdep.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:19:52 2005 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 7727416A41F; Wed, 26 Oct 2005 22:19:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3193543D45; Wed, 26 Oct 2005 22:19:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMJqbi009796; Wed, 26 Oct 2005 22:19:52 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMJqBn009795; Wed, 26 Oct 2005 22:19:52 GMT (envelope-from peter) Message-Id: <200510262219.j9QMJqBn009795@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:19: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/compat/freebsd32 freebsd32_misc.c 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, 26 Oct 2005 22:19:52 -0000 peter 2005-10-26 22:19:52 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_misc.c syscalls.master Log: There is no 'freebsd3_' prefix for COMPAT_43 syscalls. Those are all bundled under MCOMPAT and have an 'o' prefix. Adjust as appropriate. This re-enables compiling without COMPAT_43 again. Revision Changes Path 1.45 +18 -18 src/sys/compat/freebsd32/freebsd32_misc.c 1.57 +10 -13 src/sys/compat/freebsd32/syscalls.master From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:21:04 2005 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 4DBCC16A41F; Wed, 26 Oct 2005 22:21:04 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 067F243D45; Wed, 26 Oct 2005 22:21:04 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QML3Wf009967; Wed, 26 Oct 2005 22:21:03 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QML3vN009966; Wed, 26 Oct 2005 22:21:03 GMT (envelope-from peter) Message-Id: <200510262221.j9QML3vN009966@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:21: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/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_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: Wed, 26 Oct 2005 22:21:04 -0000 peter 2005-10-26 22:21:03 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: Regenerate (with the correct #ifdef COMPAT_43 tests now) Revision Changes Path 1.45 +37 -37 src/sys/compat/freebsd32/freebsd32_proto.h 1.45 +9 -9 src/sys/compat/freebsd32/freebsd32_syscall.h 1.36 +9 -9 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.46 +15 -9 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:23:52 2005 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 D984F16A41F; Wed, 26 Oct 2005 22:23:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9191443D45; Wed, 26 Oct 2005 22:23:52 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMNqiD010132; Wed, 26 Oct 2005 22:23:52 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMNqxR010131; Wed, 26 Oct 2005 22:23:52 GMT (envelope-from peter) Message-Id: <200510262223.j9QMNqxR010131@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:23: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/usr.sbin/fdcontrol fdcontrol.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, 26 Oct 2005 22:23:53 -0000 peter 2005-10-26 22:23:52 UTC FreeBSD src repository Modified files: usr.sbin/fdcontrol fdcontrol.c Log: Make fdcontrol work again. It has been broken for a while. It tries to set the floppy controller parameters, but that requires that the device node be open in O_RDWR mode now. I think it is broken in 6.0 as well. This line looks like a stray anyway. Revision Changes Path 1.14 +0 -1 src/usr.sbin/fdcontrol/fdcontrol.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:28:38 2005 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 A4C3816A41F; Wed, 26 Oct 2005 22:28:38 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B1B43D46; Wed, 26 Oct 2005 22:28:38 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMScvf010448; Wed, 26 Oct 2005 22:28:38 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMSctp010447; Wed, 26 Oct 2005 22:28:38 GMT (envelope-from peter) Message-Id: <200510262228.j9QMSctp010447@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:28: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/usr.sbin/fdread fdread.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, 26 Oct 2005 22:28:38 -0000 peter 2005-10-26 22:28:38 UTC FreeBSD src repository Modified files: usr.sbin/fdread fdread.c Log: fdread cannot work without opening the /dev/fd node in O_RDWR mode now, because it sets the floppy controller parameters, which requires O_RDWR. Specifically, the FD_SOPTS ioctl requires this, and the code errors out and aborts if it can't do it. Among other things, it is changing the FDOPT_NOERRLOG flag. Broken in 6.0 as well. Revision Changes Path 1.7 +1 -1 src/usr.sbin/fdread/fdread.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:32:31 2005 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 04FEE16A420; Wed, 26 Oct 2005 22:32:31 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B352E43D46; Wed, 26 Oct 2005 22:32:30 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMWUHY010687; Wed, 26 Oct 2005 22:32:30 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMWUjZ010686; Wed, 26 Oct 2005 22:32:30 GMT (envelope-from peter) Message-Id: <200510262232.j9QMWUjZ010686@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:32:30 +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 io_apic.c local_apic.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, 26 Oct 2005 22:32:31 -0000 peter 2005-10-26 22:32:30 UTC FreeBSD src repository Modified files: sys/amd64/amd64 io_apic.c local_apic.c Log: MFi386: Various apic fixes and tweaks * Don't recursively panic if we've already paniced and the local apic is now stuck. * Add hw.apic.* tunables/sysctls for extint controls * Change "lapic%d timer" to "cpu%d timer" intname to match i386 Revision Changes Path 1.16 +12 -2 src/sys/amd64/amd64/io_apic.c 1.18 +8 -4 src/sys/amd64/amd64/local_apic.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:40:08 2005 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 EEF6A16A41F; Wed, 26 Oct 2005 22:40:07 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E25D43D48; Wed, 26 Oct 2005 22:40:07 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QMe7J2011004; Wed, 26 Oct 2005 22:40:07 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QMe7l0011003; Wed, 26 Oct 2005 22:40:07 GMT (envelope-from peter) Message-Id: <200510262240.j9QMe7l0011003@repoman.freebsd.org> From: Peter Wemm Date: Wed, 26 Oct 2005 22:40:07 +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_kdb.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, 26 Oct 2005 22:40:08 -0000 peter 2005-10-26 22:40:07 UTC FreeBSD src repository Modified files: sys/kern subr_kdb.c Log: Commit something we found useful at work at one point. Add sysctls for debug.kdb.panic and debug.kdb.trap alongside the existing debug.kdb.enter sysctl. 'panic' causes a panic, and 'trap' causes a page fault. We used these to ensure that crash dumps succeed from those two common failure modes. This avoids the need for creating a 'panic' kld module. Revision Changes Path 1.16 +40 -0 src/sys/kern/subr_kdb.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 22:47:28 2005 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 CF5E216A41F; Wed, 26 Oct 2005 22:47:28 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13E0C43D45; Wed, 26 Oct 2005 22:47:21 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9QMlDOx016223; Wed, 26 Oct 2005 15:47:13 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9QMlC25016222; Wed, 26 Oct 2005 15:47:12 -0700 (PDT) (envelope-from obrien) Date: Wed, 26 Oct 2005 15:47:12 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051026224712.GA16118@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> <20051026172734.GA99901@dragon.NUXI.org> <435FE099.6060508@cronyx.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435FE099.6060508@cronyx.ru> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2005 22:47:29 -0000 On Thu, Oct 27, 2005 at 12:01:29AM +0400, Roman Kurakin wrote: > David O'Brien: > >On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: > >>The commit log didn't state what was the problem variable forward > >>declaration or/and function > >>forward declaration. > > > >Since you became a committer 2003/12/18, I guess you haven't been part of > >FreeBSD when we've worked on a GCC compiler upgrade. We make these type > >of changes to make a new version of GCC build FreeBSD. The other choice > >is to disconnect these drivers from the build. The commits done where > >typical of what's been done for the past decade. > > > Please provide detailed technical information what is wrong in my > change of your commit. Instead of arguing this with you as it is probably fruitless. If you're going to pull the "maintainer" card, then please have these drivers moved to src/sys/contrib and note them in src/MAINTAINERS. That way this isn't a landmine for other committers to step on. > I do not want to list them in src/MAINTAINERS cause I think it is > better to allow any commits. > Cases such this one is rare. Rare or not, they can occur so why not take easy steps to avoid strife? -- -- David (obrien@FreeBSD.org) From owner-cvs-src@FreeBSD.ORG Wed Oct 26 23:13:52 2005 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 C199816A41F; Wed, 26 Oct 2005 23:13:52 +0000 (GMT) (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 7C80043D45; Wed, 26 Oct 2005 23:13:52 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9QNDq73012568; Wed, 26 Oct 2005 23:13:52 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9QNDqdo012567; Wed, 26 Oct 2005 23:13:52 GMT (envelope-from emax) Message-Id: <200510262313.j9QNDqdo012567@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 26 Oct 2005 23:13: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/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.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, 26 Oct 2005 23:13:52 -0000 emax 2005-10-26 23:13:52 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c Log: Do not manually allocate/free device's softc structure. Pointed by: jhb Reviewed by: imp, jhb Revision Changes Path 1.18 +2 -14 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c From owner-cvs-src@FreeBSD.ORG Wed Oct 26 23:48:28 2005 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 F267016A41F; Wed, 26 Oct 2005 23:48:27 +0000 (GMT) (envelope-from peter@wemm.org) Received: from daintree.corp.yahoo.com (daintree.corp.yahoo.com [216.145.52.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4B8143D48; Wed, 26 Oct 2005 23:48:27 +0000 (GMT) (envelope-from peter@wemm.org) Received: by daintree.corp.yahoo.com (Postfix, from userid 2154) id A9E6019761; Wed, 26 Oct 2005 16:48:27 -0700 (PDT) From: Peter Wemm To: John Baldwin Date: Wed, 26 Oct 2005 16:48:26 -0700 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <20051025224540.GB4123@soaustin.net> <200510261320.46985.jhb@freebsd.org> In-Reply-To: <200510261320.46985.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510261648.27126.peter@wemm.org> Cc: Mark Linimon , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 26 Oct 2005 23:48:28 -0000 On Wednesday 26 October 2005 10:20 am, John Baldwin wrote: > On Tuesday 25 October 2005 06:45 pm, Mark Linimon wrote: > > On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > > > Reorganize the interrupt handling code a bit to make a few > > > things cleaner and increase flexibility to allow various > > > different approaches to be tried in the future. > > > > Wow. Having (in a previous existance) worked on real-time OS > > interrupt handlers I can likely guess how much work went into this. > > Nice. > > Actually, this diff wasn't a huge deal, it was mostly just a > refactoring of what was already there. Of course the real challenge is to make things like the puc device do the right thing automatically instead of needing 'options PUC_FASTINTR'. -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 From owner-cvs-src@FreeBSD.ORG Thu Oct 27 03:09:21 2005 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 3691816A41F; Thu, 27 Oct 2005 03:09:21 +0000 (GMT) (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 C318743D45; Thu, 27 Oct 2005 03:09:20 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R39KJu031402; Thu, 27 Oct 2005 03:09:20 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R39KkY031401; Thu, 27 Oct 2005 03:09:20 GMT (envelope-from davidxu) Message-Id: <200510270309.j9R39KkY031401@repoman.freebsd.org> From: David Xu Date: Thu, 27 Oct 2005 03:09: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/lib 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: Thu, 27 Oct 2005 03:09:21 -0000 davidxu 2005-10-27 03:09:20 UTC FreeBSD src repository Modified files: lib Makefile Log: Disconnect libc_r from buildworld, it is still kept in the tree to provide some baseline references, but users are encouraged to use libpthread or libthr in real world. Discussed on: arch@ Revision Changes Path 1.208 +1 -1 src/lib/Makefile From owner-cvs-src@FreeBSD.ORG Thu Oct 27 03:21:41 2005 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 2C90B16A41F; Thu, 27 Oct 2005 03:21:41 +0000 (GMT) (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 9F1AE43D46; Thu, 27 Oct 2005 03:21:35 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.204] ([192.168.254.204]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id j9R3LYSX002385; Wed, 26 Oct 2005 21:21:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <436047BF.7000409@samsco.org> Date: Wed, 26 Oct 2005 21:21:35 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Xu References: <200510270309.j9R39KkY031401@repoman.freebsd.org> In-Reply-To: <200510270309.j9R39KkY031401@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 03:21:41 -0000 David Xu wrote: > davidxu 2005-10-27 03:09:20 UTC > > FreeBSD src repository > > Modified files: > lib Makefile > Log: > Disconnect libc_r from buildworld, it is still kept in the tree to > provide some baseline references, but users are encouraged to use > libpthread or libthr in real world. > > Discussed on: arch@ > > Revision Changes Path > 1.208 +1 -1 src/lib/Makefile All this means is that it'll rot and quickly become useless. RIP libc_r. Scott From owner-cvs-src@FreeBSD.ORG Thu Oct 27 04:26:36 2005 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 168FF16A41F; Thu, 27 Oct 2005 04:26:36 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB19343D46; Thu, 27 Oct 2005 04:26:35 +0000 (GMT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9R4QZDt034499; Thu, 27 Oct 2005 04:26:35 GMT (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9R4QZ6D034498; Thu, 27 Oct 2005 04:26:35 GMT (envelope-from ps) Message-Id: <200510270426.j9R4QZ6D034498@repoman.freebsd.org> From: Paul Saab Date: Thu, 27 Oct 2005 04:26:35 +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_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: Thu, 27 Oct 2005 04:26:36 -0000 ps 2005-10-27 04:26:35 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Allow 32bit get/setsockopt with SO_SNDTIMEO or SO_RECVTIMEO to work. Revision Changes Path 1.250 +29 -3 src/sys/kern/uipc_socket.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 05:12:55 2005 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 33C6A16A41F; Thu, 27 Oct 2005 05:12:55 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59DEF43D45; Thu, 27 Oct 2005 05:12:54 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5Cr3E008388; Thu, 27 Oct 2005 15:12:53 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5Cohr013129; Thu, 27 Oct 2005 15:12:51 +1000 Date: Thu, 27 Oct 2005 15:12:50 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Luigi Rizzo In-Reply-To: <20051025051606.A49155@xorpc.icir.org> Message-ID: <20051027150449.H23976@delplex.bde.org> References: <200510251213.j9PCDbBp010108@repoman.freebsd.org> <20051025051606.A49155@xorpc.icir.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Bruce Evans , cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/msun/src e_rem_pio2f.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, 27 Oct 2005 05:12:55 -0000 On Tue, 25 Oct 2005, Luigi Rizzo wrote: > wow now this is a commit message!!! > > On Tue, Oct 25, 2005 at 12:13:37PM +0000, Bruce Evans wrote: >> bde 2005-10-25 12:13:37 UTC >> >> FreeBSD src repository >> >> Modified files: >> lib/msun/src e_rem_pio2f.c >> Log: >> More fixes for arg reduction near pi/2 on systems with broken assignment >> to floats (mainly i386's). All errors of more than 1 ulp for float >> ... It is too long because I didn't have tme to make it shorter :-). The commit logs aren't quite the right place for describing the (apparently) not very well known intricacies in libm, but neither is the code, especially here since I plan to optimize the float case by not using floats internally and then the intricacies in e_rem_pio2f.c will mostly go away. This one will move to e_rem_pio2.c if we start porperly supporting long double precision on i386's before gcc properly supports double precision on i386's, but I want to keep e_rem_pio2.c in sync with the vendor version. Bruce From owner-cvs-src@FreeBSD.ORG Thu Oct 27 05:31:17 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 4CDFB16A420; Thu, 27 Oct 2005 05:31:17 +0000 (GMT) Date: Thu, 27 Oct 2005 05:31:17 +0000 From: Alexey Dokuchaev To: David Xu Message-ID: <20051027053117.GA63240@FreeBSD.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510270309.j9R39KkY031401@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 05:31:17 -0000 Hello, I was under impression that some software in our Ports Collection might still require libc_r to run (e.g. it crashes with libpthread). beep- media-player is (was?) one such beast. It's probably a good idea to grep for libc_r references in /usr/ports before we completely get rid of it. ./danfe On Thu, Oct 27, 2005 at 03:09:20AM +0000, David Xu wrote: > davidxu 2005-10-27 03:09:20 UTC > > FreeBSD src repository > > Modified files: > lib Makefile > Log: > Disconnect libc_r from buildworld, it is still kept in the tree to > provide some baseline references, but users are encouraged to use > libpthread or libthr in real world. > > Discussed on: arch@ > > Revision Changes Path > 1.208 +1 -1 src/lib/Makefile > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" From owner-cvs-src@FreeBSD.ORG Thu Oct 27 05:43:44 2005 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 2C66A16A41F; Thu, 27 Oct 2005 05:43:44 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B5643D46; Thu, 27 Oct 2005 05:43:43 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9R5heqs051470; Thu, 27 Oct 2005 05:43:42 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4360690F.3060606@freebsd.org> Date: Thu, 27 Oct 2005 13:43:43 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alexey Dokuchaev References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> In-Reply-To: <20051027053117.GA63240@FreeBSD.org> 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/lib 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: Thu, 27 Oct 2005 05:43:44 -0000 You mean the XMMS clone ? it just works fine, I have installed it on my IBM Thinkpad T43 and run it with libthr for monthes without any problem. David Xu Alexey Dokuchaev wrote: > Hello, > > I was under impression that some software in our Ports Collection might > still require libc_r to run (e.g. it crashes with libpthread). beep- > media-player is (was?) one such beast. It's probably a good idea to > grep for libc_r references in /usr/ports before we completely get rid of > it. > > ./danfe From owner-cvs-src@FreeBSD.ORG Thu Oct 27 05:58:48 2005 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 E4AEE16A41F; Thu, 27 Oct 2005 05:58:48 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2F1D43D45; Thu, 27 Oct 2005 05:58:47 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5wko3004116; Thu, 27 Oct 2005 15:58:46 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9R5witV014561; Thu, 27 Oct 2005 15:58:45 +1000 Date: Thu, 27 Oct 2005 15:58:44 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Peter Wemm In-Reply-To: <200510262240.j9QMe7l0011003@repoman.freebsd.org> Message-ID: <20051027155314.A24293@delplex.bde.org> References: <200510262240.j9QMe7l0011003@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/kern subr_kdb.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, 27 Oct 2005 05:58:49 -0000 On Wed, 26 Oct 2005, Peter Wemm wrote: > peter 2005-10-26 22:40:07 UTC > > FreeBSD src repository > > Modified files: > sys/kern subr_kdb.c > Log: > Commit something we found useful at work at one point. Add sysctls for > debug.kdb.panic and debug.kdb.trap alongside the existing debug.kdb.enter > sysctl. 'panic' causes a panic, and 'trap' causes a page fault. We used > these to ensure that crash dumps succeed from those two common failure > modes. This avoids the need for creating a 'panic' kld module. This has nothing to do with kdb, so it doesn't belong here. Panics and traps just happen to invoke a debugger if a debugger is configured. Panics should have even less to do with kdb -- the existence of the panic command in ddb is a bug, since debugger context is special and not suitable for calling panic(); e.g., sync() in panic() only ever worked because of other bugs (ddb keeps^Wkept interrupts disabled but sync() requires interrupts to do i/o). Bruce From owner-cvs-src@FreeBSD.ORG Thu Oct 27 05:58:49 2005 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 BB69916A420; Thu, 27 Oct 2005 05:58:49 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B27743D45; Thu, 27 Oct 2005 05:58:49 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 57F061A3C31; Wed, 26 Oct 2005 22:58:49 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7CEFE51246; Thu, 27 Oct 2005 01:58:48 -0400 (EDT) Date: Thu, 27 Oct 2005 01:58:48 -0400 From: Kris Kennaway To: Alexey Dokuchaev Message-ID: <20051027055848.GA77915@xor.obsecurity.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <20051027053117.GA63240@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, David Xu , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 05:58:49 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 05:31:17AM +0000, Alexey Dokuchaev wrote: > Hello, >=20 > I was under impression that some software in our Ports Collection might > still require libc_r to run (e.g. it crashes with libpthread). beep- > media-player is (was?) one such beast. It's probably a good idea to > grep for libc_r references in /usr/ports before we completely get rid of > it. I'll do a full build asap and see what breaks. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYGyXWry0BWjoQKURAqAiAJ9a36KQ+K2TzPFC4zJsc6DiyRof8QCgqH6u PLpjeUlly1rgixvfHusGw1M= =rLW6 -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 06:04:05 2005 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 A9ADB16A41F; Thu, 27 Oct 2005 06:04:05 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3337643D45; Thu, 27 Oct 2005 06:04:04 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.13.4/8.13.4) with ESMTP id j9R64d6A034524; Thu, 27 Oct 2005 02:04:39 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Kris Kennaway In-Reply-To: <20051027055848.GA77915@xor.obsecurity.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> <20051027055848.GA77915@xor.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-QVNr3+4ZLSGLr0yrnQ1j" Organization: MarcusCom, Inc. Date: Thu, 27 Oct 2005 02:03:59 -0400 Message-Id: <1130393039.15730.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 FreeBSD GNOME Team Port Cc: cvs-src@freebsd.org, Alexey Dokuchaev , src-committers@freebsd.org, David Xu , cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 06:04:05 -0000 --=-QVNr3+4ZLSGLr0yrnQ1j Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2005-10-27 at 01:58 -0400, Kris Kennaway wrote: > On Thu, Oct 27, 2005 at 05:31:17AM +0000, Alexey Dokuchaev wrote: > > Hello, > >=20 > > I was under impression that some software in our Ports Collection might > > still require libc_r to run (e.g. it crashes with libpthread). beep- > > media-player is (was?) one such beast. It's probably a good idea to > > grep for libc_r references in /usr/ports before we completely get rid o= f > > it. >=20 > I'll do a full build asap and see what breaks. By my calculation, lang/cli and games/xrally should be broken by this. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-QVNr3+4ZLSGLr0yrnQ1j Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQBDYG3Pb2iPiv4Uz4cRAla0AJ0dUIPxEDX2ueU64nDahqnW4iIS2QCbBCgr X5EH6gqvOB49WBt6NGwxK9M= =GUQ9 -----END PGP SIGNATURE----- --=-QVNr3+4ZLSGLr0yrnQ1j-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 06:25:19 2005 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 281B016A41F; Thu, 27 Oct 2005 06:25:19 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A6DD43D55; Thu, 27 Oct 2005 06:25:07 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9R6P5Dt093467; Thu, 27 Oct 2005 09:25:06 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 75059-03-3; Thu, 27 Oct 2005 09:25:04 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9R6LI5f093361 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 09:21:18 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9R6LJA2007091; Thu, 27 Oct 2005 09:21:19 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 09:21:19 +0300 From: Ruslan Ermilov To: David Xu Message-ID: <20051027062119.GC68470@ip.net.ua> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CUfgB8w4ZwR/yMy5" Content-Disposition: inline In-Reply-To: <200510270309.j9R39KkY031401@repoman.freebsd.org> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.ORG, src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 06:25:20 -0000 --CUfgB8w4ZwR/yMy5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 03:09:20AM +0000, David Xu wrote: > davidxu 2005-10-27 03:09:20 UTC >=20 > FreeBSD src repository >=20 > Modified files: > lib Makefile=20 > Log: > Disconnect libc_r from buildworld, it is still kept in the tree to > provide some baseline references, but users are encouraged to use > libpthread or libthr in real world. > =20 > Discussed on: arch@ > =20 > Revision Changes Path > 1.208 +1 -1 src/lib/Makefile >=20 This should break alpha and sparc64 ports: on these architectures, libpthread was symlinked to libc_r. The magic is in makefiles: # libpthread/Makefile =2Eif ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" LIB=3Dkse =2Eelse LIB=3Dpthread =2Eendif # libc_r/Makefile =2Eif ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" SYMLINKS+=3Dlib${LIB}.a ${LIBDIR}/libpthread.a =2Eif !defined(NO_PIC) SYMLINKS+=3Dlib${LIB}.so ${SHLIBDIR}/libpthread.so =2Eendif =2Eif !defined(NO_PROFILE) SYMLINKS+=3Dlib${LIB}_p.a ${LIBDIR}/libpthread_p.a =2Eendif =2Eendif Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --CUfgB8w4ZwR/yMy5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYHHfqRfpzJluFF4RAq26AJ9eH51qGxCE7nFegMhzQ8SAKGeTyQCeKzHQ i/JXsz+3AIMdp7c3MdHegFY= =TSlb -----END PGP SIGNATURE----- --CUfgB8w4ZwR/yMy5-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 06:34:08 2005 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 6314716A41F; Thu, 27 Oct 2005 06:34:08 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC8B343D46; Thu, 27 Oct 2005 06:34:07 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 96C9550F95; Thu, 27 Oct 2005 08:34:05 +0200 (CEST) Received: from localhost (dle176.neoplus.adsl.tpnet.pl [83.24.34.176]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 2541A509F1; Thu, 27 Oct 2005 08:33:58 +0200 (CEST) Date: Thu, 27 Oct 2005 08:33:53 +0200 From: Pawel Jakub Dawidek To: Yar Tikhiy Message-ID: <20051027063353.GA63896@garage.freebsd.pl> References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7JfCtLOvnd9MIVvH" Content-Disposition: inline In-Reply-To: <200510231406.j9NE6r8L008373@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL,RCVD_IN_XBL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd 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, 27 Oct 2005 06:34:08 -0000 --7JfCtLOvnd9MIVvH Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: +> yar 2005-10-23 14:06:53 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> etc/rc.d ike named ppp-user sshd=20 +> Log: +> Don't be lazy, set the "command" variable even if +> /etc/defaults/rc.conf will provide foo_program, too. +> By specifying "command" we explicitly say that we're +> going to rely on rc.subr(8) default methods, and +> rc.subr(8) will take advantage of this soon. +> =20 +> The majority of our rc.d scripts already set "command" +> if appropriate, so fix just the non-compliant handful. [...] +> name=3D"named" +> rcvar=3D`set_rcvar` +> +command=3D"/usr/sbin/${name}" [...] +> name=3D"ppp" +> rcvar=3D`set_rcvar` +> +command=3D"/usr/sbin/ppp" [...] +> name=3D"sshd" +> rcvar=3D`set_rcvar` +> +command=3D"/usr/sbin/${name}" Any reason you didn't used ${name} in ppp case? --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --7JfCtLOvnd9MIVvH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD4DBQFDYHTRForvXbEpPzQRAiklAJiQ+ROz3lYY7hj5N4aliON6eqH0AKD4G6jF 5QzB6sUlkGYwRgkS0DZ2Fw== =zflN -----END PGP SIGNATURE----- --7JfCtLOvnd9MIVvH-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 06:36:30 2005 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 AD0A116A41F; Thu, 27 Oct 2005 06:36:30 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76B1043D46; Thu, 27 Oct 2005 06:36:30 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9R6aRiE058537; Thu, 27 Oct 2005 06:36:28 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4360756D.1030708@freebsd.org> Date: Thu, 27 Oct 2005 14:36:29 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20050928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027062119.GC68470@ip.net.ua> In-Reply-To: <20051027062119.GC68470@ip.net.ua> 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/lib 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: Thu, 27 Oct 2005 06:36:30 -0000 Ruslan Ermilov wrote: > This should break alpha and sparc64 ports: on these architectures, > libpthread was symlinked to libc_r. The magic is in makefiles: > > # libpthread/Makefile > .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" > LIB=kse > .else > LIB=pthread > .endif > > # libc_r/Makefile > .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" > SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a > .if !defined(NO_PIC) > SYMLINKS+=lib${LIB}.so ${SHLIBDIR}/libpthread.so > .endif > .if !defined(NO_PROFILE) > SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a > .endif > .endif > > > Cheers, Thanks for the information, last time, I have tested it on panther, libthr works, at least works with test programs. Would it be ok to let libthr be the libpthread ? I can not test alpha, it seems beast still uses 5.4. David Xu From owner-cvs-src@FreeBSD.ORG Thu Oct 27 06:56:00 2005 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 A152616A41F; Thu, 27 Oct 2005 06:56:00 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B75A43D4C; Thu, 27 Oct 2005 06:55:59 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 83BD350F95; Thu, 27 Oct 2005 08:55:57 +0200 (CEST) Received: from localhost (dle176.neoplus.adsl.tpnet.pl [83.24.34.176]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id EDB47509F1; Thu, 27 Oct 2005 08:55:50 +0200 (CEST) Date: Thu, 27 Oct 2005 08:55:46 +0200 From: Pawel Jakub Dawidek To: Don Lewis Message-ID: <20051027065505.GA668@garage.freebsd.pl> References: <200510032157.j93LvhM7022905@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6WlEvdN9Dv0WHSBl" Content-Disposition: inline In-Reply-To: <200510032157.j93LvhM7022905@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL,RCVD_IN_XBL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.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, 27 Oct 2005 06:56:01 -0000 --6WlEvdN9Dv0WHSBl Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 03, 2005 at 09:57:43PM +0000, Don Lewis wrote: +> truckman 2005-10-03 21:57:43 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/ufs/ffs ffs_alloc.c=20 +> Log: +> Initialize the inode i_flag field in ffs_valloc() to clean up any +> stale flag bits left over from before the inode was recycled. +> =20 +> Without this change, a leftover IN_SPACECOUNTED flag could prevent +> softdep_freefile() and softdep_releasefile() from incrementing +> fs_pendinginodes. Because handle_workitem_freefile() unconditionally +> decrements fs_pendinginodes, a negative value could be reported at +> file system unmount time with a message like: +> unmount pending error: blocks 0 files -3 +> The pending block count in fs_pendingblocks could also be negative +> for similar reasons. These errors can cause the data returned by +> statfs() to be slightly incorrect. Some other cleanup code in +> softdep_releasefile() could also be incorrectly bypassed. Not sure how much the problem I'm seeing is related to this, but after clean reboot, when I do: # mount -u -r /usr I get: /usr: update error: blocks 24 files 1 Any idea what's going on? This file system is using soft-updates. Maybe it remounts itself to read-only before flushing buffers? Not sure how old is the problem, but could be very old. Before GEOM device was always open RW, now RO means RO and the order could be wrong somewhere. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --6WlEvdN9Dv0WHSBl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYHnyForvXbEpPzQRAnyEAKCwpqvvx+cBqYzuvcDNnfd3IX28DACglW2x qFdpCZ6P/wBRWwhtbsFrB/A= =sCfu -----END PGP SIGNATURE----- --6WlEvdN9Dv0WHSBl-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 07:04:31 2005 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 51AF216A41F; Thu, 27 Oct 2005 07:04:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B590E43D49; Thu, 27 Oct 2005 07:04:30 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 97C4D1A3C32; Thu, 27 Oct 2005 00:04:30 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1F4E7512B5; Thu, 27 Oct 2005 03:04:29 -0400 (EDT) Date: Thu, 27 Oct 2005 03:04:28 -0400 From: Kris Kennaway To: David Xu Message-ID: <20051027070428.GA95514@xor.obsecurity.org> References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027062119.GC68470@ip.net.ua> <4360756D.1030708@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline In-Reply-To: <4360756D.1030708@freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 07:04:31 -0000 --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 02:36:29PM +0800, David Xu wrote: > Ruslan Ermilov wrote: >=20 > >This should break alpha and sparc64 ports: on these architectures, > >libpthread was symlinked to libc_r. The magic is in makefiles: > > > ># libpthread/Makefile > >.if ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" > >LIB=3Dkse > >.else > >LIB=3Dpthread > >.endif > > > ># libc_r/Makefile > >.if ${MACHINE_ARCH} =3D=3D "alpha" || ${MACHINE_ARCH} =3D=3D "sparc64" > >SYMLINKS+=3Dlib${LIB}.a ${LIBDIR}/libpthread.a > >.if !defined(NO_PIC) > >SYMLINKS+=3Dlib${LIB}.so ${SHLIBDIR}/libpthread.so > >.endif > >.if !defined(NO_PROFILE) > >SYMLINKS+=3Dlib${LIB}_p.a ${LIBDIR}/libpthread_p.a > >.endif > >.endif > > > > > >Cheers, >=20 > Thanks for the information, last time, I have tested it on > panther, libthr works, at least works with test programs. > Would it be ok to let libthr be the libpthread ? I can not > test alpha, it seems beast still uses 5.4. I'd prefer the following: put libc_r back for now so it's easily available as a fallback, make libthr the default on sparc64 and alpha for a few weeks so that I and others can test it, and then flip the switch once you've fixed any problems that are found with it (in the past libthr did not work 100% on sparc, but you may have fixed it). Kris --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYHv7Wry0BWjoQKURApzeAJ4+0MsF45GgUkn5yDGWgWQhWwYgOgCgrXrX wqGdUJWmPb14lJ6ngTEP1G8= =u8x+ -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 07:09:10 2005 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 C690116A41F; Thu, 27 Oct 2005 07:09:10 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12FF443D45; Thu, 27 Oct 2005 07:09:10 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id C265C50F95; Thu, 27 Oct 2005 09:09:08 +0200 (CEST) Received: from localhost (dle176.neoplus.adsl.tpnet.pl [83.24.34.176]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 552D1509F1; Thu, 27 Oct 2005 09:09:03 +0200 (CEST) Date: Thu, 27 Oct 2005 09:08:58 +0200 From: Pawel Jakub Dawidek To: Don Lewis Message-ID: <20051027070858.GA641@garage.freebsd.pl> References: <200510032157.j93LvhM7022905@repoman.freebsd.org> <20051027065505.GA668@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <20051027065505.GA668@garage.freebsd.pl> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL,RCVD_IN_XBL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.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, 27 Oct 2005 07:09:11 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 08:55:46AM +0200, Pawel Jakub Dawidek wrote: +> On Mon, Oct 03, 2005 at 09:57:43PM +0000, Don Lewis wrote: +> +> truckman 2005-10-03 21:57:43 UTC +> +>=20 +> +> FreeBSD src repository +> +>=20 +> +> Modified files: +> +> sys/ufs/ffs ffs_alloc.c=20 +> +> Log: +> +> Initialize the inode i_flag field in ffs_valloc() to clean up any +> +> stale flag bits left over from before the inode was recycled. +> +> =20 +> +> Without this change, a leftover IN_SPACECOUNTED flag could prevent +> +> softdep_freefile() and softdep_releasefile() from incrementing +> +> fs_pendinginodes. Because handle_workitem_freefile() unconditional= ly +> +> decrements fs_pendinginodes, a negative value could be reported at +> +> file system unmount time with a message like: +> +> unmount pending error: blocks 0 files -3 +> +> The pending block count in fs_pendingblocks could also be negative +> +> for similar reasons. These errors can cause the data returned by +> +> statfs() to be slightly incorrect. Some other cleanup code in +> +> softdep_releasefile() could also be incorrectly bypassed. +>=20 +> Not sure how much the problem I'm seeing is related to this, but after +> clean reboot, when I do: +>=20 +> # mount -u -r /usr +>=20 +> I get: /usr: update error: blocks 24 files 1 +>=20 +> Any idea what's going on? This file system is using soft-updates. +> Maybe it remounts itself to read-only before flushing buffers? +>=20 +> Not sure how old is the problem, but could be very old. Before GEOM +> device was always open RW, now RO means RO and the order could be +> wrong somewhere. I fsck'ed this "clean" file system and: ** Phase 4 - Check Reference Counts UNREF FILE I=3D2357670 OWNER=3Dpjd MODE=3D100600 SIZE=3D258 MTIME=3DOct 27 08:40 2005 CLEAR? [yn] y UNREF FILE I=3D8101888 OWNER=3Droot MODE=3D100644 SIZE=3D10573 MTIME=3DOct 27 08:41 2005 CLEAR? [yn] y UNREF FILE I=3D8102436 OWNER=3Droot MODE=3D100644 SIZE=3D10573 MTIME=3DOct 21 12:04 2005 CLEAR? [yn] y ** Phase 5 - Check Cyl groups FREE BLK COUNT(S) WRONG IN SUPERBLK SALVAGE? [yn] y SUMMARY INFORMATION BAD SALVAGE? [yn] y BLK(S) MISSING IN BIT MAPS SALVAGE? [yn] y 887288 files, 28777941 used, 3987616 free (251064 frags, 467069 blocks, 0.8= % fra gmentation) ***** FILE SYSTEM WAS MODIFIED ***** Doing: # sync;sync;sync;mount -u -r /usr worked just fine when I tried. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYH0KForvXbEpPzQRAobeAJ9qdsQ532+FTApByGDBpBPiQ2THIQCg96zE YqGXjUYZ20FCs1x3dy/AJ38= =i6+0 -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 07:15:00 2005 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 89B4B16A41F; Thu, 27 Oct 2005 07:15:00 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1B6043D46; Thu, 27 Oct 2005 07:14:59 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9R7EvHw007561; Thu, 27 Oct 2005 11:14:57 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9R7Evq3007560; Thu, 27 Oct 2005 11:14:57 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Oct 2005 11:14:56 +0400 From: Yar Tikhiy To: Pawel Jakub Dawidek Message-ID: <20051027071456.GA6598@comp.chem.msu.su> References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027063353.GA63896@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051027063353.GA63896@garage.freebsd.pl> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd 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, 27 Oct 2005 07:15:00 -0000 On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: > +> yar 2005-10-23 14:06:53 UTC > +> > +> FreeBSD src repository > +> > +> Modified files: > +> etc/rc.d ike named ppp-user sshd > +> Log: > +> Don't be lazy, set the "command" variable even if > +> /etc/defaults/rc.conf will provide foo_program, too. > +> By specifying "command" we explicitly say that we're > +> going to rely on rc.subr(8) default methods, and > +> rc.subr(8) will take advantage of this soon. > +> > +> The majority of our rc.d scripts already set "command" > +> if appropriate, so fix just the non-compliant handful. > [...] > +> name="named" > +> rcvar=`set_rcvar` > +> +command="/usr/sbin/${name}" > [...] > +> name="ppp" > +> rcvar=`set_rcvar` > +> +command="/usr/sbin/ppp" > [...] > +> name="sshd" > +> rcvar=`set_rcvar` > +> +command="/usr/sbin/${name}" > > Any reason you didn't used ${name} in ppp case? I was just blinded by my being solid sure that $name was "ppp-user". Nowever, now I'm in doubt whether $name should be "ppp". The script is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can rightfully assume that its rc.conf.d file is ppp-user, too. Such assumption will be broken since it is $name that is passed to load_rc_config. I think $name should be changed to "ppp-user" in CURRENT. This will introduce minor incompatibility, but also eliminate a source of further confusion. -- Yar From owner-cvs-src@FreeBSD.ORG Thu Oct 27 07:18:56 2005 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 4432916A41F; Thu, 27 Oct 2005 07:18:56 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 659A043D45; Thu, 27 Oct 2005 07:18:55 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9R7IriF007614; Thu, 27 Oct 2005 11:18:53 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9R7IrQp007613; Thu, 27 Oct 2005 11:18:53 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Oct 2005 11:18:53 +0400 From: Yar Tikhiy To: Max Laier Message-ID: <20051027071852.GB6598@comp.chem.msu.su> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> <200510261416.09346.max@love2party.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510261416.09346.max@love2party.net> User-Agent: Mutt/1.5.9i Cc: cvs-src@freebsd.org, Gleb Smirnoff , Robert Watson , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 27 Oct 2005 07:18:56 -0000 On Wed, Oct 26, 2005 at 02:15:47PM +0200, Max Laier wrote: > On Wednesday 26 October 2005 11:58, Robert Watson wrote: > > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > > R> I think we may actually be in need of either a new flag, > > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > > way R> for protocols to ask if an interface is a loopback interface or > > > not. > > > > > > I'd prefer to rewrite those subsystems that use interface layer but > > > aren't actually interfaces. I have plans to do this for CARP. > > > > At least in the case of if_disc, this won't help. I'm not quite sure why > > if_disc is IFF_LOOPBACK. > > Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which > also contains the following comment: > > /* > * Discard interface driver for protocol testing and timing. > * (Based on the loopback.) > */ > > So it might be a good idea to get rid of it and work from there. During simple comparative testing of if_disc with and without IFF_LOOPBACK I failed to notice any difference. Would anybody object to just dropping IFF_LOOPBACK from if_disc flags? -- Yar From owner-cvs-src@FreeBSD.ORG Thu Oct 27 07:40:54 2005 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 1305F16A41F; Thu, 27 Oct 2005 07:40:54 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFE6243D48; Thu, 27 Oct 2005 07:40:53 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.NUXI.org (obrien@localhost [127.0.0.1]) by dragon.NUXI.org (8.13.4/8.13.4) with ESMTP id j9R7erMU024069; Thu, 27 Oct 2005 00:40:53 -0700 (PDT) (envelope-from obrien@dragon.NUXI.org) Received: (from obrien@localhost) by dragon.NUXI.org (8.13.4/8.13.1/Submit) id j9R7ermR024068; Thu, 27 Oct 2005 00:40:53 -0700 (PDT) (envelope-from obrien) Date: Thu, 27 Oct 2005 00:40:53 -0700 From: "David O'Brien" To: Roman Kurakin Message-ID: <20051027074053.GA24024@dragon.NUXI.org> References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051024072423.GA34909@dragon.NUXI.org> X-Operating-System: FreeBSD 7.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 07:40:54 -0000 On Mon, Oct 24, 2005 at 12:24:23AM -0700, David O'Brien wrote: > On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: > > rik 2005-09-27 16:57:45 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/cp if_cp.c > > Log: > > Restore if_cp.c 1.27 > > ---------------------------- > > revision 1.27 > > date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: +3 -2 > > Make sure that we call if_free(ifp) after bus_teardown_intr. Since we > > could get an interrupt after we free the ifp, and the interrupt > > handler depended on the ifp being still alive, this could, in theory, > > cause a crash. Eliminate this possibility by moving the if_free to > > after the bus_teardown_intr() call. > > > > In fact, this change do nothing for this driver. It is protected from > > this by cp_destroy variable. This variable also protects driver from > > initiation of any activity from network stack with disabled intr > > handler with this change applied. > > You should not have backed out my commit without discussing it with me > and understanding the reason for the change. > Do it again and I *will* be taking it Core. rik, I'm sorry this reads as such an aggressive email. I thought we were in a discussion about the reason of my commit and was surprised to see your commit happened in the middle of what I thought was an on-going thread. From owner-cvs-src@FreeBSD.ORG Thu Oct 27 08:21:36 2005 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 26CA016A41F; Thu, 27 Oct 2005 08:21:36 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id C533443D75; Thu, 27 Oct 2005 08:21:26 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 32DF151A76; Thu, 27 Oct 2005 10:21:25 +0200 (CEST) Received: from localhost (pjd.wheel.pl [10.0.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id D1F3551A6E; Thu, 27 Oct 2005 10:21:19 +0200 (CEST) Date: Thu, 27 Oct 2005 10:21:16 +0200 From: Pawel Jakub Dawidek To: Yar Tikhiy Message-ID: <20051027082115.GA749@garage.freebsd.pl> References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027063353.GA63896@garage.freebsd.pl> <20051027071456.GA6598@comp.chem.msu.su> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tThc/1wpZn/ma/RB" Content-Disposition: inline In-Reply-To: <20051027071456.GA6598@comp.chem.msu.su> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-5.9 required=3.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd 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, 27 Oct 2005 08:21:36 -0000 --tThc/1wpZn/ma/RB Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 11:14:56AM +0400, Yar Tikhiy wrote: +> On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: +> > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: +> > +> yar 2005-10-23 14:06:53 UTC +> > +>=20 +> > +> FreeBSD src repository +> > +>=20 +> > +> Modified files: +> > +> etc/rc.d ike named ppp-user sshd=20 +> > +> Log: +> > +> Don't be lazy, set the "command" variable even if +> > +> /etc/defaults/rc.conf will provide foo_program, too. +> > +> By specifying "command" we explicitly say that we're +> > +> going to rely on rc.subr(8) default methods, and +> > +> rc.subr(8) will take advantage of this soon. +> > +> =20 +> > +> The majority of our rc.d scripts already set "command" +> > +> if appropriate, so fix just the non-compliant handful. +> > [...] +> > +> name=3D"named" +> > +> rcvar=3D`set_rcvar` +> > +> +command=3D"/usr/sbin/${name}" +> > [...] +> > +> name=3D"ppp" +> > +> rcvar=3D`set_rcvar` +> > +> +command=3D"/usr/sbin/ppp" +> > [...] +> > +> name=3D"sshd" +> > +> rcvar=3D`set_rcvar` +> > +> +command=3D"/usr/sbin/${name}" +> >=20 +> > Any reason you didn't used ${name} in ppp case? +>=20 +> I was just blinded by my being solid sure that $name was "ppp-user". +> Nowever, now I'm in doubt whether $name should be "ppp". The script +> is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can +> rightfully assume that its rc.conf.d file is ppp-user, too. Such +> assumption will be broken since it is $name that is passed to +> load_rc_config. I think $name should be changed to "ppp-user" in +> CURRENT. This will introduce minor incompatibility, but also +> eliminate a source of further confusion. It is confusing, but maybe we should rename ppp-user to ppp? I'm not sure how well sh(1) will handle things like ppp-user_enable=3D"YES", etc. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --tThc/1wpZn/ma/RB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYI37ForvXbEpPzQRAgedAKCqF6j3sq2XiAXmClLCQhGiBxxJ2QCfc4dB Msr9vHj2ZjP8H0pQLHSuHvA= =QKdI -----END PGP SIGNATURE----- --tThc/1wpZn/ma/RB-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 09:19:26 2005 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 100AC16A41F; Thu, 27 Oct 2005 09:19:26 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0E0E43D48; Thu, 27 Oct 2005 09:19:24 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9R9JLPH012921; Thu, 27 Oct 2005 13:19:21 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9R9JLvO012920; Thu, 27 Oct 2005 13:19:21 +0400 (MSD) (envelope-from yar) Date: Thu, 27 Oct 2005 13:19:20 +0400 From: Yar Tikhiy To: Pawel Jakub Dawidek Message-ID: <20051027091920.GA11982@comp.chem.msu.su> Mail-Followup-To: yar@comp.chem.msu.su, pjd@FreeBSD.org, freebsd-rc@FreeBSD.org References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027063353.GA63896@garage.freebsd.pl> <20051027071456.GA6598@comp.chem.msu.su> <20051027082115.GA749@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051027082115.GA749@garage.freebsd.pl> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, freebsd-rc@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd 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, 27 Oct 2005 09:19:26 -0000 On Thu, Oct 27, 2005 at 10:21:16AM +0200, Pawel Jakub Dawidek wrote: > On Thu, Oct 27, 2005 at 11:14:56AM +0400, Yar Tikhiy wrote: > +> On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: > +> > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: > +> > +> yar 2005-10-23 14:06:53 UTC > +> > +> > +> > +> FreeBSD src repository > +> > +> > +> > +> Modified files: > +> > +> etc/rc.d ike named ppp-user sshd > +> > +> Log: > +> > +> Don't be lazy, set the "command" variable even if > +> > +> /etc/defaults/rc.conf will provide foo_program, too. > +> > +> By specifying "command" we explicitly say that we're > +> > +> going to rely on rc.subr(8) default methods, and > +> > +> rc.subr(8) will take advantage of this soon. > +> > +> > +> > +> The majority of our rc.d scripts already set "command" > +> > +> if appropriate, so fix just the non-compliant handful. > +> > [...] > +> > +> name="named" > +> > +> rcvar=`set_rcvar` > +> > +> +command="/usr/sbin/${name}" > +> > [...] > +> > +> name="ppp" > +> > +> rcvar=`set_rcvar` > +> > +> +command="/usr/sbin/ppp" > +> > [...] > +> > +> name="sshd" > +> > +> rcvar=`set_rcvar` > +> > +> +command="/usr/sbin/${name}" > +> > > +> > Any reason you didn't used ${name} in ppp case? > +> > +> I was just blinded by my being solid sure that $name was "ppp-user". > +> Nowever, now I'm in doubt whether $name should be "ppp". The script > +> is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can > +> rightfully assume that its rc.conf.d file is ppp-user, too. Such > +> assumption will be broken since it is $name that is passed to > +> load_rc_config. I think $name should be changed to "ppp-user" in > +> CURRENT. This will introduce minor incompatibility, but also > +> eliminate a source of further confusion. > > It is confusing, but maybe we should rename ppp-user to ppp? > I'm not sure how well sh(1) will handle things like > ppp-user_enable="YES", etc. Yes, this is much better than my lame proposal because so we will have to worry about neither variable naming nor compatibility with installations using ppp and rc.conf.d at once. We change the PROVIDE line and fix all dependent rc.d scripts, then request the repocopy of ppp-user to ppp, fix /etc/netstart, and finally kill the old file. Does this plan look OK? P.S. Looks like it's time to move this thread to -rc, setting Mail-Followup-To accordingly. -- Yar From owner-cvs-src@FreeBSD.ORG Thu Oct 27 09:42:20 2005 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 81AF716A420 for ; Thu, 27 Oct 2005 09:42:20 +0000 (GMT) (envelope-from silby@silby.com) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 81C6943D48 for ; Thu, 27 Oct 2005 09:42:19 +0000 (GMT) (envelope-from silby@silby.com) Received: (qmail 66922 invoked from network); 27 Oct 2005 09:42:17 -0000 Received: from unknown (HELO localhost) (unknown) by unknown with SMTP; 27 Oct 2005 09:42:17 -0000 X-pair-Authenticated: 209.68.2.70 Date: Thu, 27 Oct 2005 04:42:14 -0500 (CDT) From: Mike Silbersack To: Nate Lawson In-Reply-To: <435E6EC7.1050308@root.org> Message-ID: <20051027044034.X5931@odysseus.silby.com> References: <200510230020.j9N0KD4g046756@repoman.freebsd.org> <20051025031002.B911@odysseus.silby.com> <435E6EC7.1050308@root.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/dev/acpica acpi_smbat.c acpi_smbus.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, 27 Oct 2005 09:42:20 -0000 On Tue, 25 Oct 2005, Nate Lawson wrote: >> Nice, I've been waiting for this for a while. Well, sorta waiting. It >> turns out that the battery life on my Acer Pentium M laptop is so good that >> I can estimate when it'll run out mentally. "Has it been more than 2 hours >> since I wandered away from an outlet? Hm, maybe I should return." >> >> Now I just have to wait for this to be MFC'd to RELENG_6. :) > > I'd appreciate testing feedback before MFC. And the MFC will be after 6.0. > > -- > Nate Well, I'm not inclined to upgrade one of my main machines to -current, so I'll have to wait for the MFC. :) The ACPI C3 fix you just forwarded to me - I'm going to try it on my old laptop ASAP. That machine has been unused due to a loose power connector for a while, so I have to do a buildworld in order to bring it up to date. Mike "Silby" Silbersack From owner-cvs-src@FreeBSD.ORG Thu Oct 27 10:21:24 2005 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 860BF16A41F; Thu, 27 Oct 2005 10:21:24 +0000 (GMT) (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 43EF543D45; Thu, 27 Oct 2005 10:21:24 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RALOSP070017; Thu, 27 Oct 2005 10:21:24 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RALNOx070016; Thu, 27 Oct 2005 10:21:23 GMT (envelope-from davidxu) Message-Id: <200510271021.j9RALNOx070016@repoman.freebsd.org> From: David Xu Date: Thu, 27 Oct 2005 10:21: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/lib/libthr 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: Thu, 27 Oct 2005 10:21:24 -0000 davidxu 2005-10-27 10:21:23 UTC FreeBSD src repository Modified files: lib/libthr Makefile Log: Link libthr to libpthread on Alpha and Sparc. Revision Changes Path 1.15 +10 -0 src/lib/libthr/Makefile From owner-cvs-src@FreeBSD.ORG Thu Oct 27 10:22:27 2005 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 0407916A41F; Thu, 27 Oct 2005 10:22:27 +0000 (GMT) (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 8205D43D48; Thu, 27 Oct 2005 10:22:26 +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 490142084; Thu, 27 Oct 2005 12:22:21 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.5/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id C78EA2083; Thu, 27 Oct 2005 12:22:20 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id 9989333C1D; Thu, 27 Oct 2005 12:22:20 +0200 (CEST) To: David Xu References: <200510270309.j9R39KkY031401@repoman.freebsd.org> <20051027053117.GA63240@FreeBSD.org> <4360690F.3060606@freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 12:22:20 +0200 In-Reply-To: <4360690F.3060606@freebsd.org> (David Xu's message of "Thu, 27 Oct 2005 13:43:43 +0800") Message-ID: <867jbzfeeb.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) 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, Alexey Dokuchaev , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib 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: Thu, 27 Oct 2005 10:22:27 -0000 David Xu writes: > You mean the XMMS clone? s/clone/fork/ DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Thu Oct 27 14:04:03 2005 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 51C6416A41F; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D05B43D46; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE42MT090518; Thu, 27 Oct 2005 14:04:02 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE42PN090517; Thu, 27 Oct 2005 14:04:02 GMT (envelope-from suz) Message-Id: <200510271404.j9RE42PN090517@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Thu, 27 Oct 2005 14:04:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/netinet6 ip6_mroute.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, 27 Oct 2005 14:04:03 -0000 suz 2005-10-27 14:04:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/netinet6 ip6_mroute.c Log: MFC rev 1.34 fixed a kernel crash when IPv6 PIM-SM routing is enabled and a PIM register message is received Approved by: re(scottl) Revision Changes Path 1.29.2.1.2.1 +17 -9 src/sys/netinet6/ip6_mroute.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 14:04:03 2005 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 D667216A421; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9114A43D46; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE43UT090535; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE43ZK090534; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz) Message-Id: <200510271404.j9RE43ZK090534@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Thu, 27 Oct 2005 14:04:03 +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/sys/netinet6 ip6_mroute.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, 27 Oct 2005 14:04:04 -0000 suz 2005-10-27 14:04:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet6 ip6_mroute.c Log: MFC rev 1.34 fixed a kernel crash when IPv6 PIM-SM routing is enabled and a PIM register message is received Approved by: re(scottl) Revision Changes Path 1.28.2.2 +17 -9 src/sys/netinet6/ip6_mroute.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 14:04:04 2005 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 860D716A420; Thu, 27 Oct 2005 14:04:04 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BEAA43D45; Thu, 27 Oct 2005 14:04:03 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RE43PC090552; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RE43Dp090551; Thu, 27 Oct 2005 14:04:03 GMT (envelope-from suz) Message-Id: <200510271404.j9RE43Dp090551@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Thu, 27 Oct 2005 14:04:03 +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/netinet6 ip6_mroute.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, 27 Oct 2005 14:04:04 -0000 suz 2005-10-27 14:04:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet6 ip6_mroute.c Log: MFC rev 1.34 fixed a kernel crash when IPv6 PIM-SM routing is enabled and a PIM register message is received Approved by: re(scottl) Revision Changes Path 1.29.2.2 +17 -9 src/sys/netinet6/ip6_mroute.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 14:24:46 2005 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 6E72516A41F; Thu, 27 Oct 2005 14:24:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD6E43D45; Thu, 27 Oct 2005 14:24:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9REOkAk091914; Thu, 27 Oct 2005 14:24:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9REOkr8091913; Thu, 27 Oct 2005 14:24:46 GMT (envelope-from ru) Message-Id: <200510271424.j9REOkr8091913@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 27 Oct 2005 14:24: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/conf kern.post.mk kmod.mk 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, 27 Oct 2005 14:24:46 -0000 ru 2005-10-27 14:24:46 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk kmod.mk Log: Installing debug modules was a bad idea -- I bogusly assumed that our kernel linker will only load PT_LOAD segments, apparently not. Instead, produce .dbg objects from .debug objects, and install them together with non-debug objects, as described in objcopy(1). Original code by: obrien Revision Changes Path 1.87 +12 -10 src/sys/conf/kern.post.mk 1.198 +9 -7 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Thu Oct 27 14:33:09 2005 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 9600816A420; Thu, 27 Oct 2005 14:33:09 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04E5943D5D; Thu, 27 Oct 2005 14:33:09 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9REX83I092418; Thu, 27 Oct 2005 14:33:08 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9REX82C092417; Thu, 27 Oct 2005 14:33:08 GMT (envelope-from ru) Message-Id: <200510271433.j9REX82C092417@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 27 Oct 2005 14: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/sys/conf kern.post.mk 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, 27 Oct 2005 14:33:09 -0000 ru 2005-10-27 14:33:08 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk Log: Use ${S} to pass ${SYSDIR} to ports. This makes PORTS_MODULES feature work when compiling a kernel via "make buildkernel". Noticed and tested by: nork Revision Changes Path 1.88 +1 -5 src/sys/conf/kern.post.mk From owner-cvs-src@FreeBSD.ORG Thu Oct 27 15:39:19 2005 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 B103C16A41F; Thu, 27 Oct 2005 15:39:19 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6686643D53; Thu, 27 Oct 2005 15:39:19 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RFdJo7096435; Thu, 27 Oct 2005 15:39:19 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RFdJdS096434; Thu, 27 Oct 2005 15:39:19 GMT (envelope-from obrien) Message-Id: <200510271539.j9RFdJdS096434@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 15:39:19 +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/nve if_nve.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, 27 Oct 2005 15:39:19 -0000 obrien 2005-10-27 15:39:19 UTC FreeBSD src repository Modified files: sys/dev/nve if_nve.c Log: Clear pending_txs when not "RUNNING". Submitted by: Q Revision Changes Path 1.13 +1 -0 src/sys/dev/nve/if_nve.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:26:27 2005 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 E5B3116A41F; Thu, 27 Oct 2005 16:26:27 +0000 (GMT) (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 A362843D46; Thu, 27 Oct 2005 16:26:27 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGQRih000179; Thu, 27 Oct 2005 16:26:27 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGQRkd000178; Thu, 27 Oct 2005 16:26:27 GMT (envelope-from jkim) Message-Id: <200510271626.j9RGQRkd000178@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 27 Oct 2005 16:26: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/gnu/usr.bin/grep search.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, 27 Oct 2005 16:26:28 -0000 jkim 2005-10-27 16:26:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) gnu/usr.bin/grep search.c Log: MFC: Fix 'grep -Fw' for encodings other than UTF-8 (RH bug #161700). PR: 87969 Approved by: re (scottl) Obtained from: Fedora (Tim Waugh) Revision Changes Path 1.23.2.1 +2 -2 src/gnu/usr.bin/grep/search.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:29:02 2005 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 8F15C16A41F; Thu, 27 Oct 2005 16:29:02 +0000 (GMT) (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 4CBE943D45; Thu, 27 Oct 2005 16:29:02 +0000 (GMT) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGT2CS000836; Thu, 27 Oct 2005 16:29:02 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGT2Lr000835; Thu, 27 Oct 2005 16:29:02 GMT (envelope-from jkim) Message-Id: <200510271629.j9RGT2Lr000835@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 27 Oct 2005 16:29:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/gnu/usr.bin/grep search.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, 27 Oct 2005 16:29:02 -0000 jkim 2005-10-27 16:29:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) gnu/usr.bin/grep search.c Log: MFRELENG_6: Fix 'grep -Fw' for encodings other than UTF-8 (RH bug #161700). PR: 87969 Approved by: re (scottl) Obtained from: Fedora (Tim Waugh) Revision Changes Path 1.23.4.1 +2 -2 src/gnu/usr.bin/grep/search.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:32:40 2005 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 B512A16A41F; Thu, 27 Oct 2005 16:32:40 +0000 (GMT) (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 7182543D45; Thu, 27 Oct 2005 16:32:40 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGWeEW001006; Thu, 27 Oct 2005 16:32:40 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGWedG001005; Thu, 27 Oct 2005 16:32:40 GMT (envelope-from sos) Message-Id: <200510271632.j9RGWedG001005@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 27 Oct 2005 16:32: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/ata ata-all.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, 27 Oct 2005 16:32:40 -0000 sos 2005-10-27 16:32:40 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: Enclose the delayed attach in Giant so we dont loose the race with other drivers trying to attach ATA devices like pccard. Dont clear the delayed flag before we are acutally finished. Spotted by: imp Revision Changes Path 1.258 +10 -6 src/sys/dev/ata/ata-all.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:39:20 2005 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 891E116A41F; Thu, 27 Oct 2005 16:39:20 +0000 (GMT) (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 4520943D48; Thu, 27 Oct 2005 16:39:20 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGdKb1001386; Thu, 27 Oct 2005 16:39:20 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGdKpI001385; Thu, 27 Oct 2005 16:39:20 GMT (envelope-from sos) Message-Id: <200510271639.j9RGdKpI001385@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 27 Oct 2005 16:39:20 +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/ata ata-all.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, 27 Oct 2005 16:39:20 -0000 sos 2005-10-27 16:39:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ata ata-all.c Log: MFC: Enclose the delayed attach in Giant so we dont loose the race with other drivers trying to attach ATA devices like pccard. Dont clear the delayed flag before we are acutally finished. Approved by: re@ (scottl) Revision Changes Path 1.252.2.3 +10 -6 src/sys/dev/ata/ata-all.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:41:40 2005 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 7F95D16A41F; Thu, 27 Oct 2005 16:41:40 +0000 (GMT) (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 3BE5943D45; Thu, 27 Oct 2005 16:41:40 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGfeBS001538; Thu, 27 Oct 2005 16:41:40 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGfeMY001537; Thu, 27 Oct 2005 16:41:40 GMT (envelope-from sos) Message-Id: <200510271641.j9RGfeMY001537@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 27 Oct 2005 16:41:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/ata ata-all.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, 27 Oct 2005 16:41:40 -0000 sos 2005-10-27 16:41:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/ata ata-all.c Log: MFC: Enclose the delayed attach in Giant so we dont loose the race with other drivers trying to attach ATA devices like pccard. Dont clear the delayed flag before we are acutally finished. Approved by: re@ (scottl) Revision Changes Path 1.252.2.2.2.1 +10 -6 src/sys/dev/ata/ata-all.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:41:50 2005 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 4AA0016A420; Thu, 27 Oct 2005 16:41:50 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 086D643D45; Thu, 27 Oct 2005 16:41:50 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGfnnv001567; Thu, 27 Oct 2005 16:41:49 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGfnsm001566; Thu, 27 Oct 2005 16:41:49 GMT (envelope-from wpaul) Message-Id: <200510271641.j9RGfnsm001566@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 16:41: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/dev/pci pci.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, 27 Oct 2005 16:41:50 -0000 wpaul 2005-10-27 16:41:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pci pci.c Log: MFC: add 1 microsecond delay to pci_add_children() bus enumeration loop to pacify certain PCI bridges ('fixes' problem with USB controllers not being probed on some Sun AMD8111 machines, notably mine). Approved by: re Revision Changes Path 1.292.2.5 +1 -0 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:44:07 2005 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 C496716A41F; Thu, 27 Oct 2005 16:44:07 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF5BE43D46; Thu, 27 Oct 2005 16:44:06 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGi6cJ001703; Thu, 27 Oct 2005 16:44:06 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGi6E9001702; Thu, 27 Oct 2005 16:44:06 GMT (envelope-from wpaul) Message-Id: <200510271644.j9RGi6E9001702@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 16:44:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/pci pci.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, 27 Oct 2005 16:44:08 -0000 wpaul 2005-10-27 16:44:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/pci pci.c Log: MFC: add 1 microsecond delay to pci_add_children() bus enumeration loop Approved by: re Revision Changes Path 1.292.2.4.2.1 +1 -0 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:47:31 2005 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 8789B16A420; Thu, 27 Oct 2005 16:47:31 +0000 (GMT) (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 1E6E743D53; Thu, 27 Oct 2005 16:47:29 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGlSBb009437; Thu, 27 Oct 2005 16:47:29 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGlSOb009436; Thu, 27 Oct 2005 16:47:28 GMT (envelope-from jhb) Message-Id: <200510271647.j9RGlSOb009436@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 16:47:28 +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 tty.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, 27 Oct 2005 16:47:31 -0000 jhb 2005-10-27 16:47:28 UTC FreeBSD src repository Modified files: sys/kern tty.c Log: Revert most of revision 1.235 and fix the problem a different way. We can't acquire an sx lock in ttyinfo() because ttyinfo() can be called from interrupt handlers (such as atkbd_intr()). Instead, go back to locking the process group while we pick a thread to display information for and hold that lock until after we drop sched_lock to make sure the process doesn't exit out from under us. sched_lock ensures that the specific thread from that process doesn't go away. To protect against the process exiting after we drop the proc lock but before we dereference it to lookup the pid and p_comm in the call to ttyprintf(), we now copy the pid and p_comm to local variables while holding the proc lock. This problem was found by the recently added TD_NO_SLEEPING assertions for interrupt handlers. Tested by: emaste MFC after: 1 week Revision Changes Path 1.254 +12 -7 src/sys/kern/tty.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 16:59:03 2005 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 9759F16A41F; Thu, 27 Oct 2005 16:59:03 +0000 (GMT) (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 54C0043D4C; Thu, 27 Oct 2005 16:59:03 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RGx3cV010142; Thu, 27 Oct 2005 16:59:03 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RGx3um010141; Thu, 27 Oct 2005 16:59:03 GMT (envelope-from jhb) Message-Id: <200510271659.j9RGx3um010141@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 16:59: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/share/man/man5 libmap.conf.5 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, 27 Oct 2005 16:59:03 -0000 jhb 2005-10-27 16:59:03 UTC FreeBSD src repository Modified files: share/man/man5 libmap.conf.5 Log: Update example libmap.conf file: - Remove pointless examples that map libpthread to itself. - Update shared libraries for 6.0 bumps. Reported by: rwatson MFC after: 1 day Revision Changes Path 1.12 +3 -10 src/share/man/man5/libmap.conf.5 From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:06:49 2005 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 F2EE116A41F; Thu, 27 Oct 2005 17:06:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4328A43D58; Thu, 27 Oct 2005 17:06:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RH6lZ9011581; Thu, 27 Oct 2005 17:06:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RH6lkt011580; Thu, 27 Oct 2005 17:06:47 GMT (envelope-from wpaul) Message-Id: <200510271706.j9RH6lkt011580@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:06:47 +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 wpa_supplicant src/sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S src/sys/dev/if_ndis if_ndis.c if_ndisvar.h src/usr.sbin/wpa ... 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, 27 Oct 2005 17:06:49 -0000 wpaul 2005-10-27 17:06:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d wpa_supplicant sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S sys/dev/if_ndis if_ndis.c if_ndisvar.h usr.sbin/wpa Makefile usr.sbin/wpa/wpa_supplicant Makefile usr.sbin/ndiscvt ndiscvt.c ndisgen.8 ndisgen.sh Added files: (Branch: RELENG_6) usr.sbin/wpa/ndis_events Makefile ndis_events.8 ndis_events.c usr.sbin/wpa/wpa_supplicant Packet32.c Packet32.h ntddndis.h Log: MFC: synchronize the NDISulator with the head and RELENG_5 branches, add -D ndis support to wpa_supplicant Approved by: re Revision Changes Path 1.1.2.1 +10 -1 src/etc/rc.d/wpa_supplicant 1.84.2.2 +185 -148 src/sys/compat/ndis/kern_ndis.c 1.11.2.1 +29 -27 src/sys/compat/ndis/kern_windrv.c 1.41.2.1 +131 -13 src/sys/compat/ndis/ndis_var.h 1.36.2.1 +122 -40 src/sys/compat/ndis/ntoskrnl_var.h 1.13.2.1 +9 -0 src/sys/compat/ndis/pe_var.h 1.24.2.1 +89 -21 src/sys/compat/ndis/subr_hal.c 1.94.2.1 +422 -337 src/sys/compat/ndis/subr_ndis.c 1.71.2.1 +1262 -479 src/sys/compat/ndis/subr_ntoskrnl.c 1.11.2.1 +13 -7 src/sys/compat/ndis/subr_pe.c 1.2.4.1 +20 -4 src/sys/compat/ndis/winx32_wrap.S 1.99.2.3 +897 -488 src/sys/dev/if_ndis/if_ndis.c 1.23.2.1 +82 -11 src/sys/dev/if_ndis/if_ndisvar.h 1.11.2.1 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c 1.2.2.1 +6 -2 src/usr.sbin/ndiscvt/ndisgen.8 1.1.4.1 +158 -99 src/usr.sbin/ndiscvt/ndisgen.sh 1.2.2.1 +1 -1 src/usr.sbin/wpa/Makefile 1.1.2.1 +8 -0 src/usr.sbin/wpa/ndis_events/Makefile (new) 1.3.2.1 +129 -0 src/usr.sbin/wpa/ndis_events/ndis_events.8 (new) 1.4.2.1 +355 -0 src/usr.sbin/wpa/ndis_events/ndis_events.c (new) 1.3.2.1 +3 -1 src/usr.sbin/wpa/wpa_supplicant/Makefile 1.2.2.1 +394 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.c (new) 1.2.2.1 +67 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.h (new) 1.2.2.1 +31 -0 src/usr.sbin/wpa/wpa_supplicant/ntddndis.h (new) From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:08:57 2005 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 BC7A716A41F; Thu, 27 Oct 2005 17:08:57 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F80543D45; Thu, 27 Oct 2005 17:08:57 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RH8vU2012564; Thu, 27 Oct 2005 17:08:57 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RH8vjO012563; Thu, 27 Oct 2005 17:08:57 GMT (envelope-from wpaul) Message-Id: <200510271708.j9RH8vjO012563@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:08:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/etc/rc.d wpa_supplicant src/sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S src/sys/dev/if_ndis if_ndis.c if_ndisvar.h src/usr.sbin/wpa ... 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, 27 Oct 2005 17:08:57 -0000 wpaul 2005-10-27 17:08:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) etc/rc.d wpa_supplicant sys/compat/ndis kern_ndis.c kern_windrv.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c subr_pe.c winx32_wrap.S sys/dev/if_ndis if_ndis.c if_ndisvar.h usr.sbin/wpa Makefile usr.sbin/wpa/wpa_supplicant Makefile usr.sbin/ndiscvt ndiscvt.c ndisgen.8 ndisgen.sh Added files: (Branch: RELENG_6_0) usr.sbin/wpa/ndis_events Makefile ndis_events.8 ndis_events.c usr.sbin/wpa/wpa_supplicant Packet32.c Packet32.h ntddndis.h Log: MFC: synchronize the NDISulator with the head and RELENG_5 branches, add -D ndis support to wpa_supplicant Approved by: re Revision Changes Path 1.1.4.1 +10 -1 src/etc/rc.d/wpa_supplicant 1.84.2.1.2.1 +185 -148 src/sys/compat/ndis/kern_ndis.c 1.11.4.1 +29 -27 src/sys/compat/ndis/kern_windrv.c 1.41.4.1 +131 -13 src/sys/compat/ndis/ndis_var.h 1.36.4.1 +122 -40 src/sys/compat/ndis/ntoskrnl_var.h 1.13.4.1 +9 -0 src/sys/compat/ndis/pe_var.h 1.24.4.1 +89 -21 src/sys/compat/ndis/subr_hal.c 1.94.4.1 +422 -337 src/sys/compat/ndis/subr_ndis.c 1.71.4.1 +1262 -479 src/sys/compat/ndis/subr_ntoskrnl.c 1.11.4.1 +13 -7 src/sys/compat/ndis/subr_pe.c 1.2.6.1 +20 -4 src/sys/compat/ndis/winx32_wrap.S 1.99.2.2.2.1 +897 -488 src/sys/dev/if_ndis/if_ndis.c 1.23.4.1 +82 -11 src/sys/dev/if_ndis/if_ndisvar.h 1.11.4.1 +2 -2 src/usr.sbin/ndiscvt/ndiscvt.c 1.2.4.1 +6 -2 src/usr.sbin/ndiscvt/ndisgen.8 1.1.6.1 +158 -99 src/usr.sbin/ndiscvt/ndisgen.sh 1.2.4.1 +1 -1 src/usr.sbin/wpa/Makefile 1.1.4.1 +8 -0 src/usr.sbin/wpa/ndis_events/Makefile (new) 1.3.4.1 +129 -0 src/usr.sbin/wpa/ndis_events/ndis_events.8 (new) 1.4.4.1 +355 -0 src/usr.sbin/wpa/ndis_events/ndis_events.c (new) 1.3.4.1 +3 -1 src/usr.sbin/wpa/wpa_supplicant/Makefile 1.2.4.1 +394 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.c (new) 1.2.4.1 +67 -0 src/usr.sbin/wpa/wpa_supplicant/Packet32.h (new) 1.2.4.1 +31 -0 src/usr.sbin/wpa/wpa_supplicant/ntddndis.h (new) From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:13:23 2005 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 9BA6A16A420; Thu, 27 Oct 2005 17:13:23 +0000 (GMT) (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 6C59943D45; Thu, 27 Oct 2005 17:13:23 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHDNXK013083; Thu, 27 Oct 2005 17:13:23 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHDNTo013082; Thu, 27 Oct 2005 17:13:23 GMT (envelope-from jhb) Message-Id: <200510271713.j9RHDNTo013082@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 17:13: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/usr.sbin/config config.h config.y main.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, 27 Oct 2005 17:13:23 -0000 jhb 2005-10-27 17:13:23 UTC FreeBSD src repository Modified files: usr.sbin/config config.h config.y main.c Log: Optionally include a DEFAULTS config file if it is present in the current directory before the specified config file. This is implemented by opening DEFAULTS as stdin if it exists, and if so resetting stdin to the actual config file when DEFAULTS is fully parsed via yywrap(). In short, this lets us create DEFAULTS kernel configs in /sys//conf that can enable certain options or devices by default and allow users to disable them via 'nooptions' or 'nodevice' rather than having to create kludge NO_FOO options. Requested by: scottl Reviewed by: scottl Revision Changes Path 1.57 +1 -0 src/usr.sbin/config/config.h 1.67 +16 -0 src/usr.sbin/config/config.y 1.67 +10 -3 src/usr.sbin/config/main.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:15:24 2005 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 D9A9F16A41F; Thu, 27 Oct 2005 17:15:24 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72D2D43D53; Thu, 27 Oct 2005 17:15:24 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHFOd9013643; Thu, 27 Oct 2005 17:15:24 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHFODv013642; Thu, 27 Oct 2005 17:15:24 GMT (envelope-from wpaul) Message-Id: <200510271715.j9RHFODv013642@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:15:24 +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/contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.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, 27 Oct 2005 17:15:25 -0000 wpaul 2005-10-27 17:15:24 UTC FreeBSD src repository Added files: (Branch: RELENG_6) contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.c Log: Approved by: re Revision Changes Path 1.1.1.2.2.1 +1589 -0 src/contrib/wpa_supplicant/driver_ndis.c (new) 1.1.1.1.2.1 +26 -0 src/contrib/wpa_supplicant/driver_ndis.h (new) 1.1.1.1.2.1 +164 -0 src/contrib/wpa_supplicant/driver_ndis_.c (new) From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:15:48 2005 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 4803316A422; Thu, 27 Oct 2005 17:15:48 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD8F243D45; Thu, 27 Oct 2005 17:15:47 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHFliC013707; Thu, 27 Oct 2005 17:15:47 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHFl9Y013706; Thu, 27 Oct 2005 17:15:47 GMT (envelope-from wpaul) Message-Id: <200510271715.j9RHFl9Y013706@repoman.freebsd.org> From: Bill Paul Date: Thu, 27 Oct 2005 17:15:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.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, 27 Oct 2005 17:15:48 -0000 wpaul 2005-10-27 17:15:47 UTC FreeBSD src repository Added files: (Branch: RELENG_6_0) contrib/wpa_supplicant driver_ndis.c driver_ndis.h driver_ndis_.c Log: MFC: add the driver_ndis support files to the wpa_supplicant distribution for -D ndis support with the NDISulator Approved by: re Revision Changes Path 1.1.1.2.4.1 +1589 -0 src/contrib/wpa_supplicant/driver_ndis.c (new) 1.1.1.1.4.1 +26 -0 src/contrib/wpa_supplicant/driver_ndis.h (new) 1.1.1.1.4.1 +164 -0 src/contrib/wpa_supplicant/driver_ndis_.c (new) From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:20:10 2005 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 A589C16A41F; Thu, 27 Oct 2005 17:20:10 +0000 (GMT) (envelope-from bz@FreeBSD.org) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id F131B43D45; Thu, 27 Oct 2005 17:20:09 +0000 (GMT) (envelope-from bz@FreeBSD.org) Received: from transport.cksoft.de (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 058131FF9AF; Thu, 27 Oct 2005 19:20:08 +0200 (CEST) Received: by transport.cksoft.de (Postfix, from userid 66) id 6680C1FF9AD; Thu, 27 Oct 2005 19:20:05 +0200 (CEST) Received: by mail.int.zabbadoz.net (Postfix, from userid 1060) id 98B8D15839; Thu, 27 Oct 2005 17:15:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.int.zabbadoz.net (Postfix) with ESMTP id 95CA31577D; Thu, 27 Oct 2005 17:15:28 +0000 (UTC) Date: Thu, 27 Oct 2005 17:15:28 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@e0-0.zab2.int.zabbadoz.net To: Ruslan Ermilov In-Reply-To: <200510271424.j9REOkr8091913@repoman.freebsd.org> Message-ID: References: <200510271424.j9REOkr8091913@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS cksoft-s20020300-20031204bz on transport.cksoft.de Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 17:20:11 -0000 On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > ru 2005-10-27 14:24:46 UTC > > FreeBSD src repository > > Modified files: > sys/conf kern.post.mk kmod.mk > Log: > Installing debug modules was a bad idea -- I bogusly assumed that > our kernel linker will only load PT_LOAD segments, apparently not. > Instead, produce .dbg objects from .debug objects, and install > them together with non-debug objects, as described in objcopy(1). is that because of this change? kldxref /boot/kernel kldxref: file isn't dynamically-linked kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file aac.ko.dbg kldxref: unknown metdata record 0 in file accf_data.ko.dbg kldxref: unknown metdata record 0 in file accf_http.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file agp.ko.dbg kldxref: unknown metdata record 0 in file aha.ko.dbg kldxref: unknown metdata record 0 in file ahc.ko.dbg kldxref: unknown metdata record 0 in file ahc.ko.dbg kldxref: unknown metdata record 0 in file ahc.ko.dbg kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg kldxref: unknown metdata record 0 in file ahd.ko.dbg .... -- Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:22:47 2005 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 DD59416A41F; Thu, 27 Oct 2005 17:22:47 +0000 (GMT) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AF8843D55; Thu, 27 Oct 2005 17:22:47 +0000 (GMT) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHMln5014199; Thu, 27 Oct 2005 17:22:47 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHMlYh014198; Thu, 27 Oct 2005 17:22:47 GMT (envelope-from emaste) Message-Id: <200510271722.j9RHMlYh014198@repoman.freebsd.org> From: Ed Maste Date: Thu, 27 Oct 2005 17: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/kern kern_clock.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, 27 Oct 2005 17:22:48 -0000 emaste 2005-10-27 17:22:47 UTC FreeBSD src repository Modified files: sys/kern kern_clock.c Log: In watchdog_config enable the software watchdog iff the WD_ACTIVE flag is set. When watchdogd(1) is terminated intentionally it clears the bit, which should then disable it in the kernel. PR: kern/74386 Submitted by: Alex Hoff Approved by: phk, rwatson (mentor) Revision Changes Path 1.181 +1 -2 src/sys/kern/kern_clock.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:34:36 2005 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 5140116A41F; Thu, 27 Oct 2005 17:34:36 +0000 (GMT) (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 0F2B143D45; Thu, 27 Oct 2005 17:34:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHYZ8N015055; Thu, 27 Oct 2005 17:34:35 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHYZAk015054; Thu, 27 Oct 2005 17:34:35 GMT (envelope-from jhb) Message-Id: <200510271734.j9RHYZAk015054@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 17:34:35 +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 DEFAULTS 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: Thu, 27 Oct 2005 17:34:36 -0000 jhb 2005-10-27 17:34:35 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Added files: sys/i386/conf DEFAULTS Log: Create a default kernel config for i386 and move 'device isa' and 'device npx' (both of which aren't really optional right now) and 'device io' and 'device mem' (to preserve POLA for 4.x users upgrading to 6.0) from GENERIC into DEFAULTS. Requested by: scottl Reviewed by: scottl Revision Changes Path 1.1 +17 -0 src/sys/i386/conf/DEFAULTS (new) 1.433 +1 -7 src/sys/i386/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:35:50 2005 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 1071E16A41F; Thu, 27 Oct 2005 17:35:50 +0000 (GMT) (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 99E8243D45; Thu, 27 Oct 2005 17:35:48 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHZmRn015221; Thu, 27 Oct 2005 17:35:48 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHZmUw015220; Thu, 27 Oct 2005 17:35:48 GMT (envelope-from delphij) Message-Id: <200510271735.j9RHZmUw015220@repoman.freebsd.org> From: Xin LI Date: Thu, 27 Oct 2005 17:35:48 +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/zh_CN.GB2312/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: Thu, 27 Oct 2005 17:35:50 -0000 delphij 2005-10-27 17:35:48 UTC FreeBSD src repository Modified files: release/doc/zh_CN.GB2312/relnotes/common new.sgml Log: MFen: 1.883.2.7 -> 1.883.2.8 MT6 candidate Obtained from: The FreeBSD Simplified Chinese Project Revision Changes Path 1.9 +9 -1 src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:39:03 2005 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 CEC8216A41F; Thu, 27 Oct 2005 17:39:03 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B7FA43D48; Thu, 27 Oct 2005 17:39:03 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHd3r6015401; Thu, 27 Oct 2005 17:39:03 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHd3Fc015400; Thu, 27 Oct 2005 17:39:03 GMT (envelope-from ru) Message-Id: <200510271739.j9RHd3Fc015400@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 27 Oct 2005 17:39: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/conf kern.post.mk kmod.mk 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, 27 Oct 2005 17:39:04 -0000 ru 2005-10-27 17:39:03 UTC FreeBSD src repository Modified files: sys/conf kern.post.mk kmod.mk Log: Rename the .dbg extension to .symbols, which matches "symbol-file" gdb(1) command better, though I must admit it's confusing: these files have not only [debugging] symbols, but much more than that. Requested by: obrien Revision Changes Path 1.89 +6 -6 src/sys/conf/kern.post.mk 1.199 +5 -5 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:43:26 2005 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 8FB6016A420; Thu, 27 Oct 2005 17:43:26 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBE0443D66; Thu, 27 Oct 2005 17:43:18 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RHhHOo030609; Thu, 27 Oct 2005 20:43:17 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 83847-02-3; Thu, 27 Oct 2005 20:43:15 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RHeeua030528 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 20:40:40 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RHegPe064685; Thu, 27 Oct 2005 20:40:42 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 20:40:42 +0300 From: Ruslan Ermilov To: "Bjoern A. Zeeb" Message-ID: <20051027174042.GK68470@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Tu8ztk+XgTAiG9Id" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 17:43:26 -0000 --Tu8ztk+XgTAiG9Id Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: >=20 > > ru 2005-10-27 14:24:46 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/conf kern.post.mk kmod.mk > > Log: > > Installing debug modules was a bad idea -- I bogusly assumed that > > our kernel linker will only load PT_LOAD segments, apparently not. > > Instead, produce .dbg objects from .debug objects, and install > > them together with non-debug objects, as described in objcopy(1). >=20 > is that because of this change? >=20 Yes. I sent a patch for kldxref(8) that fixes this for review to amd64@. These messages are harmless otherwise. > kldxref /boot/kernel > kldxref: file isn't dynamically-linked > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file aac.ko.dbg > kldxref: unknown metdata record 0 in file accf_data.ko.dbg > kldxref: unknown metdata record 0 in file accf_http.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file agp.ko.dbg > kldxref: unknown metdata record 0 in file aha.ko.dbg > kldxref: unknown metdata record 0 in file ahc.ko.dbg > kldxref: unknown metdata record 0 in file ahc.ko.dbg > kldxref: unknown metdata record 0 in file ahc.ko.dbg > kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_eisa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_isa.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahc_pci.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > kldxref: unknown metdata record 0 in file ahd.ko.dbg > .... >=20 > --=20 > Bjoern A. Zeeb bzeeb at Zabbadoz dot NeT --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Tu8ztk+XgTAiG9Id Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYREaqRfpzJluFF4RAmFSAJ9KaDTx4IkT6D/02U5bUuZXFcSBjACgivVU +bi7PlveloMf1DJmB4gmajE= =IsCO -----END PGP SIGNATURE----- --Tu8ztk+XgTAiG9Id-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:48:57 2005 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 CB24516A41F; Thu, 27 Oct 2005 17:48:57 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99AAA43D45; Thu, 27 Oct 2005 17:48:57 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHmvot016145; Thu, 27 Oct 2005 17:48:57 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHmvhJ016144; Thu, 27 Oct 2005 17:48:57 GMT (envelope-from scottl) Message-Id: <200510271748.j9RHmvhJ016144@repoman.freebsd.org> From: Scott Long Date: Thu, 27 Oct 2005 17:48: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/sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_raid.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, 27 Oct 2005 17:48:57 -0000 scottl 2005-10-27 17:48:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_raid.h Log: MFC: Sync with HEAD. This fixes an out-of-bounds access that was caught by INVARIANTS, and it synchronizes the license. Approved by: re Revision Changes Path 1.12.2.1 +5 -7 src/sys/dev/mpt/mpt.c 1.6.2.1 +3 -3 src/sys/dev/mpt/mpt.h 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_cam.c 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_cam.h 1.20.2.2 +3 -3 src/sys/dev/mpt/mpt_pci.c 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_raid.c 1.1.2.1 +3 -3 src/sys/dev/mpt/mpt_raid.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:53:32 2005 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 8B6E216A41F; Thu, 27 Oct 2005 17:53:32 +0000 (GMT) (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 4677E43D46; Thu, 27 Oct 2005 17:53:32 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHrWM5016372; Thu, 27 Oct 2005 17:53:32 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHrW3P016371; Thu, 27 Oct 2005 17:53:32 GMT (envelope-from delphij) Message-Id: <200510271753.j9RHrW3P016371@repoman.freebsd.org> From: Xin LI Date: Thu, 27 Oct 2005 17:53:31 +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/zh_CN.GB2312/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: Thu, 27 Oct 2005 17:53:32 -0000 delphij 2005-10-27 17:53:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/zh_CN.GB2312/relnotes/common new.sgml Log: MFC 1.9: Update to sync up with latest RELENG_6 documentation. Approved by: re (scottl) Revision Changes Path 1.5.2.3 +9 -1 src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Oct 27 17:54:33 2005 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 42F5E16A420; Thu, 27 Oct 2005 17:54:33 +0000 (GMT) (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 5499C43D60; Thu, 27 Oct 2005 17:54:32 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RHsVHI016414; Thu, 27 Oct 2005 17:54:31 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RHsVke016413; Thu, 27 Oct 2005 17:54:31 GMT (envelope-from delphij) Message-Id: <200510271754.j9RHsVke016413@repoman.freebsd.org> From: Xin LI Date: Thu, 27 Oct 2005 17:54:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/release/doc/zh_CN.GB2312/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: Thu, 27 Oct 2005 17:54:33 -0000 delphij 2005-10-27 17:54:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) release/doc/zh_CN.GB2312/relnotes/common new.sgml Log: MFRELENG_6 1.5.2.3: Update to sync up with latest RELENG_6 documentation. Approved by: re (scottl) Revision Changes Path 1.5.4.3 +9 -1 src/release/doc/zh_CN.GB2312/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:05:16 2005 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 D632916A41F; Thu, 27 Oct 2005 18:05:16 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9BB943D49; Thu, 27 Oct 2005 18:05:15 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from storm.uk.FreeBSD.org (uucp@localhost [127.0.0.1]) by storm.uk.FreeBSD.org (8.13.4/8.13.4) with ESMTP id j9RI595L065199; Thu, 27 Oct 2005 19:05:09 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: (from uucp@localhost) by storm.uk.FreeBSD.org (8.13.4/8.12.11/Submit) with UUCP id j9RI57Mm065198; Thu, 27 Oct 2005 19:05:07 +0100 (BST) (envelope-from markm@FreeBSD.org) Received: from grondar.org (localhost [127.0.0.1]) by grunt.grondar.org (8.13.4/8.13.4) with ESMTP id j9RI4eBm040836; Thu, 27 Oct 2005 19:04:40 +0100 (BST) (envelope-from markm@FreeBSD.org) Message-Id: <200510271804.j9RI4eBm040836@grunt.grondar.org> To: John Baldwin From: Mark Murray From: Mark Murray Date: Thu, 27 Oct 2005 19:04:40 +0100 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf DEFAULTS 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: Thu, 27 Oct 2005 18:05:17 -0000 John Baldwin writes: > Create a default kernel config for i386 and move 'device isa' and > 'device npx' (both of which aren't really optional right now) and > 'device io' and 'device mem' (to preserve POLA for 4.x users upgrading > to 6.0) from GENERIC into DEFAULTS. Thanks!! M -- Mark R V Murray What is the most interesting question you have asked? What, if any, was the answer? From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:32:40 2005 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 BB1C616A420; Thu, 27 Oct 2005 18:32:40 +0000 (GMT) (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 4CE5043D48; Thu, 27 Oct 2005 18:32:40 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIWeTW018715; Thu, 27 Oct 2005 18:32:40 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIWeqZ018714; Thu, 27 Oct 2005 18:32:40 GMT (envelope-from glebius) Message-Id: <200510271832.j9RIWeqZ018714@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 27 Oct 2005 18:32:39 +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 kern_exit.c src/sys/nfsclient nfs_lock.c nlminfo.h src/sys/sys lockf.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, 27 Oct 2005 18:32:41 -0000 glebius 2005-10-27 18:32:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_exit.c sys/nfsclient nfs_lock.c nlminfo.h sys/sys lockf.h Log: MFC: - Fix leak of struct nlminfo on process exit. - Fix malloc type collision, that made the above problem difficult to understand. Reported by: Vladimir Sharun Approved by: re (scottl) Revision Changes Path 1.263.2.3 +9 -0 src/sys/kern/kern_exit.c 1.40.2.1 +15 -1 src/sys/nfsclient/nfs_lock.c 1.2.14.1 +1 -3 src/sys/nfsclient/nlminfo.h 1.18.2.1 +0 -4 src/sys/sys/lockf.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:34:52 2005 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 2678616A41F; Thu, 27 Oct 2005 18:34:52 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 923B643D45; Thu, 27 Oct 2005 18:34:51 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIYpOE018852; Thu, 27 Oct 2005 18:34:51 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIYpD0018851; Thu, 27 Oct 2005 18:34:51 GMT (envelope-from murray) Message-Id: <200510271834.j9RIYpD0018851@repoman.freebsd.org> From: Murray Stokely Date: Thu, 27 Oct 2005 18:34: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/usr.sbin/pkg_install/add main.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, 27 Oct 2005 18:34:52 -0000 murray 2005-10-27 18:34:51 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add main.c Log: Look for packages in packages-6.0-release or packages-6-stable, as appropriate. Approved by: re (scottl@) Reviewed by: portmgr (kris@) Revision Changes Path 1.64 +2 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:35:26 2005 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 C8A5E16A423; Thu, 27 Oct 2005 18:35:26 +0000 (GMT) (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 B700943D55; Thu, 27 Oct 2005 18:35:19 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIZJdt018950; Thu, 27 Oct 2005 18:35:19 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIZJCf018949; Thu, 27 Oct 2005 18:35:19 GMT (envelope-from glebius) Message-Id: <200510271835.j9RIZJCf018949@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 27 Oct 2005 18:35:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/kern kern_exit.c src/sys/nfsclient nfs_lock.c nlminfo.h src/sys/sys lockf.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, 27 Oct 2005 18:35:27 -0000 glebius 2005-10-27 18:35:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern kern_exit.c sys/nfsclient nfs_lock.c nlminfo.h sys/sys lockf.h Log: MFC: - Fix leak of struct nlminfo on process exit. - Fix malloc type collision, that made the above problem difficult to understand. Reported by: Vladimir Sharun Approved by: re (scottl) Revision Changes Path 1.263.2.2.2.1 +9 -0 src/sys/kern/kern_exit.c 1.40.4.1 +15 -1 src/sys/nfsclient/nfs_lock.c 1.2.16.1 +1 -3 src/sys/nfsclient/nlminfo.h 1.18.4.1 +0 -4 src/sys/sys/lockf.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:36:14 2005 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 C502916A41F; Thu, 27 Oct 2005 18:36:14 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BC143D73; Thu, 27 Oct 2005 18:36:13 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIaDew019073; Thu, 27 Oct 2005 18:36:13 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIaDQk019072; Thu, 27 Oct 2005 18:36:13 GMT (envelope-from murray) Message-Id: <200510271836.j9RIaDQk019072@repoman.freebsd.org> From: Murray Stokely Date: Thu, 27 Oct 2005 18:36: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/usr.sbin/pkg_install/add main.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, 27 Oct 2005 18:36:15 -0000 murray 2005-10-27 18:36:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/add main.c Log: MFC: look for packages in the packages-6-release directory when appropriate. Reviewed by: portmgr (kris@) Approved by: re (scottl@) Revision Changes Path 1.61.2.2 +2 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:38:49 2005 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 385E716A41F; Thu, 27 Oct 2005 18:38:49 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E35C143D45; Thu, 27 Oct 2005 18:38:48 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIcm4I019228; Thu, 27 Oct 2005 18:38:48 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIcmtU019227; Thu, 27 Oct 2005 18:38:48 GMT (envelope-from murray) Message-Id: <200510271838.j9RIcmtU019227@repoman.freebsd.org> From: Murray Stokely Date: Thu, 27 Oct 2005 18:38:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/usr.sbin/pkg_install/add main.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, 27 Oct 2005 18:38:49 -0000 murray 2005-10-27 18:38:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/pkg_install/add main.c Log: MFC: Use packages-6-release directory for packages, as appropriate. Approved by: re Revision Changes Path 1.61.2.1.2.1 +2 -1 src/usr.sbin/pkg_install/add/main.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:40:57 2005 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 3992416A41F; Thu, 27 Oct 2005 18:40:57 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA16B43D45; Thu, 27 Oct 2005 18:40:56 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIeubm019373; Thu, 27 Oct 2005 18:40:56 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIeuHk019372; Thu, 27 Oct 2005 18:40:56 GMT (envelope-from obrien) Message-Id: <200510271840.j9RIeuHk019372@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 18:40: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/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: Thu, 27 Oct 2005 18:40:57 -0000 obrien 2005-10-27 18:40:56 UTC FreeBSD src repository Modified files: sys/amd64/conf GENERIC Log: Remove atpic as we've changed to using the lapic timer vs. using irq0 Revision Changes Path 1.443 +0 -3 src/sys/amd64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:54:44 2005 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 9ABDA16A41F; Thu, 27 Oct 2005 18:54:44 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 571E543D49; Thu, 27 Oct 2005 18:54:44 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIsiNX020113; Thu, 27 Oct 2005 18:54:44 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIsi0M020112; Thu, 27 Oct 2005 18:54:44 GMT (envelope-from peter) Message-Id: <200510271854.j9RIsi0M020112@repoman.freebsd.org> From: Peter Wemm Date: Thu, 27 Oct 2005 18:54: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/amd64/conf DEFAULTS 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: Thu, 27 Oct 2005 18:54:44 -0000 peter 2005-10-27 18:54:44 UTC FreeBSD src repository Modified files: sys/amd64/conf DEFAULTS GENERIC Log: MFi386: bring over DEFAULTS (repocopy) and adapt. While there isn't a 4.x->6.x amd64 upgrade path, the config files are kept in approximate sync. Revision Changes Path 1.2 +2 -5 src/sys/amd64/conf/DEFAULTS 1.444 +1 -4 src/sys/amd64/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:58:06 2005 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 5429E16A420; Thu, 27 Oct 2005 18:58:06 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B4B943D45; Thu, 27 Oct 2005 18:58:05 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RIw4Qi033301; Thu, 27 Oct 2005 21:58:04 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 84508-04-3; Thu, 27 Oct 2005 21:58:02 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RIsN8W033186 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 21:54:24 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RIsQTI065278; Thu, 27 Oct 2005 21:54:26 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 21:54:25 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Message-ID: <20051027185425.GR68470@ip.net.ua> References: <200510271840.j9RIeuHk019372@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Y9o+fgG4MNl0mnzl" Content-Disposition: inline In-Reply-To: <200510271840.j9RIeuHk019372@repoman.freebsd.org> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: 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: Thu, 27 Oct 2005 18:58:06 -0000 --Y9o+fgG4MNl0mnzl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 06:40:56PM +0000, David E. O'Brien wrote: > obrien 2005-10-27 18:40:56 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/amd64/conf GENERIC=20 > Log: > Remove atpic as we've changed to using the lapic timer vs. using irq0 > =20 > Revision Changes Path > 1.443 +0 -3 src/sys/amd64/conf/GENERIC >=20 The src/release/doc/en_US.ISO8859-1/installation/common/trouble.sgml can be updated to reflect this, when it talks about "nVidia nForce3 Pro-150 chipset". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Y9o+fgG4MNl0mnzl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYSJhqRfpzJluFF4RAlvbAJ0UGKgw8jKvBz9uZRYHnhRWEWQT2ACfUs+A uVIaezR0fgHj8uK2F99kxsM= =nCm/ -----END PGP SIGNATURE----- --Y9o+fgG4MNl0mnzl-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 18:58:38 2005 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 C8CA116A41F; Thu, 27 Oct 2005 18:58:38 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28B5243D49; Thu, 27 Oct 2005 18:58:38 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RIwcfA020806; Thu, 27 Oct 2005 18:58:38 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RIwcQs020805; Thu, 27 Oct 2005 18:58:38 GMT (envelope-from scottl) Message-Id: <200510271858.j9RIwcQs020805@repoman.freebsd.org> From: Scott Long Date: Thu, 27 Oct 2005 18:58:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_raid.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, 27 Oct 2005 18:58:38 -0000 scottl 2005-10-27 18:58:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_pci.c mpt_raid.c mpt_raid.h Log: MFC: Sync the mpt driver to pick up license refinement and INVARIANTS error. Approved by: re Revision Changes Path 1.12.4.1 +5 -7 src/sys/dev/mpt/mpt.c 1.6.4.1 +3 -3 src/sys/dev/mpt/mpt.h 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_cam.c 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_cam.h 1.20.2.1.2.1 +3 -3 src/sys/dev/mpt/mpt_pci.c 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_raid.c 1.1.4.1 +3 -3 src/sys/dev/mpt/mpt_raid.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 19:02:35 2005 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 2F43C16A41F; Thu, 27 Oct 2005 19:02:35 +0000 (GMT) (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 DFCE443D46; Thu, 27 Oct 2005 19:02:34 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJ2Y2h021221; Thu, 27 Oct 2005 19:02:34 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJ2Y4h021220; Thu, 27 Oct 2005 19:02:34 GMT (envelope-from glebius) Message-Id: <200510271902.j9RJ2Y4h021220@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 27 Oct 2005 19:02: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/nfsserver nfs_serv.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, 27 Oct 2005 19:02:35 -0000 glebius 2005-10-27 19:02:34 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_serv.c Log: Keep locks consistent before goto. Reported by: pho Reviewed by: mohans Revision Changes Path 1.157 +4 -0 src/sys/nfsserver/nfs_serv.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 19:07:36 2005 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 4497C16A41F; Thu, 27 Oct 2005 19:07:36 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F374A43D45; Thu, 27 Oct 2005 19:07:35 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJ7Zb0021514; Thu, 27 Oct 2005 19:07:35 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJ7ZMm021513; Thu, 27 Oct 2005 19:07:35 GMT (envelope-from obrien) Message-Id: <200510271907.j9RJ7ZMm021513@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 27 Oct 2005 19:07:35 +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/installation/common trouble.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: Thu, 27 Oct 2005 19:07:36 -0000 obrien 2005-10-27 19:07:35 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/installation/common trouble.sgml Log: Remove information on nVidia nForce3 Pro-150 chipset to match GENERIC change. Revision Changes Path 1.20 +1 -16 src/release/doc/en_US.ISO8859-1/installation/common/trouble.sgml From owner-cvs-src@FreeBSD.ORG Thu Oct 27 19:27:56 2005 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 4E6C916A420; Thu, 27 Oct 2005 19:27:56 +0000 (GMT) (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 AC65643D55; Thu, 27 Oct 2005 19:27:55 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJRtTu022419; Thu, 27 Oct 2005 19:27:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJRteO022418; Thu, 27 Oct 2005 19:27:55 GMT (envelope-from jhb) Message-Id: <200510271927.j9RJRteO022418@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 19:27: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/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 src/usr.sbin/config configvers.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, 27 Oct 2005 19:27:56 -0000 jhb 2005-10-27 19:27:55 UTC FreeBSD src repository Modified files: sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 usr.sbin/config configvers.h Log: Bump config(8) version for the DEFAULTS change. Revision Changes Path 1.136 +1 -1 src/sys/conf/Makefile.alpha 1.18 +1 -1 src/sys/conf/Makefile.amd64 1.14 +1 -1 src/sys/conf/Makefile.arm 1.266 +1 -1 src/sys/conf/Makefile.i386 1.63 +1 -1 src/sys/conf/Makefile.ia64 1.168 +1 -1 src/sys/conf/Makefile.pc98 1.279 +1 -1 src/sys/conf/Makefile.powerpc 1.34 +1 -1 src/sys/conf/Makefile.sparc64 1.36 +1 -1 src/usr.sbin/config/configvers.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 19:41:43 2005 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 915E516A41F; Thu, 27 Oct 2005 19:41:43 +0000 (GMT) (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 4DC8F43D46; Thu, 27 Oct 2005 19:41:43 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJfhOM023307; Thu, 27 Oct 2005 19:41:43 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJfhvG023306; Thu, 27 Oct 2005 19:41:43 GMT (envelope-from thompsa) Message-Id: <200510271941.j9RJfhvG023306@repoman.freebsd.org> From: Andrew Thompson Date: Thu, 27 Oct 2005 19:41: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/net if_bridge.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, 27 Oct 2005 19:41:43 -0000 thompsa 2005-10-27 19:41:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_bridge.c Log: MFC if_bridge r1.30 > If we have been called from ether_ifdetach() then do not try and clear the > promisc flag from the member interface, this is a no-op anyway since the > interface is disappearing. The driver may have already released > its resources such as miibus and this is likely to panic the kernel. Approved by: re (scottl) Revision Changes Path 1.11.2.15 +25 -19 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 19:43:11 2005 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 0616116A421; Thu, 27 Oct 2005 19:43:11 +0000 (GMT) (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 DD7C443D79; Thu, 27 Oct 2005 19:43:07 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RJh71T023427; Thu, 27 Oct 2005 19:43:07 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RJh7lj023426; Thu, 27 Oct 2005 19:43:07 GMT (envelope-from thompsa) Message-Id: <200510271943.j9RJh7lj023426@repoman.freebsd.org> From: Andrew Thompson Date: Thu, 27 Oct 2005 19:43:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/net if_bridge.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, 27 Oct 2005 19:43:11 -0000 thompsa 2005-10-27 19:43:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net if_bridge.c Log: MFC if_bridge r1.30 > If we have been called from ether_ifdetach() then do not try and clear the > promisc flag from the member interface, this is a no-op anyway since the > interface is disappearing. The driver may have already released > its resources such as miibus and this is likely to panic the kernel. Approved by: re (scottl) Revision Changes Path 1.11.2.12.2.3 +25 -19 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:29:36 2005 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 3022C16A41F; Thu, 27 Oct 2005 20:29:36 +0000 (GMT) (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 A6FF743D45; Thu, 27 Oct 2005 20:29:35 +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 62EE22084; Thu, 27 Oct 2005 22:29:30 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.4/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id 5238F2083; Thu, 27 Oct 2005 22:29:30 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id 3562F33C1D; Thu, 27 Oct 2005 22:29:30 +0200 (CEST) To: Ruslan Ermilov References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 22:29:30 +0200 In-Reply-To: <20051027174042.GK68470@ip.net.ua> (Ruslan Ermilov's message of "Thu, 27 Oct 2005 20:40:42 +0300") Message-ID: <864q723dqt.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) 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, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 20:29:36 -0000 Ruslan Ermilov writes: > On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > > > Log: > > > Installing debug modules was a bad idea -- I bogusly assumed that > > > our kernel linker will only load PT_LOAD segments, apparently not. > > > Instead, produce .dbg objects from .debug objects, and install > > > them together with non-debug objects, as described in objcopy(1). > > is that because of this change? > Yes. I sent a patch for kldxref(8) that fixes this for review to > amd64@. These messages are harmless otherwise. Wouldn't it be cleaner (and potentially simpler) to fix this by making the kernel linker skip non-PT_LOAD sections? (I just peeked at sys/kern/link_elf.c and it looks to me like it *already* DTRT, so what exactly is the problem?) DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:39:38 2005 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 816D416A41F; Thu, 27 Oct 2005 20:39:38 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1044343D45; Thu, 27 Oct 2005 20:39:38 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKdbZd026092; Thu, 27 Oct 2005 20:39:37 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKdbif026091; Thu, 27 Oct 2005 20:39:37 GMT (envelope-from joel) Message-Id: <200510272039.j9RKdbif026091@repoman.freebsd.org> From: Joel Dahl Date: Thu, 27 Oct 2005 20:39:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/conf NOTES 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, 27 Oct 2005 20:39:38 -0000 joel 2005-10-27 20:39:37 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6_0) sys/conf NOTES Log: MFC r1.1334: snd_ess needs snd_sbc, so add a note about that. Requested by: delphij Approved by: re (scottl) Revision Changes Path 1.1325.2.4.2.1 +2 -1 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:42:49 2005 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 C4C4816A420; Thu, 27 Oct 2005 20:42:49 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1299E43D46; Thu, 27 Oct 2005 20:42:48 +0000 (GMT) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id 3A4C450F95; Thu, 27 Oct 2005 22:42:46 +0200 (CEST) Received: from localhost (dkf55.neoplus.adsl.tpnet.pl [83.24.9.55]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 4C43B509F1; Thu, 27 Oct 2005 22:42:38 +0200 (CEST) Date: Thu, 27 Oct 2005 22:42:34 +0200 From: Pawel Jakub Dawidek To: Ruslan Ermilov Message-ID: <20051027204234.GA3596@garage.freebsd.pl> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline In-Reply-To: <20051027174042.GK68470@ip.net.ua> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r535 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 Cc: cvs-src@FreeBSD.org, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 20:42:49 -0000 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 08:40:42PM +0300, Ruslan Ermilov wrote: +> On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: +> > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: +> >=20 +> > > ru 2005-10-27 14:24:46 UTC +> > > +> > > FreeBSD src repository +> > > +> > > Modified files: +> > > sys/conf kern.post.mk kmod.mk +> > > Log: +> > > Installing debug modules was a bad idea -- I bogusly assumed that +> > > our kernel linker will only load PT_LOAD segments, apparently not. +> > > Instead, produce .dbg objects from .debug objects, and install +> > > them together with non-debug objects, as described in objcopy(1). +> >=20 +> > is that because of this change? +> >=20 +> Yes. I sent a patch for kldxref(8) that fixes this for review to +> amd64@. These messages are harmless otherwise. I'm seeing simlar thing when I built HEAD kernel on 6.x FreeBSD and tried to install it (i386 machine): kldxref /diskless/lcf/boot/kernel kldxref: file isn't dynamically-linked kldxref: file isn't dynamically-linked kldxref: file isn't dynamically-linked [...] --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYTu6ForvXbEpPzQRAlMKAJ4t2ixIIzuULRjqdUQROHAKsd6UoQCfaHnz RgEsv4MIhrFfq29rBNS3G5c= =7+Gy -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:42:50 2005 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 894CC16A421; Thu, 27 Oct 2005 20:42:50 +0000 (GMT) (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 0E3CB43D45; Thu, 27 Oct 2005 20:42:50 +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 437D82082; Thu, 27 Oct 2005 22:42:45 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.4/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id C10662080; Thu, 27 Oct 2005 22:42:44 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id A784D33C1D; Thu, 27 Oct 2005 22:42:44 +0200 (CEST) To: Ruslan Ermilov References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 22:42:44 +0200 In-Reply-To: <864q723dqt.fsf@xps.des.no> (Dag-Erling =?iso-8859-1?q?Sm=F8rgrav's?= message of "Thu, 27 Oct 2005 22:29:30 +0200") Message-ID: <86zmou1ykb.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) 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, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 20:42:50 -0000 Now I'm even more confused - I just built and installed a kernel using yesterday's sources (kern.post.mk 1.86, kmod.mk 1.197); the modules that were installed have debugging symbols, and work flawlessly, which contradicts your commit logs. What problem are you trying to solve? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:47:04 2005 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 25E8D16A41F; Thu, 27 Oct 2005 20:47:04 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2B6E43D53; Thu, 27 Oct 2005 20:47:03 +0000 (GMT) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKl3w0028663; Thu, 27 Oct 2005 20:47:03 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKl33b028556; Thu, 27 Oct 2005 20:47:03 GMT (envelope-from joel) Message-Id: <200510272047.j9RKl33b028556@repoman.freebsd.org> From: Joel Dahl Date: Thu, 27 Oct 2005 20:47:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 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: Thu, 27 Oct 2005 20:47:04 -0000 joel 2005-10-27 20:47:03 UTC FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_6_0) share/man/man4 ata.4 Log: MFC r1.59: Add support for ATI IXP[234]00. Requested by: delphij Approved by: re (scottl) Revision Changes Path 1.52.2.2.2.1 +3 -1 src/share/man/man4/ata.4 From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:48:05 2005 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 CA77616A41F; Thu, 27 Oct 2005 20:48:05 +0000 (GMT) (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 587C943D48; Thu, 27 Oct 2005 20:48:05 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKm5Lm034309; Thu, 27 Oct 2005 20:48:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKm5vU034308; Thu, 27 Oct 2005 20:48:05 GMT (envelope-from jhb) Message-Id: <200510272048.j9RKm5vU034308@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 20:48:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Cc: Subject: cvs commit: src/sys/contrib/dev/acpica/Subsystem/Common cmalloc.c cmclib.c cmcopy.c cmdebug.c cmdelete.c cmeval.c cmglobal.c cminit.c cmobject.c cmutils.c cmxface.c src/sys/contrib/dev/acpica/Subsystem/Debugger dbcmds.c dbdisasm.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, 27 Oct 2005 20:48:06 -0000 jhb 2005-10-27 20:48:05 UTC FreeBSD src repository Removed files: (Branch: INTEL) sys/contrib/dev/acpica/Subsystem/Common cmalloc.c cmclib.c cmcopy.c cmdebug.c cmdelete.c cmeval.c cmglobal.c cminit.c cmobject.c cmutils.c cmxface.c sys/contrib/dev/acpica/Subsystem/Debugger dbcmds.c dbdisasm.c dbdisply.c dbexec.c dbfileio.c dbhistry.c dbinput.c dbstats.c dbutils.c dbxface.c sys/contrib/dev/acpica/Subsystem/Dispatcher dsfield.c dsmethod.c dsmthdat.c dsobject.c dsopcode.c dsutils.c dswexec.c dswload.c dswscope.c dswstate.c sys/contrib/dev/acpica/Subsystem/Events evevent.c evmisc.c evregion.c evrgnini.c evsci.c evxface.c evxfevnt.c evxfregn.c sys/contrib/dev/acpica/Subsystem/Hardware hwacpi.c hwcpu32.c hwgpe.c hwregs.c hwsleep.c hwtimer.c hwxface.c sys/contrib/dev/acpica/Subsystem/Include accommon.h acconfig.h acdebug.h acdispat.h acefi.h acenv.h acevents.h acexcep.h acfreebsd.h acgcc.h acglobal.h achware.h acinterp.h aclinux.h aclocal.h acmacros.h acmsvc.h acnamesp.h acobject.h acoutput.h acparser.h acpi.h acpiosxf.h acpixf.h acresrc.h actables.h actbl.h actbl1.h actbl2.h actbl32.h actbl64.h actbl71.h actypes.h acwin.h amlcode.h sys/contrib/dev/acpica/Subsystem/Interpreter amconfig.c amconvrt.c amcreate.c amdump.c amdyadic.c amfield.c amfldio.c ammisc.c ammonad.c amnames.c amprep.c amregion.c amresnte.c amresolv.c amresop.c amstore.c amstoren.c amstorob.c amsystem.c amutils.c amxface.c sys/contrib/dev/acpica/Subsystem/Namespace nsaccess.c nsalloc.c nsdump.c nseval.c nsinit.c nsload.c nsnames.c nsobject.c nssearch.c nsutils.c nswalk.c nsxfname.c nsxfobj.c sys/contrib/dev/acpica/Subsystem/Parser psargs.c psfind.c psopcode.c psparse.c psscope.c pstree.c psutils.c pswalk.c psxface.c sys/contrib/dev/acpica/Subsystem/Resources rsaddr.c rscalc.c rscreate.c rsdump.c rsio.c rsirq.c rslist.c rsmemory.c rsmisc.c rsutils.c rsxface.c sys/contrib/dev/acpica/Subsystem/Tables tbconvrt.c tbget.c tbinstal.c tbutils.c tbxface.c tbxfroot.c Log: Remove old ACPICA files from the INTEL vendor branch. They were removed from HEAD about 4 years ago when we started flattening out the ACPICA distribution. Revision Changes Path 1.1.1.6 +0 -799 src/sys/contrib/dev/acpica/Subsystem/Common/cmalloc.c (dead) 1.1.1.5 +0 -953 src/sys/contrib/dev/acpica/Subsystem/Common/cmclib.c (dead) 1.1.1.7 +0 -840 src/sys/contrib/dev/acpica/Subsystem/Common/cmcopy.c (dead) 1.1.1.5 +0 -657 src/sys/contrib/dev/acpica/Subsystem/Common/cmdebug.c (dead) 1.1.1.6 +0 -806 src/sys/contrib/dev/acpica/Subsystem/Common/cmdelete.c (dead) 1.1.1.5 +0 -494 src/sys/contrib/dev/acpica/Subsystem/Common/cmeval.c (dead) 1.1.1.6 +0 -792 src/sys/contrib/dev/acpica/Subsystem/Common/cmglobal.c (dead) 1.1.1.6 +0 -359 src/sys/contrib/dev/acpica/Subsystem/Common/cminit.c (dead) 1.1.1.7 +0 -783 src/sys/contrib/dev/acpica/Subsystem/Common/cmobject.c (dead) 1.1.1.5 +0 -1181 src/sys/contrib/dev/acpica/Subsystem/Common/cmutils.c (dead) 1.1.1.7 +0 -537 src/sys/contrib/dev/acpica/Subsystem/Common/cmxface.c (dead) 1.1.1.6 +0 -1070 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbcmds.c (dead) 1.1.1.5 +0 -823 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisasm.c (dead) 1.1.1.6 +0 -931 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbdisply.c (dead) 1.1.1.6 +0 -487 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbexec.c (dead) 1.1.1.7 +0 -492 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbfileio.c (dead) 1.1.1.4 +0 -301 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbhistry.c (dead) 1.1.1.6 +0 -989 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbinput.c (dead) 1.1.1.5 +0 -548 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbstats.c (dead) 1.1.1.5 +0 -465 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbutils.c (dead) 1.1.1.5 +0 -432 src/sys/contrib/dev/acpica/Subsystem/Debugger/dbxface.c (dead) 1.1.1.4 +0 -546 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsfield.c (dead) 1.1.1.5 +0 -645 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmethod.c (dead) 1.1.1.5 +0 -897 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsmthdat.c (dead) 1.1.1.7 +0 -816 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsobject.c (dead) 1.1.1.7 +0 -1089 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsopcode.c (dead) 1.1.1.6 +0 -948 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dsutils.c (dead) 1.1.1.6 +0 -829 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswexec.c (dead) 1.1.1.5 +0 -929 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswload.c (dead) 1.1.1.5 +0 -268 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswscope.c (dead) 1.1.1.6 +0 -1149 src/sys/contrib/dev/acpica/Subsystem/Dispatcher/dswstate.c (dead) 1.1.1.7 +0 -954 src/sys/contrib/dev/acpica/Subsystem/Events/evevent.c (dead) 1.1.1.6 +0 -486 src/sys/contrib/dev/acpica/Subsystem/Events/evmisc.c (dead) 1.1.1.7 +0 -778 src/sys/contrib/dev/acpica/Subsystem/Events/evregion.c (dead) 1.1.1.6 +0 -557 src/sys/contrib/dev/acpica/Subsystem/Events/evrgnini.c (dead) 1.1.1.5 +0 -436 src/sys/contrib/dev/acpica/Subsystem/Events/evsci.c (dead) 1.1.1.6 +0 -769 src/sys/contrib/dev/acpica/Subsystem/Events/evxface.c (dead) 1.1.1.5 +0 -624 src/sys/contrib/dev/acpica/Subsystem/Events/evxfevnt.c (dead) 1.1.1.5 +0 -515 src/sys/contrib/dev/acpica/Subsystem/Events/evxfregn.c (dead) 1.1.1.6 +0 -446 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwacpi.c (dead) 1.1.1.4 +0 -837 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwcpu32.c (dead) 1.1.1.5 +0 -301 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwgpe.c (dead) 1.1.1.6 +0 -1140 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwregs.c (dead) 1.1.1.3 +0 -295 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwsleep.c (dead) 1.1.1.3 +0 -307 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwtimer.c (dead) 1.1.1.4 +0 -737 src/sys/contrib/dev/acpica/Subsystem/Hardware/hwxface.c (dead) 1.1.1.7 +0 -818 src/sys/contrib/dev/acpica/Subsystem/Include/accommon.h (dead) 1.1.1.6 +0 -244 src/sys/contrib/dev/acpica/Subsystem/Include/acconfig.h (dead) 1.1.1.5 +0 -498 src/sys/contrib/dev/acpica/Subsystem/Include/acdebug.h (dead) 1.1.1.6 +0 -546 src/sys/contrib/dev/acpica/Subsystem/Include/acdispat.h (dead) 1.1.1.6 +0 -136 src/sys/contrib/dev/acpica/Subsystem/Include/acefi.h (dead) 1.1.1.5 +0 -379 src/sys/contrib/dev/acpica/Subsystem/Include/acenv.h (dead) 1.1.1.5 +0 -307 src/sys/contrib/dev/acpica/Subsystem/Include/acevents.h (dead) 1.1.1.5 +0 -318 src/sys/contrib/dev/acpica/Subsystem/Include/acexcep.h (dead) 1.1.1.5 +0 -134 src/sys/contrib/dev/acpica/Subsystem/Include/acfreebsd.h (dead) 1.1.1.6 +0 -239 src/sys/contrib/dev/acpica/Subsystem/Include/acgcc.h (dead) 1.1.1.5 +0 -392 src/sys/contrib/dev/acpica/Subsystem/Include/acglobal.h (dead) 1.1.1.5 +0 -241 src/sys/contrib/dev/acpica/Subsystem/Include/achware.h (dead) 1.1.1.7 +0 -704 src/sys/contrib/dev/acpica/Subsystem/Include/acinterp.h (dead) 1.1.1.6 +0 -147 src/sys/contrib/dev/acpica/Subsystem/Include/aclinux.h (dead) 1.1.1.7 +0 -1017 src/sys/contrib/dev/acpica/Subsystem/Include/aclocal.h (dead) 1.1.1.5 +0 -592 src/sys/contrib/dev/acpica/Subsystem/Include/acmacros.h (dead) 1.1.1.5 +0 -132 src/sys/contrib/dev/acpica/Subsystem/Include/acmsvc.h (dead) 1.1.1.6 +0 -521 src/sys/contrib/dev/acpica/Subsystem/Include/acnamesp.h (dead) 1.1.1.5 +0 -513 src/sys/contrib/dev/acpica/Subsystem/Include/acobject.h (dead) 1.1.1.5 +0 -219 src/sys/contrib/dev/acpica/Subsystem/Include/acoutput.h (dead) 1.1.1.4 +0 -437 src/sys/contrib/dev/acpica/Subsystem/Include/acparser.h (dead) 1.1.1.4 +0 -141 src/sys/contrib/dev/acpica/Subsystem/Include/acpi.h (dead) 1.1.1.5 +0 -422 src/sys/contrib/dev/acpica/Subsystem/Include/acpiosxf.h (dead) 1.1.1.5 +0 -413 src/sys/contrib/dev/acpica/Subsystem/Include/acpixf.h (dead) 1.1.1.4 +0 -396 src/sys/contrib/dev/acpica/Subsystem/Include/acresrc.h (dead) 1.1.1.5 +0 -276 src/sys/contrib/dev/acpica/Subsystem/Include/actables.h (dead) 1.1.1.5 +0 -308 src/sys/contrib/dev/acpica/Subsystem/Include/actbl.h (dead) 1.1.1.4 +0 -214 src/sys/contrib/dev/acpica/Subsystem/Include/actbl1.h (dead) 1.1.1.4 +0 -280 src/sys/contrib/dev/acpica/Subsystem/Include/actbl2.h (dead) 1.1.1.2 +0 -206 src/sys/contrib/dev/acpica/Subsystem/Include/actbl32.h (dead) 1.1.1.2 +0 -206 src/sys/contrib/dev/acpica/Subsystem/Include/actbl64.h (dead) 1.1.1.4 +0 -235 src/sys/contrib/dev/acpica/Subsystem/Include/actbl71.h (dead) 1.1.1.7 +0 -1140 src/sys/contrib/dev/acpica/Subsystem/Include/actypes.h (dead) 1.1.1.4 +0 -190 src/sys/contrib/dev/acpica/Subsystem/Include/acwin.h (dead) 1.1.1.5 +0 -510 src/sys/contrib/dev/acpica/Subsystem/Include/amlcode.h (dead) 1.1.1.6 +0 -435 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconfig.c (dead) 1.1.1.2 +0 -653 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amconvrt.c (dead) 1.1.1.6 +0 -882 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amcreate.c (dead) 1.1.1.5 +0 -984 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdump.c (dead) 1.1.1.6 +0 -1048 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amdyadic.c (dead) 1.1.1.5 +0 -447 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfield.c (dead) 1.1.1.7 +0 -861 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c (dead) 1.1.1.5 +0 -682 src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammisc.c (dead) 1.1.1.6 +0 -1212 src/sys/contrib/dev/acpica/Subsystem/Interpreter/ammonad.c (dead) 1.1.1.4 +0 -551 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amnames.c (dead) 1.1.1.6 +0 -596 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amprep.c (dead) 1.1.1.6 +0 -561 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amregion.c (dead) 1.1.1.6 +0 -697 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresnte.c (dead) 1.1.1.6 +0 -633 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresolv.c (dead) 1.1.1.5 +0 -670 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amresop.c (dead) 1.1.1.6 +0 -764 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstore.c (dead) 1.1.1.6 +0 -376 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstoren.c (dead) 1.1.1.7 +0 -596 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amstorob.c (dead) 1.1.1.4 +0 -463 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amsystem.c (dead) 1.1.1.7 +0 -496 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amutils.c (dead) 1.1.1.4 +0 -190 src/sys/contrib/dev/acpica/Subsystem/Interpreter/amxface.c (dead) 1.1.1.6 +0 -742 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsaccess.c (dead) 1.1.1.6 +0 -728 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsalloc.c (dead) 1.1.1.6 +0 -679 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsdump.c (dead) 1.1.1.5 +0 -663 src/sys/contrib/dev/acpica/Subsystem/Namespace/nseval.c (dead) 1.1.1.7 +0 -455 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsinit.c (dead) 1.1.1.6 +0 -706 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsload.c (dead) 1.1.1.6 +0 -367 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsnames.c (dead) 1.1.1.5 +0 -523 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsobject.c (dead) 1.1.1.6 +0 -525 src/sys/contrib/dev/acpica/Subsystem/Namespace/nssearch.c (dead) 1.1.1.6 +0 -1048 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsutils.c (dead) 1.1.1.4 +0 -384 src/sys/contrib/dev/acpica/Subsystem/Namespace/nswalk.c (dead) 1.1.1.6 +0 -409 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfname.c (dead) 1.1.1.7 +0 -852 src/sys/contrib/dev/acpica/Subsystem/Namespace/nsxfobj.c (dead) 1.1.1.5 +0 -890 src/sys/contrib/dev/acpica/Subsystem/Parser/psargs.c (dead) 1.1.1.6 +0 -460 src/sys/contrib/dev/acpica/Subsystem/Parser/psfind.c (dead) 1.1.1.5 +0 -753 src/sys/contrib/dev/acpica/Subsystem/Parser/psopcode.c (dead) 1.1.1.6 +0 -1458 src/sys/contrib/dev/acpica/Subsystem/Parser/psparse.c (dead) 1.1.1.5 +0 -375 src/sys/contrib/dev/acpica/Subsystem/Parser/psscope.c (dead) 1.1.1.5 +0 -399 src/sys/contrib/dev/acpica/Subsystem/Parser/pstree.c (dead) 1.1.1.4 +0 -683 src/sys/contrib/dev/acpica/Subsystem/Parser/psutils.c (dead) 1.1.1.5 +0 -387 src/sys/contrib/dev/acpica/Subsystem/Parser/pswalk.c (dead) 1.1.1.4 +0 -276 src/sys/contrib/dev/acpica/Subsystem/Parser/psxface.c (dead) 1.1.1.5 +0 -923 src/sys/contrib/dev/acpica/Subsystem/Resources/rsaddr.c (dead) 1.1.1.7 +0 -1003 src/sys/contrib/dev/acpica/Subsystem/Resources/rscalc.c (dead) 1.1.1.7 +0 -585 src/sys/contrib/dev/acpica/Subsystem/Resources/rscreate.c (dead) 1.1.1.7 +0 -1045 src/sys/contrib/dev/acpica/Subsystem/Resources/rsdump.c (dead) 1.1.1.5 +0 -637 src/sys/contrib/dev/acpica/Subsystem/Resources/rsio.c (dead) 1.1.1.5 +0 -684 src/sys/contrib/dev/acpica/Subsystem/Resources/rsirq.c (dead) 1.1.1.5 +0 -605 src/sys/contrib/dev/acpica/Subsystem/Resources/rslist.c (dead) 1.1.1.5 +0 -661 src/sys/contrib/dev/acpica/Subsystem/Resources/rsmemory.c (dead) 1.1.1.5 +0 -726 src/sys/contrib/dev/acpica/Subsystem/Resources/rsmisc.c (dead) 1.1.1.4 +0 -511 src/sys/contrib/dev/acpica/Subsystem/Resources/rsutils.c (dead) 1.1.1.4 +0 -326 src/sys/contrib/dev/acpica/Subsystem/Resources/rsxface.c (dead) 1.1.1.5 +0 -666 src/sys/contrib/dev/acpica/Subsystem/Tables/tbconvrt.c (dead) 1.1.1.6 +0 -780 src/sys/contrib/dev/acpica/Subsystem/Tables/tbget.c (dead) 1.1.1.6 +0 -678 src/sys/contrib/dev/acpica/Subsystem/Tables/tbinstal.c (dead) 1.1.1.6 +0 -486 src/sys/contrib/dev/acpica/Subsystem/Tables/tbutils.c (dead) 1.1.1.5 +0 -514 src/sys/contrib/dev/acpica/Subsystem/Tables/tbxface.c (dead) 1.1.1.5 +0 -320 src/sys/contrib/dev/acpica/Subsystem/Tables/tbxfroot.c (dead) From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:49:01 2005 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 E341C16A41F; Thu, 27 Oct 2005 20:49:01 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC9543D4C; Thu, 27 Oct 2005 20:49:00 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RKmuaH036936; Thu, 27 Oct 2005 23:48:56 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 85740-02-2; Thu, 27 Oct 2005 23:48:55 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RKmEVS036910 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 27 Oct 2005 23:48:14 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RKmGrC020206; Thu, 27 Oct 2005 23:48:16 +0300 (EEST) (envelope-from ru) Date: Thu, 27 Oct 2005 23:48:16 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20051027204816.GX68470@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="JjNtGRvLZqzR8wa5" Content-Disposition: inline In-Reply-To: <864q723dqt.fsf@xps.des.no> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.org, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 20:49:02 -0000 --JjNtGRvLZqzR8wa5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 10:29:30PM +0200, Dag-Erling Sm?rgrav wrote: > Ruslan Ermilov writes: > > On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > > > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > > > > Log: > > > > Installing debug modules was a bad idea -- I bogusly assumed that > > > > our kernel linker will only load PT_LOAD segments, apparently not. > > > > Instead, produce .dbg objects from .debug objects, and install > > > > them together with non-debug objects, as described in objcopy(1). > > > is that because of this change? > > Yes. I sent a patch for kldxref(8) that fixes this for review to > > amd64@. These messages are harmless otherwise. >=20 > Wouldn't it be cleaner (and potentially simpler) to fix this by making > the kernel linker skip non-PT_LOAD sections? >=20 > (I just peeked at sys/kern/link_elf.c and it looks to me like it > *already* DTRT, so what exactly is the problem?) >=20 sys/kern/link_elf_obj.c is what's used with current format module objects on amd64. Can you see a problem there? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --JjNtGRvLZqzR8wa5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYT0QqRfpzJluFF4RAp8AAKCJw+W1nlh3KVnnJI6riN6KGH4nNQCeM+E3 pKYI6fNEUti/EcbxxDTGTSc= =FuJE -----END PGP SIGNATURE----- --JjNtGRvLZqzR8wa5-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:55:30 2005 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 3097516A41F; Thu, 27 Oct 2005 20:55:30 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0F0543D45; Thu, 27 Oct 2005 20:55:29 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKtTdv034813; Thu, 27 Oct 2005 20:55:29 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKtTxw034812; Thu, 27 Oct 2005 20:55:29 GMT (envelope-from kensmith) Message-Id: <200510272055.j9RKtTxw034812@repoman.freebsd.org> From: Ken Smith Date: Thu, 27 Oct 2005 20:55: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/dev/uart uart_bus_ebus.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, 27 Oct 2005 20:55:30 -0000 kensmith 2005-10-27 20:55:29 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/uart uart_bus_ebus.c Log: Temporary hack to get the hme network interface on Sun E250 servers to work. The code comment describes the issue, basically an as yet not totally understood interrupt routing problem. This hack is being done to RELENG_6 so that the hme interface works on E250's for the release, but is not being done in HEAD so more work on the interrupt routing issue can be done. Requested by: marius Approved by: re (scottl) Revision Changes Path 1.6.2.1 +15 -0 src/sys/dev/uart/uart_bus_ebus.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:58:05 2005 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 72A7416A41F for ; Thu, 27 Oct 2005 20:58:05 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B1F443D45 for ; Thu, 27 Oct 2005 20:58:04 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9RKkUIR011365 for cvs-src@freebsd.org.checked; Fri, 28 Oct 2005 00:46:30 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9RKiqJo011329; Fri, 28 Oct 2005 00:44:53 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <43613A16.70206@cronyx.ru> Date: Fri, 28 Oct 2005 00:35:34 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: obrien@freebsd.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <200510241034.27073.jhb@freebsd.org> <20051025052018.GE55418@dragon.NUXI.org> <435E04AA.3080605@cronyx.ru> <20051026172734.GA99901@dragon.NUXI.org> <435FE099.6060508@cronyx.ru> <20051026224712.GA16118@dragon.NUXI.org> In-Reply-To: <20051026224712.GA16118@dragon.NUXI.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/sys/dev/cp if_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: Thu, 27 Oct 2005 20:58:05 -0000 Hi, David O'Brien: >On Thu, Oct 27, 2005 at 12:01:29AM +0400, Roman Kurakin wrote: > > >>David O'Brien: >> >> >>>On Tue, Oct 25, 2005 at 02:10:50PM +0400, Roman Kurakin wrote: >>> >>> >>>>The commit log didn't state what was the problem variable forward >>>>declaration or/and function >>>>forward declaration. >>>> >>>> >>>Since you became a committer 2003/12/18, I guess you haven't been part of >>>FreeBSD when we've worked on a GCC compiler upgrade. We make these type >>>of changes to make a new version of GCC build FreeBSD. The other choice >>>is to disconnect these drivers from the build. The commits done where >>>typical of what's been done for the past decade. >>> >>> >>> >>Please provide detailed technical information what is wrong in my >>change of your commit. >> >> > >Instead of arguing this with you as it is probably fruitless. >If you're going to pull the "maintainer" card, then please have these >drivers moved to src/sys/contrib and note them in src/MAINTAINERS. That >way this isn't a landmine for other committers to step on. > I do not want to buffer development proccess since I cant guarantee quick response at any random time. From my point of view for most of commits there is enough post-commit review. Since all (most) changes go through current I have enough time to fix them in case of wrong (from my point of view) change. >>I do not want to list them in src/MAINTAINERS cause I think it is >>better to allow any commits. >>Cases such this one is rare. >> >> > >Rare or not, they can occur so why not take easy steps to avoid strife? > If you insist I could add myself to MAINTAINERS with post-commit review just to inform that I am exist. But I doubt that this will close all rare cases. rik From owner-cvs-src@FreeBSD.ORG Thu Oct 27 20:58:51 2005 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 3905F16A41F; Thu, 27 Oct 2005 20:58:51 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD24143D48; Thu, 27 Oct 2005 20:58:50 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RKwoZm034995; Thu, 27 Oct 2005 20:58:50 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RKwoHS034994; Thu, 27 Oct 2005 20:58:50 GMT (envelope-from kensmith) Message-Id: <200510272058.j9RKwoHS034994@repoman.freebsd.org> From: Ken Smith Date: Thu, 27 Oct 2005 20:58:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/uart uart_bus_ebus.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, 27 Oct 2005 20:58:51 -0000 kensmith 2005-10-27 20:58:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/uart uart_bus_ebus.c Log: MFC of Rev. 1.6.2.1: > Temporary hack to get the hme network interface on Sun E250 servers to > work. The code comment describes the issue, basically an as yet not > totally understood interrupt routing problem. This hack is being done > to RELENG_6 so that the hme interface works on E250's for the release, > but is not being done in HEAD so more work on the interrupt routing > issue can be done. > > Requested by: marius Approved by: re (scottl) Revision Changes Path 1.6.4.1 +15 -0 src/sys/dev/uart/uart_bus_ebus.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:08:13 2005 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 8D20516A41F; Thu, 27 Oct 2005 21:08:13 +0000 (GMT) (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 4AACB43D48; Thu, 27 Oct 2005 21:08:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RL8DS9035361; Thu, 27 Oct 2005 21:08:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RL8DCO035360; Thu, 27 Oct 2005 21:08:13 GMT (envelope-from jhb) Message-Id: <200510272108.j9RL8DCO035360@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:08: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/dev/en midway.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, 27 Oct 2005 21:08:13 -0000 jhb 2005-10-27 21:08:12 UTC FreeBSD src repository Modified files: sys/dev/en midway.c Log: Drop the driver lock around atm_input() analogous to all the ethernet drivers dropping the driver lock around ether_input(). Silence by: harti Revision Changes Path 1.67 +2 -0 src/sys/dev/en/midway.c From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:10:30 2005 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 0692C16A41F; Thu, 27 Oct 2005 21:10:30 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6164E43D46; Thu, 27 Oct 2005 21:10:29 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RLASAj037583; Fri, 28 Oct 2005 00:10:28 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 85927-03-4; Fri, 28 Oct 2005 00:10:26 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RL8aCp037492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 00:08:37 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RL8c1E049178; Fri, 28 Oct 2005 00:08:38 +0300 (EEST) (envelope-from ru) Date: Fri, 28 Oct 2005 00:08:38 +0300 From: Ruslan Ermilov To: Pawel Jakub Dawidek Message-ID: <20051027210838.GZ68470@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <20051027204234.GA3596@garage.freebsd.pl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MziYxCZO8WOaTd4I" Content-Disposition: inline In-Reply-To: <20051027204234.GA3596@garage.freebsd.pl> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.ORG, "Bjoern A. Zeeb" , src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 21:10:30 -0000 --MziYxCZO8WOaTd4I Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 10:42:34PM +0200, Pawel Jakub Dawidek wrote: > On Thu, Oct 27, 2005 at 08:40:42PM +0300, Ruslan Ermilov wrote: > +> On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > +> > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > +> >=20 > +> > > ru 2005-10-27 14:24:46 UTC > +> > > > +> > > FreeBSD src repository > +> > > > +> > > Modified files: > +> > > sys/conf kern.post.mk kmod.mk > +> > > Log: > +> > > Installing debug modules was a bad idea -- I bogusly assumed that > +> > > our kernel linker will only load PT_LOAD segments, apparently no= t. > +> > > Instead, produce .dbg objects from .debug objects, and install > +> > > them together with non-debug objects, as described in objcopy(1). > +> >=20 > +> > is that because of this change? > +> >=20 > +> Yes. I sent a patch for kldxref(8) that fixes this for review to > +> amd64@. These messages are harmless otherwise. >=20 > I'm seeing simlar thing when I built HEAD kernel on 6.x FreeBSD and > tried to install it (i386 machine): >=20 > kldxref /diskless/lcf/boot/kernel > kldxref: file isn't dynamically-linked > kldxref: file isn't dynamically-linked > kldxref: file isn't dynamically-linked > [...] >=20 This is harmless as well, and the following patch is under a peer review now: %%% Index: ef.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: /home/ncvs/src/usr.sbin/kldxref/ef.c,v retrieving revision 1.8 diff -u -p -r1.8 ef.c --- ef.c 28 Aug 2004 19:31:10 -0000 1.8 +++ ef.c 27 Oct 2005 18:41:44 -0000 @@ -602,7 +602,8 @@ ef_open(const char *filename, struct elf printf("\n"); ef->ef_nsegs =3D nsegs; if (phdyn =3D=3D NULL) { - warnx("file isn't dynamically-linked"); + if (verbose) + warnx("file isn't dynamically-linked"); break; } if (ef_read_entry(ef, phdyn->p_offset, %%% Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --MziYxCZO8WOaTd4I Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYUHWqRfpzJluFF4RAjyMAJ0XCF39OwM8mb9cK34MSQU5QAtdGACdHzPZ piGCmlKscfiVrL15fa3hSIM= =LHOw -----END PGP SIGNATURE----- --MziYxCZO8WOaTd4I-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:13:40 2005 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 16A4C16A420 for ; Thu, 27 Oct 2005 21:13:40 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F9AD43D45 for ; Thu, 27 Oct 2005 21:13:38 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru (8.13.0/vak/3.0) id j9RLAU7c012798 for cvs-src@FreeBSD.org.checked; Fri, 28 Oct 2005 01:10:30 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (localhost.cronyx.ru [127.0.0.1]) by hanoi.cronyx.ru (8.13.0/vak/3.0) with ESMTP id j9RL8dX4012776; Fri, 28 Oct 2005 01:08:40 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <43613FA9.8000005@cronyx.ru> Date: Fri, 28 Oct 2005 00:59:21 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru-RU; rv:1.2.1) Gecko/20030426 X-Accept-Language: ru-ru, en MIME-Version: 1.0 To: obrien@FreeBSD.org References: <200509271657.j8RGvj2n015326@repoman.freebsd.org> <20051024072423.GA34909@dragon.NUXI.org> <20051027074053.GA24024@dragon.NUXI.org> In-Reply-To: <20051027074053.GA24024@dragon.NUXI.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Roman Kurakin , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cp if_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: Thu, 27 Oct 2005 21:13:40 -0000 David O'Brien: >On Mon, Oct 24, 2005 at 12:24:23AM -0700, David O'Brien wrote: > > >>On Tue, Sep 27, 2005 at 04:57:45PM +0000, Roman Kurakin wrote: >> >> >>>rik 2005-09-27 16:57:45 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/dev/cp if_cp.c >>> Log: >>> Restore if_cp.c 1.27 >>> ---------------------------- >>> revision 1.27 >>> date: 2005/09/19 03:10:16; author: imp; state: Exp; lines: +3 -2 >>> Make sure that we call if_free(ifp) after bus_teardown_intr. Since we >>> could get an interrupt after we free the ifp, and the interrupt >>> handler depended on the ifp being still alive, this could, in theory, >>> cause a crash. Eliminate this possibility by moving the if_free to >>> after the bus_teardown_intr() call. >>> >>> In fact, this change do nothing for this driver. It is protected from >>> this by cp_destroy variable. This variable also protects driver from >>> initiation of any activity from network stack with disabled intr >>> handler with this change applied. >>> >>> >>You should not have backed out my commit without discussing it with me >>and understanding the reason for the change. >>Do it again and I *will* be taking it Core. >> >> > >rik, I'm sorry this reads as such an aggressive email. I thought we were in a discussion about the reason of my commit and was surprised to see your commit happened in the middle of what I thought was an on-going thread. > > I do not argue about why you do not ask me before commiting, I've just asked to not commit changes with big diffs and wonder if my view of change is ok and if not why. Your commit was done without asking me cause I am not listed in Mantainers, I've commited my view of your fix after about a week of silence from you. So I guess there was now misbehaviour in each other action. This is social part of question. And I hope it is closed. But the technical (from my point of view) is not clean. I still do not have an answer if there is a problem in my commit that affects some systems and how many of them. Could this problem be reproduced with code from CVS (at some interval) or it could be seen only in some special case. I faild to find the list of bugs for all version of gcc. Best regards, Roman Kurakin From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:16:17 2005 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 8CD0816A41F; Thu, 27 Oct 2005 21:16:17 +0000 (GMT) (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 5F9F143D46; Thu, 27 Oct 2005 21:16:17 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLGHTU035756; Thu, 27 Oct 2005 21:16:17 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLGHdW035755; Thu, 27 Oct 2005 21:16:17 GMT (envelope-from jhb) Message-Id: <200510272116.j9RLGHdW035755@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:16: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/sys/dev/txp if_txp.c if_txpreg.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, 27 Oct 2005 21:16:17 -0000 jhb 2005-10-27 21:16:17 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c if_txpreg.h Log: - Add locking and mark MPSAFE. The driver had a mutex in the softc and even initialized it, but it never used it. - Use callout_*() to manage the callout. - Use m_devget() to copy data out of the rx buffers rather than doing it all by hand. - Use m_getcl() to allocate mbuf clusters rather than doing it all by hand. - Don't free the software descriptor for a rx ring entry if we can't allocate an mbuf cluster for it. We left a dangling pointer and never reallocated the entry anyway. OpenBSD's code (from which this was derived) has the same bug. Tested by: NO ONE (despite repeated requests) Reviewed by: wpaul (5) Revision Changes Path 1.37 +81 -61 src/sys/dev/txp/if_txp.c 1.6 +5 -1 src/sys/dev/txp/if_txpreg.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:18:38 2005 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 085D216A41F; Thu, 27 Oct 2005 21:18:38 +0000 (GMT) (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 AE26843D48; Thu, 27 Oct 2005 21:18:37 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLIbpg035885; Thu, 27 Oct 2005 21:18:37 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLIbv0035884; Thu, 27 Oct 2005 21:18:37 GMT (envelope-from jhb) Message-Id: <200510272118.j9RLIbv0035884@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:18:37 +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/pci if_vr.c if_vrreg.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, 27 Oct 2005 21:18:38 -0000 jhb 2005-10-27 21:18:37 UTC FreeBSD src repository Modified files: sys/pci if_vr.c if_vrreg.h Log: - Use if_printf() and device_printf() and remove vr_unit from the softc. I had to initialize the ifnet a bit earlier in attach so that the if_printf()'s in vr_reset() didn't explode with a page fault. - Use M_ZERO with contigmalloc() rather than an explicit bzero. Revision Changes Path 1.112 +44 -52 src/sys/pci/if_vr.c 1.23 +0 -1 src/sys/pci/if_vrreg.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:20:44 2005 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 D5AA816A41F; Thu, 27 Oct 2005 21:20:44 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E2DA43D48; Thu, 27 Oct 2005 21:20:43 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RLKfhx037887; Fri, 28 Oct 2005 00:20:41 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 85926-05; Fri, 28 Oct 2005 00:20:39 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RLGnFP037784 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 00:16:49 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RLGpEH076230; Fri, 28 Oct 2005 00:16:51 +0300 (EEST) (envelope-from ru) Date: Fri, 28 Oct 2005 00:16:51 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20051027211651.GA55369@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> <86zmou1ykb.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <86zmou1ykb.fsf@xps.des.no> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@FreeBSD.ORG, "Bjoern A. Zeeb" , src-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 21:20:45 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 10:42:44PM +0200, Dag-Erling Sm?rgrav wrote: > Now I'm even more confused - I just built and installed a kernel using > yesterday's sources (kern.post.mk 1.86, kmod.mk 1.197); the modules > that were installed have debugging symbols, and work flawlessly, which > contradicts your commit logs. >=20 > What problem are you trying to solve? >=20 On amd64, different format module objects are used. When loading modules with debugging, they consume much more space than non-debug versions: hammer# pwd /usr/src/sys/modules/if_tun hammer# make DEBUG_FLAGS=3D-g -s hammer# kldload ./if_tun.ko hammer# kldstat |grep if_tun 14 1 0xffffffffa7b76000 1f6d if_tun.ko hammer# kldunload if_tun.ko hammer# kldload ./if_tun.ko.debug hammer# kldstat | grep if_tun 14 1 0xffffffffa7beb000 ad77 if_tun.ko.debug Note the difference in the 4th field. Also, such modules have currently unsupported relocation type, R_X86_64_32, which is easy to fix if needs be. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYUPDqRfpzJluFF4RAgRrAKCT0Tphbr7dVh5UbPaO3K8NhLtlNACePndX irixEnoxF83abhy0/xMUMVI= =Mzup -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:23:01 2005 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 4E00A16A41F; Thu, 27 Oct 2005 21:23:01 +0000 (GMT) (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 4501743D69; Thu, 27 Oct 2005 21:22:59 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RLMwAe036129; Thu, 27 Oct 2005 21:22:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RLMwWK036128; Thu, 27 Oct 2005 21:22:58 GMT (envelope-from jhb) Message-Id: <200510272122.j9RLMwWK036128@repoman.freebsd.org> From: John Baldwin Date: Thu, 27 Oct 2005 21:22: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/pci if_wb.c if_wbreg.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, 27 Oct 2005 21:23:01 -0000 jhb 2005-10-27 21:22:58 UTC FreeBSD src repository Modified files: sys/pci if_wb.c if_wbreg.h Log: Fixup locking and mark MPSAFE. - Add locked variants of init() and start(). - Use callout_*() to manage callout. - Test IFF_DRV_RUNNING rather than IFF_UP in wb_intr() to see if we are still active when an interrupt comes in. I couldn't find any of these cards anywhere to test on myself, and google turns up references to FreeBSD and OpenBSD manpages for this driver when trying to locate a card that way. I'm not sure anyone actually uses these cards with FreeBSD. Tested by: NO ONE (despite repeated requests) Revision Changes Path 1.87 +60 -43 src/sys/pci/if_wb.c 1.14 +1 -1 src/sys/pci/if_wbreg.h From owner-cvs-src@FreeBSD.ORG Thu Oct 27 21:34:19 2005 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 7A84E16A41F; Thu, 27 Oct 2005 21:34:19 +0000 (GMT) (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 E500243D46; Thu, 27 Oct 2005 21:34:18 +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 AD62E2083; Thu, 27 Oct 2005 23:34:10 +0200 (CEST) X-Spam-Tests: ALL_TRUSTED,AWL,BAYES_00 X-Spam-Learn: ham X-Spam-Score: -4.4/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on tim.des.no Received: from xps.des.no (des.no [80.203.228.37]) by tim.des.no (Postfix) with ESMTP id 314562082; Thu, 27 Oct 2005 23:34:10 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id 1129433C1D; Thu, 27 Oct 2005 23:34:10 +0200 (CEST) To: Ruslan Ermilov References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> <20051027204816.GX68470@ip.net.ua> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 27 Oct 2005 23:34:10 +0200 In-Reply-To: <20051027204816.GX68470@ip.net.ua> (Ruslan Ermilov's message of "Thu, 27 Oct 2005 23:48:16 +0300") Message-ID: <86vezi1w6l.fsf@xps.des.no> User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: cvs-src@FreeBSD.org, "Bjoern A. Zeeb" , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 21:34:19 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Ruslan Ermilov writes: > sys/kern/link_elf_obj.c is what's used with current format module > objects on amd64. Can you see a problem there? Yes. AFAICT, it should select sections based on the presence of the SHF_ALLOC bit in sh_flags. See if the attached patch helps. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=link_elf_obj.diff Index: sys/kern/link_elf_obj.c =================================================================== RCS file: /home/ncvs/src/sys/kern/link_elf_obj.c,v retrieving revision 1.89 diff -u -r1.89 link_elf_obj.c --- sys/kern/link_elf_obj.c 28 Aug 2005 05:38:40 -0000 1.89 +++ sys/kern/link_elf_obj.c 27 Oct 2005 21:32:48 -0000 @@ -225,6 +225,8 @@ symtabindex = -1; symstrindex = -1; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -295,6 +297,8 @@ rl = 0; ra = 0; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -496,6 +500,8 @@ symtabindex = -1; symstrindex = -1; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -618,6 +624,8 @@ /* Size up code/data(progbits) and bss(nobits). */ alignmask = 0; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: @@ -671,6 +679,8 @@ ra = 0; alignmask = 0; for (i = 0; i < hdr->e_shnum; i++) { + if (shdr[i].sh_flags & SHF_ALLOC == 0) + continue; switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: --=-=-=-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 22:09:10 2005 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 39F0A16A41F; Thu, 27 Oct 2005 22:09:10 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55F5743D66; Thu, 27 Oct 2005 22:08:51 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from localhost (rocky.ip.net.ua [82.193.96.2]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RM7XsP039360; Fri, 28 Oct 2005 01:07:33 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: from tigra.ip.net.ua ([82.193.96.10]) by localhost (rocky.ipnet [82.193.96.2]) (amavisd-new, port 10024) with LMTP id 86472-04-2; Fri, 28 Oct 2005 01:07:30 +0300 (EEST) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id j9RM4ZJX039287 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 01:04:35 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.13.4/8.13.4) id j9RM4c7Z058431; Fri, 28 Oct 2005 01:04:38 +0300 (EEST) (envelope-from ru) Date: Fri, 28 Oct 2005 01:04:37 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20051027220437.GA54382@ip.net.ua> References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> <20051027204816.GX68470@ip.net.ua> <86vezi1w6l.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline In-Reply-To: <86vezi1w6l.fsf@xps.des.no> User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new at ip.net.ua Cc: cvs-src@freebsd.org, "Bjoern A. Zeeb" , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 27 Oct 2005 22:09:10 -0000 --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 27, 2005 at 11:34:10PM +0200, Dag-Erling Sm?rgrav wrote: > Ruslan Ermilov writes: > > sys/kern/link_elf_obj.c is what's used with current format module > > objects on amd64. Can you see a problem there? >=20 > Yes. AFAICT, it should select sections based on the presence of the > SHF_ALLOC bit in sh_flags. See if the attached patch helps. >=20 Fantastic. :-) I was just about to test the following patch: %%% Index: link_elf_obj.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: /home/ncvs/src/sys/kern/link_elf_obj.c,v retrieving revision 1.89 diff -u -p -r1.89 link_elf_obj.c --- link_elf_obj.c 28 Aug 2005 05:38:40 -0000 1.89 +++ link_elf_obj.c 27 Oct 2005 22:00:00 -0000 @@ -228,6 +228,8 @@ link_elf_link_preload(linker_class_t cls switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; ef->nprogtab++; break; case SHT_SYMTAB: @@ -298,6 +300,8 @@ link_elf_link_preload(linker_class_t cls switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; ef->progtab[pb].addr =3D (void *)shdr[i].sh_addr; if (shdr[i].sh_type =3D=3D SHT_PROGBITS) ef->progtab[pb].name =3D "<>"; @@ -499,6 +503,8 @@ link_elf_load_file(linker_class_t cls, c switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; ef->nprogtab++; break; case SHT_SYMTAB: @@ -621,6 +627,8 @@ link_elf_load_file(linker_class_t cls, c switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; alignmask =3D shdr[i].sh_addralign - 1; mapsize +=3D alignmask; mapsize &=3D ~alignmask; @@ -674,6 +682,8 @@ link_elf_load_file(linker_class_t cls, c switch (shdr[i].sh_type) { case SHT_PROGBITS: case SHT_NOBITS: + if (!(shdr[i].sh_flags & SHF_ALLOC)) + break; alignmask =3D shdr[i].sh_addralign - 1; mapbase +=3D alignmask; mapbase &=3D ~alignmask; %%% Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --C7zPtVaVf+AK4Oqc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDYU71qRfpzJluFF4RAuPbAKCJPa7wUjR5G8u2dx9e7Tl+wyMx6QCfW1P7 f+kyBY+TVRZK7UKDrRQS/PA= =VG7j -----END PGP SIGNATURE----- --C7zPtVaVf+AK4Oqc-- From owner-cvs-src@FreeBSD.ORG Thu Oct 27 23:20:54 2005 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 3878316A41F; Thu, 27 Oct 2005 23:20:54 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id D136043D48; Thu, 27 Oct 2005 23:20:53 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (net-ix.gw.ai.net [205.134.160.6] (may be forged)) (authenticated bits=0) by pittgoth.com (8.13.4/8.13.4) with ESMTP id j9RNVSx2059972 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 27 Oct 2005 19:31:29 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Thu, 27 Oct 2005 19:20:00 -0400 From: Tom Rhodes To: Max Laier Message-Id: <20051027192000.57e83aff.trhodes@FreeBSD.org> In-Reply-To: <200510261416.09346.max@love2party.net> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> <200510261416.09346.max@love2party.net> X-Mailer: Sylpheed version 1.0.5 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: yar@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, glebius@FreeBSD.org, rwatson@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 27 Oct 2005 23:20:54 -0000 On Wed, 26 Oct 2005 14:15:47 +0200 Max Laier wrote: > On Wednesday 26 October 2005 11:58, Robert Watson wrote: > > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > > R> I think we may actually be in need of either a new flag, > > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > > way R> for protocols to ask if an interface is a loopback interface or > > > not. > > > > > > I'd prefer to rewrite those subsystems that use interface layer but > > > aren't actually interfaces. I have plans to do this for CARP. > > > > At least in the case of if_disc, this won't help. I'm not quite sure why > > if_disc is IFF_LOOPBACK. > > Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which > also contains the following comment: > > /* > * Discard interface driver for protocol testing and timing. > * (Based on the loopback.) > */ > > So it might be a good idea to get rid of it and work from there. IIRC, someone told me or I read somewhere that if_disc is somewhat based on lo(4). There may be more sections where code is similar - rotted - over time. -- Tom Rhodes From owner-cvs-src@FreeBSD.ORG Thu Oct 27 23:57:55 2005 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 CCCF016A41F; Thu, 27 Oct 2005 23:57:55 +0000 (GMT) (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 8827043D45; Thu, 27 Oct 2005 23:57:55 +0000 (GMT) (envelope-from rodrigc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9RNvtvE043549; Thu, 27 Oct 2005 23:57:55 GMT (envelope-from rodrigc@repoman.freebsd.org) Received: (from rodrigc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9RNvtlX043548; Thu, 27 Oct 2005 23:57:55 GMT (envelope-from rodrigc) Message-Id: <200510272357.j9RNvtlX043548@repoman.freebsd.org> From: Craig Rodrigues Date: Thu, 27 Oct 2005 23:57: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/contrib/gcc/config freebsd-spec.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, 27 Oct 2005 23:57:55 -0000 rodrigc 2005-10-27 23:57:55 UTC FreeBSD src repository Modified files: contrib/gcc/config freebsd-spec.h Log: Submitted following patch to FSF GCC: * freebsd-spec.h (FBSD_TARGET_OS_CPP_BUILTINS): Use builtin_define_with_int_value() instead of adding a new check for every new major FreeBSD version. Motivated by: simon Discussed with: obrien, kan Revision Changes Path 1.20 +2 -11 src/contrib/gcc/config/freebsd-spec.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 00:58:44 2005 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 9D56816A41F; Fri, 28 Oct 2005 00:58:44 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 415D243D49; Fri, 28 Oct 2005 00:58:44 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S0wiBj053480; Fri, 28 Oct 2005 00:58:44 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S0wiGw053479; Fri, 28 Oct 2005 00:58:44 GMT (envelope-from grehan) Message-Id: <200510280058.j9S0wiGw053479@repoman.freebsd.org> From: Peter Grehan Date: Fri, 28 Oct 2005 00:58: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/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: Fri, 28 Oct 2005 00:58:44 -0000 grehan 2005-10-28 00:58:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mii brgphy.c Log: MFC r1.36 > The BCM5401 dspcode load on media changes also applies > to the 100/1000 BCM5400 phy. This fixes the problem with > the GEM port not syncing up on Sawtooth G4's. > > Obtained from: NetBSD > Reported by: Ben Rosengart Approved by: re (scottl) Revision Changes Path 1.34.2.1 +2 -0 src/sys/dev/mii/brgphy.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 01:02:38 2005 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 C304616A41F; Fri, 28 Oct 2005 01:02:38 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 807C943D45; Fri, 28 Oct 2005 01:02:38 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S12cwq053658; Fri, 28 Oct 2005 01:02:38 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S12ciS053657; Fri, 28 Oct 2005 01:02:38 GMT (envelope-from ups) Message-Id: <200510280102.j9S12ciS053657@repoman.freebsd.org> From: Stephan Uphoff Date: Fri, 28 Oct 2005 01:02: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/sys/kern vfs_cluster.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, 28 Oct 2005 01:02:39 -0000 ups 2005-10-28 01:02:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_cluster.c Log: MFC vfs_cluster.c Revision 1.168 Only set B_RAM (Read ahead mark) on an incore buffers if we can lock it. This fixes a race condition caused by the unlocked write access to the b_flags field. Approved by: re (scottl) Revision Changes Path 1.166.2.2 +8 -3 src/sys/kern/vfs_cluster.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 01:03:26 2005 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 9D05716A41F; Fri, 28 Oct 2005 01:03:26 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5922243D45; Fri, 28 Oct 2005 01:03:26 +0000 (GMT) (envelope-from ups@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S13Q3o053704; Fri, 28 Oct 2005 01:03:26 GMT (envelope-from ups@repoman.freebsd.org) Received: (from ups@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S13Qt8053703; Fri, 28 Oct 2005 01:03:26 GMT (envelope-from ups) Message-Id: <200510280103.j9S13Qt8053703@repoman.freebsd.org> From: Stephan Uphoff Date: Fri, 28 Oct 2005 01:03:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/kern vfs_cluster.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, 28 Oct 2005 01:03:26 -0000 ups 2005-10-28 01:03:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern vfs_cluster.c Log: MFC vfs_cluster.c Revision 1.168 Only set B_RAM (Read ahead mark) on an incore buffers if we can lock it. This fixes a race condition caused by the unlocked write access to the b_flags field. Approved by: re (scottl) Revision Changes Path 1.166.2.1.2.1 +8 -3 src/sys/kern/vfs_cluster.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 01:07:54 2005 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 9E94F16A41F; Fri, 28 Oct 2005 01:07:54 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCBE43D45; Fri, 28 Oct 2005 01:07:54 +0000 (GMT) (envelope-from grehan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S17srL053893; Fri, 28 Oct 2005 01:07:54 GMT (envelope-from grehan@repoman.freebsd.org) Received: (from grehan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S17s4v053892; Fri, 28 Oct 2005 01:07:54 GMT (envelope-from grehan) Message-Id: <200510280107.j9S17s4v053892@repoman.freebsd.org> From: Peter Grehan Date: Fri, 28 Oct 2005 01:07:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 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: Fri, 28 Oct 2005 01:07:54 -0000 grehan 2005-10-28 01:07:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/mii brgphy.c Log: MF RELENG_6 r1.34.2.1 > The BCM5401 dspcode load on media changes also applies > to the 100/1000 BCM5400 phy. This fixes the problem with > the GEM port not syncing up on Sawtooth G4's. > > Obtained from: NetBSD > Reported by: Ben Rosengart Approved by: re (scottl) Revision Changes Path 1.34.4.1 +2 -0 src/sys/dev/mii/brgphy.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 02:17:41 2005 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 EEFE316A41F; Fri, 28 Oct 2005 02:17:41 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC4DC43D45; Fri, 28 Oct 2005 02:17:41 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2Hfn5056813; Fri, 28 Oct 2005 02:17:41 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2HfPn056812; Fri, 28 Oct 2005 02:17:41 GMT (envelope-from wpaul) Message-Id: <200510280217.j9S2HfPn056812@repoman.freebsd.org> From: Bill Paul Date: Fri, 28 Oct 2005 02:17: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/sys/pci if_wb.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, 28 Oct 2005 02:17:42 -0000 wpaul 2005-10-28 02:17:41 UTC FreeBSD src repository Modified files: sys/pci if_wb.c Log: Remove forgotten, no longer needed WB_UNLOCK() from the end wb_ioctl(). With this change, the driver tests good (at least on i386): wb0: port 0xb800-0xb87f mem 0xe6800000-0xe680007f irq 12 at device 10.0 on pci0 miibus1: on wb0 amphy0: on miibus1 amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto wb0: Ethernet address: 00:00:e8:18:2a:02 wb0: link state changed to DOWN wb0: link state changed to UP Revision Changes Path 1.88 +0 -2 src/sys/pci/if_wb.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 02:58:51 2005 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 BB99A16A41F; Fri, 28 Oct 2005 02:58:51 +0000 (GMT) (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 78A0543D48; Fri, 28 Oct 2005 02:58:51 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2wp36058705; Fri, 28 Oct 2005 02:58:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2wpmL058704; Fri, 28 Oct 2005 02:58:51 GMT (envelope-from delphij) Message-Id: <200510280258.j9S2wpmL058704@repoman.freebsd.org> From: Xin LI Date: Fri, 28 Oct 2005 02:58:51 +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 UPDATING 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, 28 Oct 2005 02:58:51 -0000 delphij 2005-10-28 02:58:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . UPDATING Log: Some changes to reflect 6.0-STABLE/RELEASE: - Mention that this is -STABLE - Mention that only 5.3+ is supported for source upgrade - When just building a kernel we assume that the user got a system that is fresh enough - The in-place update is supported for 5.x-STABLE and 6.x-STABLE - Since we don't support systems that is prior to 5.3, don't mention about mergemaster three years before. - Since source upgrade from 4.x is no longer supported, we are supposed that COMPAT_FREEBSD5X is better suited for the source upgrade - At the end, call this a -STABLE Approved by: re (scottl) Revision Changes Path 1.416.2.5 +11 -11 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Oct 28 02:59:52 2005 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 3005816A424; Fri, 28 Oct 2005 02:59:52 +0000 (GMT) (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 DF2D243D48; Fri, 28 Oct 2005 02:59:51 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S2xpot058815; Fri, 28 Oct 2005 02:59:51 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S2xp1T058814; Fri, 28 Oct 2005 02:59:51 GMT (envelope-from delphij) Message-Id: <200510280259.j9S2xp1T058814@repoman.freebsd.org> From: Xin LI Date: Fri, 28 Oct 2005 02:59:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src UPDATING 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, 28 Oct 2005 02:59:52 -0000 delphij 2005-10-28 02:59:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) . UPDATING Log: MFRELENG_6 1.416.2.4: Some changes to reflect 6.0-STABLE/RELEASE. Approved by: re (scottl) Revision Changes Path 1.416.2.3.2.3 +11 -11 src/UPDATING From owner-cvs-src@FreeBSD.ORG Fri Oct 28 05:29:45 2005 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 4295C16A41F; Fri, 28 Oct 2005 05:29:45 +0000 (GMT) (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 F2FE543D46; Fri, 28 Oct 2005 05:29:44 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5TiqO073822; Fri, 28 Oct 2005 05:29:44 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5Ti2o073821; Fri, 28 Oct 2005 05:29:44 GMT (envelope-from imp) Message-Id: <200510280529.j9S5Ti2o073821@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:29: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/sys/dev/cardbus cardbusvar.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, 28 Oct 2005 05:29:45 -0000 imp 2005-10-28 05:29:41 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbusvar.h Log: Use PCIR_BARS rather than CARDBUS_BASE0_REG Style nit. Revision Changes Path 1.12 +3 -2 src/sys/dev/cardbus/cardbusvar.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 05:30:47 2005 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 9601B16A41F; Fri, 28 Oct 2005 05:30:47 +0000 (GMT) (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 50CE343D48; Fri, 28 Oct 2005 05:30:47 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5Ulri073959; Fri, 28 Oct 2005 05:30:47 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5Ullc073958; Fri, 28 Oct 2005 05:30:47 GMT (envelope-from imp) Message-Id: <200510280530.j9S5Ullc073958@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:30: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/dev/cardbus cardbus_cis.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, 28 Oct 2005 05:30:47 -0000 imp 2005-10-28 05:30:47 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus_cis.c Log: Simplify code a little, prefer PCI?_FOO registers where possible. Revision Changes Path 1.51 +9 -15 src/sys/dev/cardbus/cardbus_cis.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 05:31:12 2005 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 6608C16A41F; Fri, 28 Oct 2005 05:31:12 +0000 (GMT) (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 0FA5743D45; Fri, 28 Oct 2005 05:31:12 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5VBev074016; Fri, 28 Oct 2005 05:31:11 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5VBC0074015; Fri, 28 Oct 2005 05:31:11 GMT (envelope-from imp) Message-Id: <200510280531.j9S5VBC0074015@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:31: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/dev/cardbus cardbusreg.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, 28 Oct 2005 05:31:12 -0000 imp 2005-10-28 05:31:11 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbusreg.h Log: Remove now redundant defines. Revision Changes Path 1.9 +0 -6 src/sys/dev/cardbus/cardbusreg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 05:55:52 2005 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 C363216A41F; Fri, 28 Oct 2005 05:55:52 +0000 (GMT) (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 811C043D45; Fri, 28 Oct 2005 05:55:52 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5tqNV075096; Fri, 28 Oct 2005 05:55:52 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5tqrX075095; Fri, 28 Oct 2005 05:55:52 GMT (envelope-from imp) Message-Id: <200510280555.j9S5tqrX075095@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:55: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/dev/cardbus cardbus_cis.c cardbusreg.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, 28 Oct 2005 05:55:52 -0000 imp 2005-10-28 05:55:52 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus_cis.c cardbusreg.h Log: Eliminate even more duplication, and move some definitions into pcireg.h Revision Changes Path 1.52 +19 -19 src/sys/dev/cardbus/cardbus_cis.c 1.10 +0 -26 src/sys/dev/cardbus/cardbusreg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 05:56:51 2005 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 411B816A41F; Fri, 28 Oct 2005 05:56:51 +0000 (GMT) (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 F3A8943D46; Fri, 28 Oct 2005 05:56:50 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5uola075160; Fri, 28 Oct 2005 05:56:50 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5uoF9075159; Fri, 28 Oct 2005 05:56:50 GMT (envelope-from imp) Message-Id: <200510280556.j9S5uoF9075159@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05: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/pci pci.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, 28 Oct 2005 05:56:51 -0000 imp 2005-10-28 05:56:50 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Minor style(9) nitage. Revision Changes Path 1.301 +2 -4 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 05:57:10 2005 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 C7B1C16A41F; Fri, 28 Oct 2005 05:57:10 +0000 (GMT) (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 6DACC43D45; Fri, 28 Oct 2005 05:57:10 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S5vAp6075199; Fri, 28 Oct 2005 05:57:10 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S5vABG075198; Fri, 28 Oct 2005 05:57:10 GMT (envelope-from imp) Message-Id: <200510280557.j9S5vABG075198@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 05:57: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/pci pcireg.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, 28 Oct 2005 05:57:11 -0000 imp 2005-10-28 05:57:10 UTC FreeBSD src repository Modified files: sys/dev/pci pcireg.h Log: Some cardbus CIS definitions moved here since they are PCI registers. Revision Changes Path 1.46 +12 -1 src/sys/dev/pci/pcireg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:02:51 2005 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 E70FB16A41F; Fri, 28 Oct 2005 06:02:51 +0000 (GMT) (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 A578D43D46; Fri, 28 Oct 2005 06:02:51 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S62pcY075592; Fri, 28 Oct 2005 06:02:51 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S62pek075591; Fri, 28 Oct 2005 06:02:51 GMT (envelope-from imp) Message-Id: <200510280602.j9S62pek075591@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 06:02: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/dev/pci pcireg.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, 28 Oct 2005 06:02:52 -0000 imp 2005-10-28 06:02:51 UTC FreeBSD src repository Modified files: sys/dev/pci pcireg.h Log: Add PCIM_BIOS_ADDR_MASK too Revision Changes Path 1.47 +1 -0 src/sys/dev/pci/pcireg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:03:53 2005 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 E17F916A41F; Fri, 28 Oct 2005 06:03:53 +0000 (GMT) (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 9C3EB43D46; Fri, 28 Oct 2005 06:03:53 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S63rba075655; Fri, 28 Oct 2005 06:03:53 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S63rcw075654; Fri, 28 Oct 2005 06:03:53 GMT (envelope-from imp) Message-Id: <200510280603.j9S63rcw075654@repoman.freebsd.org> From: Warner Losh Date: Fri, 28 Oct 2005 06:03: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/sys/dev/cardbus cardbus.c cardbusreg.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, 28 Oct 2005 06:03:54 -0000 imp 2005-10-28 06:03:53 UTC FreeBSD src repository Modified files: sys/dev/cardbus cardbus.c cardbusreg.h Log: Cardbus has only 1 slot, so simplify a little. Revision Changes Path 1.54 +37 -39 src/sys/dev/cardbus/cardbus.c 1.11 +0 -5 src/sys/dev/cardbus/cardbusreg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:24:09 2005 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 8CC1516A41F; Fri, 28 Oct 2005 06:24:09 +0000 (GMT) (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 4B0DF43D4C; Fri, 28 Oct 2005 06:24:09 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6O9sk077001; Fri, 28 Oct 2005 06:24:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6O9po077000; Fri, 28 Oct 2005 06:24:09 GMT (envelope-from marcel) Message-Id: <200510280624.j9S6O9po077000@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 28 Oct 2005 06:24: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/uart uart_bus_ebus.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, 28 Oct 2005 06:24:09 -0000 marcel 2005-10-28 06:24:09 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_ebus.c Log: Allow uart_bus_probe() to return the predefined BUS_PROBE_* constants. In this case: just return what uart_bus_probe() returns. Revision Changes Path 1.8 +1 -3 src/sys/dev/uart/uart_bus_ebus.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:27:54 2005 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 959DB16A43E; Fri, 28 Oct 2005 06:27:54 +0000 (GMT) (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 1095543D5C; Fri, 28 Oct 2005 06:27:54 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6Rr39077229; Fri, 28 Oct 2005 06:27:53 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6Rr7T077228; Fri, 28 Oct 2005 06:27:53 GMT (envelope-from marcel) Message-Id: <200510280627.j9S6Rr7T077228@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 28 Oct 2005 06:27: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/sys/dev/uart uart_bus_pccard.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, 28 Oct 2005 06:27:55 -0000 marcel 2005-10-28 06:27:53 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_pccard.c Log: o Style(9) nits o Fix typo in comment o s/-100/BUS_PROBE_GENERIC/ o s/err/error/ for consistency o Remove non-applicable comment o Allow uart_bus_probe() to return the predefined BUS_PROBE_* contants. In this case: explicitly test for error > 0. Revision Changes Path 1.11 +9 -10 src/sys/dev/uart/uart_bus_pccard.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:30:39 2005 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 8C55A16A41F; Fri, 28 Oct 2005 06:30:39 +0000 (GMT) (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 48EEF43D45; Fri, 28 Oct 2005 06:30:39 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6Udi6077522; Fri, 28 Oct 2005 06:30:39 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6UdZd077521; Fri, 28 Oct 2005 06:30:39 GMT (envelope-from marcel) Message-Id: <200510280630.j9S6UdZd077521@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 28 Oct 2005 06:30: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/dev/uart uart_core.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, 28 Oct 2005 06:30:39 -0000 marcel 2005-10-28 06:30:39 UTC FreeBSD src repository Modified files: sys/dev/uart uart_core.c Log: In uart_bus_probe() return BUS_PROBE_DEFAULT when the probe is successful. Revision Changes Path 1.14 +1 -1 src/sys/dev/uart/uart_core.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:49:19 2005 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 B033D16A41F; Fri, 28 Oct 2005 06:49:19 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E14D43D45; Fri, 28 Oct 2005 06:49:19 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6nJdX078775; Fri, 28 Oct 2005 06:49:19 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6nJuk078774; Fri, 28 Oct 2005 06:49:19 GMT (envelope-from ade) Message-Id: <200510280649.j9S6nJuk078774@repoman.freebsd.org> From: Ade Lovett Date: Fri, 28 Oct 2005 06:49:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c 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, 28 Oct 2005 06:49:19 -0000 ade 2005-10-28 06:49:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: MFC: Specifically panic() in the case where pmap_insert_entry() fails to get a new pv under high system load where the available pv entries have been exhausted before the pagedaemon has a chance to wake up to reclaim some. Approved by: re (scottl) Revision Changes Path 1.178.4.1 +2 -0 src/sys/alpha/alpha/pmap.c 1.516.4.1 +2 -0 src/sys/amd64/amd64/pmap.c 1.523.2.1.2.1 +2 -0 src/sys/i386/i386/pmap.c 1.160.2.1.2.1 +2 -0 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:49:50 2005 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 30D6016A41F; Fri, 28 Oct 2005 06:49:50 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E577143D48; Fri, 28 Oct 2005 06:49:49 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6nnEF078880; Fri, 28 Oct 2005 06:49:49 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6nn7x078879; Fri, 28 Oct 2005 06:49:49 GMT (envelope-from ade) Message-Id: <200510280649.j9S6nn7x078879@repoman.freebsd.org> From: Ade Lovett Date: Fri, 28 Oct 2005 06:49: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/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 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: Fri, 28 Oct 2005 06:49:50 -0000 ade 2005-10-28 06:49:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: MFC: Specifically panic() in the case where pmap_insert_entry() fails to get a new pv under high system load where the available pv entries have been exhausted before the pagedaemon has a chance to wake up to reclaim some. Approved by: re (scottl) Revision Changes Path 1.178.2.1 +2 -0 src/sys/alpha/alpha/pmap.c 1.516.2.1 +2 -0 src/sys/amd64/amd64/pmap.c 1.523.2.2 +2 -0 src/sys/i386/i386/pmap.c 1.160.2.2 +2 -0 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 06:50:38 2005 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 2948C16A41F; Fri, 28 Oct 2005 06:50:38 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47A6B43D4C; Fri, 28 Oct 2005 06:50:37 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9S6ob3L079081; Fri, 28 Oct 2005 06:50:37 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9S6obTc079080; Fri, 28 Oct 2005 06:50:37 GMT (envelope-from ade) Message-Id: <200510280650.j9S6obTc079080@repoman.freebsd.org> From: Ade Lovett Date: Fri, 28 Oct 2005 06:50:37 +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/sys/alpha/alpha pmap.c src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/ia64/ia64 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: Fri, 28 Oct 2005 06:50:38 -0000 ade 2005-10-28 06:50:37 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/alpha/alpha pmap.c sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c Log: MFC: Specifically panic() in the case where pmap_insert_entry() fails to get a new pv under high system load where the available pv entries have been exhausted before the pagedaemon has a chance to wake up to reclaim some. Revision Changes Path 1.166.2.3 +2 -0 src/sys/alpha/alpha/pmap.c 1.491.2.8 +2 -0 src/sys/amd64/amd64/pmap.c 1.494.2.11 +2 -0 src/sys/i386/i386/pmap.c 1.146.2.3 +2 -0 src/sys/ia64/ia64/pmap.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 09:28:01 2005 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 D85BC16A41F; Fri, 28 Oct 2005 09:28:01 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id B51F743D46; Fri, 28 Oct 2005 09:27:57 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.3/8.13.3) with ESMTP id j9S9RqkX076446; Fri, 28 Oct 2005 13:27:52 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.3/8.13.3/Submit) id j9S9Rqbb076445; Fri, 28 Oct 2005 13:27:52 +0400 (MSD) (envelope-from yar) Date: Fri, 28 Oct 2005 13:27:51 +0400 From: Yar Tikhiy To: Tom Rhodes Message-ID: <20051028092751.GA76409@comp.chem.msu.su> References: <200510260557.j9Q5vZ7J076711@repoman.freebsd.org> <20051026093536.GF41520@cell.sick.ru> <20051026105820.X32255@fledge.watson.org> <200510261416.09346.max@love2party.net> <20051027192000.57e83aff.trhodes@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051027192000.57e83aff.trhodes@FreeBSD.org> User-Agent: Mutt/1.5.9i Cc: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, glebius@FreeBSD.org, rwatson@FreeBSD.org, Max Laier Subject: Re: cvs commit: src/sys/netinet ip_carp.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, 28 Oct 2005 09:28:02 -0000 On Thu, Oct 27, 2005 at 07:20:00PM -0400, Tom Rhodes wrote: > On Wed, 26 Oct 2005 14:15:47 +0200 > Max Laier wrote: > > > On Wednesday 26 October 2005 11:58, Robert Watson wrote: > > > On Wed, 26 Oct 2005, Gleb Smirnoff wrote: > > > > On Wed, Oct 26, 2005 at 10:15:09AM +0100, Robert Watson wrote: > > > > R> I think we may actually be in need of either a new flag, > > > > R> IFF_OKSODONTTREATTHISQUITELIKEANINTERFACE, or maybe a more reliable > > > > way R> for protocols to ask if an interface is a loopback interface or > > > > not. > > > > > > > > I'd prefer to rewrite those subsystems that use interface layer but > > > > aren't actually interfaces. I have plans to do this for CARP. > > > > > > At least in the case of if_disc, this won't help. I'm not quite sure why > > > if_disc is IFF_LOOPBACK. > > > > Sad answer seems to be: copy and paste. IFF_LOOPBACK is part of 1.1 which > > also contains the following comment: > > > > /* > > * Discard interface driver for protocol testing and timing. > > * (Based on the loopback.) > > */ > > > > So it might be a good idea to get rid of it and work from there. > > IIRC, someone told me or I read somewhere that if_disc is > somewhat based on lo(4). There may be more sections where > code is similar - rotted - over time. My browsing through if_disc.c revealed none of them except for already noticed IFF_LOOPBACK, but I'll take another look when going to commit the result of erasing IFF_LOOPBACK. -- Yar From owner-cvs-src@FreeBSD.ORG Fri Oct 28 10:45:20 2005 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 7005616A420; Fri, 28 Oct 2005 10:45:20 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3468A43D4C; Fri, 28 Oct 2005 10:45:20 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SAjJlu096160; Fri, 28 Oct 2005 10:45:19 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SAjJmR096150; Fri, 28 Oct 2005 10:45:19 GMT (envelope-from stefanf) Message-Id: <200510281045.j9SAjJmR096150@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 10:45:19 +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/sh memalloc.c memalloc.h miscbltin.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, 28 Oct 2005 10:45:20 -0000 stefanf 2005-10-28 10:45:19 UTC FreeBSD src repository Modified files: bin/sh memalloc.c memalloc.h miscbltin.c Log: Protect malloc, realloc and free calls with INT{ON,OFF} directly in chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the signal handler using longjmp which is obviously a bad idea during malloc calls. Note: I think there is still a small race here because volatile sig_atomic_t only guarantees atomic reads and writes while we're doing increments and decrements. Protect a setmode call with INT{ON,OFF} as it calls malloc internally. PR: 45478 Patch from: Nate Eldredge Revision Changes Path 1.27 +16 -2 src/bin/sh/memalloc.c 1.10 +1 -2 src/bin/sh/memalloc.h 1.34 +2 -0 src/bin/sh/miscbltin.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 13:36:59 2005 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 AC88F16A41F; Fri, 28 Oct 2005 13:36:59 +0000 (GMT) (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 7E49743D45; Fri, 28 Oct 2005 13:36:59 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SDaxkM011054; Fri, 28 Oct 2005 13:36:59 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SDawAu011053; Fri, 28 Oct 2005 13:36:59 GMT (envelope-from bde) Message-Id: <200510281336.j9SDawAu011053@repoman.freebsd.org> From: Bruce Evans Date: Fri, 28 Oct 2005 13:36: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/lib/msun/src k_cosf.c k_sinf.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, 28 Oct 2005 13:36:59 -0000 bde 2005-10-28 13:36:58 UTC FreeBSD src repository Modified files: lib/msun/src k_cosf.c k_sinf.c Log: Use fairly optimal minimax polynomials for __kernel_cosf() and __kernel_sinf(). The old ones were the double-precision polynomials with coefficients truncated to float. Truncation is not a good way to convert minimax polynomials to lower precision. Optimize for efficiency and use the lowest-degree polynomials that give a relative error of less than 1 ulp -- degree 8 instead of 14 for cosf and degree 9 instead of 13 for sinf. For sinf, the degree 8 polynomial happens to be 6 times more accurate than the old degree 14 one, but this only gives a tiny amount of extra accuracy in results -- we just need to use a a degree high enough to give a polynomial whose relative accuracy in infinite precision (but with float coefficients) is a small fraction of a float ulp (fdlibm generally uses 1/32 for the small fraction, and the fraction for our degree 8 polynomial is about 1/600). The maximum relative errors for cosf() and sinf() are now 0.7719 ulps and 0.7969 ulps, respectively. Revision Changes Path 1.11 +7 -8 src/lib/msun/src/k_cosf.c 1.9 +8 -8 src/lib/msun/src/k_sinf.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 14:02:44 2005 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 0F46E16A41F; Fri, 28 Oct 2005 14:02:44 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C904243D46; Fri, 28 Oct 2005 14:02:43 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SE2hmA012859; Fri, 28 Oct 2005 14:02:43 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SE2hvD012857; Fri, 28 Oct 2005 14:02:43 GMT (envelope-from stefanf) Message-Id: <200510281402.j9SE2hvD012857@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 14:02: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/tools/regression/bin/sh regress.sh src/tools/regression/bin/sh/builtins command1.0 command2.0 command3.0 command3.0.stdout command4.127 command5.0 command5.0.stdout command6.127 command6.127.stdout 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, 28 Oct 2005 14:02:44 -0000 stefanf 2005-10-28 14:02:43 UTC FreeBSD src repository Modified files: tools/regression/bin/sh regress.sh Added files: tools/regression/bin/sh/builtins command1.0 command2.0 command3.0 command3.0.stdout command4.127 command5.0 command5.0.stdout command6.127 command6.127.stdout Log: Add test cases for the command built-in, including its -v and -V options which I'll commit real soon. Count the number of found test cases instead of hard-coding them. Allow an arbitrary exit status. Revision Changes Path 1.1 +5 -0 src/tools/regression/bin/sh/builtins/command1.0 (new) 1.1 +3 -0 src/tools/regression/bin/sh/builtins/command2.0 (new) 1.1 +13 -0 src/tools/regression/bin/sh/builtins/command3.0 (new) 1.1 +7 -0 src/tools/regression/bin/sh/builtins/command3.0.stdout (new) 1.1 +2 -0 src/tools/regression/bin/sh/builtins/command4.127 (new) 1.1 +14 -0 src/tools/regression/bin/sh/builtins/command5.0 (new) 1.1 +8 -0 src/tools/regression/bin/sh/builtins/command5.0.stdout (new) 1.1 +2 -0 src/tools/regression/bin/sh/builtins/command6.127 (new) 1.1 +1 -0 src/tools/regression/bin/sh/builtins/command6.127.stdout (new) 1.3 +3 -3 src/tools/regression/bin/sh/regress.sh From owner-cvs-src@FreeBSD.ORG Fri Oct 28 14:15:54 2005 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 ED02A16A445; Fri, 28 Oct 2005 14:15:54 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8880F43D48; Fri, 28 Oct 2005 14:15:54 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEFs5h015191; Fri, 28 Oct 2005 14:15:54 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEFskB015190; Fri, 28 Oct 2005 14:15:54 GMT (envelope-from ru) Message-Id: <200510281415.j9SEFskB015190@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 14:15: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/man4 ng_ksocket.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: Fri, 28 Oct 2005 14:15:55 -0000 ru 2005-10-28 14:15:54 UTC FreeBSD src repository Modified files: share/man/man4 ng_ksocket.4 Log: Belatedly document the NGM_KSOCKET_ACCEPT ("accept") control message. Revision Changes Path 1.21 +16 -2 src/share/man/man4/ng_ksocket.4 From owner-cvs-src@FreeBSD.ORG Fri Oct 28 14:38:56 2005 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 1F14E16A464; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AE6643D6A; Fri, 28 Oct 2005 14:38:55 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEctrS016317; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEctUZ016316; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz) Message-Id: <200510281438.j9SEctUZ016316@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 28 Oct 2005 14:38: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/netinet6 nd6.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, 28 Oct 2005 14:38:56 -0000 suz 2005-10-28 14:38:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet6 nd6.c Log: MFC Rev 1.60 perform NUD on an IPv6-aware point-to-point interface Approved by: re(scottl) Revision Changes Path 1.48.2.4 +2 -0 src/sys/netinet6/nd6.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 14:38:56 2005 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 4946A16A430; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE17743D6D; Fri, 28 Oct 2005 14:38:55 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEctA8016334; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEct5J016333; Fri, 28 Oct 2005 14:38:55 GMT (envelope-from suz) Message-Id: <200510281438.j9SEct5J016333@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 28 Oct 2005 14:38:55 +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/sys/netinet6 nd6.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, 28 Oct 2005 14:38:56 -0000 suz 2005-10-28 14:38:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/netinet6 nd6.c Log: MFC Rev 1.60 perform NUD on an IPv6-aware point-to-point interface Approved by: re(scottl) Revision Changes Path 1.43.2.8 +2 -0 src/sys/netinet6/nd6.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 14:38:56 2005 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 9742316A426; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 356DD43D6A; Fri, 28 Oct 2005 14:38:56 +0000 (GMT) (envelope-from suz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEcuTm016351; Fri, 28 Oct 2005 14:38:56 GMT (envelope-from suz@repoman.freebsd.org) Received: (from suz@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEcuwt016350; Fri, 28 Oct 2005 14:38:56 GMT (envelope-from suz) Message-Id: <200510281438.j9SEcuwt016350@repoman.freebsd.org> From: SUZUKI Shinsuke Date: Fri, 28 Oct 2005 14:38:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/netinet6 nd6.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, 28 Oct 2005 14:38:56 -0000 suz 2005-10-28 14:38:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/netinet6 nd6.c Log: MFC Rev 1.60 perform NUD on an IPv6-aware point-to-point interface Approved by: re(scottl) Revision Changes Path 1.48.2.3.2.1 +2 -0 src/sys/netinet6/nd6.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 14:41:36 2005 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 CD81716A420; Fri, 28 Oct 2005 14:41:36 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E7E643D5D; Fri, 28 Oct 2005 14:41:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SEfSRG016509; Fri, 28 Oct 2005 14:41:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SEfSlt016508; Fri, 28 Oct 2005 14:41:28 GMT (envelope-from ru) Message-Id: <200510281441.j9SEfSlt016508@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 14:41:28 +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 ng_bridge.h ng_ksocket.h ng_parse.h ng_pppoe.h ng_vlan.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, 28 Oct 2005 14:41:37 -0000 ru 2005-10-28 14:41:28 UTC FreeBSD src repository Modified files: sys/netgraph ng_bridge.h ng_ksocket.h ng_parse.h ng_pppoe.h ng_vlan.h Log: Use variable-sized arrays where appropriate. Revision Changes Path 1.4 +1 -1 src/sys/netgraph/ng_bridge.h 1.13 +1 -1 src/sys/netgraph/ng_ksocket.h 1.13 +1 -1 src/sys/netgraph/ng_parse.h 1.22 +3 -3 src/sys/netgraph/ng_pppoe.h 1.2 +1 -1 src/sys/netgraph/ng_vlan.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:30:52 2005 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 254D616A41F; Fri, 28 Oct 2005 15:30:52 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D606743D48; Fri, 28 Oct 2005 15:30:51 +0000 (GMT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFUplI018857; Fri, 28 Oct 2005 15:30:51 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFUpAu018856; Fri, 28 Oct 2005 15:30:51 GMT (envelope-from nyan) Message-Id: <200510281530.j9SFUpAu018856@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 28 Oct 2005 15:30: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/pc98/conf DEFAULTS 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: Fri, 28 Oct 2005 15:30:52 -0000 nyan 2005-10-28 15:30:51 UTC FreeBSD src repository Modified files: sys/pc98/conf GENERIC Added files: sys/pc98/conf DEFAULTS Log: Move the isa, npx, mem and io devices and the PC98 option from GENERIC into DEFAULTS. Revision Changes Path 1.1 +18 -0 src/sys/pc98/conf/DEFAULTS (new) 1.273 +1 -7 src/sys/pc98/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:45:34 2005 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 E3F8D16A41F; Fri, 28 Oct 2005 15:45:34 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4943743D72; Fri, 28 Oct 2005 15:45:26 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:13 -0400 From: John Baldwin To: Bill Paul Date: Fri, 28 Oct 2005 10:30:20 -0400 User-Agent: KMail/1.8.2 References: <200510280217.j9S2HfPn056812@repoman.freebsd.org> In-Reply-To: <200510280217.j9S2HfPn056812@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281030.22004.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/pci if_wb.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, 28 Oct 2005 15:45:35 -0000 On Thursday 27 October 2005 10:17 pm, Bill Paul wrote: > wpaul 2005-10-28 02:17:41 UTC > > FreeBSD src repository > > Modified files: > sys/pci if_wb.c > Log: > Remove forgotten, no longer needed WB_UNLOCK() from the end wb_ioctl(). > With this change, the driver tests good (at least on i386): > > wb0: port 0xb800-0xb87f mem > 0xe6800000-0xe680007f irq 12 at device 10.0 on pci0 miibus1: on > wb0 > amphy0: on miibus1 > amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > wb0: Ethernet address: 00:00:e8:18:2a:02 > wb0: link state changed to DOWN > wb0: link state changed to UP Thanks for testing this! Sorry about the extra unlock. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:45:36 2005 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 27CC316A420; Fri, 28 Oct 2005 15:45:36 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1A9A43D78; Fri, 28 Oct 2005 15:45:26 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:13 -0400 From: John Baldwin To: Stefan Farfeleder Date: Fri, 28 Oct 2005 10:33:46 -0400 User-Agent: KMail/1.8.2 References: <200510281045.j9SAjJmR096150@repoman.freebsd.org> In-Reply-To: <200510281045.j9SAjJmR096150@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281033.48001.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/bin/sh memalloc.c memalloc.h miscbltin.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, 28 Oct 2005 15:45:36 -0000 On Friday 28 October 2005 06:45 am, Stefan Farfeleder wrote: > stefanf 2005-10-28 10:45:19 UTC > > FreeBSD src repository > > Modified files: > bin/sh memalloc.c memalloc.h miscbltin.c > Log: > Protect malloc, realloc and free calls with INT{ON,OFF} directly in > chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the > signal handler using longjmp which is obviously a bad idea during malloc > calls. > > Note: I think there is still a small race here because volatile > sig_atomic_t only guarantees atomic reads and writes while we're doing > increments and decrements. > > Protect a setmode call with INT{ON,OFF} as it calls malloc internally. > > PR: 45478 > Patch from: Nate Eldredge If you are just doing a simple reference count you can use an int and use either the refcount API from sys/refcount.h or the atomic_foo_int() operations directly from machine/atomic.h. Those should all work fine in userland. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:45:55 2005 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 116DC16A41F; Fri, 28 Oct 2005 15:45:55 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0B1743D5E; Fri, 28 Oct 2005 15:45:44 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:13 -0400 From: John Baldwin To: Peter Wemm Date: Fri, 28 Oct 2005 10:41:42 -0400 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <200510261320.46985.jhb@freebsd.org> <200510261648.27126.peter@wemm.org> In-Reply-To: <200510261648.27126.peter@wemm.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281041.44147.jhb@freebsd.org> Cc: Mark Linimon , src-committers@freebsd.org, cvs-all@freebsd.org, cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 28 Oct 2005 15:45:55 -0000 On Wednesday 26 October 2005 07:48 pm, Peter Wemm wrote: > On Wednesday 26 October 2005 10:20 am, John Baldwin wrote: > > On Tuesday 25 October 2005 06:45 pm, Mark Linimon wrote: > > > On Tue, Oct 25, 2005 at 07:48:48PM +0000, John Baldwin wrote: > > > > Reorganize the interrupt handling code a bit to make a few > > > > things cleaner and increase flexibility to allow various > > > > different approaches to be tried in the future. > > > > > > Wow. Having (in a previous existance) worked on real-time OS > > > interrupt handlers I can likely guess how much work went into this. > > > Nice. > > > > Actually, this diff wasn't a huge deal, it was mostly just a > > refactoring of what was already there. > > Of course the real challenge is to make things like the puc device do > the right thing automatically instead of needing 'options > PUC_FASTINTR'. You mean like sio(4) tried to? The problem is that with the previosu code if sio(4) went first, it would register INTR_FAST and some later PCI device wouldn't be able to register its interrupt. There's not an easy solution to that problem if you want to keep the semantics that INTR_FAST implies INTR_EXCL. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:46:01 2005 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 431AD16A458; Fri, 28 Oct 2005 15:46:01 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A1BB43D78; Fri, 28 Oct 2005 15:45:52 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:14 -0400 From: John Baldwin To: "Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?=" Date: Fri, 28 Oct 2005 10:47:55 -0400 User-Agent: KMail/1.8.2 References: <200510271424.j9REOkr8091913@repoman.freebsd.org> <20051027174042.GK68470@ip.net.ua> <864q723dqt.fsf@xps.des.no> In-Reply-To: <864q723dqt.fsf@xps.des.no> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200510281047.57496.jhb@freebsd.org> Cc: cvs-src@freebsd.org, "Bjoern A. Zeeb" , Ruslan Ermilov , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf kern.post.mk kmod.mk 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, 28 Oct 2005 15:46:02 -0000 On Thursday 27 October 2005 04:29 pm, Dag-Erling Sm=F8rgrav wrote: > Ruslan Ermilov writes: > > On Thu, Oct 27, 2005 at 05:15:28PM +0000, Bjoern A. Zeeb wrote: > > > On Thu, 27 Oct 2005, Ruslan Ermilov wrote: > > > > Log: > > > > Installing debug modules was a bad idea -- I bogusly assumed that > > > > our kernel linker will only load PT_LOAD segments, apparently not. > > > > Instead, produce .dbg objects from .debug objects, and install > > > > them together with non-debug objects, as described in objcopy(1). > > > > > > is that because of this change? > > > > Yes. I sent a patch for kldxref(8) that fixes this for review to > > amd64@. These messages are harmless otherwise. > > Wouldn't it be cleaner (and potentially simpler) to fix this by making > the kernel linker skip non-PT_LOAD sections? > > (I just peeked at sys/kern/link_elf.c and it looks to me like it > *already* DTRT, so what exactly is the problem?) amd64 uses link_elf_obj.c which loads raw .o files, not .so files. =2D-=20 John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =3D http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:46:04 2005 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 BF4F316A4CD; Fri, 28 Oct 2005 15:46:03 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8932743D79; Fri, 28 Oct 2005 15:45:55 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 12:02:14 -0400 From: John Baldwin To: Yar Tikhiy Date: Fri, 28 Oct 2005 10:45:55 -0400 User-Agent: KMail/1.8.2 References: <200510231406.j9NE6r8L008373@repoman.freebsd.org> <20051027082115.GA749@garage.freebsd.pl> <20051027091920.GA11982@comp.chem.msu.su> In-Reply-To: <20051027091920.GA11982@comp.chem.msu.su> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281045.57862.jhb@freebsd.org> Cc: freebsd-rc@freebsd.org, cvs-src@freebsd.org, src-committers@freebsd.org, Pawel Jakub Dawidek , cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/rc.d ike named ppp-user sshd 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, 28 Oct 2005 15:46:05 -0000 On Thursday 27 October 2005 05:19 am, Yar Tikhiy wrote: > On Thu, Oct 27, 2005 at 10:21:16AM +0200, Pawel Jakub Dawidek wrote: > > On Thu, Oct 27, 2005 at 11:14:56AM +0400, Yar Tikhiy wrote: > > +> On Thu, Oct 27, 2005 at 08:33:53AM +0200, Pawel Jakub Dawidek wrote: > > +> > On Sun, Oct 23, 2005 at 02:06:53PM +0000, Yar Tikhiy wrote: > > +> > +> yar 2005-10-23 14:06:53 UTC > > +> > +> > > +> > +> FreeBSD src repository > > +> > +> > > +> > +> Modified files: > > +> > +> etc/rc.d ike named ppp-user sshd > > +> > +> Log: > > +> > +> Don't be lazy, set the "command" variable even if > > +> > +> /etc/defaults/rc.conf will provide foo_program, too. > > +> > +> By specifying "command" we explicitly say that we're > > +> > +> going to rely on rc.subr(8) default methods, and > > +> > +> rc.subr(8) will take advantage of this soon. > > +> > +> > > +> > +> The majority of our rc.d scripts already set "command" > > +> > +> if appropriate, so fix just the non-compliant handful. > > +> > [...] > > +> > +> name="named" > > +> > +> rcvar=`set_rcvar` > > +> > +> +command="/usr/sbin/${name}" > > +> > [...] > > +> > +> name="ppp" > > +> > +> rcvar=`set_rcvar` > > +> > +> +command="/usr/sbin/ppp" > > +> > [...] > > +> > +> name="sshd" > > +> > +> rcvar=`set_rcvar` > > +> > +> +command="/usr/sbin/${name}" > > +> > > > +> > Any reason you didn't used ${name} in ppp case? > > +> > > +> I was just blinded by my being solid sure that $name was "ppp-user". > > +> Nowever, now I'm in doubt whether $name should be "ppp". The script > > +> is named ppp-user and it PROVIDEs ppp-user, hence sysadmins can > > +> rightfully assume that its rc.conf.d file is ppp-user, too. Such > > +> assumption will be broken since it is $name that is passed to > > +> load_rc_config. I think $name should be changed to "ppp-user" in > > +> CURRENT. This will introduce minor incompatibility, but also > > +> eliminate a source of further confusion. > > > > It is confusing, but maybe we should rename ppp-user to ppp? > > I'm not sure how well sh(1) will handle things like > > ppp-user_enable="YES", etc. > > Yes, this is much better than my lame proposal because so we will > have to worry about neither variable naming nor compatibility with > installations using ppp and rc.conf.d at once. We change the PROVIDE > line and fix all dependent rc.d scripts, then request the repocopy > of ppp-user to ppp, fix /etc/netstart, and finally kill the old > file. Does this plan look OK? > > P.S. Looks like it's time to move this thread to -rc, setting > Mail-Followup-To accordingly. Yeah, I was actually surprised it was called /etc/rc.d/ppp-user instead of /etc/rc.d/ppp when I went to setup pppoe at home yesterday. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:48:10 2005 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 7DA9516A41F; Fri, 28 Oct 2005 15:48:10 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB97343D48; Fri, 28 Oct 2005 15:48:09 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFm9RO021509; Fri, 28 Oct 2005 15:48:09 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFm92u021508; Fri, 28 Oct 2005 15:48:09 GMT (envelope-from scottl) Message-Id: <200510281548.j9SFm92u021508@repoman.freebsd.org> From: Scott Long Date: Fri, 28 Oct 2005 15:48:09 +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/aac aac.c aacreg.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, 28 Oct 2005 15:48:10 -0000 scottl 2005-10-28 15:48:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac.c aacreg.h Log: MFC: Fix regression with Dell PERC3/ROMB controllers Approved by: re Revision Changes Path 1.109.2.2 +41 -28 src/sys/dev/aac/aac.c 1.21.2.2 +5 -0 src/sys/dev/aac/aacreg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 15:58:20 2005 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 08B4F16A41F; Fri, 28 Oct 2005 15:58:20 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9B8C43D46; Fri, 28 Oct 2005 15:58:19 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SFwJCP022228; Fri, 28 Oct 2005 15:58:19 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SFwJPQ022227; Fri, 28 Oct 2005 15:58:19 GMT (envelope-from joerg) Message-Id: <200510281558.j9SFwJPQ022227@repoman.freebsd.org> From: Joerg Wunsch Date: Fri, 28 Oct 2005 15:58:19 +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/conf files files.i386 files.sparc64 src/sys/modules Makefile src/sys/modules/i2c/controllers/pcf Makefile src/sys/i386/isa pcf.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, 28 Oct 2005 15:58:20 -0000 joerg 2005-10-28 15:58:19 UTC FreeBSD src repository Modified files: sys/conf files files.i386 files.sparc64 sys/modules Makefile sys/modules/i2c/controllers/pcf Makefile Removed files: sys/i386/isa pcf.c Log: Finally complete some work on generalizing the PCF8584-based I2C drivers I started quite some time before. Retire the old i386-only pcf driver, and activate the new general driver that has been sitting in the tree already for quite some time. Build the i2c modules for sparc64 architectures as well (where I've been developing all this on). Revision Changes Path 1.1061 +1 -0 src/sys/conf/files 1.542 +1 -1 src/sys/conf/files.i386 1.74 +2 -0 src/sys/conf/files.sparc64 1.24 +0 -633 src/sys/i386/isa/pcf.c (dead) 1.460 +1 -0 src/sys/modules/Makefile 1.3 +10 -1 src/sys/modules/i2c/controllers/pcf/Makefile From owner-cvs-src@FreeBSD.ORG Fri Oct 28 16:02:21 2005 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 AEC1A16A41F; Fri, 28 Oct 2005 16:02:21 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (cell.sick.ru [217.72.144.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7A7243D46; Fri, 28 Oct 2005 16:02:20 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from cell.sick.ru (glebius@localhost [127.0.0.1]) by cell.sick.ru (8.13.3/8.13.3) with ESMTP id j9SG2IhG028911 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 28 Oct 2005 20:02:18 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.sick.ru (8.13.3/8.13.1/Submit) id j9SG2Itw028910; Fri, 28 Oct 2005 20:02:18 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.sick.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Fri, 28 Oct 2005 20:02:18 +0400 From: Gleb Smirnoff To: John Baldwin Message-ID: <20051028160218.GJ41520@cell.sick.ru> References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <200510261320.46985.jhb@freebsd.org> <200510261648.27126.peter@wemm.org> <200510281041.44147.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200510281041.44147.jhb@freebsd.org> User-Agent: Mutt/1.5.6i Cc: Mark Linimon , src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Peter Wemm , cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 28 Oct 2005 16:02:22 -0000 John, On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: J> > Of course the real challenge is to make things like the puc device do J> > the right thing automatically instead of needing 'options J> > PUC_FASTINTR'. J> J> You mean like sio(4) tried to? The problem is that with the previosu code if J> sio(4) went first, it would register INTR_FAST and some later PCI device J> wouldn't be able to register its interrupt. There's not an easy solution to J> that problem if you want to keep the semantics that INTR_FAST implies J> INTR_EXCL. is it possible to implement such a feature that driver requests INTR_FAST and it succeds only and only if interrupt isn't shared? For example I've got a console server with three puc devices. Since one of them share its irq with ATA, I can't trun on PUC_FASTINTR on this box. However, theoretically it is possible two make two pucs use a fast interrupt handler and one not. -- Totus tuus, Glebius. GLEBIUS-RIPN GLEB-RIPE From owner-cvs-src@FreeBSD.ORG Fri Oct 28 16:07:53 2005 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 CB98416A41F; Fri, 28 Oct 2005 16:07:53 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B1A443D6A; Fri, 28 Oct 2005 16:07:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SG7qGD022877; Fri, 28 Oct 2005 16:07:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SG7qvF022876; Fri, 28 Oct 2005 16:07:52 GMT (envelope-from yar) Message-Id: <200510281607.j9SG7qvF022876@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 28 Oct 2005 16:07: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/etc/rc.d NETWORKING ipfw ppp-user routing 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, 28 Oct 2005 16:07:54 -0000 yar 2005-10-28 16:07:52 UTC FreeBSD src repository Modified files: etc/rc.d NETWORKING ipfw ppp-user routing Log: Transforming "ppp-user" into just "ppp", step 1: The rcorder(8) condition PROVIDE'd by the script and REQUIRE'd by the others becomes "ppp". The ultimate goal of the transformation is to reduce confusion resulting from the fact that $name has been "ppp" already. Discussed with: pjd, -rc Revision Changes Path 1.10 +1 -1 src/etc/rc.d/NETWORKING 1.11 +1 -1 src/etc/rc.d/ipfw 1.9 +1 -1 src/etc/rc.d/ppp-user 1.142 +1 -1 src/etc/rc.d/routing From owner-cvs-src@FreeBSD.ORG Fri Oct 28 16:11:02 2005 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 EBB4116A41F; Fri, 28 Oct 2005 16:11:02 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B3DC43D70; Fri, 28 Oct 2005 16:10:56 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGAuQg023717; Fri, 28 Oct 2005 16:10:56 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGAuGQ023713; Fri, 28 Oct 2005 16:10:56 GMT (envelope-from yar) Message-Id: <200510281610.j9SGAuGQ023713@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 28 Oct 2005 16:10: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/etc/rc.d ppp-user 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, 28 Oct 2005 16:11:03 -0000 yar 2005-10-28 16:10:56 UTC FreeBSD src repository Modified files: etc/rc.d ppp-user Log: Use: command="/path/to/${name}" since it's applicable here. It's the current style of rc.d. Pointed out by: pjd Revision Changes Path 1.10 +1 -1 src/etc/rc.d/ppp-user From owner-cvs-src@FreeBSD.ORG Fri Oct 28 16:31:35 2005 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 88DE016A41F; Fri, 28 Oct 2005 16:31:35 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A3343D46; Fri, 28 Oct 2005 16:31:35 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGVZiQ025049; Fri, 28 Oct 2005 16:31:35 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGVZYV025048; Fri, 28 Oct 2005 16:31:35 GMT (envelope-from scottl) Message-Id: <200510281631.j9SGVZYV025048@repoman.freebsd.org> From: Scott Long Date: Fri, 28 Oct 2005 16:31:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/aac aac.c aacreg.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, 28 Oct 2005 16:31:35 -0000 scottl 2005-10-28 16:31:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/aac aac.c aacreg.h Log: MFC: Fix regression in Dell PERC/ROMB systems. Approved by: re Revision Changes Path 1.109.2.1.2.1 +41 -28 src/sys/dev/aac/aac.c 1.21.2.1.2.1 +5 -0 src/sys/dev/aac/aacreg.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 16:39:51 2005 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 80A9516A420; Fri, 28 Oct 2005 16:39:51 +0000 (GMT) (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 0B6F743D45; Fri, 28 Oct 2005 16:39:50 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.3/8.13.3) with ESMTP id j9SGbAPk059861; Fri, 28 Oct 2005 10:37:10 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 28 Oct 2005 10:37:09 -0600 (MDT) Message-Id: <20051028.103709.74689710.imp@bsdimp.com> To: glebius@freebsd.org From: Warner Losh In-Reply-To: <20051028160218.GJ41520@cell.sick.ru> References: <200510261648.27126.peter@wemm.org> <200510281041.44147.jhb@freebsd.org> <20051028160218.GJ41520@cell.sick.ru> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Fri, 28 Oct 2005 10:37:10 -0600 (MDT) Cc: src-committers@freebsd.org, jhb@freebsd.org, peter@wemm.org, cvs-src@freebsd.org, cvs-all@freebsd.org, linimon@lonesome.com Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 28 Oct 2005 16:39:51 -0000 From: Gleb Smirnoff Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.c ... Date: Fri, 28 Oct 2005 20:02:18 +0400 > John, > > On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: > J> > Of course the real challenge is to make things like the puc device do > J> > the right thing automatically instead of needing 'options > J> > PUC_FASTINTR'. > J> > J> You mean like sio(4) tried to? The problem is that with the previosu code if > J> sio(4) went first, it would register INTR_FAST and some later PCI device > J> wouldn't be able to register its interrupt. There's not an easy solution to > J> that problem if you want to keep the semantics that INTR_FAST implies > J> INTR_EXCL. > > is it possible to implement such a feature that driver requests INTR_FAST > and it succeds only and only if interrupt isn't shared? Not really. The problem is that you don't know it is shared until it is too late. You have no way of really knowing if a device uses interrupts until its driver attaches and requests an interrupt. Given how we do our device probing, there's not really a chance to 'downgrade' the FAST to non-FAST later with driver notification (we can trivially downgrade what we do to ithread, but then the driver might not actually work). Warner From owner-cvs-src@FreeBSD.ORG Fri Oct 28 16:55:38 2005 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 D9C2016A41F; Fri, 28 Oct 2005 16:55:38 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6441C43D45; Fri, 28 Oct 2005 16:55:38 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SGtcVn033701; Fri, 28 Oct 2005 16:55:38 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SGtcqC033700; Fri, 28 Oct 2005 16:55:38 GMT (envelope-from yar) Message-Id: <200510281655.j9SGtcqC033700@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 28 Oct 2005 16:55: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/etc/rc.d devd ipmon newsyslog powerd sendmail 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, 28 Oct 2005 16:55:39 -0000 yar 2005-10-28 16:55:38 UTC FreeBSD src repository Modified files: etc/rc.d devd ipmon newsyslog powerd sendmail Log: Use ${name} in pathnames where appropriate. The sendmail script already was on this way, but it didn't reach the end of it yet. Revision Changes Path 1.8 +1 -1 src/etc/rc.d/devd 1.14 +1 -1 src/etc/rc.d/ipmon 1.4 +1 -1 src/etc/rc.d/newsyslog 1.3 +1 -1 src/etc/rc.d/powerd 1.16 +3 -3 src/etc/rc.d/sendmail From owner-cvs-src@FreeBSD.ORG Fri Oct 28 18:34:19 2005 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 41ADA16A420; Fri, 28 Oct 2005 18:34:19 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E8ED43D48; Fri, 28 Oct 2005 18:34:18 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 14:51:05 -0400 From: John Baldwin To: Gleb Smirnoff Date: Fri, 28 Oct 2005 14:33:20 -0400 User-Agent: KMail/1.8.2 References: <200510251948.j9PJmmmj043891@repoman.freebsd.org> <200510281041.44147.jhb@freebsd.org> <20051028160218.GJ41520@cell.sick.ru> In-Reply-To: <20051028160218.GJ41520@cell.sick.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281433.22369.jhb@freebsd.org> Cc: Mark Linimon , src-committers@freebsd.org, cvs-all@freebsd.org, Peter Wemm , cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 28 Oct 2005 18:34:19 -0000 On Friday 28 October 2005 12:02 pm, Gleb Smirnoff wrote: > John, > > On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: > J> > Of course the real challenge is to make things like the puc device do > J> > the right thing automatically instead of needing 'options > J> > PUC_FASTINTR'. > J> > J> You mean like sio(4) tried to? The problem is that with the previosu > code if J> sio(4) went first, it would register INTR_FAST and some later > PCI device J> wouldn't be able to register its interrupt. There's not an > easy solution to J> that problem if you want to keep the semantics that > INTR_FAST implies J> INTR_EXCL. > > is it possible to implement such a feature that driver requests INTR_FAST > and it succeds only and only if interrupt isn't shared? > > For example I've got a console server with three puc devices. Since one of > them share its irq with ATA, I can't trun on PUC_FASTINTR on this box. > However, theoretically it is possible two make two pucs use a fast > interrupt handler and one not. INTR_EXCL will do this for bus_setup_intr(). INTR_FAST used to basically imply INTR_EXCL. However, the definition of 'shared' is poor, and that's the hard problem. The current definition of shared is 'does anyone else have a handler registered already'. However, that definition isn't very adequate. In your example, if the puc that shares its IRQ with ATA probes first, then it's INTR_EXCL request will succeed, but ATA won't be able to setup an interrupt handler. If ATA probes first, then puc will fall back to non-INTR_FAST (which is what sio(4) does except sio(4) depends on INTR_FAST implying INTR_EXCL which it no longer does). One possible idea is to walk the entire PCI device tree first to "reserve" interrupts somehow, but that doesn't take into account drivers that don't actually use interrupts, or drivers that use MSI interrupts and not intpin interrupts (coming in the not too distant future), etc. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 18:37:10 2005 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 3B97016A41F; Fri, 28 Oct 2005 18:37:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBF6643D46; Fri, 28 Oct 2005 18:37:09 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIb9WN042591; Fri, 28 Oct 2005 18:37:09 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIb97b042590; Fri, 28 Oct 2005 18:37:09 GMT (envelope-from stefanf) Message-Id: <200510281837.j9SIb97b042590@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 18: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/bin/sh eval.c exec.c exec.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, 28 Oct 2005 18:37:10 -0000 stefanf 2005-10-28 18:37:09 UTC FreeBSD src repository Modified files: bin/sh eval.c exec.c exec.h Log: Add the POSIX options -v and -V to the 'command' builtin. Both describe the type of their argument, if it is a shell function, an alias, a builtin, etc. -V is more verbose than -v. PR: 77259, 84539 Revision Changes Path 1.47 +13 -1 src/bin/sh/eval.c 1.27 +47 -12 src/bin/sh/exec.c 1.13 +7 -0 src/bin/sh/exec.h From owner-cvs-src@FreeBSD.ORG Fri Oct 28 18:39:01 2005 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 46FFC16A41F; Fri, 28 Oct 2005 18:39:01 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 042B143D45; Fri, 28 Oct 2005 18:39:01 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SId0ce042662; Fri, 28 Oct 2005 18:39:00 GMT (envelope-from cracauer@repoman.freebsd.org) Received: (from cracauer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SId03o042661; Fri, 28 Oct 2005 18:39:00 GMT (envelope-from cracauer) Message-Id: <200510281839.j9SId03o042661@repoman.freebsd.org> From: Martin Cracauer Date: Fri, 28 Oct 2005 18:39:00 +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/gnu/fs/ext2fs ext2_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: Fri, 28 Oct 2005 18:39:01 -0000 cracauer 2005-10-28 18:39:00 UTC FreeBSD src repository Modified files: sys/gnu/fs/ext2fs ext2_vnops.c Log: Fix this: kern/87959 cracauer ext2fs: no cp(1) possible, mmap returns EINVAL ext2fs was missing vnode_create_vobject. (Reisefs probably has the same problem but I want to get this in quick for 6-release) Revision Changes Path 1.104 +6 -2 src/sys/gnu/fs/ext2fs/ext2_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 18:40:13 2005 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 A578B16A41F; Fri, 28 Oct 2005 18:40:13 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from mv.twc.weather.com (mv.twc.weather.com [65.212.71.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DC743D45; Fri, 28 Oct 2005 18:40:12 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from [10.50.41.234] (Not Verified[10.50.41.234]) by mv.twc.weather.com with NetIQ MailMarshal (v6, 0, 3, 8) id ; Fri, 28 Oct 2005 14:57:00 -0400 From: John Baldwin To: Joerg Wunsch Date: Fri, 28 Oct 2005 14:39:18 -0400 User-Agent: KMail/1.8.2 References: <200510281558.j9SFwJPQ022227@repoman.freebsd.org> In-Reply-To: <200510281558.j9SFwJPQ022227@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200510281439.19760.jhb@freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf files files.i386 files.sparc64 src/sys/modules Makefile src/sys/modules/i2c/controllers/pcf Makefile src/sys/i386/isa pcf.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, 28 Oct 2005 18:40:13 -0000 On Friday 28 October 2005 11:58 am, Joerg Wunsch wrote: > joerg 2005-10-28 15:58:19 UTC > > FreeBSD src repository > > Modified files: > sys/conf files files.i386 files.sparc64 > sys/modules Makefile > sys/modules/i2c/controllers/pcf Makefile > Removed files: > sys/i386/isa pcf.c > Log: > Finally complete some work on generalizing the PCF8584-based I2C > drivers I started quite some time before. > > Retire the old i386-only pcf driver, and activate the new general > driver that has been sitting in the tree already for quite some > time. > > Build the i2c modules for sparc64 architectures as well (where I've > been developing all this on). Thanks! -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Fri Oct 28 18:44:01 2005 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 03E9B16A41F; Fri, 28 Oct 2005 18:44:01 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F15843D46; Fri, 28 Oct 2005 18:44:00 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIi0kt042980; Fri, 28 Oct 2005 18:44:00 GMT (envelope-from cracauer@repoman.freebsd.org) Received: (from cracauer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIi0ZW042979; Fri, 28 Oct 2005 18:44:00 GMT (envelope-from cracauer) Message-Id: <200510281844.j9SIi0ZW042979@repoman.freebsd.org> From: Martin Cracauer Date: Fri, 28 Oct 2005 18:44:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/gnu/fs/ext2fs ext2_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: Fri, 28 Oct 2005 18:44:01 -0000 cracauer 2005-10-28 18:44:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/gnu/fs/ext2fs ext2_vnops.c Log: Fix this: kern/87959 cracauer ext2fs: no cp(1) possible, mmap returns EINVAL ext2fs was missing vnode_create_vobject. (Reisefs probably has the same problem but I want to get this in quick for 6-release) releng-6 branches commits approved by Scott Long. Approved by: re Revision Changes Path 1.103.4.1 +6 -2 src/sys/gnu/fs/ext2fs/ext2_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 18:44:26 2005 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 AF46116A420; Fri, 28 Oct 2005 18:44:26 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 640EC43D48; Fri, 28 Oct 2005 18:44:26 +0000 (GMT) (envelope-from cracauer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIiQWs043272; Fri, 28 Oct 2005 18:44:26 GMT (envelope-from cracauer@repoman.freebsd.org) Received: (from cracauer@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIiQOA043271; Fri, 28 Oct 2005 18:44:26 GMT (envelope-from cracauer) Message-Id: <200510281844.j9SIiQOA043271@repoman.freebsd.org> From: Martin Cracauer Date: Fri, 28 Oct 2005 18:44:26 +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/gnu/fs/ext2fs ext2_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: Fri, 28 Oct 2005 18:44:26 -0000 cracauer 2005-10-28 18:44:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/gnu/fs/ext2fs ext2_vnops.c Log: Fix this: kern/87959 cracauer ext2fs: no cp(1) possible, mmap returns EINVAL ext2fs was missing vnode_create_vobject. (Reisefs probably has the same problem but I want to get this in quick for 6-release) releng-6 branches commits approved by Scott Long. Approved by: re Revision Changes Path 1.103.2.1 +6 -2 src/sys/gnu/fs/ext2fs/ext2_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:02:22 2005 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 DC74016A41F; Fri, 28 Oct 2005 19:02:22 +0000 (GMT) (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 813C843D4C; Fri, 28 Oct 2005 19:02:22 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ2Mhu044812; Fri, 28 Oct 2005 19:02:22 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ2MIr044811; Fri, 28 Oct 2005 19:02:22 GMT (envelope-from jhb) Message-Id: <200510281902.j9SJ2MIr044811@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:02:22 +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/conf NOTES 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, 28 Oct 2005 19:02:23 -0000 jhb 2005-10-28 19:02:22 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf NOTES Log: MFC: Add COMPAT_FREEBSD5. Approved by: re (scottl) Revision Changes Path 1.1325.2.6 +3 -0 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:04:04 2005 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 A4FF316A41F; Fri, 28 Oct 2005 19:04:04 +0000 (GMT) (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 6B18F43D46; Fri, 28 Oct 2005 19:04:04 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ44h9044929; Fri, 28 Oct 2005 19:04:04 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ44rT044928; Fri, 28 Oct 2005 19:04:04 GMT (envelope-from jhb) Message-Id: <200510281904.j9SJ44rT044928@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:04:04 +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/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 src/usr.sbin/config config.8 config.h config.y configvers.h main.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, 28 Oct 2005 19:04:04 -0000 jhb 2005-10-28 19:04:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 usr.sbin/config config.8 config.h config.y configvers.h main.c Log: MFC: Sync config(8) with HEAD: - Add -V option to dump version. - Implicitly include DEFAULTS if it exists in the current directory before the specified kernel config. Approved by: re (scottl) Revision Changes Path 1.135.2.1 +1 -1 src/sys/conf/Makefile.alpha 1.16.2.1 +1 -1 src/sys/conf/Makefile.amd64 1.10.2.1 +1 -1 src/sys/conf/Makefile.arm 1.265.2.1 +1 -1 src/sys/conf/Makefile.i386 1.62.2.1 +1 -1 src/sys/conf/Makefile.ia64 1.167.2.1 +1 -1 src/sys/conf/Makefile.pc98 1.277.2.1 +1 -1 src/sys/conf/Makefile.powerpc 1.33.2.1 +1 -1 src/sys/conf/Makefile.sparc64 1.43.2.1 +5 -1 src/usr.sbin/config/config.8 1.56.2.1 +1 -0 src/usr.sbin/config/config.h 1.66.2.1 +16 -0 src/usr.sbin/config/config.y 1.35.2.1 +1 -1 src/usr.sbin/config/configvers.h 1.64.2.1 +16 -5 src/usr.sbin/config/main.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:05:44 2005 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 C3F2A16A41F; Fri, 28 Oct 2005 19:05:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82BC943D45; Fri, 28 Oct 2005 19:05:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJ5iKC045079; Fri, 28 Oct 2005 19:05:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJ5ih3045078; Fri, 28 Oct 2005 19:05:44 GMT (envelope-from ru) Message-Id: <200510281905.j9SJ5ih3045078@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 19:05: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/share/man/man4 ng_iface.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: Fri, 28 Oct 2005 19:05:44 -0000 ru 2005-10-28 19:05:44 UTC FreeBSD src repository Modified files: share/man/man4 ng_iface.4 Log: Document NGM_IFACE_GET_IFINDEX. Revision Changes Path 1.19 +3 -1 src/share/man/man4/ng_iface.4 From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:20:01 2005 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 2868F16A420; Fri, 28 Oct 2005 19:20:01 +0000 (GMT) (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 D5A0143D46; Fri, 28 Oct 2005 19:20:00 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJK0XS045691; Fri, 28 Oct 2005 19:20:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJK0FT045690; Fri, 28 Oct 2005 19:20:00 GMT (envelope-from jhb) Message-Id: <200510281920.j9SJK0FT045690@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:20:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/conf NOTES 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, 28 Oct 2005 19:20:01 -0000 jhb 2005-10-28 19:20:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/conf NOTES Log: MF6: Add COMPAT_FREEBSD5. Approved by: re (scottl) Revision Changes Path 1.1325.2.4.2.2 +3 -0 src/sys/conf/NOTES From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:20:54 2005 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 2E70916A41F; Fri, 28 Oct 2005 19:20:54 +0000 (GMT) (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 E929943D46; Fri, 28 Oct 2005 19:20:53 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJKr9m045907; Fri, 28 Oct 2005 19:20:53 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJKrCx045906; Fri, 28 Oct 2005 19:20:53 GMT (envelope-from jhb) Message-Id: <200510281920.j9SJKrCx045906@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:20:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 src/usr.sbin/config config.8 config.h config.y configvers.h main.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, 28 Oct 2005 19:20:54 -0000 jhb 2005-10-28 19:20:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/conf Makefile.alpha Makefile.amd64 Makefile.arm Makefile.i386 Makefile.ia64 Makefile.pc98 Makefile.powerpc Makefile.sparc64 usr.sbin/config config.8 config.h config.y configvers.h main.c Log: MF6: config -V and support for DEFAULTS. Approved by: re (scottl) Revision Changes Path 1.135.4.1 +1 -1 src/sys/conf/Makefile.alpha 1.16.4.1 +1 -1 src/sys/conf/Makefile.amd64 1.10.4.1 +1 -1 src/sys/conf/Makefile.arm 1.265.4.1 +1 -1 src/sys/conf/Makefile.i386 1.62.4.1 +1 -1 src/sys/conf/Makefile.ia64 1.167.4.1 +1 -1 src/sys/conf/Makefile.pc98 1.277.4.1 +1 -1 src/sys/conf/Makefile.powerpc 1.33.4.1 +1 -1 src/sys/conf/Makefile.sparc64 1.43.4.1 +5 -1 src/usr.sbin/config/config.8 1.56.4.1 +1 -0 src/usr.sbin/config/config.h 1.66.4.1 +16 -0 src/usr.sbin/config/config.y 1.35.4.1 +1 -1 src/usr.sbin/config/configvers.h 1.64.4.1 +16 -5 src/usr.sbin/config/main.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:21:31 2005 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 8C9BF16A41F; Fri, 28 Oct 2005 19:21:31 +0000 (GMT) (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 F1ED343D6A; Fri, 28 Oct 2005 19:21:28 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJLRp3046012; Fri, 28 Oct 2005 19:21:27 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJLRKt046011; Fri, 28 Oct 2005 19:21:27 GMT (envelope-from jhb) Message-Id: <200510281921.j9SJLRKt046011@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:21: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/sys/amd64/conf DEFAULTS GENERIC src/sys/i386/conf DEFAULTS GENERIC src/sys/pc98/conf DEFAULTS 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: Fri, 28 Oct 2005 19:21:31 -0000 jhb 2005-10-28 19:21:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/amd64/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC Added files: (Branch: RELENG_6) sys/amd64/conf DEFAULTS sys/i386/conf DEFAULTS sys/pc98/conf DEFAULTS Log: MFC: Add DEFAULTS files for amd64, i386, and pc98. Approved by: re (scottl) Revision Changes Path 1.2.2.1 +14 -0 src/sys/amd64/conf/DEFAULTS (new) 1.439.2.7 +1 -4 src/sys/amd64/conf/GENERIC 1.1.2.1 +17 -0 src/sys/i386/conf/DEFAULTS (new) 1.429.2.4 +1 -7 src/sys/i386/conf/GENERIC 1.1.2.1 +18 -0 src/sys/pc98/conf/DEFAULTS (new) 1.269.2.6 +1 -7 src/sys/pc98/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:22:42 2005 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 0647016A422; Fri, 28 Oct 2005 19:22:42 +0000 (GMT) (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 C804143D45; Fri, 28 Oct 2005 19:22:41 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJMfQ2046129; Fri, 28 Oct 2005 19:22:41 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJMfNN046128; Fri, 28 Oct 2005 19:22:41 GMT (envelope-from jhb) Message-Id: <200510281922.j9SJMfNN046128@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:22:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/amd64/conf DEFAULTS GENERIC src/sys/i386/conf DEFAULTS GENERIC src/sys/pc98/conf DEFAULTS 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: Fri, 28 Oct 2005 19:22:42 -0000 jhb 2005-10-28 19:22:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/amd64/conf GENERIC sys/i386/conf GENERIC sys/pc98/conf GENERIC Added files: (Branch: RELENG_6_0) sys/amd64/conf DEFAULTS sys/i386/conf DEFAULTS sys/pc98/conf DEFAULTS Log: MF6: Add DEFAULTS files for amd64, i386, and pc98. Approved by: re (scottl) Revision Changes Path 1.2.4.1 +14 -0 src/sys/amd64/conf/DEFAULTS (new) 1.439.2.6.2.1 +1 -4 src/sys/amd64/conf/GENERIC 1.1.4.1 +17 -0 src/sys/i386/conf/DEFAULTS (new) 1.429.2.3.2.1 +1 -7 src/sys/i386/conf/GENERIC 1.1.4.1 +18 -0 src/sys/pc98/conf/DEFAULTS (new) 1.269.2.5.2.1 +1 -7 src/sys/pc98/conf/GENERIC From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:24:13 2005 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 8345116A41F; Fri, 28 Oct 2005 19:24:13 +0000 (GMT) (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 3BECA43D45; Fri, 28 Oct 2005 19:24:13 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJODTL046185; Fri, 28 Oct 2005 19:24:13 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJODIT046184; Fri, 28 Oct 2005 19:24:13 GMT (envelope-from jhb) Message-Id: <200510281924.j9SJODIT046184@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:24: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/share/man/man5 libmap.conf.5 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, 28 Oct 2005 19:24:13 -0000 jhb 2005-10-28 19:24:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man5 libmap.conf.5 Log: MFC: Sync with head updating examples to match 6.x. Approved by: re (scottl) Revision Changes Path 1.9.2.1 +24 -10 src/share/man/man5/libmap.conf.5 From owner-cvs-src@FreeBSD.ORG Fri Oct 28 19:24:41 2005 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 AE60F16A41F; Fri, 28 Oct 2005 19:24:41 +0000 (GMT) (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 4870343D48; Fri, 28 Oct 2005 19:24:41 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SJOfZT046227; Fri, 28 Oct 2005 19:24:41 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SJOfsr046226; Fri, 28 Oct 2005 19:24:41 GMT (envelope-from jhb) Message-Id: <200510281924.j9SJOfsr046226@repoman.freebsd.org> From: John Baldwin Date: Fri, 28 Oct 2005 19:24:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/share/man/man5 libmap.conf.5 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, 28 Oct 2005 19:24:41 -0000 jhb 2005-10-28 19:24:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) share/man/man5 libmap.conf.5 Log: MF6: Sync with HEAD updating examples for 6.x. Approved by: re (scottl) Revision Changes Path 1.9.4.1 +24 -10 src/share/man/man5/libmap.conf.5 From owner-cvs-src@FreeBSD.ORG Fri Oct 28 20:25:04 2005 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 954CA16A420; Fri, 28 Oct 2005 20:25:04 +0000 (GMT) (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 1DC9843D45; Fri, 28 Oct 2005 20:25:03 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKP3ZB049582; Fri, 28 Oct 2005 20:25:03 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKP2YO049581; Fri, 28 Oct 2005 20:25:02 GMT (envelope-from pjd) Message-Id: <200510282025.j9SKP2YO049581@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 28 Oct 2005 20:25: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/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: Fri, 28 Oct 2005 20:25:04 -0000 pjd 2005-10-28 20:25:02 UTC FreeBSD src repository Modified files: sys/geom/raid3 g_raid3.c Log: Fix possible live-lock under heavy load where we can't allocate more memory for request. I was sure graid3 should handle such situations well, but green@ reported it is not and we want to fix it before 6.0. Submitted by: green Revision Changes Path 1.42 +12 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 20:26:19 2005 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 C70E016A41F; Fri, 28 Oct 2005 20:26:19 +0000 (GMT) (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 7D8BF43D83; Fri, 28 Oct 2005 20:26:19 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKQJgv049740; Fri, 28 Oct 2005 20:26:19 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKQJqe049739; Fri, 28 Oct 2005 20:26:19 GMT (envelope-from pjd) Message-Id: <200510282026.j9SKQJqe049739@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 28 Oct 2005 20:26: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/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: Fri, 28 Oct 2005 20:26:19 -0000 pjd 2005-10-28 20:26:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/geom/raid3 g_raid3.c Log: Fix possible live-lock under heavy load where we can't allocate more memory for request. I was sure graid3 should handle such situations well, but green@ reported it is not and we want to fix it before 6.0. Submitted by: green Approved by: re (scottl) Revision Changes Path 1.40.2.2 +12 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 20:27:53 2005 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 8F6F916A41F; Fri, 28 Oct 2005 20:27:53 +0000 (GMT) (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 49A9143D49; Fri, 28 Oct 2005 20:27:53 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKRrSC049818; Fri, 28 Oct 2005 20:27:53 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKRrtW049817; Fri, 28 Oct 2005 20:27:53 GMT (envelope-from pjd) Message-Id: <200510282027.j9SKRrtW049817@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 28 Oct 2005 20:27:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: 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: Fri, 28 Oct 2005 20:27:53 -0000 pjd 2005-10-28 20:27:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/geom/raid3 g_raid3.c Log: Fix possible live-lock under heavy load where we can't allocate more memory for request. I was sure graid3 should handle such situations well, but green@ reported it is not and we want to fix it before 6.0. Submitted by: green Approved by: re (scottl) Revision Changes Path 1.40.2.1.2.1 +12 -1 src/sys/geom/raid3/g_raid3.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 20:29:43 2005 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 5E8B316A424; Fri, 28 Oct 2005 20:29:43 +0000 (GMT) (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 18E4B43D49; Fri, 28 Oct 2005 20:29:43 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SKTgar049929; Fri, 28 Oct 2005 20:29:42 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SKTgAX049928; Fri, 28 Oct 2005 20:29:42 GMT (envelope-from glebius) Message-Id: <200510282029.j9SKTgAX049928@repoman.freebsd.org> From: Gleb Smirnoff Date: Fri, 28 Oct 2005 20:29: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/sys/netinet in.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, 28 Oct 2005 20:29:43 -0000 glebius 2005-10-28 20:29:42 UTC FreeBSD src repository Modified files: sys/netinet in.c Log: First fill in structure with valid values, and only then attach it to the global list. Reviewed by: rwatson Revision Changes Path 1.92 +2 -2 src/sys/netinet/in.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 20:42:43 2005 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 8C49116A41F; Fri, 28 Oct 2005 20:42:43 +0000 (GMT) (envelope-from bra@fsn.hu) Received: from people.fsn.hu (people.fsn.hu [195.228.252.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B03643D45; Fri, 28 Oct 2005 20:42:42 +0000 (GMT) (envelope-from bra@fsn.hu) Received: from localhost (localhost [127.0.0.1]) by people.fsn.hu (Postfix) with ESMTP id 7DB0984408; Thu, 27 Oct 2005 09:59:47 +0200 (CEST) Received: from people.fsn.hu ([127.0.0.1]) by localhost (people.fsn.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 34118-01-2; Thu, 27 Oct 2005 09:59:42 +0200 (CEST) Received: from [127.0.0.1] (unknown [192.168.2.3]) by people.fsn.hu (Postfix) with ESMTP id F284F8441F; Thu, 27 Oct 2005 09:59:41 +0200 (CEST) Message-ID: <436088E9.2010900@fsn.hu> Date: Thu, 27 Oct 2005 09:59:37 +0200 From: Attila Nagy User-Agent: Mozilla Thunderbird 1.0.7 (X11/20050930) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Peter Wemm References: <200510262216.j9QMGrZB009716@repoman.freebsd.org> In-Reply-To: <200510262216.j9QMGrZB009716@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at fsn.hu Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/amd64 machdep.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, 28 Oct 2005 20:42:43 -0000 Hello, Peter Wemm wrote: > peter 2005-10-26 22:16:52 UTC > > FreeBSD src repository > > Modified files: > sys/amd64/amd64 machdep.c > Log: > Change PHYSMAP_SIZE to allow for more memory segments. The old value was > too low for certain Dell amd64 machines. > > Revision Changes Path > 1.643 +1 -1 src/sys/amd64/amd64/machdep.c Great, thank you. Could you please close amd64/87112? It would be great, if you could MFC this change. Thanks, -- Attila Nagy e-mail: Attila.Nagy@fsn.hu Adopt a directory on our free software phone: +3630 306 6758 server! http://www.fsn.hu/?f=brick From owner-cvs-src@FreeBSD.ORG Fri Oct 28 21:24:55 2005 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 3620816A41F; Fri, 28 Oct 2005 21:24:55 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAD7943D46; Fri, 28 Oct 2005 21:24:54 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id D90542FDE; Fri, 28 Oct 2005 16:24:53 -0500 (CDT) Date: Fri, 28 Oct 2005 16:24:53 -0500 To: Attila Nagy Message-ID: <20051028212453.GE8959@soaustin.net> References: <200510262216.j9QMGrZB009716@repoman.freebsd.org> <436088E9.2010900@fsn.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <436088E9.2010900@fsn.hu> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Peter Wemm Subject: Re: cvs commit: src/sys/amd64/amd64 machdep.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, 28 Oct 2005 21:24:55 -0000 On Thu, Oct 27, 2005 at 09:59:37AM +0200, Attila Nagy wrote: > Great, thank you. Could you please close amd64/87112? The correct state for a PR that we believe to have been fixed by a change to HEAD is 'patched' so I've set it to that and assigned it to peter as an MFC reminder. mcl From owner-cvs-src@FreeBSD.ORG Fri Oct 28 21:25:29 2005 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 63C4A16A41F; Fri, 28 Oct 2005 21:25:29 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E8543D53; Fri, 28 Oct 2005 21:25:28 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLPS5C059562; Fri, 28 Oct 2005 21:25:28 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLPSE4059561; Fri, 28 Oct 2005 21:25:28 GMT (envelope-from ru) Message-Id: <200510282125.j9SLPSE4059561@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 28 Oct 2005 21:25:28 +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/etc/mtree BSD.usr.dist src/usr.bin/calendar Makefile src/usr.bin/calendar/calendars calendar.ukrainian src/usr.bin/calendar/calendars/uk_UA.KOI8-U calendar.all calendar.holiday calendar.misc calendar.orthodox 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, 28 Oct 2005 21:25:29 -0000 ru 2005-10-28 21:25:28 UTC FreeBSD src repository Modified files: etc/mtree BSD.usr.dist usr.bin/calendar Makefile Added files: usr.bin/calendar/calendars calendar.ukrainian usr.bin/calendar/calendars/uk_UA.KOI8-U calendar.all calendar.holiday calendar.misc calendar.orthodox Log: Add some significant Ukrainian dates. PR: 88076 Submitted by: Andriy Gapon Revision Changes Path 1.313 +2 -0 src/etc/mtree/BSD.usr.dist 1.31 +1 -1 src/usr.bin/calendar/Makefile 1.1 +12 -0 src/usr.bin/calendar/calendars/calendar.ukrainian (new) 1.1 +14 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.all (new) 1.1 +22 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.holiday (new) 1.1 +18 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.misc (new) 1.1 +35 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.orthodox (new) From owner-cvs-src@FreeBSD.ORG Fri Oct 28 21:41:43 2005 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 3997116A41F; Fri, 28 Oct 2005 21:41:43 +0000 (GMT) (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 E9E2C43D46; Fri, 28 Oct 2005 21:41:42 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLfgVE060509; Fri, 28 Oct 2005 21:41:42 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLfgE7060508; Fri, 28 Oct 2005 21:41:42 GMT (envelope-from sos) Message-Id: <200510282141.j9SLfgE7060508@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 28 Oct 2005 21:41: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/sys/dev/ata atapi-cd.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, 28 Oct 2005 21:41:43 -0000 sos 2005-10-28 21:41:42 UTC FreeBSD src repository Modified files: sys/dev/ata atapi-cd.c Log: Return the right format (LBA/MSF) in TOC entries. Null the TOC on media change even if no media present. Reported by: des Revision Changes Path 1.183 +7 -5 src/sys/dev/ata/atapi-cd.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 21:57:04 2005 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 EFA8016A41F; Fri, 28 Oct 2005 21:57:04 +0000 (GMT) (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 ACAE343D45; Fri, 28 Oct 2005 21:57:04 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SLv4B7061153; Fri, 28 Oct 2005 21:57:04 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SLv4tf061152; Fri, 28 Oct 2005 21:57:04 GMT (envelope-from brooks) Message-Id: <200510282157.j9SLv4tf061152@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 21:57:04 +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/ifconfig ifieee80211.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, 28 Oct 2005 21:57:05 -0000 brooks 2005-10-28 21:57:04 UTC FreeBSD src repository Modified files: sbin/ifconfig ifieee80211.c Log: Don't crash when given an invalid nwkey string. PR: misc/88159 Revision Changes Path 1.27 +2 -0 src/sbin/ifconfig/ifieee80211.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 22:45:53 2005 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 7EFF716A422; Fri, 28 Oct 2005 22:45:53 +0000 (GMT) (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 39FE643D45; Fri, 28 Oct 2005 22:45:53 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMjr0p063442; Fri, 28 Oct 2005 22:45:53 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMjrHE063441; Fri, 28 Oct 2005 22:45:53 GMT (envelope-from avatar) Message-Id: <200510282245.j9SMjrHE063441@repoman.freebsd.org> From: Tai-hwa Liang Date: Fri, 28 Oct 2005 22:45: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/net if_fwsubr.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, 28 Oct 2005 22:45:53 -0000 avatar 2005-10-28 22:45:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_fwsubr.c Log: MFC: (1.16) Fixing a name collision in module declaration by renaming "firewire" to "if_firewire." According to the PR originator and Cai's test, this bug prevents a RELENG_6 GENERIC kernel from loading if_fwip.ko and will panic the kernel if users compile "device fwip" into their GENERIC kernel. Approved by: re (scottl) Revision Changes Path 1.12.2.3 +3 -3 src/sys/net/if_fwsubr.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 22:47:41 2005 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 497C816A41F; Fri, 28 Oct 2005 22:47:41 +0000 (GMT) (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 0682743D49; Fri, 28 Oct 2005 22:47:41 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMleBP063538; Fri, 28 Oct 2005 22:47:40 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMlepi063537; Fri, 28 Oct 2005 22:47:40 GMT (envelope-from brooks) Message-Id: <200510282247.j9SMlepi063537@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 22:47: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/usr.sbin/vipw vipw.8 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, 28 Oct 2005 22:47:41 -0000 brooks 2005-10-28 22:47:40 UTC FreeBSD src repository Modified files: usr.sbin/vipw vipw.8 Log: s/insure/ensure/ in previous commit. My dictionary and m-w.com say they are synonymous, but ensure seems slightly closer and does not have the connotation of buying insurance. Reported by: Jason McIntyre Revision Changes Path 1.16 +1 -1 src/usr.sbin/vipw/vipw.8 From owner-cvs-src@FreeBSD.ORG Fri Oct 28 22:52:32 2005 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 1256D16A41F; Fri, 28 Oct 2005 22:52:32 +0000 (GMT) (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 C075F43D46; Fri, 28 Oct 2005 22:52:31 +0000 (GMT) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMqVO8063884; Fri, 28 Oct 2005 22:52:31 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMqVul063883; Fri, 28 Oct 2005 22:52:31 GMT (envelope-from avatar) Message-Id: <200510282252.j9SMqVul063883@repoman.freebsd.org> From: Tai-hwa Liang Date: Fri, 28 Oct 2005 22:52:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/net if_fwsubr.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, 28 Oct 2005 22:52:32 -0000 avatar 2005-10-28 22:52:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/net if_fwsubr.c Log: MFC: (1.16) Fixing a name collision in module declaration by renaming "firewire" to "if_firewire." According to the PR originator and Cai's testing result, this bug prevents a RELENG_6 GENERIC kernel from loading if_fwip.ko and will panic the kernel if users compile "device fwip" into their GENERIC kernel. Approved by: re (scottl) Revision Changes Path 1.12.2.2.2.1 +3 -3 src/sys/net/if_fwsubr.c From owner-cvs-src@FreeBSD.ORG Fri Oct 28 22:57:43 2005 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 78FCF16A41F; Fri, 28 Oct 2005 22:57:43 +0000 (GMT) (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 34C4D43D45; Fri, 28 Oct 2005 22:57:43 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SMvhRg064233; Fri, 28 Oct 2005 22:57:43 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SMvh7s064232; Fri, 28 Oct 2005 22:57:43 GMT (envelope-from brooks) Message-Id: <200510282257.j9SMvh7s064232@repoman.freebsd.org> From: Brooks Davis Date: Fri, 28 Oct 2005 22:57:43 +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/etc/rc.d localpkg 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, 28 Oct 2005 22:57:43 -0000 brooks 2005-10-28 22:57:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) etc/rc.d localpkg Log: MFC rev 1.6: Don't print anything if we can't do any localpkg shutdown (start already does this). Submitted by: Andre Albsmeier PR: conf/86606 Revision Changes Path 1.4.2.2 +1 -2 src/etc/rc.d/localpkg From owner-cvs-src@FreeBSD.ORG Sat Oct 29 02:18:30 2005 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 C53B616A41F; Sat, 29 Oct 2005 02:18:30 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15EF343D66; Sat, 29 Oct 2005 02:18:27 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T2IRxM081526; Sat, 29 Oct 2005 02:18:27 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T2IRR5081525; Sat, 29 Oct 2005 02:18:27 GMT (envelope-from wpaul) Message-Id: <200510290218.j9T2IRR5081525@repoman.freebsd.org> From: Bill Paul Date: Sat, 29 Oct 2005 02:18: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/if_ndis if_ndis.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, 29 Oct 2005 02:18:30 -0000 wpaul 2005-10-29 02:18:27 UTC FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: Fix ndis_getstate_80211() so that it properly reports the authmode and channel to ifconfig. Also use the SSID and channel info from the association info that we already have instead of using ndis_get_info() to ask the driver for it again. Revision Changes Path 1.112 +77 -32 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 02:20:45 2005 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 1CE6216A431; Sat, 29 Oct 2005 02:20:45 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCBFF43D4C; Sat, 29 Oct 2005 02:20:44 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T2Ki5p081714; Sat, 29 Oct 2005 02:20:44 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T2Ki9m081713; Sat, 29 Oct 2005 02:20:44 GMT (envelope-from wpaul) Message-Id: <200510290220.j9T2Ki9m081713@repoman.freebsd.org> From: Bill Paul Date: Sat, 29 Oct 2005 02:20:44 +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/sys/dev/if_ndis if_ndis.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, 29 Oct 2005 02:20:45 -0000 wpaul 2005-10-29 02:20:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sys/dev/if_ndis if_ndis.c Log: MFC: fix channel and authmode reporting for ifconfig (note: authmode reporting is a no-op in 5.x and always shows up as OPEN) Revision Changes Path 1.69.2.11 +77 -32 src/sys/dev/if_ndis/if_ndis.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 02:46:59 2005 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 ACC4716A41F; Sat, 29 Oct 2005 02:46:59 +0000 (GMT) (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 667A843D45; Sat, 29 Oct 2005 02:46:59 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T2kx5Y082787; Sat, 29 Oct 2005 02:46:59 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T2kx4e082786; Sat, 29 Oct 2005 02:46:59 GMT (envelope-from mjacob) Message-Id: <200510290246.j9T2kx4e082786@repoman.freebsd.org> From: Matt Jacob Date: Sat, 29 Oct 2005 02:46: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/isp isp.c isp_freebsd.c isp_ioctl.h ispmbox.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, 29 Oct 2005 02:46:59 -0000 mjacob 2005-10-29 02:46:59 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c isp_freebsd.c isp_ioctl.h ispmbox.h Log: Add an ioctl framework for doing FC task management functions from a user space tool- useful for doing FC target mode certification. Revision Changes Path 1.114 +1 -1 src/sys/dev/isp/isp.c 1.107 +59 -0 src/sys/dev/isp/isp_freebsd.c 1.13 +12 -0 src/sys/dev/isp/isp_ioctl.h 1.48 +1 -0 src/sys/dev/isp/ispmbox.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:01:17 2005 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 C692816A420; Sat, 29 Oct 2005 03:01:17 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C2B043D45; Sat, 29 Oct 2005 03:01:17 +0000 (GMT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T31HM0083495; Sat, 29 Oct 2005 03:01:17 GMT (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T31H3P083494; Sat, 29 Oct 2005 03:01:17 GMT (envelope-from wpaul) Message-Id: <200510290301.j9T31H3P083494@repoman.freebsd.org> From: Bill Paul Date: Sat, 29 Oct 2005 03:01: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/sys/dev/txp if_txp.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, 29 Oct 2005 03:01:18 -0000 wpaul 2005-10-29 03:01:17 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c Log: Remove call to txp_set_filter() from txp_attach(). txp_set_filter() needs the ifp, so you can't call it before doing if_alloc(). Also, there's really no need to call it here anyway: the code I originally ported from OpenBSD incorrectly set the station address only once at device attach time, instead of setting in txp_init(). This meant you couldn't change the address with ifconfig txp0 ether xx:xx:xx:xx:xx:xx. I added the call to txp_set_filter() in txp_init() to correct this, but forgot to remove the call from txp_attach(). Until now, it never mattered. With this fix, the txp driver tests good: txp0: <3Com 3cR990-TX-97 Etherlink with 3XP Processor> port 0xb800-0xb87f mem 0xe6800000-0xe683ffff irq 12 at device 10.0 on pci0 txp0: Ethernet address: 00:01:03:d4:91:4f Revision Changes Path 1.38 +0 -2 src/sys/dev/txp/if_txp.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:08:44 2005 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 5905116A420; Sat, 29 Oct 2005 03:08:44 +0000 (GMT) (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 4FD1C43D49; Sat, 29 Oct 2005 03:08:43 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T38hHH083828; Sat, 29 Oct 2005 03:08:43 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T38hS1083827; Sat, 29 Oct 2005 03:08:43 GMT (envelope-from davidxu) Message-Id: <200510290308.j9T38hS1083827@repoman.freebsd.org> From: David Xu Date: Sat, 29 Oct 2005 03:08: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/lib/libthr/arch/i386/include pthread_md.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, 29 Oct 2005 03:08:44 -0000 davidxu 2005-10-29 03:08:43 UTC FreeBSD src repository Modified files: lib/libthr/arch/i386/include pthread_md.h Log: Kill unused variable declaration. Revision Changes Path 1.5 +0 -2 src/lib/libthr/arch/i386/include/pthread_md.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:20:22 2005 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 5D0B716A41F; Sat, 29 Oct 2005 03:20:22 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FC5C43D48; Sat, 29 Oct 2005 03:20:21 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T3KBDD031093; Sat, 29 Oct 2005 13:20:11 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T3K7bv020653; Sat, 29 Oct 2005 13:20:08 +1000 Date: Sat, 29 Oct 2005 13:20:07 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Warner Losh In-Reply-To: <20051028.103709.74689710.imp@bsdimp.com> Message-ID: <20051029124828.C30731@delplex.bde.org> References: <200510261648.27126.peter@wemm.org> <200510281041.44147.jhb@freebsd.org> <20051028160218.GJ41520@cell.sick.ru> <20051028.103709.74689710.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@freebsd.org, jhb@freebsd.org, peter@wemm.org, cvs-src@freebsd.org, cvs-all@freebsd.org, glebius@freebsd.org, linimon@lonesome.com Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.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, 29 Oct 2005 03:20:22 -0000 On Fri, 28 Oct 2005, Warner Losh wrote: > From: Gleb Smirnoff > Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/alpha/isa isa.c src/sys/amd64/amd64 intr_machdep.c src/sys/amd64/include intr_machdep.h src/sys/amd64/isa atpic.c src/sys/arm/arm intr.c src/sys/dev/sio sio.c src/sys/dev/uart uart_kbd_sun.c uart_tty.c ... > Date: Fri, 28 Oct 2005 20:02:18 +0400 > >> John, >> >> On Fri, Oct 28, 2005 at 10:41:42AM -0400, John Baldwin wrote: [peter wrote] >> J> > Of course the real challenge is to make things like the puc device do >> J> > the right thing automatically instead of needing 'options >> J> > PUC_FASTINTR'. >> J> >> J> You mean like sio(4) tried to? The problem is that with the previosu code if >> J> sio(4) went first, it would register INTR_FAST and some later PCI device >> J> wouldn't be able to register its interrupt. There's not an easy solution to >> J> that problem if you want to keep the semantics that INTR_FAST implies >> J> INTR_EXCL. sio never tried to handle this. It just expresses its preference for INTR_FAST by trying for INTR_FAST first, and then expresses its capability of not using INTR_FAST by retrying without INTR_FAST. Higher layers have no support for allowing drivers to do the right thing, which is for the drivers to make just 1 call to bus_setup_intr(), with preferences and capabilities expressed in the flags, and higher layers wiring the interrupts dynamically so as to satisfy the most preferences while staying within capabilities. The PUC_FASTINTR hack handles this poorly. The CY_PCI_FASTINTR hack handles this poorly, but not as poorly as the PUC_FASTINTR hack since it has a smaller scope. The log message that added CY_PUC_FASTINTR points out part of the problem fixed in this commit: % RCS file: /home/ncvs/src/sys/dev/cy/cy_pci.c,v % Working file: cy_pci.c % ---------------------------- % revision 1.10 % date: 1999/01/15 10:00:12; author: bde; state: Exp; lines: +13 -2 % branches: 1.10.2; % Use a fast interrupt handler for the PCI version of the cy driver % if option CY_PCI_FASTINTR is configured and mapping the irq to a % fastintr is possible. Unfortunately, this has to be optional because % pci_map_int_right() doesn't handle the INTR_EXCL flag right -- % INTR_EXCL is honoured even if the interrupt needs to be non-exclusive % for other devices to work. % ---------------------------- >> is it possible to implement such a feature that driver requests INTR_FAST >> and it succeds only and only if interrupt isn't shared? This is exactly what we had. It doesn't work... > Not really. The problem is that you don't know it is shared until it > is too late. You have no way of really knowing if a device uses > interrupts until its driver attaches and requests an interrupt. Given > how we do our device probing, there's not really a chance to > 'downgrade' the FAST to non-FAST later with driver notification (we > can trivially downgrade what we do to ithread, but then the driver > might not actually work). Attaching the interrupt only at open time and detaching it at last-close time would work OK, and is needed anyway to handle timesharing of normal unshareable isa interrupts (RF_TIMESHARE is another problematic higher level flag, since it doesn't do anything to make the necessary timesharing actually work). Problems with this: - the console device now wants its interrupt enabled at all times, and doesn't tuen off the interrupt at the device level on close - programs like getty would keep devices opened and would have to be killed to let the interrupt wiring change - interrupt unwiring doesn't work right, partly due to supporting historical braindamage in ppbus. The interrupt thread should go away on the last detachment from it, but doesn't. ppbus sets up and tears down its interrupt for every user-level i/o, since its timesharing involves a sort of open/close for every i/o. RF_SHAREABLE is another problematic higher level flag. sio doesn't set it for the interrupt resource, so the interrupt should be unshareable, but interrupt sharing works anyway. Bruce From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:27:43 2005 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 E033816A41F; Sat, 29 Oct 2005 03:27:43 +0000 (GMT) (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 96A2743D48; Sat, 29 Oct 2005 03:27:43 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3RhCS084723; Sat, 29 Oct 2005 03:27:43 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3RhTt084722; Sat, 29 Oct 2005 03:27:43 GMT (envelope-from imp) Message-Id: <200510290327.j9T3RhTt084722@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:27: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/dev/pccbb pccbb.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, 29 Oct 2005 03:27:44 -0000 imp 2005-10-29 03:27:43 UTC FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Shut down the card bus bridge hardware on detach. Before we'd just free the resoruces w/o actually turning off the interrupts. This lead to interrupt storms if you were to insert a card after kldunloading the driver. Revision Changes Path 1.133 +14 -6 src/sys/dev/pccbb/pccbb.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:36:01 2005 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 46BBA16A41F; Sat, 29 Oct 2005 03:36:01 +0000 (GMT) (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 03F3C43D46; Sat, 29 Oct 2005 03:36:01 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3a01W085136; Sat, 29 Oct 2005 03:36:00 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3a0qA085135; Sat, 29 Oct 2005 03:36:00 GMT (envelope-from imp) Message-Id: <200510290336.j9T3a0qA085135@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:36:00 +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/pccbb pccbb.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, 29 Oct 2005 03:36:01 -0000 imp 2005-10-29 03:36:00 UTC FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Shutdown a little better by commenting the shutdown code and acknowledging any interrupts after we turn off the interrupt mask. Revision Changes Path 1.134 +9 -4 src/sys/dev/pccbb/pccbb.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:48:24 2005 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 CCAEB16A41F; Sat, 29 Oct 2005 03:48:24 +0000 (GMT) (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 8B08843D45; Sat, 29 Oct 2005 03:48:24 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3mOLB085645; Sat, 29 Oct 2005 03:48:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3mOes085644; Sat, 29 Oct 2005 03:48:24 GMT (envelope-from imp) Message-Id: <200510290348.j9T3mOes085644@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:48: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/sys/dev/pccard pccarddevs 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, 29 Oct 2005 03:48:25 -0000 imp 2005-10-29 03:48:24 UTC FreeBSD src repository Modified files: sys/dev/pccard pccarddevs Log: Add Global Village lan modem. Add Billionton LNA-100B[1] Reported by: [1] Alan newsletter at acsoftware dot org Revision Changes Path 1.121 +6 -2 src/sys/dev/pccard/pccarddevs From owner-cvs-src@FreeBSD.ORG Sat Oct 29 03:49:45 2005 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 54D2B16A41F; Sat, 29 Oct 2005 03:49:45 +0000 (GMT) (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 1279C43D45; Sat, 29 Oct 2005 03:49:45 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T3nihB085694; Sat, 29 Oct 2005 03:49:44 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T3ni0L085693; Sat, 29 Oct 2005 03:49:44 GMT (envelope-from imp) Message-Id: <200510290349.j9T3ni0L085693@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 03:49: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/dev/ed if_ed_pccard.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, 29 Oct 2005 03:49:45 -0000 imp 2005-10-29 03:49:44 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed_pccard.c Log: Add Billionton LNA-100B variation that Alan reported in arch. [1] Also add Global Village lan modem, even though I'm unsure if it works. Reported by: Alan newsletter at acsoftware dot org Revision Changes Path 1.109 +3 -1 src/sys/dev/ed/if_ed_pccard.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 04:03:32 2005 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 6387216A41F; Sat, 29 Oct 2005 04:03:32 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from speedfactory.net (mail5.speedfactory.net [66.23.216.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD2A843D45; Sat, 29 Oct 2005 04:03:31 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from server.baldwin.cx (unverified [66.23.211.162]) by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 986705 for multiple; Sat, 29 Oct 2005 00:01:28 -0400 Received: from zion.baldwin.cx (zion.baldwin.cx [192.168.0.7]) (authenticated bits=0) by server.baldwin.cx (8.13.1/8.13.1) with ESMTP id j9T43RtT012674; Sat, 29 Oct 2005 00:03:27 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Bill Paul Date: Sat, 29 Oct 2005 00:03:24 -0400 User-Agent: KMail/1.8 References: <200510290301.j9T31H3P083494@repoman.freebsd.org> In-Reply-To: <200510290301.j9T31H3P083494@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200510290003.25709.jhb@FreeBSD.org> X-Spam-Status: No, score=-2.8 required=4.2 tests=ALL_TRUSTED autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on server.baldwin.cx X-Server: High Performance Mail Server - http://surgemail.com r=100 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/txp if_txp.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, 29 Oct 2005 04:03:32 -0000 On Friday 28 October 2005 11:01 pm, Bill Paul wrote: > wpaul 2005-10-29 03:01:17 UTC > > FreeBSD src repository > > Modified files: > sys/dev/txp if_txp.c > Log: > Remove call to txp_set_filter() from txp_attach(). txp_set_filter() nee= ds > the ifp, so you can't call it before doing if_alloc(). Also, there's > really no need to call it here anyway: the code I originally ported from > OpenBSD incorrectly set the station address only once at device attach > time, instead of setting in txp_init(). This meant you couldn't change > the address with ifconfig txp0 ether xx:xx:xx:xx:xx:xx. I added the > call to txp_set_filter() in txp_init() to correct this, but forgot to > remove the call from txp_attach(). Until now, it never mattered. > > With this fix, the txp driver tests good: > > txp0: <3Com 3cR990-TX-97 Etherlink with 3XP Processor> port 0xb800-0xb8= 7f > mem 0xe6800000-0xe683ffff irq 12 at device 10.0 on pci0 txp0: Ethernet > address: 00:01:03:d4:91:4f Thanks again for testing and fixing the bogons. =2D-=20 John Baldwin =A0<>< =A0http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" =A0=3D =A0http://www.FreeBSD.org From owner-cvs-src@FreeBSD.ORG Sat Oct 29 04:30:00 2005 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 27BCD16A41F; Sat, 29 Oct 2005 04:30:00 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7430143D46; Sat, 29 Oct 2005 04:29:59 +0000 (GMT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T4TwbZ007401; Sat, 29 Oct 2005 14:29:58 +1000 Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3) with ESMTP id j9T4TtDZ028231; Sat, 29 Oct 2005 14:29:56 +1000 Date: Sat, 29 Oct 2005 14:29:55 +1000 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: John Baldwin In-Reply-To: <200510281033.48001.jhb@freebsd.org> Message-ID: <20051029140403.O30901@delplex.bde.org> References: <200510281045.j9SAjJmR096150@repoman.freebsd.org> <200510281033.48001.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@freebsd.org, Stefan Farfeleder , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/bin/sh memalloc.c memalloc.h miscbltin.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, 29 Oct 2005 04:30:00 -0000 On Fri, 28 Oct 2005, John Baldwin wrote: > On Friday 28 October 2005 06:45 am, Stefan Farfeleder wrote: >> stefanf 2005-10-28 10:45:19 UTC >> >> FreeBSD src repository >> >> Modified files: >> bin/sh memalloc.c memalloc.h miscbltin.c >> Log: >> Protect malloc, realloc and free calls with INT{ON,OFF} directly in >> chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the >> signal handler using longjmp which is obviously a bad idea during malloc >> calls. >> >> Note: I think there is still a small race here because volatile >> sig_atomic_t only guarantees atomic reads and writes while we're doing >> increments and decrements. Stefan should know that only atomic writes are guaranteed, but there seems to be no problem in practice since the inc/dec is not done in signal handlers (never?) and atomic reads work in practice. From n869.txt: % [#2] The type defined is % % sig_atomic_t % % which is the (possibly volatile-qualified) integer type of % an object that can be accessed as an atomic entity, even in ^^^^^^^^ This may require atomic reads to work... % the presence of asynchronous interrupts. % % [#5] If the signal occurs other than as the result of % calling the abort or raise function, the behavior is % undefined if the signal handler refers to any object with ^^^^^^^^^ % static storage duration other than by assigning a value to ^^^^^^^^^ % an object declared as volatile sig_atomic_t, or the signal ...but I think this has precedence. sh (ab)uses "volatile sig_atomic_t" for exactly the opposite of what it is for. Normally signal handlers set a flag and the flag must be volatile so that non-signal-handling code sees it changing, but in sh it is non-signal-handling-code that sets the flag and signal-handling code that reads the flag. The standard doesn't cover this, except to say that the reference to the flag in the signal handler gives undefined behaviour since the reference is not an assignment. Volatility makes no difference as far as the standard says -- the behaviour is still undefined. Volatility may be needed in theory but not in practice since there is s sequence point after the assignment in INTOFF and compilers can't defer assignments to globals for very long since they don't know if other functions access the globals (especially if the accesses are for undefined behaviour in signal handlers). >> Protect a setmode call with INT{ON,OFF} as it calls malloc internally. >> >> PR: 45478 >> Patch from: Nate Eldredge > > If you are just doing a simple reference count you can use an int and use > either the refcount API from sys/refcount.h or the atomic_foo_int() > operations directly from machine/atomic.h. Those should all work fine in > userland. I think this is not needed in sh, since it doesn't matter if a signal handler sees an in-between count. Bruce From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:00:26 2005 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 B355A16A41F; Sat, 29 Oct 2005 05:00:26 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 612EF43D46; Sat, 29 Oct 2005 05:00:26 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T50Qrl096206; Sat, 29 Oct 2005 05:00:26 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T50QcV096205; Sat, 29 Oct 2005 05:00:26 GMT (envelope-from yar) Message-Id: <200510290500.j9T50QcV096205@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:00: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/etc/rc.d ppp 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, 29 Oct 2005 05:00:27 -0000 yar 2005-10-29 05:00:25 UTC FreeBSD src repository Modified files: etc/rc.d ppp Log: Transforming "ppp-user" into just "ppp", step 2: This file has been repo-copied from src/etc/rc.d/ppp-user. (Forced commit.) Revision Changes Path 1.11 +0 -0 src/etc/rc.d/ppp From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:05:52 2005 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 F05C116A41F; Sat, 29 Oct 2005 05:05:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9949443D45; Sat, 29 Oct 2005 05:05:52 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T55qvN096472; Sat, 29 Oct 2005 05:05:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T55qQ9096471; Sat, 29 Oct 2005 05:05:52 GMT (envelope-from yar) Message-Id: <200510290505.j9T55qQ9096471@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:05: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/etc/rc.d 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, 29 Oct 2005 05:05:53 -0000 yar 2005-10-29 05:05:52 UTC FreeBSD src repository Modified files: etc/rc.d Makefile Log: Transforming "ppp-user" into just "ppp", step 3: Install "ppp" (just repocopied) instead of "ppp-user". Revision Changes Path 1.59 +1 -1 src/etc/rc.d/Makefile From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:08:00 2005 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 EF23616A420; Sat, 29 Oct 2005 05:08:00 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A29A343D4C; Sat, 29 Oct 2005 05:08:00 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T580Vn096557; Sat, 29 Oct 2005 05:08:00 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5801K096556; Sat, 29 Oct 2005 05:08:00 GMT (envelope-from yar) Message-Id: <200510290508.j9T5801K096556@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:08:00 +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/etc netstart 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, 29 Oct 2005 05:08:01 -0000 yar 2005-10-29 05:08:00 UTC FreeBSD src repository Modified files: etc netstart Log: Transforming "ppp-user" into just "ppp", step 4: The legacy script "/etc/netstart" will start "ppp", not "ppp-user". Revision Changes Path 1.66 +1 -1 src/etc/netstart From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:12:16 2005 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 42FA816A41F; Sat, 29 Oct 2005 05:12:16 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B72D43D6B; Sat, 29 Oct 2005 05:12:14 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5CExI096771; Sat, 29 Oct 2005 05:12:14 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5CETj096770; Sat, 29 Oct 2005 05:12:14 GMT (envelope-from yar) Message-Id: <200510290512.j9T5CETj096770@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05: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/etc/rc.d ppp-user 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, 29 Oct 2005 05:12:16 -0000 yar 2005-10-29 05:12:14 UTC FreeBSD src repository Removed files: etc/rc.d ppp-user Log: Transforming "ppp-user" into just "ppp", step 5: Finally, delete the old, unfittingly named file "ppp-user". Revision Changes Path 1.11 +0 -49 src/etc/rc.d/ppp-user (dead) From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:27:32 2005 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 B3BE016A41F; Sat, 29 Oct 2005 05:27:32 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 718EA43D45; Sat, 29 Oct 2005 05:27:32 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5RW7M097393; Sat, 29 Oct 2005 05:27:32 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5RWfW097392; Sat, 29 Oct 2005 05:27:32 GMT (envelope-from yar) Message-Id: <200510290527.j9T5RWfW097392@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 29 Oct 2005 05:27:32 +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 UPDATING 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, 29 Oct 2005 05:27:32 -0000 yar 2005-10-29 05:27:32 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc UPDATING Log: Record renaming rc.d/ppp-user to rc.d/ppp. Revision Changes Path 1.21 +2 -0 src/ObsoleteFiles.inc 1.423 +5 -0 src/UPDATING From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:49:07 2005 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 2308516A41F; Sat, 29 Oct 2005 05:49:07 +0000 (GMT) (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 D443743D48; Sat, 29 Oct 2005 05:49:06 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5n6cR098303; Sat, 29 Oct 2005 05:49:06 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5n67G098302; Sat, 29 Oct 2005 05:49:06 GMT (envelope-from imp) Message-Id: <200510290549.j9T5n67G098302@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 05:49: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/dev/pci pci.c pcireg.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, 29 Oct 2005 05:49:07 -0000 imp 2005-10-29 05:49:06 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c pcireg.h Log: Use symbolic name rather thanhard coding the cap pointer offset for type two devices. Revision Changes Path 1.302 +1 -1 src/sys/dev/pci/pci.c 1.48 +1 -0 src/sys/dev/pci/pcireg.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 05:52:18 2005 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 A043F16A41F; Sat, 29 Oct 2005 05:52:18 +0000 (GMT) (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 3244E43D46; Sat, 29 Oct 2005 05:52:18 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T5qIwi098557; Sat, 29 Oct 2005 05:52:18 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T5qIcZ098556; Sat, 29 Oct 2005 05:52:18 GMT (envelope-from imp) Message-Id: <200510290552.j9T5qIcZ098556@repoman.freebsd.org> From: Warner Losh Date: Sat, 29 Oct 2005 05:52: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/pci pci.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, 29 Oct 2005 05:52:18 -0000 imp 2005-10-29 05:52:18 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: MFp4: When doing lazy allocation, it turns out that we need to record the actual resource values we received from the system rather than the range we requested. Since we request a range starting at 0, we would record that number. Later, since this == 0, we'd allocate again. However, we wouldn't write the new resource into the BAR. This resulted in a resource leak as well as a BAR that couldn't access the resource at all since rman_get_start, et al, were wrong. MFC After: 1 week (assuming RELENG_6 is open for business) Revision Changes Path 1.303 +3 -0 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 06:38:17 2005 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 5086E16A41F; Sat, 29 Oct 2005 06:38:17 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFB5843D48; Sat, 29 Oct 2005 06:38:13 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6cDvh000279; Sat, 29 Oct 2005 06:38:13 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6cDSK000278; Sat, 29 Oct 2005 06:38:13 GMT (envelope-from scottl) Message-Id: <200510290638.j9T6cDSK000278@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:38: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/sys/ufs/ffs ffs_alloc.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, 29 Oct 2005 06:38:17 -0000 scottl 2005-10-29 06:38:13 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_alloc.c Log: MFC rev 1.136 and 1.137 Submitted by: tegge Approved by: re Revision Changes Path 1.132.2.2 +6 -0 src/sys/ufs/ffs/ffs_alloc.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 06:40:42 2005 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 217EA16A41F; Sat, 29 Oct 2005 06:40:42 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2DE643D5E; Sat, 29 Oct 2005 06:40:41 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6efal000454; Sat, 29 Oct 2005 06:40:41 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6efbv000453; Sat, 29 Oct 2005 06:40:41 GMT (envelope-from scottl) Message-Id: <200510290640.j9T6efbv000453@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:40: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/sys/ufs/ffs ffs_snapshot.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, 29 Oct 2005 06:40:42 -0000 scottl 2005-10-29 06:40:41 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_snapshot.c Log: MFC rev 1.106 - 1.110 Submitted by: tegge Approved by: re Revision Changes Path 1.103.2.2 +50 -58 src/sys/ufs/ffs/ffs_snapshot.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 06:42:25 2005 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 E47EF16A41F; Sat, 29 Oct 2005 06:42:25 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95DD143D46; Sat, 29 Oct 2005 06:42:25 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6gPSM000514; Sat, 29 Oct 2005 06:42:25 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6gPdR000513; Sat, 29 Oct 2005 06:42:25 GMT (envelope-from scottl) Message-Id: <200510290642.j9T6gPdR000513@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:42:25 +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/ufs/ffs ffs_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: Sat, 29 Oct 2005 06:42:26 -0000 scottl 2005-10-29 06:42:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_vfsops.c Log: MFC rev 1.294 Submitted by: tegge Approved by: re Revision Changes Path 1.290.2.4 +1 -3 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 06:43:56 2005 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 1EF4D16A41F; Sat, 29 Oct 2005 06:43:56 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0CA343D45; Sat, 29 Oct 2005 06:43:55 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6ht5p000658; Sat, 29 Oct 2005 06:43:55 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6htJQ000657; Sat, 29 Oct 2005 06:43:55 GMT (envelope-from scottl) Message-Id: <200510290643.j9T6htJQ000657@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:43: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/ufs/ffs ffs_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, 29 Oct 2005 06:43:56 -0000 scottl 2005-10-29 06:43:55 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/ufs/ffs ffs_vnops.c Log: MFC rev 1.158 Submitted by: tegge Approved by: re Revision Changes Path 1.157.2.1 +1 -1 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 06:45:38 2005 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 E7C0D16A41F; Sat, 29 Oct 2005 06:45:38 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6B8E43D45; Sat, 29 Oct 2005 06:45:38 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T6jcJH000774; Sat, 29 Oct 2005 06:45:38 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T6jcCu000773; Sat, 29 Oct 2005 06:45:38 GMT (envelope-from scottl) Message-Id: <200510290645.j9T6jcCu000773@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 06:45: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/sys/kern vfs_bio.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, 29 Oct 2005 06:45:39 -0000 scottl 2005-10-29 06:45:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern vfs_bio.c Log: MFC rev 1.497 Submitted by: tegge Approved by: re Revision Changes Path 1.491.2.4 +1 -2 src/sys/kern/vfs_bio.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 07:00:45 2005 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 D974C16A41F; Sat, 29 Oct 2005 07:00:45 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73CA443D62; Sat, 29 Oct 2005 07:00:45 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T70j9f001443; Sat, 29 Oct 2005 07:00:45 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T70jac001442; Sat, 29 Oct 2005 07:00:45 GMT (envelope-from scottl) Message-Id: <200510290700.j9T70jac001442@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 07:00:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/kern vfs_bio.c src/sys/ufs/ffs ffs_alloc.c ffs_snapshot.c ffs_vfsops.c ffs_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, 29 Oct 2005 07:00:46 -0000 scottl 2005-10-29 07:00:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/kern vfs_bio.c sys/ufs/ffs ffs_alloc.c ffs_snapshot.c ffs_vfsops.c ffs_vnops.c Log: Sync RELENG_6_0 with all of the FFS fixes from Tor. Submitted by: tegge Approved by: re Revision Changes Path 1.491.2.3.2.1 +1 -2 src/sys/kern/vfs_bio.c 1.132.2.1.2.1 +6 -0 src/sys/ufs/ffs/ffs_alloc.c 1.103.2.1.2.1 +50 -58 src/sys/ufs/ffs/ffs_snapshot.c 1.290.2.3.2.1 +1 -3 src/sys/ufs/ffs/ffs_vfsops.c 1.157.4.1 +1 -1 src/sys/ufs/ffs/ffs_vnops.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 07:19:13 2005 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 0DCEE16A41F; Sat, 29 Oct 2005 07:19:13 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B04CD43D49; Sat, 29 Oct 2005 07:19:12 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T7JCGV002346; Sat, 29 Oct 2005 07:19:12 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T7JCef002345; Sat, 29 Oct 2005 07:19:12 GMT (envelope-from stefanf) Message-Id: <200510290719.j9T7JCef002345@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 07:19: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/bin/sh eval.c exec.c exec.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, 29 Oct 2005 07:19:13 -0000 stefanf 2005-10-29 07:19:12 UTC FreeBSD src repository Modified files: bin/sh eval.c exec.c exec.h Log: Forced commit to note the patch for the previous commit was Submitted by: rodrigc Revision Changes Path 1.48 +0 -0 src/bin/sh/eval.c 1.28 +0 -0 src/bin/sh/exec.c 1.14 +0 -0 src/bin/sh/exec.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 08:15:30 2005 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 6FAE516A41F; Sat, 29 Oct 2005 08:15:30 +0000 (GMT) (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 3E46343D46; Sat, 29 Oct 2005 08:15:30 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8FUwG004389; Sat, 29 Oct 2005 08:15:30 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8FU1e004388; Sat, 29 Oct 2005 08:15:30 GMT (envelope-from bde) Message-Id: <200510290815.j9T8FU1e004388@repoman.freebsd.org> From: Bruce Evans Date: Sat, 29 Oct 2005 08:15:30 +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_rem_pio2f.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, 29 Oct 2005 08:15:30 -0000 bde 2005-10-29 08:15:30 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c Log: Start trying to make the float precision trig functions actually worth using under FreeBSD. Before this commit, all float precision functions except exp2f() were implemented using only float precision, apparently because Cygnus needed this in 1993 for embedded systems with slow or inefficient double precision. For FreeBSD, except possibly on systems that do floating point entirely in software (very old i386 and now arm), this just gives a more complicated implementation, many bugs, and usually worse performance for float precision than for double precision. The bugs and worse performance were particulary large in arg reduction for trig functions. We want to divide by an approximation to pi/2 which has as many as 1584 bits, so we should use the widest type that is efficient and/or easy to use, i.e., double. Use fdlibm's __kernel_rem_pio2() to do this as Sun apparently intended. Cygnus's k_rem_pio2f.c is now unused. e_rem_pio2f.c still needs to be separate from e_rem_pio2.c so that it can be optimized for float args. Similarly for long double precision. This speeds up cosf(x) on large args by a factor of about 2. Correct arg reduction on large args is still inherently very slow, so hopefully these args rarely occur in practice. There is much more efficiency to be gained by using double precision to speed up arg reduction on medium and small float args. Revision Changes Path 1.13 +28 -30 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 08:22:10 2005 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 E612F16A41F; Sat, 29 Oct 2005 08:22:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A42C943D46; Sat, 29 Oct 2005 08:22:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T8MAEX004765; Sat, 29 Oct 2005 08:22:10 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T8MAtr004759; Sat, 29 Oct 2005 08:22:10 GMT (envelope-from stefanf) Message-Id: <200510290822.j9T8MAtr004759@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 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/bin/sh sh.1 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, 29 Oct 2005 08:22:11 -0000 stefanf 2005-10-29 08:22:09 UTC FreeBSD src repository Modified files: bin/sh sh.1 Log: Document that read -t timeout returns 1 if the timeout elapses. Revision Changes Path 1.111 +1 -1 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Sat Oct 29 09:13:32 2005 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 678DF16A41F; Sat, 29 Oct 2005 09:13:32 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2253043D46; Sat, 29 Oct 2005 09:13:32 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9T9DVsF014199; Sat, 29 Oct 2005 09:13:32 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9T9DVx5014198; Sat, 29 Oct 2005 09:13:31 GMT (envelope-from obrien) Message-Id: <200510290913.j9T9DVx5014198@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 29 Oct 2005 09:13: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/contrib/gcc/config freebsd-spec.h src/gnu/usr.bin/cc/cc_tools freebsd-native.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, 29 Oct 2005 09:13:32 -0000 obrien 2005-10-29 09:13:31 UTC FreeBSD src repository Modified files: contrib/gcc/config freebsd-spec.h gnu/usr.bin/cc/cc_tools freebsd-native.h Log: Catch up with FreeBSD 7. Revision Changes Path 1.21 +2 -2 src/contrib/gcc/config/freebsd-spec.h 1.25 +1 -1 src/gnu/usr.bin/cc/cc_tools/freebsd-native.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 13:08:36 2005 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 CB2D816A425; Sat, 29 Oct 2005 13:08:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89C8843D45; Sat, 29 Oct 2005 13:08:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TD8aLZ030367; Sat, 29 Oct 2005 13:08:36 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TD8a1v030366; Sat, 29 Oct 2005 13:08:36 GMT (envelope-from stefanf) Message-Id: <200510291308.j9TD8a1v030366@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 13:08:35 +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/sh sh.1 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, 29 Oct 2005 13:08:37 -0000 stefanf 2005-10-29 13:08:35 UTC FreeBSD src repository Modified files: bin/sh sh.1 Log: Document command -v and -V. Glanced at by: simon Revision Changes Path 1.112 +39 -2 src/bin/sh/sh.1 From owner-cvs-src@FreeBSD.ORG Sat Oct 29 13:40:32 2005 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 AD9EA16A425; Sat, 29 Oct 2005 13:40:32 +0000 (GMT) (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 2538C43D45; Sat, 29 Oct 2005 13:40:32 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TDeW5i031643; Sat, 29 Oct 2005 13:40:32 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TDeWPm031642; Sat, 29 Oct 2005 13:40:32 GMT (envelope-from davidxu) Message-Id: <200510291340.j9TDeWPm031642@repoman.freebsd.org> From: David Xu Date: Sat, 29 Oct 2005 13:40: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/lib/libthr/arch/arm/arm pthread_md.c src/lib/libthr/arch/arm/include pthread_md.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, 29 Oct 2005 13:40:33 -0000 davidxu 2005-10-29 13:40:31 UTC FreeBSD src repository Modified files: lib/libthr/arch/arm/arm pthread_md.c lib/libthr/arch/arm/include pthread_md.h Log: Remove unused variable. Reviewed by: cognet Revision Changes Path 1.2 +0 -4 src/lib/libthr/arch/arm/arm/pthread_md.c 1.3 +0 -5 src/lib/libthr/arch/arm/include/pthread_md.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 15:05:25 2005 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 B8F9E16A427; Sat, 29 Oct 2005 15:05:25 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 718D943D48; Sat, 29 Oct 2005 15:05:25 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TF5PKb037456; Sat, 29 Oct 2005 15:05:25 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TF5PHh037455; Sat, 29 Oct 2005 15:05:25 GMT (envelope-from scottl) Message-Id: <200510291505.j9TF5PHh037455@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 15:05:25 +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/aac aac.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, 29 Oct 2005 15:05:26 -0000 scottl 2005-10-29 15:05:25 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/aac aac.c Log: MFC rev 1.113 Submitted by: delphij Approved by: re Revision Changes Path 1.109.2.3 +3 -0 src/sys/dev/aac/aac.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 15:13:07 2005 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 BCE4E16A41F; Sat, 29 Oct 2005 15:13:07 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BB3843D46; Sat, 29 Oct 2005 15:13:07 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFD7hG037897; Sat, 29 Oct 2005 15:13:07 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFD7lW037896; Sat, 29 Oct 2005 15:13:07 GMT (envelope-from scottl) Message-Id: <200510291513.j9TFD7lW037896@repoman.freebsd.org> From: Scott Long Date: Sat, 29 Oct 2005 15:13:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/sys/dev/aac aac.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, 29 Oct 2005 15:13:07 -0000 scottl 2005-10-29 15:13:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) sys/dev/aac aac.c Log: MFC rev 1.113 Submitted by delphij Approved by: re Revision Changes Path 1.109.2.1.2.2 +3 -0 src/sys/dev/aac/aac.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 15:25:02 2005 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 F375716A41F; Sat, 29 Oct 2005 15:25:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9A4F43D48; Sat, 29 Oct 2005 15:25:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFP1W4038365; Sat, 29 Oct 2005 15:25:01 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFP13Z038364; Sat, 29 Oct 2005 15:25:01 GMT (envelope-from krion) Message-Id: <200510291525.j9TFP13Z038364@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:25: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/usr.sbin/pkg_install/delete main.c src/usr.sbin/pkg_install/info main.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, 29 Oct 2005 15:25:02 -0000 krion 2005-10-29 15:25:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/delete main.c usr.sbin/pkg_install/info main.c Log: MFC: delete/main.c:1.27 info/main.c:1.48 Fix pkg_info(1) and pkg_delete(1) to handle properly packages which names start with a digit. PR: bin/76858 Submitted by: Matthew D. Fuller Approved by: re Revision Changes Path 1.26.8.1 +1 -1 src/usr.sbin/pkg_install/delete/main.c 1.47.2.1 +1 -1 src/usr.sbin/pkg_install/info/main.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 15:27:12 2005 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 A5F7616A41F; Sat, 29 Oct 2005 15:27:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6039C43D45; Sat, 29 Oct 2005 15:27:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFRCWc038499; Sat, 29 Oct 2005 15:27:12 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFRCRu038498; Sat, 29 Oct 2005 15:27:12 GMT (envelope-from krion) Message-Id: <200510291527.j9TFRCRu038498@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:27:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/usr.sbin/pkg_install/delete main.c src/usr.sbin/pkg_install/info main.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, 29 Oct 2005 15:27:12 -0000 krion 2005-10-29 15:27:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/pkg_install/delete main.c usr.sbin/pkg_install/info main.c Log: MFC: delete/main.c:1.27 info/main.c:1.48 Fix pkg_info(1) and pkg_delete(1) to handle properly packages which names start with a digit. PR: bin/76858 Submitted by: Matthew D. Fuller Approved by: re Revision Changes Path 1.26.10.1 +1 -1 src/usr.sbin/pkg_install/delete/main.c 1.47.4.1 +1 -1 src/usr.sbin/pkg_install/info/main.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 15:45:54 2005 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 805AA16A41F; Sat, 29 Oct 2005 15:45:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 513FF43D48; Sat, 29 Oct 2005 15:45:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFjsBB039155; Sat, 29 Oct 2005 15:45:54 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFjsfs039154; Sat, 29 Oct 2005 15:45:54 GMT (envelope-from krion) Message-Id: <200510291545.j9TFjsfs039154@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:45: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/usr.sbin/pkg_install/version perform.c test-pkg_version.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: Sat, 29 Oct 2005 15:45:54 -0000 krion 2005-10-29 15:45:53 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/pkg_install/version perform.c test-pkg_version.sh Log: MFC: perform.c:1.14 test-pkg_version.sh:1.6 date: 2005/10/10 12:35:30; author: krion; state: Exp; lines: +9 -4 * pkg_version(1) exits if INDEX files is not found and -I is not specified. The result is that the package will be listed with a '?' as if it was not found within the INDEX file, so fix this behaviour. * Remove trailing spaces. PR: bin/87136 Submitted by: Sean Farley Approved by: re Revision Changes Path 1.12.2.2 +10 -5 src/usr.sbin/pkg_install/version/perform.c 1.5.8.1 +1 -1 src/usr.sbin/pkg_install/version/test-pkg_version.sh From owner-cvs-src@FreeBSD.ORG Sat Oct 29 15:49:02 2005 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 2FCFF16A421; Sat, 29 Oct 2005 15:49:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B551443D49; Sat, 29 Oct 2005 15:49:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TFn1Dg039289; Sat, 29 Oct 2005 15:49:01 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TFn1qV039288; Sat, 29 Oct 2005 15:49:01 GMT (envelope-from krion) Message-Id: <200510291549.j9TFn1qV039288@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 29 Oct 2005 15:49:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6_0 Cc: Subject: cvs commit: src/usr.sbin/pkg_install/version perform.c test-pkg_version.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: Sat, 29 Oct 2005 15:49:02 -0000 krion 2005-10-29 15:49:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_0) usr.sbin/pkg_install/version perform.c test-pkg_version.sh Log: MFC: perform.c:1.14 test-pkg_version.sh:1.6 date: 2005/10/10 12:35:30; author: krion; state: Exp; lines: +9 -4 * pkg_version(1) exits if INDEX files is not found and -I is not specified. The result is that the package will be listed with a '?' as if it was not found within the INDEX file, so fix this behaviour. * Remove trailing spaces. PR: bin/87136 Submitted by: Sean Farley Approved by: re Revision Changes Path 1.12.2.1.2.1 +5 -0 src/usr.sbin/pkg_install/version/perform.c 1.5.10.1 +1 -1 src/usr.sbin/pkg_install/version/test-pkg_version.sh From owner-cvs-src@FreeBSD.ORG Sat Oct 29 16:34:50 2005 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 BCF2916A41F; Sat, 29 Oct 2005 16:34:50 +0000 (GMT) (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 910FA43D46; Sat, 29 Oct 2005 16:34:50 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TGYoDm041705; Sat, 29 Oct 2005 16:34:50 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TGYoHC041704; Sat, 29 Oct 2005 16:34:50 GMT (envelope-from bde) Message-Id: <200510291634.j9TGYoHC041704@repoman.freebsd.org> From: Bruce Evans Date: Sat, 29 Oct 2005 16:34: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/lib/msun/src e_rem_pio2f.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, 29 Oct 2005 16:34:50 -0000 bde 2005-10-29 16:34:50 UTC FreeBSD src repository Modified files: lib/msun/src e_rem_pio2f.c Log: Use double precision to simplify and optimize arg reduction for small and medium size args too: instead of conditionally subtracting a float 17+24, 17+17+24 or 17+17+17+24 bit approximation to pi/2, always subtract a double 33+53 bit one. The float version is now closer to the double version than to old versions of itself -- it uses the same 33+53 bit approximation as the simplest cases in the double version, and where the float version had to switch to the slow general case at |x| == 2^7*pi/2, it now switches at |x| == 2^19*pi/2 the same as the double version. This speeds up arg reduction by a factor of 2 for |x| between 3*pi/4 and 2^7*pi/4, and by a factor of 7 for |x| between 2^7*pi/4 and 2^19*pi/4. Revision Changes Path 1.14 +22 -97 src/lib/msun/src/e_rem_pio2f.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 17:14:12 2005 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 25BD316A41F; Sat, 29 Oct 2005 17:14:12 +0000 (GMT) (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 D951F43D46; Sat, 29 Oct 2005 17:14:11 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9THEBp8050911; Sat, 29 Oct 2005 17:14:11 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9THEB8D050910; Sat, 29 Oct 2005 17:14:11 GMT (envelope-from bde) Message-Id: <200510291714.j9THEB8D050910@repoman.freebsd.org> From: Bruce Evans Date: Sat, 29 Oct 2005 17:14: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/lib/msun/src math_private.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, 29 Oct 2005 17:14:12 -0000 bde 2005-10-29 17:14:11 UTC FreeBSD src repository Modified files: lib/msun/src math_private.h Log: Implement inline functions to give the complex result x+I*y from float or double args x and y. x+I*y cannot be used directly yet due to compiler bugs. Submitted by: Steve Kargl Revision Changes Path 1.18 +42 -0 src/lib/msun/src/math_private.h From owner-cvs-src@FreeBSD.ORG Sat Oct 29 17:46:57 2005 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 19C2216A420; Sat, 29 Oct 2005 17:46:57 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from viefep19-int.chello.at (viefep11-int.chello.at [213.46.255.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9545943D48; Sat, 29 Oct 2005 17:46:55 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at ([213.47.85.26]) by viefep19-int.chello.at (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20051029174653.SUZP22340.viefep19-int.chello.at@wombat.fafoe.narf.at>; Sat, 29 Oct 2005 19:46:53 +0200 Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 1D520238; Sat, 29 Oct 2005 19:46:51 +0200 (CEST) Date: Sat, 29 Oct 2005 19:46:50 +0200 From: Stefan Farfeleder To: Bruce Evans Message-ID: <20051029174645.GF21302@wombat.fafoe.narf.at> References: <200510281045.j9SAjJmR096150@repoman.freebsd.org> <200510281033.48001.jhb@freebsd.org> <20051029140403.O30901@delplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051029140403.O30901@delplex.bde.org> User-Agent: Mutt/1.5.11 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/bin/sh memalloc.c memalloc.h miscbltin.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, 29 Oct 2005 17:46:57 -0000 On Sat, Oct 29, 2005 at 02:29:55PM +1000, Bruce Evans wrote: > On Fri, 28 Oct 2005, John Baldwin wrote: > > >On Friday 28 October 2005 06:45 am, Stefan Farfeleder wrote: > >>stefanf 2005-10-28 10:45:19 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> bin/sh memalloc.c memalloc.h miscbltin.c > >> Log: > >> Protect malloc, realloc and free calls with INT{ON,OFF} directly in > >>chkalloc, ckrealloc and ckfree (added), respectively. sh jumps out of the > >>signal handler using longjmp which is obviously a bad idea during malloc > >>calls. > >> > >> Note: I think there is still a small race here because volatile > >>sig_atomic_t only guarantees atomic reads and writes while we're doing > >>increments and decrements. > > Stefan should know that only atomic writes are guaranteed, but there seems > to be no problem in practice since the inc/dec is not done in signal > handlers Yes, after some more thinking I agree that the current code is fine. Stefan From owner-cvs-src@FreeBSD.ORG Sat Oct 29 17:57:05 2005 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 966E216A421 for ; Sat, 29 Oct 2005 17:57:05 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from mail1.fluidhosting.com (mail1.fluidhosting.com [204.14.90.61]) by mx1.FreeBSD.org (Postfix) with SMTP id 425CC43D4C for ; Sat, 29 Oct 2005 17:57:04 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 66939 invoked by uid 399); 29 Oct 2005 17:57:03 -0000 Received: from unknown (HELO ?192.168.1.101?) (dougb@dougbarton.net@127.0.0.1) by 127.0.0.1 with SMTP; 29 Oct 2005 17:57:03 -0000 Message-ID: <4363B7ED.8060300@FreeBSD.org> Date: Sat, 29 Oct 2005 10:57:01 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Mozilla Thunderbird 1.0.7 (X11/20050929) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Yar Tikhiy References: <200510281655.j9SGtcqC033700@repoman.freebsd.org> In-Reply-To: <200510281655.j9SGtcqC033700@repoman.freebsd.org> X-Enigmail-Version: 0.93.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/etc/rc.d devd ipmon newsyslog powerd sendmail 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, 29 Oct 2005 17:57:05 -0000 Yar Tikhiy wrote: > yar 2005-10-28 16:55:38 UTC > > FreeBSD src repository > > Modified files: > etc/rc.d devd ipmon newsyslog powerd sendmail > Log: > Use ${name} in pathnames where appropriate. > The sendmail script already was on this way, > but it didn't reach the end of it yet. > > Revision Changes Path > 1.8 +1 -1 src/etc/rc.d/devd > 1.14 +1 -1 src/etc/rc.d/ipmon > 1.4 +1 -1 src/etc/rc.d/newsyslog > 1.3 +1 -1 src/etc/rc.d/powerd > 1.16 +3 -3 src/etc/rc.d/sendmail > > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/devd.diff?&r1=1.7&r2=1.8&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/ipmon.diff?&r1=1.13&r2=1.14&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/newsyslog.diff?&r1=1.3&r2=1.4&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/powerd.diff?&r1=1.2&r2=1.3&f=h > http://www.FreeBSD.org/cgi/cvsweb.cgi/src/etc/rc.d/sendmail.diff?&r1=1.15&r2=1.16&f=h Were there reasons other than semantic correctness for this change? I am generally hesitant to churn things like this where nothing is broken. Doug -- This .signature sanitized for your protection From owner-cvs-src@FreeBSD.ORG Sat Oct 29 18:41:36 2005 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 9325E16A41F; Sat, 29 Oct 2005 18:41:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5009D43D58; Sat, 29 Oct 2005 18:41:36 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9TIfapX055208; Sat, 29 Oct 2005 18:41:36 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9TIfabS055202; Sat, 29 Oct 2005 18:41:36 GMT (envelope-from stefanf) Message-Id: <200510291841.j9TIfabS055202@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 29 Oct 2005 18:41: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/sh options.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, 29 Oct 2005 18:41:36 -0000 stefanf 2005-10-29 18:41:36 UTC FreeBSD src repository Modified files: bin/sh options.c Log: Include disabled options in the output of 'set +o'. POSIX says the output of set +o can be used to reload previous settings, for this to work disabled options must be printed as well or otherwise options that were set in the mean time won't be turned off. To avoid an excessively long output line I formatted the output to print only six options per line. Submitted by: Jilles Tjoelker PR: 73500 Revision Changes Path 1.24 +8 -11 src/bin/sh/options.c From owner-cvs-src@FreeBSD.ORG Sat Oct 29 18:45:33 2005 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 ADA6A16A420; Sat, 29 Oct 2005 18:45:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 377FC43D48; Sat, 29 Oct 2005 18:45:33 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EVvhs-0006v2-9u; Sat, 29 Oct 2005 19:45:32 +0100 Date: Sat, 29 Oct 2005 19:45:32 +0100 From: Ceri Davies To: Brooks Davis Message-ID: <20051029184532.GP99857@submonkey.net> Mail-Followup-To: Ceri Davies , Brooks Davis , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200510282247.j9SMlepi063537@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7AwgMNpd3VkAVXjS" Content-Disposition: inline In-Reply-To: <200510282247.j9SMlepi063537@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/vipw vipw.8 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, 29 Oct 2005 18:45:33 -0000 --7AwgMNpd3VkAVXjS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 28, 2005 at 10:47:40PM +0000, Brooks Davis wrote: > brooks 2005-10-28 22:47:40 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/vipw vipw.8=20 > Log: > s/insure/ensure/ in previous commit. My dictionary and m-w.com say they > are synonymous, but ensure seems slightly closer and does not have the > connotation of buying insurance. > =20 > Reported by: Jason McIntyre Hah! I was going to whine about this too, but let it slide (again, due to the dictionary telling me it was OK). Good to see I have cover for those days where I don't feel all that pedantic :) Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --7AwgMNpd3VkAVXjS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY8NMocfcwTS3JF8RAuDWAJ9g1KJWtI/2TbJgMLOwSVIV0mvRrwCgisri GDednkkD+65McaAEj63weVg= =udbw -----END PGP SIGNATURE----- --7AwgMNpd3VkAVXjS-- From owner-cvs-src@FreeBSD.ORG Sat Oct 29 18:48:59 2005 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 3C7AB16A41F; Sat, 29 Oct 2005 18:48:59 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from shrike.submonkey.net (cpc2-cdif2-3-1-cust208.cdif.cable.ntl.com [82.31.78.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B5343D4C; Sat, 29 Oct 2005 18:48:58 +0000 (GMT) (envelope-from ceri@submonkey.net) Received: from ceri by shrike.submonkey.net with local (Exim 4.54 (FreeBSD)) id 1EVvlB-000AYG-Lj; Sat, 29 Oct 2005 19:48:57 +0100 Date: Sat, 29 Oct 2005 19:48:57 +0100 From: Ceri Davies To: "David E. O'Brien" Message-ID: <20051029184857.GQ99857@submonkey.net> Mail-Followup-To: Ceri Davies , "David E. O'Brien" , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200510290913.j9T9DVx5014198@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KaGhPsiNaI6/sRd6" Content-Disposition: inline In-Reply-To: <200510290913.j9T9DVx5014198@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.11 Sender: Ceri Davies Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/gcc/config freebsd-spec.h src/gnu/usr.bin/cc/cc_tools freebsd-native.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, 29 Oct 2005 18:48:59 -0000 --KaGhPsiNaI6/sRd6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 09:13:31AM +0000, David E. O'Brien wrote: > obrien 2005-10-29 09:13:31 UTC >=20 > FreeBSD src repository >=20 > Modified files: > contrib/gcc/config freebsd-spec.h=20 > gnu/usr.bin/cc/cc_tools freebsd-native.h=20 > Log: > Catch up with FreeBSD 7. > | @@ -7,7 +7,7 @@ > | #define FREEBSD_NATIVE 1 > | =20 > | /* Fake out gcc/config/freebsd.h. */ > | -#define FBSD_MAJOR 5 > | +#define FBSD_MAJOR 7 Is it bad that this is still set to 5 in RELENG_6? Ceri --=20 Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -- Einstein (attrib.) --KaGhPsiNaI6/sRd6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY8QZocfcwTS3JF8RAqmOAKCFviu40sbVb/pmbNa3HMnsIg3Q3wCcCX86 XWBMMh8aocrE2Tct0OykOvY= =861f -----END PGP SIGNATURE----- --KaGhPsiNaI6/sRd6-- From owner-cvs-src@FreeBSD.ORG Sat Oct 29 19:44:35 2005 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 6AD0C16A41F; Sat, 29 Oct 2005 19:44:35 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27CAB43D45; Sat, 29 Oct 2005 19:44:35 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 180361A3C1A; Sat, 29 Oct 2005 12:44:35 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6960D51534; Sat, 29 Oct 2005 15:44:34 -0400 (EDT) Date: Sat, 29 Oct 2005 15:44:34 -0400 From: Kris Kennaway To: Ceri Davies , "David E. O'Brien" , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051029194434.GC33698@xor.obsecurity.org> References: <200510290913.j9T9DVx5014198@repoman.freebsd.org> <20051029184857.GQ99857@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ghzN8eJ9Qlbqn3iT" Content-Disposition: inline In-Reply-To: <20051029184857.GQ99857@submonkey.net> User-Agent: Mutt/1.4.2.1i Cc: Subject: Re: cvs commit: src/contrib/gcc/config freebsd-spec.h src/gnu/usr.bin/cc/cc_tools freebsd-native.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, 29 Oct 2005 19:44:35 -0000 --ghzN8eJ9Qlbqn3iT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 29, 2005 at 07:48:57PM +0100, Ceri Davies wrote: > On Sat, Oct 29, 2005 at 09:13:31AM +0000, David E. O'Brien wrote: > > obrien 2005-10-29 09:13:31 UTC > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > contrib/gcc/config freebsd-spec.h=20 > > gnu/usr.bin/cc/cc_tools freebsd-native.h=20 > > Log: > > Catch up with FreeBSD 7. >=20 > > | @@ -7,7 +7,7 @@ > > | #define FREEBSD_NATIVE 1 > > | =20 > > | /* Fake out gcc/config/freebsd.h. */ > > | -#define FBSD_MAJOR 5 > > | +#define FBSD_MAJOR 7 >=20 > Is it bad that this is still set to 5 in RELENG_6? We need to see the impact of this on ports first. Kris --ghzN8eJ9Qlbqn3iT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFDY9EhWry0BWjoQKURAn0CAJ0RJlaHwlkME9jbsPtCW4YEvEmM+ACgulce 4dESOhytVc1/yoO9f8BJEzk= =GqPZ -----END PGP SIGNATURE----- --ghzN8eJ9Qlbqn3iT-- From owner-cvs-src@FreeBSD.ORG Sat Oct 29 22:55:24 2005 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 5C68616A41F; Sat, 29 Oct 2005 22:55:24 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id B902143D45; Sat, 29 Oct 2005 22:55:23 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr15.xs4all.nl (8.13.3/8.13.3) with ESMTP id j9TMtJ3C093686; Sun, 30 Oct 2005 00:55:20 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.13.4/8.13.3) with ESMTP id j9TMtJ64009766; Sun, 30 Oct 2005 00:55:19 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.13.4/8.13.1/Submit) id j9TMtJMp009765; Sun, 30 Oct 2005 00:55:19 +0200 (CEST) (envelope-from wb) Date: Sun, 30 Oct 2005 00:55:19 +0200 From: Wilko Bulte To: Ceri Davies , Brooks Davis , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20051029225519.GA9726@freebie.xs4all.nl> References: <200510282247.j9SMlepi063537@repoman.freebsd.org> <20051029184532.GP99857@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20051029184532.GP99857@submonkey.net> X-OS: FreeBSD 6.0-RC1 User-Agent: Mutt/1.5.9i X-Virus-Scanned: by XS4ALL Virus Scanner Cc: Subject: Re: cvs commit: src/usr.sbin/vipw vipw.8 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, 29 Oct 2005 22:55:24 -0000 On Sat, Oct 29, 2005 at 07:45:32PM +0100, Ceri Davies wrote.. > On Fri, Oct 28, 2005 at 10:47:40PM +0000, Brooks Davis wrote: > > brooks 2005-10-28 22:47:40 UTC > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/vipw vipw.8 > > Log: > > s/insure/ensure/ in previous commit. My dictionary and m-w.com say they > > are synonymous, but ensure seems slightly closer and does not have the > > connotation of buying insurance. > > > > Reported by: Jason McIntyre > > Hah! I was going to whine about this too, but let it slide (again, due > to the dictionary telling me it was OK). Good to see I have cover for > those days where I don't feel all that pedantic :) s/insure/make sure/ :-) -- Wilko Bulte wilko@FreeBSD.org