From owner-cvs-src@FreeBSD.ORG Sun Mar 4 00:29:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2B1516A400; Sun, 4 Mar 2007 00:29:42 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id ABB0913C471; Sun, 4 Mar 2007 00:29:42 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l240TgdN033848; Sun, 4 Mar 2007 00:29:42 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l240TgFO033847; Sun, 4 Mar 2007 00:29:42 GMT (envelope-from cperciva) Message-Id: <200703040029.l240TgFO033847@repoman.freebsd.org> From: Colin Percival Date: Sun, 4 Mar 2007 00:29:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/freebsd-update freebsd-update.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 00:29:42 -0000 cperciva 2007-03-04 00:29:42 UTC FreeBSD src repository Modified files: usr.sbin/freebsd-update freebsd-update.sh Log: Fix problems resulting from SMP kernels (mis-)identifying themselves as "SMP-GENERIC" (i386) or "GENERIC" (amd64). FreeBSD 6.2 Errata candidate. MFC after: 3 days Pointy hat to: cperciva Revision Changes Path 1.5 +20 -3 src/usr.sbin/freebsd-update/freebsd-update.sh From owner-cvs-src@FreeBSD.ORG Sun Mar 4 03:38:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B499516A403; Sun, 4 Mar 2007 03:38:08 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A3D5213C441; Sun, 4 Mar 2007 03:38:08 +0000 (UTC) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l243c8u1076496; Sun, 4 Mar 2007 03:38:08 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l243c8iA076495; Sun, 4 Mar 2007 03:38:08 GMT (envelope-from csjp) Message-Id: <200703040338.l243c8iA076495@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Sun, 4 Mar 2007 03:38:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/bce if_bce.c src/sys/dev/ixgb if_ixgb.c src/sys/dev/msk if_msk.c src/sys/dev/nfe if_nfe.c src/sys/dev/nge if_nge.c src/sys/dev/re if_re.c src/sys/dev/stge if_stge.c src/sys/dev/ti if_ti.c src/sys/dev/txp if_txp.c src/sys/dev/vge ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 03:38:08 -0000 csjp 2007-03-04 03:38:08 UTC FreeBSD src repository Modified files: sys/dev/bce if_bce.c sys/dev/ixgb if_ixgb.c sys/dev/msk if_msk.c sys/dev/nfe if_nfe.c sys/dev/nge if_nge.c sys/dev/re if_re.c sys/dev/stge if_stge.c sys/dev/ti if_ti.c sys/dev/txp if_txp.c sys/dev/vge if_vge.c Log: Catch up the rest of the drivers with the ether_vlan_mtap modifications. If these drivers are setting M_VLANTAG because they are stripping the layer 2 802.1Q headers, then they need to be re-inserting them so any bpf(4) peers can properly decode them. It should be noted that this is compiled tested only. MFC after: 3 weeks Revision Changes Path 1.29 +1 -1 src/sys/dev/bce/if_bce.c 1.22 +1 -1 src/sys/dev/ixgb/if_ixgb.c 1.11 +1 -1 src/sys/dev/msk/if_msk.c 1.16 +1 -1 src/sys/dev/nfe/if_nfe.c 1.91 +1 -1 src/sys/dev/nge/if_nge.c 1.87 +1 -1 src/sys/dev/re/if_re.c 1.6 +1 -1 src/sys/dev/stge/if_stge.c 1.128 +1 -1 src/sys/dev/ti/if_ti.c 1.44 +1 -1 src/sys/dev/txp/if_txp.c 1.31 +1 -1 src/sys/dev/vge/if_vge.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 04:53:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9514416A400; Sun, 4 Mar 2007 04:53:17 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6FBB913C46B; Sun, 4 Mar 2007 04:53:17 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l244rHLX097744; Sun, 4 Mar 2007 04:53:17 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l244rHif097743; Sun, 4 Mar 2007 04:53:17 GMT (envelope-from nyan) Message-Id: <200703040453.l244rHif097743@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 4 Mar 2007 04:53: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/boot/pc98/cdboot cdboot.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 04:53:17 -0000 nyan 2007-03-04 04:53:17 UTC FreeBSD src repository Modified files: sys/boot/pc98/cdboot cdboot.s Log: MFi386: revision 1.17. Fix the cdboot twiddle display. Revision Changes Path 1.2 +1 -1 src/sys/boot/pc98/cdboot/cdboot.s From owner-cvs-src@FreeBSD.ORG Sun Mar 4 04:55:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6CEE116A475; Sun, 4 Mar 2007 04:55:25 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1C53D13C4DE; Sun, 4 Mar 2007 04:55:23 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l244tKbT098099; Sun, 4 Mar 2007 04:55:20 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l244tKKK098098; Sun, 4 Mar 2007 04:55:20 GMT (envelope-from nyan) Message-Id: <200703040455.l244tKKK098098@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 4 Mar 2007 04:55:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/isa clock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 04:55:27 -0000 nyan 2007-03-04 04:55:19 UTC FreeBSD src repository Modified files: sys/i386/isa clock.c Log: style(9). Revision Changes Path 1.234 +2 -2 src/sys/i386/isa/clock.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 04:59:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDF6916A402; Sun, 4 Mar 2007 04:59:39 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B8A3E13C442; Sun, 4 Mar 2007 04:59:39 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l244xdlF098321; Sun, 4 Mar 2007 04:59:39 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l244xdQP098320; Sun, 4 Mar 2007 04:59:39 GMT (envelope-from nyan) Message-Id: <200703040459.l244xdQP098320@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 4 Mar 2007 04:59: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/pc98/cbus clock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 04:59:40 -0000 nyan 2007-03-04 04:59:39 UTC FreeBSD src repository Modified files: sys/pc98/cbus clock.c Log: Reduce diffs with i386. Revision Changes Path 1.158 +10 -6 src/sys/pc98/cbus/clock.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 08:14:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0E9616A5D4; Sun, 4 Mar 2007 08:14:27 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8B23213C46B; Sun, 4 Mar 2007 08:14:27 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l248ERKL032951; Sun, 4 Mar 2007 08:14:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l248ERg6032950; Sun, 4 Mar 2007 08:14:27 GMT (envelope-from ru) Message-Id: <200703040814.l248ERg6032950@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 08:14:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/mkstr mkstr.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 08:14:27 -0000 ru 2007-03-04 08:14:26 UTC FreeBSD src repository Modified files: usr.bin/mkstr mkstr.1 Log: Markup fixes. Revision Changes Path 1.13 +6 -7 src/usr.bin/mkstr/mkstr.1 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 08:24:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6492116A401; Sun, 4 Mar 2007 08:24:14 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3E7BF13C467; Sun, 4 Mar 2007 08:24:14 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l248OEW5034553; Sun, 4 Mar 2007 08:24:14 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l248OEBM034552; Sun, 4 Mar 2007 08:24:14 GMT (envelope-from ru) Message-Id: <200703040824.l248OEBM034552@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 08:24:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/mkstr mkstr.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 08:24:14 -0000 ru 2007-03-04 08:24:13 UTC FreeBSD src repository Modified files: usr.bin/mkstr mkstr.1 Log: More markup fixes. Revision Changes Path 1.14 +5 -6 src/usr.bin/mkstr/mkstr.1 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 09:15:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 078ED16A400; Sun, 4 Mar 2007 09:15:13 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D56DE13C442; Sun, 4 Mar 2007 09:15:12 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l249FCxJ051877; Sun, 4 Mar 2007 09:15:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l249FCDg051876; Sun, 4 Mar 2007 09:15:12 GMT (envelope-from ru) Message-Id: <200703040915.l249FCDg051876@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 09:15:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/kill kill.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 09:15:13 -0000 ru 2007-03-04 09:15:12 UTC FreeBSD src repository Modified files: bin/kill kill.1 Log: Fix markup. Revision Changes Path 1.21 +13 -16 src/bin/kill/kill.1 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 10:30:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FFA616A401; Sun, 4 Mar 2007 10:30:44 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4185413C441; Sun, 4 Mar 2007 10:30:44 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24AUiuI066282; Sun, 4 Mar 2007 10:30:44 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24AUiai066281; Sun, 4 Mar 2007 10:30:44 GMT (envelope-from simon) Message-Id: <200703041030.l24AUiai066281@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 4 Mar 2007 10:30: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/lib/libc/yp yplib.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 10:30:44 -0000 simon 2007-03-04 10:30:44 UTC FreeBSD src repository Modified files: lib/libc/yp yplib.c Log: - Bump _yplib_timeout limit from 10 to 20 seconds to better handle packet loss when talking to a NIS server. - Set 1 second retry timeout to further realistically handle UDP packet loss for yp_next packet bursts. If the packet hasn't come back within 1 second its rather unlikely to come back at all. There is still back-off mechanism in RPC so if there is another reason than packet loss for the lack of response within 1 second, the NIS server will not be totally bombarded with requests. This reduces the risk of NIS failing with: yp_next: clnt_call: RPC: Timed out considerably. This is mainly a problem if you have larger NIS maps (like at FreeBSD.org) since enumerations of the lists will cause a UDP packet bursts where a few packets being lost once in a while do happen. MFC after: 1 week Discussed with: peter Problem mainly diagnosed by: peter Revision Changes Path 1.50 +9 -1 src/lib/libc/yp/yplib.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 11:36:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D9AE16A400; Sun, 4 Mar 2007 11:36:17 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 46A8B13C471; Sun, 4 Mar 2007 11:36:17 +0000 (UTC) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24BaHO9078177; Sun, 4 Mar 2007 11:36:17 GMT (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24BaHZt078176; Sun, 4 Mar 2007 11:36:17 GMT (envelope-from nyan) Message-Id: <200703041136.l24BaHZt078176@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 4 Mar 2007 11:36: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/pc98/cbus clock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 11:36:17 -0000 nyan 2007-03-04 11:36:16 UTC FreeBSD src repository Modified files: sys/pc98/cbus clock.c Log: - Use mtx_{lock,unlock}_spin rather than {disable,enable}_intr. - Remove unnecessary findcpuspeed() function. - Initialize the timer_freq in i8254_init(). - Fix inittodr() and resettodr(). These are broken by rev.1.154. Revision Changes Path 1.159 +15 -29 src/sys/pc98/cbus/clock.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 12:25:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27B4B16A408; Sun, 4 Mar 2007 12:25:04 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1965213C461; Sun, 4 Mar 2007 12:25:04 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24CP3fj086908; Sun, 4 Mar 2007 12:25:03 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24CP3Bk086906; Sun, 4 Mar 2007 12:25:03 GMT (envelope-from simon) Message-Id: <200703041225.l24CP3Bk086906@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 4 Mar 2007 12:25: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/lib/libc Makefile src/lib/libc/rpc clnt_dg.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 12:25:04 -0000 simon 2007-03-04 12:25:03 UTC FreeBSD src repository Modified files: lib/libc Makefile lib/libc/rpc clnt_dg.c Log: Disable RPC exponential back-off for FreeBSD.org systems (IE. hidden behind _FREEFALL_CONFIG). This is done mainly to make NIS even more resistant to packet loss. This is not enabled by default for "normal" FreeBSD since it might cause the server providing the RPC service to be hit heavily with RPC traffic in case of problems. freefall.FreeBSD.org and hub.FreeBSD.org have been running with a patch similar to this for a couple of weeks. MFC after: 1 week Discussed with: peter Revision Changes Path 1.69 +3 -0 src/lib/libc/Makefile 1.19 +7 -0 src/lib/libc/rpc/clnt_dg.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 12:39:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D94D16A402; Sun, 4 Mar 2007 12:39:44 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2728513C46B; Sun, 4 Mar 2007 12:39:44 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24CdiQn088608; Sun, 4 Mar 2007 12:39:44 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24CdipA088607; Sun, 4 Mar 2007 12:39:44 GMT (envelope-from bms) Message-Id: <200703041239.l24CdipA088607@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 4 Mar 2007 12:39:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet ip_mroute.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 12:39:44 -0000 bms 2007-03-04 12:39:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_mroute.c Log: MFC rev 1.131: Unlock a mutex which should be unlocked before returning. Revision Changes Path 1.111.2.4 +3 -1 src/sys/netinet/ip_mroute.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 13:14:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E95416A403; Sun, 4 Mar 2007 13:14:42 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 386CA13C4A8; Sun, 4 Mar 2007 13:14:42 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24DEguJ004213; Sun, 4 Mar 2007 13:14:42 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24DEgOZ004212; Sun, 4 Mar 2007 13:14:42 GMT (envelope-from ru) Message-Id: <200703041314.l24DEgOZ004212@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 13:14:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/info pkg_info.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 13:14:42 -0000 ru 2007-03-04 13:14:42 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/info pkg_info.1 Log: Fix markup and clean up some of the wording. (This English was hard to translate as it uses a language that is far from a pure technical. It would definitely benefit from a revision.) Revision Changes Path 1.59 +32 -23 src/usr.sbin/pkg_install/info/pkg_info.1 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 13:30:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CF7816A405; Sun, 4 Mar 2007 13:30:03 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5107C13C46B; Sun, 4 Mar 2007 13:30:03 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24DU3nQ006024; Sun, 4 Mar 2007 13:30:03 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24DU3Dl006023; Sun, 4 Mar 2007 13:30:03 GMT (envelope-from ru) Message-Id: <200703041330.l24DU3Dl006023@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 13:30: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/usr.sbin/pkg_install/info pkg_info.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 13:30:03 -0000 ru 2007-03-04 13:30:03 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/info pkg_info.1 Log: The use of predefined strings such as \*[Ge] can be harmful here, as some fonts (e.g., KOI8-R) have special symbols for displaying them, and we want symbols ">=" literally here. Revision Changes Path 1.60 +3 -3 src/usr.sbin/pkg_install/info/pkg_info.1 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 14:34:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 811F316A402; Sun, 4 Mar 2007 14:34:42 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 72B1213C48D; Sun, 4 Mar 2007 14:34:42 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24EYgJj018314; Sun, 4 Mar 2007 14:34:42 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24EYgY7018313; Sun, 4 Mar 2007 14:34:42 GMT (envelope-from bms) Message-Id: <200703041434.l24EYgY7018313@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 4 Mar 2007 14:34:42 +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_tap.c if_tun.c src/share/man/man4 tap.4 tun.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: Sun, 04 Mar 2007 14:34:42 -0000 bms 2007-03-04 14:34:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if_tun.c if_tap.c share/man/man4 tap.4 tun.4 Log: MFC: Implement ifnet cloning for tun(4)/tap(4). Make devfs cloning a sysctl/tunable which defaults to on. If devfs cloning is enabled, only the super-user may create tun(4)/tap(4)/vmnet(4) instances. Devfs cloning is still enabled by default; it may be disabled from the loader or via sysctl with "net.link.tap.devfs_cloning" and "net.link.tun.devfs_cloning". Disabling its use affects potentially all tun(4)/tap(4) consumers including OpenSSH, OpenVPN and VMware. Revision Changes Path 1.18 +32 -5 src/share/man/man4/tap.4 1.24 +33 -4 src/share/man/man4/tun.4 1.69 +126 -32 src/sys/net/if_tap.c 1.162 +77 -7 src/sys/net/if_tun.c PR: 105228 (potentially also 90413, 105570) Submitted by: Landon Fuller Tested by: Andrej Tobola Approved by: core (rwatson) Revision Changes Path 1.17.2.1 +32 -5 src/share/man/man4/tap.4 1.21.2.2 +33 -4 src/share/man/man4/tun.4 1.55.2.9 +137 -36 src/sys/net/if_tap.c 1.152.2.6 +95 -29 src/sys/net/if_tun.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 14:54:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40F0216A400; Sun, 4 Mar 2007 14:54:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1A86613C49D; Sun, 4 Mar 2007 14:54:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24Es2H3021287; Sun, 4 Mar 2007 14:54:02 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24Es24m021286; Sun, 4 Mar 2007 14:54:02 GMT (envelope-from bms) Message-Id: <200703041454.l24Es24m021286@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 4 Mar 2007 14:54: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/netgraph ng_ksocket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 14:54:03 -0000 bms 2007-03-04 14:54:02 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netgraph ng_ksocket.c Log: MFC rev 1.60: In the output path, mask off M_BCAST|M_MCAST so as to prevent incorrect addressing if a packet is later re-encapsulated and sent to a non-broadcast, non-multicast destination after being received on the ng_ksocket input hook. These mbuf flags should not be set on the mbuf packet header chain until the data thus sent re-enters ip_output() by way of the pru_sosend callback anyway. PR: 106999 Tested by: ume Submitted by: Kevin Lahey Revision Changes Path 1.55.2.4 +3 -0 src/sys/netgraph/ng_ksocket.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 15:51:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E9E816A401; Sun, 4 Mar 2007 15:51:26 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 4433413C4A5; Sun, 4 Mar 2007 15:51:26 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 686BF46EAC; Sun, 4 Mar 2007 10:51:25 -0500 (EST) Date: Sun, 4 Mar 2007 15:51:25 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Bruce M Simpson In-Reply-To: <200703041434.l24EYgY7018313@repoman.freebsd.org> Message-ID: <20070304155057.H60688@fledge.watson.org> References: <200703041434.l24EYgY7018313@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c if_tun.c src/share/man/man4 tap.4 tun.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: Sun, 04 Mar 2007 15:51:26 -0000 On Sun, 4 Mar 2007, Bruce M Simpson wrote: > PR: 105228 (potentially also 90413, 105570) > Submitted by: Landon Fuller > Tested by: Andrej Tobola > Approved by: core (rwatson) Maybe instead: "Discussed with: rwatson"? Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Sun Mar 4 16:32:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B75BB16A404; Sun, 4 Mar 2007 16:32:20 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8FCED13C4A3; Sun, 4 Mar 2007 16:32:20 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24GWKex038546; Sun, 4 Mar 2007 16:32:20 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24GWKsI038544; Sun, 4 Mar 2007 16:32:20 GMT (envelope-from bms) Message-Id: <200703041632.l24GWKsI038544@repoman.freebsd.org> From: Bruce M Simpson Date: Sun, 4 Mar 2007 16:32:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet ip_mroute.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 16:32:20 -0000 bms 2007-03-04 16:32:20 UTC FreeBSD src repository Modified files: sys/netinet ip_mroute.c Log: Purge an out-of-date comment. Revision Changes Path 1.133 +0 -1 src/sys/netinet/ip_mroute.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 17:50:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED42916A401; Sun, 4 Mar 2007 17:50:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C6FC913C4B3; Sun, 4 Mar 2007 17:50:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24Hokc9059391; Sun, 4 Mar 2007 17:50:46 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24HokVI059390; Sun, 4 Mar 2007 17:50:46 GMT (envelope-from rwatson) Message-Id: <200703041750.l24HokVI059390@repoman.freebsd.org> From: Robert Watson Date: Sun, 4 Mar 2007 17:50:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern sys_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 17:50:47 -0000 rwatson 2007-03-04 17:50:46 UTC FreeBSD src repository Modified files: sys/kern sys_socket.c Log: Move to ANSI C function headers. Re-wrap some comments. Revision Changes Path 1.72 +25 -45 src/sys/kern/sys_socket.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 19:04:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E83C316A400; Sun, 4 Mar 2007 19:04:39 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C178313C4B2; Sun, 4 Mar 2007 19:04:39 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24J4dop073324; Sun, 4 Mar 2007 19:04:39 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24J4dkK073323; Sun, 4 Mar 2007 19:04:39 GMT (envelope-from ru) Message-Id: <200703041904.l24J4dkK073323@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 19:04: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/share/man/man9 vfs_getopt.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 19:04:40 -0000 ru 2007-03-04 19:04:39 UTC FreeBSD src repository Modified files: share/man/man9 vfs_getopt.9 Log: Markup polishing. Revision Changes Path 1.2 +3 -2 src/share/man/man9/vfs_getopt.9 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 19:33:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A0E916A401; Sun, 4 Mar 2007 19:33:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5322913C49D; Sun, 4 Mar 2007 19:33:14 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24JXCM3077815; Sun, 4 Mar 2007 19:33:12 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24JXCrS077813; Sun, 4 Mar 2007 19:33:12 GMT (envelope-from imp) Message-Id: <200703041933.l24JXCrS077813@repoman.freebsd.org> From: Warner Losh Date: Sun, 4 Mar 2007 19:33:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 19:33:14 -0000 imp 2007-03-04 19:33:12 UTC FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Reduce the number of retries to 10 from 20 for not_a_card retry test. Add some comments to explain how 10 was picked. 20 was completely arbitrary, at least 10 has some reasoning behind it. Also, update the comments about how long we sleep to reflect the new, shorter timeout we use. Revision Changes Path 1.157 +8 -5 src/sys/dev/pccbb/pccbb.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 19:36:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69E2116A407; Sun, 4 Mar 2007 19:36:01 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3FC1513C428; Sun, 4 Mar 2007 19:36:01 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24Ja1X2078095; Sun, 4 Mar 2007 19:36:01 GMT (envelope-from flz@repoman.freebsd.org) Received: (from flz@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24Ja0Wc078092; Sun, 4 Mar 2007 19:36:00 GMT (envelope-from flz) Message-Id: <200703041936.l24Ja0Wc078092@repoman.freebsd.org> From: Florent Thoumie Date: Sun, 4 Mar 2007 19:36:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 19:36:01 -0000 flz 2007-03-04 19:36:00 UTC FreeBSD src repository Modified files: sys/conf kmod.mk Log: Fix typo in comment. Reported by: thompsa Revision Changes Path 1.216 +1 -1 src/sys/conf/kmod.mk From owner-cvs-src@FreeBSD.ORG Sun Mar 4 19:52:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACA9516A402; Sun, 4 Mar 2007 19:52:07 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 861AB13C46B; Sun, 4 Mar 2007 19:52:07 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24Jq7M4080682; Sun, 4 Mar 2007 19:52:07 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24Jq7GC080681; Sun, 4 Mar 2007 19:52:07 GMT (envelope-from ru) Message-Id: <200703041952.l24Jq7GC080681@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 4 Mar 2007 19:52:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/expr expr.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Mar 2007 19:52:07 -0000 ru 2007-03-04 19:52:07 UTC FreeBSD src repository Modified files: bin/expr expr.1 Log: Fix markup. Revision Changes Path 1.29 +8 -5 src/bin/expr/expr.1 From owner-cvs-src@FreeBSD.ORG Sun Mar 4 22:36:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 289CA16A404; Sun, 4 Mar 2007 22:36:49 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1735613C48E; Sun, 4 Mar 2007 22:36:49 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24MamLA027136; Sun, 4 Mar 2007 22:36:48 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24MamwN027135; Sun, 4 Mar 2007 22:36:48 GMT (envelope-from rwatson) Message-Id: <200703042236.l24MamwN027135@repoman.freebsd.org> From: Robert Watson Date: Sun, 4 Mar 2007 22:36:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_acct.c kern_acl.c kern_context.c kern_descrip.c kern_event.c kern_exec.c kern_exit.c kern_fork.c kern_jail.c kern_ktrace.c kern_linker.c kern_module.c kern_ntptime.c kern_prot.c kern_resource.c kern_shutdown.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 22:36:49 -0000 rwatson 2007-03-04 22:36:48 UTC FreeBSD src repository Modified files: sys/kern kern_acct.c kern_acl.c kern_context.c kern_descrip.c kern_event.c kern_exec.c kern_exit.c kern_fork.c kern_jail.c kern_ktrace.c kern_linker.c kern_module.c kern_ntptime.c kern_prot.c kern_resource.c kern_shutdown.c kern_sig.c kern_sysctl.c kern_time.c kern_xxx.c p1003_1b.c subr_prof.c subr_trap.c sys_generic.c sys_process.c sysv_msg.c sysv_sem.c sysv_shm.c uipc_syscalls.c sys/nfsserver nfs_syscalls.c sys/security/audit audit.c audit_syscalls.c sys/security/mac mac_syscalls.c Log: Remove 'MPSAFE' annotations from the comments above most system calls: all system calls now enter without Giant held, and then in some cases, acquire Giant explicitly. Remove a number of other MPSAFE annotations in the credential code and tweak one or two other adjacent comments. Revision Changes Path 1.87 +2 -4 src/sys/kern/kern_acct.c 1.51 +3 -27 src/sys/kern/kern_acl.c 1.8 +0 -6 src/sys/kern/kern_context.c 1.304 +0 -30 src/sys/kern/kern_descrip.c 1.108 +0 -6 src/sys/kern/kern_event.c 1.300 +0 -8 src/sys/kern/kern_exec.c 1.295 +0 -9 src/sys/kern/kern_exit.c 1.269 +0 -9 src/sys/kern/kern_fork.c 1.60 +0 -4 src/sys/kern/kern_jail.c 1.116 +0 -10 src/sys/kern/kern_ktrace.c 1.147 +0 -27 src/sys/kern/kern_linker.c 1.52 +0 -15 src/sys/kern/kern_module.c 1.62 +0 -6 src/sys/kern/kern_ntptime.c 1.208 +3 -97 src/sys/kern/kern_prot.c 1.168 +0 -25 src/sys/kern/kern_resource.c 1.181 +1 -5 src/sys/kern/kern_shutdown.c 1.340 +8 -75 src/sys/kern/kern_sig.c 1.173 +0 -6 src/sys/kern/kern_sysctl.c 1.138 +0 -21 src/sys/kern/kern_time.c 1.48 +0 -24 src/sys/kern/kern_xxx.c 1.34 +0 -24 src/sys/kern/p1003_1b.c 1.77 +0 -3 src/sys/kern/subr_prof.c 1.291 +2 -4 src/sys/kern/subr_trap.c 1.153 +10 -45 src/sys/kern/sys_generic.c 1.142 +0 -3 src/sys/kern/sys_process.c 1.68 +1 -15 src/sys/kern/sysv_msg.c 1.86 +2 -13 src/sys/kern/sysv_sem.c 1.110 +0 -18 src/sys/kern/sysv_shm.c 1.247 +3 -78 src/sys/kern/uipc_syscalls.c 1.110 +0 -3 src/sys/nfsserver/nfs_syscalls.c 1.24 +0 -5 src/sys/security/audit/audit.c 1.12 +0 -12 src/sys/security/audit/audit_syscalls.c 1.131 +0 -30 src/sys/security/mac/mac_syscalls.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 23:40:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9298316A402; Sun, 4 Mar 2007 23:40:36 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6C3DC13C49D; Sun, 4 Mar 2007 23:40:36 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24Nea3j039196; Sun, 4 Mar 2007 23:40:36 GMT (envelope-from wkoszek@repoman.freebsd.org) Received: (from wkoszek@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24Neanq039195; Sun, 4 Mar 2007 23:40:36 GMT (envelope-from wkoszek) Message-Id: <200703042340.l24Neanq039195@repoman.freebsd.org> From: "Wojciech A. Koszek" Date: Sun, 4 Mar 2007 23:40: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/kern kern_alq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 23:40:36 -0000 wkoszek 2007-03-04 23:40:36 UTC FreeBSD src repository Modified files: sys/kern kern_alq.c Log: Use msleep(9) instead of tsleep(9) surrounded by lock acquisition and release. Approved by: cognet (mentor) Revision Changes Path 1.17 +2 -6 src/sys/kern/kern_alq.c From owner-cvs-src@FreeBSD.ORG Sun Mar 4 23:42:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B031B16A402; Sun, 4 Mar 2007 23:42:58 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8A04013C467; Sun, 4 Mar 2007 23:42:58 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l24Ngwxu040218; Sun, 4 Mar 2007 23:42:58 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l24Ngwmu040217; Sun, 4 Mar 2007 23:42:58 GMT (envelope-from grog) Message-Id: <200703042342.l24Ngwmu040217@repoman.freebsd.org> From: Greg Lehey Date: Sun, 4 Mar 2007 23:42:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 04 Mar 2007 23:42:58 -0000 grog 2007-03-04 23:42:58 UTC FreeBSD src repository Modified files: share/man/man9 sleep.9 Log: Rearrange function descriptions in more logical order. Be less alarmist about the dangers of abusing wakeup_one(). Requested by: kris, imp Revision Changes Path 1.56 +30 -24 src/share/man/man9/sleep.9 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 00:21:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06B8C16A40E; Mon, 5 Mar 2007 00:21:41 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D316E13C4A7; Mon, 5 Mar 2007 00:21:40 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l250LeiI047630; Mon, 5 Mar 2007 00:21:40 GMT (envelope-from wkoszek@repoman.freebsd.org) Received: (from wkoszek@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l250LeoB047629; Mon, 5 Mar 2007 00:21:40 GMT (envelope-from wkoszek) Message-Id: <200703050021.l250LeoB047629@repoman.freebsd.org> From: "Wojciech A. Koszek" Date: Mon, 5 Mar 2007 00:21: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/nfsserver nfs_syscalls.c src/sys/kern vfs_cluster.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 00:21:41 -0000 wkoszek 2007-03-05 00:21:40 UTC FreeBSD src repository Modified files: sys/nfsserver nfs_syscalls.c sys/kern vfs_cluster.c Log: Change these descriptions of memory types used in malloc(9), as their current, rather long strings make output from vmstat -m look unpleasant. Approved by: cognet (mentor) Revision Changes Path 1.175 +1 -1 src/sys/kern/vfs_cluster.c 1.111 +3 -4 src/sys/nfsserver/nfs_syscalls.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 00:27:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21EAA16A403; Mon, 5 Mar 2007 00:27:31 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EFAF313C442; Mon, 5 Mar 2007 00:27:30 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l250RUhh050637; Mon, 5 Mar 2007 00:27:30 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l250RUZb050635; Mon, 5 Mar 2007 00:27:30 GMT (envelope-from grog) Message-Id: <200703050027.l250RUZb050635@repoman.freebsd.org> From: Greg Lehey Date: Mon, 5 Mar 2007 00:27: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/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 00:27:31 -0000 grog 2007-03-05 00:27:30 UTC FreeBSD src repository Modified files: share/man/man9 sleep.9 Log: Cosmetics: remove trailing white space, wrap over-long lines. Pointy hat to: grog Revision Changes Path 1.57 +6 -4 src/share/man/man9/sleep.9 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 03:07:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5735016A406; Mon, 5 Mar 2007 03:07:37 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3086913C46B; Mon, 5 Mar 2007 03:07:37 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2537bDN092670; Mon, 5 Mar 2007 03:07:37 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2537bFN092669; Mon, 5 Mar 2007 03:07:37 GMT (envelope-from delphij) Message-Id: <200703050307.l2537bFN092669@repoman.freebsd.org> From: Xin LI Date: Mon, 5 Mar 2007 03:07:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/regex engine.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 03:07:37 -0000 delphij 2007-03-05 03:07:37 UTC FreeBSD src repository Modified files: lib/libc/regex engine.c Log: Avoid infinite recursion on: echo "foo foo bar bar bar baz" | sed 's/\([^ ]*\)\( *\1\)*/\1/g' Obtained from: OpenBSD via NetBSD (rev. 1.18) Revision Changes Path 1.19 +2 -0 src/lib/libc/regex/engine.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 05:40:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 552B516A401; Mon, 5 Mar 2007 05:40:35 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EDAD613C428; Mon, 5 Mar 2007 05:40:24 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l255eOJ3029508; Mon, 5 Mar 2007 05:40:24 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l255eOfk029506; Mon, 5 Mar 2007 05:40:24 GMT (envelope-from imp) Message-Id: <200703050540.l255eOfk029506@repoman.freebsd.org> From: Warner Losh Date: Mon, 5 Mar 2007 05:40:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 05:40:35 -0000 imp 2007-03-05 05:40:24 UTC FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Use different wait channel name for second of two sleeps. Minor commentary addition. Revision Changes Path 1.158 +2 -2 src/sys/dev/pccbb/pccbb.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 05:59:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2D5516A401; Mon, 5 Mar 2007 05:59:49 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CB11213C441; Mon, 5 Mar 2007 05:59:49 +0000 (UTC) (envelope-from grog@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l255xnnm035159; Mon, 5 Mar 2007 05:59:49 GMT (envelope-from grog@repoman.freebsd.org) Received: (from grog@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l255xnxK035158; Mon, 5 Mar 2007 05:59:49 GMT (envelope-from grog) Message-Id: <200703050559.l255xnxK035158@repoman.freebsd.org> From: Greg Lehey Date: Mon, 5 Mar 2007 05:59:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 05:59:50 -0000 grog 2007-03-05 05:59:49 UTC FreeBSD src repository Modified files: share/man/man9 sleep.9 Log: Another typo. Spotted by: ru Another pointy hat to: grog Revision Changes Path 1.58 +1 -1 src/share/man/man9/sleep.9 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 06:33:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2FD6B16A400; Mon, 5 Mar 2007 06:33:09 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 090A013C48D; Mon, 5 Mar 2007 06:33:09 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l256X8R6043375; Mon, 5 Mar 2007 06:33:08 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l256X8Xf043372; Mon, 5 Mar 2007 06:33:08 GMT (envelope-from kevlo) Message-Id: <200703050633.l256X8Xf043372@repoman.freebsd.org> From: Kevin Lo Date: Mon, 5 Mar 2007 06:33:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/xscale/ixp425 ixp425_npe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 06:33:09 -0000 kevlo 2007-03-05 06:33:08 UTC FreeBSD src repository Modified files: sys/arm/xscale/ixp425 ixp425_npe.c Log: Check for malloc return value Revision Changes Path 1.4 +2 -0 src/sys/arm/xscale/ixp425/ixp425_npe.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 07:45:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3535316A400; Mon, 5 Mar 2007 07:45:39 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0E5B213C48D; Mon, 5 Mar 2007 07:45:39 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l257jcwf055638; Mon, 5 Mar 2007 07:45:38 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l257jcNu055637; Mon, 5 Mar 2007 07:45:38 GMT (envelope-from ariff) Message-Id: <200703050745.l257jcNu055637@repoman.freebsd.org> From: Ariff Abdullah Date: Mon, 5 Mar 2007 07:45: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/dev/sound/pci envy24.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 07:45:39 -0000 ariff 2007-03-05 07:45:38 UTC FreeBSD src repository Modified files: sys/dev/sound/pci envy24.c Log: Quick bandaid for possible broken multiple playback channels implementation. Reported/Tested by: Oliver Iberien Revision Changes Path 1.9 +5 -4 src/sys/dev/sound/pci/envy24.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 09:10:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3CD016A404; Mon, 5 Mar 2007 09:10:17 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A57CB13C4A5; Mon, 5 Mar 2007 09:10:17 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l259AHuN081080; Mon, 5 Mar 2007 09:10:17 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l259AHY8081078; Mon, 5 Mar 2007 09:10:17 GMT (envelope-from bde) Message-Id: <200703050910.l259AHY8081078@repoman.freebsd.org> From: Bruce Evans Date: Mon, 5 Mar 2007 09:10: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/i386/isa clock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 09:10:17 -0000 bde 2007-03-05 09:10:17 UTC FreeBSD src repository Modified files: sys/i386/isa clock.c Log: Partial fix for a bug in rev.1.231. If suspend/resume clobbers the RTC state, then it may clobber the RTC index register, so the index register must be restored before using it to restore control registers in rtc_restore(). The following problems remain: - rtc_restore() is only called if pmtimer is configured. Buggy suspend/resumes are more likely to clobber the index register than a control register, so pmtimer is more needed than it used to be. - pmtimer doesn't exist for amd64. - Restoring of the RTC state may race with rtcintr(). If an RTC interrupt is handled before the state is restored, then rtcin(RTC_INTR) in rtcintr() may read from the wrong register, so rtcintr() may spin forever. This may be mitigated by the most common state clobbering being to turn off RTC interrupts. Revision Changes Path 1.235 +1 -0 src/sys/i386/isa/clock.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 09:32:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8364A16A400; Mon, 5 Mar 2007 09:32:28 +0000 (UTC) (envelope-from mux@freebsd.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 706E613C481; Mon, 5 Mar 2007 09:32:28 +0000 (UTC) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 7C7A41A4D90; Mon, 5 Mar 2007 01:13:29 -0800 (PST) Date: Mon, 5 Mar 2007 10:13:29 +0100 From: Maxime Henrion To: Greg Lehey Message-ID: <20070305091329.GA65356@elvis.mu.org> References: <200703050559.l255xnxK035158@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200703050559.l255xnxK035158@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 09:32:28 -0000 Greg Lehey wrote: > grog 2007-03-05 05:59:49 UTC > > FreeBSD src repository > > Modified files: > share/man/man9 sleep.9 > Log: > Another typo. > > Spotted by: ru > Another pointy hat to: grog > > Revision Changes Path > 1.58 +1 -1 src/share/man/man9/sleep.9 I've been reading the latest version of this manpage with your modifications, and still find the information you have added in it largely misleading and/or wrong. I'm particularly worried by this paragraph : Due to the way it works, the wakeup_one() function requires that only related threads sleep on a specific chan address. It is the programmer's responsibility to choose a unique chan value. The older wakeup() func- tion did not require this, though it was never good practice for threads to share a chan value. When converting from wakeup() to wakeup_one(), pay particular attention to ensure that no other threads wait on the same chan. You're making it look as if sharing the wait channel when using wakeup_one() is more of a problem than when using wakeup(). This isn't true; both usages are completely wrong. What is different is that when in the wakeup_one() case, the symptoms are likely to be more apparent and more annoying because chances are that it will lead to deadlocks pretty quickly. This does not make sharing wait channels "more" OK within the context of wakeup(). Also, this particular bit : "The older wakeup() function did not require this, [...]" looks entirely wrong. You are somehow mitigating it by saying that it was never a good practice to share wait channels afterwards, but this is still untrue. Sharing wait channels isn't just "not a good practice", it is entirely incorrect. As far as I can tell, the wakeup() function always required separate wait channels, it's just that the effect of the sharing wasn't necessarily visible, if every process/thread checks that the condition it was waiting on is indeed met when it is woken up (and that it goes back to sleep if it isn't). I think these changes should be backed out. As a side note, we really need to migrate from the msleep()/wakeup() API to using CVs. It would make those kind of confusions impossible. Cheers, Maxime From owner-cvs-src@FreeBSD.ORG Mon Mar 5 09:36:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F10C16A402; Mon, 5 Mar 2007 09:36:22 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id 6342713C4AA; Mon, 5 Mar 2007 09:36:22 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 03D5447299; Mon, 5 Mar 2007 04:36:22 -0500 (EST) Date: Mon, 5 Mar 2007 09:36:21 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Greg Lehey In-Reply-To: <200703042342.l24Ngwmu040217@repoman.freebsd.org> Message-ID: <20070305092518.F44433@fledge.watson.org> References: <200703042342.l24Ngwmu040217@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 09:36:22 -0000 On Sun, 4 Mar 2007, Greg Lehey wrote: > grog 2007-03-04 23:42:58 UTC > > FreeBSD src repository > > Modified files: > share/man/man9 sleep.9 > Log: > Rearrange function descriptions in more logical order. > Be less alarmist about the dangers of abusing wakeup_one(). How would you feel about language along the lines of: Prior to the introduction of wakeup_one(), using a single wait channel address was possible as long as all sleepers looped around the sleep call re-checking the condition after each wakeup. However, with the addition of wakeup_one(), combining wait channels for multiple purposes may lead easily to bugs involving lost wakeups, and is strongly discouraged. It is recommended that consumers of the sleep(9) programming interface carefully follow the convention of using only wait channels associated with memory addresses explicitly allocated for this purpose, and not overload or extend the semantics of existing wait channels without careful analysis in order to avoid potential channel collisions. Programmers may find the cv(9) interface easier to use correctly, as it has explicit condition variable data structures. That way we combine warnings about potential misuse with a recommendation for the cv(9) API. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Mon Mar 5 09:43:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3886E16A402; Mon, 5 Mar 2007 09:43:56 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 11FF813C461; Mon, 5 Mar 2007 09:43:56 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l259htmS087032; Mon, 5 Mar 2007 09:43:55 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l259htwi087031; Mon, 5 Mar 2007 09:43:55 GMT (envelope-from delphij) Message-Id: <200703050943.l259htwi087031@repoman.freebsd.org> From: Xin LI Date: Mon, 5 Mar 2007 09: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/lib/libc/regex engine.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 09:43:56 -0000 delphij 2007-03-05 09:43:55 UTC FreeBSD src repository Modified files: lib/libc/regex engine.c Log: Only stop evaluation of a back reference if the match length is zero and the recursion level is too deep. Obtained from: OpenBSD Revision Changes Path 1.20 +17 -15 src/lib/libc/regex/engine.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 09:44:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EC1116A400; Mon, 5 Mar 2007 09:44:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DC8F713C481; Mon, 5 Mar 2007 09:44:41 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l259ifnf087094; Mon, 5 Mar 2007 09:44:41 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l259ifF7087093; Mon, 5 Mar 2007 09:44:41 GMT (envelope-from delphij) Message-Id: <200703050944.l259ifF7087093@repoman.freebsd.org> From: Xin LI Date: Mon, 5 Mar 2007 09:44:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/regex/grot tests X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 09:44:42 -0000 delphij 2007-03-05 09:44:41 UTC FreeBSD src repository Modified files: lib/libc/regex/grot tests Log: Test cases for back references. Obtained from: OpenBSD Revision Changes Path 1.3 +24 -0 src/lib/libc/regex/grot/tests From owner-cvs-src@FreeBSD.ORG Mon Mar 5 10:21:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFE0E16A405; Mon, 5 Mar 2007 10:21:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A92DA13C467; Mon, 5 Mar 2007 10:21:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25ALq0W094010; Mon, 5 Mar 2007 10:21:52 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25ALqgR094009; Mon, 5 Mar 2007 10:21:52 GMT (envelope-from bms) Message-Id: <200703051021.l25ALqgR094009@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 5 Mar 2007 10:21: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/netinet tcp.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, 05 Mar 2007 10:21:52 -0000 bms 2007-03-05 10:21:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet tcp.h Log: MFC rev 1.33: Add missing TH_PUSH to the TH_FLAGS enumeration. Submitted by: Andre Albsmeier PR: kern/85203 Revision Changes Path 1.31.2.2 +1 -1 src/sys/netinet/tcp.h From owner-cvs-src@FreeBSD.ORG Mon Mar 5 11:17:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 177CF16A405; Mon, 5 Mar 2007 11:17:32 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0954413C474; Mon, 5 Mar 2007 11:17:32 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25BHVDu013241; Mon, 5 Mar 2007 11:17:31 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25BHV1I013237; Mon, 5 Mar 2007 11:17:31 GMT (envelope-from bms) Message-Id: <200703051117.l25BHV1I013237@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 5 Mar 2007 11:17:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/kern sys_generic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 11:17:32 -0000 bms 2007-03-05 11:17:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern sys_generic.c Log: MFC rev 1.152: Do not dispatch SIGPIPE from the generic write path for a socket; with this patch the code behaves according to the comment on the line above. Without this patch, a socket could cause SIGPIPE to be delivered to its process, once with SO_NOSIGPIPE set, and twice without. With this patch, the kernel now passes the sigpipe regression test in both HEAD and RELENG_6. PR: 78478 (the bug fix for this PR introduced this bug) Tested by: Anton Yuzhaninov Reviewed by: jhb Revision Changes Path 1.146.2.2 +1 -1 src/sys/kern/sys_generic.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 11:52:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9345816A403; Mon, 5 Mar 2007 11:52:18 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6D26C13C467; Mon, 5 Mar 2007 11:52:18 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25BqIxE020256; Mon, 5 Mar 2007 11:52:18 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25BqILk020254; Mon, 5 Mar 2007 11:52:18 GMT (envelope-from brueffer) Message-Id: <200703051152.l25BqILk020254@repoman.freebsd.org> From: Christian Brueffer Date: Mon, 5 Mar 2007 11:52: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/share/man/man4 ipw.4 iwi.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, 05 Mar 2007 11:52:18 -0000 brueffer 2007-03-05 11:52:17 UTC FreeBSD src repository Modified files: share/man/man4 ipw.4 iwi.4 Log: The firmware files are included in the base system now, reflect this here.. While here, remove Xrefs to all other wlan drivers except the Intel ones, these often get confused. Also remove pointers to the old ipw and iwi webpages, they don't include any useful information that's not in the manpages yet. Reviewed by: flz, ru Revision Changes Path 1.15 +20 -16 src/share/man/man4/ipw.4 1.17 +23 -16 src/share/man/man4/iwi.4 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 12:39:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 507D516A405; Mon, 5 Mar 2007 12:39:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 29F4A13C4A7; Mon, 5 Mar 2007 12:39:50 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25CdoYd028635; Mon, 5 Mar 2007 12:39:50 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25CdoOr028634; Mon, 5 Mar 2007 12:39:50 GMT (envelope-from pjd) Message-Id: <200703051239.l25CdoOr028634@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 5 Mar 2007 12:39:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/geom/class/eli geli.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, 05 Mar 2007 12:39:50 -0000 pjd 2007-03-05 12:39:49 UTC FreeBSD src repository Modified files: sbin/geom/class/eli geli.8 Log: Fix incorrect comment. Geli will protect against data modification, of course! It won't protect against reply attacks - try harder to explain them correctly. MFC after: 1 week Revision Changes Path 1.21 +6 -5 src/sbin/geom/class/eli/geli.8 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 12:39:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78DD816A4C6; Mon, 5 Mar 2007 12:39:53 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4EB6A13C48D; Mon, 5 Mar 2007 12:39:53 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25CdrQp028662; Mon, 5 Mar 2007 12:39:53 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25CdrLu028661; Mon, 5 Mar 2007 12:39:53 GMT (envelope-from bms) Message-Id: <200703051239.l25CdrLu028661@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 5 Mar 2007 12:39: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/libc/sys shutdown.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, 05 Mar 2007 12:39:53 -0000 bms 2007-03-05 12:39:53 UTC FreeBSD src repository Modified files: lib/libc/sys shutdown.2 Log: Update shutdown() manual page to reflect actual behaviour of code. Add IMPLEMENTATION NOTES section explaining in detail the effect this system call has in common use cases involving PF_INET and PF_INET6 sockets. PR: kern/84761 MFC after: 2 days Revision Changes Path 1.17 +82 -10 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 12:41:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9130B16A400; Mon, 5 Mar 2007 12:41:44 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 69E2C13C481; Mon, 5 Mar 2007 12:41:44 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25CfiJu029376; Mon, 5 Mar 2007 12:41:44 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25CfiLI029374; Mon, 5 Mar 2007 12:41:44 GMT (envelope-from pjd) Message-Id: <200703051241.l25CfiLI029374@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 5 Mar 2007 12:41: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/sbin/geom/class/eli geom_eli.c src/sys/geom/eli g_eli_ctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 12:41:44 -0000 pjd 2007-03-05 12:41:44 UTC FreeBSD src repository Modified files: sbin/geom/class/eli geom_eli.c sys/geom/eli g_eli_ctl.c Log: Warn when user use sectorsize bigger than the page size, which will lead to problems when the geli device is used with file system or as a swap. Hopefully will prevent problems like kern/98742 in the future. MFC after: 1 week Revision Changes Path 1.21 +4 -0 src/sbin/geom/class/eli/geom_eli.c 1.12 +4 -0 src/sys/geom/eli/g_eli_ctl.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 12:46:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D3DF16A400; Mon, 5 Mar 2007 12:46:18 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4747D13C478; Mon, 5 Mar 2007 12:46:18 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25CkIbd030149; Mon, 5 Mar 2007 12:46:18 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25CkIPt030148; Mon, 5 Mar 2007 12:46:18 GMT (envelope-from bms) Message-Id: <200703051246.l25CkIPt030148@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 5 Mar 2007 12:46:17 +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/wi if_wi_pccard.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 12:46:18 -0000 bms 2007-03-05 12:46:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/wi if_wi_pccard.c Log: MFC rev 1.59: Add ELSA XI330 product. This is rebadged and sold as SMC 2532W-B and I/O Data also resells it. Add an alternative airvast an100 id. PR: kern/92323 Revision Changes Path 1.57.2.1 +1 -0 src/sys/dev/wi/if_wi_pccard.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 12:54:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC8EA16A400; Mon, 5 Mar 2007 12:54:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B663C13C491; Mon, 5 Mar 2007 12:54:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25Cs3Y2039908; Mon, 5 Mar 2007 12:54:03 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25Cs3Wm039907; Mon, 5 Mar 2007 12:54:03 GMT (envelope-from bms) Message-Id: <200703051254.l25Cs3Wm039907@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 5 Mar 2007 12:54: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/lib/libc/sys shutdown.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, 05 Mar 2007 12:54:04 -0000 bms 2007-03-05 12:54:03 UTC FreeBSD src repository Modified files: lib/libc/sys shutdown.2 Log: .Xr nit. Submitted by: brueffer Revision Changes Path 1.18 +2 -2 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 13:10:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E0A016A401; Mon, 5 Mar 2007 13:10:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2BC5713C4B3; Mon, 5 Mar 2007 13:10:59 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25DAxNI043039; Mon, 5 Mar 2007 13:10:59 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25DAx3w043032; Mon, 5 Mar 2007 13:10:59 GMT (envelope-from rwatson) Message-Id: <200703051310.l25DAx3w043032@repoman.freebsd.org> From: Robert Watson Date: Mon, 5 Mar 2007 13:10:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_acl.c kern_context.c kern_descrip.c kern_environment.c kern_exec.c kern_exit.c kern_ktrace.c kern_ntptime.c kern_prot.c kern_resource.c kern_sig.c kern_synch.c kern_sysctl.c kern_time.c kern_umtx.c kern_uuid.c kern_xxx.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 13:10:59 -0000 rwatson 2007-03-05 13:10:58 UTC FreeBSD src repository Modified files: sys/kern kern_acl.c kern_context.c kern_descrip.c kern_environment.c kern_exec.c kern_exit.c kern_ktrace.c kern_ntptime.c kern_prot.c kern_resource.c kern_sig.c kern_synch.c kern_sysctl.c kern_time.c kern_umtx.c kern_uuid.c kern_xxx.c p1003_1b.c sys_generic.c sys_pipe.c sysv_msg.c sysv_sem.c sysv_shm.c uipc_mqueue.c uipc_sem.c uipc_syscalls.c vfs_aio.c vfs_cache.c vfs_mount.c vfs_syscalls.c Log: Further system call comment cleanup: - Remove also "MP SAFE" after prior "MPSAFE" pass. (suggested by bde) - Remove extra blank lines in some cases. - Add extra blank lines in some cases. - Remove no-op comments consisting solely of the function name, the word "syscall", or the system call name. - Add punctuation. - Re-wrap some comments. Revision Changes Path 1.52 +2 -2 src/sys/kern/kern_acl.c 1.9 +3 -3 src/sys/kern/kern_context.c 1.305 +3 -3 src/sys/kern/kern_descrip.c 1.47 +1 -2 src/sys/kern/kern_environment.c 1.301 +10 -10 src/sys/kern/kern_exec.c 1.296 +4 -5 src/sys/kern/kern_exit.c 1.117 +0 -6 src/sys/kern/kern_ktrace.c 1.63 +6 -6 src/sys/kern/kern_ntptime.c 1.209 +4 -6 src/sys/kern/kern_prot.c 1.169 +0 -3 src/sys/kern/kern_resource.c 1.341 +2 -12 src/sys/kern/kern_sig.c 1.290 +1 -1 src/sys/kern/kern_synch.c 1.174 +1 -2 src/sys/kern/kern_sysctl.c 1.139 +16 -26 src/sys/kern/kern_time.c 1.59 +0 -1 src/sys/kern/kern_umtx.c 1.12 +0 -1 src/sys/kern/kern_uuid.c 1.49 +4 -6 src/sys/kern/kern_xxx.c 1.35 +3 -3 src/sys/kern/p1003_1b.c 1.154 +0 -15 src/sys/kern/sys_generic.c 1.190 +2 -3 src/sys/kern/sys_pipe.c 1.69 +0 -4 src/sys/kern/sysv_msg.c 1.87 +0 -3 src/sys/kern/sysv_sem.c 1.111 +0 -5 src/sys/kern/sysv_shm.c 1.19 +3 -15 src/sys/kern/uipc_mqueue.c 1.28 +0 -3 src/sys/kern/uipc_sem.c 1.248 +1 -3 src/sys/kern/uipc_syscalls.c 1.230 +3 -3 src/sys/kern/vfs_aio.c 1.107 +1 -1 src/sys/kern/vfs_cache.c 1.245 +3 -6 src/sys/kern/vfs_mount.c 1.432 +13 -27 src/sys/kern/vfs_syscalls.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 13:24:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0478816A400; Mon, 5 Mar 2007 13:24:02 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D245613C471; Mon, 5 Mar 2007 13:24:01 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25DO1N5045805; Mon, 5 Mar 2007 13:24:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25DO15S045803; Mon, 5 Mar 2007 13:24:01 GMT (envelope-from rwatson) Message-Id: <200703051324.l25DO15S045803@repoman.freebsd.org> From: Robert Watson Date: Mon, 5 Mar 2007 13:24:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files src/sys/kern kern_acl.c vfs_acl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 13:24:02 -0000 rwatson 2007-03-05 13:24:01 UTC FreeBSD src repository Modified files: sys/conf files sys/kern vfs_acl.c Removed files: sys/kern kern_acl.c Log: Recognize repo-copy of kern_acl.c to vfs_acl.c, remove kern_acl.c, remove kern_acl.c from the build, connect vfs_acl.c to the build. Thanks to: joe Revision Changes Path 1.1181 +1 -1 src/sys/conf/files 1.53 +0 -431 src/sys/kern/kern_acl.c (dead) 1.52 +0 -0 src/sys/kern/vfs_acl.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 13:26:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30E0616A400; Mon, 5 Mar 2007 13:26:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0AE9413C461; Mon, 5 Mar 2007 13:26:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25DQ7Bk046119; Mon, 5 Mar 2007 13:26:07 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25DQ7KV046118; Mon, 5 Mar 2007 13:26:07 GMT (envelope-from rwatson) Message-Id: <200703051326.l25DQ7KV046118@repoman.freebsd.org> From: Robert Watson Date: Mon, 5 Mar 2007 13:26:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern vfs_acl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 13:26:08 -0000 rwatson 2007-03-05 13:26:07 UTC FreeBSD src repository Modified files: sys/kern vfs_acl.c Log: Replay minor system call comment cleanup applied to kern_acl.c in a race with repo-copy of kern_acl.c to vfs_acl.c. Revision Changes Path 1.53 +2 -2 src/sys/kern/vfs_acl.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 13:52:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 353BD16A400; Mon, 5 Mar 2007 13:52:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0ECA913C428; Mon, 5 Mar 2007 13:52:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25Dq2sk049966; Mon, 5 Mar 2007 13:52:02 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25Dq2qj049965; Mon, 5 Mar 2007 13:52:02 GMT (envelope-from bms) Message-Id: <200703051352.l25Dq2qj049965@repoman.freebsd.org> From: Bruce M Simpson Date: Mon, 5 Mar 2007 13:52:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys shutdown.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, 05 Mar 2007 13:52:03 -0000 bms 2007-03-05 13:52:01 UTC FreeBSD src repository Modified files: lib/libc/sys shutdown.2 Log: Fix markup. Submitted by: ru MFC after: 2 days Revision Changes Path 1.19 +36 -22 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 14:47:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6258916A402; Mon, 5 Mar 2007 14:47:56 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3B9ED13C48D; Mon, 5 Mar 2007 14:47:56 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25ElugO060989; Mon, 5 Mar 2007 14:47:56 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25EltPW060988; Mon, 5 Mar 2007 14:47:55 GMT (envelope-from thomas) Message-Id: <200703051447.l25EltPW060988@repoman.freebsd.org> From: Thomas Quinot Date: Mon, 5 Mar 2007 14:47: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/sbin/mount_nfs mount_nfs.8 mount_nfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 14:47:56 -0000 thomas 2007-03-05 14:47:54 UTC FreeBSD src repository Modified files: sbin/mount_nfs mount_nfs.8 mount_nfs.c Log: Add "fg" option as antonym to "bg"; add "hard" option as antonym to "soft". This is for better compatibility with other environments (Linux, Solaris, HP-UX, AIX and Tru64 support these options). PR: bin/109924 MFC after: 1 week Revision Changes Path 1.47 +6 -0 src/sbin/mount_nfs/mount_nfs.8 1.72 +2 -0 src/sbin/mount_nfs/mount_nfs.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 15:31:59 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D740B16A494; Mon, 5 Mar 2007 15:31:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id 5B03013C4B3; Mon, 5 Mar 2007 15:31:59 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l25FVrPN002893; Mon, 5 Mar 2007 10:31:54 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Robert Watson Date: Mon, 5 Mar 2007 10:32:19 -0500 User-Agent: KMail/1.9.1 References: <200703042342.l24Ngwmu040217@repoman.freebsd.org> <20070305092518.F44433@fledge.watson.org> In-Reply-To: <20070305092518.F44433@fledge.watson.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703051032.20618.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 05 Mar 2007 10:31:54 -0500 (EST) X-Virus-Scanned: ClamAV 0.88.3/2732/Mon Mar 5 09:05:12 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: Greg Lehey , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 15:32:00 -0000 On Monday 05 March 2007 04:36, Robert Watson wrote: > > On Sun, 4 Mar 2007, Greg Lehey wrote: > > > grog 2007-03-04 23:42:58 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/man/man9 sleep.9 > > Log: > > Rearrange function descriptions in more logical order. > > Be less alarmist about the dangers of abusing wakeup_one(). > > How would you feel about language along the lines of: > > Prior to the introduction of wakeup_one(), using a single wait channel > address was possible as long as all sleepers looped around the sleep call > re-checking the condition after each wakeup. However, with the addition of > wakeup_one(), combining wait channels for multiple purposes may lead easily > to bugs involving lost wakeups, and is strongly discouraged. It is > recommended that consumers of the sleep(9) programming interface carefully > follow the convention of using only wait channels associated with memory > addresses explicitly allocated for this purpose, and not overload or extend > the semantics of existing wait channels without careful analysis in order to > avoid potential channel collisions. Programmers may find the cv(9) > interface easier to use correctly, as it has explicit condition variable > data structures. > > That way we combine warnings about potential misuse with a recommendation for > the cv(9) API. How about a far simpler sentence: Programmers should ensure that wait channels are not used for multiple events. Unless there is wide misunderstanding of this concept (which there doesn't seem to be judging from the followups) we shouldn't spend any more length on the topic than that. -- John Baldwin From owner-cvs-src@FreeBSD.ORG Mon Mar 5 15:44:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FDB916A408; Mon, 5 Mar 2007 15:44:02 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CBBA413C4A8; Mon, 5 Mar 2007 15:44:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25Fi1Lb072347; Mon, 5 Mar 2007 15:44:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25Fi14x072344; Mon, 5 Mar 2007 15:44:01 GMT (envelope-from ru) Message-Id: <200703051544.l25Fi14x072344@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 5 Mar 2007 15:44:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys shutdown.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, 05 Mar 2007 15:44:02 -0000 ru 2007-03-05 15:44:01 UTC FreeBSD src repository Modified files: lib/libc/sys shutdown.2 Log: Apply my patch properly. Revision Changes Path 1.20 +1 -1 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Mon Mar 5 16:18:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1DA516A400; Mon, 5 Mar 2007 16:18:32 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AB57013C46B; Mon, 5 Mar 2007 16:18:32 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25GIWVj078205; Mon, 5 Mar 2007 16:18:32 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25GIV3C078204; Mon, 5 Mar 2007 16:18:31 GMT (envelope-from jhb) Message-Id: <200703051618.l25GIV3C078204@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Mar 2007 16:18:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pci pcireg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 16:18:32 -0000 jhb 2007-03-05 16:18:31 UTC FreeBSD src repository Modified files: sys/dev/pci pcireg.h Log: - Flesh out list of UART simple comms programming interfaces. - Add list of PIC base peripheral programming interfaces. - Add VPD capability register offsets. MFC after: 3 days Revision Changes Path 1.59 +15 -1 src/sys/dev/pci/pcireg.h From owner-cvs-src@FreeBSD.ORG Mon Mar 5 16:21:59 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF9A416A401; Mon, 5 Mar 2007 16:21:59 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C923F13C49D; Mon, 5 Mar 2007 16:21:59 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25GLxw2078957; Mon, 5 Mar 2007 16:21:59 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25GLxaZ078956; Mon, 5 Mar 2007 16:21:59 GMT (envelope-from jhb) Message-Id: <200703051621.l25GLxaZ078956@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Mar 2007 16:21:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pci pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 16:22:00 -0000 jhb 2007-03-05 16:21:59 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c Log: - Use constants for VPD capability register offsets. - Add missing ()'s around return values. Revision Changes Path 1.344 +13 -13 src/sys/dev/pci/pci.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 16:22:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC17A16A40B; Mon, 5 Mar 2007 16:22:49 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 835AC13C491; Mon, 5 Mar 2007 16:22:49 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25GMneg079314; Mon, 5 Mar 2007 16:22:49 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25GMnjY079313; Mon, 5 Mar 2007 16:22:49 GMT (envelope-from jhb) Message-Id: <200703051622.l25GMnjY079313@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Mar 2007 16:22:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 io_apic.c src/sys/i386/i386 io_apic.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 16:22:49 -0000 jhb 2007-03-05 16:22:49 UTC FreeBSD src repository Modified files: sys/amd64/amd64 io_apic.c sys/i386/i386 io_apic.c Log: Add a simple device driver to "eat" any I/O APICs that show up as PCI devices. MFC after: 1 week Revision Changes Path 1.27 +48 -1 src/sys/amd64/amd64/io_apic.c 1.31 +48 -1 src/sys/i386/i386/io_apic.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 17:04:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36BA216A406; Mon, 5 Mar 2007 17:04:58 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0F92A13C4C3; Mon, 5 Mar 2007 17:04:58 +0000 (UTC) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25H4ve9095951; Mon, 5 Mar 2007 17:04:57 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25H4vcl095950; Mon, 5 Mar 2007 17:04:57 GMT (envelope-from wilko) Message-Id: <200703051704.l25H4vcl095950@repoman.freebsd.org> From: Wilko Bulte Date: Mon, 5 Mar 2007 17:04:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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: Mon, 05 Mar 2007 17:04:58 -0000 wilko 2007-03-05 17:04:57 UTC FreeBSD src repository Modified files: . access Log: Take tjr's commit bit into safekeeping per his request to core. Submitted by: tjr Approved by: core Revision Changes Path 1.813 +0 -1 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Mon Mar 5 17:47:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7979216A403; Mon, 5 Mar 2007 17:47:28 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 529BB13C49D; Mon, 5 Mar 2007 17:47:28 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25HlSVN002971; Mon, 5 Mar 2007 17:47:28 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25HlSR7002970; Mon, 5 Mar 2007 17:47:28 GMT (envelope-from brian) Message-Id: <200703051747.l25HlSR7002970@repoman.freebsd.org> From: Brian Somers Date: Mon, 5 Mar 2007 17:47:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 17:47:28 -0000 brian 2007-03-05 17:47:28 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_kern.c Log: In the NOTYET code path when a process forks, the remaining child thread goes back to system scope rather than process scope. This allows an ensuing exec() to actually work. This change was made a year ago here, but I "forgot" to commit it :( Approved by: deischen MFC after: 3 weeks Revision Changes Path 1.123 +4 -7 src/lib/libpthread/thread/thr_kern.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 18:52:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E970C16A402; Mon, 5 Mar 2007 18:52:35 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B52F113C48E; Mon, 5 Mar 2007 18:52:35 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25IqZWZ016543; Mon, 5 Mar 2007 18:52:35 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25IqZfQ016542; Mon, 5 Mar 2007 18:52:35 GMT (envelope-from sam) Message-Id: <200703051852.l25IqZfQ016542@repoman.freebsd.org> From: Sam Leffler Date: Mon, 5 Mar 2007 18:52:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 ieee80211_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: Mon, 05 Mar 2007 18:52:36 -0000 sam 2007-03-05 18:52:35 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_var.h Log: correct conversions between TU and ms/ticks; these are not used by any code in the tree[1] and are close enough for common values that this change is a noop [1] ath uses one macro to calculate a value that is not used Submitted by: sephe MFC after: 1 week Revision Changes Path 1.46 +3 -3 src/sys/net80211/ieee80211_var.h From owner-cvs-src@FreeBSD.ORG Mon Mar 5 18:55:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4288416A400; Mon, 5 Mar 2007 18:55:15 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0C23813C491; Mon, 5 Mar 2007 18:55:15 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25ItEYq017099; Mon, 5 Mar 2007 18:55:14 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25ItE00017098; Mon, 5 Mar 2007 18:55:14 GMT (envelope-from alc) Message-Id: <200703051855.l25ItE00017098@repoman.freebsd.org> From: Alan Cox Date: Mon, 5 Mar 2007 18:55: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/vm vm_fault.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 18:55:15 -0000 alc 2007-03-05 18:55:14 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: Use PCPU_LAZY_INC() to update page fault statistics. Revision Changes Path 1.224 +6 -6 src/sys/vm/vm_fault.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 19:00:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D61116A409; Mon, 5 Mar 2007 19:00:50 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 56B3613C4B5; Mon, 5 Mar 2007 19:00:50 +0000 (UTC) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25J0o4K017473; Mon, 5 Mar 2007 19:00:50 GMT (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25J0oDD017472; Mon, 5 Mar 2007 19:00:50 GMT (envelope-from brian) Message-Id: <200703051900.l25J0oDD017472@repoman.freebsd.org> From: Brian Somers Date: Mon, 5 Mar 2007 19:00:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libpthread/thread thr_kern.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 19:00:50 -0000 brian 2007-03-05 19:00:49 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_kern.c Log: Oops, fix a typo in the last commit :-/ Revision Changes Path 1.124 +1 -1 src/lib/libpthread/thread/thr_kern.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 19:12:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06BDF16A403; Mon, 5 Mar 2007 19:12:26 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D4ABF13C461; Mon, 5 Mar 2007 19:12:25 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25JCP1X020945; Mon, 5 Mar 2007 19:12:25 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25JCPrH020944; Mon, 5 Mar 2007 19:12:25 GMT (envelope-from sam) Message-Id: <200703051912.l25JCPrH020944@repoman.freebsd.org> From: Sam Leffler Date: Mon, 5 Mar 2007 19: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/net80211 ieee80211_ioctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 19:12:26 -0000 sam 2007-03-05 19:12:25 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_ioctl.c Log: correct inital bounds check on returning scan results; this does not paper over catching an error as the case was already handled, albeit in a somewhat surprising way (the caller received zero'd data) Submitted by: sephe MFC after: 2 weeks Revision Changes Path 1.52 +1 -1 src/sys/net80211/ieee80211_ioctl.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 19:39:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 920FA16A401; Mon, 5 Mar 2007 19:39:51 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6ADE813C48E; Mon, 5 Mar 2007 19:39:51 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25JdpMX024825; Mon, 5 Mar 2007 19:39:51 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25Jdp49024824; Mon, 5 Mar 2007 19:39:51 GMT (envelope-from jhb) Message-Id: <200703051939.l25Jdp49024824@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Mar 2007 19:39: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/lib/libc/resolv res_send.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 19:39:51 -0000 jhb 2007-03-05 19:39:51 UTC FreeBSD src repository Modified files: lib/libc/resolv res_send.c Log: Only reject file descriptors higher than FD_SETSIZE if we are not using poll(2) or kqueue(2). Previously we rejected fd's higher than FD_SETSIZE for kevent(2), and larger than sysconf(_SC_OPEN_MAX) for poll(2). However, the check for poll(2) wasn't really needed. open(2) and socket(2) won't return an fd you can't pass to either poll(2) or kevent(2). This fixes a but where gethostbyname() would fail if you had more than 1023 files open in a process. MFC after: 1 week Reviewed by: ume Found by: ps Revision Changes Path 1.7 +5 -7 src/lib/libc/resolv/res_send.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 20:35:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6E6F16A401; Mon, 5 Mar 2007 20:35:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9600413C49D; Mon, 5 Mar 2007 20:35:17 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25KZHLf035258; Mon, 5 Mar 2007 20:35:17 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25KZH1R035257; Mon, 5 Mar 2007 20:35:17 GMT (envelope-from jhb) Message-Id: <200703052035.l25KZH1R035257@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Mar 2007 20:35: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/amd64/acpica madt.c src/sys/amd64/amd64 io_apic.c local_apic.c mptable.c src/sys/amd64/include apicvar.h src/sys/i386/acpica madt.c src/sys/i386/i386 io_apic.c local_apic.c machdep.c mptable.c src/sys/i386/include apicvar.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, 05 Mar 2007 20:35:17 -0000 jhb 2007-03-05 20:35:17 UTC FreeBSD src repository Modified files: sys/amd64/acpica madt.c sys/amd64/amd64 io_apic.c local_apic.c mptable.c sys/amd64/include apicvar.h sys/i386/acpica madt.c sys/i386/i386 io_apic.c local_apic.c machdep.c mptable.c sys/i386/include apicvar.h Log: Use vm_paddr_t rather than uintptr_t when passing the physical address of APICs to lapic_init() and ioapic_create(). Revision Changes Path 1.22 +3 -4 src/sys/amd64/acpica/madt.c 1.28 +1 -1 src/sys/amd64/amd64/io_apic.c 1.35 +1 -1 src/sys/amd64/amd64/local_apic.c 1.238 +3 -3 src/sys/amd64/amd64/mptable.c 1.22 +2 -2 src/sys/amd64/include/apicvar.h 1.25 +3 -4 src/sys/i386/acpica/madt.c 1.32 +1 -1 src/sys/i386/i386/io_apic.c 1.37 +1 -1 src/sys/i386/i386/local_apic.c 1.649 +2 -2 src/sys/i386/i386/machdep.c 1.243 +3 -3 src/sys/i386/i386/mptable.c 1.22 +2 -2 src/sys/i386/include/apicvar.h From owner-cvs-src@FreeBSD.ORG Mon Mar 5 21:21:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A15916A418; Mon, 5 Mar 2007 21:21:04 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 03D0613C4A7; Mon, 5 Mar 2007 21:21:04 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25LL3Dn052931; Mon, 5 Mar 2007 21:21:03 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25LL3Qp052929; Mon, 5 Mar 2007 21:21:03 GMT (envelope-from thomas) Message-Id: <200703052121.l25LL3Qp052929@repoman.freebsd.org> From: Thomas Quinot Date: Mon, 5 Mar 2007 21:21:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sym sym_hipd.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 21:21:04 -0000 thomas 2007-03-05 21:21:03 UTC FreeBSD src repository Modified files: sys/dev/sym sym_hipd.c Log: Fix typo in comment. Revision Changes Path 1.63 +3 -3 src/sys/dev/sym/sym_hipd.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 21:39:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EDF7816A400; Mon, 5 Mar 2007 21:39:54 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C73FD13C428; Mon, 5 Mar 2007 21:39:54 +0000 (UTC) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25LdsF2055910; Mon, 5 Mar 2007 21:39:54 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25Lds8o055909; Mon, 5 Mar 2007 21:39:54 GMT (envelope-from njl) Message-Id: <200703052139.l25Lds8o055909@repoman.freebsd.org> From: Nate Lawson Date: Mon, 5 Mar 2007 21:39:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/acpica acpi_thermal.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 21:39:55 -0000 njl 2007-03-05 21:39:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_thermal.c Log: Check the _TMP value for sanity also. On some systems (HP NX laptops), the EC occasionally times out and provides bogus values (3000C). This change prevents those systems from prematurely shutting down while we work on the underlying problem. Also, bump the sanity value to 0...200C from 0...150C. Revision Changes Path 1.64 +10 -3 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 21:40:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B807E16A50C; Mon, 5 Mar 2007 21:40:12 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2DE5B13C467; Mon, 5 Mar 2007 21:40:11 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25LeB0j056017; Mon, 5 Mar 2007 21:40:11 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25LeBYa056016; Mon, 5 Mar 2007 21:40:11 GMT (envelope-from alc) Message-Id: <200703052140.l25LeBYa056016@repoman.freebsd.org> From: Alan Cox Date: Mon, 5 Mar 2007 21:40: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/amd64/amd64 mp_machdep.c pmap.c src/sys/i386/i386 mp_machdep.c pmap.c vm_machdep.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 21:40:12 -0000 alc 2007-03-05 21:40:11 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c pmap.c sys/i386/i386 mp_machdep.c pmap.c vm_machdep.c Log: Acquiring smp_ipi_mtx on every call to pmap_invalidate_*() is wasteful. For example, during a buildworld more than half of the calls do not generate an IPI because the only TLB entry invalidated is on the calling processor. This revision pushes down the acquisition and release of smp_ipi_mtx into smp_tlb_shootdown() and smp_targeted_tlb_shootdown() and instead uses sched_pin() and sched_unpin() in pmap_invalidate_*() so that thread migration doesn't lead to a missed TLB invalidation. Reviewed by: jhb MFC after: 3 weeks Revision Changes Path 1.282 +8 -2 src/sys/amd64/amd64/mp_machdep.c 1.580 +8 -64 src/sys/amd64/amd64/pmap.c 1.275 +9 -2 src/sys/i386/i386/mp_machdep.c 1.582 +8 -64 src/sys/i386/i386/pmap.c 1.276 +0 -2 src/sys/i386/i386/vm_machdep.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 21:53:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 067FF16A404; Mon, 5 Mar 2007 21:53:50 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D492313C48E; Mon, 5 Mar 2007 21:53:49 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25LrnOC058772; Mon, 5 Mar 2007 21:53:49 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25LrnU6058771; Mon, 5 Mar 2007 21:53:49 GMT (envelope-from sam) Message-Id: <200703052153.l25LrnU6058771@repoman.freebsd.org> From: Sam Leffler Date: Mon, 5 Mar 2007 21:53:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 21:53:50 -0000 sam 2007-03-05 21:53:49 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c Log: Kick tx after processing rx'd frames; this fixes latency issues for processing frames from the power save queue when operating in ap mode. This is especially noticeable for realtime data going to devices like voip phones. Submitted by: "J.R. Oldroyd" MFC after: 2 weeks Revision Changes Path 1.163 +5 -0 src/sys/dev/ath/if_ath.c From owner-cvs-src@FreeBSD.ORG Mon Mar 5 21:56:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 51DC416A401; Mon, 5 Mar 2007 21:56:34 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2BBB113C4B6; Mon, 5 Mar 2007 21:56:34 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25LuY8d059133; Mon, 5 Mar 2007 21:56:34 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25LuY0w059132; Mon, 5 Mar 2007 21:56:34 GMT (envelope-from sam) Message-Id: <200703052156.l25LuY0w059132@repoman.freebsd.org> From: Sam Leffler Date: Mon, 5 Mar 2007 21:56: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/dev/ath if_ath.c if_athvar.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, 05 Mar 2007 21:56:34 -0000 sam 2007-03-05 21:56:33 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c if_athvar.h Log: Change mtx's to use the formulated name as type so witness does not complain on nested tx q lock acquisitions when processing the cab q. MFC after: 2 weeks Revision Changes Path 1.164 +2 -1 src/sys/dev/ath/if_ath.c 1.60 +3 -3 src/sys/dev/ath/if_athvar.h From owner-cvs-src@FreeBSD.ORG Mon Mar 5 22:27:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6BFF16A401; Mon, 5 Mar 2007 22:27:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 80E6513C47E; Mon, 5 Mar 2007 22:27:55 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l25MRtEe065105; Mon, 5 Mar 2007 22:27:55 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l25MRt3Y065104; Mon, 5 Mar 2007 22:27:55 GMT (envelope-from jhb) Message-Id: <200703052227.l25MRt3Y065104@repoman.freebsd.org> From: John Baldwin Date: Mon, 5 Mar 2007 22:27:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/i386 nexus.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 05 Mar 2007 22:27:56 -0000 jhb 2007-03-05 22:27:55 UTC FreeBSD src repository Modified files: sys/i386/i386 nexus.c Log: Trim trailing whitespace. Revision Changes Path 1.69 +8 -8 src/sys/i386/i386/nexus.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 01:12:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B222116A400; Tue, 6 Mar 2007 01:12:16 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A4A7213C4A7; Tue, 6 Mar 2007 01:12:16 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l261CGL6004396; Tue, 6 Mar 2007 01:12:16 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l261CGLG004395; Tue, 6 Mar 2007 01:12:16 GMT (envelope-from scottl) Message-Id: <200703060112.l261CGLG004395@repoman.freebsd.org> From: Scott Long Date: Tue, 6 Mar 2007 01:12:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/arcmsr arcmsr.c arcmsr.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, 06 Mar 2007 01:12:16 -0000 scottl 2007-03-06 01:12:16 UTC FreeBSD src repository Modified files: sys/dev/arcmsr arcmsr.c arcmsr.h Log: Better fix for the errors under high load. Returning CAM_SCSI_BUSY is almost never correct as CAM has no real understanding of it, and will just immediately retry the command. This leads to undesirable cycling of the camisr as well as a high possibility for the command to exhaust its retries before the driver can get around to servicing it. The better fix, as demonstrated here, is to freeze the simq and mark the command as needing to be tried. Then when driver can service the command, the simq gets unfrozen. This is correct, and documented here to help reduce the mystery. However, it also points out a shortcoming in CAM error handling that makes writing drivers harder. Submitted by: Erich Chen Revision Changes Path 1.18 +8 -2 src/sys/dev/arcmsr/arcmsr.c 1.4 +2 -0 src/sys/dev/arcmsr/arcmsr.h From owner-cvs-src@FreeBSD.ORG Tue Mar 6 01:15:29 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 057EC16A406; Tue, 6 Mar 2007 01:15:29 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D316913C4B6; Tue, 6 Mar 2007 01:15:28 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l261FSw5004834; Tue, 6 Mar 2007 01:15:28 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l261FSDB004833; Tue, 6 Mar 2007 01:15:28 GMT (envelope-from kevlo) Message-Id: <200703060115.l261FSDB004833@repoman.freebsd.org> From: Kevin Lo Date: Tue, 6 Mar 2007 01:15: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/arm/xscale/ixp425 ixp425_npe.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 01:15:29 -0000 kevlo 2007-03-06 01:15:28 UTC FreeBSD src repository Modified files: sys/arm/xscale/ixp425 ixp425_npe.c Log: Reverse this change. malloc() with M_WAITOK never fails. Noted by: cognet, brian and thompsa Revision Changes Path 1.5 +0 -2 src/sys/arm/xscale/ixp425/ixp425_npe.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 02:36:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1A8516A400; Tue, 6 Mar 2007 02:36:55 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7B37413C461; Tue, 6 Mar 2007 02:36:55 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l262atel018164; Tue, 6 Mar 2007 02:36:55 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l262atSG018163; Tue, 6 Mar 2007 02:36:55 GMT (envelope-from ariff) Message-Id: <200703060236.l262atSG018163@repoman.freebsd.org> From: Ariff Abdullah Date: Tue, 6 Mar 2007 02:36: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/dev/sound/pcm ac97.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 02:36:55 -0000 ariff 2007-03-06 02:36:55 UTC FreeBSD src repository Modified files: sys/dev/sound/pcm ac97.c Log: Enable tone / 3D controls for YAMAHA YMF743, 753 and 752 (partially). PR: kern/109599 Submitted by: Watanabe Kazuhiro Revision Changes Path 1.65 +17 -0 src/sys/dev/sound/pcm/ac97.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 03:29:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0F9F16A401; Tue, 6 Mar 2007 03:29:07 +0000 (UTC) (envelope-from jroberson@chesapeake.net) Received: from webaccess-cl.virtdom.com (webaccess-cl.virtdom.com [216.240.101.25]) by mx1.freebsd.org (Postfix) with ESMTP id 9147313C461; Tue, 6 Mar 2007 03:29:07 +0000 (UTC) (envelope-from jroberson@chesapeake.net) Received: from [10.10.10.192] (wireless.whooshnet.com [64.114.124.137]) (authenticated bits=0) by webaccess-cl.virtdom.com (8.13.6/8.13.6) with ESMTP id l263Sv55077782 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Mon, 5 Mar 2007 22:29:03 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Tue, 6 Mar 2007 23:51:35 -0800 (PST) From: Jeff Roberson X-X-Sender: jroberson@10.0.0.1 To: "Wojciech A. Koszek" In-Reply-To: <200703042340.l24Neanq039195@repoman.freebsd.org> Message-ID: <20070306234936.O635@10.0.0.1> References: <200703042340.l24Neanq039195@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_alq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 03:29:08 -0000 The ALQ lock is a spinlock. I don't believe this works. Do I misunderstand something? On Sun, 4 Mar 2007, Wojciech A. Koszek wrote: > wkoszek 2007-03-04 23:40:36 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_alq.c > Log: > Use msleep(9) instead of tsleep(9) surrounded by lock acquisition and > release. > > Approved by: cognet (mentor) > > Revision Changes Path > 1.17 +2 -6 src/sys/kern/kern_alq.c > From owner-cvs-src@FreeBSD.ORG Tue Mar 6 03:48:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CCF516A401; Tue, 6 Mar 2007 03:48:19 +0000 (UTC) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.freebsd.org (Postfix) with ESMTP id 624F113C46B; Tue, 6 Mar 2007 03:48:19 +0000 (UTC) (envelope-from sam@errno.com) Received: from [10.0.0.248] (trouble.errno.com [10.0.0.248]) (authenticated bits=0) by ebb.errno.com (8.13.6/8.12.6) with ESMTP id l263m6pq091197 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 5 Mar 2007 19:48:07 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <45ECE475.1010405@errno.com> Date: Mon, 05 Mar 2007 19:48:05 -0800 From: Sam Leffler User-Agent: Thunderbird 1.5.0.9 (X11/20070208) MIME-Version: 1.0 To: Jeff Roberson References: <200703042340.l24Neanq039195@repoman.freebsd.org> <20070306234936.O635@10.0.0.1> In-Reply-To: <20070306234936.O635@10.0.0.1> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, "Wojciech A. Koszek" , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_alq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 03:48:19 -0000 Jeff Roberson wrote: > The ALQ lock is a spinlock. I don't believe this works. Do I > misunderstand something? > > On Sun, 4 Mar 2007, Wojciech A. Koszek wrote: > >> wkoszek 2007-03-04 23:40:36 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern kern_alq.c >> Log: >> Use msleep(9) instead of tsleep(9) surrounded by lock acquisition and >> release. >> >> Approved by: cognet (mentor) >> >> Revision Changes Path >> 1.17 +2 -6 src/sys/kern/kern_alq.c >> > > Yeah, this is totally busted and could never been tested. Sam From owner-cvs-src@FreeBSD.ORG Tue Mar 6 07:39:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9DB316A401; Tue, 6 Mar 2007 07:39:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B33FE13C428; Tue, 6 Mar 2007 07:39:12 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l267dCAw082115; Tue, 6 Mar 2007 07:39:12 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l267dCiH082111; Tue, 6 Mar 2007 07:39:12 GMT (envelope-from rwatson) Message-Id: <200703060739.l267dCiH082111@repoman.freebsd.org> From: Robert Watson Date: Tue, 6 Mar 2007 07:39:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/compat/linux linux_stats.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 07:39:13 -0000 rwatson 2007-03-06 07:39:12 UTC FreeBSD src repository Modified files: sys/compat/linux linux_stats.c Log: In translate_path_major_minor(), do not calculate otherwise unused 'fp' variable, avoiding an extra locking of the file descriptor array. Revision Changes Path 1.87 +0 -4 src/sys/compat/linux/linux_stats.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 08:03:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E92416A402; Tue, 6 Mar 2007 08:03:18 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EBF3F13C441; Tue, 6 Mar 2007 08:03:17 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2683Hbb087969; Tue, 6 Mar 2007 08:03:17 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2683Hs2087967; Tue, 6 Mar 2007 08:03:17 GMT (envelope-from kientzle) Message-Id: <200703060803.l2683Hs2087967@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 6 Mar 2007 08:03:17 +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/libarchive archive_read_extract.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 08:03:18 -0000 kientzle 2007-03-06 08:03:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libarchive archive_read_extract.c Log: MFC archive_read_extract.c r1.52 Reset umask() during extraction so that mode computations come out right. In particular, this fixes the broken "tar -p" option. Revision Changes Path 1.41.2.4 +2 -0 src/lib/libarchive/archive_read_extract.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 08:13:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABD5916A400; Tue, 6 Mar 2007 08:13:21 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9C43A13C467; Tue, 6 Mar 2007 08:13:21 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l268DLKr089774; Tue, 6 Mar 2007 08:13:21 GMT (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l268DLl3089772; Tue, 6 Mar 2007 08:13:21 GMT (envelope-from mckusick) Message-Id: <200703060813.l268DLl3089772@repoman.freebsd.org> From: Kirk McKusick Date: Tue, 6 Mar 2007 08:13:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys extattr.h src/sys/ufs/ufs extattr.h src/sbin/restore tape.c src/share/man/man9 extattr.9 src/share/man/man5 fs.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: Tue, 06 Mar 2007 08:13:21 -0000 mckusick 2007-03-06 08:13:21 UTC FreeBSD src repository Modified files: sys/sys extattr.h sys/ufs/ufs extattr.h sbin/restore tape.c share/man/man9 extattr.9 share/man/man5 fs.5 Log: Move macros describing extended attributes in UFS from to . Move description of extended attributes in UFS from man9/extattr.9 to man5/fs.5. Note that restore will not compile until and have been updated. Suggested by: Robert Watson Revision Changes Path 1.49 +1 -0 src/sbin/restore/tape.c 1.24 +58 -1 src/share/man/man5/fs.5 1.17 +0 -55 src/share/man/man9/extattr.9 1.16 +0 -47 src/sys/sys/extattr.h 1.21 +49 -0 src/sys/ufs/ufs/extattr.h From owner-cvs-src@FreeBSD.ORG Tue Mar 6 09:32:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8C4016A401; Tue, 6 Mar 2007 09:32:41 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 97BC013C428; Tue, 6 Mar 2007 09:32:41 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l269WfeL014252; Tue, 6 Mar 2007 09:32:41 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l269WfIl014250; Tue, 6 Mar 2007 09:32:41 GMT (envelope-from kevlo) Message-Id: <200703060932.l269WfIl014250@repoman.freebsd.org> From: Kevin Lo Date: Tue, 6 Mar 2007 09:32:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/arp arp.c src/usr.sbin/crunch/crunchide crunchide.c src/usr.sbin/kbdmap kbdmap.c src/usr.sbin/lpr/lpd recvjob.c src/usr.sbin/mtest mtest.c src/usr.sbin/ndp ndp.c src/usr.sbin/sade termcap.c src/usr.sbin/sysinstall termcap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 09:32:41 -0000 kevlo 2007-03-06 09:32:41 UTC FreeBSD src repository Modified files: usr.sbin/arp arp.c usr.sbin/crunch/crunchide crunchide.c usr.sbin/kbdmap kbdmap.c usr.sbin/lpr/lpd recvjob.c usr.sbin/mtest mtest.c usr.sbin/ndp ndp.c usr.sbin/sade termcap.c usr.sbin/sysinstall termcap.c Log: Use sizeof() for calculating the buffer size instead of hard-coded values. Revision Changes Path 1.65 +1 -1 src/usr.sbin/arp/arp.c 1.11 +1 -1 src/usr.sbin/crunch/crunchide/crunchide.c 1.5 +1 -1 src/usr.sbin/kbdmap/kbdmap.c 1.32 +1 -1 src/usr.sbin/lpr/lpd/recvjob.c 1.7 +1 -1 src/usr.sbin/mtest/mtest.c 1.22 +1 -1 src/usr.sbin/ndp/ndp.c 1.35 +1 -1 src/usr.sbin/sade/termcap.c 1.31 +3 -3 src/usr.sbin/sysinstall/termcap.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 10:55:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DD6516A406; Tue, 6 Mar 2007 10:55:58 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E946F13C494; Tue, 6 Mar 2007 10:55:57 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26Atvs7031930; Tue, 6 Mar 2007 10:55:57 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26AtvRU031929; Tue, 6 Mar 2007 10:55:57 GMT (envelope-from piso) Message-Id: <200703061055.l26AtvRU031929@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 6 Mar 2007 10:55:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/at91 at91.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 10:55:58 -0000 piso 2007-03-06 10:55:57 UTC FreeBSD src repository Modified files: sys/arm/at91 at91.c Log: o substitute INTR_FAST with FILTER in a panic message. o wrap a BUS_SETUP_INTR() line at 80. Revision Changes Path 1.13 +3 -3 src/sys/arm/at91/at91.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 10:56:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F173A16A400; Tue, 6 Mar 2007 10:56:54 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CBA1913C428; Tue, 6 Mar 2007 10:56:54 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26Aus96032026; Tue, 6 Mar 2007 10:56:54 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26AuslB032025; Tue, 6 Mar 2007 10:56:54 GMT (envelope-from piso) Message-Id: <200703061056.l26AuslB032025@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 6 Mar 2007 10:56: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/arm/sa11x0 sa11x0.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 10:56:55 -0000 piso 2007-03-06 10:56:54 UTC FreeBSD src repository Modified files: sys/arm/sa11x0 sa11x0.c Log: Wrap a BUS_SETUP_INTR() line at 80. Revision Changes Path 1.9 +2 -2 src/sys/arm/sa11x0/sa11x0.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 10:58:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7476F16A400; Tue, 6 Mar 2007 10:58:23 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4E87513C428; Tue, 6 Mar 2007 10:58:23 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26AwNZb032116; Tue, 6 Mar 2007 10:58:23 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26AwNoQ032115; Tue, 6 Mar 2007 10:58:23 GMT (envelope-from piso) Message-Id: <200703061058.l26AwNoQ032115@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 6 Mar 2007 10:58:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/arm/xscale/ixp425 ixp425_pci.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 10:58:23 -0000 piso 2007-03-06 10:58:23 UTC FreeBSD src repository Modified files: sys/arm/xscale/ixp425 ixp425_pci.c Log: Wrap ixppcib_setup_intr() at 80. Revision Changes Path 1.4 +2 -1 src/sys/arm/xscale/ixp425/ixp425_pci.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 11:36:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8476116A401; Tue, 6 Mar 2007 11:36:34 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5F0ED13C4A7; Tue, 6 Mar 2007 11:36:34 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26BaYh9039375; Tue, 6 Mar 2007 11:36:34 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26BaYbB039374; Tue, 6 Mar 2007 11:36:34 GMT (envelope-from piso) Message-Id: <200703061136.l26BaYbB039374@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 6 Mar 2007 11:36: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/ppc ppc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 11:36:34 -0000 piso 2007-03-06 11:36:34 UTC FreeBSD src repository Modified files: sys/dev/ppc ppc.c Log: o Wrap ppc_setup_intr() at 80. o Fix a bit the indentation. Revision Changes Path 1.56 +6 -3 src/sys/dev/ppc/ppc.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 11:44:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25A8616A401; Tue, 6 Mar 2007 11:44:12 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F3E9013C491; Tue, 6 Mar 2007 11:44:11 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26BiB8c040891; Tue, 6 Mar 2007 11:44:11 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26BiBjf040890; Tue, 6 Mar 2007 11:44:11 GMT (envelope-from piso) Message-Id: <200703061144.l26BiBjf040890@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 6 Mar 2007 11:44: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/ppbus ppbconf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 11:44:12 -0000 piso 2007-03-06 11:44:11 UTC FreeBSD src repository Modified files: sys/dev/ppbus ppbconf.c Log: Remove a useless cast from void * to struct ppb_device *. Revision Changes Path 1.26 +1 -1 src/sys/dev/ppbus/ppbconf.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 12:08:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6100616A404; Tue, 6 Mar 2007 12:08:39 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3AD1913C441; Tue, 6 Mar 2007 12:08:39 +0000 (UTC) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26C8dmW068676; Tue, 6 Mar 2007 12:08:39 GMT (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26C8dtS068672; Tue, 6 Mar 2007 12:08:39 GMT (envelope-from cognet) Message-Id: <200703061208.l26C8dtS068672@repoman.freebsd.org> From: Olivier Houchard Date: Tue, 6 Mar 2007 12:08: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/kern kern_alq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 12:08:39 -0000 cognet 2007-03-06 12:08:38 UTC FreeBSD src repository Modified files: sys/kern kern_alq.c Log: Backout rev 1.17, msleep() can't be used with a spinlock. Pointy hat to: cognet Revision Changes Path 1.18 +6 -2 src/sys/kern/kern_alq.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 12:19:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F51D16A402; Tue, 6 Mar 2007 12:19:38 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4860213C494; Tue, 6 Mar 2007 12:19:38 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26CJc6j081621; Tue, 6 Mar 2007 12:19:38 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26CJc8j081620; Tue, 6 Mar 2007 12:19:38 GMT (envelope-from piso) Message-Id: <200703061219.l26CJc8j081620@repoman.freebsd.org> From: Paolo Pisati Date: Tue, 6 Mar 2007 12:19: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/sparc64/sparc64 upa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 12:19:38 -0000 piso 2007-03-06 12:19:38 UTC FreeBSD src repository Modified files: sys/sparc64/sparc64 upa.c Log: Wrap at 80 bus_setup_intr() in upa_setup_intr(). Revision Changes Path 1.7 +2 -2 src/sys/sparc64/sparc64/upa.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 12:42:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D127616A401; Tue, 6 Mar 2007 12:42:38 +0000 (UTC) (envelope-from doginou@dong.ci0.org) Received: from dong.ci0.org (cognet.ci0.org [80.65.224.102]) by mx1.freebsd.org (Postfix) with ESMTP id DCB8413C441; Tue, 6 Mar 2007 12:42:37 +0000 (UTC) (envelope-from doginou@dong.ci0.org) Received: from dong.ci0.org (localhost.ci0.org [127.0.0.1]) by dong.ci0.org (8.13.8/8.13.8) with ESMTP id l26CHkdp086623; Tue, 6 Mar 2007 13:17:46 +0100 (CET) (envelope-from doginou@dong.ci0.org) Received: (from doginou@localhost) by dong.ci0.org (8.13.8/8.13.8/Submit) id l26CHj13086622; Tue, 6 Mar 2007 13:17:45 +0100 (CET) (envelope-from doginou) Date: Tue, 6 Mar 2007 13:17:45 +0100 From: Olivier Houchard To: Sam Leffler Message-ID: <20070306121745.GB86528@ci0.org> References: <200703042340.l24Neanq039195@repoman.freebsd.org> <20070306234936.O635@10.0.0.1> <45ECE475.1010405@errno.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45ECE475.1010405@errno.com> User-Agent: Mutt/1.4.1i Cc: Jeff Roberson , src-committers@FreeBSD.org, "Wojciech A. Koszek" , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_alq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 12:42:38 -0000 On Mon, Mar 05, 2007 at 07:48:05PM -0800, Sam Leffler wrote: > Jeff Roberson wrote: > > The ALQ lock is a spinlock. I don't believe this works. Do I > > misunderstand something? > > > > On Sun, 4 Mar 2007, Wojciech A. Koszek wrote: > > > >> wkoszek 2007-03-04 23:40:36 UTC > >> > >> FreeBSD src repository > >> > >> Modified files: > >> sys/kern kern_alq.c > >> Log: > >> Use msleep(9) instead of tsleep(9) surrounded by lock acquisition and > >> release. > >> > >> Approved by: cognet (mentor) > >> > >> Revision Changes Path > >> 1.17 +2 -6 src/sys/kern/kern_alq.c > >> > > > > > > Yeah, this is totally busted and could never been tested. > That's my fault, sorry. Olivier From owner-cvs-src@FreeBSD.ORG Tue Mar 6 13:13:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 466DC16A410; Tue, 6 Mar 2007 13:13:54 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3802D13C4B6; Tue, 6 Mar 2007 13:13:54 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26DDss0004915; Tue, 6 Mar 2007 13:13:54 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26DDskK004914; Tue, 6 Mar 2007 13:13:54 GMT (envelope-from yar) Message-Id: <200703061313.l26DDskK004914@repoman.freebsd.org> From: Yar Tikhiy Date: Tue, 6 Mar 2007 13:13: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/etc/defaults rc.conf src/share/man/man5 rc.conf.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 13:13:54 -0000 yar 2007-03-06 13:13:54 UTC FreeBSD src repository Modified files: etc/defaults rc.conf share/man/man5 rc.conf.5 Log: As suggested more than once in the lists, drop -M from flags to mfs for /tmp and /var. This makes the memory discs swap-backed instead of malloc-backed. A swap-backed memory disc should not be worse than a malloc-backed one in any scenario because it will start touching swap only when needed. OTOH, a malloc-backed disc can starve limited kernel resources and evenually crash the system. Reflect the change in the rc.conf(5) manpage. Also stop telling lies there about softupdates: it does not waste disc space, it just can delay its freeing. Suggested by: many PR: kern/87255 MFC after: 1 week Revision Changes Path 1.306 +2 -2 src/etc/defaults/rc.conf 1.317 +7 -9 src/share/man/man5/rc.conf.5 From owner-cvs-src@FreeBSD.ORG Tue Mar 6 13:17:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A211A16A408; Tue, 6 Mar 2007 13:17:06 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7B76613C4B3; Tue, 6 Mar 2007 13:17:06 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26DH659005386; Tue, 6 Mar 2007 13:17:06 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26DH6Vu005385; Tue, 6 Mar 2007 13:17:06 GMT (envelope-from brueffer) Message-Id: <200703061317.l26DH6Vu005385@repoman.freebsd.org> From: Christian Brueffer Date: Tue, 6 Mar 2007 13:17: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/share/man/man4 ipw.4 iwi.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 13:17:06 -0000 brueffer 2007-03-06 13:17:06 UTC FreeBSD src repository Modified files: share/man/man4 ipw.4 iwi.4 Log: The firmware images must be loaded as modules at the moment. Revision Changes Path 1.16 +9 -3 src/share/man/man4/ipw.4 1.18 +9 -6 src/share/man/man4/iwi.4 From owner-cvs-src@FreeBSD.ORG Tue Mar 6 14:54:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D125C16A400; Tue, 6 Mar 2007 14:54:45 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AB11213C441; Tue, 6 Mar 2007 14:54:45 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26EsjeV043246; Tue, 6 Mar 2007 14:54:45 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26Esj7D043245; Tue, 6 Mar 2007 14:54:45 GMT (envelope-from ru) Message-Id: <200703061454.l26Esj7D043245@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 6 Mar 2007 14:54:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 14:54:45 -0000 ru 2007-03-06 14:54:45 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/lib url.c Log: Invoke tar(1) with the -p option when installing a package from an URL (i.e., do it the same way as when installing from a file). This fixes the lossage of the setuid bits. It wasn't a problem before because GNU tar(1) implied the -p option for root, but BSD tar(1) doesn't do that. Discussed with: tobez and some advanced users :) Revision Changes Path 1.8 +2 -2 src/usr.sbin/pkg_install/lib/url.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 15:07:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BE9B16A401; Tue, 6 Mar 2007 15:07:33 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 158D113C471; Tue, 6 Mar 2007 15:07:33 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26F7WAL046195; Tue, 6 Mar 2007 15:07:32 GMT (envelope-from joel@repoman.freebsd.org) Received: (from joel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26F7WPF046194; Tue, 6 Mar 2007 15:07:32 GMT (envelope-from joel) Message-Id: <200703061507.l26F7WPF046194@repoman.freebsd.org> From: Joel Dahl Date: Tue, 6 Mar 2007 15:07: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: 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: Tue, 06 Mar 2007 15:07:33 -0000 joel 2007-03-06 15:07:32 UTC FreeBSD src repository (doc committer) Modified files: . access Log: Take non's commit bit into safekeeping per his request to core. Approved by: core With hat: core-secretary Revision Changes Path 1.814 +0 -1 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Tue Mar 6 15:40:08 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B95A416A406; Tue, 6 Mar 2007 15:40:08 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id 6C32E13C494; Tue, 6 Mar 2007 15:40:08 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l26FdevI011726; Tue, 6 Mar 2007 10:40:01 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Olivier Houchard Date: Tue, 6 Mar 2007 10:30:58 -0500 User-Agent: KMail/1.9.1 References: <200703061208.l26C8dtS068672@repoman.freebsd.org> In-Reply-To: <200703061208.l26C8dtS068672@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703061030.59065.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Tue, 06 Mar 2007 10:40:01 -0500 (EST) X-Virus-Scanned: ClamAV 0.88.3/2745/Tue Mar 6 08:59:40 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_alq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 15:40:08 -0000 On Tuesday 06 March 2007 07:08, Olivier Houchard wrote: > cognet 2007-03-06 12:08:38 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_alq.c > Log: > Backout rev 1.17, msleep() can't be used with a spinlock. You can use msleep_spin(). -- John Baldwin From owner-cvs-src@FreeBSD.ORG Tue Mar 6 16:56:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 914E716A408; Tue, 6 Mar 2007 16:56:51 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6AF7413C491; Tue, 6 Mar 2007 16:56:51 +0000 (UTC) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26Gupp4072959; Tue, 6 Mar 2007 16:56:51 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26GupRO072958; Tue, 6 Mar 2007 16:56:51 GMT (envelope-from thomas) Message-Id: <200703061656.l26GupRO072958@repoman.freebsd.org> From: Thomas Quinot Date: Tue, 6 Mar 2007 16:56:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ata atapi-cam.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 16:56:51 -0000 thomas 2007-03-06 16:56:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ata atapi-cam.c Log: MFC rev. 1.47: (cam_rescan): Do not reference ccb->ccb_h.path in CAM_DEBUG call before it is initialized; use path instead. PR: kern/103602 Revision Changes Path 1.42.2.2 +2 -2 src/sys/dev/ata/atapi-cam.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 16:58:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E339616A46F; Tue, 6 Mar 2007 16:58:19 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id 2F8A813C4EA; Tue, 6 Mar 2007 16:58:16 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id AE6295D0E; Tue, 6 Mar 2007 19:58:13 +0300 (MSK) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 8B8A85CF6; Tue, 6 Mar 2007 19:58:13 +0300 (MSK) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l26GswUD024665; Tue, 6 Mar 2007 19:54:58 +0300 (MSK) (envelope-from ru) Date: Tue, 6 Mar 2007 19:54:58 +0300 From: Ruslan Ermilov To: Nate Lawson Message-ID: <20070306165458.GA24644@rambler-co.ru> References: <200702270014.l1R0EKrp034231@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline In-Reply-To: <200702270014.l1R0EKrp034231@repoman.freebsd.org> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_ec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 16:58:20 -0000 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Nate, On Tue, Feb 27, 2007 at 12:14:20AM +0000, Nate Lawson wrote: > njl 2007-02-27 00:14:20 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/acpica acpi_ec.c=20 > Log: > Rework EC I/O approach. Implement burst mode, including proper handlin= g of > case where it asynchronously exits burst mode on its own. Handle diffe= rent > values of hz in sleep loop. Provide more debugging options to tune EC > behavior. These tunables/sysctls may be temporary and are not for user > access if the EC is working properly. Burst mode is now on by default = for > testing and the poll interval has been increased from 100 to 500 us and > total timeout from 100 to 500 ms. > =20 > Hopefully this should be the first step of addressing reports of timeout > errors during battery or thermal access, especially on HP/Compaq laptop= s. > It is reasonably stable and should not cause a loss of functionality or > performance on systems that were previously working. Testing shows an > increase of responsiveness by ~75% on one system. > =20 > PR: kern/98171 > =20 > Revision Changes Path > 1.69 +206 -109 src/sys/dev/acpica/acpi_ec.c I'm having a problem with this commit. My ThinkPad 600X panics on boot with this change. If I back it out, all gets back to normal. What information do you need except =66rom a verbose boot log to track it down? (I can grab a text from serial console, etc.) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --zYM0uCDKw75PZbzx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.2 (FreeBSD) iD8DBQFF7ZziqRfpzJluFF4RAgd1AKCIq8g3UNOfJ4/K1fJIh6X0Et+1TQCfXA7Q R/s92XUuddfViSAgPa5Vauo= =HNAb -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- From owner-cvs-src@FreeBSD.ORG Tue Mar 6 17:04:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DA2916A404; Tue, 6 Mar 2007 17:04:16 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EB3B313C441; Tue, 6 Mar 2007 17:04:15 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26H4FxP075485; Tue, 6 Mar 2007 17:04:15 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26H4FPv075484; Tue, 6 Mar 2007 17:04:15 GMT (envelope-from fjoe) Message-Id: <200703061704.l26H4FPv075484@repoman.freebsd.org> From: Max Khon Date: Tue, 6 Mar 2007 17:04: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/usr.bin/mkuzip mkuzip.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 17:04:16 -0000 fjoe 2007-03-06 17:04:15 UTC FreeBSD src repository Modified files: usr.bin/mkuzip mkuzip.c Log: Support character device as input file. PR: 103500 Revision Changes Path 1.6 +21 -7 src/usr.bin/mkuzip/mkuzip.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 17:16:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E731616A40A; Tue, 6 Mar 2007 17:16:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CF3B513C4BC; Tue, 6 Mar 2007 17:16:47 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26HGlsL077258; Tue, 6 Mar 2007 17:16:47 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26HGlOq077257; Tue, 6 Mar 2007 17:16:47 GMT (envelope-from jhb) Message-Id: <200703061716.l26HGlOq077257@repoman.freebsd.org> From: John Baldwin Date: Tue, 6 Mar 2007 17:16:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 intr_machdep.c local_apic.c mp_machdep.c src/sys/amd64/include intr_machdep.h smp.h src/sys/i386/i386 intr_machdep.c local_apic.c mp_machdep.c src/sys/i386/include intr_machdep.h smp.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, 06 Mar 2007 17:16:48 -0000 jhb 2007-03-06 17:16:47 UTC FreeBSD src repository Modified files: sys/amd64/amd64 intr_machdep.c local_apic.c mp_machdep.c sys/amd64/include intr_machdep.h smp.h sys/i386/i386 intr_machdep.c local_apic.c mp_machdep.c sys/i386/include intr_machdep.h smp.h Log: Change the x86 interrupt code to use FreeBSD CPU IDs (i.e. PCPU_GET(cpuid)) rather than local APIC IDs to keep track of CPUs which can handle interrupts. Revision Changes Path 1.30 +18 -12 src/sys/amd64/amd64/intr_machdep.c 1.36 +0 -1 src/sys/amd64/amd64/local_apic.c 1.283 +6 -5 src/sys/amd64/amd64/mp_machdep.c 1.16 +1 -3 src/sys/amd64/include/intr_machdep.h 1.89 +1 -0 src/sys/amd64/include/smp.h 1.25 +18 -12 src/sys/i386/i386/intr_machdep.c 1.38 +0 -1 src/sys/i386/i386/local_apic.c 1.276 +6 -5 src/sys/i386/i386/mp_machdep.c 1.18 +1 -3 src/sys/i386/include/intr_machdep.h 1.88 +1 -0 src/sys/i386/include/smp.h From owner-cvs-src@FreeBSD.ORG Tue Mar 6 17:32:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20E7C16A400; Tue, 6 Mar 2007 17:32:52 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EF0BF13C441; Tue, 6 Mar 2007 17:32:51 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26HWpQE080074; Tue, 6 Mar 2007 17:32:51 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26HWphb080072; Tue, 6 Mar 2007 17:32:51 GMT (envelope-from jhb) Message-Id: <200703061732.l26HWphb080072@repoman.freebsd.org> From: John Baldwin Date: Tue, 6 Mar 2007 17:32: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/man9 bus_dma.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 17:32:52 -0000 jhb 2007-03-06 17:32:50 UTC FreeBSD src repository Modified files: share/man/man9 bus_dma.9 Log: Some minor tweaks and updates to bus_dma(9) including some additional notes on the address filter and locking callback. Reviewed by: ru, scottl Revision Changes Path 1.40 +34 -23 src/share/man/man9/bus_dma.9 From owner-cvs-src@FreeBSD.ORG Tue Mar 6 18:21:10 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2049E16A408; Tue, 6 Mar 2007 18:21:10 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id D7C1413C4B6; Tue, 6 Mar 2007 18:21:09 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l26Hft24062837; Tue, 6 Mar 2007 09:41:55 -0800 (PST) (envelope-from kientzle@freebsd.org) Message-ID: <45EDA7E2.4040300@freebsd.org> Date: Tue, 06 Mar 2007 09:41:54 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200703061454.l26Esj7D043245@repoman.freebsd.org> In-Reply-To: <200703061454.l26Esj7D043245@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 18:21:10 -0000 Ruslan Ermilov wrote: > Modified files: > usr.sbin/pkg_install/lib url.c > Log: > Invoke tar(1) with the -p option when installing a package > from an URL (i.e., do it the same way as when installing > from a file). This fixes the lossage of the setuid bits. > It wasn't a problem before because GNU tar(1) implied the > -p option for root, but BSD tar(1) doesn't do that. Hmmm... This might actually be considered a bsdtar bug. I'll look into it. Tim Kientzle From owner-cvs-src@FreeBSD.ORG Tue Mar 6 18:27:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE73116A407; Tue, 6 Mar 2007 18:27:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 878EF13C4BC; Tue, 6 Mar 2007 18:27:24 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26IRO2w089369; Tue, 6 Mar 2007 18:27:24 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26IROIT089368; Tue, 6 Mar 2007 18:27:24 GMT (envelope-from remko) Message-Id: <200703061827.l26IROIT089368@repoman.freebsd.org> From: Remko Lodder Date: Tue, 6 Mar 2007 18:27: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/etc/periodic/weekly 310.locate X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 18:27:24 -0000 remko 2007-03-06 18:27:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/periodic/weekly 310.locate Log: MFC 310.locate rev 1.7 Move to the preferred syntax for nice (-n) instead of the depricated one. PR: conf/108611 Submitted by: TAOKA Fumiyoshi Approved by: imp (mentor) Approved by: imp (mentor) Revision Changes Path 1.6.14.1 +2 -2 src/etc/periodic/weekly/310.locate From owner-cvs-src@FreeBSD.ORG Tue Mar 6 18:28:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D066116A404; Tue, 6 Mar 2007 18:28:28 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A9C1B13C442; Tue, 6 Mar 2007 18:28:28 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26ISSlN089444; Tue, 6 Mar 2007 18:28:28 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26ISSNv089443; Tue, 6 Mar 2007 18:28:28 GMT (envelope-from remko) Message-Id: <200703061828.l26ISSNv089443@repoman.freebsd.org> From: Remko Lodder Date: Tue, 6 Mar 2007 18:28: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/sys/boot/i386/cdboot cdboot.s X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 18:28:28 -0000 remko 2007-03-06 18:28:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/boot/i386/cdboot cdboot.s Log: MFC cdboot.s rev 1.17 Fix the cdboot twiddle display. I created and tested this with a custom FreeSBIE cd-image. PR: i386/96452 Submitted by: Yuichiro Goto MFC after: 3 days Approved by: imp (mentor) Approved by: imp (mentor) Revision Changes Path 1.13.8.4 +1 -1 src/sys/boot/i386/cdboot/cdboot.s From owner-cvs-src@FreeBSD.ORG Tue Mar 6 18:28:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B438E16A409; Tue, 6 Mar 2007 18:28:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8CE8713C4A5; Tue, 6 Mar 2007 18:28:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26IShOu089516; Tue, 6 Mar 2007 18:28:43 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26ISh8V089515; Tue, 6 Mar 2007 18:28:43 GMT (envelope-from scottl) Message-Id: <200703061828.l26ISh8V089515@repoman.freebsd.org> From: Scott Long Date: Tue, 6 Mar 2007 18:28: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/amd64/amd64 busdma_machdep.c src/sys/i386/i386 busdma_machdep.c src/sys/ia64/ia64 busdma_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: Tue, 06 Mar 2007 18:28:43 -0000 scottl 2007-03-06 18:28:43 UTC FreeBSD src repository Modified files: sys/amd64/amd64 busdma_machdep.c sys/i386/i386 busdma_machdep.c sys/ia64/ia64 busdma_machdep.c Log: Don't increment total_bounced when doing no-op dmamap_sync ops. Revision Changes Path 1.79 +2 -1 src/sys/amd64/amd64/busdma_machdep.c 1.85 +2 -1 src/sys/i386/i386/busdma_machdep.c 1.44 +2 -1 src/sys/ia64/ia64/busdma_machdep.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 18:29:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1058E16A40D; Tue, 6 Mar 2007 18:29:20 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DE63E13C4AC; Tue, 6 Mar 2007 18:29:19 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26ITJg9089552; Tue, 6 Mar 2007 18:29:19 GMT (envelope-from remko@repoman.freebsd.org) Received: (from remko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26ITJKY089551; Tue, 6 Mar 2007 18:29:19 GMT (envelope-from remko) Message-Id: <200703061829.l26ITJKY089551@repoman.freebsd.org> From: Remko Lodder Date: Tue, 6 Mar 2007 18:29: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/etc/periodic/security 800.loginfail X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 18:29:20 -0000 remko 2007-03-06 18:29:19 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/periodic/security 800.loginfail Log: MFC 800.loginfail rev 1.8 Only match on log messages containing fail,invalid, bad or illegal. This prevents matching on systems that have a name that matches the query. PR: conf/107560 Submitted by: Christian Laursen MFC after: 3 days Approved by: imp (mentor) Approved by: imp (mentor) Revision Changes Path 1.5.12.3 +1 -1 src/etc/periodic/security/800.loginfail From owner-cvs-src@FreeBSD.ORG Tue Mar 6 18:35:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5B2416A40A for ; Tue, 6 Mar 2007 18:35:43 +0000 (UTC) (envelope-from nate@root.org) Received: from root.org (root.org [67.118.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id B854F13C428 for ; Tue, 6 Mar 2007 18:35:43 +0000 (UTC) (envelope-from nate@root.org) Received: (qmail 45552 invoked from network); 6 Mar 2007 18:05:39 -0000 Received: from ppp-71-139-18-69.dsl.snfc21.pacbell.net (HELO ?10.0.5.55?) (nate-mail@71.139.18.69) by root.org with ESMTPA; 6 Mar 2007 18:05:39 -0000 Message-ID: <45EDAD96.9060202@root.org> Date: Tue, 06 Mar 2007 10:06:14 -0800 From: Nate Lawson User-Agent: Thunderbird 1.5.0.9 (X11/20070214) MIME-Version: 1.0 To: Ruslan Ermilov References: <200702270014.l1R0EKrp034231@repoman.freebsd.org> <20070306165458.GA24644@rambler-co.ru> In-Reply-To: <20070306165458.GA24644@rambler-co.ru> X-Enigmail-Version: 0.94.2.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, Nate Lawson , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_ec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 18:35:44 -0000 Ruslan Ermilov wrote: > Hi Nate, > > On Tue, Feb 27, 2007 at 12:14:20AM +0000, Nate Lawson wrote: >> njl 2007-02-27 00:14:20 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/dev/acpica acpi_ec.c >> Log: >> Rework EC I/O approach. Implement burst mode, including proper handling of >> case where it asynchronously exits burst mode on its own. Handle different >> values of hz in sleep loop. Provide more debugging options to tune EC >> behavior. These tunables/sysctls may be temporary and are not for user >> access if the EC is working properly. Burst mode is now on by default for >> testing and the poll interval has been increased from 100 to 500 us and >> total timeout from 100 to 500 ms. >> >> Hopefully this should be the first step of addressing reports of timeout >> errors during battery or thermal access, especially on HP/Compaq laptops. >> It is reasonably stable and should not cause a loss of functionality or >> performance on systems that were previously working. Testing shows an >> increase of responsiveness by ~75% on one system. >> >> PR: kern/98171 >> >> Revision Changes Path >> 1.69 +206 -109 src/sys/dev/acpica/acpi_ec.c > > I'm having a problem with this commit. My ThinkPad 600X > panics on boot with this change. If I back it out, all > gets back to normal. What information do you need except > from a verbose boot log to track it down? (I can grab a > text from serial console, etc.) panic message and location, for starters. -- Nate From owner-cvs-src@FreeBSD.ORG Tue Mar 6 19:15:17 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AAD516A402; Tue, 6 Mar 2007 19:15:17 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 32C9F13C4A3; Tue, 6 Mar 2007 19:15:17 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26JFH7I099448; Tue, 6 Mar 2007 19:15:17 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26JFHOW099447; Tue, 6 Mar 2007 19:15:17 GMT (envelope-from jkim) Message-Id: <200703061915.l26JFHOW099447@repoman.freebsd.org> From: Jung-uk Kim Date: Tue, 6 Mar 2007 19:15:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 19:15:17 -0000 jkim 2007-03-06 19:15:16 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c Log: Pollute bge(4) with #if's and #ifdef's to make MFC easier. MFC after: 3 days Revision Changes Path 1.180 +77 -27 src/sys/dev/bge/if_bge.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 20:14:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE17516A400; Tue, 6 Mar 2007 20:14:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A83EE13C478; Tue, 6 Mar 2007 20:14:48 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l26KEm6h011120; Tue, 6 Mar 2007 20:14:48 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l26KEmX1011119; Tue, 6 Mar 2007 20:14:48 GMT (envelope-from jkim) Message-Id: <200703062014.l26KEmX1011119@repoman.freebsd.org> From: Jung-uk Kim Date: Tue, 6 Mar 2007 20:14:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 20:14:48 -0000 jkim 2007-03-06 20:14:48 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c Log: Fix style(9) and consistency. Revision Changes Path 1.181 +105 -87 src/sys/dev/bge/if_bge.c From owner-cvs-src@FreeBSD.ORG Tue Mar 6 20:45:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0510316A401; Tue, 6 Mar 2007 20:45:43 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id A891F13C478; Tue, 6 Mar 2007 20:45:42 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id C41A05FB0; Tue, 6 Mar 2007 23:45:41 +0300 (MSK) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id BAC755F9E; Tue, 6 Mar 2007 23:45:41 +0300 (MSK) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l26KgPst043689; Tue, 6 Mar 2007 23:42:25 +0300 (MSK) (envelope-from ru) Date: Tue, 6 Mar 2007 23:42:25 +0300 From: Ruslan Ermilov To: Jung-uk Kim Message-ID: <20070306204225.GC43608@rambler-co.ru> References: <200703061915.l26JFHOW099447@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Clx92ZfkiYIKRjnr" Content-Disposition: inline In-Reply-To: <200703061915.l26JFHOW099447@repoman.freebsd.org> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 20:45:43 -0000 --Clx92ZfkiYIKRjnr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 06, 2007 at 07:15:16PM +0000, Jung-uk Kim wrote: > jkim 2007-03-06 19:15:16 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/bge if_bge.c=20 > Log: > Pollute bge(4) with #if's and #ifdef's to make MFC easier. > =20 > MFC after: 3 days > =20 > Revision Changes Path > 1.180 +77 -27 src/sys/dev/bge/if_bge.c >=20 Do you plan for the mega-MFC for bge(4), by the way? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --Clx92ZfkiYIKRjnr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.2 (FreeBSD) iD8DBQFF7dIwqRfpzJluFF4RApN+AJ0UvLdm5AH8AFXs9rXi45E9lk0O1QCglPgO TmsX1tHOqbHg+EO2vYLX08M= =72Sw -----END PGP SIGNATURE----- --Clx92ZfkiYIKRjnr-- From owner-cvs-src@FreeBSD.ORG Tue Mar 6 20:46:25 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C06116A401; Tue, 6 Mar 2007 20:46:25 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id 2BB1D13C4A5; Tue, 6 Mar 2007 20:46:25 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 4AAA85CF3; Tue, 6 Mar 2007 23:46:24 +0300 (MSK) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 413EB5CD7; Tue, 6 Mar 2007 23:46:24 +0300 (MSK) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l26Kh74I043715; Tue, 6 Mar 2007 23:43:07 +0300 (MSK) (envelope-from ru) Date: Tue, 6 Mar 2007 23:43:07 +0300 From: Ruslan Ermilov To: Tim Kientzle Message-ID: <20070306204307.GD43608@rambler-co.ru> References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BI5RvnYi6R4T2M87" Content-Disposition: inline In-Reply-To: <45EDA7E2.4040300@freebsd.org> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 20:46:25 -0000 --BI5RvnYi6R4T2M87 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 06, 2007 at 09:41:54AM -0800, Tim Kientzle wrote: > Ruslan Ermilov wrote: > > Modified files: > > usr.sbin/pkg_install/lib url.c=20 > > Log: > > Invoke tar(1) with the -p option when installing a package > > from an URL (i.e., do it the same way as when installing > > from a file). This fixes the lossage of the setuid bits. > > It wasn't a problem before because GNU tar(1) implied the > > -p option for root, but BSD tar(1) doesn't do that. >=20 > Hmmm... This might actually be considered a bsdtar bug. > I'll look into it. >=20 That behavior of BSD tar(1) surprised me, to be honest. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --BI5RvnYi6R4T2M87 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.2 (FreeBSD) iD8DBQFF7dJbqRfpzJluFF4RArt2AJsEVNCd8xVOW3Fhs+psAfC0Shm9pQCfXbXi 2PtKr9TRsyk9qb626zKVds8= =Odo/ -----END PGP SIGNATURE----- --BI5RvnYi6R4T2M87-- From owner-cvs-src@FreeBSD.ORG Tue Mar 6 21:33:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DCFC516A404; Tue, 6 Mar 2007 21:33:45 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.freebsd.org (Postfix) with ESMTP id 98FAB13C474; Tue, 6 Mar 2007 21:33:45 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.6/8.13.6) with ESMTP id l26LXi83044764; Tue, 6 Mar 2007 16:33:44 -0500 (EST) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: Ruslan Ermilov Date: Tue, 6 Mar 2007 16:33:34 -0500 User-Agent: KMail/1.6.2 References: <200703061915.l26JFHOW099447@repoman.freebsd.org> <20070306204225.GC43608@rambler-co.ru> In-Reply-To: <20070306204225.GC43608@rambler-co.ru> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200703061633.42032.jkim@FreeBSD.org> X-Virus-Scanned: ClamAV 0.88.6/2752/Tue Mar 6 15:43:31 2007 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 06 Mar 2007 21:33:46 -0000 On Tuesday 06 March 2007 03:42 pm, Ruslan Ermilov wrote: > On Tue, Mar 06, 2007 at 07:15:16PM +0000, Jung-uk Kim wrote: > > jkim 2007-03-06 19:15:16 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/bge if_bge.c > > Log: > > Pollute bge(4) with #if's and #ifdef's to make MFC easier. > > > > MFC after: 3 days > > > > Revision Changes Path > > 1.180 +77 -27 src/sys/dev/bge/if_bge.c > > Do you plan for the mega-MFC for bge(4), by the way? Yes, before it gets too late, unless someone ojects with valid reason. Jung-uk Kim From owner-cvs-src@FreeBSD.ORG Tue Mar 6 23:12:30 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9630D16A400; Tue, 6 Mar 2007 23:12:30 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ext-gw.lemis.com (ext-gw.lemis.com [150.101.14.10]) by mx1.freebsd.org (Postfix) with ESMTP id 2FB2113C4A5; Tue, 6 Mar 2007 23:12:30 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ext-gw.lemis.com (Postfix) with ESMTP id B042F133BDB; Wed, 7 Mar 2007 09:42:28 +1030 (CST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id A37CA1A9CBD; Wed, 7 Mar 2007 09:42:28 +1030 (CST) Date: Wed, 7 Mar 2007 09:42:28 +1030 From: Greg 'groggy' Lehey To: Ruslan Ermilov Message-ID: <20070306231228.GC68567@wantadilla.lemis.com> References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hYooF8G/hrfVAmum" Content-Disposition: inline In-Reply-To: <20070306204307.GD43608@rambler-co.ru> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: cvs-src@freebsd.org, Tim Kientzle , src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Mar 2007 23:12:30 -0000 --hYooF8G/hrfVAmum Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tuesday, 6 March 2007 at 23:43:07 +0300, Ruslan Ermilov wrote: > On Tue, Mar 06, 2007 at 09:41:54AM -0800, Tim Kientzle wrote: >> Ruslan Ermilov wrote: >>> Modified files: >>> usr.sbin/pkg_install/lib url.c >>> Log: >>> Invoke tar(1) with the -p option when installing a package >>> from an URL (i.e., do it the same way as when installing >>> from a file). This fixes the lossage of the setuid bits. >>> It wasn't a problem before because GNU tar(1) implied the >>> -p option for root, but BSD tar(1) doesn't do that. >> >> Hmmm... This might actually be considered a bsdtar bug. >> I'll look into it. > > That behavior of BSD tar(1) surprised me, to be honest. I'm very much in favour of keeping the discrepancies (and surprises!) between gnutar and bsdtar to a minimum. Should we remove this one? Greg -- See complete headers for address and phone numbers. --hYooF8G/hrfVAmum Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFF7fVcIubykFB6QiMRAoAZAKCFp+gIEtsBBQhWkzMWnPfEFD3UWQCeJYPu /vrI0Nhg4A3djV+8ps6HWdE= =VoLw -----END PGP SIGNATURE----- --hYooF8G/hrfVAmum-- From owner-cvs-src@FreeBSD.ORG Wed Mar 7 00:39:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6975E16A400; Wed, 7 Mar 2007 00:39:14 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4360313C467; Wed, 7 Mar 2007 00:39:14 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l270dED6072407; Wed, 7 Mar 2007 00:39:14 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l270dEK6072406; Wed, 7 Mar 2007 00:39:14 GMT (envelope-from marcel) Message-Id: <200703070039.l270dEK6072406@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 7 Mar 2007 00:39: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/dev/zs z8530reg.h z8530var.h zs.c zs_macio.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 00:39:14 -0000 marcel 2007-03-07 00:39:14 UTC FreeBSD src repository Removed files: sys/dev/zs z8530reg.h z8530var.h zs.c zs_macio.c Log: Remove zs(4). Its functionality has been superseded by uart(4) for a while now; including on PowerPC. Revision Changes Path 1.5 +0 -451 src/sys/dev/zs/z8530reg.h (dead) 1.4 +0 -77 src/sys/dev/zs/z8530var.h (dead) 1.38 +0 -897 src/sys/dev/zs/zs.c (dead) 1.8 +0 -294 src/sys/dev/zs/zs_macio.c (dead) From owner-cvs-src@FreeBSD.ORG Wed Mar 7 04:12:53 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A45816A406; Wed, 7 Mar 2007 04:12:53 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 5B0F113C4A5; Wed, 7 Mar 2007 04:12:53 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l274Cq24065869; Tue, 6 Mar 2007 20:12:53 -0800 (PST) (envelope-from kientzle@freebsd.org) Message-ID: <45EE3BC4.8070309@freebsd.org> Date: Tue, 06 Mar 2007 20:12:52 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Greg 'groggy' Lehey" References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> In-Reply-To: <20070306231228.GC68567@wantadilla.lemis.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 04:12:53 -0000 >>>> ... GNU tar(1) implied the >>>> -p option for root, but BSD tar(1) doesn't do that. >>> >>>Hmmm... This might actually be considered a bsdtar bug. >>>I'll look into it. >> >>That behavior of BSD tar(1) surprised me, to be honest. It's a trivial fix; there's already a check for whether tar is being run by root. If so, it sets _EXTRACT_OWNER to restore the owner. I just need to fill in the flags associated with -p as well. One problem that I don't see documented in any GNU tar docs I can find: Is there a way to suppress this behavior for root in GNU tar? Tim Kientzle Index: bsdtar.c =================================================================== RCS file: /home/ncvs/src/usr.bin/tar/bsdtar.c,v retrieving revision 1.72 diff -u -r1.72 bsdtar.c --- bsdtar.c 9 Jan 2007 08:12:17 -0000 1.72 +++ bsdtar.c 7 Mar 2007 04:12:14 -0000 @@ -233,8 +233,13 @@ bsdtar->extract_flags = ARCHIVE_EXTRACT_TIME; /* Default for root user: preserve ownership on extract. */ - if (bsdtar->user_uid == 0) + if (bsdtar->user_uid == 0) { bsdtar->extract_flags |= ARCHIVE_EXTRACT_OWNER; + bsdtar->extract_flags |= ARCHIVE_EXTRACT_PERM; + bsdtar->extract_flags |= ARCHIVE_EXTRACT_ACL; + bsdtar->extract_flags |= ARCHIVE_EXTRACT_XATTR; + bsdtar->extract_flags |= ARCHIVE_EXTRACT_FFLAGS; + } /* Rewrite traditional-style tar arguments, if used. */ argv = rewrite_argv(bsdtar, &argc, argv, tar_opts); From owner-cvs-src@FreeBSD.ORG Wed Mar 7 04:31:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2687116A40B; Wed, 7 Mar 2007 04:31:50 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0174213C4C7; Wed, 7 Mar 2007 04:31:50 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l274Vn2J020711; Wed, 7 Mar 2007 04:31:49 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l274VnHj020710; Wed, 7 Mar 2007 04:31:49 GMT (envelope-from sam) Message-Id: <200703070431.l274VnHj020710@repoman.freebsd.org> From: Sam Leffler Date: Wed, 7 Mar 2007 04:31:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 ieee80211_node.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 04:31:50 -0000 sam 2007-03-07 04:31:49 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_node.c Log: when starting up an ibss master use a random address for the bssid; this is required for wifi alliance compliance Obtained from: Atheros MFC after: 2 weeks Revision Changes Path 1.79 +5 -2 src/sys/net80211/ieee80211_node.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 04:35:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 65E5516A405; Wed, 7 Mar 2007 04:35:08 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4057D13C441; Wed, 7 Mar 2007 04:35:08 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l274Z8is022524; Wed, 7 Mar 2007 04:35:08 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l274Z8Mg022523; Wed, 7 Mar 2007 04:35:08 GMT (envelope-from sam) Message-Id: <200703070435.l274Z8Mg022523@repoman.freebsd.org> From: Sam Leffler Date: Wed, 7 Mar 2007 04:35:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 _ieee80211.h ieee80211_proto.c ieee80211_proto.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 04:35:08 -0000 sam 2007-03-07 04:35:08 UTC FreeBSD src repository Modified files: sys/net80211 _ieee80211.h ieee80211_proto.c ieee80211_proto.h Log: add ieee80211_opmode_name array for mapping the opmode to a string for printing diagnostic msgs MFC after: 2 weeks Revision Changes Path 1.8 +1 -0 src/sys/net80211/_ieee80211.h 1.35 +10 -0 src/sys/net80211/ieee80211_proto.c 1.21 +1 -0 src/sys/net80211/ieee80211_proto.h From owner-cvs-src@FreeBSD.ORG Wed Mar 7 04:42:23 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3EEB16A403; Wed, 7 Mar 2007 04:42:23 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A706B13C467; Wed, 7 Mar 2007 04:42:23 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l274gNqC024056; Wed, 7 Mar 2007 04:42:23 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l274gNEr024054; Wed, 7 Mar 2007 04:42:23 GMT (envelope-from sam) Message-Id: <200703070442.l274gNEr024054@repoman.freebsd.org> From: Sam Leffler Date: Wed, 7 Mar 2007 04:42:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net80211 ieee80211_freebsd.h ieee80211_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, 07 Mar 2007 04:42:23 -0000 sam 2007-03-07 04:42:23 UTC FreeBSD src repository Modified files: sys/net80211 ieee80211_freebsd.h ieee80211_input.c Log: When dispatching frames saved on the power save queue to a station exiting power save mode prepend them to the driver's send q instead of appending them. This insures the packets are not misordered wrt any packets already q'd for the station. This corrects a problem noticed when using a VoIP phone talking to an ath card in ap mode; the misordered packets caused noise. Submitted by: "J.R. Oldroyd" MFC after: 2 weeks Revision Changes Path 1.11 +15 -0 src/sys/net80211/ieee80211_freebsd.h 1.100 +23 -13 src/sys/net80211/ieee80211_input.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 05:28:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1007116A401; Wed, 7 Mar 2007 05:28:43 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DDFCE13C441; Wed, 7 Mar 2007 05:28:42 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l275SggW040290; Wed, 7 Mar 2007 05:28:42 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l275Sg2h040289; Wed, 7 Mar 2007 05:28:42 GMT (envelope-from kevlo) Message-Id: <200703070528.l275Sg2h040289@repoman.freebsd.org> From: Kevin Lo Date: Wed, 7 Mar 2007 05:28:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci ds1.c emu10k1.c emu10kx-pcm.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 05:28:43 -0000 kevlo 2007-03-07 05:28:42 UTC FreeBSD src repository Modified files: sys/dev/sound/pci ds1.c emu10k1.c emu10kx-pcm.c Log: Use M_NOWAIT instead of M_WAITOK to cause malloc() to return NULL. Revision Changes Path 1.48 +1 -1 src/sys/dev/sound/pci/ds1.c 1.64 +1 -1 src/sys/dev/sound/pci/emu10k1.c 1.6 +1 -1 src/sys/dev/sound/pci/emu10kx-pcm.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 06:15:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3F3B16A401; Wed, 7 Mar 2007 06:15:13 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2-3.pacific.net.au [61.8.2.226]) by mx1.freebsd.org (Postfix) with ESMTP id 68D6313C4B2; Wed, 7 Mar 2007 06:15:13 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout2.pacific.net.au (Postfix) with ESMTP id 2B2D8119091; Wed, 7 Mar 2007 17:15:08 +1100 (EST) Received: from katana.zip.com.au (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (Postfix) with ESMTP id AF3A08C07; Wed, 7 Mar 2007 17:15:10 +1100 (EST) Date: Wed, 7 Mar 2007 17:15:08 +1100 (EST) From: Bruce Evans X-X-Sender: bde@delplex.bde.org To: Tim Kientzle In-Reply-To: <45EE3BC4.8070309@freebsd.org> Message-ID: <20070307171432.B28541@delplex.bde.org> References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Greg 'groggy' Lehey , cvs-src@FreeBSD.org, src-committers@FreeBSD.org, Ruslan Ermilov , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 06:15:13 -0000 On Tue, 6 Mar 2007, Tim Kientzle wrote: >>>>> ... GNU tar(1) implied the >>>>> -p option for root, but BSD tar(1) doesn't do that. >>>> >>>> Hmmm... This might actually be considered a bsdtar bug. >>>> I'll look into it. >>> >>> That behavior of BSD tar(1) surprised me, to be honest. > > It's a trivial fix; there's already a check for whether > tar is being run by root. If so, it sets _EXTRACT_OWNER > to restore the owner. I just need to fill in the flags > associated with -p as well. > > One problem that I don't see documented in any GNU tar > docs I can find: Is there a way to suppress this behavior > for root in GNU tar? >From tar.info: %%% `--no-same-owner' Do not attempt to restore ownership when extracting. This is the default behavior for ordinary users, so this option has an effect only for the superuser. %%% Bruce From owner-cvs-src@FreeBSD.ORG Wed Mar 7 07:45:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26B1616A402; Wed, 7 Mar 2007 07:45:39 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0097F13C4A7; Wed, 7 Mar 2007 07:45:39 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l277jc7m064197; Wed, 7 Mar 2007 07:45:38 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l277jcC2064196; Wed, 7 Mar 2007 07:45:38 GMT (envelope-from yar) Message-Id: <200703070745.l277jcC2064196@repoman.freebsd.org> From: Yar Tikhiy Date: Wed, 7 Mar 2007 07:45:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/mdmfs mdmfs.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 07:45:39 -0000 yar 2007-03-07 07:45:38 UTC FreeBSD src repository Modified files: sbin/mdmfs mdmfs.c Log: Don't leave a NULL value in mdsuffix when a particular md unit w/o suffix is specified. It had better be an empty string as it will be passed to a printf-like function that builds the command line to run. PR: kern/109863 MFC after: 1 week Revision Changes Path 1.31 +1 -2 src/sbin/mdmfs/mdmfs.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 11:06:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4BAD316A403; Wed, 7 Mar 2007 11:06:47 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2570613C441; Wed, 7 Mar 2007 11:06:47 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27B6ldH011255; Wed, 7 Mar 2007 11:06:47 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27B6kRR011254; Wed, 7 Mar 2007 11:06:47 GMT (envelope-from bms) Message-Id: <200703071106.l27B6kRR011254@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 7 Mar 2007 11:06:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys shutdown.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: Wed, 07 Mar 2007 11:06:47 -0000 bms 2007-03-07 11:06:46 UTC FreeBSD src repository Modified files: lib/libc/sys shutdown.2 Log: use 2-clause BSD license as per hoskins strike-off july 22 1999. use wording of FreeBSD License. Revision Changes Path 1.21 +6 -4 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Wed Mar 7 11:09:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E5D3A16A400; Wed, 7 Mar 2007 11:09:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BFF5513C481; Wed, 7 Mar 2007 11:09:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27B9qhH011409; Wed, 7 Mar 2007 11:09:52 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27B9qjo011408; Wed, 7 Mar 2007 11:09:52 GMT (envelope-from bms) Message-Id: <200703071109.l27B9qjo011408@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 7 Mar 2007 11:09: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/lib/libc/sys shutdown.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: Wed, 07 Mar 2007 11:09:53 -0000 bms 2007-03-07 11:09:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/sys shutdown.2 Log: MFC rev 1.21: Document protocol specific actions and return values. Use 2-clause FreeBSD license. Revision Changes Path 1.15.12.1 +104 -20 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Wed Mar 7 11:21:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C2BB16A401; Wed, 7 Mar 2007 11:21:10 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id 4AC6D13C428; Wed, 7 Mar 2007 11:21:10 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 4FBA15EC7; Wed, 7 Mar 2007 14:21:09 +0300 (MSK) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 2D6CB5E3A; Wed, 7 Mar 2007 14:21:09 +0300 (MSK) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l27BHjXd014456; Wed, 7 Mar 2007 14:17:45 +0300 (MSK) (envelope-from ru) Date: Wed, 7 Mar 2007 14:17:45 +0300 From: Ruslan Ermilov To: Bruce Evans Message-ID: <20070307111745.GB14172@rambler-co.ru> References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> <20070307171432.B28541@delplex.bde.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PmA2V3Z32TCmWXqI" Content-Disposition: inline In-Reply-To: <20070307171432.B28541@delplex.bde.org> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: Greg 'groggy' Lehey , cvs-src@FreeBSD.org, Tim Kientzle , cvs-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 11:21:10 -0000 --PmA2V3Z32TCmWXqI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 07, 2007 at 05:15:08PM +1100, Bruce Evans wrote: > On Tue, 6 Mar 2007, Tim Kientzle wrote: >=20 > >>>>>... GNU tar(1) implied the > >>>>>-p option for root, but BSD tar(1) doesn't do that. > >>>> > >>>>Hmmm... This might actually be considered a bsdtar bug. > >>>>I'll look into it. > >>> > >>>That behavior of BSD tar(1) surprised me, to be honest. > > > >It's a trivial fix; there's already a check for whether > >tar is being run by root. If so, it sets _EXTRACT_OWNER > >to restore the owner. I just need to fill in the flags > >associated with -p as well. > > > >One problem that I don't see documented in any GNU tar > >docs I can find: Is there a way to suppress this behavior > >for root in GNU tar? >=20 > >From tar.info: >=20 > %%% > `--no-same-owner' > Do not attempt to restore ownership when extracting. This is the > default behavior for ordinary users, so this option has an effect > only for the superuser. > %%% >=20 You probably wanted this instead: : `--preserve-permissions' : `--same-permissions' : `-p' : When `tar' is extracting an archive, it normally subtracts the : users' umask from the permissions specified in the archive and : uses that number as the permissions to create the destination : file. Specifying this option instructs `tar' that it should use : the permissions directly from the archive. *Note Writing::. :=20 : `--no-same-permissions' : When extracting an archive, subtract the user's umask from files : from the permissions specified in the archive. This is the : default behavior for ordinary users; this option has an effect : only for the superuser. It doesn't say it explicitly that -p is the default option for root, nowehre, but you can guess it from reading the last sentence. ;) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --PmA2V3Z32TCmWXqI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.2 (FreeBSD) iD8DBQFF7p9ZqRfpzJluFF4RAgoQAJ9o6jBD8z48YZEq+CL1WOGooFudywCffK7Z h2dF0JBNfGiq1fYWBuFExBI= =voF6 -----END PGP SIGNATURE----- --PmA2V3Z32TCmWXqI-- From owner-cvs-src@FreeBSD.ORG Wed Mar 7 11:42:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3EF3016A401; Wed, 7 Mar 2007 11:42:15 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 18DE713C471; Wed, 7 Mar 2007 11:42:15 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27BgEcl016811; Wed, 7 Mar 2007 11:42:14 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27BgE7F016810; Wed, 7 Mar 2007 11:42:14 GMT (envelope-from piso) Message-Id: <200703071142.l27BgE7F016810@repoman.freebsd.org> From: Paolo Pisati Date: Wed, 7 Mar 2007 11:42: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/powerpc/powerpc nexus.c pic_if.m X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 11:42:15 -0000 piso 2007-03-07 11:42:14 UTC FreeBSD src repository Modified files: sys/powerpc/powerpc nexus.c pic_if.m Log: Update openpic to support the new bus_setup_intr() syntax. Reviewed by: marcel Revision Changes Path 1.13 +4 -4 src/sys/powerpc/powerpc/nexus.c 1.3 +1 -0 src/sys/powerpc/powerpc/pic_if.m From owner-cvs-src@FreeBSD.ORG Wed Mar 7 12:51:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9816316A405; Wed, 7 Mar 2007 12:51:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 725C113C461; Wed, 7 Mar 2007 12:51:52 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27CpqCG037001; Wed, 7 Mar 2007 12:51:52 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27CpqQX037000; Wed, 7 Mar 2007 12:51:52 GMT (envelope-from bms) Message-Id: <200703071251.l27CpqQX037000@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 7 Mar 2007 12:51:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/net ethernet.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 12:51:52 -0000 bms 2007-03-07 12:51:52 UTC FreeBSD src repository Modified files: sys/net ethernet.h Log: Add Ethertype for 802.3ad LACP. Revision Changes Path 1.30 +1 -0 src/sys/net/ethernet.h From owner-cvs-src@FreeBSD.ORG Wed Mar 7 13:21:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF7BD16A400; Wed, 7 Mar 2007 13:21:55 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8827313C474; Wed, 7 Mar 2007 13:21:55 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27DLtKU042900; Wed, 7 Mar 2007 13:21:55 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27DLtcP042899; Wed, 7 Mar 2007 13:21:55 GMT (envelope-from kib) Message-Id: <200703071321.l27DLtcP042899@repoman.freebsd.org> From: Konstantin Belousov Date: Wed, 7 Mar 2007 13:21:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 13:21:55 -0000 kib 2007-03-07 13:21:55 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday to the freebsd calendar Revision Changes Path 1.192 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 13:21:57 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6F9716A4EC; Wed, 7 Mar 2007 13:21:56 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.freebsd.org (Postfix) with ESMTP id 29BAD13C4A3; Wed, 7 Mar 2007 13:21:56 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id BFF7A5F3A; Wed, 7 Mar 2007 16:21:54 +0300 (MSK) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 9E5A25E74; Wed, 7 Mar 2007 16:21:54 +0300 (MSK) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.8/8.13.8) id l27DLpU7006376; Wed, 7 Mar 2007 16:21:51 +0300 (MSK) (envelope-from ru) Date: Wed, 7 Mar 2007 16:21:51 +0300 From: Ruslan Ermilov To: Nate Lawson Message-ID: <20070307132151.GA1730@rambler-co.ru> References: <200702270014.l1R0EKrp034231@repoman.freebsd.org> <20070306165458.GA24644@rambler-co.ru> <45EDAD96.9060202@root.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline In-Reply-To: <45EDAD96.9060202@root.org> User-Agent: Mutt/1.5.14 (2007-02-12) X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, Nate Lawson , src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_ec.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 13:21:57 -0000 --mojUlQ0s9EVzWg2t Content-Type: multipart/mixed; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 06, 2007 at 10:06:14AM -0800, Nate Lawson wrote: > panic message and location, for starters. >=20 Attached. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="boot.log" Content-Transfer-Encoding: quoted-printable Consoles: serial port =20 BIOS drive A: is disk0 BIOS drive C: is disk1 BIOS 639kB/326464kB available memory FreeBSD/i386 bootstrap loader, Revision 1.1 (root@lurker.runet, Sat Oct 21 14:33:38 MSD 2006) Loading /boot/defaults/loader.conf=20 /boot/kernel/kernel text=3D0x289a08 data=3D0x308c0+0x71b20 syms=3D[0x4+0x37= 440+0x4+0x46005] /boot/kernel/if_ath.ko text=3D0xe448 data=3D0x4cc+0x14 syms=3D[0x4+0x1630+0= x4+0x1948] loading required module 'ath_hal' /boot/kernel/ath_hal.ko text=3D0x25eb8 data=3D0x5550+0x1cc syms=3D[0x4+0x1d= c0+0x4+0x1752] loading required module 'wlan' /boot/kernel/wlan.ko text=3D0x1e938 data=3D0x31c+0xac syms=3D[0x4+0x1a90+0x= 4+0x1b8a] loading required module 'ath_rate' /boot/kernel/ath_rate.ko text=3D0x2b2c data=3D0x108 syms=3D[0x4+0x4c0+0x4+0= x4c6] /boot/kernel/if_rl.ko text=3D0x4fa8 data=3D0x31c+0x4 syms=3D[0x4+0xa10+0x4+= 0xa45] loading required module 'miibus' /boot/kernel/miibus.ko text=3D0x1851c data=3D0xffc+0x60 syms=3D[0x4+0x1bc0+= 0x4+0x23d1] /boot/kernel/snd_csa.ko text=3D0x48c4 data=3D0x17c8+0x4 syms=3D[0x4+0xdd0+0= x4+0xf50] loading required module 'sound' /boot/kernel/sound.ko text=3D0x3132c data=3D0x5948+0x11a4 syms=3D[0x4+0x4a7= 0+0x4+0x5971] /boot/kernel/wlan_wep.ko text=3D0x17c0 data=3D0xe0+0x4 syms=3D[0x4+0x400+0x= 4+0x35e] /boot/kernel/wlan_tkip.ko text=3D0x2c34 data=3D0xe0+0x4 syms=3D[0x4+0x490+0= x4+0x3ff] /boot/kernel/acpi_ibm.ko text=3D0x316c data=3D0x240+0x38 syms=3D[0x4+0x630+= 0x4+0x69b] loading required module 'acpi' /boot/kernel/acpi.ko text=3D0x4f790 data=3D0x2680+0xfb0 syms=3D[0x4+0x7e70+= 0x4+0xacd6] - Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds...=20 Type '?' for a list of commands, 'help' for more detailed help. OK boot -s GDB: no debug ports present KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2007 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.0-CURRENT #25: Mon Mar 5 02:25:40 MSK 2007 root@lurker.runet:/usr/obj/usr/src/sys/LURKER WARNING: WITNESS option enabled, expect reduced performance. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel Pentium III (498.27-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0x681 Stepping =3D 1 Features=3D0x387f9ff real memory =3D 335347712 (319 MB) avail memory =3D 318730240 (303 MB) ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413) ACPI: overriding DSDT/SSDT with custom table ACPI-0390: *** Info: Table [DSDT] replaced by host OS acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xef08-0xef0b on acpi0 acpi_ec0: port 0x62,0x66 on acpi0 cpu0: on acpi0 acpi_throttle0: on cpu0 acpi_lid0: on acpi0 acpi_button0: on acpi0 acpi_ibm0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: on hostb0 pcib1: at device 1.0 on pci0 pci1: on pcib1 vgapci0: mem 0xe0000000-0xe1ffffff,0x70000000-0x70= 3fffff,0x70400000-0x704fffff irq 10 at device 0.0 on pci1 cbb0: mem 0x50103000-0x50103fff irq 10 at devic= e 2.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb0: [ITHREAD] cbb1: mem 0x50102000-0x50102fff irq 11 at devic= e 2.1 on pci0 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 cbb1: [ITHREAD] pci0: at device 3.0 (no driver attached) csa0: mem 0x50100000-0x50100fff,0x5000= 0000-0x500fffff irq 10 at device 6.0 on pci0 csa: card is Thinkpad 600X/A20/T20 csa0: [GIANT-LOCKED] csa0: [ITHREAD] pcm0: on csa0 pcm0: pcm0: [GIANT-LOCKED] pcm0: [ITHREAD] isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177= ,0x376,0xfcf0-0xfcff at device 7.1 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] uhci0: port 0x4000-0x401f irq 11 = at device 7.2 on pci0 uhci0: [GIANT-LOCKED] uhci0: [ITHREAD] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered pci0: at device 7.3 (no driver attached) acpi_tz0: on acpi0 acpi_tz1: on acpi0 acpi_tz2: on acpi0 acpi_tz3: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on= acpi0 fdc0: [FILTER] sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acp= i0 sio0: type 16550A, console sio0: [FILTER] sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model Generic PS/2 mouse, device ID 0 battery0: on acpi0 acpi_acad0: on acpi0 sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcbfff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x100> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled Timecounter "TSC" frequency 498273982 Hz quality 800 Timecounters tick every 1.000 msec ath0: mem 0xe0000-0xeffff at device 0.0 on cardbus0 ath0: [ITHREAD] ath0: using obsoleted if_watchdog interface ath0: Ethernet address: 00:0f:b5:24:df:20 ath0: mac 5.9 phy 4.3 radio 4.6 ACPI fatal signal, type 0x1 code 0x80000003 argument 0x8081KDB: enter: Ac= piOsSignal [thread pid 29 tid 100036 ] Stopped at kdb_enter+0x30: leave db> bt Tracing pid 29 tid 100036 td 0xc214aa20 kdb_enter(c08f082a,1,80000003,8081,ce87fa84,...) at kdb_enter+0x30 AcpiOsSignal(0,c22461d0,c08efa93,bd,c2195400,...) at AcpiOsSignal+0x43 AcpiExOpcode_3A_0T_0R(c2195400,c21955c4,c2195400,ce87fab4,c2195414,...) at = AcpiExOpcode_3A_0T_0R+0xc0 AcpiDsExecEndOp(c2195400,ce87fae0,c2195414,c219540c,c2075108,...) at AcpiDs= ExecEndOp+0x182 AcpiPsParseLoop(c2195400,c214b200,c209ddc0,c08b7522,0,...) at AcpiPsParseLo= op+0x4c5 AcpiPsParseAml(c2196000,3,c2089bc0,c207aa9a,3f,...) at AcpiPsParseAml+0x160 AcpiPsExecutePass(6,c2084900,0,0,ce87fbe8,...) at AcpiPsExecutePass+0x99 AcpiPsExecuteMethod(ce87fbe8,c08cec3f,c2070180,0,ce87fbe8,...) at AcpiPsExe= cuteMethod+0x76 AcpiNsEvaluateByHandle(ce87fbe8,c2197610,8,e,1,...) at AcpiNsEvaluateByHand= le+0x110 AcpiNsEvaluateRelative(c08ef378,ce87fbe8,91,c214aa20,ce87fbf0,...) at AcpiN= sEvaluateRelative+0xd8 AcpiEvaluateObject(c2089c80,c08ef378,0,ce87fc2c,10,...) at AcpiEvaluateObje= ct+0x78 acpi_GetInteger(c2089c80,c08ef378,ce87fc64,0,0,...) at acpi_GetInteger+0x45 acpi_tz_get_temperature(c071b3f8,ce87fca0,c051cd3a,0,c08f5824,...) at acpi_= tz_get_temperature+0x2c acpi_tz_monitor(c08f5824,0,c08ef45e,37e,ce87fcfc,...) at acpi_tz_monitor+0x= 10 acpi_tz_thread(0,ce87fd38,c066451b,32f,c214d240,...) at acpi_tz_thread+0x19c fork_exit(c08db040,0,ce87fd38) at fork_exit+0xd1 fork_trampoline() at fork_trampoline+0x8 --- trap 0, eip =3D 0, esp =3D 0xce87fd70, ebp =3D 0 --- db>=20 --RnlQjJ0d97Da+TV1-- --mojUlQ0s9EVzWg2t Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.2 (FreeBSD) iD8DBQFF7rxvqRfpzJluFF4RAlL3AJ9SgHpP5s+bUIaaEaPiv+63ighptwCfcd96 9jCgIMRV0cdL594xVSQPPkI= =RNVS -----END PGP SIGNATURE----- --mojUlQ0s9EVzWg2t-- From owner-cvs-src@FreeBSD.ORG Wed Mar 7 13:34:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F48616A404; Wed, 7 Mar 2007 13:34:50 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 19A1513C46B; Wed, 7 Mar 2007 13:34:50 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27DYnub045067; Wed, 7 Mar 2007 13:34:49 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27DYnM3045062; Wed, 7 Mar 2007 13:34:49 GMT (envelope-from bms) Message-Id: <200703071334.l27DYnM3045062@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 7 Mar 2007 13:34:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys shutdown.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: Wed, 07 Mar 2007 13:34:50 -0000 bms 2007-03-07 13:34:49 UTC FreeBSD src repository Modified files: lib/libc/sys shutdown.2 Log: Fix license. Clause 4 is still required (UCB materiel). Submitted by: rwatson Pointy hat to: bms Revision Changes Path 1.22 +5 -6 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Wed Mar 7 13:38:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63CB816A402; Wed, 7 Mar 2007 13:38:12 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3DE4213C47E; Wed, 7 Mar 2007 13:38:12 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27DcC6F045283; Wed, 7 Mar 2007 13:38:12 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27DcC6v045282; Wed, 7 Mar 2007 13:38:12 GMT (envelope-from bms) Message-Id: <200703071338.l27DcC6v045282@repoman.freebsd.org> From: Bruce M Simpson Date: Wed, 7 Mar 2007 13:38:12 +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 shutdown.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: Wed, 07 Mar 2007 13:38:12 -0000 bms 2007-03-07 13:38:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) lib/libc/sys shutdown.2 Log: Fix license. Clause 4 is still required (UCB materiel). Submitted by: rwatson Pointy hat to: bms Revision Changes Path 1.15.12.2 +5 -6 src/lib/libc/sys/shutdown.2 From owner-cvs-src@FreeBSD.ORG Wed Mar 7 13:45:18 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AAC6C16A405; Wed, 7 Mar 2007 13:45:18 +0000 (UTC) (envelope-from rees@citi.umich.edu) Received: from citi.umich.edu (citi.umich.edu [141.211.133.111]) by mx1.freebsd.org (Postfix) with ESMTP id 82B1E13C474; Wed, 7 Mar 2007 13:45:18 +0000 (UTC) (envelope-from rees@citi.umich.edu) Received: from citi.umich.edu (dsl093-001-248.det1.dsl.speakeasy.net [66.93.1.248]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by citi.umich.edu (Postfix) with ESMTP id A1D0F38F58; Wed, 7 Mar 2007 08:22:49 -0500 (EST) Date: Wed, 7 Mar 2007 08:22:48 -0500 From: Jim Rees To: Tim Kientzle Message-ID: <20070307132248.GA9276@citi.umich.edu> References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45EE3BC4.8070309@freebsd.org> Cc: Greg 'groggy' Lehey , cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 13:45:18 -0000 I'm not convinced this fix is correct. I don't think tar ever did this before gnu came along, and I would find it surprising to have this option turned on just because I'm root. And if you enable it automatically for root, now you need another option to turn it off. From owner-cvs-src@FreeBSD.ORG Wed Mar 7 13:45:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A0B916A402; Wed, 7 Mar 2007 13:45:40 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D842013C474; Wed, 7 Mar 2007 13:45:39 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27DjdAu046751; Wed, 7 Mar 2007 13:45:39 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27DjdwB046750; Wed, 7 Mar 2007 13:45:39 GMT (envelope-from rafan) Message-Id: <200703071345.l27DjdwB046750@repoman.freebsd.org> From: Rong-En Fan Date: Wed, 7 Mar 2007 13:45:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 13:45:40 -0000 rafan 2007-03-07 13:45:39 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself to the FreeBSD calendar Revision Changes Path 1.193 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 14:48:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99D8C16A400; Wed, 7 Mar 2007 14:48:42 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 73E2213C478; Wed, 7 Mar 2007 14:48:42 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27Emgtv057742; Wed, 7 Mar 2007 14:48:42 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27EmgT2057741; Wed, 7 Mar 2007 14:48:42 GMT (envelope-from ariff) Message-Id: <200703071448.l27EmgT2057741@repoman.freebsd.org> From: Ariff Abdullah Date: Wed, 7 Mar 2007 14:48:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 14:48:42 -0000 ariff 2007-03-07 14:48:42 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birth date/location to the FreeBSD calendar. Revision Changes Path 1.194 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 15:08:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1760C16A402; Wed, 7 Mar 2007 15:08:52 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E5CF213C471; Wed, 7 Mar 2007 15:08:51 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27F8p2l061915; Wed, 7 Mar 2007 15:08:51 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27F8pr6061914; Wed, 7 Mar 2007 15:08:51 GMT (envelope-from piso) Message-Id: <200703071508.l27F8pr6061914@repoman.freebsd.org> From: Paolo Pisati Date: Wed, 7 Mar 2007 15:08:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 15:08:52 -0000 piso 2007-03-07 15:08:51 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my bithdate to the FreeBSD calendar. Revision Changes Path 1.195 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 16:02:36 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 974FF16A418; Wed, 7 Mar 2007 16:02:36 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 944C713C4DE; Wed, 7 Mar 2007 16:02:33 +0000 (UTC) (envelope-from piso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27G2W2I070936; Wed, 7 Mar 2007 16:02:32 GMT (envelope-from piso@repoman.freebsd.org) Received: (from piso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27G2Wh1070935; Wed, 7 Mar 2007 16:02:32 GMT (envelope-from piso) Message-Id: <200703071602.l27G2Wh1070935@repoman.freebsd.org> From: Paolo Pisati Date: Wed, 7 Mar 2007 16:02: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/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 16:02:36 -0000 piso 2007-03-07 16:02:32 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Correctly sort my entry to FreeBSD calendar first by date, then by year. Pointed out by: ru Revision Changes Path 1.196 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 16:06:49 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 851B616A401; Wed, 7 Mar 2007 16:06:49 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5F03613C49D; Wed, 7 Mar 2007 16:06:49 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27G6nlo072618; Wed, 7 Mar 2007 16:06:49 GMT (envelope-from db@repoman.freebsd.org) Received: (from db@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27G6nA7072617; Wed, 7 Mar 2007 16:06:49 GMT (envelope-from db) Message-Id: <200703071606.l27G6nA7072617@repoman.freebsd.org> From: Diane Bruce Date: Wed, 7 Mar 2007 16:06:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 16:06:49 -0000 db 2007-03-07 16:06:49 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: - Add myself to calendar.freebsd Encouraged by: rwatson, ehaupt Approved by: ehaupt (mentor) Revision Changes Path 1.197 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 16:31:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D43016A405; Wed, 7 Mar 2007 16:31:48 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2A12D13C4B8; Wed, 7 Mar 2007 16:31:48 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27GVl9p076771; Wed, 7 Mar 2007 16:31:47 GMT (envelope-from syrinx@repoman.freebsd.org) Received: (from syrinx@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27GVlRP076770; Wed, 7 Mar 2007 16:31:47 GMT (envelope-from syrinx) Message-Id: <200703071631.l27GVlRP076770@repoman.freebsd.org> From: Shteryana Shopova Date: Wed, 7 Mar 2007 16:31:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/contrib/bsnmp/gensnmpdef gensnmpdef.1 gensnmpdef.c src/contrib/bsnmp/gensnmptree gensnmptree.1 gensnmptree.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 16:31:48 -0000 syrinx 2007-03-07 16:31:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) contrib/bsnmp/gensnmpdef gensnmpdef.1 gensnmpdef.c contrib/bsnmp/gensnmptree gensnmptree.1 gensnmptree.c Log: MFC: src/contrib/bsnmp/gensnmptree/gensnmptree.1, Revision 1.1.1.7 src/contrib/bsnmp/gensnmptree/gensnmptree.c, Revision 1.1.1.11 src/contrib/bsnmp/gensnmpdef/gensnmpdef.1, Revision 1.1.1.5 src/contrib/bsnmp/gensnmpdef/gensnmpdef.c, Revision 1.1.1.3 Vendor patch: add support for the BITS construct and enumerations in both gensnmpdef and gensnmptree. Add include and typedef directives to gensnmptree. Approved by: bz (mentor) OKed by: harti Revision Changes Path 1.1.1.3.2.2 +23 -8 src/contrib/bsnmp/gensnmpdef/gensnmpdef.1 1.1.1.2.8.1 +163 -9 src/contrib/bsnmp/gensnmpdef/gensnmpdef.c 1.1.1.4.2.3 +76 -27 src/contrib/bsnmp/gensnmptree/gensnmptree.1 1.1.1.7.2.3 +649 -70 src/contrib/bsnmp/gensnmptree/gensnmptree.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 16:59:17 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 493A416A404; Wed, 7 Mar 2007 16:59:17 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 1790A13C467; Wed, 7 Mar 2007 16:59:17 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l27GxG24068322; Wed, 7 Mar 2007 08:59:16 -0800 (PST) (envelope-from kientzle@freebsd.org) Message-ID: <45EEEF64.1010006@freebsd.org> Date: Wed, 07 Mar 2007 08:59:16 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jim Rees References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> <20070307132248.GA9276@citi.umich.edu> In-Reply-To: <20070307132248.GA9276@citi.umich.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Greg 'groggy' Lehey , cvs-src@freebsd.org, src-committers@freebsd.org, Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 16:59:17 -0000 Jim Rees wrote: > I'm not convinced this fix is correct. I don't think tar ever did this > before gnu came along, You're dating yourself here, Jim. GNU tar is over 20 years old. ;-) I also thought gnu tar shipped with FreeBSD 1.0 in 1993, though I might be wrong about that. >... and I would find it surprising to have this option > turned on just because I'm root. And if you enable it automatically for > root, now you need another option to turn it off. Sad but true. The discussion in the Single Unix Standard rationale about the design of the "-p" option for pax should be required reading for anyone interested in the design of archivers. Unfortunately, an awful lot of build scripts for various ports rely heavily on arcane details of gnu tar behavior. A lot of stuff would break if bsdtar didn't at least make an effort to follow GNU tar command-line conventions. Tim From owner-cvs-src@FreeBSD.ORG Wed Mar 7 17:01:14 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97C0A16A513; Wed, 7 Mar 2007 17:01:14 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 6ACB913C4A6; Wed, 7 Mar 2007 17:01:14 +0000 (UTC) (envelope-from kientzle@freebsd.org) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l27H1D24068349; Wed, 7 Mar 2007 09:01:13 -0800 (PST) (envelope-from kientzle@freebsd.org) Message-ID: <45EEEFD9.8060407@freebsd.org> Date: Wed, 07 Mar 2007 09:01:13 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> <20070307171432.B28541@delplex.bde.org> <20070307111745.GB14172@rambler-co.ru> In-Reply-To: <20070307111745.GB14172@rambler-co.ru> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Greg 'groggy' Lehey , cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, Bruce Evans Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 17:01:14 -0000 >>>>>>>... GNU tar(1) implied the >>>>>>>-p option for root, but BSD tar(1) doesn't do that. >>> >>>One problem that I don't see documented in any GNU tar >>>docs I can find: Is there a way to suppress this behavior >>>for root in GNU tar? >> >>>From tar.info: >> >>`--no-same-owner' > > You probably wanted this instead: > > : `--preserve-permissions' > : `--same-permissions' > : `-p' > : > : `--no-same-permissions' That's what I was looking for. Thanks, everyone! I'll get this into -CURRENT in the next few days. Tim Kientzle From owner-cvs-src@FreeBSD.ORG Wed Mar 7 18:45:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D75A116A400; Wed, 7 Mar 2007 18:45:15 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AFFF213C441; Wed, 7 Mar 2007 18:45:15 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27IjFxT016636; Wed, 7 Mar 2007 18:45:15 GMT (envelope-from syrinx@repoman.freebsd.org) Received: (from syrinx@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27IjFsS016635; Wed, 7 Mar 2007 18:45:15 GMT (envelope-from syrinx) Message-Id: <200703071845.l27IjFsS016635@repoman.freebsd.org> From: Shteryana Shopova Date: Wed, 7 Mar 2007 18:45:15 +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 Makefile.inc1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 18:45:15 -0000 syrinx 2007-03-07 18:45:15 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) . Makefile.inc1 Log: To make sure build of newer RELENG_6 on older ones work, advance __FreeBSD_version check for gensnmptree in the list of bootstrap-tools. This is needed for the upcoming MFC of snmp_bridge module, which makes use of new features of gensnmptree. Approved by: bz (mentor) Revision Changes Path 1.499.2.17 +1 -1 src/Makefile.inc1 From owner-cvs-src@FreeBSD.ORG Wed Mar 7 19:00:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E828116A400; Wed, 7 Mar 2007 19:00:02 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B986513C4AC; Wed, 7 Mar 2007 19:00:02 +0000 (UTC) (envelope-from stefan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27J02hn018347; Wed, 7 Mar 2007 19:00:02 GMT (envelope-from stefan@repoman.freebsd.org) Received: (from stefan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27J02sx018346; Wed, 7 Mar 2007 19:00:02 GMT (envelope-from stefan) Message-Id: <200703071900.l27J02sx018346@repoman.freebsd.org> From: Stefan Walter Date: Wed, 7 Mar 2007 19:00: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/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 19:00:03 -0000 stefan 2007-03-07 19:00:02 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday to calendar.freebsd. Revision Changes Path 1.198 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 19:15:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6172716A402; Wed, 7 Mar 2007 19:15:19 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3971F13C481; Wed, 7 Mar 2007 19:15:19 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27JFJRV022466; Wed, 7 Mar 2007 19:15:19 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27JFJAN022465; Wed, 7 Mar 2007 19:15:19 GMT (envelope-from bmah) Message-Id: <200703071915.l27JFJAN022465@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 7 Mar 2007 19:15: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/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 19:15:19 -0000 bmah 2007-03-07 19:15:18 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Jump on the calendar bandwagon and add myself. Revision Changes Path 1.199 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Wed Mar 7 19:38:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B13C116A402; Wed, 7 Mar 2007 19:38:21 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 88E7C13C461; Wed, 7 Mar 2007 19:38:21 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27JcLcE026057; Wed, 7 Mar 2007 19:38:21 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27JcLB9026056; Wed, 7 Mar 2007 19:38:21 GMT (envelope-from bmah) Message-Id: <200703071938.l27JcLB9026056@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 7 Mar 2007 19:38:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 19:38:21 -0000 bmah 2007-03-07 19:38:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata: EN-07:03.rc.d_jail. Updated errata: IPv6 over gif(4) issue now described by EN-07:02.net. Revision Changes Path 1.73.2.46 +13 -6 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Wed Mar 7 20:00:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E91CE16A403; Wed, 7 Mar 2007 20:00:32 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C0D2F13C4A8; Wed, 7 Mar 2007 20:00:32 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27K0WE5029740; Wed, 7 Mar 2007 20:00:32 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27K0WG6029737; Wed, 7 Mar 2007 20:00:32 GMT (envelope-from bmah) Message-Id: <200703072000.l27K0WG6029737@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 7 Mar 2007 20:00:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Cc: Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 20:00:33 -0000 bmah 2007-03-07 20:00:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: Add mention of the EOL status of RELENG_4. Revision Changes Path 1.1.2.136 +16 -0 src/release/doc/en_US.ISO8859-1/errata/article.sgml From owner-cvs-src@FreeBSD.ORG Wed Mar 7 20:16:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4761B16A403; Wed, 7 Mar 2007 20:16:32 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 345A413C48E; Wed, 7 Mar 2007 20:16:32 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27KGVIp033928; Wed, 7 Mar 2007 20:16:31 GMT (envelope-from syrinx@repoman.freebsd.org) Received: (from syrinx@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27KGVO8033927; Wed, 7 Mar 2007 20:16:31 GMT (envelope-from syrinx) Message-Id: <200703072016.l27KGVO8033927@repoman.freebsd.org> From: Shteryana Shopova Date: Wed, 7 Mar 2007 20:16:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/bsnmpd/modules/snmp_bridge BEGEMOT-BRIDGE-MIB.txt BRIDGE-MIB.txt Makefile RSTP-MIB.txt bridge_addrs.c bridge_if.c bridge_pf.c bridge_port.c bridge_snmp.c bridge_snmp.h bridge_sys.c bridge_tree.def snmp_bridge.3 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 20:16:32 -0000 syrinx 2007-03-07 20:16:31 UTC FreeBSD src repository Added files: (Branch: RELENG_6) usr.sbin/bsnmpd/modules/snmp_bridge BEGEMOT-BRIDGE-MIB.txt BRIDGE-MIB.txt Makefile RSTP-MIB.txt bridge_addrs.c bridge_if.c bridge_pf.c bridge_port.c bridge_snmp.c bridge_snmp.h bridge_sys.c bridge_tree.def snmp_bridge.3 Log: MFC: src/usr.sbin/bsnmpd/modules/snmp_bridge/BEGEMOT-BRIDGE-MIB.txt, Revision 1.2 src/usr.sbin/bsnmpd/modules/snmp_bridge/BRIDGE-MIB.txt, Revision 1.1 src/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile, Revision 1.2 src/usr.sbin/bsnmpd/modules/snmp_bridge/RSTP-MIB.txt, Revision 1.1 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_addrs.c, Revision 1.3 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_if.c, Revision 1.6 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_pf.c, Revision 1.2 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_port.c, Revision 1.5 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snmp.c, Revision 1.3 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snmp.h, Revision 1.4 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c, Revision 1.6 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_tree.def, Revision 1.2 src/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3, Revision 1.2 Bring in a SNMP module to support monitoring if_bridge(4) interfaces via bsnmpd(1). The module implements IETF BRIDGE-MIB and RSTP-MIB as defined in RFC4188 and RFC4318 and a private BEGEMOT-BRIDGE-MIB. Sponsored by: Google Summer of Code 2006 Approved by: bz (mentor) Revision Changes Path 1.2.2.1 +1150 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/BEGEMOT-BRIDGE-MIB.txt (new) 1.1.2.1 +1483 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/BRIDGE-MIB.txt (new) 1.2.2.1 +19 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/Makefile (new) 1.1.2.1 +325 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/RSTP-MIB.txt (new) 1.3.2.1 +589 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_addrs.c (new) 1.6.2.1 +1479 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_if.c (new) 1.2.2.1 +116 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_pf.c (new) 1.5.2.1 +1490 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_port.c (new) 1.3.2.1 +338 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snmp.c (new) 1.4.2.1 +352 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snmp.h (new) 1.6.2.1 +1454 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c (new) 1.2.2.1 +282 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_tree.def (new) 1.2.2.1 +116 -0 src/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 (new) From owner-cvs-src@FreeBSD.ORG Wed Mar 7 20:17:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93E8E16A408; Wed, 7 Mar 2007 20:17:42 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6AF7513C4BA; Wed, 7 Mar 2007 20:17:42 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27KHgoi033984; Wed, 7 Mar 2007 20:17:42 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27KHg4t033983; Wed, 7 Mar 2007 20:17:42 GMT (envelope-from julian) Message-Id: <200703072017.l27KHg4t033983@repoman.freebsd.org> From: Julian Elischer Date: Wed, 7 Mar 2007 20:17:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_kse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 20:17:42 -0000 julian 2007-03-07 20:17:42 UTC FreeBSD src repository Modified files: sys/kern kern_kse.c Log: After the last change to KSE threading a bug was introduced where all threads were counted against the count of upcall capable threads. this changes the way we do this accounting. Revision Changes Path 1.228 +34 -44 src/sys/kern/kern_kse.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 20:46:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BA9516A404; Wed, 7 Mar 2007 20:46:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 63A0613C494; Wed, 7 Mar 2007 20:46:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27Kk5D9038566; Wed, 7 Mar 2007 20:46:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27Kk5Kn038565; Wed, 7 Mar 2007 20:46:05 GMT (envelope-from jhb) Message-Id: <200703072046.l27Kk5Kn038565@repoman.freebsd.org> From: John Baldwin Date: Wed, 7 Mar 2007 20:46:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sys mutex.h rwlock.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 20:46:05 -0000 jhb 2007-03-07 20:46:05 UTC FreeBSD src repository Modified files: sys/sys mutex.h rwlock.h Log: Wrap a few lines at 80 cols. Revision Changes Path 1.90 +8 -4 src/sys/sys/mutex.h 1.8 +4 -2 src/sys/sys/rwlock.h From owner-cvs-src@FreeBSD.ORG Wed Mar 7 20:48:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95EE916A406; Wed, 7 Mar 2007 20:48:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6E63F13C49D; Wed, 7 Mar 2007 20:48:48 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27KmmfE047072; Wed, 7 Mar 2007 20:48:48 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27KmmEX047071; Wed, 7 Mar 2007 20:48:48 GMT (envelope-from jhb) Message-Id: <200703072048.l27KmmEX047071@repoman.freebsd.org> From: John Baldwin Date: Wed, 7 Mar 2007 20:48:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_rwlock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 20:48:48 -0000 jhb 2007-03-07 20:48:48 UTC FreeBSD src repository Modified files: sys/kern kern_rwlock.c Log: Fix some nits in lock profiling for rwlocks: - Properly note when a read lock is released. - Always note when we contest on a read lock. - Only note success of obtaining read locks for the first reader to match the behavior of sx(9). Reviewed by: kmacy Revision Changes Path 1.16 +9 -6 src/sys/kern/kern_rwlock.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 21:13:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BBC916A401; Wed, 7 Mar 2007 21:13:52 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 890EA13C48D; Wed, 7 Mar 2007 21:13:52 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27LDqHU053545; Wed, 7 Mar 2007 21:13:52 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27LDqUZ053544; Wed, 7 Mar 2007 21:13:52 GMT (envelope-from marius) Message-Id: <200703072113.l27LDqUZ053544@repoman.freebsd.org> From: Marius Strobl Date: Wed, 7 Mar 2007 21:13:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files.sparc64 src/sys/dev/fb creator.c src/sys/sparc64/central central.c src/sys/sparc64/fhc fhc.c fhc_central.c fhc_nexus.c fhcvar.h src/sys/sparc64/include bus_private.h iommureg.h nexusvar.h ofw_nexus.h ofw_upa.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Mar 2007 21:13:52 -0000 marius 2007-03-07 21:13:51 UTC FreeBSD src repository Modified files: sys/conf files.sparc64 sys/dev/fb creator.c sys/sparc64/central central.c sys/sparc64/fhc fhc.c sys/sparc64/include bus_private.h iommureg.h ofw_nexus.h sys/sparc64/pci psycho.c psychovar.h sys/sparc64/sbus sbus.c sys/sparc64/sparc64 bus_machdep.c iommu.c nexus.c sc_machdep.c Removed files: sys/sparc64/fhc fhc_central.c fhc_nexus.c fhcvar.h sys/sparc64/include nexusvar.h ofw_upa.h Log: Rototill the sparc64 nexus(4) (actually this brings in the code the sun4v nexus(4) in turn is based on): o Change nexus(4) to manage the resources of its children so the respective device drivers don't need to figure them out of OFW themselves. o Change nexus(4) to provide the ofw_bus KOBJ interface instead of using IVARs for supplying the OFW node and the subset of standard properties of its children. Together with the previous change this also allows to fully take advantage of newbus in that drivers like fhc(4), which attach on multiple parent busses, no longer require different bus front-ends as obtaining the OFW node and properties as well as resource allocation works the same for all supported busses. As such this change also is part 4/4 of allowing creator(4) to work in USIII-based machines as it allows this driver to attach on both nexus(4) and upa(4). On the other hand removing these IVARs breaks API compatibility with the powerpc nexus(4) but which isn't that bad as a) sparc64 currently doesn't share any device driver hanging off of nexus(4) with powerpc and b) they were no longer compatible regarding OFW-related extensions at the pci(4) level since quite some time. o Provide bus_get_dma_tag methods in nexus(4) and its children in order to handle DMA tags in a hierarchical way and get rid of the sparc64_root_dma_tag kludge. Together with the previous two items this changes also allows to completely get rid of the nexus(4) IVAR interface. It also includes: - pushing the constraints previously specified by the nexus_dmatag down into the DMA tags of psycho(4) and sbus(4) as it's their IOMMUs which induce these restrictions (and nothing at the nexus(4) or anything that would warrant specifying them there), - fixing some obviously wrong constraints of the psycho(4) and sbus(4) DMA tags, which happened to not actually be used with the sparc64_root_dma_tag kludge in place and therefore didn't cause problems so far, - replacing magic constants for constraints with macros as far as it is obvious as to where they come from. This doesn't include taking advantage of the newbus way to get the parent DMA tags implemented by this change in order to divorce the IOTSBs of the PCI and SBus IOMMUs or for implementing the workaround for the DMA sync bug in Sabre (and Tomatillo) bridges, yet, though. o Get rid of the notion that nexus(4) (mostly) reflects an UPA bus by replacing ofw_upa.h and with ofw_nexus.h (which was repo-copied from ofw_upa.h) and renaming its content, which actually applies to all of Fireplane/Safari, JBus and UPA (in the host bus case), as appropriate. o Just use M_DEVBUF instead of a separate M_NEXUS malloc type for allocating the device info for the children of nexus(4). This is done in order to not need to export M_NEXUS when deriving drivers for subordinate busses from the nexus(4) class. o Use the DEFINE_CLASS_0() macro to declare the nexus(4) driver so we can derive subclasses from it. o Const'ify the nexus_excl_name and nexus_excl_type arrays as well as add 'associations' and 'rsc', which are pseudo-devices without resources and therefore of no real interest for nexus(4), to the former. o Let the nexus(4) device memory rman manage the entire 64-bit address space instead of just the UPA_MEMSTART to UPA_MEMEND subregion as Fireplane/Safari- and JBus-based machines use multiple ranges, which can't be as easily divided as in the case of UPA (limiting the address space only served for sanity checking anyway). o Use M_WAITOK instead of M_NOWAIT when allocating the device info for children of nexus(4) in order to give one less opportunity for adding devices to nexus(4) to fail. o While adapting the drivers affected by the above nexus(4) changes, change them to take advantage of rman_get_rid() instead of caching the RIDs assigned to allocated resources, now that the RIDs of resources are correctly set. o In iommu(4) and nexus(4) replace hard-coded functions names, which actually became outdated in several places, in panic strings and status massages with __func__. [1] o Use driver_filter_t in prototypes where appropriate. o Add my copyright to creator(4), fhc(4), nexus(4), psycho(4) and sbus(4) as I changed considerable amounts of these drivers as well as added a bunch of new features, workarounds for silicon bugs etc. o Fix some white space nits. Due to lack of access to Exx00 hardware, these changes, i.e. central(4) and fhc(4), couldn't be runtime tested on such a machine. Exx00 are currently reported to panic before trying to attach nexus(4) anyway though. PR: 76052 [1] Approved by: re (kensmith) Revision Changes Path 1.88 +0 -2 src/sys/conf/files.sparc64 1.12 +13 -29 src/sys/dev/fb/creator.c 1.12 +4 -6 src/sys/sparc64/central/central.c 1.16 +126 -16 src/sys/sparc64/fhc/fhc.c 1.11 +0 -132 src/sys/sparc64/fhc/fhc_central.c (dead) 1.10 +0 -147 src/sys/sparc64/fhc/fhc_nexus.c (dead) 1.7 +0 -59 src/sys/sparc64/fhc/fhcvar.h (dead) 1.8 +0 -7 src/sys/sparc64/include/bus_private.h 1.7 +4 -4 src/sys/sparc64/include/iommureg.h 1.4 +0 -58 src/sys/sparc64/include/nexusvar.h (dead) 1.7 +14 -14 src/sys/sparc64/include/ofw_nexus.h 1.6 +0 -54 src/sys/sparc64/include/ofw_upa.h (dead) 1.64 +67 -85 src/sys/sparc64/pci/psycho.c 1.15 +0 -1 src/sys/sparc64/pci/psychovar.h 1.42 +40 -42 src/sys/sparc64/sbus/sbus.c 1.45 +21 -31 src/sys/sparc64/sparc64/bus_machdep.c 1.44 +24 -23 src/sys/sparc64/sparc64/iommu.c 1.20 +235 -125 src/sys/sparc64/sparc64/nexus.c 1.3 +2 -3 src/sys/sparc64/sparc64/sc_machdep.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 21:24:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D95C716A4A0; Wed, 7 Mar 2007 21:24:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B169413C4BC; Wed, 7 Mar 2007 21:24:51 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27LOptk055313; Wed, 7 Mar 2007 21:24:51 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27LOpka055312; Wed, 7 Mar 2007 21:24:51 GMT (envelope-from pjd) Message-Id: <200703072124.l27LOpka055312@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 7 Mar 2007 21:24:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_jail.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 07 Mar 2007 21:24:52 -0000 pjd 2007-03-07 21:24:51 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c Log: White space nits. Revision Changes Path 1.61 +4 -4 src/sys/kern/kern_jail.c From owner-cvs-src@FreeBSD.ORG Wed Mar 7 23:22:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68B1D16A404; Wed, 7 Mar 2007 23:22:00 +0000 (UTC) (envelope-from qingli@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5948213C491; Wed, 7 Mar 2007 23:22:00 +0000 (UTC) (envelope-from qingli@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l27NM0Wf076174; Wed, 7 Mar 2007 23:22:00 GMT (envelope-from qingli@repoman.freebsd.org) Received: (from qingli@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l27NLxB2076173; Wed, 7 Mar 2007 23:21:59 GMT (envelope-from qingli) Message-Id: <200703072321.l27NLxB2076173@repoman.freebsd.org> From: Qing Li Date: Wed, 7 Mar 2007 23:21:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/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: Wed, 07 Mar 2007 23:22:00 -0000 qingli 2007-03-07 23:21:59 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: This patch is provided to fix a couple of deployment issues observed in the field. In one situation, one end of the TCP connection sends a back-to-back RST packet, with delayed ack, the last_ack_sent variable has not been update yet. When tcp_insecure_rst is turned off, the code treats the RST as invalid because last_ack_sent instead of rcv_nxt is compared against th_seq. Apparently there is some kind of firewall that sits in between the two ends and that RST packet is the only RST packet received. With short lived HTTP connections, the symptom is a large accumulation of connections over a short period of time . The +/-(1) factor is to take care of implementations out there that generate RST packets with these types of sequence numbers. This behavior has also been observed in live environments. Reviewed by: silby, Mike Karels MFC after: 1 week Revision Changes Path 1.316 +7 -5 src/sys/netinet/tcp_input.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 00:29:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6DEB816A401; Thu, 8 Mar 2007 00:29:19 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 46F8713C442; Thu, 8 Mar 2007 00:29:19 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l280TJqO093537; Thu, 8 Mar 2007 00:29:19 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l280TJpv093536; Thu, 8 Mar 2007 00:29:19 GMT (envelope-from jkim) Message-Id: <200703080029.l280TJpv093536@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 8 Mar 2007 00:29:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 00:29:19 -0000 jkim 2007-03-08 00:29:18 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c Log: Fix more style(9) bugs. - Remove some excessive parentheses around shift operators. - Use macro instead of magic number where it is applicable. - Change lower-case hexdecimals to upper cases to match wpaul's style. - Revert some unnecessary line wraps and changes from the previous commit. Pointed out by: bde Revision Changes Path 1.182 +62 -76 src/sys/dev/bge/if_bge.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 00:49:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9ED2416A400; Thu, 8 Mar 2007 00:49:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 77DA513C49D; Thu, 8 Mar 2007 00:49:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l280nRtk005086; Thu, 8 Mar 2007 00:49:27 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l280nRRa005085; Thu, 8 Mar 2007 00:49:27 GMT (envelope-from jkim) Message-Id: <200703080049.l280nRRa005085@repoman.freebsd.org> From: Jung-uk Kim Date: Thu, 8 Mar 2007 00: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/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 00:49:27 -0000 jkim 2007-03-08 00:49:27 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c Log: Use correct bits to stop firmware when ASF mode is enabled. Revision Changes Path 1.183 +2 -2 src/sys/dev/bge/if_bge.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 00:59:11 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A99116A402; Thu, 8 Mar 2007 00:59:11 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ext-gw.lemis.com (ext-gw.lemis.com [150.101.14.10]) by mx1.freebsd.org (Postfix) with ESMTP id 8027F13C461; Thu, 8 Mar 2007 00:59:10 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ext-gw.lemis.com (Postfix) with ESMTP id 4E091133CDC; Thu, 8 Mar 2007 11:29:09 +1030 (CST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 3D6BA1AA1DE; Thu, 8 Mar 2007 11:29:09 +1030 (CST) Date: Thu, 8 Mar 2007 11:29:09 +1030 From: Greg 'groggy' Lehey To: John Baldwin Message-ID: <20070308005909.GN68567@wantadilla.lemis.com> References: <200703042342.l24Ngwmu040217@repoman.freebsd.org> <20070305092518.F44433@fledge.watson.org> <200703051032.20618.jhb@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lLR1BQqf7txDtYcF" Content-Disposition: inline In-Reply-To: <200703051032.20618.jhb@freebsd.org> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, Robert Watson , cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man9 sleep.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 00:59:11 -0000 --lLR1BQqf7txDtYcF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline [Format recovered--see http://www.lemis.com/email/email-format.html] Wrapping corrected. On Monday, 5 March 2007 at 10:32:19 -0500, John Baldwin wrote: > On Monday 05 March 2007 04:36, Robert Watson wrote: >> >> On Sun, 4 Mar 2007, Greg Lehey wrote: >> >>> grog 2007-03-04 23:42:58 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> share/man/man9 sleep.9 >>> Log: >>> Rearrange function descriptions in more logical order. >>> Be less alarmist about the dangers of abusing wakeup_one(). >> >> How would you feel about language along the lines of: >> >> Prior to the introduction of wakeup_one(), using a single wait >> channel address was possible as long as all sleepers looped >> around the sleep call re-checking the condition after each >> wakeup. However, with the addition of wakeup_one(), combining >> wait channels for multiple purposes may lead easily to bugs >> involving lost wakeups, and is strongly discouraged. It is >> recommended that consumers of the sleep(9) programming interface >> carefully follow the convention of using only wait channels >> associated with memory addresses explicitly allocated for this >> purpose, and not overload or extend the semantics of existing >> wait channels without careful analysis in order to avoid >> potential channel collisions. Programmers may find the cv(9) >> interface easier to use correctly, as it has explicit condition >> variable data structures. >> >> That way we combine warnings about potential misuse with a >> recommendation for the cv(9) API. > > How about a far simpler sentence: > > Programmers should ensure that wait channels are not used for > multiple events. Agreed that rwatson's is too long, but what's your objection to the way it is now? > Unless there is wide misunderstanding of this concept (which there > doesn't seem to be judging from the followups) we shouldn't spend > any more length on the topic than that. When porting drivers from other places, we can't assume that the driver writer was as aware of the issue as those relatively few who have participated in this discussion. I'm currently looking at a driver which has misunderstood a number of issues in this area. It also appears to work unless the kernel is compiled with INVARIANTS. The duplicate event per wchan issue is even more subtle: it can work for ever and then hang inexplicably. Greg -- When replying to this message, please take care not to mutilate the original text. For more information, see http://www.lemis.com/email.html See complete headers for address and phone numbers. --lLR1BQqf7txDtYcF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFF71/dIubykFB6QiMRAj7ZAJwJj5/DFqfhnP75ZSOQEbTP135qdQCggKdt iejAvLo2suzyEOQp/oLA+/Y= =pHtP -----END PGP SIGNATURE----- --lLR1BQqf7txDtYcF-- From owner-cvs-src@FreeBSD.ORG Thu Mar 8 02:15:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1282116A402; Thu, 8 Mar 2007 02:15:02 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.freebsd.org (Postfix) with ESMTP id B2ECD13C4A5; Thu, 8 Mar 2007 02:15:01 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.6/8.13.6) with ESMTP id l282F0PB020723; Wed, 7 Mar 2007 21:15:00 -0500 (EST) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: src-committers@FreeBSD.org Date: Wed, 7 Mar 2007 21:14:54 -0500 User-Agent: KMail/1.6.2 References: <200703080049.l280nRRa005085@repoman.freebsd.org> In-Reply-To: <200703080049.l280nRRa005085@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200703072114.57319.jkim@FreeBSD.org> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.6/2774/Wed Mar 7 19:57:23 2007 on anuket.mj.niksun.com X-Virus-Status: Clean Cc: cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 02:15:02 -0000 On Wednesday 07 March 2007 07:49 pm, Jung-uk Kim wrote: > jkim 2007-03-08 00:49:27 UTC > > FreeBSD src repository > > Modified files: > sys/dev/bge if_bge.c > Log: > Use correct bits to stop firmware when ASF mode is enabled. I should have said 'reset', not 'stop'. > Revision Changes Path > 1.183 +2 -2 src/sys/dev/bge/if_bge.c BTW, let me know if it resolves or breaks anything when ASF mode is enabled, which is default. Thanks, Jung-uk Kim From owner-cvs-src@FreeBSD.ORG Thu Mar 8 03:01:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10A0516A401; Thu, 8 Mar 2007 03:01:02 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DC00813C442; Thu, 8 Mar 2007 03:01:01 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l283118M038241; Thu, 8 Mar 2007 03:01:01 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28311nS038224; Thu, 8 Mar 2007 03:01:01 GMT (envelope-from trhodes) Message-Id: <200703080301.l28311nS038224@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 8 Mar 2007 03:01:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/fs/msdosfs denode.h msdosfs_fat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 03:01:02 -0000 trhodes 2007-03-08 03:01:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/fs/msdosfs denode.h msdosfs_fat.c Log: MFC: Add a 3rd entry in the cache, which keeps the end position from just before extending a file. This has the desired effect of keeping the write speed constant. And yes, that helps a lot copying large files always at full speed now, and I have seen improvements using benchmarks/bonnie. Stolen from: NetBSD Reviewed by: bde Revision Changes Path 1.33.2.1 +10 -1 src/sys/fs/msdosfs/denode.h 1.37.2.1 +10 -2 src/sys/fs/msdosfs/msdosfs_fat.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 03:49:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4475B16A405; Thu, 8 Mar 2007 03:49:24 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1D4C413C48D; Thu, 8 Mar 2007 03:49:24 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l283nNrk046960; Thu, 8 Mar 2007 03:49:24 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l283nNbx046959; Thu, 8 Mar 2007 03:49:23 GMT (envelope-from kevlo) Message-Id: <200703080349.l283nNbx046959@repoman.freebsd.org> From: Kevin Lo Date: Thu, 8 Mar 2007 03:49:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/traceroute6 traceroute6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 03:49:24 -0000 kevlo 2007-03-08 03:49:23 UTC FreeBSD src repository Modified files: usr.sbin/traceroute6 traceroute6.c Log: Use setresuid for simple privilege dropping. Revision Changes Path 1.17 +6 -2 src/usr.sbin/traceroute6/traceroute6.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 04:01:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D27F16A400; Thu, 8 Mar 2007 04:01:31 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 384EC13C494; Thu, 8 Mar 2007 04:01:31 +0000 (UTC) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2841VXt049247; Thu, 8 Mar 2007 04:01:31 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2841VaL049246; Thu, 8 Mar 2007 04:01:31 GMT (envelope-from jkoshy) Message-Id: <200703080401.l2841VaL049246@repoman.freebsd.org> From: Joseph Koshy Date: Thu, 8 Mar 2007 04:01:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libelf gelf.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, 08 Mar 2007 04:01:31 -0000 jkoshy 2007-03-08 04:01:30 UTC FreeBSD src repository Modified files: lib/libelf gelf.h Log: Add GELF_* accessor macros. Prodded by: Sam Arun Raj Revision Changes Path 1.3 +16 -0 src/lib/libelf/gelf.h From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:20:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C775616A402; Thu, 8 Mar 2007 05:20:35 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A1A2913C47E; Thu, 8 Mar 2007 05:20:35 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285KZeW072607; Thu, 8 Mar 2007 05:20:35 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285KZfD072603; Thu, 8 Mar 2007 05:20:35 GMT (envelope-from ume) Message-Id: <200703080520.l285KZfD072603@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 8 Mar 2007 05:20: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/usr.sbin/ppp radius.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 05:20:36 -0000 ume 2007-03-08 05:20:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/ppp radius.c Log: MFC 1.53: Check the return value from rad_cvt_ipv6prefix(). Revision Changes Path 1.52.2.1 +7 -1 src/usr.sbin/ppp/radius.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:23:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A8A916A400; Thu, 8 Mar 2007 05:23:31 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 059A313C442; Thu, 8 Mar 2007 05:23:31 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285NUJA075209; Thu, 8 Mar 2007 05:23:30 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285NUda075208; Thu, 8 Mar 2007 05:23:30 GMT (envelope-from ume) Message-Id: <200703080523.l285NUda075208@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 8 Mar 2007 05:23:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 Cc: Subject: cvs commit: src/usr.sbin/ppp radius.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 05:23:31 -0000 ume 2007-03-08 05:23:30 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) usr.sbin/ppp radius.c Log: MFC 1.53: Check the return value from rad_cvt_ipv6prefix(). Revision Changes Path 1.48.2.2 +7 -1 src/usr.sbin/ppp/radius.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:30:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A38916A405; Thu, 8 Mar 2007 05:30:27 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 54F5313C4A5; Thu, 8 Mar 2007 05:30:27 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285UQ9q076051; Thu, 8 Mar 2007 05:30:26 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285UQIY076048; Thu, 8 Mar 2007 05:30:26 GMT (envelope-from mjacob) Message-Id: <200703080530.l285UQIY076048@repoman.freebsd.org> From: Matt Jacob Date: Thu, 8 Mar 2007 05: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/sys/cam cam_xpt.c cam_xpt.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, 08 Mar 2007 05:30:27 -0000 mjacob 2007-03-08 05:30:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/cam cam_xpt.c cam_xpt.h Log: MFC xpt_rescan functionality. Revision Changes Path 1.155.2.11 +48 -2 src/sys/cam/cam_xpt.c 1.5.2.2 +1 -0 src/sys/cam/cam_xpt.h From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:31:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 115FE16A400; Thu, 8 Mar 2007 05:31:41 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 01CF713C442; Thu, 8 Mar 2007 05:31:41 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285VeNb077198; Thu, 8 Mar 2007 05:31:40 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285Ves8077197; Thu, 8 Mar 2007 05:31:40 GMT (envelope-from mjacob) Message-Id: <200703080531.l285Ves8077197@repoman.freebsd.org> From: Matt Jacob Date: Thu, 8 Mar 2007 05:31:40 +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/isp isp.c isp_freebsd.c isp_freebsd.h isp_library.c isp_library.h isp_pci.c isp_sbus.c isp_stds.h isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 05:31:41 -0000 mjacob 2007-03-08 05:31:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/isp isp.c isp_freebsd.c isp_freebsd.h isp_library.c isp_library.h isp_pci.c isp_sbus.c isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h Added files: (Branch: RELENG_6) sys/dev/isp isp_stds.h Log: MFC 4 Gb support + rewrite of loop/fabric state machine code. Revision Changes Path 1.113.2.5 +3184 -1882 src/sys/dev/isp/isp.c 1.105.2.6 +835 -377 src/sys/dev/isp/isp_freebsd.c 1.79.2.8 +99 -105 src/sys/dev/isp/isp_freebsd.h 1.1.2.4 +1955 -781 src/sys/dev/isp/isp_library.c 1.1.2.3 +77 -17 src/sys/dev/isp/isp_library.h 1.104.2.8 +639 -179 src/sys/dev/isp/isp_pci.c 1.15.8.5 +61 -71 src/sys/dev/isp/isp_sbus.c 1.3.2.1 +213 -0 src/sys/dev/isp/isp_stds.h (new) 1.32.2.5 +526 -77 src/sys/dev/isp/isp_target.c 1.23.2.4 +317 -71 src/sys/dev/isp/isp_target.h 1.10.2.4 +56 -11 src/sys/dev/isp/isp_tpublic.h 1.47.2.4 +551 -126 src/sys/dev/isp/ispmbox.h 1.23.2.4 +167 -24 src/sys/dev/isp/ispreg.h 1.71.2.5 +215 -91 src/sys/dev/isp/ispvar.h From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:32:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 053DF16A408; Thu, 8 Mar 2007 05:32:13 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D394E13C441; Thu, 8 Mar 2007 05:32:12 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285WCOY077594; Thu, 8 Mar 2007 05:32:12 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285WCLS077593; Thu, 8 Mar 2007 05:32:12 GMT (envelope-from mjacob) Message-Id: <200703080532.l285WCLS077593@repoman.freebsd.org> From: Matt Jacob Date: Thu, 8 Mar 2007 05:32:12 +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/ispfw asm_2400.h ispfw.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 05:32:13 -0000 mjacob 2007-03-08 05:32:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ispfw ispfw.c Added files: (Branch: RELENG_6) sys/dev/ispfw asm_2400.h Log: MFC 4 Gb support for QLogic cards. Revision Changes Path 1.1.2.1 +12229 -0 src/sys/dev/ispfw/asm_2400.h (new) 1.14.2.2 +7 -0 src/sys/dev/ispfw/ispfw.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:35:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73EF916A406; Thu, 8 Mar 2007 05:35:09 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 48E6913C494; Thu, 8 Mar 2007 05:35:09 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285Z99S079135; Thu, 8 Mar 2007 05:35:09 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285Z9So079134; Thu, 8 Mar 2007 05:35:09 GMT (envelope-from mjacob) Message-Id: <200703080535.l285Z9So079134@repoman.freebsd.org> From: Matt Jacob Date: Thu, 8 Mar 2007 05:35:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_debug.c mpt_pci.c mpt_raid.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 05:35:09 -0000 mjacob 2007-03-08 05:35:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/mpt mpt.c mpt.h mpt_cam.c mpt_cam.h mpt_debug.c mpt_pci.c mpt_raid.c Log: Synchronize with -current as of this date. There is a lot of source churn, but it's there to make diffs in the future easier. There isn't much substantive change that springs to mind. Revision Changes Path 1.12.2.5 +339 -239 src/sys/dev/mpt/mpt.c 1.6.2.5 +47 -23 src/sys/dev/mpt/mpt.h 1.1.2.8 +341 -208 src/sys/dev/mpt/mpt_cam.c 1.1.2.4 +2 -0 src/sys/dev/mpt/mpt_cam.h 1.8.2.3 +4 -4 src/sys/dev/mpt/mpt_debug.c 1.20.2.8 +47 -4 src/sys/dev/mpt/mpt_pci.c 1.1.2.4 +100 -46 src/sys/dev/mpt/mpt_raid.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:38:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9CE8B16A402; Thu, 8 Mar 2007 05:38:25 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 774ED13C481; Thu, 8 Mar 2007 05:38:25 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285cPdg079295; Thu, 8 Mar 2007 05:38:25 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285cPHK079294; Thu, 8 Mar 2007 05:38:25 GMT (envelope-from mjacob) Message-Id: <200703080538.l285cPHK079294@repoman.freebsd.org> From: Matt Jacob Date: Thu, 8 Mar 2007 05:38: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/share/man/man4 isp.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, 08 Mar 2007 05:38:25 -0000 mjacob 2007-03-08 05:38:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man4 isp.4 Log: Update isp(4) man page to match driver in RELENG_6. Revision Changes Path 1.20.2.4 +61 -46 src/share/man/man4/isp.4 From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:43:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 508D716A402; Thu, 8 Mar 2007 05:43:13 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2AA9413C491; Thu, 8 Mar 2007 05:43:13 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285hDWL080565; Thu, 8 Mar 2007 05:43:13 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285hDp8080561; Thu, 8 Mar 2007 05:43:13 GMT (envelope-from cperciva) Message-Id: <200703080543.l285hDp8080561@repoman.freebsd.org> From: Colin Percival Date: Thu, 8 Mar 2007 05:43:12 +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/freebsd-update freebsd-update.sh X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 05:43:13 -0000 cperciva 2007-03-08 05:43:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/freebsd-update freebsd-update.sh Log: MFC rev. 1.5: Fix problems resulting from SMP kernels (mis-)identifying themselves as "SMP-GENERIC" (i386) or "GENERIC" (amd64). Revision Changes Path 1.2.2.4 +20 -2 src/usr.sbin/freebsd-update/freebsd-update.sh From owner-cvs-src@FreeBSD.ORG Thu Mar 8 05:52:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D6C616A400; Thu, 8 Mar 2007 05:52:02 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 076E013C48E; Thu, 8 Mar 2007 05:52:02 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l285q15E081636; Thu, 8 Mar 2007 05:52:01 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l285q1VQ081635; Thu, 8 Mar 2007 05:52:01 GMT (envelope-from kientzle) Message-Id: <200703080552.l285q1VQ081635@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 8 Mar 2007 05:52:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/tar bsdtar_platform.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, 08 Mar 2007 05:52:02 -0000 kientzle 2007-03-08 05:52:01 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar_platform.h Log: Argh. Support for reading ACLs off of disk was inadvertently disabled as part of an old configuration shuffle. As a result, although ACL restore has been working, ACLs haven't been written into archives for some time. Pointy hat: You know. MFC after: 3 days Revision Changes Path 1.22 +1 -0 src/usr.bin/tar/bsdtar_platform.h From owner-cvs-src@FreeBSD.ORG Thu Mar 8 06:07:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF9BB16A405; Thu, 8 Mar 2007 06:07:07 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 897ED13C49D; Thu, 8 Mar 2007 06:07:07 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28677Xh088535; Thu, 8 Mar 2007 06:07:07 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28677ew088534; Thu, 8 Mar 2007 06:07:07 GMT (envelope-from kientzle) Message-Id: <200703080607.l28677ew088534@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 8 Mar 2007 06:07:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive archive_entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 06:07:07 -0000 kientzle 2007-03-08 06:07:07 UTC FreeBSD src repository Modified files: lib/libarchive archive_entry.c Log: Distinguish between the end of ACL data and an error in pulling ACL data from the archive entry. This doesn't impact archive_read_extract or archive_write_disk since they only check for != ARCHIVE_OK when calling this function. (Though they should be more careful.) Revision Changes Path 1.39 +1 -1 src/lib/libarchive/archive_entry.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 06:09:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0148916A482; Thu, 8 Mar 2007 06:09:28 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E715713C471; Thu, 8 Mar 2007 06:09:27 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2869R4C089011; Thu, 8 Mar 2007 06:09:27 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2869RK9089010; Thu, 8 Mar 2007 06:09:27 GMT (envelope-from kientzle) Message-Id: <200703080609.l2869RK9089010@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 8 Mar 2007 06:09: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/lib/libarchive/test Makefile test_acl_basic.c test_acl_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 06:09:28 -0000 kientzle 2007-03-08 06:09:27 UTC FreeBSD src repository Modified files: lib/libarchive/test Makefile Added files: lib/libarchive/test test_acl_basic.c test_acl_pax.c Log: New tests for system-independent ACL support. These tests verify that archive_entry objects can store and return ACL data and that pax format archives can read and write ACL information. These do not (yet) test that ACL data is read or written to disk correctly. (And hence would not have caught the recent snafu about ACL read-from-disk being turned off.) Revision Changes Path 1.2 +2 -0 src/lib/libarchive/test/Makefile 1.1 +227 -0 src/lib/libarchive/test/test_acl_basic.c (new) 1.1 +515 -0 src/lib/libarchive/test/test_acl_pax.c (new) From owner-cvs-src@FreeBSD.ORG Thu Mar 8 06:10:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03C3816A402; Thu, 8 Mar 2007 06:10:18 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D260813C4BA; Thu, 8 Mar 2007 06:10:17 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l286AHWm089192; Thu, 8 Mar 2007 06:10:17 GMT (envelope-from will@repoman.freebsd.org) Received: (from will@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l286AHEg089191; Thu, 8 Mar 2007 06:10:17 GMT (envelope-from will) Message-Id: <200703080610.l286AHEg089191@repoman.freebsd.org> From: Will Andrews Date: Thu, 8 Mar 2007 06:10: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/bin/df df.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 06:10:18 -0000 will 2007-03-08 06:10:17 UTC FreeBSD src repository Modified files: bin/df df.c Log: Fix a bug where the mutual exclusivity of the -l and -t options is not recognized properly if -l is specified first. PR: bin/105721 MFC after: 1 week Revision Changes Path 1.67 +4 -1 src/bin/df/df.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 06:44:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D375816A400; Thu, 8 Mar 2007 06:44:34 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C419D13C442; Thu, 8 Mar 2007 06:44:34 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l286iYHX098523; Thu, 8 Mar 2007 06:44:34 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l286iY7P098522; Thu, 8 Mar 2007 06:44:34 GMT (envelope-from julian) Message-Id: <200703080644.l286iY7P098522@repoman.freebsd.org> From: Julian Elischer Date: Thu, 8 Mar 2007 06:44:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_clock.c kern_synch.c sched_core.c sched_ule.c subr_prf.c subr_smp.c vfs_bio.c src/sys/sys buf.h proc.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, 08 Mar 2007 06:44:34 -0000 julian 2007-03-08 06:44:34 UTC FreeBSD src repository Modified files: sys/kern kern_clock.c kern_synch.c sched_core.c sched_ule.c subr_prf.c subr_smp.c vfs_bio.c sys/sys buf.h proc.h Log: Instead of doing comparisons using the pcpu area to see if a thread is an idle thread, just see if it has the IDLETD flag set. That flag will probably move to the pflags word as it's permenent and never chenges for the life of the system so it doesn't need locking. Revision Changes Path 1.194 +1 -1 src/sys/kern/kern_clock.c 1.291 +1 -1 src/sys/kern/kern_synch.c 1.13 +2 -2 src/sys/kern/sched_core.c 1.189 +1 -1 src/sys/kern/sched_ule.c 1.130 +1 -1 src/sys/kern/subr_prf.c 1.198 +1 -1 src/sys/kern/subr_smp.c 1.518 +4 -4 src/sys/kern/vfs_bio.c 1.196 +1 -2 src/sys/sys/buf.h 1.472 +6 -0 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Thu Mar 8 07:00:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E687416A400; Thu, 8 Mar 2007 07:00:42 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C00AF13C481; Thu, 8 Mar 2007 07:00:42 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2870guC001615; Thu, 8 Mar 2007 07:00:42 GMT (envelope-from will@repoman.freebsd.org) Received: (from will@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2870gfd001614; Thu, 8 Mar 2007 07:00:42 GMT (envelope-from will) Message-Id: <200703080700.l2870gfd001614@repoman.freebsd.org> From: Will Andrews Date: Thu, 8 Mar 2007 07:00:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/cron/lib entry.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 07:00:43 -0000 will 2007-03-08 07:00:42 UTC FreeBSD src repository Modified files: usr.sbin/cron/lib entry.c Log: Fix a bug where HOME was not allowed to be overridden by an user's crontab as crontab(5) states it can be. This is supported by all vixie-cron derived implementations; not sure why FreeBSD was any different. PR: bin/106442 MFC after: 2 weeks Revision Changes Path 1.18 +10 -8 src/usr.sbin/cron/lib/entry.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 07:21:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A0A416A408; Thu, 8 Mar 2007 07:21:12 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 04D8313C4B5; Thu, 8 Mar 2007 07:21:11 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l287A124072553; Wed, 7 Mar 2007 23:10:01 -0800 (PST) (envelope-from tim@kientzle.com) Message-ID: <45EFB6C8.7050008@kientzle.com> Date: Wed, 07 Mar 2007 23:10:00 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> <20070307171432.B28541@delplex.bde.org> <20070307111745.GB14172@rambler-co.ru> In-Reply-To: <20070307111745.GB14172@rambler-co.ru> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, Bruce Evans , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Tim Kientzle , Greg 'groggy' Lehey Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 07:21:12 -0000 >>>... GNU tar(1) implied the >>>-p option for root, but BSD tar(1) doesn't do that. >> >>Hmmm... This might actually be considered a bsdtar bug. >>I'll look into it. > >That behavior of BSD tar(1) surprised me, to be honest. Now I'm confused. Why were you surprised by this? According to some notes I have from June 2004, FreeBSD's version of GNU tar didn't assert -p by default for root. (That's why bsdtar already implements --no-same-permissions as an undocumented no-op.) I believe this was a local variation from the "official" GNU tar sources, though I don't yet know when that was done. Time for some CVS archeology, I think. ??? Tim Kientzle From owner-cvs-src@FreeBSD.ORG Thu Mar 8 07:23:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D1C416A402; Thu, 8 Mar 2007 07:23:09 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.freebsd.org (Postfix) with ESMTP id 5C08B13C441; Thu, 8 Mar 2007 07:23:09 +0000 (UTC) (envelope-from tim@kientzle.com) Received: from [10.0.0.222] (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id l287N624072625; Wed, 7 Mar 2007 23:23:07 -0800 (PST) (envelope-from tim@kientzle.com) Message-ID: <45EFB9DA.3030704@kientzle.com> Date: Wed, 07 Mar 2007 23:23:06 -0800 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060422 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tim Kientzle References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> <20070307171432.B28541@delplex.bde.org> <20070307111745.GB14172@rambler-co.ru> <45EFB6C8.7050008@kientzle.com> In-Reply-To: <45EFB6C8.7050008@kientzle.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: src-committers@FreeBSD.org, Bruce Evans , cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, Tim Kientzle , Ruslan Ermilov , Greg 'groggy' Lehey Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 07:23:09 -0000 Tim Kientzle wrote: >>>> ... GNU tar(1) implied the >>>> -p option for root, but BSD tar(1) doesn't do that. Ah. Here we are: contrib/tar/src/extract.c, revision 1.2 (07-Jun-2002) by sobomax +#ifndef __FreeBSD__ same_permissions_option += we_are_root; same_owner_option += we_are_root; +#endif This disabled -p as the default for root in FreeBSD builds of GNU tar. This change was first released in FreeBSD 4.7 as far as I can tell. This does beg the question whether bsdtar should follow FreeBSD GNU tar or FSF GNU tar? Tim Kientzle From owner-cvs-src@FreeBSD.ORG Thu Mar 8 07:57:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 508BE16A401; Thu, 8 Mar 2007 07:57:44 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 29A1013C471; Thu, 8 Mar 2007 07:57:44 +0000 (UTC) (envelope-from will@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l287vi0h017374; Thu, 8 Mar 2007 07:57:44 GMT (envelope-from will@repoman.freebsd.org) Received: (from will@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l287viDu017373; Thu, 8 Mar 2007 07:57:44 GMT (envelope-from will) Message-Id: <200703080757.l287viDu017373@repoman.freebsd.org> From: Will Andrews Date: Thu, 8 Mar 2007 07:57: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/usr.bin/make job.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 07:57:44 -0000 will 2007-03-08 07:57:43 UTC FreeBSD src repository Modified files: usr.bin/make job.c Log: Fix a bug where the standard input (fifoFd == 0) was confused with an error return from open(2), leading to an erroneous value of maxJobs and a hung make when -f is standard input and -j is used. PR: bin/101232 Submitted by: Nate Eldredge Revision Changes Path 1.125 +1 -1 src/usr.bin/make/job.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 09:16:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F2C116A401; Thu, 8 Mar 2007 09:16:11 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8F20213C48D; Thu, 8 Mar 2007 09:16:11 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l289GBoH040142; Thu, 8 Mar 2007 09:16:11 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l289GB7N040141; Thu, 8 Mar 2007 09:16:11 GMT (envelope-from fjoe) Message-Id: <200703080916.l289GB7N040141@repoman.freebsd.org> From: Max Khon Date: Thu, 8 Mar 2007 09:16: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/usr.bin/make globals.h job.c job.h main.c make.1 make.h parse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 09:16:11 -0000 fjoe 2007-03-08 09:16:11 UTC FreeBSD src repository Modified files: usr.bin/make globals.h job.c job.h main.c make.1 make.h parse.c Log: Implement "Remaking Makefiles" feature: After reading Makefile and all the files that are included using .include or .sinclude directives (source Makefiles) make considers each source Makefile as a target and tries to rebuild it. Both explicit and implicit rules are checked and all source Makefiles are updated if necessary. If any of the source Makefiles were rebuilt, make restarts from clean state. To prevent infinite loops the following source Makefile targets are ignored: - :: targets that have no prerequisites but have commands - ! targets - targets that have .PHONY or .EXEC attributes - targets without prerequisites and without commands When remaking a source Makefile options -t (touch target), -q (query mode), and -n (no exec) do not take effect, unless source Makefile is specified explicitly as a target in make command line. Additionally, system makefiles and .depend are not considered as a Makefiles that can be rebuilt. Reviewed by: harti Revision Changes Path 1.11 +1 -0 src/usr.bin/make/globals.h 1.126 +29 -20 src/usr.bin/make/job.c 1.46 +2 -0 src/usr.bin/make/job.h 1.161 +196 -6 src/usr.bin/make/main.c 1.102 +45 -0 src/usr.bin/make/make.1 1.35 +1 -0 src/usr.bin/make/make.h 1.112 +5 -1 src/usr.bin/make/parse.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 09:29:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC63316A400; Thu, 8 Mar 2007 09:29:01 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C3BEB13C4B3; Thu, 8 Mar 2007 09:29:01 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l289T1IN041935; Thu, 8 Mar 2007 09:29:01 GMT (envelope-from syrinx@repoman.freebsd.org) Received: (from syrinx@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l289T15o041934; Thu, 8 Mar 2007 09:29:01 GMT (envelope-from syrinx) Message-Id: <200703080929.l289T15o041934@repoman.freebsd.org> From: Shteryana Shopova Date: Thu, 8 Mar 2007 09:29:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/bsnmpd/modules Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 09:29:02 -0000 syrinx 2007-03-08 09:29:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/bsnmpd/modules Makefile Log: MFC: src/usr.sbin/bsnmpd/modules/Makefile, Revision 1.13 Connect the snmp_bridge(3) module to the build. Approved by: bz (mentor) Revision Changes Path 1.8.2.2 +1 -0 src/usr.sbin/bsnmpd/modules/Makefile From owner-cvs-src@FreeBSD.ORG Thu Mar 8 10:21:43 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67C1316A403; Thu, 8 Mar 2007 10:21:43 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailout2.pacific.net.au (mailout2-3.pacific.net.au [61.8.2.226]) by mx1.freebsd.org (Postfix) with ESMTP id 1EF7713C4A8; Thu, 8 Mar 2007 10:21:43 +0000 (UTC) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.2.162]) by mailout2.pacific.net.au (Postfix) with ESMTP id 855C810A262; Thu, 8 Mar 2007 21:20:30 +1100 (EST) Received: from besplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailproxy1.pacific.net.au (Postfix) with ESMTP id 048BE8C13; Thu, 8 Mar 2007 21:20:32 +1100 (EST) Date: Thu, 8 Mar 2007 21:20:31 +1100 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: Tim Kientzle In-Reply-To: <45EFB9DA.3030704@kientzle.com> Message-ID: <20070308204754.Q3405@besplex.bde.org> References: <200703061454.l26Esj7D043245@repoman.freebsd.org> <45EDA7E2.4040300@freebsd.org> <20070306204307.GD43608@rambler-co.ru> <20070306231228.GC68567@wantadilla.lemis.com> <45EE3BC4.8070309@freebsd.org> <20070307171432.B28541@delplex.bde.org> <20070307111745.GB14172@rambler-co.ru> <45EFB6C8.7050008@kientzle.com> <45EFB9DA.3030704@kientzle.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org, Tim Kientzle , Ruslan Ermilov , Greg 'groggy' Lehey Subject: Re: cvs commit: src/usr.sbin/pkg_install/lib url.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 10:21:43 -0000 On Wed, 7 Mar 2007, Tim Kientzle wrote: > Tim Kientzle wrote: >>>>> ... GNU tar(1) implied the >>>>> -p option for root, but BSD tar(1) doesn't do that. > > Ah. Here we are: > > contrib/tar/src/extract.c, revision 1.2 (07-Jun-2002) by sobomax > > +#ifndef __FreeBSD__ > same_permissions_option += we_are_root; > same_owner_option += we_are_root; > +#endif 1.2 was buggy. It took 2 more commits (1.3 and 1.5) to recover the old behaviour (old := old FreeBSD gnu tar and old gnu gnu tar too?) After 1.5, the ownership handling doesn't depend on __FreeBSD__, and same_permissions_option is incremented later after some umask stuff that I don't quite understand. Its increment doesn't depend on we_are_root, but depends on same_permissions_option being set previously (on the command line?). So same_permissions_option is always set in FreeBSD, but when it is set previously, the behaviour actually matches its name (I think it gives umask 0 for everything), but otherwise it is affected by the current umask in a way that I don't quite understand. The result for permissions seems to be only subtly different from gnu gnu tar: without -p: - as non-root, permissions are modified by the current umask, at least for regular files. The late setting of same_permissions_option apparently gives normal umasking but not quite the same behaviour as -p since this variable is used for more than the umask stuff. - as root, permissions are preserved. I don't understand how this happens. Bruce From owner-cvs-src@FreeBSD.ORG Thu Mar 8 10:27:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5BC9016A407; Thu, 8 Mar 2007 10:27:37 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3180613C49D; Thu, 8 Mar 2007 10:27:37 +0000 (UTC) (envelope-from syrinx@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28ARbJg052682; Thu, 8 Mar 2007 10:27:37 GMT (envelope-from syrinx@repoman.freebsd.org) Received: (from syrinx@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28ARb39052680; Thu, 8 Mar 2007 10:27:37 GMT (envelope-from syrinx) Message-Id: <200703081027.l28ARb39052680@repoman.freebsd.org> From: Shteryana Shopova Date: Thu, 8 Mar 2007 10:27:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc snmpd.config X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 10:27:37 -0000 syrinx 2007-03-08 10:27:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc snmpd.config Log: MFC: etc/snmpd.config, Revision 1.8 Add a (disabled) configuration line to enable snmp_bridge(3) module. Approved by: bz (mentor) Revision Changes Path 1.1.4.4 +6 -0 src/etc/snmpd.config From owner-cvs-src@FreeBSD.ORG Thu Mar 8 10:54:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 040FA16A402; Thu, 8 Mar 2007 10:54:28 +0000 (UTC) (envelope-from ticso@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CF50B13C461; Thu, 8 Mar 2007 10:54:27 +0000 (UTC) (envelope-from ticso@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28AsRqU059823; Thu, 8 Mar 2007 10:54:27 GMT (envelope-from ticso@repoman.freebsd.org) Received: (from ticso@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28AsR3f059821; Thu, 8 Mar 2007 10:54:27 GMT (envelope-from ticso) Message-Id: <200703081054.l28AsR3f059821@repoman.freebsd.org> From: Bernd Walter Date: Thu, 8 Mar 2007 10:54:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 10:54:28 -0000 ticso 2007-03-08 10:54:27 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself to the FreeBSD calendar. Revision Changes Path 1.200 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Thu Mar 8 12:17:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5EC5716A400; Thu, 8 Mar 2007 12:17:02 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3590913C4A5; Thu, 8 Mar 2007 12:17:02 +0000 (UTC) (envelope-from tdb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28CH1oS019699; Thu, 8 Mar 2007 12:17:02 GMT (envelope-from tdb@repoman.freebsd.org) Received: (from tdb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28CH1Ro019698; Thu, 8 Mar 2007 12:17:01 GMT (envelope-from tdb) Message-Id: <200703081217.l28CH1Ro019698@repoman.freebsd.org> From: Tim Bishop Date: Thu, 8 Mar 2007 12:17:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 12:17:02 -0000 tdb 2007-03-08 12:17:01 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday to the FreeBSD calendar. Encouraged by: rwatson Revision Changes Path 1.201 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Thu Mar 8 12:57:18 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E78616A408; Thu, 8 Mar 2007 12:57:18 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1222113C4AA; Thu, 8 Mar 2007 12:57:13 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28CvCSj044102; Thu, 8 Mar 2007 12:57:12 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28CvCCQ044101; Thu, 8 Mar 2007 12:57:12 GMT (envelope-from bms) Message-Id: <200703081257.l28CvCCQ044101@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 12:57:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys getsockopt.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: Thu, 08 Mar 2007 12:57:18 -0000 bms 2007-03-08 12:57:12 UTC FreeBSD src repository Modified files: lib/libc/sys getsockopt.2 Log: Document SO_ACCEPTCONN. Submitted by: Vlad GALU (with changes) MFC after: 3 days Revision Changes Path 1.37 +9 -1 src/lib/libc/sys/getsockopt.2 From owner-cvs-src@FreeBSD.ORG Thu Mar 8 13:09:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 543E416A404; Thu, 8 Mar 2007 13:09:56 +0000 (UTC) (envelope-from mita@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2AAAF13C48D; Thu, 8 Mar 2007 13:09:56 +0000 (UTC) (envelope-from mita@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28D9uTS073637; Thu, 8 Mar 2007 13:09:56 GMT (envelope-from mita@repoman.freebsd.org) Received: (from mita@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28D9uLf073636; Thu, 8 Mar 2007 13:09:56 GMT (envelope-from mita) Message-Id: <200703081309.l28D9uLf073636@repoman.freebsd.org> From: Yoshio MITA Date: Thu, 8 Mar 2007 13:09:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 13:09:56 -0000 mita 2007-03-08 13:09:55 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Following rwatson's suggestion. <20070307130635.M28276@fledge.watson.org> Revision Changes Path 1.202 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Thu Mar 8 13:15:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACA1816A401; Thu, 8 Mar 2007 13:15:28 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 83A3113C48E; Thu, 8 Mar 2007 13:15:28 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28DFSXW075380; Thu, 8 Mar 2007 13:15:28 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28DFS1b075378; Thu, 8 Mar 2007 13:15:28 GMT (envelope-from bms) Message-Id: <200703081315.l28DFS1b075378@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 13:15: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/sys/net if.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 13:15:28 -0000 bms 2007-03-08 13:15:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net if.c Log: MFC rev 1.266: Fix a bug in if_findmulti(), whereby it would not find (and thus delete) a link-layer multicast group membership. Such memberships are needed in order to support protocols such as IS-IS without putting the interface into PROMISC or ALLMULTI modes. sa_equal() is not OK for comparing sockaddr_dl as it has deeper structure than a simple byte array, so add sa_dl_equal() and use that instead. Reviewed by: rwatson Verified with: /usr/sbin/mtest Bug found by: Jouke Witteveen MFC after: 2 weeks Revision Changes Path 1.234.2.18 +22 -3 src/sys/net/if.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 13:19:03 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFE1C16A401; Thu, 8 Mar 2007 13:19:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DEFE213C494; Thu, 8 Mar 2007 13:19:03 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28DJ3lG075766; Thu, 8 Mar 2007 13:19:03 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28DJ3IT075765; Thu, 8 Mar 2007 13:19:03 GMT (envelope-from bms) Message-Id: <200703081319.l28DJ3IT075765@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 13:19:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 13:19:04 -0000 bms 2007-03-08 13:19:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/netinet ip_output.c Log: MFC rev 1.270: Fix undirected broadcast sends for the case where SO_DONTROUTE has also been set at the socket layer, in our somewhat convoluted IPv4 source selection logic in ip_output(). IP_ONESBCAST is actually a special case of SO_DONTROUTE, as 255.255.255.255 must always be delivered on a local link with a TTL of 1. If IP_ONESBCAST has been set at the socket layer, also perform destination interface lookup for point-to-point interfaces based on the destination address of the link; previously it was not possible to use the option with such interfaces; also, the destination/broadcast address fields map to the same field within struct ifnet, which doesn't help matters. Reviewed by: andre Revision Changes Path 1.242.2.18 +14 -11 src/sys/netinet/ip_output.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 13:55:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D21E916A400; Thu, 8 Mar 2007 13:55:39 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 7760313C4A3; Thu, 8 Mar 2007 13:55:39 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id l28DrF3c026184; Thu, 8 Mar 2007 06:53:15 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Thu, 08 Mar 2007 06:53:15 -0700 (MST) Message-Id: <20070308.065315.-1962670849.imp@bsdimp.com> To: fjoe@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200703080916.l289GB7N040141@repoman.freebsd.org> References: <200703080916.l289GB7N040141@repoman.freebsd.org> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Thu, 08 Mar 2007 06:53:15 -0700 (MST) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make globals.h job.c job.h main.c make.1 make.h parse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 13:55:39 -0000 In message: <200703080916.l289GB7N040141@repoman.freebsd.org> Max Khon writes: : Additionally, system makefiles and .depend are not considered as a : Makefiles that can be rebuilt. Why not .depend? It would seem this feature is taylor made for exactly this case. Right now there are issues when .h files come and go with make depend in the kernel. Seems like this could fix that.. Warner From owner-cvs-src@FreeBSD.ORG Thu Mar 8 14:05:47 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74DE416A400; Thu, 8 Mar 2007 14:05:47 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4B73B13C48E; Thu, 8 Mar 2007 14:05:47 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28E5lIm095752; Thu, 8 Mar 2007 14:05:47 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28E5lwZ095748; Thu, 8 Mar 2007 14:05:47 GMT (envelope-from fjoe) Message-Id: <200703081405.l28E5lwZ095748@repoman.freebsd.org> From: Max Khon Date: Thu, 8 Mar 2007 14:05:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/make make.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 14:05:47 -0000 fjoe 2007-03-08 14:05:46 UTC FreeBSD src repository Modified files: usr.bin/make make.1 Log: Better English. Revision Changes Path 1.103 +1 -1 src/usr.bin/make/make.1 From owner-cvs-src@FreeBSD.ORG Thu Mar 8 14:27:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D84616A401; Thu, 8 Mar 2007 14:27:25 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 33A9513C474; Thu, 8 Mar 2007 14:27:25 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28ERPZW013508; Thu, 8 Mar 2007 14:27:25 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28ERPRX013507; Thu, 8 Mar 2007 14:27:25 GMT (envelope-from bms) Message-Id: <200703081427.l28ERPRX013507@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 14:27: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/tools/regression/netinet/ipbroadcast ipbroadcast.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 14:27:25 -0000 bms 2007-03-08 14:27:24 UTC FreeBSD src repository Modified files: tools/regression/netinet/ipbroadcast ipbroadcast.c Log: Support IP_SENDIF in -CURRENT. Revision Changes Path 1.3 +68 -10 src/tools/regression/netinet/ipbroadcast/ipbroadcast.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 14:37:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67C9B16A403; Thu, 8 Mar 2007 14:37:01 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3E2C013C481; Thu, 8 Mar 2007 14:37:01 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28Eb1hR015813; Thu, 8 Mar 2007 14:37:01 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28Eb1O1015812; Thu, 8 Mar 2007 14:37:01 GMT (envelope-from bms) Message-Id: <200703081437.l28Eb1O1015812@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 14:37:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/tools/regression/netinet/ipbroadcast ipbroadcast.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 14:37:01 -0000 bms 2007-03-08 14:37:00 UTC FreeBSD src repository Modified files: tools/regression/netinet/ipbroadcast ipbroadcast.c Log: Add -A to specify local address for bind(). Revision Changes Path 1.4 +24 -14 src/tools/regression/netinet/ipbroadcast/ipbroadcast.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 15:26:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79D3E16A402; Thu, 8 Mar 2007 15:26:55 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 68B8F13C481; Thu, 8 Mar 2007 15:26:55 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28FQtSX041147; Thu, 8 Mar 2007 15:26:55 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28FQtXZ041146; Thu, 8 Mar 2007 15:26:55 GMT (envelope-from bms) Message-Id: <200703081526.l28FQtXZ041146@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 15:26: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 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: Thu, 08 Mar 2007 15:26:55 -0000 bms 2007-03-08 15:26:54 UTC FreeBSD src repository Modified files: sys/netinet udp_usrreq.c Log: Fix IP_SENDSRCADDR semantics. * To use this option with a UDP socket, it must be bound to a local port, and INADDR_ANY, to disallow possible collisions with existing udp inpcbs bound to the same port on other interfaces at send time. * If the socket is bound to INADDR_ANY, specifying IP_SENDSRCADDR with INADDR_ANY will be rejected as it is ambiguous. * If the socket is bound to an address other than INADDR_ANY, specifying IP_SENDSRCADDR with INADDR_ANY will be disallowed by in_pcbbind_setup(). Reviewed by: silence on -net Tested with: src/tools/regression/netinet/ipbroadcast MFC after: 4 days Revision Changes Path 1.203 +11 -4 src/sys/netinet/udp_usrreq.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 16:23:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C08916A406; Thu, 8 Mar 2007 16:23:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 42BB613C461; Thu, 8 Mar 2007 16:23:05 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28GN5PX065712; Thu, 8 Mar 2007 16:23:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28GN5R6065711; Thu, 8 Mar 2007 16:23:05 GMT (envelope-from jhb) Message-Id: <200703081623.l28GN5R6065711@repoman.freebsd.org> From: John Baldwin Date: Thu, 8 Mar 2007 16:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/pci pcireg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 16:23:05 -0000 jhb 2007-03-08 16:23:05 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/pci pcireg.h Log: MFC: - Flesh out list of UART simple comms programming interfaces. - Add list of PIC base peripheral programming interfaces. - Add VPD capability register offsets. Revision Changes Path 1.45.2.7 +15 -1 src/sys/dev/pci/pcireg.h From owner-cvs-src@FreeBSD.ORG Thu Mar 8 16:39:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E438216A46C; Thu, 8 Mar 2007 16:39:25 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BA7D613C494; Thu, 8 Mar 2007 16:39:25 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28GdP4m077687; Thu, 8 Mar 2007 16:39:25 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28GdPG5077686; Thu, 8 Mar 2007 16:39:25 GMT (envelope-from sos) Message-Id: <200703081639.l28GdPG5077686@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 8 Mar 2007 16:39: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/ata ata-all.h ata-chipset.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 16:39:26 -0000 sos 2007-03-08 16:39:25 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.h ata-chipset.c Log: Cleanup the channel/phy reset code. Revision Changes Path 1.121 +1 -0 src/sys/dev/ata/ata-all.h 1.187 +143 -129 src/sys/dev/ata/ata-chipset.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 17:49:07 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C84A16A403; Thu, 8 Mar 2007 17:49:07 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 63B7C13C4A7; Thu, 8 Mar 2007 17:49:07 +0000 (UTC) (envelope-from gallatin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28Hn7qE012276; Thu, 8 Mar 2007 17:49:07 GMT (envelope-from gallatin@repoman.freebsd.org) Received: (from gallatin@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28Hn7ap012275; Thu, 8 Mar 2007 17:49:07 GMT (envelope-from gallatin) Message-Id: <200703081749.l28Hn7ap012275@repoman.freebsd.org> From: Andrew Gallatin Date: Thu, 8 Mar 2007 17:49:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mxge eth_z8e.dat.gz.uu ethp_z8e.dat.gz.uu X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 17:49:07 -0000 gallatin 2007-03-08 17:49:07 UTC FreeBSD src repository Modified files: sys/dev/mxge eth_z8e.dat.gz.uu ethp_z8e.dat.gz.uu Log: Update mxge's firmware from a fairly old version (1.4.6) to the most recent version (1.4.12). Firmware changelogs are available on Myricom's web site at: http://www.myri.com/scs/CHANGES/CHANGES.myri10ge-firmware Sponsored by: Myricom Inc. Revision Changes Path 1.4 +977 -857 src/sys/dev/mxge/eth_z8e.dat.gz.uu 1.4 +982 -864 src/sys/dev/mxge/ethp_z8e.dat.gz.uu From owner-cvs-src@FreeBSD.ORG Thu Mar 8 18:56:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64F9916A400; Thu, 8 Mar 2007 18:56:38 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3BFF413C4BA; Thu, 8 Mar 2007 18:56:38 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28Iucw1035372; Thu, 8 Mar 2007 18:56:38 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28IubBl035371; Thu, 8 Mar 2007 18:56:37 GMT (envelope-from bms) Message-Id: <200703081856.l28IubBl035371@repoman.freebsd.org> From: Bruce M Simpson Date: Thu, 8 Mar 2007 18:56: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/usr.sbin/mtest Makefile mtest.8 mtest.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 18:56:38 -0000 bms 2007-03-08 18:56:37 UTC FreeBSD src repository Modified files: usr.sbin/mtest Makefile mtest.8 mtest.c Log: Merge a slightly cleaner and SSM capable mtest(8). Submitted by: Wilbert De Graaf MFC after: 1 month Revision Changes Path 1.4 +2 -1 src/usr.sbin/mtest/Makefile 1.9 +66 -5 src/usr.sbin/mtest/mtest.8 1.8 +389 -208 src/usr.sbin/mtest/mtest.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 20:21:42 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF51116A404; Thu, 8 Mar 2007 20:21:42 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B8B7413C4B6; Thu, 8 Mar 2007 20:21:42 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28KLg2a060040; Thu, 8 Mar 2007 20:21:42 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28KLgeM060039; Thu, 8 Mar 2007 20:21:42 GMT (envelope-from sos) Message-Id: <200703082021.l28KLgeM060039@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 8 Mar 2007 20:21:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-chipset.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 20:21:43 -0000 sos 2007-03-08 20:21:42 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c Log: Refine ahci_status to be more simple. Revision Changes Path 1.188 +29 -43 src/sys/dev/ata/ata-chipset.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 21:10:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29E1316A403; Thu, 8 Mar 2007 21:10:54 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id F027013C442; Thu, 8 Mar 2007 21:10:53 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28LArg9079136; Thu, 8 Mar 2007 21:10:53 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28LArDN079135; Thu, 8 Mar 2007 21:10:53 GMT (envelope-from ru) Message-Id: <200703082110.l28LArDN079135@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 8 Mar 2007 21: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/sys/netgraph ng_eiface.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 08 Mar 2007 21:10:54 -0000 ru 2007-03-08 21:10:53 UTC FreeBSD src repository Modified files: sys/netgraph ng_eiface.c Log: ng_send_fn() can return with an error, the function of interest will never be called and OACTIVE will never be reset. Fix this. Submitted by: Vsevolod Lobko MFC after: 3 days Revision Changes Path 1.38 +2 -1 src/sys/netgraph/ng_eiface.c From owner-cvs-src@FreeBSD.ORG Thu Mar 8 22:53:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E1F316A400; Thu, 8 Mar 2007 22:53:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6990513C442; Thu, 8 Mar 2007 22:53:51 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l28MrpQ5098659; Thu, 8 Mar 2007 22:53:51 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l28MrpYd098658; Thu, 8 Mar 2007 22:53:51 GMT (envelope-from miwi) Message-Id: <200703082253.l28MrpYd098658@repoman.freebsd.org> From: Martin Wilke Date: Thu, 8 Mar 2007 22:53:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2007 22:53:51 -0000 miwi 2007-03-08 22:53:51 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: - Add my birthday Revision Changes Path 1.203 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Fri Mar 9 01:00:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC40916A405; Fri, 9 Mar 2007 01:00:10 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 76A6E13C467; Fri, 9 Mar 2007 01:00:06 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29106sP028652; Fri, 9 Mar 2007 01:00:06 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29106WK028651; Fri, 9 Mar 2007 01:00:06 GMT (envelope-from bms) Message-Id: <200703090100.l29106WK028651@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 9 Mar 2007 01:00: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/usr.sbin/mtest 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: Fri, 09 Mar 2007 01:00:11 -0000 bms 2007-03-09 01:00:06 UTC FreeBSD src repository Modified files: usr.sbin/mtest Makefile Log: Reduce WARNS count due to alignment warning on ia64. Revision Changes Path 1.5 +0 -1 src/usr.sbin/mtest/Makefile From owner-cvs-src@FreeBSD.ORG Fri Mar 9 01:30:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 80BB716A400; Fri, 9 Mar 2007 01:30:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5DB3013C481; Fri, 9 Mar 2007 01:30:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l291UOEd034495; Fri, 9 Mar 2007 01:30:24 GMT (envelope-from jkim@repoman.freebsd.org) Received: (from jkim@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l291UOB1034494; Fri, 9 Mar 2007 01:30:24 GMT (envelope-from jkim) Message-Id: <200703090130.l291UOB1034494@repoman.freebsd.org> From: Jung-uk Kim Date: Fri, 9 Mar 2007 01:30:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/bge if_bge.c if_bgereg.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, 09 Mar 2007 01:30:24 -0000 jkim 2007-03-09 01:30:23 UTC FreeBSD src repository Modified files: sys/dev/bge if_bge.c if_bgereg.h Log: Add more chipset revision IDs. Obtained from: OpenBSD Revision Changes Path 1.184 +4 -0 src/sys/dev/bge/if_bge.c 1.71 +1 -0 src/sys/dev/bge/if_bgereg.h From owner-cvs-src@FreeBSD.ORG Fri Mar 9 04:02:38 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C72E916A40A; Fri, 9 Mar 2007 04:02:38 +0000 (UTC) (envelope-from mohans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B52EF13C4A8; Fri, 9 Mar 2007 04:02:38 +0000 (UTC) (envelope-from mohans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2942cxq003129; Fri, 9 Mar 2007 04:02:38 GMT (envelope-from mohans@repoman.freebsd.org) Received: (from mohans@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2942cow003127; Fri, 9 Mar 2007 04:02:38 GMT (envelope-from mohans) Message-Id: <200703090402.l2942cow003127@repoman.freebsd.org> From: Mohan Srinivasan Date: Fri, 9 Mar 2007 04:02: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/amd64/amd64 trap.c src/sys/i386/i386 trap.c src/sys/ia64/ia64 trap.c src/sys/kern kern_thread.c src/sys/nfsclient nfs_socket.c nfs_subs.c nfs_vnops.c nfsnode.h src/sys/powerpc/powerpc trap.c src/sys/sparc64/sparc64 trap.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 04:02:38 -0000 mohans 2007-03-09 04:02:38 UTC FreeBSD src repository Modified files: sys/amd64/amd64 trap.c sys/i386/i386 trap.c sys/ia64/ia64 trap.c sys/kern kern_thread.c sys/nfsclient nfs_socket.c nfs_subs.c nfs_vnops.c nfsnode.h sys/powerpc/powerpc trap.c sys/sparc64/sparc64 trap.c sys/sys proc.h Log: Over NFS, an open() call could result in multiple over-the-wire GETATTRs being generated - one from lookup()/namei() and the other from nfs_open() (for cto consistency). This change eliminates the GETATTR in nfs_open() if an otw GETATTR was done from the namei() path. Instead of extending the vop interface, we timestamp each attr load, and use this to detect whether a GETATTR was done from namei() for this syscall. Introduces a thread-local variable that counts the syscalls made by the thread and uses as the attrload timestamp. Thanks to jhb@ and peter@ for a discussion on thread state that could be used as the timestamp with minimal overhead. Revision Changes Path 1.314 +2 -0 src/sys/amd64/amd64/trap.c 1.299 +2 -0 src/sys/i386/i386/trap.c 1.126 +2 -0 src/sys/ia64/ia64/trap.c 1.241 +1 -0 src/sys/kern/kern_thread.c 1.151 +1 -1 src/sys/nfsclient/nfs_socket.c 1.145 +9 -0 src/sys/nfsclient/nfs_subs.c 1.274 +10 -1 src/sys/nfsclient/nfs_vnops.c 1.60 +11 -0 src/sys/nfsclient/nfsnode.h 1.64 +2 -0 src/sys/powerpc/powerpc/trap.c 1.87 +3 -0 src/sys/sparc64/sparc64/trap.c 1.473 +1 -0 src/sys/sys/proc.h From owner-cvs-src@FreeBSD.ORG Fri Mar 9 04:07:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C901216A402; Fri, 9 Mar 2007 04:07:54 +0000 (UTC) (envelope-from mohans@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A131713C47E; Fri, 9 Mar 2007 04:07:54 +0000 (UTC) (envelope-from mohans@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2947sKW004843; Fri, 9 Mar 2007 04:07:54 GMT (envelope-from mohans@repoman.freebsd.org) Received: (from mohans@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2947sqb004842; Fri, 9 Mar 2007 04:07:54 GMT (envelope-from mohans) Message-Id: <200703090407.l2947sqb004842@repoman.freebsd.org> From: Mohan Srinivasan Date: Fri, 9 Mar 2007 04:07: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/nfsclient nfs_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 04:07:54 -0000 mohans 2007-03-09 04:07:54 UTC FreeBSD src repository Modified files: sys/nfsclient nfs_socket.c Log: Back out a chance to nfs_timer() that inadvertantly crept in the last checkin :( Revision Changes Path 1.152 +1 -1 src/sys/nfsclient/nfs_socket.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 05:22:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C5E0516A4DE; Fri, 9 Mar 2007 05:22:10 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9C27013C428; Fri, 9 Mar 2007 05:22:10 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l295MALp028604; Fri, 9 Mar 2007 05:22:10 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l295MAsr028603; Fri, 9 Mar 2007 05:22:10 GMT (envelope-from pjd) Message-Id: <200703090522.l295MAsr028603@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Fri, 9 Mar 2007 05:22: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/kern kern_jail.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 05:22:10 -0000 pjd 2007-03-09 05:22:10 UTC FreeBSD src repository Modified files: sys/kern kern_jail.c Log: Minor simplification. Revision Changes Path 1.62 +1 -3 src/sys/kern/kern_jail.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 05:35:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B30F816A401; Fri, 9 Mar 2007 05:35:20 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 889BD13C467; Fri, 9 Mar 2007 05:35:20 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l295ZKqG030805; Fri, 9 Mar 2007 05:35:20 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l295ZKN9030804; Fri, 9 Mar 2007 05:35:20 GMT (envelope-from ariff) Message-Id: <200703090535.l295ZKN9030804@repoman.freebsd.org> From: Ariff Abdullah Date: Fri, 9 Mar 2007 05:35:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci maestro3.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 05:35:20 -0000 ariff 2007-03-09 05:35:20 UTC FreeBSD src repository Modified files: sys/dev/sound/pci maestro3.c Log: Fix long standing multi playback/recording issues, caused by excessive interrupt clock timer reset, screwing interrupt generation for already active channels. Track moving DMA pointer and call buffer interrupt on each blocksize boundary. PR: kern/109791 MFC after: 3 days Revision Changes Path 1.31 +134 -42 src/sys/dev/sound/pci/maestro3.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 09:33:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36AF016A401; Fri, 9 Mar 2007 09:33:20 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 087EC13C47E; Fri, 9 Mar 2007 09:33:20 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l299XJtJ094202; Fri, 9 Mar 2007 09:33:19 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l299XJAP094201; Fri, 9 Mar 2007 09:33:19 GMT (envelope-from trhodes) Message-Id: <200703090933.l299XJAP094201@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 9 Mar 2007 09:33:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/daemon daemon.8 daemon.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 09:33:20 -0000 trhodes 2007-03-09 09:33:19 UTC FreeBSD src repository Modified files: usr.sbin/daemon daemon.8 daemon.c Log: Add support for dropping privileges to a specified user and/or group. PR: 108523 Submitted by: Dmitri Alenitchev (original version) Reviewed by: mpp (first reply to PR) Revision Changes Path 1.8 +10 -1 src/usr.sbin/daemon/daemon.8 1.5 +46 -4 src/usr.sbin/daemon/daemon.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 09:40:24 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F3B316A401; Fri, 9 Mar 2007 09:40:24 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3151D13C4B4; Fri, 9 Mar 2007 09:40:24 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l299eOBD094772; Fri, 9 Mar 2007 09:40:24 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l299eOSK094771; Fri, 9 Mar 2007 09:40:24 GMT (envelope-from trhodes) Message-Id: <200703090940.l299eOSK094771@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 9 Mar 2007 09:40:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.sbin/daemon daemon.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 09:40:24 -0000 trhodes 2007-03-09 09:40:24 UTC FreeBSD src repository Modified files: usr.sbin/daemon daemon.c Log: Initialize *pfh to NULL to quiet a gcc warning, not part of my original commit because it was not part of the new code. Revision Changes Path 1.6 +1 -1 src/usr.sbin/daemon/daemon.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 09:54:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A448D16A40B; Fri, 9 Mar 2007 09:54:13 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 41CE113C4BA; Fri, 9 Mar 2007 09:54:08 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l299s8Zg097791; Fri, 9 Mar 2007 09:54:08 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l299s8j7097790; Fri, 9 Mar 2007 09:54:08 GMT (envelope-from rafan) Message-Id: <200703090954.l299s8j7097790@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 9 Mar 2007 09:54:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/ncurses Makefile.inc config.mk src/lib/ncurses/form Makefile src/lib/ncurses/menu Makefile src/lib/ncurses/ncurses Makefile src/lib/ncurses/panel 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: Fri, 09 Mar 2007 09:54:13 -0000 rafan 2007-03-09 09:54:07 UTC FreeBSD src repository Modified files: lib/ncurses Makefile.inc config.mk lib/ncurses/form Makefile lib/ncurses/menu Makefile lib/ncurses/ncurses Makefile lib/ncurses/panel Makefile Log: - style.Makefile(9) fix - first line is $FreeBSD$ - Reorder special variables: DPADD, LPADD, CFLAGS - Use = instead of += for variables that are initially empty - Use space instead of tab after : - Use one tab after = - Use .SUFFIXES for section 3 manual page which simplifies Makefile a lot - Use SHAREDIR instead of /usr/share - Remove SRCDIR in INCS since we set .PATH properly - Use plural in variable name when it stands for more that one source file Reviewed by: ru Approved by: delphij (mentor) Revision Changes Path 1.2 +2 -1 src/lib/ncurses/Makefile.inc 1.2 +2 -2 src/lib/ncurses/config.mk 1.12 +152 -153 src/lib/ncurses/form/Makefile 1.14 +126 -127 src/lib/ncurses/menu/Makefile 1.86 +607 -607 src/lib/ncurses/ncurses/Makefile 1.13 +53 -54 src/lib/ncurses/panel/Makefile From owner-cvs-src@FreeBSD.ORG Fri Mar 9 09:58:21 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA68816A400; Fri, 9 Mar 2007 09:58:21 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [194.58.105.35]) by mx1.freebsd.org (Postfix) with ESMTP id 5AEF213C494; Fri, 9 Mar 2007 09:58:21 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.44 (FreeBSD)) id 1HPbGY-0005aY-H7; Fri, 09 Mar 2007 12:19:58 +0300 Date: Fri, 9 Mar 2007 12:19:58 +0300 From: Slawa Olhovchenkov To: Christian Brueffer Message-ID: <20070309091958.GA79759%slw@zxy.spb.ru> References: <200703051152.l25BqILk020254@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200703051152.l25BqILk020254@repoman.freebsd.org> User-Agent: Mutt/1.5.11 X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 ipw.4 iwi.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 09:58:21 -0000 On Mon, Mar 05, 2007 at 11:52:17AM +0000, Christian Brueffer wrote: > brueffer 2007-03-05 11:52:17 UTC > > FreeBSD src repository > > Modified files: > share/man/man4 ipw.4 iwi.4 > Log: > The firmware files are included in the base system now, reflect this here.. > > While here, remove Xrefs to all other wlan drivers except the Intel ones, > these often get confused. Also remove pointers to the old ipw and iwi webpages, > they don't include any useful information that's not in the manpages yet. What about drivers for software radio switches at http://damien.bergamini.free.fr/ipw/download.html? From owner-cvs-src@FreeBSD.ORG Fri Mar 9 12:11:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFEF516A404; Fri, 9 Mar 2007 12:11:58 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B66A113C4AA; Fri, 9 Mar 2007 12:11:58 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29CBwaM023509; Fri, 9 Mar 2007 12:11:58 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29CBw5T023508; Fri, 9 Mar 2007 12:11:58 GMT (envelope-from rafan) Message-Id: <200703091211.l29CBw5T023508@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 9 Mar 2007 12:11:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src Makefile.inc1 src/lib/ncurses Makefile config.mk src/lib/ncurses/form Makefile src/lib/ncurses/formw Makefile src/lib/ncurses/menu Makefile src/lib/ncurses/menuw Makefile src/lib/ncurses/ncurses Makefile ncurses_cfg.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, 09 Mar 2007 12:11:58 -0000 rafan 2007-03-09 12:11:58 UTC FreeBSD src repository Modified files: . Makefile.inc1 lib/ncurses Makefile config.mk lib/ncurses/form Makefile lib/ncurses/menu Makefile lib/ncurses/ncurses Makefile ncurses_cfg.h lib/ncurses/panel Makefile share/mk bsd.libnames.mk Added files: lib/ncurses/formw Makefile lib/ncurses/menuw Makefile lib/ncurses/ncursesw Makefile lib/ncurses/panelw Makefile Log: Enable ncurses wide character support Approved by: delphij (mentor) Tested by: kris on pointyhat (early version), current@ Revision Changes Path 1.570 +4 -2 src/Makefile.inc1 1.2 +2 -1 src/lib/ncurses/Makefile 1.3 +7 -0 src/lib/ncurses/config.mk 1.13 +3 -3 src/lib/ncurses/form/Makefile 1.1 +5 -0 src/lib/ncurses/formw/Makefile (new) 1.15 +3 -3 src/lib/ncurses/menu/Makefile 1.1 +5 -0 src/lib/ncurses/menuw/Makefile (new) 1.87 +143 -13 src/lib/ncurses/ncurses/Makefile 1.8 +12 -1 src/lib/ncurses/ncurses/ncurses_cfg.h 1.1 +7 -0 src/lib/ncurses/ncursesw/Makefile (new) 1.14 +3 -3 src/lib/ncurses/panel/Makefile 1.1 +5 -0 src/lib/ncurses/panelw/Makefile (new) 1.101 +1 -0 src/share/mk/bsd.libnames.mk From owner-cvs-src@FreeBSD.ORG Fri Mar 9 12:12:56 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3436C16A405; Fri, 9 Mar 2007 12:12:56 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0561B13C481; Fri, 9 Mar 2007 12:12:56 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29CCtCq023782; Fri, 9 Mar 2007 12:12:55 GMT (envelope-from rafan@repoman.freebsd.org) Received: (from rafan@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29CCtFZ023780; Fri, 9 Mar 2007 12:12:55 GMT (envelope-from rafan) Message-Id: <200703091212.l29CCtFZ023780@repoman.freebsd.org> From: Rong-En Fan Date: Fri, 9 Mar 2007 12:12: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/sys param.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, 09 Mar 2007 12:12:56 -0000 rafan 2007-03-09 12:12:55 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for ncurses wide character support Approved by: delphij (mentor, implicit) Revision Changes Path 1.287 +1 -1 src/sys/sys/param.h From owner-cvs-src@FreeBSD.ORG Fri Mar 9 12:45:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EFC516A402; Fri, 9 Mar 2007 12:45:02 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4722213C491; Fri, 9 Mar 2007 12:45:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Cj1P6028984; Fri, 9 Mar 2007 12:45:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29Cj1C0028983; Fri, 9 Mar 2007 12:45:01 GMT (envelope-from ru) Message-Id: <200703091245.l29Cj1C0028983@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 9 Mar 2007 12:45:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/ipcrm ipcrm.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 12:45:02 -0000 ru 2007-03-09 12:45:01 UTC FreeBSD src repository Modified files: usr.bin/ipcrm ipcrm.1 Log: Spell "id" as "ID". Revision Changes Path 1.14 +4 -4 src/usr.bin/ipcrm/ipcrm.1 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 13:54:26 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED18416A400; Fri, 9 Mar 2007 13:54:26 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D4A6913C478; Fri, 9 Mar 2007 13:54:26 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29DsQtA049562; Fri, 9 Mar 2007 13:54:26 GMT (envelope-from kib@repoman.freebsd.org) Received: (from kib@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29DsQRj049561; Fri, 9 Mar 2007 13:54:26 GMT (envelope-from kib) Message-Id: <200703091354.l29DsQRj049561@repoman.freebsd.org> From: Konstantin Belousov Date: Fri, 9 Mar 2007 13:54: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/kern kern_prot.c vfs_export.c src/sys/nfsserver nfs_srvsubs.c src/sys/sys ucred.h src/sys/ufs/ufs ufs_vnops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 13:54:27 -0000 kib 2007-03-09 13:54:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/kern kern_prot.c vfs_export.c sys/nfsserver nfs_srvsubs.c sys/sys ucred.h sys/ufs/ufs ufs_vnops.c Log: MFC rev. 1.201 src/sys/kern/kern_prot.c rev. 1.334 src/sys/kern/vfs_export.c rev. 1.95 src/sys/nfsserver/nfs_srvsock.c rev. 1.137 src/sys/nfsserver/nfs_srvsubs.c rev. 1.53 src/sys/sys/ucred.h rev. 1.273 src/sys/ufs/ufs/ufs_vnops.c Use the refcount API to manage the reference count for user credentials rather than using pool mutexes. MFC changes: The cr_mtxp field of struct ucred is preserved as padding to keep structure size intact. nfs_srvsock.c change is nullified by rev. 1.96, that was MFCed as rev. 1.94.2.2. OKed by: jhb LOR: 187 Revision Changes Path 1.200.2.2 +6 -16 src/sys/kern/kern_prot.c 1.333.2.2 +3 -2 src/sys/kern/vfs_export.c 1.136.2.7 +2 -1 src/sys/nfsserver/nfs_srvsubs.c 1.52.2.1 +1 -1 src/sys/sys/ucred.h 1.271.2.9 +3 -2 src/sys/ufs/ufs/ufs_vnops.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 14:36:19 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2063916A400; Fri, 9 Mar 2007 14:36:19 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E597C13C428; Fri, 9 Mar 2007 14:36:18 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29EaIXP057757; Fri, 9 Mar 2007 14:36:18 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29EaIvV057756; Fri, 9 Mar 2007 14:36:18 GMT (envelope-from ru) Message-Id: <200703091436.l29EaIvV057756@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 9 Mar 2007 14:36:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/brandelf brandelf.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 14:36:19 -0000 ru 2007-03-09 14:36:18 UTC FreeBSD src repository Modified files: usr.bin/brandelf brandelf.1 Log: Fix markup. Revision Changes Path 1.17 +14 -11 src/usr.bin/brandelf/brandelf.1 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 15:49:58 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 568DE16A406; Fri, 9 Mar 2007 15:49:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2AEA113C494; Fri, 9 Mar 2007 15:49:58 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29FnwNH070171; Fri, 9 Mar 2007 15:49:58 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29FnvZE070170; Fri, 9 Mar 2007 15:49:57 GMT (envelope-from jhb) Message-Id: <200703091549.l29FnvZE070170@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 15:49:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/amd64/amd64 mptable.c src/sys/i386/i386 mptable.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 15:49:58 -0000 jhb 2007-03-09 15:49:57 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mptable.c sys/i386/i386 mptable.c Log: Defer calling lapic_init() until we've completed the 'MPTable: <...>' printf. Otherwise, printfs inside of lapic_init() (such as during a verbose boot) can uglify the output. Revision Changes Path 1.239 +4 -2 src/sys/amd64/amd64/mptable.c 1.244 +4 -2 src/sys/i386/i386/mptable.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:04:45 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47D4616A403; Fri, 9 Mar 2007 16:04:45 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1E35D13C428; Fri, 9 Mar 2007 16:04:45 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29G4idL074356; Fri, 9 Mar 2007 16:04:44 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29G4iSP074355; Fri, 9 Mar 2007 16:04:44 GMT (envelope-from jhb) Message-Id: <200703091604.l29G4iSP074355@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:04: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/kern kern_mutex.c kern_rwlock.c kern_sx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:04:45 -0000 jhb 2007-03-09 16:04:44 UTC FreeBSD src repository Modified files: sys/kern kern_mutex.c kern_rwlock.c kern_sx.c Log: Use C99-style struct member initialization for lock classes. Revision Changes Path 1.184 +6 -6 src/sys/kern/kern_mutex.c 1.17 +3 -3 src/sys/kern/kern_rwlock.c 1.37 +3 -3 src/sys/kern/kern_sx.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:19:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43DA816A403; Fri, 9 Mar 2007 16:19:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1B1F813C4B5; Fri, 9 Mar 2007 16:19:35 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29GJYBL076390; Fri, 9 Mar 2007 16:19:34 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29GJY5x076389; Fri, 9 Mar 2007 16:19:34 GMT (envelope-from jhb) Message-Id: <200703091619.l29GJY5x076389@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:19:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_lock.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:19:35 -0000 jhb 2007-03-09 16:19:34 UTC FreeBSD src repository Modified files: sys/kern kern_lock.c Log: Use C99-style struct member initialization for lock classes. Revision Changes Path 1.105 +3 -3 src/sys/kern/kern_lock.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:21:40 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C079716A403; Fri, 9 Mar 2007 16:21:40 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 98F5F13C467; Fri, 9 Mar 2007 16:21:40 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29GLeN7077094; Fri, 9 Mar 2007 16:21:40 GMT (envelope-from emaste@repoman.freebsd.org) Received: (from emaste@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29GLeUI077093; Fri, 9 Mar 2007 16:21:40 GMT (envelope-from emaste) Message-Id: <200703091621.l29GLeUI077093@repoman.freebsd.org> From: Ed Maste Date: Fri, 9 Mar 2007 16:21:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/fstat fstat.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:21:40 -0000 emaste 2007-03-09 16:21:40 UTC FreeBSD src repository Modified files: usr.bin/fstat fstat.c Log: KERN_PROC_ALL produces a kinfo_proc for each thread in a process, which caused fstat to produce duplicated output for threaded processes. Instead use KERN_PROC_PROC to get just one kinfo_proc per process. MFC After: 2 weeks Revision Changes Path 1.64 +1 -1 src/usr.bin/fstat/fstat.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:27:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E69E916A403; Fri, 9 Mar 2007 16:27:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D6A4213C474; Fri, 9 Mar 2007 16:27:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29GRBQm078079; Fri, 9 Mar 2007 16:27:11 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29GRB8X078078; Fri, 9 Mar 2007 16:27:11 GMT (envelope-from jhb) Message-Id: <200703091627.l29GRB8X078078@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:27: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/kern kern_lock.c kern_mutex.c kern_rwlock.c kern_sx.c src/sys/sys lock.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, 09 Mar 2007 16:27:12 -0000 jhb 2007-03-09 16:27:11 UTC FreeBSD src repository Modified files: sys/kern kern_lock.c kern_mutex.c kern_rwlock.c kern_sx.c sys/sys lock.h Log: Add two new function pointers 'lc_lock' and 'lc_unlock' to lock classes. These functions are intended to be used to drop a lock and then reacquire it when doing an sleep such as msleep(9). Both functions accept a 'struct lock_object *' as their first parameter. The 'lc_unlock' function returns an integer that is then passed as the second paramter to the subsequent 'lc_lock' function. This can be used to communicate state. For example, sx locks and rwlocks use this to indicate if the lock was share/read locked vs exclusive/write locked. Currently, spin mutexes and lockmgr locks do not provide working lc_lock and lc_unlock functions. Revision Changes Path 1.106 +19 -3 src/sys/kern/kern_lock.c 1.185 +40 -0 src/sys/kern/kern_mutex.c 1.18 +33 -0 src/sys/kern/kern_rwlock.c 1.38 +33 -0 src/sys/kern/kern_sx.c 1.65 +9 -0 src/sys/sys/lock.h From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:29:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67CE016A402; Fri, 9 Mar 2007 16:29:16 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3F9FE13C467; Fri, 9 Mar 2007 16:29:16 +0000 (UTC) (envelope-from xride@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29GTGn2078223; Fri, 9 Mar 2007 16:29:16 GMT (envelope-from xride@repoman.freebsd.org) Received: (from xride@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29GTG3K078222; Fri, 9 Mar 2007 16:29:16 GMT (envelope-from xride) Message-Id: <200703091629.l29GTG3K078222@repoman.freebsd.org> From: Soeren Straarup Date: Fri, 9 Mar 2007 16:29: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/usr.sbin/bsnmpd/modules/snmp_hostres hostres_device_tbl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:29:16 -0000 xride 2007-03-09 16:29:15 UTC FreeBSD src repository (ports committer) Modified files: usr.sbin/bsnmpd/modules/snmp_hostres hostres_device_tbl.c Log: ! is a generic info message Reviewed by: harti Approved by: harti MFC after: 2 weeks Revision Changes Path 1.4 +1 -0 src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:45:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E00316A402; Fri, 9 Mar 2007 16:45:00 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id DAEA713C467; Fri, 9 Mar 2007 16:44:59 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Gix0N081321; Fri, 9 Mar 2007 16:44:59 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29Gix7r081319; Fri, 9 Mar 2007 16:44:59 GMT (envelope-from jhb) Message-Id: <200703091644.l29Gix7r081319@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:44:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile rwlock.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:45:00 -0000 jhb 2007-03-09 16:44:58 UTC FreeBSD src repository Modified files: share/man/man9 Makefile rwlock.9 Log: - Sort rwlock functions similar to the order in mutex(9). - Add a missing MLINK. Revision Changes Path 1.297 +1 -0 src/share/man/man9/Makefile 1.7 +9 -6 src/share/man/man9/rwlock.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:52:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C578C16A405; Fri, 9 Mar 2007 16:52:27 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9F64E13C4AC; Fri, 9 Mar 2007 16:52:27 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29GqRF4090756; Fri, 9 Mar 2007 16:52:27 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29GqRL9090753; Fri, 9 Mar 2007 16:52:27 GMT (envelope-from jhb) Message-Id: <200703091652.l29GqRL9090753@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:52: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/share/man/man9 Makefile sx.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:52:27 -0000 jhb 2007-03-09 16:52:26 UTC FreeBSD src repository Modified files: share/man/man9 Makefile sx.9 Log: - Sort functions in the order that rwlock(9) and mutex(9) use. - Markup sx_unlock() as a function rather than saying it is a macro. The macro part is an implementation detail, and all the other sx_*lock() functions are actually macros, too. - Use the same style as rwlock(9) and mutex(9) to markup sx_assert() and SX_SYSINIT() with respect to headers and kernel options. - Add a missing MLINK. Revision Changes Path 1.298 +1 -0 src/share/man/man9/Makefile 1.35 +9 -10 src/share/man/man9/sx.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:54:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C8DF716A400; Fri, 9 Mar 2007 16:54:04 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A2B4E13C428; Fri, 9 Mar 2007 16:54:04 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Gs4P8091196; Fri, 9 Mar 2007 16:54:04 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29Gs3FL091195; Fri, 9 Mar 2007 16:54:03 GMT (envelope-from jhb) Message-Id: <200703091654.l29Gs3FL091195@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:54:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 mutex.9 rwlock.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:54:04 -0000 jhb 2007-03-09 16:54:03 UTC FreeBSD src repository Modified files: share/man/man9 mutex.9 rwlock.9 Log: Place mtx_destroy() and rw_destroy() right after mtx_init() and rw_init() to match sx(9) and condvar(9). Revision Changes Path 1.53 +3 -3 src/share/man/man9/mutex.9 1.8 +3 -3 src/share/man/man9/rwlock.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 16:59:27 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D57816A403; Fri, 9 Mar 2007 16:59:27 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 76EFE13C442; Fri, 9 Mar 2007 16:59:27 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29GxRDq091469; Fri, 9 Mar 2007 16:59:27 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29GxRXN091468; Fri, 9 Mar 2007 16:59:27 GMT (envelope-from jhb) Message-Id: <200703091659.l29GxRXN091468@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 16:59:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 Makefile condvar.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 16:59:27 -0000 jhb 2007-03-09 16:59:27 UTC FreeBSD src repository Modified files: share/man/man9 Makefile condvar.9 Log: - Document cv_wait_unlock(9). - Don't claim that the mutex is atomically reacquired when a cv_wait routine returns. There's nothing atomic or magical about the lock reacquire. The only magic is that we atomically drop the lock by placing the thread on the sleep queue before dropping the lock. Revision Changes Path 1.299 +1 -0 src/share/man/man9/Makefile 1.13 +10 -1 src/share/man/man9/condvar.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 17:52:11 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02CA916A401; Fri, 9 Mar 2007 17:52:11 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D0EA613C467; Fri, 9 Mar 2007 17:52:10 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29HqA6K001977; Fri, 9 Mar 2007 17:52:10 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29HqA1A001973; Fri, 9 Mar 2007 17:52:10 GMT (envelope-from jhb) Message-Id: <200703091752.l29HqA1A001973@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 17: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/man/man9 condvar.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 17:52:11 -0000 jhb 2007-03-09 17:52:10 UTC FreeBSD src repository Modified files: share/man/man9 condvar.9 Log: Correct descriptions of EINTR and ERESTART errors. Masked signals don't interrupt sleeps. Rather, unmasked signals interrupt restarts and can either interrupt the system call by having it return EINTR in userland or force the system call to be restarted. Revision Changes Path 1.14 +2 -2 src/share/man/man9/condvar.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 17:53:16 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97F9C16A400; Fri, 9 Mar 2007 17:53:16 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 71C2213C4A5; Fri, 9 Mar 2007 17:53:16 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29HrGSZ002238; Fri, 9 Mar 2007 17:53:16 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29HrGnm002237; Fri, 9 Mar 2007 17:53:16 GMT (envelope-from jhb) Message-Id: <200703091753.l29HrGnm002237@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 17:53: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/share/man/man9 condvar.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 17:53:16 -0000 jhb 2007-03-09 17:53:16 UTC FreeBSD src repository Modified files: share/man/man9 condvar.9 Log: Fix a typo in the last that claimed that only masked signals were caught. Revision Changes Path 1.15 +2 -2 src/share/man/man9/condvar.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 17:56:06 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2902216A404; Fri, 9 Mar 2007 17:56:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 02D2C13C47E; Fri, 9 Mar 2007 17:56:06 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Hu5fH002576; Fri, 9 Mar 2007 17:56:05 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29Hu5Zc002575; Fri, 9 Mar 2007 17:56:05 GMT (envelope-from jhb) Message-Id: <200703091756.l29Hu5Zc002575@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 17:56:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/share/man/man9 condvar.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 17:56:06 -0000 jhb 2007-03-09 17:56:05 UTC FreeBSD src repository Modified files: share/man/man9 condvar.9 Log: Oof, it is not my day. Unswap the descriptions of EINTR and ERESTART. Revision Changes Path 1.16 +2 -2 src/share/man/man9/condvar.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 18:06:37 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 858C316A404; Fri, 9 Mar 2007 18:06:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5194313C48D; Fri, 9 Mar 2007 18:06:37 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29I6btX005330; Fri, 9 Mar 2007 18:06:37 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29I6b6P005329; Fri, 9 Mar 2007 18:06:37 GMT (envelope-from jhb) Message-Id: <200703091806.l29I6b6P005329@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 18:06: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/share/man/man9 sleepqueue.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 18:06:37 -0000 jhb 2007-03-09 18:06:37 UTC FreeBSD src repository Modified files: share/man/man9 sleepqueue.9 Log: Document SLEEPQ_PAUSE. Revision Changes Path 1.14 +4 -1 src/share/man/man9/sleepqueue.9 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 18:41:45 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2946316A400; Fri, 9 Mar 2007 18:41:45 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id CA3FB13C467; Fri, 9 Mar 2007 18:41:44 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from zion.baldwin.cx (zion.baldwin.cx [192.168.0.7]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l29IfgQ5038435; Fri, 9 Mar 2007 13:41:42 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: src-committers@freebsd.org Date: Fri, 9 Mar 2007 13:08:59 -0500 User-Agent: KMail/1.9.4 References: <200703091752.l29HqA1A001973@repoman.freebsd.org> In-Reply-To: <200703091752.l29HqA1A001973@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703091309.00399.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [192.168.0.1]); Fri, 09 Mar 2007 13:41:42 -0500 (EST) X-Virus-Scanned: ClamAV 0.88.3/2788/Fri Mar 9 13:27:23 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man9 condvar.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 18:41:45 -0000 On Friday 09 March 2007 12:52, John Baldwin wrote: > jhb 2007-03-09 17:52:10 UTC > > FreeBSD src repository > > Modified files: > share/man/man9 condvar.9 > Log: > Correct descriptions of EINTR and ERESTART errors. Masked signals don't > interrupt sleeps. Rather, unmasked signals interrupt restarts and can > either interrupt the system call by having it return EINTR in userland or > force the system call to be restarted. s/restarts/sleeps/ -- John Baldwin From owner-cvs-src@FreeBSD.ORG Fri Mar 9 18:45:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9007716A406; Fri, 9 Mar 2007 18:45:46 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 67A1613C48E; Fri, 9 Mar 2007 18:45:46 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Ijk7Q011893; Fri, 9 Mar 2007 18:45:46 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29IjkBK011892; Fri, 9 Mar 2007 18:45:46 GMT (envelope-from sos) Message-Id: <200703091845.l29IjkBK011892@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 9 Mar 2007 18:45:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/ata ata-chipset.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 18:45:46 -0000 sos 2007-03-09 18:45:45 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c Log: More SATA phy/reset cleanup and simplification. Fix a long standing bogon in the sii_reset code. Revision Changes Path 1.189 +77 -193 src/sys/dev/ata/ata-chipset.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 19:34:55 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9FD916A403; Fri, 9 Mar 2007 19:34:55 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B115113C461; Fri, 9 Mar 2007 19:34:55 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29JYtdv020631; Fri, 9 Mar 2007 19:34:55 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29JYthD020630; Fri, 9 Mar 2007 19:34:55 GMT (envelope-from thompsa) Message-Id: <200703091934.l29JYthD020630@repoman.freebsd.org> From: Andrew Thompson Date: Fri, 9 Mar 2007 19:34: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/net bridgestp.c bridgestp.h if_bridge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 19:34:56 -0000 thompsa 2007-03-09 19:34:55 UTC FreeBSD src repository Modified files: sys/net bridgestp.c bridgestp.h if_bridge.c Log: Change the passing of callbacks to a struct in case this needs to be extended in the future. Revision Changes Path 1.35 +3 -4 src/sys/net/bridgestp.c 1.13 +5 -1 src/sys/net/bridgestp.h 1.94 +6 -1 src/sys/net/if_bridge.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 19:43:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1763816A402; Fri, 9 Mar 2007 19:43:43 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E4F4313C442; Fri, 9 Mar 2007 19:43:42 +0000 (UTC) (envelope-from bms@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29JhgK9022181; Fri, 9 Mar 2007 19:43:42 GMT (envelope-from bms@repoman.freebsd.org) Received: (from bms@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29Jhg6J022180; Fri, 9 Mar 2007 19:43:42 GMT (envelope-from bms) Message-Id: <200703091943.l29Jhg6J022180@repoman.freebsd.org> From: Bruce M Simpson Date: Fri, 9 Mar 2007 19:43:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libc/sys getsockopt.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: Fri, 09 Mar 2007 19:43:43 -0000 bms 2007-03-09 19:43:42 UTC FreeBSD src repository Modified files: lib/libc/sys getsockopt.2 Log: Wordsmithery. Pointed out by: ru Revision Changes Path 1.38 +1 -1 src/lib/libc/sys/getsockopt.2 From owner-cvs-src@FreeBSD.ORG Fri Mar 9 20:14:08 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EFAD16A402; Fri, 9 Mar 2007 20:14:08 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4770F13C441; Fri, 9 Mar 2007 20:14:08 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29KE8rj027842; Fri, 9 Mar 2007 20:14:08 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29KE8t9027841; Fri, 9 Mar 2007 20:14:08 GMT (envelope-from bmah) Message-Id: <200703092014.l29KE8t9027841@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 9 Mar 2007 20:14:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/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: Fri, 09 Mar 2007 20:14:08 -0000 bmah 2007-03-09 20:14:07 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release notes: GEOM_MULTIPATH, unionfs reimplementation (+MFC), addr2ascii()/ascii2addr() removal, dump(8)/restore(8) extended attributes, objformat(1) gone, vnconfig(8) gone, ncurses wide character support. Revision Changes Path 1.1000 +32 -1 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Fri Mar 9 20:15:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 15D5016A405; Fri, 9 Mar 2007 20:15:00 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E2D7713C4A8; Fri, 9 Mar 2007 20:14:59 +0000 (UTC) (envelope-from jkois@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29KExND028049; Fri, 9 Mar 2007 20:14:59 GMT (envelope-from jkois@repoman.freebsd.org) Received: (from jkois@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29KExu3028048; Fri, 9 Mar 2007 20:14:59 GMT (envelope-from jkois) Message-Id: <200703092014.l29KExu3028048@repoman.freebsd.org> From: Johann Kois Date: Fri, 9 Mar 2007 20:14:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 20:15:00 -0000 jkois 2007-03-09 20:14:59 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my record. Discussed with and approved by: remko@ Revision Changes Path 1.204 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Fri Mar 9 20:16:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1D9D16A405; Fri, 9 Mar 2007 20:16:50 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6EAC413C491; Fri, 9 Mar 2007 20:16:50 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29KGoQJ028246; Fri, 9 Mar 2007 20:16:50 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29KGorx028245; Fri, 9 Mar 2007 20:16:50 GMT (envelope-from bmah) Message-Id: <200703092016.l29KGorx028245@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 9 Mar 2007 20:16: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/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: Fri, 09 Mar 2007 20:16:50 -0000 bmah 2007-03-09 20:16:50 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: s/filesystem/file system/ in six places for consistency. Revision Changes Path 1.1001 +6 -6 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Fri Mar 9 20:31:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9C3016A400; Fri, 9 Mar 2007 20:31:46 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4A913C467; Fri, 9 Mar 2007 20:31:46 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29KVkIY030607; Fri, 9 Mar 2007 20:31:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29KVkG9030606; Fri, 9 Mar 2007 20:31:46 GMT (envelope-from ru) Message-Id: <200703092031.l29KVkG9030606@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 9 Mar 2007 20:31:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 20:31:46 -0000 ru 2007-03-09 20:31:46 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Sort (once again) by month/day/year/login. Revision Changes Path 1.205 +9 -9 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Fri Mar 9 21:04:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE27F16A405; Fri, 9 Mar 2007 21:04:50 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8710F13C4A3; Fri, 9 Mar 2007 21:04:50 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29L4oDx046070; Fri, 9 Mar 2007 21:04:50 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29L4ogw046069; Fri, 9 Mar 2007 21:04:50 GMT (envelope-from julian) Message-Id: <200703092104.l29L4ogw046069@repoman.freebsd.org> From: Julian Elischer Date: Fri, 9 Mar 2007 21:04:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netgraph ng_base.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 21:04:50 -0000 julian 2007-03-09 21:04:50 UTC FreeBSD src repository Modified files: sys/netgraph ng_base.c Log: ng_apply_item should be void. It is called from the interrupt source or from whoever has dequeued the item from the queue. Generally they have no interest in the result, and even if it is called by the queuer, it should still pretend that it was queued. The queuer should be assuming that the call was queued and giving them the false confidence that they are getting status leads to hard to find bugs. Make it a void and remove all the code that tried to return status through it. Revision Changes Path 1.127 +85 -14 src/sys/netgraph/ng_base.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 22:23:39 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED96A16A400; Fri, 9 Mar 2007 22:23:39 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id C6F0813C441; Fri, 9 Mar 2007 22:23:39 +0000 (UTC) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29MNdw8060714; Fri, 9 Mar 2007 22:23:39 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29MNdfE060713; Fri, 9 Mar 2007 22:23:39 GMT (envelope-from sos) Message-Id: <200703092223.l29MNdfE060713@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 9 Mar 2007 22:23:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/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: Fri, 09 Mar 2007 22:23:40 -0000 sos 2007-03-09 22:23:39 UTC FreeBSD src repository Modified files: sys/dev/ata ata-chipset.c ata-pci.h Log: Add support for the Silicon Image SiI 3124 and SiI 3132. HW donated by: Adriaan de Groot Revision Changes Path 1.190 +350 -17 src/sys/dev/ata/ata-chipset.c 1.76 +3 -0 src/sys/dev/ata/ata-pci.h From owner-cvs-src@FreeBSD.ORG Fri Mar 9 22:41:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5404516A409; Fri, 9 Mar 2007 22:41:02 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4216913C4B5; Fri, 9 Mar 2007 22:41:02 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Mf2h4062861; Fri, 9 Mar 2007 22:41:02 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29Mf2Ds062856; Fri, 9 Mar 2007 22:41:02 GMT (envelope-from jhb) Message-Id: <200703092241.l29Mf2Ds062856@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 22:41: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/share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 mtx_pool.9 mutex.9 rwlock.9 sleep.9 sleepqueue.9 sx.9 thread_exit.9 src/sys/kern kern_synch.c src/sys/sys mutex.h rwlock.h sleepqueue.h sx.h systm.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, 09 Mar 2007 22:41:02 -0000 jhb 2007-03-09 22:41:01 UTC FreeBSD src repository Modified files: share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 mtx_pool.9 mutex.9 rwlock.9 sleep.9 sleepqueue.9 sx.9 thread_exit.9 sys/kern kern_synch.c sys/sys mutex.h rwlock.h sleepqueue.h sx.h systm.h Log: Allow threads to atomically release rw and sx locks while waiting for an event. Locking primitives that support this (mtx, rw, and sx) now each include their own foo_sleep() routine. - Rename msleep() to _sleep() and change it's 'struct mtx' object to a 'struct lock_object' pointer. _sleep() uses the recently added lc_unlock() and lc_lock() function pointers for the lock class of the specified lock to release the lock while the thread is suspended. - Add wrappers around _sleep() for mutexes (mtx_sleep()), rw locks (rw_sleep()), and sx locks (sx_sleep()). msleep() still exists and is now identical to mtx_sleep(), but it is deprecated. - Rename SLEEPQ_MSLEEP to SLEEPQ_SLEEP. - Rewrite much of sleep.9 to not be msleep(9) centric. - Flesh out the 'RETURN VALUES' section in sleep.9 and add an 'ERRORS' section. - Add __nonnull(1) to _sleep() and msleep_spin() so that the compiler will warn if you try to pass a NULL wait channel. The functions already have a KASSERT to that effect. Revision Changes Path 1.300 +3 -0 src/share/man/man9/Makefile 1.17 +1 -1 src/share/man/man9/condvar.9 1.15 +4 -4 src/share/man/man9/lock.9 1.20 +7 -6 src/share/man/man9/mi_switch.9 1.7 +2 -3 src/share/man/man9/mtx_pool.9 1.54 +13 -1 src/share/man/man9/mutex.9 1.9 +10 -0 src/share/man/man9/rwlock.9 1.59 +111 -68 src/share/man/man9/sleep.9 1.15 +5 -5 src/share/man/man9/sleepqueue.9 1.36 +11 -1 src/share/man/man9/sx.9 1.3 +2 -2 src/share/man/man9/thread_exit.9 1.292 +33 -28 src/sys/kern/kern_synch.c 1.91 +3 -0 src/sys/sys/mutex.h 1.9 +2 -0 src/sys/sys/rwlock.h 1.11 +1 -1 src/sys/sys/sleepqueue.h 1.27 +2 -0 src/sys/sys/sx.h 1.252 +9 -4 src/sys/sys/systm.h From owner-cvs-src@FreeBSD.ORG Fri Mar 9 22:47:58 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42DBC16A417; Fri, 9 Mar 2007 22:47:58 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id BC57F13C4A3; Fri, 9 Mar 2007 22:47:57 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from zion.baldwin.cx (zion.baldwin.cx [192.168.0.7]) (authenticated bits=0) by server.baldwin.cx (8.13.8/8.13.8) with ESMTP id l29Mlt1Z039913; Fri, 9 Mar 2007 17:47:55 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: src-committers@freebsd.org Date: Fri, 9 Mar 2007 17:47:06 -0500 User-Agent: KMail/1.9.4 References: <200703092241.l29Mf2Ds062856@repoman.freebsd.org> In-Reply-To: <200703092241.l29Mf2Ds062856@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703091747.07617.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [192.168.0.1]); Fri, 09 Mar 2007 17:47:55 -0500 (EST) X-Virus-Scanned: ClamAV 0.88.3/2788/Fri Mar 9 13:27:23 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: cvs-src@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 mtx_pool.9 mutex.9 rwlock.9 sleep.9 sleepqueue.9 sx.9 thread_exit.9 src/sys/kern kern_synch.c src/sys/sys mutex.h rwlock.h sleepqueue.h sx.h systm.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, 09 Mar 2007 22:47:58 -0000 On Friday 09 March 2007 17:41, John Baldwin wrote: > jhb 2007-03-09 22:41:01 UTC > > FreeBSD src repository > > Modified files: > share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 > mtx_pool.9 mutex.9 rwlock.9 sleep.9 > sleepqueue.9 sx.9 thread_exit.9 > sys/kern kern_synch.c > sys/sys mutex.h rwlock.h sleepqueue.h sx.h > systm.h > Log: > Allow threads to atomically release rw and sx locks while waiting for an > event. Locking primitives that support this (mtx, rw, and sx) now each > include their own foo_sleep() routine. > - Rename msleep() to _sleep() and change it's 'struct mtx' object to a > 'struct lock_object' pointer. _sleep() uses the recently added > lc_unlock() and lc_lock() function pointers for the lock class of the > specified lock to release the lock while the thread is suspended. > - Add wrappers around _sleep() for mutexes (mtx_sleep()), rw locks > (rw_sleep()), and sx locks (sx_sleep()). msleep() still exists and > is now identical to mtx_sleep(), but it is deprecated. > - Rename SLEEPQ_MSLEEP to SLEEPQ_SLEEP. > - Rewrite much of sleep.9 to not be msleep(9) centric. > - Flesh out the 'RETURN VALUES' section in sleep.9 and add an 'ERRORS' > section. > - Add __nonnull(1) to _sleep() and msleep_spin() so that the compiler will > warn if you try to pass a NULL wait channel. The functions already have > a KASSERT to that effect. I don't have a date set for removing msleep(), esp. given it's wide use. I would like to remove it and all the spl*() functions in 8.0 if we can swing it. I also have patches to let condition variables work with rwlocks and sx locks, but the current implementation results in an API "explosion" since each of the cv_*wait*() functions grows a cv_*wait*_rw() version for rwlocks and a cv_*waut*_sx() version for use with sx locks. One possibility would be to just cast the lock argument to (struct lock_object *) since all of our locks have a lock_object as the first member, but then you use having the compiler do type checking, and I'm really not willing to give up on that. Too easy to have evil bugs that way. I suppose we could use some evil macro that used typeof() but that would be very gcc specific? I guess one other possibility is to standardize on the field name for the lock_object, calling it lo_object instead of mtx_object, rw_object, sx_object, etc. Anyone else have any ideas? -- John Baldwin From owner-cvs-src@FreeBSD.ORG Fri Mar 9 23:28:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F366C16A400; Fri, 9 Mar 2007 23:28:40 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CE6A313C481; Fri, 9 Mar 2007 23:28:40 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29NSe7m071589; Fri, 9 Mar 2007 23:28:40 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29NSeWl071588; Fri, 9 Mar 2007 23:28:40 GMT (envelope-from sam) Message-Id: <200703092328.l29NSeWl071588@repoman.freebsd.org> From: Sam Leffler Date: Fri, 9 Mar 2007 23:28: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/sbin/ifconfig af_ipx.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 23:28:41 -0000 sam 2007-03-09 23:28:40 UTC FreeBSD src repository Modified files: sbin/ifconfig af_ipx.c Log: point-to-point address should come from ifa_dstaddr Revision Changes Path 1.3 +1 -1 src/sbin/ifconfig/af_ipx.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 23:29:31 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9419116A401; Fri, 9 Mar 2007 23:29:31 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6D73213C4A3; Fri, 9 Mar 2007 23:29:31 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29NTVOG071631; Fri, 9 Mar 2007 23:29:31 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29NTVuJ071630; Fri, 9 Mar 2007 23:29:31 GMT (envelope-from jhb) Message-Id: <200703092329.l29NTVuJ071630@repoman.freebsd.org> From: John Baldwin Date: Fri, 9 Mar 2007 23:29:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/kern kern_acct.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 09 Mar 2007 23:29:31 -0000 jhb 2007-03-09 23:29:31 UTC FreeBSD src repository Modified files: sys/kern kern_acct.c Log: Use sx_sleep() in the main loop of the accounting kthread. Revision Changes Path 1.88 +2 -3 src/sys/kern/kern_acct.c From owner-cvs-src@FreeBSD.ORG Fri Mar 9 23:49:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D559416A402; Fri, 9 Mar 2007 23:49:48 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AFA8813C467; Fri, 9 Mar 2007 23:49:48 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29Nnmtx074856; Fri, 9 Mar 2007 23:49:48 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29NnmaU074855; Fri, 9 Mar 2007 23:49:48 GMT (envelope-from bmah) Message-Id: <200703092349.l29NnmaU074855@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 9 Mar 2007 23:49:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/release/doc/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: Fri, 09 Mar 2007 23:49:48 -0000 bmah 2007-03-09 23:49:48 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release notes: 802.11 support for 900 MHz cards and quarter / half channel support (+MFC), ng_deflate(4) (+MFC), ng_pred1(4) (+MFC), wpa_passphrase(8) (+MFC). Updated release notes: ath(4) and HAL 0.9.20.3 (+MFC). Other MFCs noted: if_bridge(4) RSTP. Revision Changes Path 1.1002 +16 -2 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Fri Mar 9 23:52:51 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F71616A419; Fri, 9 Mar 2007 23:52:51 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BE52313C4B7; Fri, 9 Mar 2007 23:52:41 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l29NqedU075859; Fri, 9 Mar 2007 23:52:40 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l29NqeYv075858; Fri, 9 Mar 2007 23:52:40 GMT (envelope-from bmah) Message-Id: <200703092352.l29NqeYv075858@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 9 Mar 2007 23:52:40 +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/relnotes/common new.sgml X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2007 23:52:51 -0000 bmah 2007-03-09 23:52:40 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: ath(4) HAL 0.9.20.3, 802.11 900 MHz and quarter/half channel support, if_bridge(4) RSTP, ng_deflate(4), ng_pred1(4), unionfs update, wpa_passphrase(8). New release notes: IPv6 over gif(4) fix. Revision Changes Path 1.883.2.59 +27 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:16:53 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE69D16A403; Sat, 10 Mar 2007 00:16:53 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 97B4F13C441; Sat, 10 Mar 2007 00:16:53 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0Gr7c080523; Sat, 10 Mar 2007 00:16:53 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0GrDR080522; Sat, 10 Mar 2007 00:16:53 GMT (envelope-from sam) Message-Id: <200703100016.l2A0GrDR080522@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:16: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/arm/arm identcpu.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 00:16:53 -0000 sam 2007-03-10 00:16:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/arm/arm identcpu.c Log: MFC 1.10: elaborate on stepping names Revision Changes Path 1.4.2.1 +1 -1 src/sys/arm/arm/identcpu.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:19:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9FEE216A403; Sat, 10 Mar 2007 00:19:25 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7A24D13C4A8; Sat, 10 Mar 2007 00:19:25 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0JPqH080597; Sat, 10 Mar 2007 00:19:25 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0JPWU080596; Sat, 10 Mar 2007 00:19:25 GMT (envelope-from sam) Message-Id: <200703100019.l2A0JPWU080596@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:19: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/conf files.arm X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 00:19:25 -0000 sam 2007-03-10 00:19:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/conf files.arm Log: MFC: add ath hal rules Revision Changes Path 1.8.2.4 +7 -0 src/sys/conf/files.arm From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:26:13 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB9A016A404; Sat, 10 Mar 2007 00:26:13 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9620313C46B; Sat, 10 Mar 2007 00:26:13 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0QDuO082080; Sat, 10 Mar 2007 00:26:13 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0QDSS082079; Sat, 10 Mar 2007 00:26:13 GMT (envelope-from sam) Message-Id: <200703100026.l2A0QDSS082079@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:26:12 +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/man4.arm Makefile npe.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: Sat, 10 Mar 2007 00:26:13 -0000 sam 2007-03-10 00:26:12 UTC FreeBSD src repository Added files: (Branch: RELENG_6) share/man/man4/man4.arm Makefile npe.4 Log: start of arm-specific man pages Revision Changes Path 1.1.2.1 +7 -0 src/share/man/man4/man4.arm/Makefile (new) 1.2.2.1 +163 -0 src/share/man/man4/man4.arm/npe.4 (new) From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:28:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B74D16A400; Sat, 10 Mar 2007 00:28:44 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id EA4F313C478; Sat, 10 Mar 2007 00:28:43 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0ShHC082197; Sat, 10 Mar 2007 00:28:43 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0Shgn082196; Sat, 10 Mar 2007 00:28:43 GMT (envelope-from sam) Message-Id: <200703100028.l2A0Shgn082196@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:28:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net80211 _ieee80211.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, 10 Mar 2007 00:28:44 -0000 sam 2007-03-10 00:28:43 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net80211 _ieee80211.h Log: MFC 1.7: add IEEE80211_IS_CHAN_PASSIVE Revision Changes Path 1.2.2.4 +2 -0 src/sys/net80211/_ieee80211.h From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:31:04 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 613E016A403; Sat, 10 Mar 2007 00:31:04 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3B4DF13C461; Sat, 10 Mar 2007 00:31:04 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0V4UY082691; Sat, 10 Mar 2007 00:31:04 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0V4fI082690; Sat, 10 Mar 2007 00:31:04 GMT (envelope-from sam) Message-Id: <200703100031.l2A0V4fI082690@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:31:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net80211 ieee80211_freebsd.c ieee80211_freebsd.h ieee80211_proto.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 00:31:04 -0000 sam 2007-03-10 00:31:03 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net80211 ieee80211_freebsd.c ieee80211_freebsd.h ieee80211_proto.c Log: MFC: Fix potential node refcnt leak Submitted by: Sepherosa Ziehau Obtained from: DragonFly Revision Changes Path 1.7.2.4 +20 -0 src/sys/net80211/ieee80211_freebsd.c 1.5.2.3 +2 -0 src/sys/net80211/ieee80211_freebsd.h 1.17.2.11 +9 -7 src/sys/net80211/ieee80211_proto.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:33:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D49716A402; Sat, 10 Mar 2007 00:33:48 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 76F5113C428; Sat, 10 Mar 2007 00:33:48 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0XmBp083625; Sat, 10 Mar 2007 00:33:48 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0Xmmb083624; Sat, 10 Mar 2007 00:33:48 GMT (envelope-from sam) Message-Id: <200703100033.l2A0Xmmb083624@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:33:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/net80211 ieee80211_input.c ieee80211_node.c ieee80211_proto.c ieee80211_proto.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, 10 Mar 2007 00:33:48 -0000 sam 2007-03-10 00:33:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/net80211 ieee80211_input.c ieee80211_node.c ieee80211_proto.c ieee80211_proto.h Log: MFC: Correct several issues with rate set negotiation Submitted by: Sepherosa Ziehau (w/ modifications) Obtained from: DragonFly Revision Changes Path 1.62.2.16 +1 -0 src/sys/net80211/ieee80211_input.c 1.48.2.14 +12 -7 src/sys/net80211/ieee80211_node.c 1.17.2.12 +32 -33 src/sys/net80211/ieee80211_proto.c 1.11.2.6 +1 -0 src/sys/net80211/ieee80211_proto.h From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:46:22 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44C5F16A400; Sat, 10 Mar 2007 00:46:22 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1FAD813C46B; Sat, 10 Mar 2007 00:46:22 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0kLsT085715; Sat, 10 Mar 2007 00:46:21 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0kLQS085714; Sat, 10 Mar 2007 00:46:21 GMT (envelope-from sam) Message-Id: <200703100046.l2A0kLQS085714@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:46:21 +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/ath if_ath.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 00:46:22 -0000 sam 2007-03-10 00:46:21 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ath if_ath.c Log: sync whitepsace Revision Changes Path 1.94.2.34 +1 -0 src/sys/dev/ath/if_ath.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:48:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E109216A400; Sat, 10 Mar 2007 00:48:28 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id BB5C313C47E; Sat, 10 Mar 2007 00:48:28 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0mShk094142; Sat, 10 Mar 2007 00:48:28 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0mSFI094141; Sat, 10 Mar 2007 00:48:28 GMT (envelope-from sam) Message-Id: <200703100048.l2A0mSFI094141@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:48: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/sbin/ifconfig ifieee80211.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 00:48:29 -0000 sam 2007-03-10 00:48:28 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sbin/ifconfig ifieee80211.c Log: MFC 1.44: remove local def for IEEE80211_IS_CHAN_PASSIVE now that it's defined Revision Changes Path 1.18.2.15 +0 -3 src/sbin/ifconfig/ifieee80211.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:51:50 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7463016A402; Sat, 10 Mar 2007 00:51:50 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4E9AC13C474; Sat, 10 Mar 2007 00:51:50 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0po2Y094957; Sat, 10 Mar 2007 00:51:50 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0po1I094956; Sat, 10 Mar 2007 00:51:50 GMT (envelope-from sam) Message-Id: <200703100051.l2A0po1I094956@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:51:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 00:51:50 -0000 sam 2007-03-10 00:51:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ath if_ath.c Log: MFC 1.162: don't call ath_reset when processing sysctl's before the device is marked running Revision Changes Path 1.94.2.35 +5 -4 src/sys/dev/ath/if_ath.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 00:53:10 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0146E16A400; Sat, 10 Mar 2007 00:53:10 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D023313C4AC; Sat, 10 Mar 2007 00:53:09 +0000 (UTC) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A0r9fs095365; Sat, 10 Mar 2007 00:53:09 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A0r9rp095364; Sat, 10 Mar 2007 00:53:09 GMT (envelope-from sam) Message-Id: <200703100053.l2A0r9rp095364@repoman.freebsd.org> From: Sam Leffler Date: Sat, 10 Mar 2007 00:53:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/dev/ath if_ath.c if_athvar.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, 10 Mar 2007 00:53:10 -0000 sam 2007-03-10 00:53:09 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/ath if_ath.c if_athvar.h Log: MFC: set the antenna switch when fixing the tx antenna using the dev.ath.X.txantenna sysctl Revision Changes Path 1.94.2.36 +26 -3 src/sys/dev/ath/if_ath.c 1.27.2.14 +4 -0 src/sys/dev/ath/if_athvar.h From owner-cvs-src@FreeBSD.ORG Sat Mar 10 01:02:41 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 633EC16A401; Sat, 10 Mar 2007 01:02:41 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 3A4B513C48E; Sat, 10 Mar 2007 01:02:41 +0000 (UTC) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A12fAK096846; Sat, 10 Mar 2007 01:02:41 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A12f9N096845; Sat, 10 Mar 2007 01:02:41 GMT (envelope-from julian) Message-Id: <200703100102.l2A12f9N096845@repoman.freebsd.org> From: Julian Elischer Date: Sat, 10 Mar 2007 01:02: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/netgraph ng_base.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 01:02:41 -0000 julian 2007-03-10 01:02:40 UTC FreeBSD src repository Modified files: sys/netgraph ng_base.c Log: oops committed the wrong patch. try this one.. Revision Changes Path 1.128 +10 -6 src/sys/netgraph/ng_base.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 02:39:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B55FC16A400; Sat, 10 Mar 2007 02:39:54 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A510213C441; Sat, 10 Mar 2007 02:39:54 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A2dsNb014234; Sat, 10 Mar 2007 02:39:54 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A2dsDp014233; Sat, 10 Mar 2007 02:39:54 GMT (envelope-from mjacob) Message-Id: <200703100239.l2A2dsDp014233@repoman.freebsd.org> From: Matt Jacob Date: Sat, 10 Mar 2007 02:39: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/dev/isp isp.c isp_freebsd.c isp_ioctl.h isp_library.c isp_library.h isp_pci.c isp_stds.h isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 02:39:54 -0000 mjacob 2007-03-10 02:39:54 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c isp_freebsd.c isp_ioctl.h isp_library.c isp_library.h isp_pci.c isp_stds.h isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h Log: Fix some stupid copyright mistakes that have been there for quite some time. Revision Changes Path 1.140 +26 -23 src/sys/dev/isp/isp.c 1.135 +0 -1 src/sys/dev/isp/isp_freebsd.c 1.19 +1 -1 src/sys/dev/isp/isp_ioctl.h 1.11 +26 -24 src/sys/dev/isp/isp_library.c 1.6 +24 -26 src/sys/dev/isp/isp_library.h 1.138 +0 -2 src/sys/dev/isp/isp_pci.c 1.4 +24 -26 src/sys/dev/isp/isp_stds.h 1.44 +26 -24 src/sys/dev/isp/isp_target.c 1.30 +26 -30 src/sys/dev/isp/isp_target.h 1.18 +24 -25 src/sys/dev/isp/isp_tpublic.h 1.59 +26 -25 src/sys/dev/isp/ispmbox.h 1.29 +26 -24 src/sys/dev/isp/ispreg.h 1.83 +26 -24 src/sys/dev/isp/ispvar.h From owner-cvs-src@FreeBSD.ORG Sat Mar 10 02:47:00 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AF4D16A402; Sat, 10 Mar 2007 02:47:00 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 44F5113C461; Sat, 10 Mar 2007 02:47:00 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A2l08E015716; Sat, 10 Mar 2007 02:47:00 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A2kx5U015715; Sat, 10 Mar 2007 02:46:59 GMT (envelope-from bmah) Message-Id: <200703100246.l2A2kx5U015715@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sat, 10 Mar 2007 02:46:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/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, 10 Mar 2007 02:47:00 -0000 bmah 2007-03-10 02:46:59 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes article.sgml Log: New release notes: ULE 2.0, UNIX domain locking changes, driver ABI/API change for interrupt filtering, zs driver gone, npe(4) (+MFC), bpf(4) directions, IPv6 multicast forwarding loadable, setfacl(1) -h. Revision Changes Path 1.1003 +35 -0 src/release/doc/en_US.ISO8859-1/relnotes/article.sgml From owner-cvs-src@FreeBSD.ORG Sat Mar 10 02:51:15 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F23C516A400; Sat, 10 Mar 2007 02:51:14 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 87C9D13C46B; Sat, 10 Mar 2007 02:51:13 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id D654F487F5; Sat, 10 Mar 2007 03:51:11 +0100 (CET) Received: from localhost (unknown [192.51.213.204]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 2244645CD9; Sat, 10 Mar 2007 03:51:05 +0100 (CET) Date: Sat, 10 Mar 2007 03:49:46 +0100 From: Pawel Jakub Dawidek To: Tom Rhodes Message-ID: <20070310024946.GC1246@garage.freebsd.pl> References: <200703090933.l299XJAP094201@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="R+My9LyyhiUvIEro" Content-Disposition: inline In-Reply-To: <200703090933.l299XJAP094201@repoman.freebsd.org> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-2.6 required=3.0 tests=BAYES_00 autolearn=ham version=3.0.4 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/daemon daemon.8 daemon.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 02:51:15 -0000 --R+My9LyyhiUvIEro Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Mar 09, 2007 at 09:33:19AM +0000, Tom Rhodes wrote: > trhodes 2007-03-09 09:33:19 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.sbin/daemon daemon.8 daemon.c=20 > Log: > Add support for dropping privileges to a specified user and/or group. > =20 > PR: 108523 > Submitted by: Dmitri Alenitchev (original version) > Reviewed by: mpp (first reply to PR) [...] > + if (user || group) { > + if (getuid() !=3D 0) > + errx(1, "only root user is allowed to chroot " > + "and change UID/GID"); > + restrict_process(user, group); > + } chroot? --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --R+My9LyyhiUvIEro Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFF8hzKForvXbEpPzQRAusWAKDvVWxuF4z5vUAY56nqEAQVIFRKSgCdHKrv xU/tezaHqLVO/uZBP/co6j0= =ZCuy -----END PGP SIGNATURE----- --R+My9LyyhiUvIEro-- From owner-cvs-src@FreeBSD.ORG Sat Mar 10 03:10:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83D3C16A401; Sat, 10 Mar 2007 03:10:35 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5D98D13C442; Sat, 10 Mar 2007 03:10:35 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A3AZTT020148; Sat, 10 Mar 2007 03:10:35 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A3AZSb020147; Sat, 10 Mar 2007 03:10:35 GMT (envelope-from yongari) Message-Id: <200703100310.l2A3AZSb020147@repoman.freebsd.org> From: Pyun YongHyeon Date: Sat, 10 Mar 2007 03:10: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/pci if_ste.c if_stereg.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, 10 Mar 2007 03:10:35 -0000 yongari 2007-03-10 03:10:34 UTC FreeBSD src repository Modified files: sys/pci if_ste.c if_stereg.h Log: Add new ST201 PCI id. PR: kern/108150 Revision Changes Path 1.98 +2 -1 src/sys/pci/if_ste.c 1.22 +2 -1 src/sys/pci/if_stereg.h From owner-cvs-src@FreeBSD.ORG Sat Mar 10 03:38:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD89216A400; Sat, 10 Mar 2007 03:38:44 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.freebsd.org (Postfix) with ESMTP id B3AC013C461; Sat, 10 Mar 2007 03:38:44 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 17CE546F22; Fri, 9 Mar 2007 22:38:44 -0500 (EST) Date: Sat, 10 Mar 2007 03:38:43 +0000 (GMT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Tom Rhodes In-Reply-To: <200703090933.l299XJAP094201@repoman.freebsd.org> Message-ID: <20070310031320.G30274@fledge.watson.org> References: <200703090933.l299XJAP094201@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/daemon daemon.8 daemon.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 03:38:45 -0000 On Fri, 9 Mar 2007, Tom Rhodes wrote: > trhodes 2007-03-09 09:33:19 UTC > > FreeBSD src repository > > Modified files: > usr.sbin/daemon daemon.8 daemon.c > Log: > Add support for dropping privileges to a specified user and/or group. > > PR: 108523 > Submitted by: Dmitri Alenitchev (original version) > Reviewed by: mpp (first reply to PR) Generally, when setting up user context in this kind of situation, it is preferable to use setusercontext(3). Examples of programs that do this [in various ways] include jail, inetd, ssh, su, login, cron, etc. This will lead to correct setting of MAC labels, resource limits, and other user properties -- for daemons this is quite useful. The description of "-g" seems not to match the implementation with respect to additional groups. I think I'd prefer it if we removed the "-g" option and just used setusercontext() to set the user's groups, as this will reduce the potential for confusing behavior. Generally speaking, it is better to simply try to perform operations and see if they succeed than check the user ID and guess. As we move towards more flexible security policies, predicting privileges based on user ID will become less reliable. I would be tempted to remove the getuid() check for this reason. There appears to be a man page format bug relating to the -p argument. Robert N M Watson Computer Laboratory University of Cambridge From owner-cvs-src@FreeBSD.ORG Sat Mar 10 04:18:09 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3825B16A404; Sat, 10 Mar 2007 04:18:09 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 12D7F13C461; Sat, 10 Mar 2007 04:18:09 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A4I8G3033193; Sat, 10 Mar 2007 04:18:08 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A4I8Nq033192; Sat, 10 Mar 2007 04:18:08 GMT (envelope-from brooks) Message-Id: <200703100418.l2A4I8Nq033192@repoman.freebsd.org> From: Brooks Davis Date: Sat, 10 Mar 2007 04:18:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: 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: Sat, 10 Mar 2007 04:18:09 -0000 brooks 2007-03-10 04:18:08 UTC FreeBSD src repository Modified files: . access Log: Please welcome Michael Bushman to the ranks of src committers. He has done good work on the nsswitch system under the Google Summer of Code in both 2005 and 2006. He will be working to bring the products of his efforts into the tree. I will be his mentor and csjp has has graciously agreed to help review changes for security implications. Approved by: core Revision Changes Path 1.815 +1 -0 CVSROOT/access From owner-cvs-src@FreeBSD.ORG Sat Mar 10 05:56:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0E8616A400; Sat, 10 Mar 2007 05:56:05 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9AEE913C478; Sat, 10 Mar 2007 05:56:05 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A5u57d057846; Sat, 10 Mar 2007 05:56:05 GMT (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A5u5EB057845; Sat, 10 Mar 2007 05:56:05 GMT (envelope-from mckusick) Message-Id: <200703100556.l2A5u5EB057845@repoman.freebsd.org> From: Kirk McKusick Date: Sat, 10 Mar 2007 05:56:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 05:56:05 -0000 mckusick 2007-03-10 05:56:05 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself. Revision Changes Path 1.206 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Sat Mar 10 07:10:01 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AADC16A405; Sat, 10 Mar 2007 07:10:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5EA5C13C467; Sat, 10 Mar 2007 07:10:01 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A7A1EA070651; Sat, 10 Mar 2007 07:10:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A7A1NW070650; Sat, 10 Mar 2007 07:10:01 GMT (envelope-from ru) Message-Id: <200703100710.l2A7A1NW070650@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 10 Mar 2007 07:10:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/c89 c89.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 07:10:01 -0000 ru 2007-03-10 07:10:01 UTC FreeBSD src repository Modified files: usr.bin/c89 c89.1 Log: Reduce diffs with c99(1). Revision Changes Path 1.11 +13 -12 src/usr.bin/c89/c89.1 From owner-cvs-src@FreeBSD.ORG Sat Mar 10 07:11:20 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DF6616A401; Sat, 10 Mar 2007 07:11:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5848313C441; Sat, 10 Mar 2007 07:11:20 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2A7BKcw071322; Sat, 10 Mar 2007 07:11:20 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2A7BK6L071321; Sat, 10 Mar 2007 07:11:20 GMT (envelope-from ru) Message-Id: <200703100711.l2A7BK6L071321@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 10 Mar 2007 07:11: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/usr.bin/c99 c99.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 07:11:20 -0000 ru 2007-03-10 07:11:20 UTC FreeBSD src repository Modified files: usr.bin/c99 c99.1 Log: Bump the original revision of c89(1). Revision Changes Path 1.5 +1 -1 src/usr.bin/c99/c99.1 From owner-cvs-src@FreeBSD.ORG Sat Mar 10 12:13:32 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EDD8816A401 for ; Sat, 10 Mar 2007 12:13:31 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.179]) by mx1.freebsd.org (Postfix) with ESMTP id 7672713C474 for ; Sat, 10 Mar 2007 12:13:31 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so1147120ika for ; Sat, 10 Mar 2007 04:13:30 -0800 (PST) DKIM-Signature: a=rsa-sha1; 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; b=dRb1fZA6woUexl1jxZt/X2wT3AKHlL5giZ68Akgbl0hugjOFtAaI35+TksmZBmMXzioaNbedcKIPYcSJvqUaBuq/TScayie+lIlGf3PuZ3iBJREc/ookTbGSwcflOkcwrVFMy4lKoI+HlrTbTzTIj4ZIsYYIiWYVyRYDyAhbHI0= 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=oiOGfs//uCM3GsATj6tt4MQHf7QQ1HC7A9x1U3f3sPyDWO4Ch+cV83O5fAr8ahS03rPbOJFlS45CBB3CzZlIFdOiSlYQaJQA/K/CBzyEyP6I7d9koLCoqHwdnCwJfjNuoXkJSD3im4KNf8g4wy4RavN3XfoNHqG77Ey+QlQTNDQ= Received: by 10.70.89.1 with SMTP id m1mr5250707wxb.1173527067166; Sat, 10 Mar 2007 03:44:27 -0800 (PST) Received: by 10.100.191.11 with HTTP; Sat, 10 Mar 2007 03:44:26 -0800 (PST) Message-ID: <3bbf2fe10703100344w1f2464f0q68086a5af7c4f63c@mail.gmail.com> Date: Sat, 10 Mar 2007 12:44:26 +0100 From: "Attilio Rao" Sender: asmrookie@gmail.com To: "John Baldwin" In-Reply-To: <200703091747.07617.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200703092241.l29Mf2Ds062856@repoman.freebsd.org> <200703091747.07617.jhb@freebsd.org> X-Google-Sender-Auth: 07735e7855f479c0 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 mtx_pool.9 mutex.9 rwlock.9 sleep.9 sleepqueue.9 sx.9 thread_exit.9 src/sys/kern kern_synch.c src/sys/sys mutex.h rwlock.h sleepqueue.h sx.h systm.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, 10 Mar 2007 12:13:32 -0000 2007/3/9, John Baldwin : > On Friday 09 March 2007 17:41, John Baldwin wrote: > > jhb 2007-03-09 22:41:01 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 > > mtx_pool.9 mutex.9 rwlock.9 sleep.9 > > sleepqueue.9 sx.9 thread_exit.9 > > sys/kern kern_synch.c > > sys/sys mutex.h rwlock.h sleepqueue.h sx.h > > systm.h > > Log: > > Allow threads to atomically release rw and sx locks while waiting for an > > event. Locking primitives that support this (mtx, rw, and sx) now each > > include their own foo_sleep() routine. > > - Rename msleep() to _sleep() and change it's 'struct mtx' object to a > > 'struct lock_object' pointer. _sleep() uses the recently added > > lc_unlock() and lc_lock() function pointers for the lock class of the > > specified lock to release the lock while the thread is suspended. > > - Add wrappers around _sleep() for mutexes (mtx_sleep()), rw locks > > (rw_sleep()), and sx locks (sx_sleep()). msleep() still exists and > > is now identical to mtx_sleep(), but it is deprecated. > > - Rename SLEEPQ_MSLEEP to SLEEPQ_SLEEP. > > - Rewrite much of sleep.9 to not be msleep(9) centric. > > - Flesh out the 'RETURN VALUES' section in sleep.9 and add an 'ERRORS' > > section. > > - Add __nonnull(1) to _sleep() and msleep_spin() so that the compiler will > > warn if you try to pass a NULL wait channel. The functions already have > > a KASSERT to that effect. > > I don't have a date set for removing msleep(), esp. given it's wide use. > I would like to remove it and all the spl*() functions in 8.0 if we can > swing it. > > I also have patches to let condition variables work with rwlocks and sx > locks, but the current implementation results in an API "explosion" > since each of the cv_*wait*() functions grows a cv_*wait*_rw() version for > rwlocks and a cv_*waut*_sx() version for use with sx locks. One possibility > would be to just cast the lock argument to (struct lock_object *) since all > of our locks have a lock_object as the first member, but then you use having > the compiler do type checking, and I'm really not willing to give up on > that. Too easy to have evil bugs that way. I suppose we could use some > evil macro that used typeof() but that would be very gcc specific? > > I guess one other possibility is to standardize on the field name for > the lock_object, calling it lo_object instead of mtx_object, rw_object, > sx_object, etc. Anyone else have any ideas? What about adding a new function like: static __inline struct lock_object * mtx_export_lc(struct mtx *m) { return (&m->mtx_object); } to be per-interface (so having sx_export_lc() and rw_export_lc() too) and than using in this way: static struct mtx foo_lock; static struct cv foo_cv; ... mtx_lock(&foo_lock); ... cv_wait(&foo_cv, mtx_export_lc(&foo_lock)); (obviously using new struct lock_object methods you added for locking/unlocking) It sounds reasonable to you? Attilio -- Peace can only be achieved by understanding - A. Einstein From owner-cvs-src@FreeBSD.ORG Sat Mar 10 12:44:25 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07CC516A406; Sat, 10 Mar 2007 12:44:23 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 433FE13C471; Sat, 10 Mar 2007 12:44:23 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2ACiNtA036765; Sat, 10 Mar 2007 12:44:23 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2ACiNxw036764; Sat, 10 Mar 2007 12:44:23 GMT (envelope-from brueffer) Message-Id: <200703101244.l2ACiNxw036764@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 10 Mar 2007 12:44:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/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: Sat, 10 Mar 2007 12:44:25 -0000 brueffer 2007-03-10 12:44:23 UTC FreeBSD src repository Modified files: share/man/man4 ata.4 Log: Document Silicon Image SiI 3124 and SiI 3132 support. Revision Changes Path 1.72 +2 -2 src/share/man/man4/ata.4 From owner-cvs-src@FreeBSD.ORG Sat Mar 10 12:45:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E24DF16A405; Sat, 10 Mar 2007 12:45:46 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A559513C428; Sat, 10 Mar 2007 12:45:46 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2ACjkLa036879; Sat, 10 Mar 2007 12:45:46 GMT (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2ACjk0J036878; Sat, 10 Mar 2007 12:45:46 GMT (envelope-from brueffer) Message-Id: <200703101245.l2ACjk0J036878@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 10 Mar 2007 12:45:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 12:45:47 -0000 brueffer 2007-03-10 12:45:46 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Uppercase FreeBSD. Revision Changes Path 1.207 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Sat Mar 10 13:37:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA8F116A406; Sat, 10 Mar 2007 13:37:44 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 91F3A13C47E; Sat, 10 Mar 2007 13:37:44 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2ADbiTH054521; Sat, 10 Mar 2007 13:37:44 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2ADbiZ7054520; Sat, 10 Mar 2007 13:37:44 GMT (envelope-from yar) Message-Id: <200703101337.l2ADbiZ7054520@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 13:37: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/etc rc.subr X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 13:37:44 -0000 yar 2007-03-10 13:37:44 UTC FreeBSD src repository Modified files: etc rc.subr Log: Prepend ${_chroot} to a pathname in a consistent and robust way: insert a slash between ${_chroot} and the pathname if and only if ${_chroot} is set to a non-empty string. Now the pathname is very likely to be absolute, but we shouldn't take that for granted. Revision Changes Path 1.74 +3 -2 src/etc/rc.subr From owner-cvs-src@FreeBSD.ORG Sat Mar 10 13:53:05 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 315C616A400; Sat, 10 Mar 2007 13:53:05 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0962213C474; Sat, 10 Mar 2007 13:53:05 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2ADr4cc057160; Sat, 10 Mar 2007 13:53:04 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2ADr4re057157; Sat, 10 Mar 2007 13:53:04 GMT (envelope-from yar) Message-Id: <200703101353.l2ADr4re057157@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 13:53: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/etc rc.subr X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 13:53:05 -0000 yar 2007-03-10 13:53:04 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc rc.subr Log: MFC rev. 1.73: Allow for interpreted scripts using env(1) in their shebang lines. PR: bin/100287 Revision Changes Path 1.34.2.19 +5 -0 src/etc/rc.subr From owner-cvs-src@FreeBSD.ORG Sat Mar 10 14:00:52 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 444A916A403; Sat, 10 Mar 2007 14:00:52 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1B4A113C4AC; Sat, 10 Mar 2007 14:00:52 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AE0p4X057803; Sat, 10 Mar 2007 14:00:52 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AE0pp5057802; Sat, 10 Mar 2007 14:00:51 GMT (envelope-from yar) Message-Id: <200703101400.l2AE0pp5057802@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 14:00:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/rc.d syscons X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 14:00:52 -0000 yar 2007-03-10 14:00:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d syscons Log: MFC rev. 1.18: Syscons cannot be stopped, so provide a no-op stop method. The default stop method from rc.subr isn't suited for this case and produces a bogus warning: "syscons not running". Revision Changes Path 1.13.2.3 +1 -0 src/etc/rc.d/syscons From owner-cvs-src@FreeBSD.ORG Sat Mar 10 14:04:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B05316A4F6; Sat, 10 Mar 2007 14:04:02 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 42CE213C46B; Sat, 10 Mar 2007 14:04:02 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AE42K9060091; Sat, 10 Mar 2007 14:04:02 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AE42Ak060086; Sat, 10 Mar 2007 14:04:02 GMT (envelope-from yar) Message-Id: <200703101404.l2AE42Ak060086@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 14:04: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/etc/rc.d abi X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 14:04:02 -0000 yar 2007-03-10 14:04:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d abi Log: MFC rev. 1.10: Improve rc.d conformance: - don't play a needless trick with prestart, just use start method; - provide no-op stop method so that we don't get bogus "abi not running" error. Revision Changes Path 1.4.2.4 +3 -3 src/etc/rc.d/abi From owner-cvs-src@FreeBSD.ORG Sat Mar 10 14:07:02 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 961FF16A402; Sat, 10 Mar 2007 14:07:02 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6DE5513C4AA; Sat, 10 Mar 2007 14:07:02 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AE728t060253; Sat, 10 Mar 2007 14:07:02 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AE72NC060252; Sat, 10 Mar 2007 14:07:02 GMT (envelope-from yar) Message-Id: <200703101407.l2AE72NC060252@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 14:07: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/etc/rc.d dhclient X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 14:07:02 -0000 yar 2007-03-10 14:07:01 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d dhclient Log: MFC rev. 1.26: pkill(1) and pgrep(1) have been moved to /bin so that they are available to rc.d scripts early in the boot sequence. Revision Changes Path 1.20.2.4 +3 -3 src/etc/rc.d/dhclient From owner-cvs-src@FreeBSD.ORG Sat Mar 10 14:17:28 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C6ED16A403; Sat, 10 Mar 2007 14:17:28 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D048E13C461; Sat, 10 Mar 2007 14:17:27 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AEHRsX061841; Sat, 10 Mar 2007 14:17:27 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AEHR5h061840; Sat, 10 Mar 2007 14:17:27 GMT (envelope-from yar) Message-Id: <200703101417.l2AEHR5h061840@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 14:17:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/rc.d hostname X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 14:17:28 -0000 yar 2007-03-10 14:17:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d hostname Log: MFC rev. 1.9-1.11: Better handling for unset or null $hostname, which can appear in a system just installed, or configured via DHCP. Revision Changes Path 1.8.2.1 +16 -2 src/etc/rc.d/hostname From owner-cvs-src@FreeBSD.ORG Sat Mar 10 14:20:35 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1BC616A402; Sat, 10 Mar 2007 14:20:35 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7918413C49D; Sat, 10 Mar 2007 14:20:35 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AEKZ8R062059; Sat, 10 Mar 2007 14:20:35 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AEKZh7062058; Sat, 10 Mar 2007 14:20:35 GMT (envelope-from yar) Message-Id: <200703101420.l2AEKZh7062058@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 14:20: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/etc/rc.d pflog X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: 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, 10 Mar 2007 14:20:35 -0000 yar 2007-03-10 14:20:35 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/rc.d pflog Log: MFC rev. 1.9: Fix a typo in a warning message. Revision Changes Path 1.5.2.3 +1 -1 src/etc/rc.d/pflog From owner-cvs-src@FreeBSD.ORG Sat Mar 10 14:29:32 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83D7B16A401; Sat, 10 Mar 2007 14:29:32 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 5C0FA13C481; Sat, 10 Mar 2007 14:29:32 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AETWCG063542; Sat, 10 Mar 2007 14:29:32 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AETWGu063541; Sat, 10 Mar 2007 14:29:32 GMT (envelope-from yar) Message-Id: <200703101429.l2AETWGu063541@repoman.freebsd.org> From: Yar Tikhiy Date: Sat, 10 Mar 2007 14:29:32 +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/make make.1 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 14:29:32 -0000 yar 2007-03-10 14:29:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/make make.1 Log: MFC rev. 1.100: Typo fix: preceed -> precede. Revision Changes Path 1.89.2.4 +1 -1 src/usr.bin/make/make.1 From owner-cvs-src@FreeBSD.ORG Sat Mar 10 18:30:12 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5BE016A400; Sat, 10 Mar 2007 18:30:12 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id AFD4413C461; Sat, 10 Mar 2007 18:30:12 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AIUCGO018003; Sat, 10 Mar 2007 18:30:12 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AIUCQU018002; Sat, 10 Mar 2007 18:30:12 GMT (envelope-from mbr) Message-Id: <200703101830.l2AIUCQU018002@repoman.freebsd.org> From: Martin Blapp Date: Sat, 10 Mar 2007 18:30:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 18:30:12 -0000 mbr 2007-03-10 18:30:12 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself Revision Changes Path 1.208 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Sat Mar 10 18:31:33 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D707B16A400; Sat, 10 Mar 2007 18:31:33 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B0F9713C461; Sat, 10 Mar 2007 18:31:33 +0000 (UTC) (envelope-from mbr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AIVXv0018609; Sat, 10 Mar 2007 18:31:33 GMT (envelope-from mbr@repoman.freebsd.org) Received: (from mbr@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AIVXeU018608; Sat, 10 Mar 2007 18:31:33 GMT (envelope-from mbr) Message-Id: <200703101831.l2AIVXeU018608@repoman.freebsd.org> From: Martin Blapp Date: Sat, 10 Mar 2007 18: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/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 18:31:33 -0000 mbr 2007-03-10 18:31:33 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Uppercase FreeBSD, sigh. Revision Changes Path 1.209 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-src@FreeBSD.ORG Sat Mar 10 20:26:44 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1789516A400; Sat, 10 Mar 2007 20:26:44 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id E727513C4A7; Sat, 10 Mar 2007 20:26:43 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l2AKQhaq038707; Sat, 10 Mar 2007 20:26:43 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l2AKQhEZ038706; Sat, 10 Mar 2007 20:26:43 GMT (envelope-from alc) Message-Id: <200703102026.l2AKQhEZ038706@repoman.freebsd.org> From: Alan Cox Date: Sat, 10 Mar 2007 20:26: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/amd64/amd64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 20:26:44 -0000 alc 2007-03-10 20:26:43 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c Log: Completely eliminate "avail_start". It serves no useful purpose. Revision Changes Path 1.581 +14 -18 src/sys/amd64/amd64/pmap.c From owner-cvs-src@FreeBSD.ORG Sat Mar 10 20:54:09 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1865116A402; Sat, 10 Mar 2007 20:54:09 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: from mail.garage.freebsd.pl (arm132.internetdsl.tpnet.pl [83.17.198.132]) by mx1.freebsd.org (Postfix) with ESMTP id 5BA4513C4A7; Sat, 10 Mar 2007 20:54:07 +0000 (UTC) (envelope-from pjd@garage.freebsd.pl) Received: by mail.garage.freebsd.pl (Postfix, from userid 65534) id E1E56487F5; Sat, 10 Mar 2007 21:54:05 +0100 (CET) Received: from localhost (p42220-ipbffx02marunouchi.tokyo.ocn.ne.jp [211.129.152.220]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.garage.freebsd.pl (Postfix) with ESMTP id 3064E456AB; Sat, 10 Mar 2007 21:53:57 +0100 (CET) Date: Sat, 10 Mar 2007 21:52:36 +0100 From: Pawel Jakub Dawidek To: Attilio Rao Message-ID: <20070310205236.GA9185@garage.freebsd.pl> References: <200703092241.l29Mf2Ds062856@repoman.freebsd.org> <200703091747.07617.jhb@freebsd.org> <3bbf2fe10703100344w1f2464f0q68086a5af7c4f63c@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="d6Gm4EdcadzBjdND" Content-Disposition: inline In-Reply-To: <3bbf2fe10703100344w1f2464f0q68086a5af7c4f63c@mail.gmail.com> X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 7.0-CURRENT i386 User-Agent: mutt-ng/devel-r804 (FreeBSD) X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail.garage.freebsd.pl X-Spam-Level: X-Spam-Status: No, score=-0.5 required=3.0 tests=BAYES_00,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=no version=3.0.4 Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org, John Baldwin Subject: Re: cvs commit: src/share/man/man9 Makefile condvar.9 lock.9 mi_switch.9 mtx_pool.9 mutex.9 rwlock.9 sleep.9 sleepqueue.9 sx.9 thread_exit.9 src/sys/kern kern_synch.c src/sys/sys mutex.h rwlock.h sleepqueue.h sx.h systm.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, 10 Mar 2007 20:54:09 -0000 --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 10, 2007 at 12:44:26PM +0100, Attilio Rao wrote: > 2007/3/9, John Baldwin : > >I don't have a date set for removing msleep(), esp. given it's wide use. > >I would like to remove it and all the spl*() functions in 8.0 if we can > >swing it. > > > >I also have patches to let condition variables work with rwlocks and sx > >locks, but the current implementation results in an API "explosion" > >since each of the cv_*wait*() functions grows a cv_*wait*_rw() version f= or > >rwlocks and a cv_*waut*_sx() version for use with sx locks. One possibi= lity > >would be to just cast the lock argument to (struct lock_object *) since = all > >of our locks have a lock_object as the first member, but then you use ha= ving > >the compiler do type checking, and I'm really not willing to give up on > >that. Too easy to have evil bugs that way. I suppose we could use some > >evil macro that used typeof() but that would be very gcc specific? > > > >I guess one other possibility is to standardize on the field name for > >the lock_object, calling it lo_object instead of mtx_object, rw_object, > >sx_object, etc. Anyone else have any ideas? >=20 > What about adding a new function like: >=20 > static __inline struct lock_object * > mtx_export_lc(struct mtx *m) > { >=20 > return (&m->mtx_object); > } >=20 > to be per-interface (so having sx_export_lc() and rw_export_lc() too) > and than using in this way: >=20 > static struct mtx foo_lock; > static struct cv foo_cv; > ... >=20 > mtx_lock(&foo_lock); > ... > cv_wait(&foo_cv, mtx_export_lc(&foo_lock)); >=20 > (obviously using new struct lock_object methods you added for locking/unl= ocking) >=20 > It sounds reasonable to you? This is ugly. If we really need to provide information about which type of lock we are using, I'd probably prefer cv_wait_(). What about something like this: #define cv_wait(cv, lock) do { switch (LO_CLASSINDEX((struct lock_object *)(lock))) { case 1: cv_wait_mtx(cv, lock); break; case 2: cv_wait_sx(cv, lock); break; case 3: cv_wait_rw(cv, lock); break; default: panic("Invalid lock."); } } while (0) Of course magic values should be replaced, but you get the point. PS. I'd really like to be able to use condvar(9) with sx(9) locks, because currently I've to manage mu own condvar(9) version for ZFS that does exactly this. --=20 Pawel Jakub Dawidek http://www.wheel.pl pjd@FreeBSD.org http://www.FreeBSD.org FreeBSD committer Am I Evil? Yes, I Am! --d6Gm4EdcadzBjdND Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFF8xqUForvXbEpPzQRAsJwAJ4/rTRjOmna173ToHJv89baYQT8wgCfb1LM YcfgHtQ29Gw1fJxPTipDGbQ= =xXhu -----END PGP SIGNATURE----- --d6Gm4EdcadzBjdND--