From owner-cvs-src@FreeBSD.ORG Sun Sep 9 00:07:19 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D73316A417; Sun, 9 Sep 2007 00:07:19 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 23DFA13C465; Sun, 9 Sep 2007 00:07:19 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8907JPm019133; Sun, 9 Sep 2007 00:07:19 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8907ICg019132; Sun, 9 Sep 2007 00:07:18 GMT (envelope-from kientzle) Message-Id: <200709090007.l8907ICg019132@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 9 Sep 2007 00:07: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/usr.bin/tar bsdtar.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 00:07:19 -0000 kientzle 2007-09-09 00:07:18 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c Log: Add --posix as a synonym for --format=pax, for GNU tar compatibility. Approved by: re (bmah) Revision Changes Path 1.77 +5 -0 src/usr.bin/tar/bsdtar.c From owner-cvs-src@FreeBSD.ORG Sun Sep 9 01:28:03 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1F4216A469; Sun, 9 Sep 2007 01:28:03 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id ACDBB13C459; Sun, 9 Sep 2007 01:28:03 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l891S31Z034320; Sun, 9 Sep 2007 01:28:03 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l891S31S034319; Sun, 9 Sep 2007 01:28:03 GMT (envelope-from kmacy) Message-Id: <200709090128.l891S31S034319@repoman.freebsd.org> From: Kip Macy Date: Sun, 9 Sep 2007 01:28: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/cxgb Makefile src/sys/dev/cxgb cxgb_adapter.h cxgb_main.c cxgb_sge.c t3fw-4.5.0.bin.gz.uu t3fw-4.7.0.bin.gz.uu src/sys/dev/cxgb/common cxgb_common.h cxgb_ctl_defs.h cxgb_sge_defs.h cxgb_t3_hw.c cxgb_vsc7323.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 01:28:03 -0000 kmacy 2007-09-09 01:28:03 UTC FreeBSD src repository Modified files: sys/modules/cxgb Makefile sys/dev/cxgb cxgb_adapter.h cxgb_main.c cxgb_sge.c sys/dev/cxgb/common cxgb_common.h cxgb_ctl_defs.h cxgb_sge_defs.h cxgb_t3_hw.c cxgb_vsc7323.c cxgb_xgmac.c Added files: sys/dev/cxgb t3fw-4.7.0.bin.gz.uu Removed files: sys/dev/cxgb t3fw-4.5.0.bin.gz.uu Log: - fix qset to port binding as a proper fix for the problems encountered on the 4-port - fix the use after free seen when sending packets small enough to fit as an immediate and bpf peers are present - update to firmware rev 4.7 along with various small vendor fixes Supported by: Chelsio Approved by: re (blanket) MFC after: 3 days Revision Changes Path 1.7 +4 -1 src/sys/dev/cxgb/common/cxgb_common.h 1.3 +5 -5 src/sys/dev/cxgb/common/cxgb_ctl_defs.h 1.3 +4 -0 src/sys/dev/cxgb/common/cxgb_sge_defs.h 1.8 +129 -41 src/sys/dev/cxgb/common/cxgb_t3_hw.c 1.3 +26 -8 src/sys/dev/cxgb/common/cxgb_vsc7323.c 1.7 +7 -8 src/sys/dev/cxgb/common/cxgb_xgmac.c 1.18 +2 -1 src/sys/dev/cxgb/cxgb_adapter.h 1.33 +40 -23 src/sys/dev/cxgb/cxgb_main.c 1.29 +10 -11 src/sys/dev/cxgb/cxgb_sge.c 1.2 +0 -442 src/sys/dev/cxgb/t3fw-4.5.0.bin.gz.uu (dead) 1.1 +451 -0 src/sys/dev/cxgb/t3fw-4.7.0.bin.gz.uu (new) 1.10 +7 -5 src/sys/modules/cxgb/Makefile From owner-cvs-src@FreeBSD.ORG Sun Sep 9 01:32:37 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DE8C16A46C; Sun, 9 Sep 2007 01:32:37 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 04C6413C480; Sun, 9 Sep 2007 01:32:37 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l891WabH034754; Sun, 9 Sep 2007 01:32:36 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l891WauM034753; Sun, 9 Sep 2007 01:32:36 GMT (envelope-from bmah) Message-Id: <200709090132.l891WauM034753@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 9 Sep 2007 01:32: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/release/doc/en_US.ISO8859-1/hardware article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Sep 2007 01:32:37 -0000 bmah 2007-09-09 01:32:36 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware article.sgml Log: Make the introduction to the hardware notes at least vaguely reflect reality. Approved by: re (implicitly) Revision Changes Path 1.323 +4 -4 src/release/doc/en_US.ISO8859-1/hardware/article.sgml From owner-cvs-src@FreeBSD.ORG Sun Sep 9 02:10:54 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E4A116A418; Sun, 9 Sep 2007 02:10:54 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1537013C442; Sun, 9 Sep 2007 02:10:54 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l892AspE038288; Sun, 9 Sep 2007 02:10:54 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l892As3H038287; Sun, 9 Sep 2007 02:10:54 GMT (envelope-from jkoshy) Message-Id: <200709090210.l892As3H038287@repoman.freebsd.org> From: Joseph Koshy Date: Sun, 9 Sep 2007 02:10: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/lib/libelf libelf_convert.m4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 02:10:54 -0000 jkoshy 2007-09-09 02:10:53 UTC FreeBSD src repository Modified files: lib/libelf libelf_convert.m4 Log: Do not generate unneeded initializers. Approved by: re (bmah) Revision Changes Path 1.3 +4 -5 src/lib/libelf/libelf_convert.m4 From owner-cvs-src@FreeBSD.ORG Sun Sep 9 03:51:26 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 533F416A41A; Sun, 9 Sep 2007 03:51:26 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 189EB13C45A; Sun, 9 Sep 2007 03:51:26 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l893pQBr045612; Sun, 9 Sep 2007 03:51:26 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l893pPRY045609; Sun, 9 Sep 2007 03:51:26 GMT (envelope-from kmacy) Message-Id: <200709090351.l893pPRY045609@repoman.freebsd.org> From: Kip Macy Date: Sun, 9 Sep 2007 03:51: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/dev/cxgb/common cxgb_t3_hw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 03:51:26 -0000 kmacy 2007-09-09 03:51:25 UTC FreeBSD src repository Modified files: sys/dev/cxgb/common cxgb_t3_hw.c Log: Fix last-minute typo in last commit caused by pre-commit scripts Approved by: re(blanket) Revision Changes Path 1.9 +1 -1 src/sys/dev/cxgb/common/cxgb_t3_hw.c From owner-cvs-src@FreeBSD.ORG Sun Sep 9 04:34:04 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 643B516A41A; Sun, 9 Sep 2007 04:34:04 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2988413C457; Sun, 9 Sep 2007 04:34:04 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l894Y4h6049514; Sun, 9 Sep 2007 04:34:04 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l894Y4wj049513; Sun, 9 Sep 2007 04:34:04 GMT (envelope-from kmacy) Message-Id: <200709090434.l894Y4wj049513@repoman.freebsd.org> From: Kip Macy Date: Sun, 9 Sep 2007 04:34: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/dev/cxgb cxgb_adapter.h cxgb_osdep.h cxgb_sge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 04:34:04 -0000 kmacy 2007-09-09 04:34:04 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_adapter.h cxgb_osdep.h cxgb_sge.c Log: Add back in support for normal mbuf chaining on RX under DISABLE_MBUF_IOVEC Approved by: re(blanket) Supported by: Chelsio Revision Changes Path 1.19 +6 -1 src/sys/dev/cxgb/cxgb_adapter.h 1.13 +6 -0 src/sys/dev/cxgb/cxgb_osdep.h 1.30 +162 -29 src/sys/dev/cxgb/cxgb_sge.c From owner-cvs-src@FreeBSD.ORG Sun Sep 9 04:41:25 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D4E416A46D; Sun, 9 Sep 2007 04:41:25 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1227A13C459; Sun, 9 Sep 2007 04:41:25 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l894fPkX049958; Sun, 9 Sep 2007 04:41:25 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l894fOEg049957; Sun, 9 Sep 2007 04:41:24 GMT (envelope-from kib) Message-Id: <200709090441.l894fOEg049957@repoman.freebsd.org> From: Konstantin Belousov Date: Sun, 9 Sep 2007 04:41: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/vm vm_map.c vm_map.h vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 04:41:25 -0000 kib 2007-09-09 04:41:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/vm vm_map.c vm_map.h vm_mmap.c Log: MFC rev. 1.387 of src/sys/vm/vm_map.c rev. 1.120 of src/sys/vm/vm_map.h rev. 1.213 of src/sys/vm/vm_mmap.c Do not drop vm_map lock between doing vm_map_remove() and vm_map_insert(). For this, introduce vm_map_fixed() that does that for MAP_FIXED case. Tested by: Marc G. Fournier Revision Changes Path 1.366.2.6 +35 -16 src/sys/vm/vm_map.c 1.117.2.2 +1 -0 src/sys/vm/vm_map.h 1.200.2.4 +4 -2 src/sys/vm/vm_mmap.c From owner-cvs-src@FreeBSD.ORG Sun Sep 9 11:03:58 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B883216A419; Sun, 9 Sep 2007 11:03:58 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AAC2013C459; Sun, 9 Sep 2007 11:03:58 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l89B3vNV001497; Sun, 9 Sep 2007 11:03:57 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l89B3vCw001496; Sun, 9 Sep 2007 11:03:57 GMT (envelope-from rrs) Message-Id: <200709091103.l89B3vCw001496@repoman.freebsd.org> From: Randall Stewart Date: Sun, 9 Sep 2007 11:03:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/netstat sctp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 11:03:58 -0000 rrs 2007-09-09 11:03:56 UTC FreeBSD src repository Modified files: usr.bin/netstat sctp.c Log: - Netstat warning removal for 64 bit aware platforms. Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.7 +108 -117 src/usr.bin/netstat/sctp.c From owner-cvs-src@FreeBSD.ORG Sun Sep 9 11:58:39 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69F7916A419; Sun, 9 Sep 2007 11:58:39 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC6713C4A3; Sun, 9 Sep 2007 11:58:39 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l89BwdDA007717; Sun, 9 Sep 2007 11:58:39 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l89BwdBd007716; Sun, 9 Sep 2007 11:58:39 GMT (envelope-from cognet) Message-Id: <200709091158.l89BwdBd007716@repoman.freebsd.org> From: Olivier Houchard Date: Sun, 9 Sep 2007 11:58: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/arm/include endian.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, 09 Sep 2007 11:58:39 -0000 cognet 2007-09-09 11:58:38 UTC FreeBSD src repository Modified files: sys/arm/include endian.h Log: In __bswap16_var(), make sure the 16 upper bits are cleared; while optimizing, gcc4 doesn't always do so. Reported by: Nathan Whitehorn Approved by: re (blanket) Revision Changes Path 1.11 +4 -2 src/sys/arm/include/endian.h From owner-cvs-src@FreeBSD.ORG Sun Sep 9 17:41:02 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A62A516A469; Sun, 9 Sep 2007 17:41:02 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 644D213C48E; Sun, 9 Sep 2007 17:41:02 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l89Hf1C9059515; Sun, 9 Sep 2007 17:41:01 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l89Hf1Ur059514; Sun, 9 Sep 2007 17:41:01 GMT (envelope-from joel) Message-Id: <200709091741.l89Hf1Ur059514@repoman.freebsd.org> From: Joel Dahl Date: Sun, 9 Sep 2007 17:41:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: CVSROOT access.unclassified X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 17:41:02 -0000 joel 2007-09-09 17:41:01 UTC FreeBSD src repository (doc committer) Modified files: . access.unclassified Log: asami hasn't committed to src/ since 2001 so return his commit bit to core for safe keeping. Approved by: core Revision Changes Path 1.650 +0 -1 CVSROOT/access.unclassified From owner-cvs-src@FreeBSD.ORG Sun Sep 9 19:45:20 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 574D216A418; Sun, 9 Sep 2007 19:45:20 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1F00913C465; Sun, 9 Sep 2007 19:45:20 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l89JjJW0069233; Sun, 9 Sep 2007 19:45:19 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l89JjJYR069232; Sun, 9 Sep 2007 19:45:19 GMT (envelope-from imp) Message-Id: <200709091945.l89JjJYR069232@repoman.freebsd.org> From: Warner Losh Date: Sun, 9 Sep 2007 19: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: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 19:45:20 -0000 imp 2007-09-09 19:45:19 UTC FreeBSD src repository Modified files: . access Log: bsd has turned in his commit bit for safe keeping. Approved by: core@ Revision Changes Path 1.833 +0 -1 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Sun Sep 9 20:26:03 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4A0316A417; Sun, 9 Sep 2007 20:26:03 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8A9B013C46A; Sun, 9 Sep 2007 20:26:03 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l89KQ3Bi072756; Sun, 9 Sep 2007 20:26:03 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l89KQ3rI072754; Sun, 9 Sep 2007 20:26:03 GMT (envelope-from kmacy) Message-Id: <200709092026.l89KQ3rI072754@repoman.freebsd.org> From: Kip Macy Date: Sun, 9 Sep 2007 20:26: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/dev/cxgb cxgb_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: Sun, 09 Sep 2007 20:26:03 -0000 kmacy 2007-09-09 20:26:02 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_main.c Log: - Remove filter support Supported by: Chelsio Approved by: re(blanket) Revision Changes Path 1.34 +0 -298 src/sys/dev/cxgb/cxgb_main.c From owner-cvs-src@FreeBSD.ORG Sun Sep 9 21:52:55 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70B8316A41A; Sun, 9 Sep 2007 21:52:55 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx1.freebsd.org (Postfix) with ESMTP id 12F0913C46B; Sun, 9 Sep 2007 21:52:51 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <46E46B33.6010502@FreeBSD.org> Date: Sun, 09 Sep 2007 23:52:51 +0200 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Warner Losh References: <200709091945.l89JjJYR069232@repoman.freebsd.org> In-Reply-To: <200709091945.l89JjJYR069232@repoman.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: CVSROOT access X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 21:52:55 -0000 Warner Losh wrote: > imp 2007-09-09 19:45:19 UTC > > FreeBSD src repository > > Modified files: > . access > Log: > bsd has turned in his commit bit for safe keeping. > > Approved by: core@ > > Revision Changes Path > 1.833 +0 -1 CVSROOT/access > > Can we all go home now? Kris From owner-cvs-src@FreeBSD.ORG Sun Sep 9 22:25:15 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C4EF216A41A; Sun, 9 Sep 2007 22:25:15 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from heff.fud.org.nz (203-109-251-39.static.bliink.ihug.co.nz [203.109.251.39]) by mx1.freebsd.org (Postfix) with ESMTP id 577DF13C465; Sun, 9 Sep 2007 22:25:15 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 5DF3A1CC26; Mon, 10 Sep 2007 10:12:16 +1200 (NZST) Date: Mon, 10 Sep 2007 10:12:16 +1200 From: Andrew Thompson To: Christian Brueffer Message-ID: <20070909221216.GD15455@heff.fud.org.nz> References: <200709061953.l86Jr780083016@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200709061953.l86Jr780083016@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Sep 2007 22:25:15 -0000 On Thu, Sep 06, 2007 at 07:53:06PM +0000, Christian Brueffer wrote: > brueffer 2007-09-06 19:53:06 UTC > > FreeBSD src repository > > Modified files: > release/doc/en_US.ISO8859-1/relnotes article.sgml > Log: > New release notes: > - ng_h4(4) MPSAFE > - ng_ppp(4) MPSAFE + MFC > - zyd(4) added > - cpufreq(4) in GENERIC > > Modified release notes: > - cached(8) renamed to nscd(8), also moved entry to now correct place This doesnt seem to have been completed, for instance cached is still being referred to in src/usr.sbin/Makefile. Andrew From owner-cvs-src@FreeBSD.ORG Sun Sep 9 23:08:40 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A646B16A417; Sun, 9 Sep 2007 23:08:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7B61013C4A5; Sun, 9 Sep 2007 23:08:40 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l89N8ex9095857; Sun, 9 Sep 2007 23:08:40 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l89N8eCq095856; Sun, 9 Sep 2007 23:08:40 GMT (envelope-from rwatson) Message-Id: <200709092308.l89N8eCq095856@repoman.freebsd.org> From: Robert Watson Date: Sun, 9 Sep 2007 23:08: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/tools/regression/priv Makefile main.c main.h priv_acct.c priv_adjtime.c priv_audit_control.c priv_audit_getaudit.c priv_audit_setaudit.c priv_audit_submit.c priv_clock_settime.c priv_cred.c priv_io.c priv_kenv_set.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Sep 2007 23:08:40 -0000 rwatson 2007-09-09 23:08:40 UTC FreeBSD src repository Modified files: tools/regression/priv Makefile main.c main.h priv_acct.c priv_adjtime.c priv_clock_settime.c priv_io.c priv_kenv_set.c priv_kenv_unset.c priv_proc_setlogin.c priv_proc_setrlimit.c priv_sched_rtprio.c priv_sched_setpriority.c priv_settimeofday.c priv_sysctl_write.c priv_vfs_chown.c priv_vfs_chroot.c priv_vfs_clearsugid.c priv_vfs_extattr_system.c priv_vfs_fhopen.c priv_vfs_fhstat.c priv_vfs_fhstatfs.c priv_vfs_generation.c priv_vfs_getfh.c priv_vfs_read_write.c priv_vfs_setgid.c priv_vfs_stickyfile.c priv_vm_madv_protect.c priv_vm_mlock.c priv_vm_munlock.c Added files: tools/regression/priv priv_audit_control.c priv_audit_getaudit.c priv_audit_setaudit.c priv_audit_submit.c priv_cred.c priv_msgbuf.c priv_netinet_raw.c priv_vfs_chflags.c priv_vfs_chmod.c priv_vfs_utimes.c Removed files: tools/regression/priv priv_vfs_admin.c test_utimes.c Log: Enhance and expand kernel privilege regression tests in support of work present in FreeBSD 7.0 to refine the kernel privilege model: - Introduce support for jail as a testing variable, in order to confirm that privileges are properly restricted in the jail environment. - Restructure overall testing approach so that privilege and jail conditions are set in the testing infrastructure before tests are invoked, and done so in a custom-created process to isolate the impact of tests from each other in a more consistent way. - Tests now provide setup and cleanup hooks that occur before and after the test runs. - New privilege tests are now present for several audit privileges, several credential management privileges, dmesg buffer reading privilege, and netinet raw socket creation. - Other existing tests are restructured and generally improved as a result of better framework structure and jail as a variable. For exampe, we now test that certain sysctls are writable only outside jail, while others are writable within jail. On a similar note, privileges relating to setting UFS file flags are now better exercised, as with the right to chmod and utimes files. Approved by: re (bmah) Obtained from: TrustedBSD Project Revision Changes Path 1.2 +14 -6 src/tools/regression/priv/Makefile 1.2 +385 -72 src/tools/regression/priv/main.c 1.2 +261 -38 src/tools/regression/priv/main.h 1.2 +110 -110 src/tools/regression/priv/priv_acct.c 1.2 +35 -26 src/tools/regression/priv/priv_adjtime.c 1.1 +85 -0 src/tools/regression/priv/priv_audit_control.c (new) 1.1 +102 -0 src/tools/regression/priv/priv_audit_getaudit.c (new) 1.1 +109 -0 src/tools/regression/priv/priv_audit_setaudit.c (new) 1.1 +88 -0 src/tools/regression/priv/priv_audit_submit.c (new) 1.2 +33 -25 src/tools/regression/priv/priv_clock_settime.c 1.1 +208 -0 src/tools/regression/priv/priv_cred.c (new) 1.2 +46 -69 src/tools/regression/priv/priv_io.c 1.2 +26 -18 src/tools/regression/priv/priv_kenv_set.c 1.2 +27 -25 src/tools/regression/priv/priv_kenv_unset.c 1.1 +152 -0 src/tools/regression/priv/priv_msgbuf.c (new) 1.1 +82 -0 src/tools/regression/priv/priv_netinet_raw.c (new) 1.2 +40 -25 src/tools/regression/priv/priv_proc_setlogin.c 1.2 +114 -81 src/tools/regression/priv/priv_proc_setrlimit.c 1.2 +224 -129 src/tools/regression/priv/priv_sched_rtprio.c 1.2 +97 -87 src/tools/regression/priv/priv_sched_setpriority.c 1.2 +32 -25 src/tools/regression/priv/priv_settimeofday.c 1.2 +75 -36 src/tools/regression/priv/priv_sysctl_write.c 1.2 +0 -328 src/tools/regression/priv/priv_vfs_admin.c (dead) 1.1 +254 -0 src/tools/regression/priv/priv_vfs_chflags.c (new) 1.1 +146 -0 src/tools/regression/priv/priv_vfs_chmod.c (new) 1.2 +94 -100 src/tools/regression/priv/priv_vfs_chown.c 1.2 +23 -13 src/tools/regression/priv/priv_vfs_chroot.c 1.2 +73 -136 src/tools/regression/priv/priv_vfs_clearsugid.c 1.2 +44 -34 src/tools/regression/priv/priv_vfs_extattr_system.c 1.2 +42 -37 src/tools/regression/priv/priv_vfs_fhopen.c 1.2 +38 -36 src/tools/regression/priv/priv_vfs_fhstat.c 1.2 +41 -37 src/tools/regression/priv/priv_vfs_fhstatfs.c 1.2 +62 -55 src/tools/regression/priv/priv_vfs_generation.c 1.2 +27 -26 src/tools/regression/priv/priv_vfs_getfh.c 1.2 +182 -293 src/tools/regression/priv/priv_vfs_read_write.c 1.2 +61 -83 src/tools/regression/priv/priv_vfs_setgid.c 1.2 +135 -81 src/tools/regression/priv/priv_vfs_stickyfile.c 1.1 +224 -0 src/tools/regression/priv/priv_vfs_utimes.c (new) 1.2 +25 -13 src/tools/regression/priv/priv_vm_madv_protect.c 1.2 +22 -13 src/tools/regression/priv/priv_vm_mlock.c 1.2 +23 -13 src/tools/regression/priv/priv_vm_munlock.c 1.2 +0 -153 src/tools/regression/priv/test_utimes.c (dead) From owner-cvs-src@FreeBSD.ORG Mon Sep 10 00:00:20 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B8F616A418; Mon, 10 Sep 2007 00:00:20 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 017A613C442; Mon, 10 Sep 2007 00:00:20 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8A00JPc099398; Mon, 10 Sep 2007 00:00:19 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8A00JA7099393; Mon, 10 Sep 2007 00:00:19 GMT (envelope-from rwatson) Message-Id: <200709100000.l8A00JA7099393@repoman.freebsd.org> From: Robert Watson Date: Mon, 10 Sep 2007 00:00: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/kern vfs_syscalls.c src/sys/security/mac mac_framework.h mac_policy.h mac_vfs.c src/sys/security/mac_biba mac_biba.c src/sys/security/mac_bsdextended mac_bsdextended.c src/sys/security/mac_lomac mac_lomac.c src/sys/security/mac_mls ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 00:00:20 -0000 rwatson 2007-09-10 00:00:18 UTC FreeBSD src repository Modified files: sys/kern vfs_syscalls.c sys/security/mac mac_framework.h mac_policy.h mac_vfs.c sys/security/mac_biba mac_biba.c sys/security/mac_bsdextended mac_bsdextended.c sys/security/mac_lomac mac_lomac.c sys/security/mac_mls mac_mls.c sys/security/mac_stub mac_stub.c sys/security/mac_test mac_test.c Log: Rename mac_check_vnode_delete() MAC Framework and MAC Policy entry point to mac_check_vnode_unlink(), reflecting UNIX naming conventions. This is the first of several commits to synchronize the MAC Framework in FreeBSD 7.0 with the MAC Framework as it will appear in Mac OS X Leopard. Reveiwed by: csjp, Samy Bahra Submitted by: Jacques Vidrine Obtained from: Apple Computer, Inc. Sponsored by: SPARTA, SPAWAR Approved by: re (bmah) Revision Changes Path 1.443 +2 -2 src/sys/kern/vfs_syscalls.c 1.84 +2 -2 src/sys/security/mac/mac_framework.h 1.94 +5 -5 src/sys/security/mac/mac_policy.h 1.122 +14 -14 src/sys/security/mac/mac_vfs.c 1.107 +25 -25 src/sys/security/mac_biba/mac_biba.c 1.39 +14 -14 src/sys/security/mac_bsdextended/mac_bsdextended.c 1.52 +25 -25 src/sys/security/mac_lomac/mac_lomac.c 1.88 +25 -25 src/sys/security/mac_mls/mac_mls.c 1.68 +10 -10 src/sys/security/mac_stub/mac_stub.c 1.78 +16 -16 src/sys/security/mac_test/mac_test.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 00:03:08 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBF0816A41B; Mon, 10 Sep 2007 00:03:08 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8EE5013C45A; Mon, 10 Sep 2007 00:03:06 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8A0366c001065; Mon, 10 Sep 2007 00:03:06 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8A036DP001064; Mon, 10 Sep 2007 00:03:06 GMT (envelope-from thompsa) Message-Id: <200709100003.l8A036DP001064@repoman.freebsd.org> From: Andrew Thompson Date: Mon, 10 Sep 2007 00:03:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net bpf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2007 00:03:09 -0000 thompsa 2007-09-10 00:03:06 UTC FreeBSD src repository Modified files: sys/net bpf.c Log: Check for multicast destination on bpf injected packets and update the M_*CAST flags, the absense of these flags causes problems in other areas such as bridging which expect them to be correct. At the moment only Ethernet DLTs are checked. Reviewed by: bms, csjp, sam Approved by: re (bmah) Revision Changes Path 1.181 +19 -4 src/sys/net/bpf.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 00:59:52 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9018116A417; Mon, 10 Sep 2007 00:59:52 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 503E213C45B; Mon, 10 Sep 2007 00:59:52 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8A0xq7h016261; Mon, 10 Sep 2007 00:59:52 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8A0xqcb016260; Mon, 10 Sep 2007 00:59:52 GMT (envelope-from kmacy) Message-Id: <200709100059.l8A0xqcb016260@repoman.freebsd.org> From: Kip Macy Date: Mon, 10 Sep 2007 00:59: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/cxgb cxgb_adapter.h cxgb_include.h cxgb_main.c cxgb_offload.h cxgb_osdep.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, 10 Sep 2007 00:59:52 -0000 kmacy 2007-09-10 00:59:51 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_adapter.h cxgb_include.h cxgb_main.c cxgb_offload.h cxgb_osdep.h Log: pull in changes made to RELENG_6 version in the process of doing the MFC Supported by: Chelsio Approved by: re (blanket) Revision Changes Path 1.20 +0 -3 src/sys/dev/cxgb/cxgb_adapter.h 1.2 +2 -2 src/sys/dev/cxgb/cxgb_include.h 1.35 +21 -19 src/sys/dev/cxgb/cxgb_main.c 1.5 +10 -5 src/sys/dev/cxgb/cxgb_offload.h 1.14 +3 -0 src/sys/dev/cxgb/cxgb_osdep.h From owner-cvs-src@FreeBSD.ORG Mon Sep 10 07:45:41 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3E6916A418; Mon, 10 Sep 2007 07:45:41 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 840E613C468; Mon, 10 Sep 2007 07:45:41 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8A7jfAr057607; Mon, 10 Sep 2007 07:45:41 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8A7je5J057606; Mon, 10 Sep 2007 07:45:40 GMT (envelope-from ru) Message-Id: <200709100745.l8A7je5J057606@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 10 Sep 2007 07:45: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/lib/libc/sys kqueue.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 07:45:41 -0000 ru 2007-09-10 07:45:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/sys kqueue.2 Log: MFC: 1.46: EVFILT_VNODE filtering isn't limited to UFS. Revision Changes Path 1.42.2.2 +1 -6 src/lib/libc/sys/kqueue.2 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 12:51:07 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF9C216A41B; Mon, 10 Sep 2007 12:51:07 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7AF6A13C46C; Mon, 10 Sep 2007 12:51:07 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8ACp7wj016842; Mon, 10 Sep 2007 12:51:07 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8ACp7Zu016841; Mon, 10 Sep 2007 12:51:07 GMT (envelope-from kib) Message-Id: <200709101251.l8ACp7Zu016841@repoman.freebsd.org> From: Konstantin Belousov Date: Mon, 10 Sep 2007 12:51: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/drm i915_dma.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 12:51:07 -0000 kib 2007-09-10 12:51:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/drm i915_dma.c Log: MFC rev. 1.5, 1.6: Move the drm_pci_alloc() to the start of the i915_initialize() and drop the the drm mutex around it. Revision Changes Path 1.1.2.4 +14 -9 src/sys/dev/drm/i915_dma.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 12:53:35 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6937C16A41A; Mon, 10 Sep 2007 12:53:35 +0000 (UTC) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 24C1B13C4A7; Mon, 10 Sep 2007 12:53:35 +0000 (UTC) (envelope-from avatar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8ACrZqM017081; Mon, 10 Sep 2007 12:53:35 GMT (envelope-from avatar@repoman.freebsd.org) Received: (from avatar@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8ACrZU8017080; Mon, 10 Sep 2007 12:53:35 GMT (envelope-from avatar) Message-Id: <200709101253.l8ACrZU8017080@repoman.freebsd.org> From: Tai-hwa Liang Date: Mon, 10 Sep 2007 12:53: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/an if_an.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 12:53:35 -0000 avatar 2007-09-10 12:53:34 UTC FreeBSD src repository Modified files: sys/dev/an if_an.c Log: Fixing invalid channel display in ifconfig(8) by implementing required ioctl(). Note that other information provided by ifconfig(8) such like "list chan" or "list ap" are still not available at this moment. Before an(4) is connected to wlan(4), users are encouraged to use ancontrol(8) to retrieve aforementioned information. Reported by: dhw (http://lists.freebsd.org/pipermail/freebsd-current/2007-July/074848.html) Reviewed by: ambrisko Tested by: dhw Approved by: re (bmah) Revision Changes Path 1.84 +17 -0 src/sys/dev/an/if_an.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 14:12:30 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8ECB316A418; Mon, 10 Sep 2007 14:12:30 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4A08F13C45D; Mon, 10 Sep 2007 14:12:30 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AECUmv025525; Mon, 10 Sep 2007 14:12:30 GMT (envelope-from bz@repoman.freebsd.org) Received: (from bz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AECUxd025524; Mon, 10 Sep 2007 14:12:30 GMT (envelope-from bz) Message-Id: <200709101412.l8AECUxd025524@repoman.freebsd.org> From: "Bjoern A. Zeeb" Date: Mon, 10 Sep 2007 14:12: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/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: Mon, 10 Sep 2007 14:12:30 -0000 bz 2007-09-10 14:12:29 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_alloc.c Log: Fix a DIV0 in case a large value for fs_avgfilesize or fs_avgfpdir is given (with newfs or tunefs) and dirsize overflows. In case dirsize is <= 0 because of an overflow set maxcontigdirs to 0 so it will be 1 later. This is what would happen for large fs_avgfilesize. [1] Identified with help from: roberto, pjd Submitted by: pjd [1] Approved by: re (rwatson) MFC after: 8 days Revision Changes Path 1.147 +4 -1 src/sys/ufs/ffs/ffs_alloc.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 14:22:16 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7427016A418; Mon, 10 Sep 2007 14:22:16 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2F07713C45A; Mon, 10 Sep 2007 14:22:16 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AEMF0K026225; Mon, 10 Sep 2007 14:22:15 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AEMFcU026224; Mon, 10 Sep 2007 14:22:15 GMT (envelope-from rwatson) Message-Id: <200709101422.l8AEMFcU026224@repoman.freebsd.org> From: Robert Watson Date: Mon, 10 Sep 2007 14:22: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/netinet udp_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 14:22:16 -0000 rwatson 2007-09-10 14:22:15 UTC FreeBSD src repository Modified files: sys/netinet udp_usrreq.c Log: Further UDPv4 cleanup: - Resort includes a bit. - Correct typos and wording problems in comments. - Rename udpcksum to udp_cksum to be consistent with other UDP-related configuration variables. - Remove indirection of udp_notify through local notify variable in udp_ctlinput(), which is presumably due to copying and pasting from TCP, where multiple notify routines exist. Approved by: re (kensmith) Revision Changes Path 1.217 +17 -17 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 14:24:33 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5BFC16A418; Mon, 10 Sep 2007 14:24:33 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 90C3313C45D; Mon, 10 Sep 2007 14:24:33 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AEOXg1026355; Mon, 10 Sep 2007 14:24:33 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AEOXpM026354; Mon, 10 Sep 2007 14:24:33 GMT (envelope-from obrien) Message-Id: <200709101424.l8AEOXpM026354@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 10 Sep 2007 14:24: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: CVSROOT exclude X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 14:24:34 -0000 obrien 2007-09-10 14:24:33 UTC FreeBSD src repository Modified files: . exclude Log: Add Sade's help files (which were repo copied from sysinstall, which has this same exclusion). Revision Changes Path 1.143 +1 -0 CVSROOT/exclude From owner-cvs-src@FreeBSD.ORG Mon Sep 10 14:25:05 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8565516A419; Mon, 10 Sep 2007 14:25:05 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3C61913C469; Mon, 10 Sep 2007 14:25:05 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AEP5pF026525; Mon, 10 Sep 2007 14:25:05 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AEP5I7026524; Mon, 10 Sep 2007 14:25:05 GMT (envelope-from obrien) Message-Id: <200709101425.l8AEP5I7026524@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 10 Sep 2007 14:25: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/usr.sbin Makefile src/usr.sbin/sade Makefile command.c config.c devices.c disks.c dispatch.c dmenu.c globals.c install.c label.c list.h main.c menus.c misc.c msg.c sade.8 sade.h system.c termcap.c variable.c wizard.c src/usr.sbin/sade/help ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 14:25:05 -0000 obrien 2007-09-10 14:25:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin Makefile Added files: (Branch: RELENG_6) usr.sbin/sade Makefile command.c config.c devices.c disks.c dispatch.c dmenu.c globals.c install.c label.c list.h main.c menus.c misc.c msg.c sade.8 sade.h system.c termcap.c variable.c wizard.c usr.sbin/sade/help partition.hlp slice.hlp Log: MFC: 'sade' - the SysAdmins Disk Editor Revision Changes Path 1.332.2.8 +2 -0 src/usr.sbin/Makefile 1.147.2.1 +27 -0 src/usr.sbin/sade/Makefile (new) 1.23.2.1 +179 -0 src/usr.sbin/sade/command.c (new) 1.240.2.1 +333 -0 src/usr.sbin/sade/config.c (new) 1.170.2.1 +345 -0 src/usr.sbin/sade/devices.c (new) 1.161.2.1 +1015 -0 src/usr.sbin/sade/disks.c (new) 1.51.2.1 +161 -0 src/usr.sbin/sade/dispatch.c (new) 1.51.2.1 +295 -0 src/usr.sbin/sade/dmenu.c (new) 1.29.2.1 +84 -0 src/usr.sbin/sade/globals.c (new) 1.14.2.1 +169 -0 src/usr.sbin/sade/help/partition.hlp (new) 1.10.2.1 +57 -0 src/usr.sbin/sade/help/slice.hlp (new) 1.371.2.1 +257 -0 src/usr.sbin/sade/install.c (new) 1.155.2.1 +1706 -0 src/usr.sbin/sade/label.c (new) 1.4.2.1 +55 -0 src/usr.sbin/sade/list.h (new) 1.80.2.1 +121 -0 src/usr.sbin/sade/main.c (new) 1.423.2.1 +117 -0 src/usr.sbin/sade/menus.c (new) 1.46.2.1 +491 -0 src/usr.sbin/sade/misc.c (new) 1.62.2.1 +350 -0 src/usr.sbin/sade/msg.c (new) 1.77.2.1 +73 -0 src/usr.sbin/sade/sade.8 (new) 1.277.2.1 +486 -0 src/usr.sbin/sade/sade.h (new) 1.131.2.1 +305 -0 src/usr.sbin/sade/system.c (new) 1.35.2.1 +104 -0 src/usr.sbin/sade/termcap.c (new) 1.42.2.1 +324 -0 src/usr.sbin/sade/variable.c (new) 1.26.2.1 +200 -0 src/usr.sbin/sade/wizard.c (new) From owner-cvs-src@FreeBSD.ORG Mon Sep 10 14:49:33 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6602C16A417; Mon, 10 Sep 2007 14:49:33 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 20FD113C465; Mon, 10 Sep 2007 14:49:33 +0000 (UTC) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AEnXuk027916; Mon, 10 Sep 2007 14:49:33 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AEnX85027915; Mon, 10 Sep 2007 14:49:33 GMT (envelope-from kensmith) Message-Id: <200709101449.l8AEnX85027915@repoman.freebsd.org> From: Ken Smith Date: Mon, 10 Sep 2007 14:49: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/netinet tcp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 14:49:33 -0000 kensmith 2007-09-10 14:49:33 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: Make sure that either inp is NULL or we have obtained a lock on it before jumping to dropunlock to avoid a panic. While here move the calls to ipsec4_in_reject() and ipsec6_in_reject() so they are after we obtain the lock on inp. Original patch to avoid panic: pjd Review of locking adjustments: gnn, sam Approved by: re (rwatson) Revision Changes Path 1.368 +13 -13 src/sys/netinet/tcp_input.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 16:39:27 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CE0416A41B; Mon, 10 Sep 2007 16:39:27 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DB03A13C428; Mon, 10 Sep 2007 16:39:26 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AGdQDg041434; Mon, 10 Sep 2007 16:39:26 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AGdQwc041433; Mon, 10 Sep 2007 16:39:26 GMT (envelope-from brueffer) Message-Id: <200709101639.l8AGdQwc041433@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Sep 2007 16:39: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/release/doc/en_US.ISO8859-1/hardware article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2007 16:39:27 -0000 brueffer 2007-09-10 16:39:26 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware article.sgml Log: Add information about hardware supported by ipw(4) and iwi(4). Approved by: re (blanket) MFC after: 3 days Revision Changes Path 1.324 +6 -0 src/release/doc/en_US.ISO8859-1/hardware/article.sgml From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:06:26 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E46C16A49E; Mon, 10 Sep 2007 17:06:26 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BD5A313C45E; Mon, 10 Sep 2007 17:06:25 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AH6PGI053345; Mon, 10 Sep 2007 17:06:25 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AH6PAv053344; Mon, 10 Sep 2007 17:06:25 GMT (envelope-from rrs) Message-Id: <200709101706.l8AH6PAv053344@repoman.freebsd.org> From: Randall Stewart Date: Mon, 10 Sep 2007 17:06: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/netinet sctp_asconf.c sctp_cc_functions.h sctp_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:06:26 -0000 rrs 2007-09-10 17:06:25 UTC FreeBSD src repository Modified files: sys/netinet sctp_asconf.c sctp_cc_functions.h sctp_input.c Log: - Added some comments to tell where the htcp code comes from. - Fix a LOR on Mac OS X: Do not hold an stcb lock when calling soisconnected for a socket which has the SS_INCOMP bit set on so_state. - fix a comment to be non c++ style. Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.29 +8 -9 src/sys/netinet/sctp_asconf.c 1.2 +9 -0 src/sys/netinet/sctp_cc_functions.h 1.61 +2 -2 src/sys/netinet/sctp_input.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:20:22 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DC1B16A417; Mon, 10 Sep 2007 17:20:22 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CD47B13C458; Mon, 10 Sep 2007 17:20:21 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHKLSL055048; Mon, 10 Sep 2007 17:20:21 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHKLNX055047; Mon, 10 Sep 2007 17:20:21 GMT (envelope-from brueffer) Message-Id: <200709101720.l8AHKLNX055047@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Sep 2007 17:20: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/share/man/man4 wlan.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: Mon, 10 Sep 2007 17:20:22 -0000 brueffer 2007-09-10 17:20:21 UTC FreeBSD src repository Modified files: share/man/man4 wlan.4 Log: Also mention zyd(4) in the DESCRIPTION section. Approved by: re (blanket) Revision Changes Path 1.13 +2 -1 src/share/man/man4/wlan.4 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:28:02 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3B9516A421; Mon, 10 Sep 2007 17:28:02 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7FA4A13C4B0; Mon, 10 Sep 2007 17:28:02 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHS2x2055919; Mon, 10 Sep 2007 17:28:02 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHS2GQ055918; Mon, 10 Sep 2007 17:28:02 GMT (envelope-from gabor) Message-Id: <200709101728.l8AHS2GQ055918@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:28:02 +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/examples/cvsup cvs-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:28:02 -0000 gabor 2007-09-10 17:28:01 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup cvs-supfile Log: MFC r1.47 Revision Changes Path 1.43.8.2 +3 -5 src/share/examples/cvsup/cvs-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:28:45 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFE5C16A468; Mon, 10 Sep 2007 17:28:45 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6BE5613C465; Mon, 10 Sep 2007 17:28:45 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHSj93055998; Mon, 10 Sep 2007 17:28:45 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHSjti055997; Mon, 10 Sep 2007 17:28:45 GMT (envelope-from gabor) Message-Id: <200709101728.l8AHSjti055997@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:28:45 +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/examples/cvsup doc-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:28:45 -0000 gabor 2007-09-10 17:28:45 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup doc-supfile Log: MFC r1.10 Revision Changes Path 1.9.8.1 +3 -5 src/share/examples/cvsup/doc-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:29:11 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 510FB16A500; Mon, 10 Sep 2007 17:29:11 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0C6EE13C4DE; Mon, 10 Sep 2007 17:29:11 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHTA3A056052; Mon, 10 Sep 2007 17:29:10 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHTAxt056051; Mon, 10 Sep 2007 17:29:10 GMT (envelope-from gabor) Message-Id: <200709101729.l8AHTAxt056051@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:29:10 +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/examples/cvsup gnats-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:29:11 -0000 gabor 2007-09-10 17:29:10 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup gnats-supfile Log: MFC r1.8 Revision Changes Path 1.7.8.1 +3 -5 src/share/examples/cvsup/gnats-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:29:39 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D512C16A4B3; Mon, 10 Sep 2007 17:29:39 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 90C2F13C4B4; Mon, 10 Sep 2007 17:29:34 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHTY7G056133; Mon, 10 Sep 2007 17:29:34 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHTYLW056132; Mon, 10 Sep 2007 17:29:34 GMT (envelope-from gabor) Message-Id: <200709101729.l8AHTYLW056132@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:29:34 +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/examples/cvsup ports-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:29:39 -0000 gabor 2007-09-10 17:29:34 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup ports-supfile Log: MFC r1.38 Revision Changes Path 1.33.2.3 +3 -5 src/share/examples/cvsup/ports-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:30:05 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DE9316A418; Mon, 10 Sep 2007 17:30:05 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9C813C4F8; Mon, 10 Sep 2007 17:30:03 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHU2tF056193; Mon, 10 Sep 2007 17:30:02 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHU2Je056192; Mon, 10 Sep 2007 17:30:02 GMT (envelope-from gabor) Message-Id: <200709101730.l8AHU2Je056192@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:30:02 +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/examples/cvsup stable-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:30:05 -0000 gabor 2007-09-10 17:30:02 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup stable-supfile Log: MFC r1.32 Revision Changes Path 1.29.2.3 +3 -5 src/share/examples/cvsup/stable-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:30:26 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D724716A477; Mon, 10 Sep 2007 17:30:26 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 66CF813C459; Mon, 10 Sep 2007 17:30:26 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHUQpv056299; Mon, 10 Sep 2007 17:30:26 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHUQDV056298; Mon, 10 Sep 2007 17:30:26 GMT (envelope-from gabor) Message-Id: <200709101730.l8AHUQDV056298@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:30: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/share/examples/cvsup standard-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:30:27 -0000 gabor 2007-09-10 17:30:26 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup standard-supfile Log: MFC r1.25 Revision Changes Path 1.23.4.4 +3 -5 src/share/examples/cvsup/standard-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:30:44 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8055916A418; Mon, 10 Sep 2007 17:30:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3C10113C48E; Mon, 10 Sep 2007 17:30:44 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHUinH056341; Mon, 10 Sep 2007 17:30:44 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHUiuK056340; Mon, 10 Sep 2007 17:30:44 GMT (envelope-from gabor) Message-Id: <200709101730.l8AHUiuK056340@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 17:30: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/share/examples/cvsup www-supfile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 17:30:44 -0000 gabor 2007-09-10 17:30:44 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) share/examples/cvsup www-supfile Log: MFC r1.7 Revision Changes Path 1.6.8.1 +3 -5 src/share/examples/cvsup/www-supfile From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:54:15 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 944DC16A469; Mon, 10 Sep 2007 17:54:15 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5034913C46E; Mon, 10 Sep 2007 17:54:15 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHsFux058677; Mon, 10 Sep 2007 17:54:15 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHsFb6058676; Mon, 10 Sep 2007 17:54:15 GMT (envelope-from brueffer) Message-Id: <200709101754.l8AHsFb6058676@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Sep 2007 17:54: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/share/man/man4 ral.4 ural.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: Mon, 10 Sep 2007 17:54:15 -0000 brueffer 2007-09-10 17:54:15 UTC FreeBSD src repository Modified files: share/man/man4 ral.4 ural.4 Log: Prepare for automatic hardware notes generation: - mention the supported chipsets in the HARDWARE section - remove unnecessary Li arguments Approved by: re (blanket) Revision Changes Path 1.13 +88 -87 src/share/man/man4/ral.4 1.15 +30 -29 src/share/man/man4/ural.4 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 17:58:17 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E18C16A417; Mon, 10 Sep 2007 17:58:17 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BDC6913C45D; Mon, 10 Sep 2007 17:58:16 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AHwGZR059058; Mon, 10 Sep 2007 17:58:16 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AHwGNp059057; Mon, 10 Sep 2007 17:58:16 GMT (envelope-from brueffer) Message-Id: <200709101758.l8AHwGNp059057@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Sep 2007 17:58: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/release/doc/en_US.ISO8859-1/hardware article.sgml 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: Mon, 10 Sep 2007 17:58:17 -0000 brueffer 2007-09-10 17:58:16 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware article.sgml release/doc/share/misc dev.archlist.txt Log: Autogenerate hardware notes for ral(4) and ural(4). Approved by: re (blanket) Revision Changes Path 1.325 +4 -0 src/release/doc/en_US.ISO8859-1/hardware/article.sgml 1.99 +2 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Mon Sep 10 18:12:28 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07CAB16A41A; Mon, 10 Sep 2007 18:12:28 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B6F7913C469; Mon, 10 Sep 2007 18:12:27 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AICR1G061728; Mon, 10 Sep 2007 18:12:27 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AICR0E061727; Mon, 10 Sep 2007 18:12:27 GMT (envelope-from pjd) Message-Id: <200709101812.l8AICR0E061727@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 10 Sep 2007 18:12: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/contrib/opensolaris/uts/common/fs/zfs arc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 18:12:28 -0000 pjd 2007-09-10 18:12:27 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs arc.c Log: After dfr@ vnode leak fix, we can allow ARC to consume more memory. Tested by: kris Approved by: re (bmah) Revision Changes Path 1.11 +2 -2 src/sys/contrib/opensolaris/uts/common/fs/zfs/arc.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 18:17:51 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B74716A41A; Mon, 10 Sep 2007 18:17:51 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 086AD13C467; Mon, 10 Sep 2007 18:17:51 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AIHo34062164; Mon, 10 Sep 2007 18:17:50 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AIHohX062163; Mon, 10 Sep 2007 18:17:50 GMT (envelope-from brueffer) Message-Id: <200709101817.l8AIHohX062163@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Sep 2007 18:17:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man4 wlan_amrr.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: Mon, 10 Sep 2007 18:17:51 -0000 brueffer 2007-09-10 18:17:50 UTC FreeBSD src repository Modified files: share/man/man4 wlan_amrr.4 Log: zyd(4) needs this as well. While here, add a missing article. Approved by: re (blanket) Revision Changes Path 1.2 +4 -3 src/share/man/man4/wlan_amrr.4 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 18:28:14 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7410016A421; Mon, 10 Sep 2007 18:28:14 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 313CE13C442; Mon, 10 Sep 2007 18:28:14 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AISEaP063163; Mon, 10 Sep 2007 18:28:14 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AISETr063162; Mon, 10 Sep 2007 18:28:14 GMT (envelope-from gabor) Message-Id: <200709101828.l8AISETr063162@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 18:28:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/wpa/ndis_events ndis_events.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: Mon, 10 Sep 2007 18:28:14 -0000 gabor 2007-09-10 18:28:13 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) usr.sbin/wpa/ndis_events ndis_events.8 Log: MFC: r1.7 Revision Changes Path 1.3.2.3 +15 -9 src/usr.sbin/wpa/ndis_events/ndis_events.8 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 18:32:07 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1C2C16A418; Mon, 10 Sep 2007 18:32:07 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AF59313C457; Mon, 10 Sep 2007 18:32:07 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AIW7Tn063610; Mon, 10 Sep 2007 18:32:07 GMT (envelope-from gabor@repoman.freebsd.org) Received: (from gabor@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AIW7Ql063609; Mon, 10 Sep 2007 18:32:07 GMT (envelope-from gabor) Message-Id: <200709101832.l8AIW7Ql063609@repoman.freebsd.org> From: Gabor Kovesdan Date: Mon, 10 Sep 2007 18:32: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/usr.sbin/periodic periodic.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: Mon, 10 Sep 2007 18:32:08 -0000 gabor 2007-09-10 18:32:07 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_6) usr.sbin/periodic periodic.8 Log: MFC r1.33 Revision Changes Path 1.30.2.2 +2 -2 src/usr.sbin/periodic/periodic.8 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 19:16:40 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F41B16A418; Mon, 10 Sep 2007 19:16:40 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2CEC813C459; Mon, 10 Sep 2007 19:16:40 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AJGeEe067736; Mon, 10 Sep 2007 19:16:40 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AJGeoD067734; Mon, 10 Sep 2007 19:16:40 GMT (envelope-from simon) Message-Id: <200709101916.l8AJGeoD067734@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 10 Sep 2007 19:16: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-chipset.c ata-pci.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2007 19:16:40 -0000 simon 2007-09-10 19:16:40 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-pci.h Log: Add PCI IDs for Intel ICH9. PR: kern/114473 Submitted by: Michael Fuckner MFC after: 2 weeks OK'ed by: sos Approved by: re (bmah) Revision Changes Path 1.199 +4 -0 src/sys/dev/ata/ata-chipset.c 1.78 +4 -0 src/sys/dev/ata/ata-pci.h From owner-cvs-src@FreeBSD.ORG Mon Sep 10 19:58:15 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3664016A418; Mon, 10 Sep 2007 19:58:15 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0E05413C483; Mon, 10 Sep 2007 19:58:15 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AJwE3g070237; Mon, 10 Sep 2007 19:58:14 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AJwESF070236; Mon, 10 Sep 2007 19:58:14 GMT (envelope-from pjd) Message-Id: <200709101958.l8AJwESF070236@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 10 Sep 2007 19:58: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/opensolaris/uts/common/fs/zfs zfs_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: Mon, 10 Sep 2007 19:58:15 -0000 pjd 2007-09-10 19:58:14 UTC FreeBSD src repository Modified files: sys/contrib/opensolaris/uts/common/fs/zfs zfs_vfsops.c Log: Reduce the limit of vnodes on i386 when ZFS is loaded to 3/4 of the original value, so we don't run out of KVA. The default vnodes limit fits better for UFS, but ZFS allocated more file system specific memory for a vnode than UFS. Don't touch vnodes limit if we detect it was tuned by system administrator and restore original value when ZFS is unloaded. This isn't final fix, but before we implement something better, this will help to stabilize ZFS under heavy load on i386. Approved by: re (bmah) Revision Changes Path 1.12 +41 -0 src/sys/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 20:25:56 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D683716A417; Mon, 10 Sep 2007 20:25:56 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9928E13C442; Mon, 10 Sep 2007 20:25:56 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AKPutd073129; Mon, 10 Sep 2007 20:25:56 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AKPulX073128; Mon, 10 Sep 2007 20:25:56 GMT (envelope-from brueffer) Message-Id: <200709102025.l8AKPulX073128@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 10 Sep 2007 20:25: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/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: Mon, 10 Sep 2007 20:25:56 -0000 brueffer 2007-09-10 20:25:56 UTC FreeBSD src repository Modified files: share/man/man4 ata.4 Log: Update for ICH9 support. Submitted by: simon Approved by: re (blanket) Revision Changes Path 1.73 +2 -2 src/share/man/man4/ata.4 From owner-cvs-src@FreeBSD.ORG Mon Sep 10 21:01:57 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1775D16A421; Mon, 10 Sep 2007 21:01:57 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D7D9713C45E; Mon, 10 Sep 2007 21:01:56 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AL1uWw083998; Mon, 10 Sep 2007 21:01:56 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AL1uqH083997; Mon, 10 Sep 2007 21:01:56 GMT (envelope-from rrs) Message-Id: <200709102101.l8AL1uqH083997@repoman.freebsd.org> From: Randall Stewart Date: Mon, 10 Sep 2007 21:01: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/netinet sctp_asconf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 21:01:57 -0000 rrs 2007-09-10 21:01:56 UTC FreeBSD src repository Modified files: sys/netinet sctp_asconf.c Log: - Removed debug code and more C++ style comments in the mobility code in sctp_asconf.c Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.30 +1 -14 src/sys/netinet/sctp_asconf.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 21:50:41 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 064BD16A494; Mon, 10 Sep 2007 21:50:41 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D467E13C481; Mon, 10 Sep 2007 21:50:40 +0000 (UTC) (envelope-from jfv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8ALoeku087954; Mon, 10 Sep 2007 21:50:40 GMT (envelope-from jfv@repoman.freebsd.org) Received: (from jfv@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8ALoeXW087953; Mon, 10 Sep 2007 21:50:40 GMT (envelope-from jfv) Message-Id: <200709102150.l8ALoeXW087953@repoman.freebsd.org> From: Jack F Vogel Date: Mon, 10 Sep 2007 21:50: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/em if_em.c if_em.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, 10 Sep 2007 21:50:41 -0000 jfv 2007-09-10 21:50:40 UTC FreeBSD src repository Modified files: sys/dev/em if_em.c if_em.h Log: A number of small fixes: - duplicate #define in header, thanks to Kevin Lo for pointing out. - incorrect BUSMASTER enable logic, thanks Patrick Oeschger - 82543 fails due to bogus IO BAR logic - Allow 82571 to use MSI interrupts - Checksum Offload for UDP not working on 82575 Approved by:re Revision Changes Path 1.184 +5 -5 src/sys/dev/em/if_em.c 1.62 +0 -1 src/sys/dev/em/if_em.h From owner-cvs-src@FreeBSD.ORG Mon Sep 10 23:01:36 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77AE116A419; Mon, 10 Sep 2007 23:01:36 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6125413C461; Mon, 10 Sep 2007 23:01:36 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8AN1a3Q094187; Mon, 10 Sep 2007 23:01:36 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8AN1Zit094184; Mon, 10 Sep 2007 23:01:35 GMT (envelope-from peter) Message-Id: <200709102301.l8AN1Zit094184@repoman.freebsd.org> From: Peter Wemm Date: Mon, 10 Sep 2007 23:01:35 +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/i386 genassym.c src/sys/amd64/amd64 genassym.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Sep 2007 23:01:36 -0000 peter 2007-09-10 23:01:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/i386/i386 genassym.c sys/amd64/amd64 genassym.c Log: Export the MAXCPU symbol to assym.s. This is used to size the intrcnt and intrnames arrays. as(1)/ld(1) don't detect the undefined MAXCPU variable, leading to insufficient space being reserved. Revision Changes Path 1.155.2.3 +1 -0 src/sys/amd64/amd64/genassym.c 1.151.2.1 +1 -0 src/sys/i386/i386/genassym.c From owner-cvs-src@FreeBSD.ORG Mon Sep 10 23:43:53 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4715B16A421; Mon, 10 Sep 2007 23:43:53 +0000 (UTC) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 37AF313C468; Mon, 10 Sep 2007 23:43:53 +0000 (UTC) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8ANhq5K003267; Mon, 10 Sep 2007 23:43:52 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8ANhqXa003266; Mon, 10 Sep 2007 23:43:52 GMT (envelope-from alfred) Message-Id: <200709102343.l8ANhqXa003266@repoman.freebsd.org> From: Alfred Perlstein Date: Mon, 10 Sep 2007 23:43:52 +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_sx.c src/sys/sys sx.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, 10 Sep 2007 23:43:53 -0000 alfred 2007-09-10 23:43:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_sx.c sys/sys sx.h Log: FreeBSD 7 has a macro that converts calls to sx_init -> sx_init_flags, however FreeBSD 6 needs this as a function to preserve binary compat. Pointed out by: kmacy Revision Changes Path 1.25.2.7 +7 -0 src/sys/kern/kern_sx.c 1.21.2.7 +1 -1 src/sys/sys/sx.h From owner-cvs-src@FreeBSD.ORG Tue Sep 11 00:34:59 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABDC316A417; Tue, 11 Sep 2007 00:34:59 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A4C7713C45A; Tue, 11 Sep 2007 00:34:59 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8B0Yxkp007419; Tue, 11 Sep 2007 00:34:59 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8B0Yxws007418; Tue, 11 Sep 2007 00:34:59 GMT (envelope-from thompsa) Message-Id: <200709110034.l8B0Yxws007418@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 11 Sep 2007 00:34:59 +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_lagg.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 11 Sep 2007 00:34:59 -0000 thompsa 2007-09-11 00:34:59 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_lagg.c Log: MFC r1.19 Show the ACTIVE flag in ifconfig for the single interface that is actaully active in failover mode rather than all interfaces with a link. Revision Changes Path 1.11.2.6 +5 -1 src/sys/net/if_lagg.c From owner-cvs-src@FreeBSD.ORG Tue Sep 11 00:37:20 2007 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1129316A418 for ; Tue, 11 Sep 2007 00:37:20 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.177]) by mx1.freebsd.org (Postfix) with ESMTP id 08EF613C45B for ; Tue, 11 Sep 2007 00:37:19 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so1758036waf for ; Mon, 10 Sep 2007 17:37:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=Tjn2eJYe4ZhEcMaQGUzcYvOJAewGbj3DQhXXex/Yt5E=; b=kTRcm5/kS7IEpeob4s7BrC+VtirMLSbrMmZfd8ctFijrwxVCufPMSk52I3EaMEfqwzuqYT85QPNUEvXU3197Efg1FZrGrb3xqEeC2WOgKwiQxKmm7in9ZV3RTZ/81LGKItRytcDo1MmYuvDhDUOm2/teDiWznxAqW8elT+c5+u8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=annowYT/FA0dAdYqwIG78sVYAC53fjIrdh2VId3BC7QiUFLGjpELQhy0/AQq3BUoSslPlCGu6nI82a/GHbyWTA7Po9DLWwh2u2rv1NWfrHR1l/ZSxmeUYB1fgSZ6xhGJzc39JUSibXLx2GikHyQT4oqKp7bhuz0jnIrTQpROq4I= Received: by 10.114.157.1 with SMTP id f1mr5136898wae.1189469466829; Mon, 10 Sep 2007 17:11:06 -0700 (PDT) Received: by 10.114.13.15 with HTTP; Mon, 10 Sep 2007 17:11:06 -0700 (PDT) Message-ID: Date: Mon, 10 Sep 2007 17:11:06 -0700 From: "Kip Macy" To: "Alfred Perlstein" In-Reply-To: <200709102343.l8ANhqXa003266@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200709102343.l8ANhqXa003266@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_sx.c src/sys/sys sx.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, 11 Sep 2007 00:37:20 -0000 Thanks. -Kip On 9/10/07, Alfred Perlstein wrote: > alfred 2007-09-10 23:43:52 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_6) > sys/kern kern_sx.c > sys/sys sx.h > Log: > FreeBSD 7 has a macro that converts calls to sx_init -> sx_init_flags, > however FreeBSD 6 needs this as a function to preserve binary compat. > > Pointed out by: kmacy > > Revision Changes Path > 1.25.2.7 +7 -0 src/sys/kern/kern_sx.c > 1.21.2.7 +1 -1 src/sys/sys/sx.h > From owner-cvs-src@FreeBSD.ORG Tue Sep 11 01:21:38 2007 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24FDE16A469; Tue, 11 Sep 2007 01:21:38 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 1204D13C4CA; Tue, 11 Sep 2007 01:21:37 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id DC8A71A4D7C; Mon, 10 Sep 2007 18:21:37 -0700 (PDT) Date: Mon, 10 Sep 2007 18:21:37 -0700 From: Alfred Perlstein To: Kip Macy Message-ID: <20070911012137.GV79417@elvis.mu.org> References: <200709102343.l8ANhqXa003266@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_sx.c src/sys/sys sx.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, 11 Sep 2007 01:21:38 -0000 Thanks for noticing, it wasn't something I intended at all! * Kip Macy [070910 17:36] wrote: > Thanks. > > -Kip > > On 9/10/07, Alfred Perlstein wrote: > > alfred 2007-09-10 23:43:52 UTC > > > > FreeBSD src repository > > > > Modified files: (Branch: RELENG_6) > > sys/kern kern_sx.c > > sys/sys sx.h > > Log: > > FreeBSD 7 has a macro that converts calls to sx_init -> sx_init_flags, > > however FreeBSD 6 needs this as a function to preserve binary compat. > > > > Pointed out by: kmacy > > > > Revision Changes Path > > 1.25.2.7 +7 -0 src/sys/kern/kern_sx.c > > 1.21.2.7 +1 -1 src/sys/sys/sx.h > > -- - Alfred Perlstein From owner-cvs-src@FreeBSD.ORG Tue Sep 11 01:59:01 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3EF0B16A419; Tue, 11 Sep 2007 01:59:01 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1AC9213C465; Tue, 11 Sep 2007 01:59:01 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8B1x09O022067; Tue, 11 Sep 2007 01:59:00 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8B1x05R022062; Tue, 11 Sep 2007 01:59:00 GMT (envelope-from kevlo) Message-Id: <200709110159.l8B1x05R022062@repoman.freebsd.org> From: Kevin Lo Date: Tue, 11 Sep 2007 01:59: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/usr.bin/bluetooth/rfcomm_sppd rfcomm_sppd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 11 Sep 2007 01:59:01 -0000 kevlo 2007-09-11 01:59:00 UTC FreeBSD src repository Modified files: usr.bin/bluetooth/rfcomm_sppd rfcomm_sppd.c Log: Check return value of listen(). Reviewed by: emax Approved by: re (kensmith) Revision Changes Path 1.10 +2 -1 src/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c From owner-cvs-src@FreeBSD.ORG Tue Sep 11 07:51:05 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F3A916A41B; Tue, 11 Sep 2007 07:51:05 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2A98113C46B; Tue, 11 Sep 2007 07:51:05 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8B7p5Rh058395; Tue, 11 Sep 2007 07:51:05 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8B7p4bP058394; Tue, 11 Sep 2007 07:51:04 GMT (envelope-from ru) Message-Id: <200709110751.l8B7p4bP058394@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 11 Sep 2007 07:51: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/usr.bin/systat pigs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 11 Sep 2007 07:51:05 -0000 ru 2007-09-11 07:51:04 UTC FreeBSD src repository Modified files: usr.bin/systat pigs.c Log: - Stop computing %CPU for the imaginary idle process; we now have real idle processes for that. - Fix the display on SMP by not scaling the sum of %CPU down to 1. Instead, display raw data as computed by the kernel, like in top(1). Reviewed by: bde Approved by: re (bmah) MFC after: 1 week Revision Changes Path 1.23 +6 -54 src/usr.bin/systat/pigs.c From owner-cvs-src@FreeBSD.ORG Tue Sep 11 22:54:11 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E89116A417; Tue, 11 Sep 2007 22:54:11 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4607413C461; Tue, 11 Sep 2007 22:54:11 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8BMsBEC074638; Tue, 11 Sep 2007 22:54:11 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8BMsB7P074637; Tue, 11 Sep 2007 22:54:11 GMT (envelope-from attilio) Message-Id: <200709112254.l8BMsB7P074637@repoman.freebsd.org> From: Attilio Rao Date: Tue, 11 Sep 2007 22:54: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/amd64/amd64 local_apic.c src/sys/i386/acpica madt.c src/sys/i386/i386 local_apic.c src/sys/kern subr_smp.c src/sys/sun4v/mdesc mdesc_init.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Sep 2007 22:54:11 -0000 attilio 2007-09-11 22:54:09 UTC FreeBSD src repository Modified files: sys/amd64/amd64 local_apic.c sys/i386/acpica madt.c sys/i386/i386 local_apic.c sys/kern subr_smp.c sys/sun4v/mdesc mdesc_init.c Log: This is a follow-up, cleaning-up commit about recent changes involving topology foo functions. Working at the patch for topology problems in ia32/amd64 evicted some problems regarding functions ordering in the SI_SUB_CPU family of SYSINIT'ed subsystems. In order to avoid problems with new modified to involved functions, a correct ordering is not semantically specified for SI_SUB_CPU functions (for a larger view of the issue please visit: http://lists.freebsd.org/pipermail/freebsd-current/2007-July/075409.html ) Discussed with: peter Tested by: kris, Rui Paulo Approved by: jeff Approved by: re Revision Changes Path 1.42 +1 -1 src/sys/amd64/amd64/local_apic.c 1.28 +1 -1 src/sys/i386/acpica/madt.c 1.44 +1 -1 src/sys/i386/i386/local_apic.c 1.201 +1 -1 src/sys/kern/subr_smp.c 1.6 +1 -1 src/sys/sun4v/mdesc/mdesc_init.c From owner-cvs-src@FreeBSD.ORG Tue Sep 11 23:30:19 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90EBF16A41B; Tue, 11 Sep 2007 23:30:19 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6A6FA13C45E; Tue, 11 Sep 2007 23:30:19 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8BNUJUw078035; Tue, 11 Sep 2007 23:30:19 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8BNUJC8078033; Tue, 11 Sep 2007 23:30:19 GMT (envelope-from bmah) Message-Id: <200709112330.l8BNUJC8078033@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 11 Sep 2007 23:30: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/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Sep 2007 23:30:19 -0000 bmah 2007-09-11 23:30:17 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release notes: camcontrol(8) readcap, some mount_* programs removed [1]. Suggested by: rodrigc [1] Approved by: re (implicitly) Revision Changes Path 1.1063 +22 -1 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Tue Sep 11 23:31:14 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D581016A468; Tue, 11 Sep 2007 23:31:14 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AE37313C45E; Tue, 11 Sep 2007 23:31:14 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8BNVECL078208; Tue, 11 Sep 2007 23:31:14 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8BNVElN078207; Tue, 11 Sep 2007 23:31:14 GMT (envelope-from bmah) Message-Id: <200709112331.l8BNVElN078207@repoman.freebsd.org> From: "Bruce A. Mah" Date: Tue, 11 Sep 2007 23:31: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/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Sep 2007 23:31:15 -0000 bmah 2007-09-11 23:31:14 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: Fix for missing punctuation in r1.1063. Approved by: re (implicitly) Revision Changes Path 1.1064 +8 -8 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Tue Sep 11 23:49:28 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31E3616A500; Tue, 11 Sep 2007 23:49:28 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 083E713C459; Tue, 11 Sep 2007 23:49:28 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8BNnRuD079131; Tue, 11 Sep 2007 23:49:27 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8BNnRS1079130; Tue, 11 Sep 2007 23:49:27 GMT (envelope-from kmacy) Message-Id: <200709112349.l8BNnRS1079130@repoman.freebsd.org> From: Kip Macy Date: Tue, 11 Sep 2007 23:49: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/cxgb cxgb_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: Tue, 11 Sep 2007 23:49:28 -0000 kmacy 2007-09-11 23:49:27 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_main.c Log: Evidently setup_rss needs to happen whenever bind_qsets is done. This fixes a problem with jumbo frames when not using msi-x interrupts. Supported by: Chelsio Approved by: re (blanket) Revision Changes Path 1.36 +0 -4 src/sys/dev/cxgb/cxgb_main.c From owner-cvs-src@FreeBSD.ORG Wed Sep 12 02:54:57 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4B6516A468; Wed, 12 Sep 2007 02:54:57 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9157113C45B; Wed, 12 Sep 2007 02:54:57 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8C2svqP002608; Wed, 12 Sep 2007 02:54:57 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8C2svEV002607; Wed, 12 Sep 2007 02:54:57 GMT (envelope-from obrien) Message-Id: <200709120254.l8C2svEV002607@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 12 Sep 2007 02:54:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin 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: Wed, 12 Sep 2007 02:54:58 -0000 obrien 2007-09-12 02:54:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin Makefile Log: Remove localism that snuck in the last commit. Revision Changes Path 1.332.2.9 +0 -1 src/usr.sbin/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 12 05:54:54 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFE6216A418; Wed, 12 Sep 2007 05:54:54 +0000 (UTC) (envelope-from gnn@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7CAF613C494; Wed, 12 Sep 2007 05:54:54 +0000 (UTC) (envelope-from gnn@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8C5sspa070096; Wed, 12 Sep 2007 05:54:54 GMT (envelope-from gnn@repoman.freebsd.org) Received: (from gnn@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8C5ssbp070095; Wed, 12 Sep 2007 05:54:54 GMT (envelope-from gnn) Message-Id: <200709120554.l8C5ssbp070095@repoman.freebsd.org> From: "George V. Neville-Neil" Date: Wed, 12 Sep 2007 05:54: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/sys/netipsec ipsec_input.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 12 Sep 2007 05:54:54 -0000 gnn 2007-09-12 05:54:54 UTC FreeBSD src repository Modified files: sys/netipsec ipsec_input.c Log: Fix for an infinite loop in processing ESP, IPv6 packets. The control input routine passes a NULL as its void argument when it has reached the innermost header, which terminates the loop. Reported by: Pawel Worach Approved by: re Revision Changes Path 1.19 +17 -4 src/sys/netipsec/ipsec_input.c From owner-cvs-src@FreeBSD.ORG Wed Sep 12 07:43:44 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EE2F16A41A; Wed, 12 Sep 2007 07:43:44 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E1A4A13C46E; Wed, 12 Sep 2007 07:43:43 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8C7hh4A081376; Wed, 12 Sep 2007 07:43:43 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8C7hhL5081375; Wed, 12 Sep 2007 07:43:43 GMT (envelope-from ariff) Message-Id: <200709120743.l8C7hhL5081375@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 12 Sep 2007 07:43: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/conf NOTES options src/sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c emu10kx.h src/sys/modules/sound/driver/emu10kx Makefile src/share/man/man4 snd_emu10kx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2007 07:43:44 -0000 ariff 2007-09-12 07:43:43 UTC FreeBSD src repository Modified files: sys/conf NOTES options sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c emu10kx.h sys/modules/sound/driver/emu10kx Makefile share/man/man4 snd_emu10kx.4 Log: Update snd_emu10kx driver with recent perforce changes (and few other changes too). (without any real order) 1. Use device_get_nameunit for mutex naming 2. Add timer for low-latency playback 3. Move most mixer controls from sysctls to mixer(8) controls. This is a largest part of this patch. 4. Add analog/digital switch (as a temporary sysctl) 5. Get back support for low-bitrate playback (with help of (2)) 6. Change locking for exclusive I/O. Writing to non-PTR register is almost safe and does not need to be ordered with PTR operations. 7. Disable MIDI until we get it to detach properly and fix memory managment problems. 8. Enable multichannel playback by default. It is as stable as single-channel mode. Multichannel recording is still an experimental feature. 9. Multichannel options can be changed by loader tunables. 10. Add a way to disable card from a loader tunable. 11. Add new PCI IDs. 12. Debugger settings are loader tunables now. 14. Remove some unused variables. 15. Mark pcm sub-devices MPSAFE. 16. Partially revert (bus_setup_intr -> snd_setup_intr) since it need to be done independently Submitted by: Yuriy Tsibizov (driver maintainer) Approved by: re (bmah) Revision Changes Path 1.5 +121 -46 src/share/man/man4/snd_emu10kx.4 1.1450 +0 -1 src/sys/conf/NOTES 1.606 +0 -3 src/sys/conf/options 1.4 +3 -7 src/sys/dev/sound/pci/emu10kx-midi.c 1.11 +405 -62 src/sys/dev/sound/pci/emu10kx-pcm.c 1.12 +839 -446 src/sys/dev/sound/pci/emu10kx.c 1.4 +4 -1 src/sys/dev/sound/pci/emu10kx.h 1.4 +1 -12 src/sys/modules/sound/driver/emu10kx/Makefile From owner-cvs-src@FreeBSD.ORG Wed Sep 12 08:51:27 2007 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17BE016A41A; Wed, 12 Sep 2007 08:51:27 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from swip.net (mailfe08.swip.net [212.247.154.225]) by mx1.freebsd.org (Postfix) with ESMTP id 211B113C491; Wed, 12 Sep 2007 08:51:25 +0000 (UTC) (envelope-from joel@FreeBSD.org) X-Cloudmark-Score: 0.000000 [] Received: from [81.229.94.7] (account mj571680@tele2.se HELO [192.168.1.133]) by mailfe08.swip.net (CommuniGate Pro SMTP 5.1.10) with ESMTPA id 607861909; Wed, 12 Sep 2007 09:51:23 +0200 From: Joel Dahl To: Ariff Abdullah In-Reply-To: <200709120743.l8C7hhL5081375@repoman.freebsd.org> References: <200709120743.l8C7hhL5081375@repoman.freebsd.org> Content-Type: text/plain Date: Wed, 12 Sep 2007 09:51:21 +0200 Message-Id: <1189583482.1142.0.camel@jesus.automatvapen.se> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES options src/sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c emu10kx.h src/sys/modules/sound/driver/emu10kx Makefile src/share/man/man4 snd_emu10kx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2007 08:51:27 -0000 On Wed, 2007-09-12 at 07:43 +0000, Ariff Abdullah wrote: > ariff 2007-09-12 07:43:43 UTC > > FreeBSD src repository > > Modified files: > sys/conf NOTES options > sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c > emu10kx.h > sys/modules/sound/driver/emu10kx Makefile > share/man/man4 snd_emu10kx.4 > Log: > Update snd_emu10kx driver with recent perforce changes (and few > other changes too). Thanks! -- Joel From owner-cvs-src@FreeBSD.ORG Wed Sep 12 10:14:38 2007 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F133516A417 for ; Wed, 12 Sep 2007 10:14:38 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.freebsd.org (Postfix) with ESMTP id 7A5CA13C483 for ; Wed, 12 Sep 2007 10:14:38 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so135738nfb for ; Wed, 12 Sep 2007 03:14:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=lurcA6x+9p9Es3rYMo6pNghOG4LFTXuqXCh52Xf02Nc=; b=tHqvmMank5gZqKEUvIcdm7cOWpxV8GhRM8LmbWNGqAWdosnq4kWpw650/rLlGKFxXcDx6mKH3JTQ1nQPxNTg3xs9yVcrLSH3/W6I1I48yt0eX1auophbcsM56FgiM/LRok+z5DlZCGYwfC2WJKNrkOudZoigGkmrrrdm5Zx+YMs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=htGfcw58pGTIDGrQXg71uTlnnBZpFQaEQt8vQ30I4Tz3XO6B/zIGqP412lFV/LvNbMZ51bTFG6+LFRTqjhWs2BcpBlbAFmrPA3R69hL+dRw/lmlukSgCK3ncFb0hZXkUOXU7cF+DGQg8n73G3s2ODAI+P9WYqP1C9NoaF7wneeI= Received: by 10.78.201.2 with SMTP id y2mr3054928huf.1189590417392; Wed, 12 Sep 2007 02:46:57 -0700 (PDT) Received: by 10.78.120.9 with HTTP; Wed, 12 Sep 2007 02:46:57 -0700 (PDT) Message-ID: <3bbf2fe10709120246g23910de2s531a58c89af32b2b@mail.gmail.com> Date: Wed, 12 Sep 2007 11:46:57 +0200 From: "Attilio Rao" Sender: asmrookie@gmail.com To: "Ariff Abdullah" In-Reply-To: <200709120743.l8C7hhL5081375@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200709120743.l8C7hhL5081375@repoman.freebsd.org> X-Google-Sender-Auth: 71f993cf31c43cba Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/conf NOTES options src/sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c emu10kx.h src/sys/modules/sound/driver/emu10kx Makefile src/share/man/man4 snd_emu10kx.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2007 10:14:39 -0000 2007/9/12, Ariff Abdullah : > ariff 2007-09-12 07:43:43 UTC > > FreeBSD src repository > > Modified files: > sys/conf NOTES options > sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c > emu10kx.h > sys/modules/sound/driver/emu10kx Makefile > share/man/man4 snd_emu10kx.4 > Log: > Update snd_emu10kx driver with recent perforce changes (and few > other changes too). Great work, thanks. Attilio -- Peace can only be achieved by understanding - A. Einstein From owner-cvs-src@FreeBSD.ORG Wed Sep 12 16:31:33 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BD5916A421; Wed, 12 Sep 2007 16:31:33 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7C74313C47E; Wed, 12 Sep 2007 16:31:33 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8CGVXGA042231; Wed, 12 Sep 2007 16:31:33 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8CGVXUD042230; Wed, 12 Sep 2007 16:31:33 GMT (envelope-from kib) Message-Id: <200709121631.l8CGVXUD042230@repoman.freebsd.org> From: Konstantin Belousov Date: Wed, 12 Sep 2007 16:31: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/sys mount.h src/sys/kern vfs_mount.c vfs_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Sep 2007 16:31:33 -0000 kib 2007-09-12 16:31:33 UTC FreeBSD src repository Modified files: sys/sys mount.h sys/kern vfs_mount.c vfs_subr.c Log: When restoring the mount after umount failed, the MNTK_UNMOUNT flag prevents insmntque() from placing reallocated syncer vnode on mount list, that causes panic in vfs_allocate_syncvnode(). Introduce MNTK_NOINSMNTQ flag, that marks the period when instmntque is not allowed to success, instead of MNTK_UNMOUNT. The MNTK_NOINSMNTQ is set and cleared simultaneously with MNTK_UNMOUNT, except on umount error path, where it is cleaned just before the syncer vnode is going to be allocated. Reported by: Peter Jeremy Suggested by: tegge Approved by: re (rwatson) Revision Changes Path 1.265 +9 -4 src/sys/kern/vfs_mount.c 1.707 +1 -1 src/sys/kern/vfs_subr.c 1.228 +5 -0 src/sys/sys/mount.h From owner-cvs-src@FreeBSD.ORG Wed Sep 12 18:28:11 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11A2416A417; Wed, 12 Sep 2007 18:28:11 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D353813C457; Wed, 12 Sep 2007 18:28:10 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8CISANZ061455; Wed, 12 Sep 2007 18:28:10 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8CISAbb061451; Wed, 12 Sep 2007 18:28:10 GMT (envelope-from cognet) Message-Id: <200709121828.l8CISAbb061451@repoman.freebsd.org> From: Olivier Houchard Date: Wed, 12 Sep 2007 18:28: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/arm/sa11x0 uart_dev_sa1110.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 12 Sep 2007 18:28:11 -0000 cognet 2007-09-12 18:28:10 UTC FreeBSD src repository Modified files: sys/arm/sa11x0 uart_dev_sa1110.c Log: It's probably time I learn C. Fix a few while (!uart_getreg() & SR1_TNF) when while (!(uart_getreg() & SR18TNF)) was really meant. This driver should die anyway, it's awful, and uart_ns8250 should be fine for the StrongArm 1110. I'll kill it later. Submitted by: Mikhael Skvorts Approved by: re (blanket) Revision Changes Path 1.9 +2 -2 src/sys/arm/sa11x0/uart_dev_sa1110.c From owner-cvs-src@FreeBSD.ORG Wed Sep 12 19:50:25 2007 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81B8D16A47D for ; Wed, 12 Sep 2007 19:50:25 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.freebsd.org (Postfix) with ESMTP id 6BA4E13C4E7 for ; Wed, 12 Sep 2007 19:50:22 +0000 (UTC) (envelope-from h.skuhra@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so279458nfb for ; Wed, 12 Sep 2007 12:50:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:date:from:to:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; bh=BdO44sOkeiYdvfrpn60dl+ftEPo00KG2a17BupKY9OU=; b=rFCN3o6Q1Ckf9il9bCxSynHCiN8mjjGCVQ0udeCJGE4k/UygC/FwoCsQbciJTApKuUQtnG0Lflduk8QG3Ln3mk0qUZDKGEwkcOdsivDMZHYQdJFXBTZ2JITjsByHAsOCvM61hyS8mCtL5hHutERCQ66vA+mS5HGKPbl2t/NRAlw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:from:to:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=OCqdn8SngZZ0o5JM9dU0GqwJG17D4xL6gv8E44hb6inQv+w5nD/KledLb5ubTP2DpHArRV5107n0mABm6gsUUiAf9NRdhcW/DoKQjUGTuFqXaL6xUSD64YMQ120+3L6qzerSNpySoFDBrRigMVYmMHG/utyh4QeFhNd4HktUcA0= Received: by 10.86.57.9 with SMTP id f9mr95253fga.1189625057812; Wed, 12 Sep 2007 12:24:17 -0700 (PDT) Received: from oslo.ath.cx ( [213.47.80.26]) by mx.google.com with ESMTPS id y18sm13646872fkd.2007.09.12.12.24.11 (version=SSLv3 cipher=OTHER); Wed, 12 Sep 2007 12:24:12 -0700 (PDT) Date: Wed, 12 Sep 2007 21:24:16 +0200 From: "Herbert J. Skuhra" To: cvs-src@freebsd.org Message-ID: <20070912192416.GA1017@oslo.ath.cx> References: <200709080804.l8884Set086619@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200709080804.l8884Set086619@repoman.freebsd.org> User-Agent: Mutt/1.5.16 (2007-06-09) Subject: Re: cvs commit: src/share/man/man5 Makefile ar.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: Wed, 12 Sep 2007 19:50:25 -0000 Joseph Koshy skrev: > jkoshy 2007-09-08 08:04:28 UTC > > FreeBSD src repository > > Modified files: > share/man/man5 Makefile > Added files: > share/man/man5 ar.5 > Log: > Add a manual page documenting the format of `ar' archives. > > Reviewed by: Kai Wang > Approved by: re (bmah) Hei, /usr/share/man/man5/ar.5.gz is listed in ObsoleteFiles.inc % make check-old >>> Checking for old files /usr/share/man/man5/ar.5.gz - Herbert From owner-cvs-src@FreeBSD.ORG Thu Sep 13 01:37:17 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D143816A419; Thu, 13 Sep 2007 01:37:17 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B48C513C465; Thu, 13 Sep 2007 01:37:17 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8D1bHF3014842; Thu, 13 Sep 2007 01:37:17 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8D1bHA9014841; Thu, 13 Sep 2007 01:37:17 GMT (envelope-from njl) Message-Id: <200709130137.l8D1bHA9014841@repoman.freebsd.org> From: Nate Lawson Date: Thu, 13 Sep 2007 01:37: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/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: Thu, 13 Sep 2007 01:37:17 -0000 njl 2007-09-13 01:37:17 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Reject requests to start or ack a suspend sequence on platforms that do not support suspend/resume, currently all except i386. Tested by: jkim Approved by: re Revision Changes Path 1.242 +10 -0 src/sys/dev/acpica/acpi.c From owner-cvs-src@FreeBSD.ORG Thu Sep 13 09:00:33 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 021E616A418; Thu, 13 Sep 2007 09:00:33 +0000 (UTC) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E7AA013C45A; Thu, 13 Sep 2007 09:00:32 +0000 (UTC) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8D90Wp7068393; Thu, 13 Sep 2007 09:00:32 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8D90WE5068392; Thu, 13 Sep 2007 09:00:32 GMT (envelope-from dwmalone) Message-Id: <200709130900.l8D90WE5068392@repoman.freebsd.org> From: David Malone Date: Thu, 13 Sep 2007 09:00: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/sys/net bpf_filter.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 13 Sep 2007 09:00:33 -0000 dwmalone 2007-09-13 09:00:32 UTC FreeBSD src repository Modified files: sys/net bpf_filter.c Log: Make the type of the memory used by the BPF filter unsigned, so it matches the BPF registers (which are the only thing that is assigned to/from BPF memory). This is a pedantic change that shouldn't change any behaviour. PR: 115931 Submitted by: Matthew Luckie Approved by: re (bmah) MFC after: 3 weeks Revision Changes Path 1.28 +1 -1 src/sys/net/bpf_filter.c From owner-cvs-src@FreeBSD.ORG Thu Sep 13 09:12:37 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6312A16A418; Thu, 13 Sep 2007 09:12:37 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 548E013C45E; Thu, 13 Sep 2007 09:12:37 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8D9Cb9S070508; Thu, 13 Sep 2007 09:12:37 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8D9Cbnv070507; Thu, 13 Sep 2007 09:12:37 GMT (envelope-from attilio) Message-Id: <200709130912.l8D9Cbnv070507@repoman.freebsd.org> From: Attilio Rao Date: Thu, 13 Sep 2007 09:12: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 subr_sleepqueue.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 13 Sep 2007 09:12:37 -0000 attilio 2007-09-13 09:12:37 UTC FreeBSD src repository Modified files: sys/kern subr_sleepqueue.c Log: subr_sleepqueue.c presents a thread lock missing which leads to dangerous races for some struct thread members. More specifically, this bug seems responsible for some memory dumping problems people were experiencing. Fix this adding correct thread locking. Tested by: rwatson Submitted by: tegge Approved by: jeff Approved by: re Revision Changes Path 1.39 +2 -0 src/sys/kern/subr_sleepqueue.c From owner-cvs-src@FreeBSD.ORG Thu Sep 13 10:36:43 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC90916A41A; Thu, 13 Sep 2007 10:36:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C478D13C468; Thu, 13 Sep 2007 10:36:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DAahFl076550; Thu, 13 Sep 2007 10:36:43 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DAahZO076549; Thu, 13 Sep 2007 10:36:43 GMT (envelope-from rrs) Message-Id: <200709131036.l8DAahZO076549@repoman.freebsd.org> From: Randall Stewart Date: Thu, 13 Sep 2007 10:36: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/netinet sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_timer.c sctp_timer.h sctputil.c src/sys/netinet6 sctp6_usrreq.c sctp6_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2007 10:36:43 -0000 rrs 2007-09-13 10:36:43 UTC FreeBSD src repository Modified files: sys/netinet sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_timer.c sctp_timer.h sctputil.c sys/netinet6 sctp6_usrreq.c sctp6_var.h Log: - Incorrect error EAGAIN returned for invalid send on a locked stream (using EEOR mode). Changed to EINVAL (in sctp_output.c) - Static analysis comments added - fix in mobility code to return a value (static analysis found). - sctp6_notify function made visible instead of static (this is needed for Panda). Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.44 +13 -0 src/sys/netinet/sctp_indata.c 1.62 +1 -0 src/sys/netinet/sctp_input.c 1.54 +7 -5 src/sys/netinet/sctp_output.c 1.57 +1 -0 src/sys/netinet/sctp_pcb.c 1.30 +3 -3 src/sys/netinet/sctp_timer.c 1.7 +1 -1 src/sys/netinet/sctp_timer.h 1.60 +1 -3 src/sys/netinet/sctputil.c 1.41 +1 -1 src/sys/netinet6/sctp6_usrreq.c 1.8 +8 -0 src/sys/netinet6/sctp6_var.h From owner-cvs-src@FreeBSD.ORG Thu Sep 13 14:43:56 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43BD716A417; Thu, 13 Sep 2007 14:43:56 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 16ABF13C4E8; Thu, 13 Sep 2007 14:43:56 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DEhust009787; Thu, 13 Sep 2007 14:43:56 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DEhtrt009786; Thu, 13 Sep 2007 14:43:55 GMT (envelope-from rrs) Message-Id: <200709131443.l8DEhtrt009786@repoman.freebsd.org> From: Randall Stewart Date: Thu, 13 Sep 2007 14:43: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/netinet sctp_asconf.c sctp_constants.h sctp_output.c sctp_pcb.c sctp_sysctl.c sctp_sysctl.h sctp_uio.h sctputil.c sctputil.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, 13 Sep 2007 14:43:56 -0000 rrs 2007-09-13 14:43:55 UTC FreeBSD src repository Modified files: sys/netinet sctp_asconf.c sctp_constants.h sctp_output.c sctp_pcb.c sctp_sysctl.c sctp_sysctl.h sctp_uio.h sctputil.c sctputil.h Log: - DF bit was on for COOKIE-ECHO chunks. This is incorrect and should be OFF letting IP fragment large cookie-echos. - Rename sysctl variable logging to log_level. - Fix description of sysctl variable stats. - Add sysctl variable log to make sctp_log readable via sysctl mechanism (this is by compile switch and targets non KTR platforms or when someone wants to do performance wise tracing). - Removed debug code Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.31 +2 -9 src/sys/netinet/sctp_asconf.c 1.30 +0 -5 src/sys/netinet/sctp_constants.h 1.55 +10 -1 src/sys/netinet/sctp_output.c 1.58 +3 -0 src/sys/netinet/sctp_pcb.c 1.16 +12 -2 src/sys/netinet/sctp_sysctl.c 1.12 +4 -0 src/sys/netinet/sctp_sysctl.h 1.28 +16 -0 src/sys/netinet/sctp_uio.h 1.61 +12 -22 src/sys/netinet/sctputil.c 1.29 +1 -1 src/sys/netinet/sctputil.h From owner-cvs-src@FreeBSD.ORG Thu Sep 13 14:52:11 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E988516A417; Thu, 13 Sep 2007 14:52:11 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A456613C491; Thu, 13 Sep 2007 14:52:11 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DEqB2X010316; Thu, 13 Sep 2007 14:52:11 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DEqBoF010315; Thu, 13 Sep 2007 14:52:11 GMT (envelope-from jkim) Message-Id: <200709131452.l8DEqBoF010315@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 13 Sep 2007 14:52: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/share/misc committers-ports.dot X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 13 Sep 2007 14:52:12 -0000 jkim 2007-09-13 14:52:10 UTC FreeBSD src repository Modified files: share/misc committers-ports.dot Log: Add my ports mentor, his mentor, and their offsprings including me. Reviewed by: sobomax, glewis, hq, znerd, demon Approved by: re (bmah) Revision Changes Path 1.61 +12 -0 src/share/misc/committers-ports.dot From owner-cvs-src@FreeBSD.ORG Thu Sep 13 16:06:31 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A046116A419; Thu, 13 Sep 2007 16:06:31 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4F22613C459; Thu, 13 Sep 2007 16:06:31 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DG6VCP016935; Thu, 13 Sep 2007 16:06:31 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DG6VbB016934; Thu, 13 Sep 2007 16:06:31 GMT (envelope-from brueffer) Message-Id: <200709131606.l8DG6VbB016934@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 13 Sep 2007 16: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/share/man/man4 ral.4 ural.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, 13 Sep 2007 16:06:31 -0000 brueffer 2007-09-13 16:06:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 ral.4 ural.4 Log: MFC: Prepare for automatic hardware notes generation: - mention the supported chipsets in the HARDWARE section - remove unnecessary Li arguments Revision Changes Path 1.3.2.6 +88 -87 src/share/man/man4/ral.4 1.3.2.7 +30 -29 src/share/man/man4/ural.4 From owner-cvs-src@FreeBSD.ORG Thu Sep 13 16:23:29 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C2A216A419; Thu, 13 Sep 2007 16:23:29 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id DCEF413C457; Thu, 13 Sep 2007 16:23:28 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DGNSse018201; Thu, 13 Sep 2007 16:23:28 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DGNST4018200; Thu, 13 Sep 2007 16:23:28 GMT (envelope-from brueffer) Message-Id: <200709131623.l8DGNST4018200@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 13 Sep 2007 16:23:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.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, 13 Sep 2007 16:23:29 -0000 brueffer 2007-09-13 16:23:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: MFC: rev. 1.320 + 1.324 - Sort wlan entries by driver name. - Add information about hardware supported by ipw(4) and iwi(4). Revision Changes Path 1.282.2.16 +19 -13 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-src@FreeBSD.ORG Thu Sep 13 16:25:44 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC12116A41A; Thu, 13 Sep 2007 16:25:44 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 571F413C465; Thu, 13 Sep 2007 16:25:44 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DGPiDh018348; Thu, 13 Sep 2007 16:25:44 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DGPinr018347; Thu, 13 Sep 2007 16:25:44 GMT (envelope-from brueffer) Message-Id: <200709131625.l8DGPinr018347@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 13 Sep 2007 16:25:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml 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: Thu, 13 Sep 2007 16:25:44 -0000 brueffer 2007-09-13 16:25:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/share/misc dev.archlist.txt Log: MFC: Autogenerate hardware notes for ral(4) and ural(4). Revision Changes Path 1.282.2.17 +4 -0 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.62.2.18 +2 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-src@FreeBSD.ORG Thu Sep 13 21:29:03 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B10A16A417; Thu, 13 Sep 2007 21:29:03 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4C02C13C461; Thu, 13 Sep 2007 21:29:03 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8DLT3J0068005; Thu, 13 Sep 2007 21:29:03 GMT (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8DLT32T068004; Thu, 13 Sep 2007 21:29:03 GMT (envelope-from gallatin) Message-Id: <200709132129.l8DLT32T068004@repoman.freebsd.org> From: Andrew Gallatin Date: Thu, 13 Sep 2007 21:29:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mxge if_mxge.c if_mxge_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Sep 2007 21:29:03 -0000 gallatin 2007-09-13 21:29:03 UTC FreeBSD src repository Modified files: sys/dev/mxge if_mxge.c if_mxge_var.h Log: Add support for a new device id (9). Mxge NICs with the new device id support MSI-X. Approved by: re (bmah) Revision Changes Path 1.42 +2 -1 src/sys/dev/mxge/if_mxge.c 1.16 +1 -0 src/sys/dev/mxge/if_mxge_var.h From owner-cvs-src@FreeBSD.ORG Fri Sep 14 01:12:40 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 028F316A41A; Fri, 14 Sep 2007 01:12:40 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E1B7E13C46A; Fri, 14 Sep 2007 01:12:39 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E1CdhD096820; Fri, 14 Sep 2007 01:12:39 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E1CdrP096819; Fri, 14 Sep 2007 01:12:39 GMT (envelope-from attilio) Message-Id: <200709140112.l8E1CdrP096819@repoman.freebsd.org> From: Attilio Rao Date: Fri, 14 Sep 2007 01:12: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/amd64/isa clock.c src/sys/kern subr_lock.c src/sys/sys lock_profile.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, 14 Sep 2007 01:12:40 -0000 attilio 2007-09-14 01:12:39 UTC FreeBSD src repository Modified files: sys/amd64/isa clock.c sys/kern subr_lock.c sys/sys lock_profile.h Log: Currently the LO_NOPROFILE flag (which is masked on upper level code by per-primitive macros like MTX_NOPROFILE, SX_NOPROFILE or RW_NOPROFILE) is not really honoured. In particular lock_profile_obtain_lock_failure() and lock_profile_obtain_lock_success() are naked respect this flag. The bug leads to locks marked with no-profiling to be profiled as well. In the case of the clock_lock, used by the timer i8254 this leads to unpredictable behaviour both on amd64 and ia32 (double faults panic, sudden reboots, etc.). The amd64 clock_lock is also not marked as not profilable as it should be. Fix these bugs adding proper checks in the lock profiling code and at clock_lock initialization time. i8254 bug pointed out by: kris Tested by: matteo, Giuseppe Cocomazzi Approved by: jeff (mentor) Approved by: re Revision Changes Path 1.234 +1 -1 src/sys/amd64/isa/clock.c 1.17 +1 -1 src/sys/kern/subr_lock.c 1.15 +5 -3 src/sys/sys/lock_profile.h From owner-cvs-src@FreeBSD.ORG Fri Sep 14 01:28:19 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28F2816A417; Fri, 14 Sep 2007 01:28:19 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB00613C45D; Fri, 14 Sep 2007 01:28:18 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E1SI9Q098666; Fri, 14 Sep 2007 01:28:18 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E1SIix098664; Fri, 14 Sep 2007 01:28:18 GMT (envelope-from yongari) Message-Id: <200709140128.l8E1SIix098664@repoman.freebsd.org> From: Pyun YongHyeon Date: Fri, 14 Sep 2007 01:28: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/nfe if_nfe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 01:28:19 -0000 yongari 2007-09-14 01:28:18 UTC FreeBSD src repository Modified files: sys/dev/nfe if_nfe.c Log: Fix typo. Pointed out: marius Approved by: re (bmah) Revision Changes Path 1.20 +2 -2 src/sys/dev/nfe/if_nfe.c From owner-cvs-src@FreeBSD.ORG Fri Sep 14 01:32:31 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69F6616A421; Fri, 14 Sep 2007 01:32:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 51BF813C45D; Fri, 14 Sep 2007 01:32:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E1WV8B099248; Fri, 14 Sep 2007 01:32:31 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E1WVH0099247; Fri, 14 Sep 2007 01:32:31 GMT (envelope-from edwin) Message-Id: <200709140132.l8E1WVH0099247@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 14 Sep 2007 01:32:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.all calendar.australia calendar.birthday calendar.christian calendar.computer calendar.dutch calendar.freebsd calendar.history calendar.holiday calendar.judaic calendar.music calendar.newzealand ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 01:32:31 -0000 edwin 2007-09-14 01:32:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.bin/calendar/calendars calendar.all calendar.australia calendar.birthday calendar.christian calendar.computer calendar.freebsd calendar.history calendar.holiday calendar.judaic calendar.music calendar.newzealand calendar.usholiday usr.bin/calendar/calendars/de_DE.ISO8859-1 calendar.feiertag calendar.geschichte calendar.musik usr.bin/calendar/calendars/fr_FR.ISO8859-1 calendar.fetes calendar.jferies usr.bin/calendar/calendars/ru_RU.KOI8-R calendar.holiday calendar.msk Added files: (Branch: RELENG_5) usr.bin/calendar/calendars calendar.dutch calendar.ukrainian usr.bin/calendar/calendars/uk_UA.KOI8-U calendar.all calendar.holiday calendar.misc calendar.orthodox Log: Massive MFC for all calendar files which have been updated in the past but were never MFCd. PR: conf/61641 conf/70252 conf/107453 conf/113285 conf/113642 (and others) Submitted by: various Revision Changes Path 1.9.2.1 +1 -0 src/usr.bin/calendar/calendars/calendar.all 1.5.4.1 +3 -1 src/usr.bin/calendar/calendars/calendar.australia 1.28.2.3 +1 -1 src/usr.bin/calendar/calendars/calendar.birthday 1.9.4.1 +3 -3 src/usr.bin/calendar/calendars/calendar.christian 1.10.4.1 +2 -1 src/usr.bin/calendar/calendars/calendar.computer 1.2.2.1 +62 -0 src/usr.bin/calendar/calendars/calendar.dutch (new) 1.139.2.8 +43 -6 src/usr.bin/calendar/calendars/calendar.freebsd 1.31.4.2 +2 -2 src/usr.bin/calendar/calendars/calendar.history 1.28.2.3 +14 -14 src/usr.bin/calendar/calendars/calendar.holiday 1.12.6.1 +212 -206 src/usr.bin/calendar/calendars/calendar.judaic 1.16.4.2 +3 -2 src/usr.bin/calendar/calendars/calendar.music 1.1.10.2 +0 -0 src/usr.bin/calendar/calendars/calendar.newzealand 1.1.4.1 +12 -0 src/usr.bin/calendar/calendars/calendar.ukrainian (new) 1.8.6.1 +2 -2 src/usr.bin/calendar/calendars/calendar.usholiday 1.9.4.1 +14 -14 src/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag 1.12.4.1 +1 -1 src/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte 1.11.4.1 +1 -2 src/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik 1.1.10.1 +1 -1 src/usr.bin/calendar/calendars/fr_FR.ISO8859-1/calendar.fetes 1.1.10.1 +3 -2 src/usr.bin/calendar/calendars/fr_FR.ISO8859-1/calendar.jferies 1.2.4.1 +10 -7 src/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.holiday 1.6.10.1 +2 -2 src/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk 1.1.4.1 +14 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.all (new) 1.1.4.1 +22 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.holiday (new) 1.1.4.1 +18 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.misc (new) 1.1.4.1 +35 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.orthodox (new) From owner-cvs-src@FreeBSD.ORG Fri Sep 14 01:33:54 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FDC016A420; Fri, 14 Sep 2007 01:33:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 28C6713C458; Fri, 14 Sep 2007 01:33:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E1XsQR099507; Fri, 14 Sep 2007 01:33:54 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E1Xswp099506; Fri, 14 Sep 2007 01:33:54 GMT (envelope-from edwin) Message-Id: <200709140133.l8E1Xswp099506@repoman.freebsd.org> From: Edwin Groothuis Date: Fri, 14 Sep 2007 01:33:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.all calendar.australia calendar.birthday calendar.christian calendar.computer calendar.dutch calendar.freebsd calendar.history calendar.holiday calendar.judaic calendar.music calendar.ukrainian ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 01:33:54 -0000 edwin 2007-09-14 01:33:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/calendar/calendars calendar.all calendar.australia calendar.birthday calendar.christian calendar.computer calendar.freebsd calendar.history calendar.holiday calendar.judaic calendar.music calendar.ukrainian calendar.usholiday usr.bin/calendar/calendars/de_DE.ISO8859-1 calendar.feiertag calendar.geschichte calendar.musik usr.bin/calendar/calendars/fr_FR.ISO8859-1 calendar.fetes calendar.jferies usr.bin/calendar/calendars/ru_RU.KOI8-R calendar.holiday calendar.msk usr.bin/calendar/calendars/uk_UA.KOI8-U calendar.all calendar.holiday calendar.misc calendar.orthodox Added files: (Branch: RELENG_6) usr.bin/calendar/calendars calendar.dutch Log: Massive MFC for all calendar files which have been updated in the past but were never MFCd. PR: conf/61641 conf/70252 conf/107453 conf/113285 conf/113642 (and others) Submitted by: various Revision Changes Path 1.9.8.1 +1 -0 src/usr.bin/calendar/calendars/calendar.all 1.6.2.2 +0 -0 src/usr.bin/calendar/calendars/calendar.australia 1.31.2.4 +0 -0 src/usr.bin/calendar/calendars/calendar.birthday 1.9.10.2 +0 -0 src/usr.bin/calendar/calendars/calendar.christian 1.10.10.1 +2 -1 src/usr.bin/calendar/calendars/calendar.computer 1.2.4.1 +62 -0 src/usr.bin/calendar/calendars/calendar.dutch (new) 1.165.2.9 +4 -0 src/usr.bin/calendar/calendars/calendar.freebsd 1.31.10.5 +0 -0 src/usr.bin/calendar/calendars/calendar.history 1.28.8.6 +2 -2 src/usr.bin/calendar/calendars/calendar.holiday 1.12.12.2 +0 -0 src/usr.bin/calendar/calendars/calendar.judaic 1.17.2.3 +0 -0 src/usr.bin/calendar/calendars/calendar.music 1.1.2.2 +0 -0 src/usr.bin/calendar/calendars/calendar.ukrainian 1.8.12.2 +0 -0 src/usr.bin/calendar/calendars/calendar.usholiday 1.9.10.3 +0 -0 src/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.feiertag 1.12.10.2 +0 -0 src/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.geschichte 1.12.2.2 +0 -0 src/usr.bin/calendar/calendars/de_DE.ISO8859-1/calendar.musik 1.1.16.2 +0 -0 src/usr.bin/calendar/calendars/fr_FR.ISO8859-1/calendar.fetes 1.1.16.2 +0 -0 src/usr.bin/calendar/calendars/fr_FR.ISO8859-1/calendar.jferies 1.2.10.3 +0 -0 src/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.holiday 1.6.16.2 +0 -0 src/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk 1.1.2.2 +0 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.all 1.1.2.2 +0 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.holiday 1.1.2.2 +0 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.misc 1.1.2.2 +0 -0 src/usr.bin/calendar/calendars/uk_UA.KOI8-U/calendar.orthodox From owner-cvs-src@FreeBSD.ORG Fri Sep 14 03:07:23 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B54416A41B; Fri, 14 Sep 2007 03:07:23 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F30E313C4A7; Fri, 14 Sep 2007 03:07:22 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E37MsO007772; Fri, 14 Sep 2007 03:07:22 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E37MLU007771; Fri, 14 Sep 2007 03:07:22 GMT (envelope-from jkoshy) Message-Id: <200709140307.l8E37MLU007771@repoman.freebsd.org> From: Joseph Koshy Date: Fri, 14 Sep 2007 03:07: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 ObsoleteFiles.inc X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Sep 2007 03:07:23 -0000 jkoshy 2007-09-14 03:07:22 UTC FreeBSD src repository Modified files: . ObsoleteFiles.inc Log: Remove the newly resurrected ar.5 manual page from the list of obsolete files. Noticed by: Michael Plass Herbert J. Skuhra Approved by: re (bmah) Revision Changes Path 1.111 +0 -1 src/ObsoleteFiles.inc From owner-cvs-src@FreeBSD.ORG Fri Sep 14 03:12:20 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CF5A16A420; Fri, 14 Sep 2007 03:12:20 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 40B5313C458; Fri, 14 Sep 2007 03:12:20 +0000 (UTC) (envelope-from mpp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E3CKW0008265; Fri, 14 Sep 2007 03:12:20 GMT (envelope-from mpp@repoman.freebsd.org) Received: (from mpp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E3CKGD008264; Fri, 14 Sep 2007 03:12:20 GMT (envelope-from mpp) Message-Id: <200709140312.l8E3CKGD008264@repoman.freebsd.org> From: Mike Pritchard Date: Fri, 14 Sep 2007 03:12: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/sbin/quotacheck quotacheck.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 03:12:20 -0000 mpp 2007-09-14 03:12:20 UTC FreeBSD src repository Modified files: sbin/quotacheck quotacheck.c Log: Flush stdout at the end of the update phase to prevent possible duplicate output when "quotacheck -a -v" is used. Approved by: re (bmah) Revision Changes Path 1.33 +1 -0 src/sbin/quotacheck/quotacheck.c From owner-cvs-src@FreeBSD.ORG Fri Sep 14 05:12:26 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4EE8516A418; Fri, 14 Sep 2007 05:12:26 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2796913C458; Fri, 14 Sep 2007 05:12:26 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E5CQIO027228; Fri, 14 Sep 2007 05:12:26 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E5CQVQ027227; Fri, 14 Sep 2007 05:12:26 GMT (envelope-from yongari) Message-Id: <200709140512.l8E5CQVQ027227@repoman.freebsd.org> From: Pyun YongHyeon Date: Fri, 14 Sep 2007 05:12: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/dev/nfe if_nfe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 05:12:26 -0000 yongari 2007-09-14 05:12:25 UTC FreeBSD src repository Modified files: sys/dev/nfe if_nfe.c Log: During boot(before setting IP address) PHY can generate link state change interrupt if the link is established with link parter. However interrupt handler didn't acknowledge the interrupt if nfe(4) was not running at the time of interrupt delivery. This caused endless interrupt generation. Fix the bug by acknowledging the interrupt regardless of running state of the driver. PR: kern/116295 Submitted by: Mark Derbyshire (mark At taom dot com) Approved by: re (kensmith) Revision Changes Path 1.21 +6 -6 src/sys/dev/nfe/if_nfe.c From owner-cvs-src@FreeBSD.ORG Fri Sep 14 06:57:28 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D803D16A417; Fri, 14 Sep 2007 06:57:28 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B6E5C13C45A; Fri, 14 Sep 2007 06:57:28 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8E6vSwF034588; Fri, 14 Sep 2007 06:57:28 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8E6vSFJ034587; Fri, 14 Sep 2007 06:57:28 GMT (envelope-from julian) Message-Id: <200709140657.l8E6vSFJ034587@repoman.freebsd.org> From: Julian Elischer Date: Fri, 14 Sep 2007 06:57: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/net if_ethersubr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 06:57:28 -0000 julian 2007-09-14 06:57:28 UTC FreeBSD src repository Modified files: sys/net if_ethersubr.c Log: Remove DIAG code that discards oversized packets. There has been general consensus that this was a bad idea/ Approved by: re (bmah) Revision Changes Path 1.236 +0 -14 src/sys/net/if_ethersubr.c From owner-cvs-src@FreeBSD.ORG Fri Sep 14 22:44:38 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A119216A417; Fri, 14 Sep 2007 22:44:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7254013C442; Fri, 14 Sep 2007 22:44:38 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8EMic4h047727; Fri, 14 Sep 2007 22:44:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8EMicsX047726; Fri, 14 Sep 2007 22:44:38 GMT (envelope-from obrien) Message-Id: <200709142244.l8EMicsX047726@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 14 Sep 2007 22:44: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 init_main.c src/sys/conf NOTES options X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 22:44:38 -0000 obrien 2007-09-14 22:44:38 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern init_main.c sys/conf NOTES options Log: MFC: new kernel config option, VERBOSE_SYSINIT. (kern/init_main.c rev. 1.263) Revision Changes Path 1.1325.2.38 +7 -0 src/sys/conf/NOTES 1.510.2.23 +1 -0 src/sys/conf/options 1.256.2.6 +45 -0 src/sys/kern/init_main.c From owner-cvs-src@FreeBSD.ORG Fri Sep 14 23:44:11 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4C6F16A417; Fri, 14 Sep 2007 23:44:11 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C653313C468; Fri, 14 Sep 2007 23:44:11 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8ENiBJt052599; Fri, 14 Sep 2007 23:44:11 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8ENiBlw052598; Fri, 14 Sep 2007 23:44:11 GMT (envelope-from jkim) Message-Id: <200709142344.l8ENiBlw052598@repoman.freebsd.org> From: Jung-uk Kim Date: Fri, 14 Sep 2007 23:44:11 +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/fdc fdc.c src/sys/dev/ic nec765.h src/sys/pc98/cbus fdc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 14 Sep 2007 23:44:12 -0000 jkim 2007-09-14 23:44:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/fdc fdc.c sys/dev/ic nec765.h sys/pc98/cbus fdc.c Log: MFC: sys/dev/fdc/fdc.c 1.310-1.313 sys/dev/ic/nec765.h 1.12, 1.13 sys/dev/pc98/fdc.c 1.167 - Enhanced floppy controllers have Data Rate Select Register (DSR) at 0x3f4. Use it to reset controller and to select data rate. According to Intel 80277AA datasheet, software reset behaves the same as DOR reset except that it is self clearing. National Semiconductor PC8477B datasheet says the same. As a side effect, we no longer use Configuration Control Register (CCR) at 0x3f7 for these controllers, which is often missing in modern hardware. - Assume floppy disk is not inserted when we have exhausted retries. This significantly reduces booting time when there is broken floppy disk drive, controller, cable, BIOS, etc. When the floppy controller interface is correctly implemented, disk change signal (DSKCHG) is reflected in the Digital Input Register (DIR) at 0x3f7. However, there are many cases that the signal is unusable. Moreover, some BIOS does not reserve the port at all. In those cases, the register may not function. - Fix style nits. PR: kern/103841 Revision Changes Path 1.307.2.4 +27 -8 src/sys/dev/fdc/fdc.c 1.11.8.1 +29 -23 src/sys/dev/ic/nec765.h 1.160.2.4 +2 -2 src/sys/pc98/cbus/fdc.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 01:11:27 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4D04416A419; Sat, 15 Sep 2007 01:11:27 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0E28413C459; Sat, 15 Sep 2007 01:11:27 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8F1BQ1b070213; Sat, 15 Sep 2007 01:11:26 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8F1BQii070212; Sat, 15 Sep 2007 01:11:26 GMT (envelope-from thompsa) Message-Id: <200709150111.l8F1BQii070212@repoman.freebsd.org> From: Andrew Thompson Date: Sat, 15 Sep 2007 01:11: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/net ieee8023ad_lacp.c ieee8023ad_lacp.h if_lagg.c if_lagg.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, 15 Sep 2007 01:11:27 -0000 thompsa 2007-09-15 01:11:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if_lagg.c if_lagg.h Log: MFC Change from a mutex to a read/write lock. This allows the tx port to be selected simultaneously by multiple senders and transmit/receive is not serialised between aggregated interfaces. Revision Changes Path 1.7.2.3 +50 -14 src/sys/net/ieee8023ad_lacp.c 1.4.2.3 +2 -0 src/sys/net/ieee8023ad_lacp.h 1.11.2.7 +60 -58 src/sys/net/if_lagg.c 1.7.2.4 +9 -8 src/sys/net/if_lagg.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 05:37:32 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30EBC16A41B; Sat, 15 Sep 2007 05:37:32 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D72AC13C459; Sat, 15 Sep 2007 05:37:31 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8F5bVOG005198; Sat, 15 Sep 2007 05:37:31 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8F5bV4g005197; Sat, 15 Sep 2007 05:37:31 GMT (envelope-from jkoshy) Message-Id: <200709150537.l8F5bV4g005197@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 15 Sep 2007 05:37: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/release/doc/en_US.ISO8859-1/relnotes article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Sep 2007 05:37:32 -0000 jkoshy 2007-09-15 05:37:31 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: Add mention of libelf to 7.0's release notes. Approved by: re (bmah) Revision Changes Path 1.1065 +4 -0 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Sat Sep 15 07:04:05 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49B6916A41A; Sat, 15 Sep 2007 07:04:05 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE09013C4A7; Sat, 15 Sep 2007 07:04:04 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8F744V3012861; Sat, 15 Sep 2007 07:04:04 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8F744bX012860; Sat, 15 Sep 2007 07:04:04 GMT (envelope-from philip) Message-Id: <200709150704.l8F744bX012860@repoman.freebsd.org> From: Philip Paeps Date: Sat, 15 Sep 2007 07: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/usr.bin/finger finger.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 07:04:05 -0000 philip 2007-09-15 07:04:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/finger finger.c Log: MFC: remove -T from getopt() spec and usage string. Forgotten by: des Revision Changes Path 1.35.2.3 +2 -2 src/usr.bin/finger/finger.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 09:40:39 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B854816A417; Sat, 15 Sep 2007 09:40:39 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9441713C442; Sat, 15 Sep 2007 09:40:39 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8F9edTA032953; Sat, 15 Sep 2007 09:40:39 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8F9edtN032952; Sat, 15 Sep 2007 09:40:39 GMT (envelope-from wilko) Message-Id: <200709150940.l8F9edtN032952@repoman.freebsd.org> From: Wilko Bulte Date: Sat, 15 Sep 2007 09:40: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/alpha/alpha 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: Sat, 15 Sep 2007 09:40:39 -0000 wilko 2007-09-15 09:40:39 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/alpha/alpha pmap.c Log: sys/lock.h must precede sys/sx.h these days or the kernel won't build. Looks like no-one builds Alpha kernels anymore? Revision Changes Path 1.178.2.7 +1 -1 src/sys/alpha/alpha/pmap.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 09:52:20 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62C0E16A420; Sat, 15 Sep 2007 09:52:20 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3F89F13C45B; Sat, 15 Sep 2007 09:52:20 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8F9qKq9033742; Sat, 15 Sep 2007 09:52:20 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8F9qKaJ033741; Sat, 15 Sep 2007 09:52:20 GMT (envelope-from marius) Message-Id: <200709150952.l8F9qKaJ033741@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 09:52: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/dev/re if_re.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 09:52:20 -0000 marius 2007-09-15 09:52:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/re if_re.c Log: MFC: if_re.c 1.77, 1.86, 1.94 - Correctly set IFCAP_VLAN_HWCSUM as re(4) can do VLAN tagging/checksum offloading in hardware. - Correctly set media header length for VLAN. - Use taskqueue_drain() to wait for any pending tasks to complete rather than just pausing for a second. - Initialize the rl_vlanctl field of the descriptors to zero (in order to clear RL_TDESC_VLANCTL_TAG). Revision Changes Path 1.46.2.33 +24 -9 src/sys/dev/re/if_re.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 09:57:03 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 143A116A41A; Sat, 15 Sep 2007 09:57:02 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E97CF13C46C; Sat, 15 Sep 2007 09:57:02 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8F9v26T033919; Sat, 15 Sep 2007 09:57:02 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8F9v2xN033918; Sat, 15 Sep 2007 09:57:02 GMT (envelope-from marius) Message-Id: <200709150957.l8F9v2xN033918@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 09:57:02 +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/pci if_xl.c if_xlreg.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, 15 Sep 2007 09:57:03 -0000 marius 2007-09-15 09:57:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/pci if_xl.c if_xlreg.h Log: MFC: if_xl.c 1.192, 1.199, 1.206, 1.207, 1.208; if_xlreg.h 1.57, 1,58, 1.59 - The 575A doesn't have funcregs in memio. So don't claim that it does. - In detach method, move if_free() after bus_teardown_intr(). - Consistently use if_printf() only in interface methods: if_start(), if_watchdog, etc., or in functions used only in these methods. In all other functions in the driver use device_printf(). - Use the xl_stats_update() callout instead of if_slowtimo() for driving xl_watchdog() in order to avoid races accessing if_timer. - Use bus_get_dma_tag() so xl(4) works on platforms requiring it. - Don't bother to set if_mtu to ETHERMTU, ether_ifattach() does that. Revision Changes Path 1.190.2.11 +66 -58 src/sys/pci/if_xl.c 1.55.2.2 +2 -0 src/sys/pci/if_xlreg.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 10:00:52 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CFCF16A41A; Sat, 15 Sep 2007 10:00:52 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 7270E13C467; Sat, 15 Sep 2007 10:00:52 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FA0q2N034154; Sat, 15 Sep 2007 10:00:52 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FA0qMV034153; Sat, 15 Sep 2007 10:00:52 GMT (envelope-from marius) Message-Id: <200709151000.l8FA0qMV034153@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 10:00:52 +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/pci if_dc.c if_dcreg.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, 15 Sep 2007 10:00:52 -0000 marius 2007-09-15 10:00:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/pci if_dc.c if_dcreg.h Log: MFC: if_dc.c 1.166 1.171, 1.189 (partial), 1.190, 1.192; if_dcreg.h 1.54 - In detach method, move if_free() after bus_teardown_intr(). - Use our own callout (the dc_tick() callout uses varying periods depending on the NIC and isn't used at all with HomePNA links) instead of if_slowtimo() for driving dc_watchdog() in order to avoid races accessing if_timer. - Use bus_get_dma_tag() so dc(4) works on platforms requiring it. - Don't bother to set if_mtu to ETHERMTU, ether_ifattach() does that. - Fix a bug originally introduced in rev. 1.74; don't reloaded the watchdog timer in dc_txeof() in case there are still unhandled descriptors as dc_poll() invokes dc_poll() unconditionally. Otherwise this would result in the watchdog timer constantly being being reloaded and thus circumvent that the watchdog ever fires in the DEVICE_POLLING case. Revision Changes Path 1.160.2.13 +71 -94 src/sys/pci/if_dc.c 1.44.2.6 +3 -2 src/sys/pci/if_dcreg.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 10:41:34 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8038616A41B; Sat, 15 Sep 2007 10:41:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6004D13C478; Sat, 15 Sep 2007 10:41:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FAfYrj037710; Sat, 15 Sep 2007 10:41:34 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FAfYGF037709; Sat, 15 Sep 2007 10:41:34 GMT (envelope-from marius) Message-Id: <200709151041.l8FAfYGF037709@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 10:41:34 +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 ukphy.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 10:41:34 -0000 marius 2007-09-15 10:41:33 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mii ukphy.c Log: MFC: 1.20 - Don't set MIIF_NOISOLATE so ukphy(4) can be used in configurations with multiple PHYs. In case some PHYs currently driven by ukphy(4) exhibit problems when isolating due to incomplete implementations or silicon bugs we'll need to add specific drivers for these. Looking at NetBSD and OpenBSD I don't expect problems here though (quite the contrary; we still seem to set MIIF_NOISOLATE without good reason in a bunch of PHY drivers). - Fix a style(9) whitespace nit. Revision Changes Path 1.17.2.3 +1 -3 src/sys/dev/mii/ukphy.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 10:45:35 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C70C616A420; Sat, 15 Sep 2007 10:45:35 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id BED0713C428; Sat, 15 Sep 2007 10:45:35 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FAjZHb037897; Sat, 15 Sep 2007 10:45:35 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FAjZt0037896; Sat, 15 Sep 2007 10:45:35 GMT (envelope-from marius) Message-Id: <200709151045.l8FAjZt0037896@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 10:45:34 +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/hme if_hme.c 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: Sat, 15 Sep 2007 10:45:35 -0000 marius 2007-09-15 10:45:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/hme if_hme.c if_hmevar.h Log: MFC: if_hme.c 1.50, 1.51, 1.52, 1.53; if_hmevar.h 1.10 o Revised MII support: - In hme_stop() mask all interrupts. - In hme_eint() print MIF register contents on MIF interrupts. - In hme_mifinit() don't bother to preserve the previous MIF config. This was mainly done in order to preserve the PHY select bit (external or internal PHY) but which only needs to be set as appropriate when reading from or writing to the desired PHY in hme_mii_{read,write}reg(). Similarly don't bother to set the PHY select bit in hme_mii_statchg(). - In hme_mii_{read,write}reg() ignore requests to PHYs other than the external and internal PHY one. - Move enabling/disabling the MII drivers of the external transceiver from hme_init_locked() and based on the sheer presence of an external one to hme_mifinit() and based on the currently selected media, defaulting to the internal transceiver when the media hasn't been set, yet. Invoke hme_mifinit() from the newly added hme_mediachange_locked() so the setting of the MII drivers is updated when changing media. These changes keep the MII bus from wedging (which manifests in the HME and the PHYs no longer being able to communicate with each other) when the PHY device drivers isolate the unused PHY in two-PHY configurations as present in f.e. Netra t1 100 while changing media, either from hme_init_locked() (see also below) or via ifconfig(8) (not with the RELENG_6 ifconfig(8) and miibus(4) though). They also allow for using both transceivers/PHYs. - In the newly added hme_mediachange_locked() also reset the PHYs in two- PHY configurations before invoking mii_mediachg(). This is required for successfully unisolating the previously unused PHY when switching between PHYs. - Now that changing media should no longer cause problems back out rev. 1.27 and re-enable setting the current media in hme_init_locked() (see the commit message of rev. 1.23 for more info). These changes are roughly a merge of NetBSD hme.c rev. 1.32 - 1.35 (1.30 was already fixed differently in our 1.36; 1.31 and 1.32 were wrong) with some parts reworked and things that don't make sense like setting the MII drivers and restoring the previous MIF and XIF settings in hme_mii_{read, write}reg() omitted. o Use the hme_tick() callout instead of if_slowtimo() for driving hme_watchdog() in order to avoid races accessing if_timer. o Use bus_get_dma_tag() so hme(4) works on platforms requiring it. o Don't bother to set if_mtu to ETHERMTU, ether_ifattach() does that. o Remove invalid BUS_DMA_ALLOCNOW when creating a tag which is used for a "static" memory allocation only. Revision Changes Path 1.37.2.10 +112 -63 src/sys/dev/hme/if_hme.c 1.8.2.2 +1 -0 src/sys/dev/hme/if_hmevar.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 10:49:58 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32EFF16A417; Sat, 15 Sep 2007 10:49:58 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2ABC813C442; Sat, 15 Sep 2007 10:49:58 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FAnv3C038014; Sat, 15 Sep 2007 10:49:57 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FAnvV9038013; Sat, 15 Sep 2007 10:49:57 GMT (envelope-from marius) Message-Id: <200709151049.l8FAnvV9038013@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 10:49: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/gem if_gem.c if_gemvar.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, 15 Sep 2007 10:49:58 -0000 marius 2007-09-15 10:49:57 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/gem if_gem.c if_gemvar.h Log: MFC: if_gem.c 1.37, 1.39, 1.40, 1.43; if_gemvar.h 1.12 - Fix -Wundef warnings found when compiling i386 LINT, GENERIC and custom kernels. - Use bus_get_dma_tag() so gem(4) works on platforms requiring it. - Use the gem_tick() callout instead of if_slowtimo() for driving gem_watchdog() in order to avoid races accessing if_timer. While at it relax the watchdog a bit by reloading it in gem_tint() if there are still packets enqueued. - Don't bother to set if_mtu to ETHERMTU, ether_ifattach() does that. - Fix inconsistencies in prototypes. Revision Changes Path 1.29.2.7 +31 -28 src/sys/dev/gem/if_gem.c 1.10.2.2 +1 -0 src/sys/dev/gem/if_gemvar.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 10:56:02 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77D5916A418; Sat, 15 Sep 2007 10:56:02 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6FD9713C45B; Sat, 15 Sep 2007 10:56:02 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FAu1gx038528; Sat, 15 Sep 2007 10:56:01 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FAu1IY038525; Sat, 15 Sep 2007 10:56:01 GMT (envelope-from marius) Message-Id: <200709151056.l8FAu1IY038525@repoman.freebsd.org> From: Marius Strobl Date: Sat, 15 Sep 2007 10:56:00 +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/le am7990.c am79900.c if_le_ledma.c if_le_pci.c lance.c lancevar.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, 15 Sep 2007 10:56:02 -0000 marius 2007-09-15 10:56:00 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/le am7990.c am79900.c if_le_ledma.c if_le_pci.c lance.c lancevar.h Log: MFC: am7990.c 1.4; am79900.c 1.4; if_le_ledma.c 1.3; if_le_pci.c 1.5, 1.6; lance.c 1.3, 1.4; lancevar.h 1.3 - Use our own callout instead of if_slowtimo() for driving lance_watchdog() in order to avoid races accessing if_timer. - Use bus_get_dma_tag() to obtain the parent DMA tag so le(4) works on platforms requiring this. - Remove BUS_DMA_WAITOK from bus_dma_tag_create() invocations as it's no valid flag there. - For setting the port PCnet chips must be powered down or stopped and unlike documented may not take effect without an initialization. So don't invoke (*sc_mediachange) directly in lance_mediachange() but go through lance_init_locked(). It's suboptimal to impose this for all chips but given that besides the affected PCI bus front-end the only other front-end which supports media selection is and likely ever will be the 'ledma' front-end I see not enough reason to break the in-driver API for this (though one could argue both ways here). Revision Changes Path 1.1.2.4 +2 -2 src/sys/dev/le/am7990.c 1.1.2.4 +2 -2 src/sys/dev/le/am79900.c 1.1.2.3 +1 -1 src/sys/dev/le/if_le_ledma.c 1.1.2.3 +3 -3 src/sys/dev/le/if_le_pci.c 1.1.2.3 +34 -15 src/sys/dev/le/lance.c 1.1.2.3 +2 -0 src/sys/dev/le/lancevar.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 12:33:25 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7930216A420; Sat, 15 Sep 2007 12:33:25 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5D57113C465; Sat, 15 Sep 2007 12:33:25 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FCXPX1046605; Sat, 15 Sep 2007 12:33:25 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FCXPxQ046604; Sat, 15 Sep 2007 12:33:25 GMT (envelope-from rwatson) Message-Id: <200709151233.l8FCXPxQ046604@repoman.freebsd.org> From: Robert Watson Date: Sat, 15 Sep 2007 12:33: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 kern_timeout.c src/sys/sys callout.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, 15 Sep 2007 12:33:25 -0000 rwatson 2007-09-15 12:33:24 UTC FreeBSD src repository Modified files: sys/kern kern_timeout.c sys/sys callout.h Log: Remove the definition and implementation of 'CALLOUT_NETGIANT', a now- (and possibly always-) unused define. Reported by: kmacy Approved by: re (kensmith) Revision Changes Path 1.106 +2 -11 src/sys/kern/kern_timeout.c 1.31 +0 -1 src/sys/sys/callout.h From owner-cvs-src@FreeBSD.ORG Sat Sep 15 14:33:56 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1611316A418; Sat, 15 Sep 2007 14:33:56 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F089713C45E; Sat, 15 Sep 2007 14:33:55 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FEXtYj065450; Sat, 15 Sep 2007 14:33:55 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FEXtZH065449; Sat, 15 Sep 2007 14:33:55 GMT (envelope-from imp) Message-Id: <200709151433.l8FEXtZH065449@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Sep 2007 14:33: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/lib/libc/sys Makefile.inc ntp_adjtime.2 ntp_gettime.2 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 14:33:56 -0000 imp 2007-09-15 14:33:55 UTC FreeBSD src repository Modified files: lib/libc/sys Makefile.inc ntp_adjtime.2 Removed files: lib/libc/sys ntp_gettime.2 Log: Use better manuals for these ntp system calls. These were replaced by the netbsd versions, and tweaked by me with suggestions from phk. Reviewed by: phk Approved by: re@ Revision Changes Path 1.127 +2 -1 src/lib/libc/sys/Makefile.inc 1.4 +257 -85 src/lib/libc/sys/ntp_adjtime.2 1.5 +0 -116 src/lib/libc/sys/ntp_gettime.2 (dead) From owner-cvs-src@FreeBSD.ORG Sat Sep 15 16:55:45 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7136816A417; Sat, 15 Sep 2007 16:55:45 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4B0A913C428; Sat, 15 Sep 2007 16:55:45 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FGtjCT084404; Sat, 15 Sep 2007 16:55:45 GMT (envelope-from mav@repoman.freebsd.org) Received: (from mav@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FGtiE3084403; Sat, 15 Sep 2007 16:55:44 GMT (envelope-from mav) Message-Id: <200709151655.l8FGtiE3084403@repoman.freebsd.org> From: Alexander Motin Date: Sat, 15 Sep 2007 16:55: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/netgraph ng_ppp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 16:55:45 -0000 mav 2007-09-15 16:55:44 UTC FreeBSD src repository Modified files: sys/netgraph ng_ppp.c Log: Fix typo which brokes VJ decompression when VJC negotiated in only one direction. Approved by: re (bmah), glebius (mentor) Revision Changes Path 1.70 +1 -1 src/sys/netgraph/ng_ppp.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 18:16:37 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B1D516A418; Sat, 15 Sep 2007 18:16:37 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E09EE13C459; Sat, 15 Sep 2007 18:16:36 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FIGafB091245; Sat, 15 Sep 2007 18:16:36 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FIGa6o091244; Sat, 15 Sep 2007 18:16:36 GMT (envelope-from alc) Message-Id: <200709151816.l8FIGa6o091244@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Sep 2007 18:16: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/pci agp_i810.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 18:16:37 -0000 alc 2007-09-15 18:16:36 UTC FreeBSD src repository Modified files: sys/pci agp_i810.c Log: Add the PCI id for the Intel 7221's integrated graphics controller. It is similar to a 915G. Approved by: re (kensmith) Reviewed by: anholt MFC after: 3 weeks Revision Changes Path 1.41 +2 -0 src/sys/pci/agp_i810.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 18:30:29 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 500F316A41A; Sat, 15 Sep 2007 18:30:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 21B1013C457; Sat, 15 Sep 2007 18:30:29 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FIUSBH092074; Sat, 15 Sep 2007 18:30:28 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FIUSNY092073; Sat, 15 Sep 2007 18:30:28 GMT (envelope-from alc) Message-Id: <200709151830.l8FIUSNY092073@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Sep 2007 18:30: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/vm vm_pageout.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 18:30:29 -0000 alc 2007-09-15 18:30:28 UTC FreeBSD src repository Modified files: sys/vm vm_pageout.c Log: Correct an assertion in vm_pageout_flush(). Specifically, if a page's status after vm_pager_put_pages() is VM_PAGER_PEND, then it could have already been recycled, i.e., freed and reallocated to a new purpose; thus, asserting that such pages cannot be written is inappropriate. Reported by: kris Submitted by: tegge Approved by: re (kensmith) MFC after: 1 week Revision Changes Path 1.290 +2 -1 src/sys/vm/vm_pageout.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 18:47:03 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D74216A41B; Sat, 15 Sep 2007 18:47:03 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 135B313C459; Sat, 15 Sep 2007 18:47:03 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FIl28U093180; Sat, 15 Sep 2007 18:47:02 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FIl2nC093179; Sat, 15 Sep 2007 18:47:02 GMT (envelope-from alc) Message-Id: <200709151847.l8FIl2nC093179@repoman.freebsd.org> From: Alan Cox Date: Sat, 15 Sep 2007 18:47: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/amd64/amd64 uma_machdep.c src/sys/arm/arm vm_machdep.c src/sys/ia64/ia64 uma_machdep.c src/sys/powerpc/powerpc uma_machdep.c src/sys/sparc64/sparc64 vm_machdep.c src/sys/sun4v/sun4v 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: Sat, 15 Sep 2007 18:47:03 -0000 alc 2007-09-15 18:47:02 UTC FreeBSD src repository Modified files: sys/amd64/amd64 uma_machdep.c sys/arm/arm vm_machdep.c sys/ia64/ia64 uma_machdep.c sys/powerpc/powerpc uma_machdep.c sys/sparc64/sparc64 vm_machdep.c sys/sun4v/sun4v vm_machdep.c Log: It has been observed on the mailing lists that the different categories of pages don't sum to anywhere near the total number of pages on amd64. This is for the most part because uma_small_alloc() pages have never been counted as wired pages, like their kmem_malloc() brethren. They should be. This changes fixes that. It is no longer necessary for the page queues lock to be held to free pages allocated by uma_small_alloc(). I removed the acquisition and release of the page queues lock from uma_small_free() on amd64 and ia64 weeks ago. This patch updates the other architectures that have uma_small_alloc() and uma_small_free(). Approved by: re (kensmith) Revision Changes Path 1.4 +5 -3 src/sys/amd64/amd64/uma_machdep.c 1.34 +5 -5 src/sys/arm/arm/vm_machdep.c 1.4 +5 -3 src/sys/ia64/ia64/uma_machdep.c 1.4 +5 -5 src/sys/powerpc/powerpc/uma_machdep.c 1.76 +5 -5 src/sys/sparc64/sparc64/vm_machdep.c 1.7 +5 -5 src/sys/sun4v/sun4v/vm_machdep.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 19:07:43 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B360216A417; Sat, 15 Sep 2007 19:07:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 987D613C480; Sat, 15 Sep 2007 19:07:43 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FJ7hND095594; Sat, 15 Sep 2007 19:07:43 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FJ7hPp095593; Sat, 15 Sep 2007 19:07:43 GMT (envelope-from rrs) Message-Id: <200709151907.l8FJ7hPp095593@repoman.freebsd.org> From: Randall Stewart Date: Sat, 15 Sep 2007 19:07: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/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_input.c sctp_output.c sctp_output.h sctp_sysctl.h sctp_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: Sat, 15 Sep 2007 19:07:43 -0000 rrs 2007-09-15 19:07:42 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_input.c sctp_output.c sctp_output.h sctp_sysctl.h sctp_timer.c Log: - Get rid of unsused constants for sysctl variables. - Fix panic from mutex unlock on freed lock when ASCONF-ACK aborts an assoc - Fix panic from addr lock recursion when ASCONFs are queued in the front states - ASCONFs "queued" in the front states should really be bundled after the COOKIE-ACK, not in front of it - Fix issue with addresses deleted in the front states from being sent with ASCONF(DELETE)-- replaced sctp_asconf_queue_add_sa() with delete specific function - Comment change in sctp.h the drafts are now RFC's Approved by: re@freebsd.org (B Mah) Revision Changes Path 1.21 +5 -5 src/sys/netinet/sctp.h 1.32 +76 -73 src/sys/netinet/sctp_asconf.c 1.10 +3 -3 src/sys/netinet/sctp_asconf.h 1.63 +18 -10 src/sys/netinet/sctp_input.c 1.56 +2 -2 src/sys/netinet/sctp_output.c 1.12 +1 -1 src/sys/netinet/sctp_output.h 1.13 +0 -56 src/sys/netinet/sctp_sysctl.h 1.31 +1 -1 src/sys/netinet/sctp_timer.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 21:48:55 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA35816A468; Sat, 15 Sep 2007 21:48:55 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8113013C468; Sat, 15 Sep 2007 21:48:55 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FLmt8E016388; Sat, 15 Sep 2007 21:48:55 GMT (envelope-from scf@repoman.freebsd.org) Received: (from scf@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FLmtCn016387; Sat, 15 Sep 2007 21:48:55 GMT (envelope-from scf) Message-Id: <200709152148.l8FLmtCn016387@repoman.freebsd.org> From: Sean Farley Date: Sat, 15 Sep 2007 21:48: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/lib/libc/stdlib getenv.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 21:48:55 -0000 scf 2007-09-15 21:48:55 UTC FreeBSD src repository Modified files: lib/libc/stdlib getenv.c Log: Skip rebuilding environ in setenv() only upon reuse of an active variable; inactive variables should cause a rebuild of environ, otherwise, exec()'d processes will be missing a variable in environ that has been unset then set. Submitted by: Taku Yamamoto Reviewed by: ache Approved by: wes (mentor) Approved by: re (kensmith) Revision Changes Path 1.11 +2 -2 src/lib/libc/stdlib/getenv.c From owner-cvs-src@FreeBSD.ORG Sat Sep 15 23:30:11 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7521A16A417; Sat, 15 Sep 2007 23:30:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3A90A13C457; Sat, 15 Sep 2007 23:30:11 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8FNUB0v024426; Sat, 15 Sep 2007 23:30:11 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8FNUBXO024425; Sat, 15 Sep 2007 23:30:11 GMT (envelope-from imp) Message-Id: <200709152330.l8FNUBXO024425@repoman.freebsd.org> From: Warner Losh Date: Sat, 15 Sep 2007 23:30: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/usb if_zyd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 15 Sep 2007 23:30:11 -0000 imp 2007-09-15 23:30:10 UTC FreeBSD src repository Modified files: sys/dev/usb if_zyd.c Log: Zyd needs be under Giant because USB is under Giant. Submitted by: Weongyo Jeong Reviewed by: sam@ Approved by: re@ (blanket) Revision Changes Path 1.4 +2 -1 src/sys/dev/usb/if_zyd.c